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

2020-12-22 Thread Frederik Schwan via arch-commits
Date: Tuesday, December 22, 2020 @ 14:14:56
  Author: freswa
Revision: 782006

archrelease: copy trunk to community-x86_64

Added:
  fetchmail/repos/community-x86_64/
  fetchmail/repos/community-x86_64/PKGBUILD
(from rev 782005, fetchmail/trunk/PKGBUILD)
  fetchmail/repos/community-x86_64/fetchmail.service
(from rev 782005, fetchmail/trunk/fetchmail.service)
  fetchmail/repos/community-x86_64/fetchmail.sysusers
(from rev 782005, fetchmail/trunk/fetchmail.sysusers)
  fetchmail/repos/community-x86_64/fetchmail.tmpfiles
(from rev 782005, fetchmail/trunk/fetchmail.tmpfiles)

+
 PKGBUILD   |   38 ++
 fetchmail.service  |   11 +++
 fetchmail.sysusers |2 ++
 fetchmail.tmpfiles |2 ++
 4 files changed, 53 insertions(+)

Copied: fetchmail/repos/community-x86_64/PKGBUILD (from rev 782005, 
fetchmail/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2020-12-22 14:14:56 UTC (rev 782006)
@@ -0,0 +1,38 @@
+# Maintainer: Frederik Schwan 
+# Contributor: Amish 
+# Contributor: Victor3D 
+
+pkgname=fetchmail
+pkgver=6.4.14
+pkgrel=2
+pkgdesc='A remote-mail retrieval utility'
+arch=('x86_64')
+url='https://www.fetchmail.info'
+license=('GPL')
+depends=('openssl')
+makedepends=('python')
+optdepends=('tk: for using fetchmailconf'
+'python-future: for using fetchmailconf')
+source=("https://sourceforge.net/projects/fetchmail/files/branch_${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;
+'fetchmail.tmpfiles'
+'fetchmail.sysusers'
+'fetchmail.service')
+b2sums=('d763f4a2fc036ef9c611829fbe5ec9eeed730429c746738203f852d8812609ad91fe179f8c43db1ad819a5430d3bc0a3c9348ab97cef312889cafb05b76a7d5b'
+
'b4ffb99efe4ab24a5a9ed3a27ad5a4645ef8611d66ca380e6acd36e81b34d2619142d62854fa7bd7716b8013d3ccf75ea3e1e18151ae95ff6c37c839631a5733'
+
'5000d2daa40cf36e46bd602d8c1ba45840587d289d19254187f92bced1b557a948e72417bbeaa3efd85e7d19f7f257effc310a96359b85eee6ed96d97d44c1b2'
+
'fca5437bec78786b9624c774015b9e0e7175973d548dbdab406af797a8c4a53b474d73b897a0009faee4dafd62190f93514c6f1ce403312b6a51afb4996dbf21')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --with-ssl=/usr
+  make
+}
+
+package() {
+  install -D -m644 fetchmail.tmpfiles 
"${pkgdir}"/usr/lib/tmpfiles.d/fetchmail.conf
+  install -D -m644 fetchmail.sysusers 
"${pkgdir}"/usr/lib/sysusers.d/fetchmail.conf
+  install -D -m644 fetchmail.service 
"${pkgdir}"/usr/lib/systemd/system/fetchmail.service
+  
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}

Copied: fetchmail/repos/community-x86_64/fetchmail.service (from rev 782005, 
fetchmail/trunk/fetchmail.service)
===
--- community-x86_64/fetchmail.service  (rev 0)
+++ community-x86_64/fetchmail.service  2020-12-22 14:14:56 UTC (rev 782006)
@@ -0,0 +1,11 @@
+[Unit]
+Description=Fetchmail
+After=network.target
+
+[Service]
+User=fetchmail
+ExecStart=/usr/bin/fetchmail -f /etc/fetchmailrc
+RestartSec=1
+
+[Install]
+WantedBy=multi-user.target

Copied: fetchmail/repos/community-x86_64/fetchmail.sysusers (from rev 782005, 
fetchmail/trunk/fetchmail.sysusers)
===
--- community-x86_64/fetchmail.sysusers (rev 0)
+++ community-x86_64/fetchmail.sysusers 2020-12-22 14:14:56 UTC (rev 782006)
@@ -0,0 +1,2 @@
+u fetchmail - "Fetchmail daemon" /var/lib/fetchmail
+m fetchmail nobody

Copied: fetchmail/repos/community-x86_64/fetchmail.tmpfiles (from rev 782005, 
fetchmail/trunk/fetchmail.tmpfiles)
===
--- community-x86_64/fetchmail.tmpfiles (rev 0)
+++ community-x86_64/fetchmail.tmpfiles 2020-12-22 14:14:56 UTC (rev 782006)
@@ -0,0 +1,2 @@
+d /run/fetchmail 700 fetchmail nobody
+d /var/lib/fetchmail 755 fetchmail nobody


[arch-commits] Commit in (7 files)

2020-12-22 Thread Frederik Schwan via arch-commits
Date: Tuesday, December 22, 2020 @ 14:14:23
  Author: freswa
Revision: 782005

move fetchmail from unsupported to [community]

Added:
  fetchmail/
  fetchmail/repos/
  fetchmail/trunk/
  fetchmail/trunk/PKGBUILD
  fetchmail/trunk/fetchmail.service
  fetchmail/trunk/fetchmail.sysusers
  fetchmail/trunk/fetchmail.tmpfiles

+
 PKGBUILD   |   38 ++
 fetchmail.service  |   11 +++
 fetchmail.sysusers |2 ++
 fetchmail.tmpfiles |2 ++
 4 files changed, 53 insertions(+)

Added: fetchmail/trunk/PKGBUILD
===
--- fetchmail/trunk/PKGBUILD(rev 0)
+++ fetchmail/trunk/PKGBUILD2020-12-22 14:14:23 UTC (rev 782005)
@@ -0,0 +1,38 @@
+# Maintainer: Frederik Schwan 
+# Contributor: Amish 
+# Contributor: Victor3D 
+
+pkgname=fetchmail
+pkgver=6.4.14
+pkgrel=2
+pkgdesc='A remote-mail retrieval utility'
+arch=('x86_64')
+url='https://www.fetchmail.info'
+license=('GPL')
+depends=('openssl')
+makedepends=('python')
+optdepends=('tk: for using fetchmailconf'
+'python-future: for using fetchmailconf')
+source=("https://sourceforge.net/projects/fetchmail/files/branch_${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;
+'fetchmail.tmpfiles'
+'fetchmail.sysusers'
+'fetchmail.service')
+b2sums=('d763f4a2fc036ef9c611829fbe5ec9eeed730429c746738203f852d8812609ad91fe179f8c43db1ad819a5430d3bc0a3c9348ab97cef312889cafb05b76a7d5b'
+
'b4ffb99efe4ab24a5a9ed3a27ad5a4645ef8611d66ca380e6acd36e81b34d2619142d62854fa7bd7716b8013d3ccf75ea3e1e18151ae95ff6c37c839631a5733'
+
'5000d2daa40cf36e46bd602d8c1ba45840587d289d19254187f92bced1b557a948e72417bbeaa3efd85e7d19f7f257effc310a96359b85eee6ed96d97d44c1b2'
+
'fca5437bec78786b9624c774015b9e0e7175973d548dbdab406af797a8c4a53b474d73b897a0009faee4dafd62190f93514c6f1ce403312b6a51afb4996dbf21')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --with-ssl=/usr
+  make
+}
+
+package() {
+  install -D -m644 fetchmail.tmpfiles 
"${pkgdir}"/usr/lib/tmpfiles.d/fetchmail.conf
+  install -D -m644 fetchmail.sysusers 
"${pkgdir}"/usr/lib/sysusers.d/fetchmail.conf
+  install -D -m644 fetchmail.service 
"${pkgdir}"/usr/lib/systemd/system/fetchmail.service
+  
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}

Added: fetchmail/trunk/fetchmail.service
===
--- fetchmail/trunk/fetchmail.service   (rev 0)
+++ fetchmail/trunk/fetchmail.service   2020-12-22 14:14:23 UTC (rev 782005)
@@ -0,0 +1,11 @@
+[Unit]
+Description=Fetchmail
+After=network.target
+
+[Service]
+User=fetchmail
+ExecStart=/usr/bin/fetchmail -f /etc/fetchmailrc
+RestartSec=1
+
+[Install]
+WantedBy=multi-user.target

Added: fetchmail/trunk/fetchmail.sysusers
===
--- fetchmail/trunk/fetchmail.sysusers  (rev 0)
+++ fetchmail/trunk/fetchmail.sysusers  2020-12-22 14:14:23 UTC (rev 782005)
@@ -0,0 +1,2 @@
+u fetchmail - "Fetchmail daemon" /var/lib/fetchmail
+m fetchmail nobody

Added: fetchmail/trunk/fetchmail.tmpfiles
===
--- fetchmail/trunk/fetchmail.tmpfiles  (rev 0)
+++ fetchmail/trunk/fetchmail.tmpfiles  2020-12-22 14:14:23 UTC (rev 782005)
@@ -0,0 +1,2 @@
+d /run/fetchmail 700 fetchmail nobody
+d /var/lib/fetchmail 755 fetchmail nobody


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

2020-12-18 Thread Frederik Schwan via arch-commits
Date: Saturday, December 19, 2020 @ 01:44:17
  Author: freswa
Revision: 779734

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-19 01:43:40 UTC (rev 779733)
+++ PKGBUILD2020-12-19 01:44:17 UTC (rev 779734)
@@ -1,30 +0,0 @@
-# Maintainer: Frederik Schwan 
-# Contributor: Hao Long 
-
-pkgname=python-rich
-pkgver=9.4.0
-pkgrel=1
-pkgdesc='Render rich text, tables, progress bars, syntax highlighting, 
markdown and more to the terminal'
-arch=(any)
-url='https://github.com/willmcgugan/rich'
-license=('MIT')
-depends=('python-colorama' 'python-pygments' 'python-typing_extensions' 
'python-commonmark')
-makedepends=('python-setuptools' 'python-dephell')
-source=("https://github.com/willmcgugan/rich/archive/v${pkgver}/rich-${pkgver}.tar.gz;)
-b2sums=('4c046c0b1a025eacb49e88c7e4a09a85380a90ce95e30847f130f93d977be846c116363d886783248c53448fea767ba7dee54051f291d0e1830eb1d57a302595')
-
-prepare() {
-  cd rich-${pkgver}
-  dephell deps convert --from pyproject.toml --to setup.py
-}
-
-build() {
-  cd rich-${pkgver}
-  python3 setup.py build
-}
-
-package() {
-  cd rich-${pkgver}
-  python3 setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: python-rich/repos/community-any/PKGBUILD (from rev 779733, 
python-rich/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-19 01:44:17 UTC (rev 779734)
@@ -0,0 +1,30 @@
+# Maintainer: Frederik Schwan 
+# Contributor: Hao Long 
+
+pkgname=python-rich
+pkgver=9.5.1
+pkgrel=1
+pkgdesc='Render rich text, tables, progress bars, syntax highlighting, 
markdown and more to the terminal'
+arch=(any)
+url='https://github.com/willmcgugan/rich'
+license=('MIT')
+depends=('python-colorama' 'python-pygments' 'python-typing_extensions' 
'python-commonmark')
+makedepends=('python-setuptools' 'python-dephell')
+source=("https://github.com/willmcgugan/rich/archive/v${pkgver}/rich-${pkgver}.tar.gz;)
+b2sums=('9f32aa2a6acb9a18f7c69f74187d953a56212ace10af4d0372a86ad66cc4f5b9a1008d5cb8b34348ef8c9fe66ca236ae533eb875bc4cecd21a1c3f65d34bafac')
+
+prepare() {
+  cd rich-${pkgver}
+  dephell deps convert --from pyproject.toml --to setup.py
+}
+
+build() {
+  cd rich-${pkgver}
+  python3 setup.py build
+}
+
+package() {
+  cd rich-${pkgver}
+  python3 setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}


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

2020-12-18 Thread Frederik Schwan via arch-commits
Date: Saturday, December 19, 2020 @ 01:43:40
  Author: freswa
Revision: 779733

upgpkg: python-rich 9.5.1-1

Modified:
  python-rich/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-19 01:39:20 UTC (rev 779732)
+++ PKGBUILD2020-12-19 01:43:40 UTC (rev 779733)
@@ -2,7 +2,7 @@
 # Contributor: Hao Long 
 
 pkgname=python-rich
-pkgver=9.4.0
+pkgver=9.5.1
 pkgrel=1
 pkgdesc='Render rich text, tables, progress bars, syntax highlighting, 
markdown and more to the terminal'
 arch=(any)
@@ -11,7 +11,7 @@
 depends=('python-colorama' 'python-pygments' 'python-typing_extensions' 
'python-commonmark')
 makedepends=('python-setuptools' 'python-dephell')
 
source=("https://github.com/willmcgugan/rich/archive/v${pkgver}/rich-${pkgver}.tar.gz;)
-b2sums=('4c046c0b1a025eacb49e88c7e4a09a85380a90ce95e30847f130f93d977be846c116363d886783248c53448fea767ba7dee54051f291d0e1830eb1d57a302595')
+b2sums=('9f32aa2a6acb9a18f7c69f74187d953a56212ace10af4d0372a86ad66cc4f5b9a1008d5cb8b34348ef8c9fe66ca236ae533eb875bc4cecd21a1c3f65d34bafac')
 
 prepare() {
   cd rich-${pkgver}


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

2020-12-18 Thread Frederik Schwan via arch-commits
Date: Saturday, December 19, 2020 @ 01:39:20
  Author: freswa
Revision: 779732

archrelease: copy trunk to community-staging-x86_64

Added:
  libopenraw/repos/community-staging-x86_64/
  libopenraw/repos/community-staging-x86_64/PKGBUILD
(from rev 779731, libopenraw/trunk/PKGBUILD)

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

Copied: libopenraw/repos/community-staging-x86_64/PKGBUILD (from rev 779731, 
libopenraw/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-12-19 01:39:20 UTC (rev 779732)
@@ -0,0 +1,36 @@
+# Maintainer: Frederik Schwan 
+# Contributor: Alexander F Rødseth 
+# Contributor: Ronald van Haren 
+# Contributor: Daniel J Griffiths 
+# Contributor: 
+
+pkgname=libopenraw
+pkgver=0.3.0
+pkgrel=1
+pkgdesc='Library for decoding RAW files'
+arch=('x86_64')
+url='https://libopenraw.freedesktop.org/'
+license=('LGPL')
+depends=('gdk-pixbuf2')
+makedepends=('boost' 'libxml2' 'cargo')
+provides=('libopenraw.so' 'libopenrawgnome.so')
+source=("https://libopenraw.freedesktop.org/download/${pkgname}-${pkgver}.tar.bz2"{.asc,})
+b2sums=('SKIP'
+
'45f4382f6be114c2c0a8ffac3affef83ae1d40430eb69ad3e8085f7ac1ff428bd2f886b093a4b81ff13d32b447f03bae9784caaa0a447830d969485a01711026')
+validpgpkeys=('6C44DB3E0BF3EAF5B433239A5FEE05E6A56E15A3') # Hubert Figuiere 

+
+prepare() {
+# Fix libopenraw dependency in -gnome pc file
+  sed -e 's|libopenraw-0.1|libopenraw-0.3|' -i 
$pkgname-$pkgver/gnome/libopenraw-gnome-0.3.pc.in
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  make -C ${pkgname}-${pkgver} DESTDIR="${pkgdir}" install
+}


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

2020-12-18 Thread Frederik Schwan via arch-commits
Date: Saturday, December 19, 2020 @ 01:39:08
  Author: freswa
Revision: 779731

archrelease: copy trunk to community-staging-x86_64

Added:
  raw-thumbnailer/repos/community-staging-x86_64/
  raw-thumbnailer/repos/community-staging-x86_64/PKGBUILD
(from rev 779730, raw-thumbnailer/trunk/PKGBUILD)

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

Copied: raw-thumbnailer/repos/community-staging-x86_64/PKGBUILD (from rev 
779730, raw-thumbnailer/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-12-19 01:39:08 UTC (rev 779731)
@@ -0,0 +1,34 @@
+# Maintainer: Ronald van Haren 
+# Contributor: boro...@gmail.com
+
+pkgname=raw-thumbnailer
+pkgver=0.2.1
+pkgrel=7
+pkgdesc="A lightweight and fast raw image thumbnailer that can be used by file 
managers."
+url="https://code.google.com/archive/p/raw-thumbnailer/;
+license=('GPL2')
+arch=('x86_64')
+depends=('libopenraw')
+source=(https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/$pkgname/$pkgname-$pkgver.tar.gz)
+sha1sums=('f34012062c0b1eaa10525722c36bd027b11ade2e')
+
+prepare() {
+   cd $pkgname-$pkgver
+
+   # Fix build with libopenraw 0.2
+   sed -ri 's/(libopenraw(-gnome)?)-1\.0/\1-0.3/' configure.ac
+   autoreconf -vi
+}
+
+build() {
+   cd $pkgname-$pkgver
+
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd $pkgname-$pkgver
+
+   make DESTDIR="$pkgdir" install
+}


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

2020-12-18 Thread Frederik Schwan via arch-commits
Date: Saturday, December 19, 2020 @ 01:36:59
  Author: freswa
Revision: 779729

libopenraw-0.3.0 rebuild

Modified:
  raw-thumbnailer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-19 01:32:43 UTC (rev 779728)
+++ PKGBUILD2020-12-19 01:36:59 UTC (rev 779729)
@@ -3,7 +3,7 @@
 
 pkgname=raw-thumbnailer
 pkgver=0.2.1
-pkgrel=6
+pkgrel=7
 pkgdesc="A lightweight and fast raw image thumbnailer that can be used by file 
managers."
 url="https://code.google.com/archive/p/raw-thumbnailer/;
 license=('GPL2')
@@ -16,7 +16,7 @@
cd $pkgname-$pkgver
 
# Fix build with libopenraw 0.2
-   sed -ri 's/(libopenraw(-gnome)?)-1\.0/\1-0.2/' configure.ac
+   sed -ri 's/(libopenraw(-gnome)?)-1\.0/\1-0.3/' configure.ac
autoreconf -vi
 }
 


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

2020-12-18 Thread Frederik Schwan via arch-commits
Date: Saturday, December 19, 2020 @ 01:37:03
  Author: freswa
Revision: 779730

archrelease: copy trunk to staging-x86_64

Added:
  raw-thumbnailer/repos/staging-x86_64/
  raw-thumbnailer/repos/staging-x86_64/PKGBUILD
(from rev 779729, raw-thumbnailer/trunk/PKGBUILD)

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

Copied: raw-thumbnailer/repos/staging-x86_64/PKGBUILD (from rev 779729, 
raw-thumbnailer/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-12-19 01:37:03 UTC (rev 779730)
@@ -0,0 +1,34 @@
+# Maintainer: Ronald van Haren 
+# Contributor: boro...@gmail.com
+
+pkgname=raw-thumbnailer
+pkgver=0.2.1
+pkgrel=7
+pkgdesc="A lightweight and fast raw image thumbnailer that can be used by file 
managers."
+url="https://code.google.com/archive/p/raw-thumbnailer/;
+license=('GPL2')
+arch=('x86_64')
+depends=('libopenraw')
+source=(https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/$pkgname/$pkgname-$pkgver.tar.gz)
+sha1sums=('f34012062c0b1eaa10525722c36bd027b11ade2e')
+
+prepare() {
+   cd $pkgname-$pkgver
+
+   # Fix build with libopenraw 0.2
+   sed -ri 's/(libopenraw(-gnome)?)-1\.0/\1-0.3/' configure.ac
+   autoreconf -vi
+}
+
+build() {
+   cd $pkgname-$pkgver
+
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd $pkgname-$pkgver
+
+   make DESTDIR="$pkgdir" install
+}


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

2020-12-18 Thread Frederik Schwan via arch-commits
Date: Saturday, December 19, 2020 @ 01:32:43
  Author: freswa
Revision: 779728

archrelease: copy trunk to staging-x86_64

Added:
  libopenraw/repos/staging-x86_64/
  libopenraw/repos/staging-x86_64/PKGBUILD
(from rev 779727, libopenraw/trunk/PKGBUILD)

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

Copied: libopenraw/repos/staging-x86_64/PKGBUILD (from rev 779727, 
libopenraw/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-12-19 01:32:43 UTC (rev 779728)
@@ -0,0 +1,36 @@
+# Maintainer: Frederik Schwan 
+# Contributor: Alexander F Rødseth 
+# Contributor: Ronald van Haren 
+# Contributor: Daniel J Griffiths 
+# Contributor: 
+
+pkgname=libopenraw
+pkgver=0.3.0
+pkgrel=1
+pkgdesc='Library for decoding RAW files'
+arch=('x86_64')
+url='https://libopenraw.freedesktop.org/'
+license=('LGPL')
+depends=('gdk-pixbuf2')
+makedepends=('boost' 'libxml2' 'cargo')
+provides=('libopenraw.so' 'libopenrawgnome.so')
+source=("https://libopenraw.freedesktop.org/download/${pkgname}-${pkgver}.tar.bz2"{.asc,})
+b2sums=('SKIP'
+
'45f4382f6be114c2c0a8ffac3affef83ae1d40430eb69ad3e8085f7ac1ff428bd2f886b093a4b81ff13d32b447f03bae9784caaa0a447830d969485a01711026')
+validpgpkeys=('6C44DB3E0BF3EAF5B433239A5FEE05E6A56E15A3') # Hubert Figuiere 

+
+prepare() {
+# Fix libopenraw dependency in -gnome pc file
+  sed -e 's|libopenraw-0.1|libopenraw-0.3|' -i 
$pkgname-$pkgver/gnome/libopenraw-gnome-0.3.pc.in
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  make -C ${pkgname}-${pkgver} DESTDIR="${pkgdir}" install
+}


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

2020-12-18 Thread Frederik Schwan via arch-commits
Date: Saturday, December 19, 2020 @ 01:32:39
  Author: freswa
Revision: 779727

upgpkg: libopenraw 0.3.0-1

Modified:
  libopenraw/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-18 23:31:21 UTC (rev 779726)
+++ PKGBUILD2020-12-19 01:32:39 UTC (rev 779727)
@@ -1,11 +1,12 @@
-# Maintainer: Alexander F Rødseth 
+# Maintainer: Frederik Schwan 
+# Contributor: Alexander F Rødseth 
 # Contributor: Ronald van Haren 
 # Contributor: Daniel J Griffiths 
 # Contributor: 
 
 pkgname=libopenraw
-pkgver=0.2.3
-pkgrel=2
+pkgver=0.3.0
+pkgrel=1
 pkgdesc='Library for decoding RAW files'
 arch=('x86_64')
 url='https://libopenraw.freedesktop.org/'
@@ -12,18 +13,19 @@
 license=('LGPL')
 depends=('gdk-pixbuf2')
 makedepends=('boost' 'libxml2' 'cargo')
+provides=('libopenraw.so' 'libopenrawgnome.so')
+source=("https://libopenraw.freedesktop.org/download/${pkgname}-${pkgver}.tar.bz2"{.asc,})
+b2sums=('SKIP'
+
'45f4382f6be114c2c0a8ffac3affef83ae1d40430eb69ad3e8085f7ac1ff428bd2f886b093a4b81ff13d32b447f03bae9784caaa0a447830d969485a01711026')
 validpgpkeys=('6C44DB3E0BF3EAF5B433239A5FEE05E6A56E15A3') # Hubert Figuiere 

-source=("https://libopenraw.freedesktop.org/download/$pkgname-$pkgver.tar.bz2"{.asc,})
-sha256sums=('SKIP'
-'aef60cf4d91e8428c82adcf50a5bda80cacae484b1433dc965650232fde3db9a')
 
 prepare() {
 # Fix libopenraw dependency in -gnome pc file
-  sed -e 's|libopenraw-0.1|libopenraw-0.2|' -i 
$pkgname-$pkgver/gnome/libopenraw-gnome-0.2.pc.in
+  sed -e 's|libopenraw-0.1|libopenraw-0.3|' -i 
$pkgname-$pkgver/gnome/libopenraw-gnome-0.3.pc.in
 }
 
 build() {
-  cd "$pkgname-$pkgver"
+  cd ${pkgname}-${pkgver}
 
   ./configure --prefix=/usr
   make
@@ -30,8 +32,5 @@
 }
 
 package() {
-  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+  make -C ${pkgname}-${pkgver} DESTDIR="${pkgdir}" install
 }
-
-# getver: libopenraw.freedesktop.org/wiki
-# vim: ts=2 sw=2 et:


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

2020-12-14 Thread Frederik Schwan via arch-commits
Date: Monday, December 14, 2020 @ 14:02:37
  Author: freswa
Revision: 775012

archrelease: copy trunk to community-any

Added:
  ansible-lint/repos/community-any/PKGBUILD
(from rev 775011, ansible-lint/trunk/PKGBUILD)
Deleted:
  ansible-lint/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-14 14:02:32 UTC (rev 775011)
+++ PKGBUILD2020-12-14 14:02:37 UTC (rev 775012)
@@ -1,34 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Maintainer: Frederik Schwan 
-# Contributor: Sander Boom 
-
-pkgname=ansible-lint
-pkgver=4.3.7
-pkgrel=3
-pkgdesc="Checks playbooks for practices and behaviour that could potentially 
be improved."
-arch=('any')
-url="https://github.com/ansible/ansible-lint;
-license=('MIT')
-depends=('python' 'ansible' 'python-ruamel-yaml' 'python-pyaml' 'python-rich')
-makedepends=('git')
-checkdepends=('python-pytest')
-source=(https://github.com/ansible/ansible-lint/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('a20e49e3b50130d1c3baa46db0e926ebfd6616cb99dd920952cb1481e7b267b3')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  # stop setuptools from using the scm version which doesn't exist in this 
context
-  sed -i "/^\[metadata\]/a version = ${pkgver}" setup.cfg
-  sed -i 's/use_scm_version/#use_scm_version/' setup.cfg
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  python setup.py build
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  python setup.py install --root="${pkgdir}" --optimize=1
-  install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}
-}

Copied: ansible-lint/repos/community-any/PKGBUILD (from rev 775011, 
ansible-lint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-14 14:02:37 UTC (rev 775012)
@@ -0,0 +1,34 @@
+# Maintainer: Jelle van der Waa 
+# Maintainer: Frederik Schwan 
+# Contributor: Sander Boom 
+
+pkgname=ansible-lint
+pkgver=4.3.7
+pkgrel=4
+pkgdesc="Checks playbooks for practices and behaviour that could potentially 
be improved."
+arch=('any')
+url="https://github.com/ansible/ansible-lint;
+license=('MIT')
+depends=('python' 'ansible' 'python-ruamel-yaml' 'python-pyaml' 'python-rich' 
'python-packaging')
+makedepends=('git')
+checkdepends=('python-pytest')
+source=(https://github.com/ansible/ansible-lint/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('a20e49e3b50130d1c3baa46db0e926ebfd6616cb99dd920952cb1481e7b267b3')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  # stop setuptools from using the scm version which doesn't exist in this 
context
+  sed -i "/^\[metadata\]/a version = ${pkgver}" setup.cfg
+  sed -i 's/use_scm_version/#use_scm_version/' setup.cfg
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  python setup.py build
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  python setup.py install --root="${pkgdir}" --optimize=1
+  install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}
+}


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

2020-12-14 Thread Frederik Schwan via arch-commits
Date: Monday, December 14, 2020 @ 14:02:32
  Author: freswa
Revision: 775011

add python-packaging as dependency

fix FS#68971

Modified:
  ansible-lint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-14 14:02:25 UTC (rev 775010)
+++ PKGBUILD2020-12-14 14:02:32 UTC (rev 775011)
@@ -4,12 +4,12 @@
 
 pkgname=ansible-lint
 pkgver=4.3.7
-pkgrel=3
+pkgrel=4
 pkgdesc="Checks playbooks for practices and behaviour that could potentially 
be improved."
 arch=('any')
 url="https://github.com/ansible/ansible-lint;
 license=('MIT')
-depends=('python' 'ansible' 'python-ruamel-yaml' 'python-pyaml' 'python-rich')
+depends=('python' 'ansible' 'python-ruamel-yaml' 'python-pyaml' 'python-rich' 
'python-packaging')
 makedepends=('git')
 checkdepends=('python-pytest')
 
source=(https://github.com/ansible/ansible-lint/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)


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

2020-12-14 Thread Frederik Schwan via arch-commits
Date: Monday, December 14, 2020 @ 13:55:36
  Author: freswa
Revision: 775004

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-14 13:55:32 UTC (rev 775003)
+++ PKGBUILD2020-12-14 13:55:36 UTC (rev 775004)
@@ -1,30 +0,0 @@
-# Maintainer: Frederik Schwan 
-# Contributor: Hao Long 
-
-pkgname=python-rich
-pkgver=9.3.0
-pkgrel=1
-pkgdesc='Render rich text, tables, progress bars, syntax highlighting, 
markdown and more to the terminal'
-arch=(any)
-url='https://github.com/willmcgugan/rich'
-license=('MIT')
-depends=('python-colorama' 'python-pygments' 'python-typing_extensions' 
'python-commonmark')
-makedepends=('python-setuptools' 'python-dephell')
-source=("https://github.com/willmcgugan/rich/archive/v${pkgver}/rich-${pkgver}.tar.gz;)
-b2sums=('839f95902ede956461605e7472663adeb1377dab10651c94b080bb23e10d84a17ccff9cb93d115b7caf110d2647658d1355999e10bdfd2bc64ace1328370')
-
-prepare() {
-  cd rich-${pkgver}
-  dephell deps convert --from pyproject.toml --to setup.py
-}
-
-build() {
-  cd rich-${pkgver}
-  python3 setup.py build
-}
-
-package() {
-  cd rich-${pkgver}
-  python3 setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: python-rich/repos/community-any/PKGBUILD (from rev 775003, 
python-rich/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-14 13:55:36 UTC (rev 775004)
@@ -0,0 +1,30 @@
+# Maintainer: Frederik Schwan 
+# Contributor: Hao Long 
+
+pkgname=python-rich
+pkgver=9.4.0
+pkgrel=1
+pkgdesc='Render rich text, tables, progress bars, syntax highlighting, 
markdown and more to the terminal'
+arch=(any)
+url='https://github.com/willmcgugan/rich'
+license=('MIT')
+depends=('python-colorama' 'python-pygments' 'python-typing_extensions' 
'python-commonmark')
+makedepends=('python-setuptools' 'python-dephell')
+source=("https://github.com/willmcgugan/rich/archive/v${pkgver}/rich-${pkgver}.tar.gz;)
+b2sums=('4c046c0b1a025eacb49e88c7e4a09a85380a90ce95e30847f130f93d977be846c116363d886783248c53448fea767ba7dee54051f291d0e1830eb1d57a302595')
+
+prepare() {
+  cd rich-${pkgver}
+  dephell deps convert --from pyproject.toml --to setup.py
+}
+
+build() {
+  cd rich-${pkgver}
+  python3 setup.py build
+}
+
+package() {
+  cd rich-${pkgver}
+  python3 setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}


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

2020-12-14 Thread Frederik Schwan via arch-commits
Date: Monday, December 14, 2020 @ 13:55:32
  Author: freswa
Revision: 775003

upgpkg: python-rich 9.4.0-1

Modified:
  python-rich/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-14 13:26:25 UTC (rev 775002)
+++ PKGBUILD2020-12-14 13:55:32 UTC (rev 775003)
@@ -2,7 +2,7 @@
 # Contributor: Hao Long 
 
 pkgname=python-rich
-pkgver=9.3.0
+pkgver=9.4.0
 pkgrel=1
 pkgdesc='Render rich text, tables, progress bars, syntax highlighting, 
markdown and more to the terminal'
 arch=(any)
@@ -11,7 +11,7 @@
 depends=('python-colorama' 'python-pygments' 'python-typing_extensions' 
'python-commonmark')
 makedepends=('python-setuptools' 'python-dephell')
 
source=("https://github.com/willmcgugan/rich/archive/v${pkgver}/rich-${pkgver}.tar.gz;)
-b2sums=('839f95902ede956461605e7472663adeb1377dab10651c94b080bb23e10d84a17ccff9cb93d115b7caf110d2647658d1355999e10bdfd2bc64ace1328370')
+b2sums=('4c046c0b1a025eacb49e88c7e4a09a85380a90ce95e30847f130f93d977be846c116363d886783248c53448fea767ba7dee54051f291d0e1830eb1d57a302595')
 
 prepare() {
   cd rich-${pkgver}


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

2020-12-03 Thread Frederik Schwan via arch-commits
Date: Thursday, December 3, 2020 @ 15:38:46
  Author: freswa
Revision: 769607

upgpkg: i3status-rust 0.14.3-1

Modified:
  i3status-rust/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-03 15:30:34 UTC (rev 769606)
+++ PKGBUILD2020-12-03 15:38:46 UTC (rev 769607)
@@ -3,7 +3,7 @@
 # Contributor: Josip Ponjavic 
 
 pkgname=i3status-rust
-pkgver=0.14.2
+pkgver=0.14.3
 pkgrel=1
 pkgdesc='Resourcefriendly and feature-rich replacement for i3status, written 
in pure Rust'
 arch=('x86_64')
@@ -25,8 +25,8 @@
 'speedtest-cli: for the speedtest block'
 'ttf-font-awesome: for the awesome icons'
 'upower: for the battery block')
-source=("https://github.com/greshake/i3status-rust/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-b2sums=('59af79b0ef7e343ef8b02fbb83b0ef5e9ac243c8d965d781bee0e019ba9a5ecefa5aabe052ed4a06830ea60de483be668f8b9cbd9833cc889f4970677cac47bd')
+source=("https://github.com/greshake/i3status-rust/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+b2sums=('c8ddf581b7145ad12830735f0bed857215935ee073d6bff9e8ef0b81188129c4ee88565975e22260af2437329b7dc2cb8bd6277cab93d37c853c7c764ba8f0cb')
 
 build() {
   cd ${pkgname}-${pkgver}


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

2020-12-03 Thread Frederik Schwan via arch-commits
Date: Thursday, December 3, 2020 @ 15:38:49
  Author: freswa
Revision: 769608

archrelease: copy trunk to community-x86_64

Added:
  i3status-rust/repos/community-x86_64/PKGBUILD
(from rev 769607, i3status-rust/trunk/PKGBUILD)
Deleted:
  i3status-rust/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-03 15:38:46 UTC (rev 769607)
+++ PKGBUILD2020-12-03 15:38:49 UTC (rev 769608)
@@ -1,44 +0,0 @@
-# Maintainer: Frederik Schwan 
-# Contributor: Daniel M. Capella 
-# Contributor: Josip Ponjavic 
-
-pkgname=i3status-rust
-pkgver=0.14.2
-pkgrel=1
-pkgdesc='Resourcefriendly and feature-rich replacement for i3status, written 
in pure Rust'
-arch=('x86_64')
-url='https://github.com/greshake/i3status-rust'
-license=('GPL3')
-depends=('libpulse')
-makedepends=('rust')
-optdepends=('alsa-utils: for the volume block'
-'bluez: for the bluetooth block'
-'curl: for the weather block'
-'fakeroot: for the pacman block to show pending updates'
-'ibus: for the ibus block'
-'iw: display wifi signal strength in net block'
-'kdeconnect: for the kdeconnect block'
-'lm_sensors: for the temperature block'
-'networkmanager: for the networkmanager block'
-'powerline-fonts: for all themes using the Powerline arrow char'
-'pulseaudio: for the volume block'
-'speedtest-cli: for the speedtest block'
-'ttf-font-awesome: for the awesome icons'
-'upower: for the battery block')
-source=("https://github.com/greshake/i3status-rust/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-b2sums=('59af79b0ef7e343ef8b02fbb83b0ef5e9ac243c8d965d781bee0e019ba9a5ecefa5aabe052ed4a06830ea60de483be668f8b9cbd9833cc889f4970677cac47bd')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  cargo build --release --locked
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  install -Dm755 -t "${pkgdir}"/usr/bin target/release/i3status-rs
-  install -Dm644 -t "${pkgdir}"/usr/share/man/man1 man/i3status-rs.1
-
-  for example in example_config.toml example_icon.toml example_theme.toml; do
-install -Dm644 -t "${pkgdir}"/usr/share/doc/${pkgname}/examples/ ${example}
-  done
-}

Copied: i3status-rust/repos/community-x86_64/PKGBUILD (from rev 769607, 
i3status-rust/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-03 15:38:49 UTC (rev 769608)
@@ -0,0 +1,44 @@
+# Maintainer: Frederik Schwan 
+# Contributor: Daniel M. Capella 
+# Contributor: Josip Ponjavic 
+
+pkgname=i3status-rust
+pkgver=0.14.3
+pkgrel=1
+pkgdesc='Resourcefriendly and feature-rich replacement for i3status, written 
in pure Rust'
+arch=('x86_64')
+url='https://github.com/greshake/i3status-rust'
+license=('GPL3')
+depends=('libpulse')
+makedepends=('rust')
+optdepends=('alsa-utils: for the volume block'
+'bluez: for the bluetooth block'
+'curl: for the weather block'
+'fakeroot: for the pacman block to show pending updates'
+'ibus: for the ibus block'
+'iw: display wifi signal strength in net block'
+'kdeconnect: for the kdeconnect block'
+'lm_sensors: for the temperature block'
+'networkmanager: for the networkmanager block'
+'powerline-fonts: for all themes using the Powerline arrow char'
+'pulseaudio: for the volume block'
+'speedtest-cli: for the speedtest block'
+'ttf-font-awesome: for the awesome icons'
+'upower: for the battery block')
+source=("https://github.com/greshake/i3status-rust/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+b2sums=('c8ddf581b7145ad12830735f0bed857215935ee073d6bff9e8ef0b81188129c4ee88565975e22260af2437329b7dc2cb8bd6277cab93d37c853c7c764ba8f0cb')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  cargo build --release --locked
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -Dm755 -t "${pkgdir}"/usr/bin target/release/i3status-rs
+  install -Dm644 -t "${pkgdir}"/usr/share/man/man1 man/i3status-rs.1
+
+  for example in example_config.toml example_icon.toml example_theme.toml; do
+install -Dm644 -t "${pkgdir}"/usr/share/doc/${pkgname}/examples/ ${example}
+  done
+}


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

2020-12-02 Thread Frederik Schwan via arch-commits
Date: Wednesday, December 2, 2020 @ 13:57:02
  Author: freswa
Revision: 769157

archrelease: copy trunk to community-x86_64

Added:
  thermald/repos/community-x86_64/PKGBUILD
(from rev 769156, thermald/trunk/PKGBUILD)
  thermald/repos/community-x86_64/modules-load-thermald.conf
(from rev 769156, thermald/trunk/modules-load-thermald.conf)
Deleted:
  thermald/repos/community-x86_64/PKGBUILD
  thermald/repos/community-x86_64/modules-load-thermald.conf

+
 PKGBUILD   |   74 +--
 modules-load-thermald.conf |4 +-
 2 files changed, 39 insertions(+), 39 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-02 13:56:58 UTC (rev 769156)
+++ PKGBUILD2020-12-02 13:57:02 UTC (rev 769157)
@@ -1,37 +0,0 @@
-# Maintainer: Frederik Schwan 
-# Contributor:Francois Menning 
-# Contributor: gilbus 
-# Contributor: Bruno Pagani 
-
-pkgname=thermald
-_pkgname=thermal_daemon
-pkgver=2.4
-pkgrel=1
-pkgdesc='The Linux Thermal Daemon program from 01.org'
-arch=('x86_64')
-url='https://01.org/linux-thermal-daemon'
-license=('GPL2')
-depends=('dbus-glib' 'libxml2' 'libevdev' 'upower')
-makedepends=('autoconf-archive' 'python' 'gtk-doc')
-source=("https://github.com/intel/thermal_daemon/archive/v${pkgver}/${_pkgname}-${pkgver}.tar.gz;
-'modules-load-thermald.conf')
-b2sums=('3554e1af02cde8d8953dc997a3f33a61d1464bbdb85c14ce72c7e440f67eb3e563d68c799bcffbf8354907694bef1da22dea4aeb464ef86a75af742ce7d969c1'
-
'70cdf39afbcc4ea6b0cbe59182714a18755bad8e742f69f9b08e1415dd8f77e00473b9808c46dec3de4e0b5ec17f0bc16d0bd54d61b1e8e77e27901d90aedceb')
-
-build() {
-  cd ${_pkgname}-${pkgver}
-  ./autogen.sh
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---with-dbus-sys-dir=/usr/share/dbus-1/system.d \
---localstatedir=/var \
---sbindir=/usr/bin
-  make
-}
-
-package() {
-  cd ${_pkgname}-${pkgver}
-  DESTDIR="${pkgdir}" make install
-  install -Dm644 "${srcdir}"/modules-load-thermald.conf 
"${pkgdir}"/usr/lib/modules-load.d/thermald.conf
-}

Copied: thermald/repos/community-x86_64/PKGBUILD (from rev 769156, 
thermald/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-02 13:57:02 UTC (rev 769157)
@@ -0,0 +1,37 @@
+# Maintainer: Frederik Schwan 
+# Contributor:Francois Menning 
+# Contributor: gilbus 
+# Contributor: Bruno Pagani 
+
+pkgname=thermald
+_pkgname=thermal_daemon
+pkgver=2.4.1
+pkgrel=1
+pkgdesc='The Linux Thermal Daemon program from 01.org'
+arch=('x86_64')
+url='https://01.org/linux-thermal-daemon'
+license=('GPL2')
+depends=('dbus-glib' 'libxml2' 'libevdev' 'upower')
+makedepends=('autoconf-archive' 'python' 'gtk-doc')
+source=("https://github.com/intel/thermal_daemon/archive/v${pkgver}/${_pkgname}-${pkgver}.tar.gz;
+'modules-load-thermald.conf')
+b2sums=('ee4d6bc590bc50639c0b19adbba7e243358174a837b2ff155dea060b1cd09171d4fb77b18b785dc9f64a633f680358cb1d7b36e3bd438e5267e0a0a27e18497e'
+
'70cdf39afbcc4ea6b0cbe59182714a18755bad8e742f69f9b08e1415dd8f77e00473b9808c46dec3de4e0b5ec17f0bc16d0bd54d61b1e8e77e27901d90aedceb')
+
+build() {
+  cd ${_pkgname}-${pkgver}
+  ./autogen.sh
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--with-dbus-sys-dir=/usr/share/dbus-1/system.d \
+--localstatedir=/var \
+--sbindir=/usr/bin
+  make
+}
+
+package() {
+  cd ${_pkgname}-${pkgver}
+  DESTDIR="${pkgdir}" make install
+  install -Dm644 "${srcdir}"/modules-load-thermald.conf 
"${pkgdir}"/usr/lib/modules-load.d/thermald.conf
+}

Deleted: modules-load-thermald.conf
===
--- modules-load-thermald.conf  2020-12-02 13:56:58 UTC (rev 769156)
+++ modules-load-thermald.conf  2020-12-02 13:57:02 UTC (rev 769157)
@@ -1,2 +0,0 @@
-msr
-coretemp

Copied: thermald/repos/community-x86_64/modules-load-thermald.conf (from rev 
769156, thermald/trunk/modules-load-thermald.conf)
===
--- modules-load-thermald.conf  (rev 0)
+++ modules-load-thermald.conf  2020-12-02 13:57:02 UTC (rev 769157)
@@ -0,0 +1,2 @@
+msr
+coretemp


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

2020-12-02 Thread Frederik Schwan via arch-commits
Date: Wednesday, December 2, 2020 @ 13:56:58
  Author: freswa
Revision: 769156

upgpkg: thermald 2.4.1-1

Modified:
  thermald/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-02 13:53:32 UTC (rev 769155)
+++ PKGBUILD2020-12-02 13:56:58 UTC (rev 769156)
@@ -5,7 +5,7 @@
 
 pkgname=thermald
 _pkgname=thermal_daemon
-pkgver=2.4
+pkgver=2.4.1
 pkgrel=1
 pkgdesc='The Linux Thermal Daemon program from 01.org'
 arch=('x86_64')
@@ -15,7 +15,7 @@
 makedepends=('autoconf-archive' 'python' 'gtk-doc')
 
source=("https://github.com/intel/thermal_daemon/archive/v${pkgver}/${_pkgname}-${pkgver}.tar.gz;
 'modules-load-thermald.conf')
-b2sums=('3554e1af02cde8d8953dc997a3f33a61d1464bbdb85c14ce72c7e440f67eb3e563d68c799bcffbf8354907694bef1da22dea4aeb464ef86a75af742ce7d969c1'
+b2sums=('ee4d6bc590bc50639c0b19adbba7e243358174a837b2ff155dea060b1cd09171d4fb77b18b785dc9f64a633f680358cb1d7b36e3bd438e5267e0a0a27e18497e'
 
'70cdf39afbcc4ea6b0cbe59182714a18755bad8e742f69f9b08e1415dd8f77e00473b9808c46dec3de4e0b5ec17f0bc16d0bd54d61b1e8e77e27901d90aedceb')
 
 build() {


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

2020-12-02 Thread Frederik Schwan via arch-commits
Date: Wednesday, December 2, 2020 @ 13:53:32
  Author: freswa
Revision: 769155

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-12-02 13:53:30 UTC (rev 769154)
+++ PKGBUILD2020-12-02 13:53:32 UTC (rev 769155)
@@ -1,31 +0,0 @@
-# Maintainer: Frederik Schwan 
-# Contributor: Hao Long 
-
-pkgname=python-rich
-_name=rich
-pkgver=9.2.0
-pkgrel=2
-pkgdesc='Render rich text, tables, progress bars, syntax highlighting, 
markdown and more to the terminal'
-arch=(any)
-url='https://github.com/willmcgugan/rich'
-license=('MIT')
-depends=('python-colorama' 'python-pygments' 'python-typing_extensions' 
'python-commonmark')
-makedepends=('python-setuptools' 'python-dephell')
-source=("https://github.com/willmcgugan/rich/archive/v${pkgver}/rich-${pkgver}.tar.gz;)
-b2sums=('d041962ef1281f1f2bb071a29c96c26d36de042ad8531cf0e44408eb3cb0f9d745f69cae408ee9d296f83e3037cae973b86903c6c9a85202207f67828f601637')
-
-prepare() {
-  cd rich-${pkgver}
-  dephell deps convert --from pyproject.toml --to setup.py
-}
-
-build() {
-  cd rich-${pkgver}
-  python3 setup.py build
-}
-
-package() {
-  cd rich-${pkgver}
-  python3 setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: python-rich/repos/community-any/PKGBUILD (from rev 769154, 
python-rich/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-12-02 13:53:32 UTC (rev 769155)
@@ -0,0 +1,30 @@
+# Maintainer: Frederik Schwan 
+# Contributor: Hao Long 
+
+pkgname=python-rich
+pkgver=9.3.0
+pkgrel=1
+pkgdesc='Render rich text, tables, progress bars, syntax highlighting, 
markdown and more to the terminal'
+arch=(any)
+url='https://github.com/willmcgugan/rich'
+license=('MIT')
+depends=('python-colorama' 'python-pygments' 'python-typing_extensions' 
'python-commonmark')
+makedepends=('python-setuptools' 'python-dephell')
+source=("https://github.com/willmcgugan/rich/archive/v${pkgver}/rich-${pkgver}.tar.gz;)
+b2sums=('839f95902ede956461605e7472663adeb1377dab10651c94b080bb23e10d84a17ccff9cb93d115b7caf110d2647658d1355999e10bdfd2bc64ace1328370')
+
+prepare() {
+  cd rich-${pkgver}
+  dephell deps convert --from pyproject.toml --to setup.py
+}
+
+build() {
+  cd rich-${pkgver}
+  python3 setup.py build
+}
+
+package() {
+  cd rich-${pkgver}
+  python3 setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}


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

2020-12-02 Thread Frederik Schwan via arch-commits
Date: Wednesday, December 2, 2020 @ 13:53:30
  Author: freswa
Revision: 769154

upgpkg: python-rich 9.3.0-1

Modified:
  python-rich/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-02 13:00:34 UTC (rev 769153)
+++ PKGBUILD2020-12-02 13:53:30 UTC (rev 769154)
@@ -2,9 +2,8 @@
 # Contributor: Hao Long 
 
 pkgname=python-rich
-_name=rich
-pkgver=9.2.0
-pkgrel=2
+pkgver=9.3.0
+pkgrel=1
 pkgdesc='Render rich text, tables, progress bars, syntax highlighting, 
markdown and more to the terminal'
 arch=(any)
 url='https://github.com/willmcgugan/rich'
@@ -12,7 +11,7 @@
 depends=('python-colorama' 'python-pygments' 'python-typing_extensions' 
'python-commonmark')
 makedepends=('python-setuptools' 'python-dephell')
 
source=("https://github.com/willmcgugan/rich/archive/v${pkgver}/rich-${pkgver}.tar.gz;)
-b2sums=('d041962ef1281f1f2bb071a29c96c26d36de042ad8531cf0e44408eb3cb0f9d745f69cae408ee9d296f83e3037cae973b86903c6c9a85202207f67828f601637')
+b2sums=('839f95902ede956461605e7472663adeb1377dab10651c94b080bb23e10d84a17ccff9cb93d115b7caf110d2647658d1355999e10bdfd2bc64ace1328370')
 
 prepare() {
   cd rich-${pkgver}


[arch-commits] Commit in perl-par-packer/trunk (PKGBUILD)

2020-11-30 Thread Frederik Schwan via arch-commits
Date: Monday, November 30, 2020 @ 21:07:33
  Author: freswa
Revision: 766737

upgpkg: perl-par-packer 1.051-1

Modified:
  perl-par-packer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-30 21:07:21 UTC (rev 766736)
+++ PKGBUILD2020-11-30 21:07:33 UTC (rev 766737)
@@ -4,8 +4,8 @@
 # Contributor: Tony Sokhon 
 
 pkgname=perl-par-packer
-pkgver=1.050
-pkgrel=5
+pkgver=1.051
+pkgrel=1
 pkgdesc='PAR Packager'
 arch=('x86_64')
 url='https://metacpan.org/release/PAR-Packer'
@@ -16,7 +16,7 @@
 makedepends=('perl-extutils-makemaker')
 options=('!emptydirs' purge)
 
source=("https://cpan.metacpan.org/authors/id/R/RS/RSCHUPP/PAR-Packer-${pkgver}.tar.gz;)
-b2sums=('9f7702ef38d6c21fc4df6d4a2dbc432c6d64cee99cda707a7e9197aa4d7e276210b9095da92cb1767275eba6e7671b6410b95e082d579972bab97cba48a365bf')
+b2sums=('85f3f42db8eb37fe45b5227964b8f9adaebdeaa191a93da775fcfdd1f5c318eb81b056716b811bb6b66cc2f18483de7df7d8ab0c116e1068dd6adb3a8ca69ac9')
 
 build() {
   cd PAR-Packer-${pkgver}


[arch-commits] Commit in perl-par-packer/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-11-30 Thread Frederik Schwan via arch-commits
Date: Monday, November 30, 2020 @ 21:07:37
  Author: freswa
Revision: 766738

archrelease: copy trunk to community-x86_64

Added:
  perl-par-packer/repos/community-x86_64/PKGBUILD
(from rev 766737, perl-par-packer/trunk/PKGBUILD)
Deleted:
  perl-par-packer/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-30 21:07:33 UTC (rev 766737)
+++ PKGBUILD2020-11-30 21:07:37 UTC (rev 766738)
@@ -1,42 +0,0 @@
-# Maintainer: Frederik Schwan 
-# Contributor: Amish 
-# Contributor: Justin Davis 
-# Contributor: Tony Sokhon 
-
-pkgname=perl-par-packer
-pkgver=1.050
-pkgrel=5
-pkgdesc='PAR Packager'
-arch=('x86_64')
-url='https://metacpan.org/release/PAR-Packer'
-license=('GPL')
-# This package links agains libperl.so
-depends=('perl=5.32.0' 'perl-archive-zip' 'perl-getopt-argvfile' 
'perl-ipc-run3' 'perl-module-scandeps'
-  'perl-par' 'perl-par-dist')
-makedepends=('perl-extutils-makemaker')
-options=('!emptydirs' purge)
-source=("https://cpan.metacpan.org/authors/id/R/RS/RSCHUPP/PAR-Packer-${pkgver}.tar.gz;)
-b2sums=('9f7702ef38d6c21fc4df6d4a2dbc432c6d64cee99cda707a7e9197aa4d7e276210b9095da92cb1767275eba6e7671b6410b95e082d579972bab97cba48a365bf')
-
-build() {
-  cd PAR-Packer-${pkgver}
-  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
-  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
-  perl Makefile.PL
-  make
-}
-
-check() {
-  cd PAR-Packer-${pkgver}
-  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
-  export PERL_MM_USE_DEFAULT=1
-  make test
-}
-
-package() {
-  cd PAR-Packer-${pkgver}
-  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
-  make install INSTALLDIRS=vendor DESTDIR="${pkgdir}"
-  #remove conflicting and empty man page
-  rm "${pkgdir}"/usr/share/man/man1/pp.1
-}

Copied: perl-par-packer/repos/community-x86_64/PKGBUILD (from rev 766737, 
perl-par-packer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-30 21:07:37 UTC (rev 766738)
@@ -0,0 +1,42 @@
+# Maintainer: Frederik Schwan 
+# Contributor: Amish 
+# Contributor: Justin Davis 
+# Contributor: Tony Sokhon 
+
+pkgname=perl-par-packer
+pkgver=1.051
+pkgrel=1
+pkgdesc='PAR Packager'
+arch=('x86_64')
+url='https://metacpan.org/release/PAR-Packer'
+license=('GPL')
+# This package links agains libperl.so
+depends=('perl=5.32.0' 'perl-archive-zip' 'perl-getopt-argvfile' 
'perl-ipc-run3' 'perl-module-scandeps'
+  'perl-par' 'perl-par-dist')
+makedepends=('perl-extutils-makemaker')
+options=('!emptydirs' purge)
+source=("https://cpan.metacpan.org/authors/id/R/RS/RSCHUPP/PAR-Packer-${pkgver}.tar.gz;)
+b2sums=('85f3f42db8eb37fe45b5227964b8f9adaebdeaa191a93da775fcfdd1f5c318eb81b056716b811bb6b66cc2f18483de7df7d8ab0c116e1068dd6adb3a8ca69ac9')
+
+build() {
+  cd PAR-Packer-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
+  perl Makefile.PL
+  make
+}
+
+check() {
+  cd PAR-Packer-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1
+  make test
+}
+
+package() {
+  cd PAR-Packer-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  make install INSTALLDIRS=vendor DESTDIR="${pkgdir}"
+  #remove conflicting and empty man page
+  rm "${pkgdir}"/usr/share/man/man1/pp.1
+}


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

2020-11-29 Thread Frederik Schwan via arch-commits
Date: Sunday, November 29, 2020 @ 22:06:52
  Author: freswa
Revision: 766452

archrelease: copy trunk to community-any

Added:
  imapsync/repos/community-any/PKGBUILD
(from rev 766451, imapsync/trunk/PKGBUILD)
Deleted:
  imapsync/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-29 22:06:48 UTC (rev 766451)
+++ PKGBUILD2020-11-29 22:06:52 UTC (rev 766452)
@@ -1,37 +0,0 @@
-# Maintainer: Frederik Schwan 
-
-pkgname=imapsync
-pkgver=1.945
-pkgrel=2
-pkgdesc='IMAP synchronisation, sync, copy or migration tool'
-arch=('any')
-url='https://github.com/imapsync/imapsync'
-license=('custom:imapsync')
-depends=('perl-cgi' 'perl-crypt-openssl-rsa' 'perl-data-uniqid' 
'perl-date-manip'
-'perl-file-copy-recursive' 'perl-file-tail' 'perl-html-parser' 
'perl-io-socket-inet6'
-'perl-io-socket-ssl' 'perl-io-tee' 'perl-json-webtoken' 'perl-libwww' 
'perl-module-scandeps'
-'perl-mail-imapclient' 'perl-module-runtime' 'perl-ntlm' 
'perl-package-stash'
-'perl-readonly' 'perl-regexp-common' 'perl-sys-meminfo'
-'perl-term-readkey' 'perl-unicode-string')
-makedepends=('cpanminus' 'perl-par-packer')
-checkdepends=('inetutils' 'lsb-release' 'time' 'procps-ng' 'perl-test-deep' 
'perl-test-fatal'
-  'perl-test-mock-guard' 'perl-test-mockobject' 'perl-test-pod' 
'perl-test-requires'
-  'perl-test-warn')
-source=("https://github.com/imapsync/imapsync/archive/${pkgname}-${pkgver}.tar.gz;)
-b2sums=('98ef55135239ed9625fdce9e8944c2f7a8c8c1b1020c383bbda4f3e18a486b5b691e22faaa896b21e897babb04954d548ff65bf04e79db719a1e8636f0e5e3fd')
-
-build() {
-  cd ${pkgname}-${pkgname}-${pkgver}
-  make
-}
-
-check() {
-  cd ${pkgname}-${pkgname}-${pkgver}
-  make test
-}
-
-package() {
-  cd ${pkgname}-${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE.txt
-}

Copied: imapsync/repos/community-any/PKGBUILD (from rev 766451, 
imapsync/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-29 22:06:52 UTC (rev 766452)
@@ -0,0 +1,37 @@
+# Maintainer: Frederik Schwan 
+
+pkgname=imapsync
+pkgver=1.977
+pkgrel=1
+pkgdesc='IMAP synchronisation, sync, copy or migration tool'
+arch=('any')
+url='https://github.com/imapsync/imapsync'
+license=('custom:imapsync')
+depends=('perl-cgi' 'perl-crypt-openssl-rsa' 'perl-data-uniqid' 
'perl-date-manip' 'perl-encode-imaputf7'
+'perl-file-copy-recursive' 'perl-file-tail' 'perl-html-parser' 
'perl-io-socket-inet6'
+'perl-io-socket-ssl' 'perl-io-tee' 'perl-json-webtoken' 'perl-libwww' 
'perl-module-scandeps'
+'perl-mail-imapclient' 'perl-module-runtime' 'perl-ntlm' 
'perl-package-stash'
+'perl-readonly' 'perl-regexp-common' 'perl-sys-meminfo'
+'perl-term-readkey' 'perl-unicode-string')
+makedepends=('cpanminus' 'perl-par-packer')
+checkdepends=('inetutils' 'lsb-release' 'time' 'procps-ng' 'perl-test-deep' 
'perl-test-fatal'
+  'perl-test-mock-guard' 'perl-test-mockobject' 'perl-test-pod' 
'perl-test-requires'
+  'perl-test-warn')
+source=("https://github.com/imapsync/imapsync/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+b2sums=('ccbe678f331a59b2ee50150b4e6dd3b2a7fb7750f204f3d67c90beed600b83b38a712bfa723dc0a73d21fb9bc03a5013f287469afa1164962cfb0f2923d93910')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make test
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE.txt
+}


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

2020-11-29 Thread Frederik Schwan via arch-commits
Date: Sunday, November 29, 2020 @ 22:06:48
  Author: freswa
Revision: 766451

upgpkg: imapsync 1.977-1

Modified:
  imapsync/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-29 21:58:05 UTC (rev 766450)
+++ PKGBUILD2020-11-29 22:06:48 UTC (rev 766451)
@@ -1,13 +1,13 @@
 # Maintainer: Frederik Schwan 
 
 pkgname=imapsync
-pkgver=1.945
-pkgrel=2
+pkgver=1.977
+pkgrel=1
 pkgdesc='IMAP synchronisation, sync, copy or migration tool'
 arch=('any')
 url='https://github.com/imapsync/imapsync'
 license=('custom:imapsync')
-depends=('perl-cgi' 'perl-crypt-openssl-rsa' 'perl-data-uniqid' 
'perl-date-manip'
+depends=('perl-cgi' 'perl-crypt-openssl-rsa' 'perl-data-uniqid' 
'perl-date-manip' 'perl-encode-imaputf7'
 'perl-file-copy-recursive' 'perl-file-tail' 'perl-html-parser' 
'perl-io-socket-inet6'
 'perl-io-socket-ssl' 'perl-io-tee' 'perl-json-webtoken' 'perl-libwww' 
'perl-module-scandeps'
 'perl-mail-imapclient' 'perl-module-runtime' 'perl-ntlm' 
'perl-package-stash'
@@ -17,21 +17,21 @@
 checkdepends=('inetutils' 'lsb-release' 'time' 'procps-ng' 'perl-test-deep' 
'perl-test-fatal'
   'perl-test-mock-guard' 'perl-test-mockobject' 'perl-test-pod' 
'perl-test-requires'
   'perl-test-warn')
-source=("https://github.com/imapsync/imapsync/archive/${pkgname}-${pkgver}.tar.gz;)
-b2sums=('98ef55135239ed9625fdce9e8944c2f7a8c8c1b1020c383bbda4f3e18a486b5b691e22faaa896b21e897babb04954d548ff65bf04e79db719a1e8636f0e5e3fd')
+source=("https://github.com/imapsync/imapsync/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+b2sums=('ccbe678f331a59b2ee50150b4e6dd3b2a7fb7750f204f3d67c90beed600b83b38a712bfa723dc0a73d21fb9bc03a5013f287469afa1164962cfb0f2923d93910')
 
 build() {
-  cd ${pkgname}-${pkgname}-${pkgver}
+  cd ${pkgname}-${pkgver}
   make
 }
 
 check() {
-  cd ${pkgname}-${pkgname}-${pkgver}
+  cd ${pkgname}-${pkgver}
   make test
 }
 
 package() {
-  cd ${pkgname}-${pkgname}-${pkgver}
+  cd ${pkgname}-${pkgver}
   make DESTDIR="${pkgdir}" install
   install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE.txt
 }


[arch-commits] Commit in perl-encode-imaputf7/repos (2 files)

2020-11-29 Thread Frederik Schwan via arch-commits
Date: Sunday, November 29, 2020 @ 21:58:05
  Author: freswa
Revision: 766450

archrelease: copy trunk to community-any

Added:
  perl-encode-imaputf7/repos/community-any/
  perl-encode-imaputf7/repos/community-any/PKGBUILD
(from rev 766449, perl-encode-imaputf7/trunk/PKGBUILD)

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

Copied: perl-encode-imaputf7/repos/community-any/PKGBUILD (from rev 766449, 
perl-encode-imaputf7/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2020-11-29 21:58:05 UTC (rev 766450)
@@ -0,0 +1,35 @@
+# Maintainer: Frederik Schwan 
+# Contributor: Moritz Bunkus 
+
+pkgname='perl-encode-imaputf7'
+pkgver=1.05
+pkgrel=4
+pkgdesc='Modification of UTF-7 encoding for IMAP'
+arch=('any')
+url='http://search.cpan.org/dist/Encode-IMAPUTF7'
+license=('GPL')
+checkdepends=('perl-test-nowarnings')
+options=('!emptydirs' purge)
+source=("http://cpan.metacpan.org/authors/id/P/PM/PMAKHOLM/Encode-IMAPUTF7-${pkgver}.tar.gz;)
+b2sums=('8024f0029145df4ec409394eaa799612dadd65a1bc6f2e9fdad51a950a0756b73daa5da2579f22d38efd367642a9ae0f7402f6beeea02a51f84a725803849ba6')
+
+build() {
+  cd Encode-IMAPUTF7-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
+  /usr/bin/perl Makefile.PL
+  make
+}
+
+check() {
+  cd Encode-IMAPUTF7-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1
+  make test
+}
+
+package() {
+  cd Encode-IMAPUTF7-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  make install INSTALLDIRS=vendor DESTDIR="${pkgdir}"
+}


[arch-commits] Commit in (4 files)

2020-11-29 Thread Frederik Schwan via arch-commits
Date: Sunday, November 29, 2020 @ 21:57:45
  Author: freswa
Revision: 766449

move perl-encode-imaputf7 from unsupported to community

Added:
  perl-encode-imaputf7/
  perl-encode-imaputf7/repos/
  perl-encode-imaputf7/trunk/
  perl-encode-imaputf7/trunk/PKGBUILD

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

Added: perl-encode-imaputf7/trunk/PKGBUILD
===
--- perl-encode-imaputf7/trunk/PKGBUILD (rev 0)
+++ perl-encode-imaputf7/trunk/PKGBUILD 2020-11-29 21:57:45 UTC (rev 766449)
@@ -0,0 +1,35 @@
+# Maintainer: Frederik Schwan 
+# Contributor: Moritz Bunkus 
+
+pkgname='perl-encode-imaputf7'
+pkgver=1.05
+pkgrel=4
+pkgdesc='Modification of UTF-7 encoding for IMAP'
+arch=('any')
+url='http://search.cpan.org/dist/Encode-IMAPUTF7'
+license=('GPL')
+checkdepends=('perl-test-nowarnings')
+options=('!emptydirs' purge)
+source=("http://cpan.metacpan.org/authors/id/P/PM/PMAKHOLM/Encode-IMAPUTF7-${pkgver}.tar.gz;)
+b2sums=('8024f0029145df4ec409394eaa799612dadd65a1bc6f2e9fdad51a950a0756b73daa5da2579f22d38efd367642a9ae0f7402f6beeea02a51f84a725803849ba6')
+
+build() {
+  cd Encode-IMAPUTF7-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
+  /usr/bin/perl Makefile.PL
+  make
+}
+
+check() {
+  cd Encode-IMAPUTF7-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1
+  make test
+}
+
+package() {
+  cd Encode-IMAPUTF7-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  make install INSTALLDIRS=vendor DESTDIR="${pkgdir}"
+}


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

2020-11-27 Thread Frederik Schwan via arch-commits
Date: Friday, November 27, 2020 @ 16:09:50
  Author: freswa
Revision: 764386

archrelease: copy trunk to community-x86_64

Added:
  neomutt/repos/community-x86_64/PKGBUILD
(from rev 764385, neomutt/trunk/PKGBUILD)
  neomutt/repos/community-x86_64/default-ca-certificates.patch
(from rev 764385, neomutt/trunk/default-ca-certificates.patch)
Deleted:
  neomutt/repos/community-x86_64/PKGBUILD
  neomutt/repos/community-x86_64/default-ca-certificates.patch

---+
 PKGBUILD  |  131 
 default-ca-certificates.patch |   24 +++
 2 files changed, 78 insertions(+), 77 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-27 16:09:47 UTC (rev 764385)
+++ PKGBUILD2020-11-27 16:09:50 UTC (rev 764386)
@@ -1,65 +0,0 @@
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-# Contributor: Alad Wenter 
-# Contributor: Jelle van der Waa 
-# Contributor: Chris Salzberg 
-# Contributor: Leonidas Spyropoulos 
-pkgname=neomutt
-pkgver=20201120
-pkgrel=2
-pkgdesc='A version of mutt with added features'
-url='https://neomutt.org/'
-license=('GPL')
-arch=('x86_64')
-depends=('glibc' 'gpgme' 'lua53' 'notmuch-runtime' 'krb5' 'gnutls' 'sqlite'
- 'libsasl' 'ncurses' 'libidn2' 'lmdb' 'gdbm' 'kyotocabinet'
- 'lz4' 'zlib' 'zstd' 'db')
-optdepends=('python: keybase.py'
-'perl: smime_keys'
-'ca-certificates: default CA certificates')
-makedepends=('git' 'gnupg' 'libxslt' 'docbook-xsl' 'w3m')
-_github='https://github.com/neomutt/neomutt'
-source=("$pkgname-$pkgver.tar.gz::$_github/archive/$pkgver.tar.gz"
-
"$pkgname-$pkgver.tar.gz.sig::$_github/releases/download/$pkgver/$pkgver.tar.gz.sig"
-"default-ca-certificates.patch")
-sha256sums=('48191d4f17cb1e5fd094ca92c581e1bb9599f058c122cc0e35df4e1c0cb53f47'
-'SKIP'
-'571716b8979e9b43328416c3c56eff228b6c58355d7c080b8987ea89c6360776')
-validpgpkeys=('86C2397270DD7A561263CA4E5FAF0A6EE7371805') # Richard Russon 
(flatcap) 
-
-prepare() {
-cd "$pkgname-$pkgver"
-patch -Np1 -i "$srcdir/default-ca-certificates.patch"
-}
-
-build() {
-cd "$pkgname-$pkgver"
-./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib \
---gpgme \
---sqlite \
---autocrypt \
---lua \
---notmuch \
---gss \
---gnutls \
---sasl \
---with-ui=ncurses \
---with-idn2=/usr \
---disable-idn \
---idn2 \
---bdb \
---lmdb \
---kyotocabinet \
---gdbm \
---lz4 \
---zlib \
---zstd
-make
-}
-
-package() {
-cd "$pkgname-$pkgver"
-make DESTDIR="$pkgdir" install
-}

Copied: neomutt/repos/community-x86_64/PKGBUILD (from rev 764385, 
neomutt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-27 16:09:50 UTC (rev 764386)
@@ -0,0 +1,66 @@
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+# Maintainer: Frederik Schwan 
+# Contributor: Alad Wenter 
+# Contributor: Jelle van der Waa 
+# Contributor: Chris Salzberg 
+# Contributor: Leonidas Spyropoulos 
+pkgname=neomutt
+pkgver=20201127
+pkgrel=1
+pkgdesc='A version of mutt with added features'
+url='https://neomutt.org/'
+license=('GPL')
+arch=('x86_64')
+depends=('glibc' 'gpgme' 'lua53' 'notmuch-runtime' 'krb5' 'gnutls' 'sqlite'
+ 'libsasl' 'ncurses' 'libidn2' 'lmdb' 'gdbm' 'kyotocabinet'
+ 'lz4' 'zlib' 'zstd' 'db')
+optdepends=('python: keybase.py'
+'perl: smime_keys'
+'ca-certificates: default CA certificates')
+makedepends=('git' 'gnupg' 'libxslt' 'docbook-xsl' 'w3m')
+_github='https://github.com/neomutt/neomutt'
+source=("$pkgname-$pkgver.tar.gz::$_github/archive/$pkgver.tar.gz"
+
"$pkgname-$pkgver.tar.gz.sig::$_github/releases/download/$pkgver/$pkgver.tar.gz.sig"
+"default-ca-certificates.patch")
+sha256sums=('29ac51a5ac5b4524dfdbb5ac78b59a1cc28c1090c541fb3da7bc86f838ab64cd'
+'SKIP'
+'571716b8979e9b43328416c3c56eff228b6c58355d7c080b8987ea89c6360776')
+validpgpkeys=('86C2397270DD7A561263CA4E5FAF0A6EE7371805') # Richard Russon 
(flatcap) 
+
+prepare() {
+cd "$pkgname-$pkgver"
+patch -Np1 -i "$srcdir/default-ca-certificates.patch"
+}
+
+build() {
+cd "$pkgname-$pkgver"
+./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib \
+--gpgme \
+--sqlite \
+--autocrypt \
+--lua \
+--notmuch \
+--gss \
+--gnutls \
+--sasl \
+--with-ui=ncurses \
+--with-idn2=/usr \
+--disable-idn \
+--idn2 \
+--bdb \
+--lmdb \
+--kyotocabinet \
+--gdbm \
+--lz4 \
+

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

2020-11-27 Thread Frederik Schwan via arch-commits
Date: Friday, November 27, 2020 @ 16:09:47
  Author: freswa
Revision: 764385

upgpkg: neomutt 20201127-1

Modified:
  neomutt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-27 15:46:48 UTC (rev 764384)
+++ PKGBUILD2020-11-27 16:09:47 UTC (rev 764385)
@@ -5,8 +5,8 @@
 # Contributor: Chris Salzberg 
 # Contributor: Leonidas Spyropoulos 
 pkgname=neomutt
-pkgver=20201120
-pkgrel=2
+pkgver=20201127
+pkgrel=1
 pkgdesc='A version of mutt with added features'
 url='https://neomutt.org/'
 license=('GPL')
@@ -22,7 +22,7 @@
 source=("$pkgname-$pkgver.tar.gz::$_github/archive/$pkgver.tar.gz"
 
"$pkgname-$pkgver.tar.gz.sig::$_github/releases/download/$pkgver/$pkgver.tar.gz.sig"
 "default-ca-certificates.patch")
-sha256sums=('48191d4f17cb1e5fd094ca92c581e1bb9599f058c122cc0e35df4e1c0cb53f47'
+sha256sums=('29ac51a5ac5b4524dfdbb5ac78b59a1cc28c1090c541fb3da7bc86f838ab64cd'
 'SKIP'
 '571716b8979e9b43328416c3c56eff228b6c58355d7c080b8987ea89c6360776')
 validpgpkeys=('86C2397270DD7A561263CA4E5FAF0A6EE7371805') # Richard Russon 
(flatcap) 


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

2020-11-25 Thread Frederik Schwan via arch-commits
Date: Wednesday, November 25, 2020 @ 21:25:47
  Author: freswa
Revision: 761296

archrelease: copy trunk to community-x86_64

Added:
  thermald/repos/community-x86_64/PKGBUILD
(from rev 761295, thermald/trunk/PKGBUILD)
  thermald/repos/community-x86_64/modules-load-thermald.conf
(from rev 761295, thermald/trunk/modules-load-thermald.conf)
Deleted:
  thermald/repos/community-x86_64/PKGBUILD
  thermald/repos/community-x86_64/modules-load-thermald.conf

+
 PKGBUILD   |   74 +--
 modules-load-thermald.conf |4 +-
 2 files changed, 39 insertions(+), 39 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-25 21:25:45 UTC (rev 761295)
+++ PKGBUILD2020-11-25 21:25:47 UTC (rev 761296)
@@ -1,37 +0,0 @@
-# Maintainer: Frederik Schwan 
-# Contributor:Francois Menning 
-# Contributor: gilbus 
-# Contributor: Bruno Pagani 
-
-pkgname=thermald
-_pkgname=thermal_daemon
-pkgver=2.3
-pkgrel=1
-pkgdesc='The Linux Thermal Daemon program from 01.org'
-arch=('x86_64')
-url='https://01.org/linux-thermal-daemon'
-license=('GPL2')
-depends=('dbus-glib' 'libxml2' 'libevdev' 'upower')
-makedepends=('autoconf-archive' 'python' 'gtk-doc')
-source=("https://github.com/intel/thermal_daemon/archive/v${pkgver}/${_pkgname}-${pkgver}.tar.gz;
-'modules-load-thermald.conf')
-b2sums=('caef87d670b14bfa0dbe6ca4873ebea4b0a9960a9bad48ddb10abb348e25cafdbdf5dad831a1c3ad38e71ab61d7f123df99046dec1e5ce2c32be506bc4b1312f'
-
'70cdf39afbcc4ea6b0cbe59182714a18755bad8e742f69f9b08e1415dd8f77e00473b9808c46dec3de4e0b5ec17f0bc16d0bd54d61b1e8e77e27901d90aedceb')
-
-build() {
-  cd ${_pkgname}-${pkgver}
-  ./autogen.sh
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---with-dbus-sys-dir=/usr/share/dbus-1/system.d \
---localstatedir=/var \
---sbindir=/usr/bin
-  make
-}
-
-package() {
-  cd ${_pkgname}-${pkgver}
-  DESTDIR="${pkgdir}" make install
-  install -Dm644 "${srcdir}"/modules-load-thermald.conf 
"${pkgdir}"/usr/lib/modules-load.d/thermald.conf
-}

Copied: thermald/repos/community-x86_64/PKGBUILD (from rev 761295, 
thermald/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-25 21:25:47 UTC (rev 761296)
@@ -0,0 +1,37 @@
+# Maintainer: Frederik Schwan 
+# Contributor:Francois Menning 
+# Contributor: gilbus 
+# Contributor: Bruno Pagani 
+
+pkgname=thermald
+_pkgname=thermal_daemon
+pkgver=2.4
+pkgrel=1
+pkgdesc='The Linux Thermal Daemon program from 01.org'
+arch=('x86_64')
+url='https://01.org/linux-thermal-daemon'
+license=('GPL2')
+depends=('dbus-glib' 'libxml2' 'libevdev' 'upower')
+makedepends=('autoconf-archive' 'python' 'gtk-doc')
+source=("https://github.com/intel/thermal_daemon/archive/v${pkgver}/${_pkgname}-${pkgver}.tar.gz;
+'modules-load-thermald.conf')
+b2sums=('3554e1af02cde8d8953dc997a3f33a61d1464bbdb85c14ce72c7e440f67eb3e563d68c799bcffbf8354907694bef1da22dea4aeb464ef86a75af742ce7d969c1'
+
'70cdf39afbcc4ea6b0cbe59182714a18755bad8e742f69f9b08e1415dd8f77e00473b9808c46dec3de4e0b5ec17f0bc16d0bd54d61b1e8e77e27901d90aedceb')
+
+build() {
+  cd ${_pkgname}-${pkgver}
+  ./autogen.sh
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--with-dbus-sys-dir=/usr/share/dbus-1/system.d \
+--localstatedir=/var \
+--sbindir=/usr/bin
+  make
+}
+
+package() {
+  cd ${_pkgname}-${pkgver}
+  DESTDIR="${pkgdir}" make install
+  install -Dm644 "${srcdir}"/modules-load-thermald.conf 
"${pkgdir}"/usr/lib/modules-load.d/thermald.conf
+}

Deleted: modules-load-thermald.conf
===
--- modules-load-thermald.conf  2020-11-25 21:25:45 UTC (rev 761295)
+++ modules-load-thermald.conf  2020-11-25 21:25:47 UTC (rev 761296)
@@ -1,2 +0,0 @@
-msr
-coretemp

Copied: thermald/repos/community-x86_64/modules-load-thermald.conf (from rev 
761295, thermald/trunk/modules-load-thermald.conf)
===
--- modules-load-thermald.conf  (rev 0)
+++ modules-load-thermald.conf  2020-11-25 21:25:47 UTC (rev 761296)
@@ -0,0 +1,2 @@
+msr
+coretemp


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

2020-11-25 Thread Frederik Schwan via arch-commits
Date: Wednesday, November 25, 2020 @ 21:25:45
  Author: freswa
Revision: 761295

upgpkg: thermald 2.4-1

Modified:
  thermald/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-25 21:08:04 UTC (rev 761294)
+++ PKGBUILD2020-11-25 21:25:45 UTC (rev 761295)
@@ -5,7 +5,7 @@
 
 pkgname=thermald
 _pkgname=thermal_daemon
-pkgver=2.3
+pkgver=2.4
 pkgrel=1
 pkgdesc='The Linux Thermal Daemon program from 01.org'
 arch=('x86_64')
@@ -15,7 +15,7 @@
 makedepends=('autoconf-archive' 'python' 'gtk-doc')
 
source=("https://github.com/intel/thermal_daemon/archive/v${pkgver}/${_pkgname}-${pkgver}.tar.gz;
 'modules-load-thermald.conf')
-b2sums=('caef87d670b14bfa0dbe6ca4873ebea4b0a9960a9bad48ddb10abb348e25cafdbdf5dad831a1c3ad38e71ab61d7f123df99046dec1e5ce2c32be506bc4b1312f'
+b2sums=('3554e1af02cde8d8953dc997a3f33a61d1464bbdb85c14ce72c7e440f67eb3e563d68c799bcffbf8354907694bef1da22dea4aeb464ef86a75af742ce7d969c1'
 
'70cdf39afbcc4ea6b0cbe59182714a18755bad8e742f69f9b08e1415dd8f77e00473b9808c46dec3de4e0b5ec17f0bc16d0bd54d61b1e8e77e27901d90aedceb')
 
 build() {


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

2020-11-24 Thread Frederik Schwan via arch-commits
Date: Tuesday, November 24, 2020 @ 16:24:34
  Author: freswa
Revision: 760957

add new maintainer

Modified:
  neomutt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-24 16:23:04 UTC (rev 760956)
+++ PKGBUILD2020-11-24 16:24:34 UTC (rev 760957)
@@ -1,4 +1,5 @@
 # Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+# Maintainer: Frederik Schwan 
 # Contributor: Alad Wenter 
 # Contributor: Jelle van der Waa 
 # Contributor: Chris Salzberg 


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

2020-11-24 Thread Frederik Schwan via arch-commits
Date: Tuesday, November 24, 2020 @ 16:23:04
  Author: freswa
Revision: 760956

archrelease: copy trunk to community-x86_64

Added:
  neomutt/repos/community-x86_64/PKGBUILD
(from rev 760955, neomutt/trunk/PKGBUILD)
  neomutt/repos/community-x86_64/default-ca-certificates.patch
(from rev 760955, neomutt/trunk/default-ca-certificates.patch)
Deleted:
  neomutt/repos/community-x86_64/PKGBUILD
  neomutt/repos/community-x86_64/default-ca-certificates.patch

---+
 PKGBUILD  |  129 
 default-ca-certificates.patch |   24 +++
 2 files changed, 77 insertions(+), 76 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-24 16:23:00 UTC (rev 760955)
+++ PKGBUILD2020-11-24 16:23:04 UTC (rev 760956)
@@ -1,64 +0,0 @@
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-# Contributor: Alad Wenter 
-# Contributor: Jelle van der Waa 
-# Contributor: Chris Salzberg 
-# Contributor: Leonidas Spyropoulos 
-pkgname=neomutt
-pkgver=20201120
-pkgrel=1
-pkgdesc='A version of mutt with added features'
-url='https://neomutt.org/'
-license=('GPL')
-arch=('x86_64')
-depends=('glibc' 'gpgme' 'lua53' 'notmuch-runtime' 'krb5' 'gnutls' 'sqlite'
- 'libsasl' 'ncurses' 'libidn2' 'lmdb' 'gdbm' 'kyotocabinet'
- 'lz4' 'zlib' 'zstd')
-optdepends=('python: keybase.py'
-'perl: smime_keys'
-'ca-certificates: default CA certificates')
-makedepends=('git' 'gnupg' 'libxslt' 'docbook-xsl' 'w3m')
-_github='https://github.com/neomutt/neomutt'
-source=("$pkgname-$pkgver.tar.gz::$_github/archive/$pkgver.tar.gz"
-
"$pkgname-$pkgver.tar.gz.sig::$_github/releases/download/$pkgver/$pkgver.tar.gz.sig"
-"default-ca-certificates.patch")
-sha256sums=('48191d4f17cb1e5fd094ca92c581e1bb9599f058c122cc0e35df4e1c0cb53f47'
-'SKIP'
-'571716b8979e9b43328416c3c56eff228b6c58355d7c080b8987ea89c6360776')
-validpgpkeys=('86C2397270DD7A561263CA4E5FAF0A6EE7371805') # Richard Russon 
(flatcap) 
-
-prepare() {
-cd "$pkgname-$pkgver"
-patch -Np1 -i "$srcdir/default-ca-certificates.patch"
-}
-
-build() {
-cd "$pkgname-$pkgver"
-./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib \
---gpgme \
---sqlite \
---autocrypt \
---lua \
---notmuch \
---gss \
---gnutls \
---sasl \
---with-ui=ncurses \
---with-idn2=/usr \
---disable-idn \
---idn2 \
---lmdb \
---kyotocabinet \
---gdbm \
---lz4 \
---zlib \
---zstd
-make
-}
-
-package() {
-cd "$pkgname-$pkgver"
-make DESTDIR="$pkgdir" install
-}

Copied: neomutt/repos/community-x86_64/PKGBUILD (from rev 760955, 
neomutt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-24 16:23:04 UTC (rev 760956)
@@ -0,0 +1,65 @@
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+# Contributor: Alad Wenter 
+# Contributor: Jelle van der Waa 
+# Contributor: Chris Salzberg 
+# Contributor: Leonidas Spyropoulos 
+pkgname=neomutt
+pkgver=20201120
+pkgrel=2
+pkgdesc='A version of mutt with added features'
+url='https://neomutt.org/'
+license=('GPL')
+arch=('x86_64')
+depends=('glibc' 'gpgme' 'lua53' 'notmuch-runtime' 'krb5' 'gnutls' 'sqlite'
+ 'libsasl' 'ncurses' 'libidn2' 'lmdb' 'gdbm' 'kyotocabinet'
+ 'lz4' 'zlib' 'zstd' 'db')
+optdepends=('python: keybase.py'
+'perl: smime_keys'
+'ca-certificates: default CA certificates')
+makedepends=('git' 'gnupg' 'libxslt' 'docbook-xsl' 'w3m')
+_github='https://github.com/neomutt/neomutt'
+source=("$pkgname-$pkgver.tar.gz::$_github/archive/$pkgver.tar.gz"
+
"$pkgname-$pkgver.tar.gz.sig::$_github/releases/download/$pkgver/$pkgver.tar.gz.sig"
+"default-ca-certificates.patch")
+sha256sums=('48191d4f17cb1e5fd094ca92c581e1bb9599f058c122cc0e35df4e1c0cb53f47'
+'SKIP'
+'571716b8979e9b43328416c3c56eff228b6c58355d7c080b8987ea89c6360776')
+validpgpkeys=('86C2397270DD7A561263CA4E5FAF0A6EE7371805') # Richard Russon 
(flatcap) 
+
+prepare() {
+cd "$pkgname-$pkgver"
+patch -Np1 -i "$srcdir/default-ca-certificates.patch"
+}
+
+build() {
+cd "$pkgname-$pkgver"
+./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib \
+--gpgme \
+--sqlite \
+--autocrypt \
+--lua \
+--notmuch \
+--gss \
+--gnutls \
+--sasl \
+--with-ui=ncurses \
+--with-idn2=/usr \
+--disable-idn \
+--idn2 \
+--bdb \
+--lmdb \
+--kyotocabinet \
+--gdbm \
+--lz4 \
+--zlib \
+--zstd
+make
+}
+
+package() {
+

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

2020-11-24 Thread Frederik Schwan via arch-commits
Date: Tuesday, November 24, 2020 @ 16:23:00
  Author: freswa
Revision: 760955

add support for Berkeley DB

Modified:
  neomutt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-24 16:19:11 UTC (rev 760954)
+++ PKGBUILD2020-11-24 16:23:00 UTC (rev 760955)
@@ -5,7 +5,7 @@
 # Contributor: Leonidas Spyropoulos 
 pkgname=neomutt
 pkgver=20201120
-pkgrel=1
+pkgrel=2
 pkgdesc='A version of mutt with added features'
 url='https://neomutt.org/'
 license=('GPL')
@@ -12,7 +12,7 @@
 arch=('x86_64')
 depends=('glibc' 'gpgme' 'lua53' 'notmuch-runtime' 'krb5' 'gnutls' 'sqlite'
  'libsasl' 'ncurses' 'libidn2' 'lmdb' 'gdbm' 'kyotocabinet'
- 'lz4' 'zlib' 'zstd')
+ 'lz4' 'zlib' 'zstd' 'db')
 optdepends=('python: keybase.py'
 'perl: smime_keys'
 'ca-certificates: default CA certificates')
@@ -49,6 +49,7 @@
 --with-idn2=/usr \
 --disable-idn \
 --idn2 \
+--bdb \
 --lmdb \
 --kyotocabinet \
 --gdbm \


[arch-commits] Commit in virt-manager/repos/community-staging-any (PKGBUILD PKGBUILD)

2020-11-18 Thread Frederik Schwan via arch-commits
Date: Wednesday, November 18, 2020 @ 21:09:29
  Author: freswa
Revision: 757257

archrelease: copy trunk to community-staging-any

Added:
  virt-manager/repos/community-staging-any/PKGBUILD
(from rev 757256, virt-manager/trunk/PKGBUILD)
Deleted:
  virt-manager/repos/community-staging-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-18 21:09:19 UTC (rev 757256)
+++ PKGBUILD2020-11-18 21:09:29 UTC (rev 757257)
@@ -1,47 +0,0 @@
-# Maintainer: Christian Rebischke 
-# Contributor: Sergej Pupykin 
-# Contributor: Daniel Micay 
-# Contributor: Jonathan Wiersma 
-
-pkgbase=virt-manager
-pkgname=(virt-install virt-manager)
-pkgver=3.1.0
-pkgrel=2
-arch=('any')
-url="https://virt-manager.org/;
-license=('GPL')
-makedepends=('python-docutils')
-checkdepends=('python-pytest' 'libosinfo' 'libvirt-python' 'python-gobject' 
'python-requests' 'cpio' 'cdrtools')
-source=("https://virt-manager.org/download/sources/virt-manager/virt-manager-$pkgver.tar.gz;)
-b2sums=('729a16ee419cfc9f118e4a59336e961f17f38908ab3aaa3598c83bff3e8bca75b150f0f38b021c5ccb839a7c43e87f071859f68c2a81425715e236e14d0a7929')
-
-build() {
-  cd $pkgbase-$pkgver
-  python setup.py configure --default-hvs qemu,lxc
-  python setup.py build
-}
-
-package_virt-install() {
-  pkgdesc="Command line tool for creating new KVM , Xen, or Linux container 
guests using the libvirt hypervisor"
-  depends=('libosinfo' 'libvirt-python' 'python-gobject' 'python-requests')
-
-  cd $pkgbase-$pkgver
-  python setup.py --no-update-icon-cache --no-compile-schemas install --root 
"$pkgdir"
-  python -m compileall "$pkgdir"/usr/share/virt-manager
-  python -O -m compileall "$pkgdir"/usr/share/virt-manager
-
-  # Split virt-manager
-  [[ -d "$srcdir"/virt-manager ]] && rm -r "$srcdir"/virt-manager/
-  mkdir -p "$srcdir"/split/usr/{bin,share/{man/man1,virt-manager}}
-  mv "$pkgdir"/usr/bin/virt-manager "$srcdir"/split/usr/bin/
-  mv "$pkgdir"/usr/share/{applications,glib-2.0,icons,metainfo} 
"$srcdir"/split/usr/share/
-  mv "$pkgdir"/usr/share/man/man1/virt-manager.1 
"$srcdir"/split/usr/share/man/man1/
-  mv "$pkgdir"/usr/share/virt-manager/{icons,ui,virtManager} 
"$srcdir"/split/usr/share/virt-manager/
-}
-
-package_virt-manager() {
-  pkgdesc="Desktop user interface for managing virtual machines"
-  depends=("virt-install=$pkgver" 'gtk-vnc' 'libvirt-glib' 'spice-gtk' 'vte3' 
'python-cairo' 'gtksourceview4')
-
-  mv -v split/* "$pkgdir/"
-}

Copied: virt-manager/repos/community-staging-any/PKGBUILD (from rev 757256, 
virt-manager/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-18 21:09:29 UTC (rev 757257)
@@ -0,0 +1,49 @@
+# Maintainer: Frederik Schwan 
+# Contributor: Christian Rebischke 
+# Contributor: Sergej Pupykin 
+# Contributor: Daniel Micay 
+# Contributor: Jonathan Wiersma 
+
+pkgbase=virt-manager
+pkgname=(virt-install virt-manager)
+pkgver=3.2.0
+pkgrel=1
+arch=('any')
+url='https://virt-manager.org/'
+license=('GPL')
+makedepends=('python-docutils')
+checkdepends=('python-pytest' 'libosinfo' 'libvirt-python' 'python-gobject' 
'python-requests' 'cpio' 'cdrtools')
+optdepends=('x11-ssh-askpass: provide password for remote machines connected 
via ssh tunnel')
+source=("https://virt-manager.org/download/sources/virt-manager/virt-manager-${pkgver}.tar.gz;)
+b2sums=('83bd8589fb7d9c855300e06689fde575e354f9349b5bc63ff1da1a8b578a842f6f60d95a8b8fa53ed007c090d37f706f50fb8dcbcee83c08e27853a150cc')
+
+build() {
+  cd ${pkgbase}-${pkgver}
+  python setup.py configure --default-hvs qemu,lxc
+  python setup.py build
+}
+
+package_virt-install() {
+  pkgdesc='Command line tool for creating new KVM , Xen, or Linux container 
guests using the libvirt hypervisor'
+  depends=('libosinfo' 'libvirt-python' 'python-gobject' 'python-requests')
+
+  cd ${pkgbase}-${pkgver}
+  python setup.py --no-update-icon-cache --no-compile-schemas install --root 
"${pkgdir}"
+  python -m compileall "${pkgdir}"/usr/share/virt-manager
+  python -O -m compileall "${pkgdir}"/usr/share/virt-manager
+
+  # Split virt-manager
+  [[ -d "${srcdir}"/virt-manager ]] && rm -r "${srcdir}"/virt-manager/
+  mkdir -p "${srcdir}"/split/usr/{bin,share/{man/man1,virt-manager}}
+  mv "${pkgdir}"/usr/bin/virt-manager "${srcdir}"/split/usr/bin/
+  mv "${pkgdir}"/usr/share/{applications,glib-2.0,icons,metainfo} 
"${srcdir}"/split/usr/share/
+  mv "${pkgdir}"/usr/share/man/man1/virt-manager.1 
"${srcdir}"/split/usr/share/man/man1/
+  mv "${pkgdir}"/usr/share/virt-manager/{icons,ui,virtManager} 
"${srcdir}"/split/usr/share/virt-manager/
+}
+
+package_virt-manager() {
+  pkgdesc='Desktop user interface for managing virtual machines'
+  depends=("virt-install=${pkgver}" 'gtk-vnc' 'libvirt-glib' 

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

2020-11-18 Thread Frederik Schwan via arch-commits
Date: Wednesday, November 18, 2020 @ 21:07:24
  Author: freswa
Revision: 757250

archrelease: copy trunk to community-testing-any

Added:
  virt-manager/repos/community-testing-any/
  virt-manager/repos/community-testing-any/PKGBUILD
(from rev 757249, virt-manager/trunk/PKGBUILD)

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

Copied: virt-manager/repos/community-testing-any/PKGBUILD (from rev 757249, 
virt-manager/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2020-11-18 21:07:24 UTC (rev 757250)
@@ -0,0 +1,49 @@
+# Maintainer: Frederik Schwan 
+# Contributor: Christian Rebischke 
+# Contributor: Sergej Pupykin 
+# Contributor: Daniel Micay 
+# Contributor: Jonathan Wiersma 
+
+pkgbase=virt-manager
+pkgname=(virt-install virt-manager)
+pkgver=3.2.0
+pkgrel=1
+arch=('any')
+url='https://virt-manager.org/'
+license=('GPL')
+makedepends=('python-docutils')
+checkdepends=('python-pytest' 'libosinfo' 'libvirt-python' 'python-gobject' 
'python-requests' 'cpio' 'cdrtools')
+optdepends=('x11-ssh-askpass: provide password for remote machines connected 
via ssh tunnel')
+source=("https://virt-manager.org/download/sources/virt-manager/virt-manager-${pkgver}.tar.gz;)
+b2sums=('83bd8589fb7d9c855300e06689fde575e354f9349b5bc63ff1da1a8b578a842f6f60d95a8b8fa53ed007c090d37f706f50fb8dcbcee83c08e27853a150cc')
+
+build() {
+  cd ${pkgbase}-${pkgver}
+  python setup.py configure --default-hvs qemu,lxc
+  python setup.py build
+}
+
+package_virt-install() {
+  pkgdesc='Command line tool for creating new KVM , Xen, or Linux container 
guests using the libvirt hypervisor'
+  depends=('libosinfo' 'libvirt-python' 'python-gobject' 'python-requests')
+
+  cd ${pkgbase}-${pkgver}
+  python setup.py --no-update-icon-cache --no-compile-schemas install --root 
"${pkgdir}"
+  python -m compileall "${pkgdir}"/usr/share/virt-manager
+  python -O -m compileall "${pkgdir}"/usr/share/virt-manager
+
+  # Split virt-manager
+  [[ -d "${srcdir}"/virt-manager ]] && rm -r "${srcdir}"/virt-manager/
+  mkdir -p "${srcdir}"/split/usr/{bin,share/{man/man1,virt-manager}}
+  mv "${pkgdir}"/usr/bin/virt-manager "${srcdir}"/split/usr/bin/
+  mv "${pkgdir}"/usr/share/{applications,glib-2.0,icons,metainfo} 
"${srcdir}"/split/usr/share/
+  mv "${pkgdir}"/usr/share/man/man1/virt-manager.1 
"${srcdir}"/split/usr/share/man/man1/
+  mv "${pkgdir}"/usr/share/virt-manager/{icons,ui,virtManager} 
"${srcdir}"/split/usr/share/virt-manager/
+}
+
+package_virt-manager() {
+  pkgdesc='Desktop user interface for managing virtual machines'
+  depends=("virt-install=${pkgver}" 'gtk-vnc' 'libvirt-glib' 'spice-gtk' 
'vte3' 'python-cairo' 'gtksourceview4')
+
+  mv -v split/* "${pkgdir}/"
+}


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

2020-11-18 Thread Frederik Schwan via arch-commits
Date: Wednesday, November 18, 2020 @ 21:07:20
  Author: freswa
Revision: 757249

upgpkg: virt-manager 3.2.0-1

implement FS#64822

Modified:
  virt-manager/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-18 21:07:07 UTC (rev 757248)
+++ PKGBUILD2020-11-18 21:07:20 UTC (rev 757249)
@@ -1,4 +1,5 @@
-# Maintainer: Christian Rebischke 
+# Maintainer: Frederik Schwan 
+# Contributor: Christian Rebischke 
 # Contributor: Sergej Pupykin 
 # Contributor: Daniel Micay 
 # Contributor: Jonathan Wiersma 
@@ -5,43 +6,44 @@
 
 pkgbase=virt-manager
 pkgname=(virt-install virt-manager)
-pkgver=3.1.0
-pkgrel=2
+pkgver=3.2.0
+pkgrel=1
 arch=('any')
-url="https://virt-manager.org/;
+url='https://virt-manager.org/'
 license=('GPL')
 makedepends=('python-docutils')
 checkdepends=('python-pytest' 'libosinfo' 'libvirt-python' 'python-gobject' 
'python-requests' 'cpio' 'cdrtools')
-source=("https://virt-manager.org/download/sources/virt-manager/virt-manager-$pkgver.tar.gz;)
-b2sums=('729a16ee419cfc9f118e4a59336e961f17f38908ab3aaa3598c83bff3e8bca75b150f0f38b021c5ccb839a7c43e87f071859f68c2a81425715e236e14d0a7929')
+optdepends=('x11-ssh-askpass: provide password for remote machines connected 
via ssh tunnel')
+source=("https://virt-manager.org/download/sources/virt-manager/virt-manager-${pkgver}.tar.gz;)
+b2sums=('83bd8589fb7d9c855300e06689fde575e354f9349b5bc63ff1da1a8b578a842f6f60d95a8b8fa53ed007c090d37f706f50fb8dcbcee83c08e27853a150cc')
 
 build() {
-  cd $pkgbase-$pkgver
+  cd ${pkgbase}-${pkgver}
   python setup.py configure --default-hvs qemu,lxc
   python setup.py build
 }
 
 package_virt-install() {
-  pkgdesc="Command line tool for creating new KVM , Xen, or Linux container 
guests using the libvirt hypervisor"
+  pkgdesc='Command line tool for creating new KVM , Xen, or Linux container 
guests using the libvirt hypervisor'
   depends=('libosinfo' 'libvirt-python' 'python-gobject' 'python-requests')
 
-  cd $pkgbase-$pkgver
-  python setup.py --no-update-icon-cache --no-compile-schemas install --root 
"$pkgdir"
-  python -m compileall "$pkgdir"/usr/share/virt-manager
-  python -O -m compileall "$pkgdir"/usr/share/virt-manager
+  cd ${pkgbase}-${pkgver}
+  python setup.py --no-update-icon-cache --no-compile-schemas install --root 
"${pkgdir}"
+  python -m compileall "${pkgdir}"/usr/share/virt-manager
+  python -O -m compileall "${pkgdir}"/usr/share/virt-manager
 
   # Split virt-manager
-  [[ -d "$srcdir"/virt-manager ]] && rm -r "$srcdir"/virt-manager/
-  mkdir -p "$srcdir"/split/usr/{bin,share/{man/man1,virt-manager}}
-  mv "$pkgdir"/usr/bin/virt-manager "$srcdir"/split/usr/bin/
-  mv "$pkgdir"/usr/share/{applications,glib-2.0,icons,metainfo} 
"$srcdir"/split/usr/share/
-  mv "$pkgdir"/usr/share/man/man1/virt-manager.1 
"$srcdir"/split/usr/share/man/man1/
-  mv "$pkgdir"/usr/share/virt-manager/{icons,ui,virtManager} 
"$srcdir"/split/usr/share/virt-manager/
+  [[ -d "${srcdir}"/virt-manager ]] && rm -r "${srcdir}"/virt-manager/
+  mkdir -p "${srcdir}"/split/usr/{bin,share/{man/man1,virt-manager}}
+  mv "${pkgdir}"/usr/bin/virt-manager "${srcdir}"/split/usr/bin/
+  mv "${pkgdir}"/usr/share/{applications,glib-2.0,icons,metainfo} 
"${srcdir}"/split/usr/share/
+  mv "${pkgdir}"/usr/share/man/man1/virt-manager.1 
"${srcdir}"/split/usr/share/man/man1/
+  mv "${pkgdir}"/usr/share/virt-manager/{icons,ui,virtManager} 
"${srcdir}"/split/usr/share/virt-manager/
 }
 
 package_virt-manager() {
-  pkgdesc="Desktop user interface for managing virtual machines"
-  depends=("virt-install=$pkgver" 'gtk-vnc' 'libvirt-glib' 'spice-gtk' 'vte3' 
'python-cairo' 'gtksourceview4')
+  pkgdesc='Desktop user interface for managing virtual machines'
+  depends=("virt-install=${pkgver}" 'gtk-vnc' 'libvirt-glib' 'spice-gtk' 
'vte3' 'python-cairo' 'gtksourceview4')
 
-  mv -v split/* "$pkgdir/"
+  mv -v split/* "${pkgdir}/"
 }


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

2020-11-18 Thread Frederik Schwan via arch-commits
Date: Wednesday, November 18, 2020 @ 20:47:43
  Author: freswa
Revision: 757198

archrelease: copy trunk to community-testing-x86_64

Added:
  virt-viewer/repos/community-testing-x86_64/
  virt-viewer/repos/community-testing-x86_64/PKGBUILD
(from rev 757197, virt-viewer/trunk/PKGBUILD)

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

Copied: virt-viewer/repos/community-testing-x86_64/PKGBUILD (from rev 757197, 
virt-viewer/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-11-18 20:47:43 UTC (rev 757198)
@@ -0,0 +1,30 @@
+# Maintainer: Frederik Schwan 
+# Contributor: Christian Rebischke 
+# Contributor: Sergej Pupykin 
+# Contributor: Jonathan Wiersma 
+
+pkgname=virt-viewer
+pkgver=9.0
+pkgrel=1
+pkgdesc='A lightweight interface for interacting with the graphical display of 
virtualized guest OS.'
+arch=('x86_64')
+url='https://gitlab.com/virt-viewer/virt-viewer'
+license=('GPL')
+depends=('gtk-vnc' 'libvirt' 'spice-gtk' 'desktop-file-utils' 'libvirt-glib' 
'libgovirt')
+makedepends=('intltool' 'spice-protocol' 'gobject-introspection')
+replaces=('virtviewer')
+source=("https://virt-manager.org/download/sources/virt-viewer/virt-viewer-${pkgver}.tar.gz"{,.asc})
+b2sums=('bc4df73575195888b7698de5c0eda9daa257902f3f3ce8099f9096d0cd9be28547c8671decb70e83e5f0de71633793886bfe78bd9ab5f360dc9759afcc5b'
+'SKIP')
+validpgpkeys=('DAF3A6FDB26B62912D0E8E3FBE86EBB415104FDF') # Daniel P. Berrange
+
+build() {
+  cd virt-viewer-${pkgver}
+  ./configure --prefix=/usr --with-spice --disable-update-mimedb
+  make
+}
+
+package() {
+  cd virt-viewer-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}


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

2020-11-18 Thread Frederik Schwan via arch-commits
Date: Wednesday, November 18, 2020 @ 20:47:40
  Author: freswa
Revision: 757197

upgpkg: virt-viewer 9.0-1

Modified:
  virt-viewer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-18 20:41:10 UTC (rev 757196)
+++ PKGBUILD2020-11-18 20:47:40 UTC (rev 757197)
@@ -1,29 +1,30 @@
-# Maintainer: Christian Rebischke 
+# Maintainer: Frederik Schwan 
+# Contributor: Christian Rebischke 
 # Contributor: Sergej Pupykin 
 # Contributor: Jonathan Wiersma 
 
 pkgname=virt-viewer
-pkgver=8.0
-pkgrel=2
-pkgdesc="A lightweight interface for interacting with the graphical display of 
virtualized guest OS."
-depends=('gtk-vnc' 'libvirt' 'spice-gtk3' 'desktop-file-utils' 'libvirt-glib' 
'libgovirt')
-makedepends=('intltool' 'spice-protocol')
-replaces=('virtviewer')
-url="https://virt-manager.org/;
+pkgver=9.0
+pkgrel=1
+pkgdesc='A lightweight interface for interacting with the graphical display of 
virtualized guest OS.'
 arch=('x86_64')
+url='https://gitlab.com/virt-viewer/virt-viewer'
 license=('GPL')
-validpgpkeys=('DAF3A6FDB26B62912D0E8E3FBE86EBB415104FDF')
-source=("https://virt-manager.org/download/sources/virt-viewer/virt-viewer-$pkgver.tar.gz"{,.asc})
-sha512sums=('73317048949b6c49c28aab4685e3fb6533945b12c47078b522429b3e178423fcec5758c970d5048c8f65fee2b92a629b7e067cffa79c968292c73fd36133b918'
-'SKIP')
+depends=('gtk-vnc' 'libvirt' 'spice-gtk' 'desktop-file-utils' 'libvirt-glib' 
'libgovirt')
+makedepends=('intltool' 'spice-protocol' 'gobject-introspection')
+replaces=('virtviewer')
+source=("https://virt-manager.org/download/sources/virt-viewer/virt-viewer-${pkgver}.tar.gz"{,.asc})
+b2sums=('bc4df73575195888b7698de5c0eda9daa257902f3f3ce8099f9096d0cd9be28547c8671decb70e83e5f0de71633793886bfe78bd9ab5f360dc9759afcc5b'
+'SKIP')
+validpgpkeys=('DAF3A6FDB26B62912D0E8E3FBE86EBB415104FDF') # Daniel P. Berrange
 
 build() {
-  cd "$srcdir/virt-viewer-$pkgver"
+  cd virt-viewer-${pkgver}
   ./configure --prefix=/usr --with-spice --disable-update-mimedb
   make
 }
 
 package() {
-  cd "$srcdir/virt-viewer-$pkgver"
-  make DESTDIR="$pkgdir" install
+  cd virt-viewer-${pkgver}
+  make DESTDIR="${pkgdir}" install
 }


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

2020-11-10 Thread Frederik Schwan via arch-commits
Date: Tuesday, November 10, 2020 @ 14:36:30
  Author: freswa
Revision: 749548

archrelease: copy trunk to community-staging-any

Added:
  python-rich/repos/community-staging-any/PKGBUILD
(from rev 749547, python-rich/trunk/PKGBUILD)
Deleted:
  python-rich/repos/community-staging-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-10 14:35:53 UTC (rev 749547)
+++ PKGBUILD2020-11-10 14:36:30 UTC (rev 749548)
@@ -1,31 +0,0 @@
-# Maintainer: Frederik Schwan 
-# Contributor: Hao Long 
-
-pkgname=python-rich
-_name=rich
-pkgver=9.1.0
-pkgrel=2
-pkgdesc='Render rich text, tables, progress bars, syntax highlighting, 
markdown and more to the terminal'
-arch=(any)
-url='https://github.com/willmcgugan/rich'
-license=('MIT')
-depends=('python-colorama' 'python-pygments' 'python-typing_extensions' 
'python-commonmark')
-makedepends=('python-setuptools' 'python-dephell')
-source=("https://github.com/willmcgugan/rich/archive/v${pkgver}/rich-${pkgver}.tar.gz;)
-b2sums=('d1bc9b854b840125316d396bdff79476db8fe98e731cc2f2bc734236122c600e7133bbf4626c9fe1cbdf1aed6e4ac7b16a0af81fd24d8da302895c3fd0b8e3de')
-
-prepare() {
-  cd rich-${pkgver}
-  dephell deps convert --from pyproject.toml --to setup.py
-}
-
-build() {
-  cd rich-${pkgver}
-  python3 setup.py build
-}
-
-package() {
-  cd rich-${pkgver}
-  python3 setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: python-rich/repos/community-staging-any/PKGBUILD (from rev 749547, 
python-rich/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-10 14:36:30 UTC (rev 749548)
@@ -0,0 +1,31 @@
+# Maintainer: Frederik Schwan 
+# Contributor: Hao Long 
+
+pkgname=python-rich
+_name=rich
+pkgver=9.2.0
+pkgrel=1
+pkgdesc='Render rich text, tables, progress bars, syntax highlighting, 
markdown and more to the terminal'
+arch=(any)
+url='https://github.com/willmcgugan/rich'
+license=('MIT')
+depends=('python-colorama' 'python-pygments' 'python-typing_extensions' 
'python-commonmark')
+makedepends=('python-setuptools' 'python-dephell')
+source=("https://github.com/willmcgugan/rich/archive/v${pkgver}/rich-${pkgver}.tar.gz;)
+b2sums=('d041962ef1281f1f2bb071a29c96c26d36de042ad8531cf0e44408eb3cb0f9d745f69cae408ee9d296f83e3037cae973b86903c6c9a85202207f67828f601637')
+
+prepare() {
+  cd rich-${pkgver}
+  dephell deps convert --from pyproject.toml --to setup.py
+}
+
+build() {
+  cd rich-${pkgver}
+  python3 setup.py build
+}
+
+package() {
+  cd rich-${pkgver}
+  python3 setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}


[arch-commits] Commit in python-rich/repos (staging-any staging-any/PKGBUILD)

2020-11-10 Thread Frederik Schwan via arch-commits
Date: Tuesday, November 10, 2020 @ 14:35:00
  Author: freswa
Revision: 749545

archrelease: copy trunk to staging-any

Added:
  python-rich/repos/staging-any/
  python-rich/repos/staging-any/PKGBUILD
(from rev 749544, python-rich/trunk/PKGBUILD)

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

Copied: python-rich/repos/staging-any/PKGBUILD (from rev 749544, 
python-rich/trunk/PKGBUILD)
===
--- staging-any/PKGBUILD(rev 0)
+++ staging-any/PKGBUILD2020-11-10 14:35:00 UTC (rev 749545)
@@ -0,0 +1,31 @@
+# Maintainer: Frederik Schwan 
+# Contributor: Hao Long 
+
+pkgname=python-rich
+_name=rich
+pkgver=9.2.0
+pkgrel=1
+pkgdesc='Render rich text, tables, progress bars, syntax highlighting, 
markdown and more to the terminal'
+arch=(any)
+url='https://github.com/willmcgugan/rich'
+license=('MIT')
+depends=('python-colorama' 'python-pygments' 'python-typing_extensions' 
'python-commonmark')
+makedepends=('python-setuptools' 'python-dephell')
+source=("https://github.com/willmcgugan/rich/archive/v${pkgver}/rich-${pkgver}.tar.gz;)
+b2sums=('d041962ef1281f1f2bb071a29c96c26d36de042ad8531cf0e44408eb3cb0f9d745f69cae408ee9d296f83e3037cae973b86903c6c9a85202207f67828f601637')
+
+prepare() {
+  cd rich-${pkgver}
+  dephell deps convert --from pyproject.toml --to setup.py
+}
+
+build() {
+  cd rich-${pkgver}
+  python3 setup.py build
+}
+
+package() {
+  cd rich-${pkgver}
+  python3 setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}


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

2020-11-10 Thread Frederik Schwan via arch-commits
Date: Tuesday, November 10, 2020 @ 14:33:01
  Author: freswa
Revision: 749541

upgpkg: python-rich 9.2.0-1

Modified:
  python-rich/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 14:31:13 UTC (rev 749540)
+++ PKGBUILD2020-11-10 14:33:01 UTC (rev 749541)
@@ -3,8 +3,8 @@
 
 pkgname=python-rich
 _name=rich
-pkgver=9.1.0
-pkgrel=2
+pkgver=9.2.0
+pkgrel=1
 pkgdesc='Render rich text, tables, progress bars, syntax highlighting, 
markdown and more to the terminal'
 arch=(any)
 url='https://github.com/willmcgugan/rich'
@@ -12,7 +12,7 @@
 depends=('python-colorama' 'python-pygments' 'python-typing_extensions' 
'python-commonmark')
 makedepends=('python-setuptools' 'python-dephell')
 
source=("https://github.com/willmcgugan/rich/archive/v${pkgver}/rich-${pkgver}.tar.gz;)
-b2sums=('d1bc9b854b840125316d396bdff79476db8fe98e731cc2f2bc734236122c600e7133bbf4626c9fe1cbdf1aed6e4ac7b16a0af81fd24d8da302895c3fd0b8e3de')
+b2sums=('d041962ef1281f1f2bb071a29c96c26d36de042ad8531cf0e44408eb3cb0f9d745f69cae408ee9d296f83e3037cae973b86903c6c9a85202207f67828f601637')
 
 prepare() {
   cd rich-${pkgver}


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

2020-11-10 Thread Frederik Schwan via arch-commits
Date: Tuesday, November 10, 2020 @ 14:33:04
  Author: freswa
Revision: 749542

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-10 14:33:01 UTC (rev 749541)
+++ PKGBUILD2020-11-10 14:33:04 UTC (rev 749542)
@@ -1,31 +0,0 @@
-# Maintainer: Frederik Schwan 
-# Contributor: Hao Long 
-
-pkgname=python-rich
-_name=rich
-pkgver=9.1.0
-pkgrel=1
-pkgdesc='Render rich text, tables, progress bars, syntax highlighting, 
markdown and more to the terminal'
-arch=(any)
-url='https://github.com/willmcgugan/rich'
-license=('MIT')
-depends=('python-colorama' 'python-pygments' 'python-typing_extensions' 
'python-commonmark')
-makedepends=('python-setuptools' 'python-dephell')
-source=("https://github.com/willmcgugan/rich/archive/v${pkgver}/rich-${pkgver}.tar.gz;)
-b2sums=('d1bc9b854b840125316d396bdff79476db8fe98e731cc2f2bc734236122c600e7133bbf4626c9fe1cbdf1aed6e4ac7b16a0af81fd24d8da302895c3fd0b8e3de')
-
-prepare() {
-  cd rich-${pkgver}
-  dephell deps convert --from pyproject.toml --to setup.py
-}
-
-build() {
-  cd rich-${pkgver}
-  python3 setup.py build
-}
-
-package() {
-  cd rich-${pkgver}
-  python3 setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: python-rich/repos/community-any/PKGBUILD (from rev 749541, 
python-rich/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-10 14:33:04 UTC (rev 749542)
@@ -0,0 +1,31 @@
+# Maintainer: Frederik Schwan 
+# Contributor: Hao Long 
+
+pkgname=python-rich
+_name=rich
+pkgver=9.2.0
+pkgrel=1
+pkgdesc='Render rich text, tables, progress bars, syntax highlighting, 
markdown and more to the terminal'
+arch=(any)
+url='https://github.com/willmcgugan/rich'
+license=('MIT')
+depends=('python-colorama' 'python-pygments' 'python-typing_extensions' 
'python-commonmark')
+makedepends=('python-setuptools' 'python-dephell')
+source=("https://github.com/willmcgugan/rich/archive/v${pkgver}/rich-${pkgver}.tar.gz;)
+b2sums=('d041962ef1281f1f2bb071a29c96c26d36de042ad8531cf0e44408eb3cb0f9d745f69cae408ee9d296f83e3037cae973b86903c6c9a85202207f67828f601637')
+
+prepare() {
+  cd rich-${pkgver}
+  dephell deps convert --from pyproject.toml --to setup.py
+}
+
+build() {
+  cd rich-${pkgver}
+  python3 setup.py build
+}
+
+package() {
+  cd rich-${pkgver}
+  python3 setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}


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

2020-11-03 Thread Frederik Schwan via arch-commits
Date: Tuesday, November 3, 2020 @ 17:35:58
  Author: freswa
Revision: 741180

archrelease: copy trunk to community-any

Added:
  ansible-lint/repos/community-any/PKGBUILD
(from rev 741179, ansible-lint/trunk/PKGBUILD)
Deleted:
  ansible-lint/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-03 17:35:55 UTC (rev 741179)
+++ PKGBUILD2020-11-03 17:35:58 UTC (rev 741180)
@@ -1,34 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Maintainer: Frederik Schwan 
-# Contributor: Sander Boom 
-
-pkgname=ansible-lint
-pkgver=4.3.6
-pkgrel=1
-pkgdesc="Checks playbooks for practices and behaviour that could potentially 
be improved."
-arch=('any')
-url="https://github.com/willthames/ansible-lint;
-license=('MIT')
-depends=('python' 'ansible' 'python-ruamel-yaml' 'python-pyaml' 'python-rich')
-makedepends=('git')
-checkdepends=('python-pytest')
-source=(https://github.com/willthames/ansible-lint/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('ede70a1ddc95ecab5e486b79b0e90d6d1aa4b4da28a1887cb02ebb73a98edc23')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  # stop setuptools from using the scm version which doesn't exist in this 
context
-  sed -i "/^\[metadata\]/a version = ${pkgver}" setup.cfg
-  sed -i 's/use_scm_version/#use_scm_version/' setup.cfg
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  python setup.py build
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  python setup.py install --root="${pkgdir}" --optimize=1
-  install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}
-}

Copied: ansible-lint/repos/community-any/PKGBUILD (from rev 741179, 
ansible-lint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-03 17:35:58 UTC (rev 741180)
@@ -0,0 +1,34 @@
+# Maintainer: Jelle van der Waa 
+# Maintainer: Frederik Schwan 
+# Contributor: Sander Boom 
+
+pkgname=ansible-lint
+pkgver=4.3.7
+pkgrel=1
+pkgdesc="Checks playbooks for practices and behaviour that could potentially 
be improved."
+arch=('any')
+url="https://github.com/willthames/ansible-lint;
+license=('MIT')
+depends=('python' 'ansible' 'python-ruamel-yaml' 'python-pyaml' 'python-rich')
+makedepends=('git')
+checkdepends=('python-pytest')
+source=(https://github.com/willthames/ansible-lint/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('445b4d85d18ebc9171a6b59e84c631bd346dc86da7d104437533061d80cb13eb')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  # stop setuptools from using the scm version which doesn't exist in this 
context
+  sed -i "/^\[metadata\]/a version = ${pkgver}" setup.cfg
+  sed -i 's/use_scm_version/#use_scm_version/' setup.cfg
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  python setup.py build
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  python setup.py install --root="${pkgdir}" --optimize=1
+  install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}
+}


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

2020-11-03 Thread Frederik Schwan via arch-commits
Date: Tuesday, November 3, 2020 @ 17:35:55
  Author: freswa
Revision: 741179

upgpkg: ansible-lint 4.3.7-1

Modified:
  ansible-lint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-03 17:33:21 UTC (rev 741178)
+++ PKGBUILD2020-11-03 17:35:55 UTC (rev 741179)
@@ -3,7 +3,7 @@
 # Contributor: Sander Boom 
 
 pkgname=ansible-lint
-pkgver=4.3.6
+pkgver=4.3.7
 pkgrel=1
 pkgdesc="Checks playbooks for practices and behaviour that could potentially 
be improved."
 arch=('any')
@@ -13,7 +13,7 @@
 makedepends=('git')
 checkdepends=('python-pytest')
 
source=(https://github.com/willthames/ansible-lint/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('ede70a1ddc95ecab5e486b79b0e90d6d1aa4b4da28a1887cb02ebb73a98edc23')
+sha256sums=('445b4d85d18ebc9171a6b59e84c631bd346dc86da7d104437533061d80cb13eb')
 
 prepare() {
   cd ${pkgname}-${pkgver}


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

2020-11-02 Thread Frederik Schwan via arch-commits
Date: Monday, November 2, 2020 @ 13:10:10
  Author: freswa
Revision: 739644

archrelease: copy trunk to community-any

Added:
  ansible-lint/repos/community-any/PKGBUILD
(from rev 739643, ansible-lint/trunk/PKGBUILD)
Deleted:
  ansible-lint/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-02 13:10:06 UTC (rev 739643)
+++ PKGBUILD2020-11-02 13:10:10 UTC (rev 739644)
@@ -1,34 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Maintainer: Frederik Schwan 
-# Contributor: Sander Boom 
-
-pkgname=ansible-lint
-pkgver=4.3.5
-pkgrel=1
-pkgdesc="Checks playbooks for practices and behaviour that could potentially 
be improved."
-arch=('any')
-url="https://github.com/willthames/ansible-lint;
-license=('MIT')
-depends=('python' 'ansible' 'python-ruamel-yaml' 'python-pyaml' 'python-rich')
-makedepends=('git')
-checkdepends=('python-pytest')
-source=(https://github.com/willthames/ansible-lint/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('f24157d1cfacbe3f1c1f6ea63eb821700408633e938e66e2673a620086774290')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  # stop setuptools from using the scm version which doesn't exist in this 
context
-  sed -i "/^\[metadata\]/a version = ${pkgver}" setup.cfg
-  sed -i 's/use_scm_version/#use_scm_version/' setup.cfg
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  python setup.py build
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  python setup.py install --root="${pkgdir}" --optimize=1
-  install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}
-}

Copied: ansible-lint/repos/community-any/PKGBUILD (from rev 739643, 
ansible-lint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-02 13:10:10 UTC (rev 739644)
@@ -0,0 +1,34 @@
+# Maintainer: Jelle van der Waa 
+# Maintainer: Frederik Schwan 
+# Contributor: Sander Boom 
+
+pkgname=ansible-lint
+pkgver=4.3.6
+pkgrel=1
+pkgdesc="Checks playbooks for practices and behaviour that could potentially 
be improved."
+arch=('any')
+url="https://github.com/willthames/ansible-lint;
+license=('MIT')
+depends=('python' 'ansible' 'python-ruamel-yaml' 'python-pyaml' 'python-rich')
+makedepends=('git')
+checkdepends=('python-pytest')
+source=(https://github.com/willthames/ansible-lint/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('ede70a1ddc95ecab5e486b79b0e90d6d1aa4b4da28a1887cb02ebb73a98edc23')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  # stop setuptools from using the scm version which doesn't exist in this 
context
+  sed -i "/^\[metadata\]/a version = ${pkgver}" setup.cfg
+  sed -i 's/use_scm_version/#use_scm_version/' setup.cfg
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  python setup.py build
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  python setup.py install --root="${pkgdir}" --optimize=1
+  install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}
+}


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

2020-11-02 Thread Frederik Schwan via arch-commits
Date: Monday, November 2, 2020 @ 13:10:06
  Author: freswa
Revision: 739643

upgpkg: ansible-lint 4.3.6-1

Modified:
  ansible-lint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-02 13:09:33 UTC (rev 739642)
+++ PKGBUILD2020-11-02 13:10:06 UTC (rev 739643)
@@ -3,7 +3,7 @@
 # Contributor: Sander Boom 
 
 pkgname=ansible-lint
-pkgver=4.3.5
+pkgver=4.3.6
 pkgrel=1
 pkgdesc="Checks playbooks for practices and behaviour that could potentially 
be improved."
 arch=('any')
@@ -13,7 +13,7 @@
 makedepends=('git')
 checkdepends=('python-pytest')
 
source=(https://github.com/willthames/ansible-lint/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('f24157d1cfacbe3f1c1f6ea63eb821700408633e938e66e2673a620086774290')
+sha256sums=('ede70a1ddc95ecab5e486b79b0e90d6d1aa4b4da28a1887cb02ebb73a98edc23')
 
 prepare() {
   cd ${pkgname}-${pkgver}


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

2020-10-30 Thread Frederik Schwan via arch-commits
Date: Friday, October 30, 2020 @ 21:08:34
  Author: freswa
Revision: 737177

archrelease: copy trunk to community-x86_64

Added:
  i3status-rust/repos/community-x86_64/PKGBUILD
(from rev 737176, i3status-rust/trunk/PKGBUILD)
Deleted:
  i3status-rust/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-30 21:08:31 UTC (rev 737176)
+++ PKGBUILD2020-10-30 21:08:34 UTC (rev 737177)
@@ -1,44 +0,0 @@
-# Maintainer: Frederik Schwan 
-# Contributor: Daniel M. Capella 
-# Contributor: Josip Ponjavic 
-
-pkgname=i3status-rust
-pkgver=0.14.1
-pkgrel=4
-pkgdesc='Resourcefriendly and feature-rich replacement for i3status, written 
in pure Rust'
-arch=('x86_64')
-url='https://github.com/greshake/i3status-rust'
-license=('GPL3')
-depends=('libpulse')
-makedepends=('rust')
-optdepends=('alsa-utils: for the volume block'
-'bluez: for the bluetooth block'
-'curl: for the weather block'
-'fakeroot: for the pacman block to show pending updates'
-'ibus: for the ibus block'
-'iw: display wifi signal strength in net block'
-'kdeconnect: for the kdeconnect block'
-'lm_sensors: for the temperature block'
-'networkmanager: for the networkmanager block'
-'powerline-fonts: for all themes using the Powerline arrow char'
-'pulseaudio: for the volume block'
-'speedtest-cli: for the speedtest block'
-'ttf-font-awesome: for the awesome icons'
-'upower: for the battery block')
-source=("https://github.com/greshake/i3status-rust/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-b2sums=('5251aef5c91c200561c3e0ff8f4794ea8d30bb4036cdf67d24436b2b267965c2b4dddb2a2e4d4a60194866212a9e96ee96fc794bcc9cdbd198a6005b84a0e8ea')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  cargo build --release --locked
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  install -Dm755 -t "${pkgdir}"/usr/bin target/release/i3status-rs
-  install -Dm644 -t "${pkgdir}"/usr/share/man/man1 man/i3status-rs.1
-
-  for example in example_config.toml example_icon.toml example_theme.toml; do
-install -Dm644 -t "${pkgdir}"/usr/share/doc/${pkgname}/examples/ ${example}
-  done
-}

Copied: i3status-rust/repos/community-x86_64/PKGBUILD (from rev 737176, 
i3status-rust/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-30 21:08:34 UTC (rev 737177)
@@ -0,0 +1,44 @@
+# Maintainer: Frederik Schwan 
+# Contributor: Daniel M. Capella 
+# Contributor: Josip Ponjavic 
+
+pkgname=i3status-rust
+pkgver=0.14.2
+pkgrel=1
+pkgdesc='Resourcefriendly and feature-rich replacement for i3status, written 
in pure Rust'
+arch=('x86_64')
+url='https://github.com/greshake/i3status-rust'
+license=('GPL3')
+depends=('libpulse')
+makedepends=('rust')
+optdepends=('alsa-utils: for the volume block'
+'bluez: for the bluetooth block'
+'curl: for the weather block'
+'fakeroot: for the pacman block to show pending updates'
+'ibus: for the ibus block'
+'iw: display wifi signal strength in net block'
+'kdeconnect: for the kdeconnect block'
+'lm_sensors: for the temperature block'
+'networkmanager: for the networkmanager block'
+'powerline-fonts: for all themes using the Powerline arrow char'
+'pulseaudio: for the volume block'
+'speedtest-cli: for the speedtest block'
+'ttf-font-awesome: for the awesome icons'
+'upower: for the battery block')
+source=("https://github.com/greshake/i3status-rust/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+b2sums=('59af79b0ef7e343ef8b02fbb83b0ef5e9ac243c8d965d781bee0e019ba9a5ecefa5aabe052ed4a06830ea60de483be668f8b9cbd9833cc889f4970677cac47bd')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  cargo build --release --locked
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -Dm755 -t "${pkgdir}"/usr/bin target/release/i3status-rs
+  install -Dm644 -t "${pkgdir}"/usr/share/man/man1 man/i3status-rs.1
+
+  for example in example_config.toml example_icon.toml example_theme.toml; do
+install -Dm644 -t "${pkgdir}"/usr/share/doc/${pkgname}/examples/ ${example}
+  done
+}


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

2020-10-30 Thread Frederik Schwan via arch-commits
Date: Friday, October 30, 2020 @ 21:08:31
  Author: freswa
Revision: 737176

upgpkg: i3status-rust 0.14.2-1

Modified:
  i3status-rust/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-30 21:07:58 UTC (rev 737175)
+++ PKGBUILD2020-10-30 21:08:31 UTC (rev 737176)
@@ -3,8 +3,8 @@
 # Contributor: Josip Ponjavic 
 
 pkgname=i3status-rust
-pkgver=0.14.1
-pkgrel=4
+pkgver=0.14.2
+pkgrel=1
 pkgdesc='Resourcefriendly and feature-rich replacement for i3status, written 
in pure Rust'
 arch=('x86_64')
 url='https://github.com/greshake/i3status-rust'
@@ -26,7 +26,7 @@
 'ttf-font-awesome: for the awesome icons'
 'upower: for the battery block')
 
source=("https://github.com/greshake/i3status-rust/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-b2sums=('5251aef5c91c200561c3e0ff8f4794ea8d30bb4036cdf67d24436b2b267965c2b4dddb2a2e4d4a60194866212a9e96ee96fc794bcc9cdbd198a6005b84a0e8ea')
+b2sums=('59af79b0ef7e343ef8b02fbb83b0ef5e9ac243c8d965d781bee0e019ba9a5ecefa5aabe052ed4a06830ea60de483be668f8b9cbd9833cc889f4970677cac47bd')
 
 build() {
   cd ${pkgname}-${pkgver}


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

2020-10-30 Thread Frederik Schwan via arch-commits
Date: Friday, October 30, 2020 @ 18:02:26
  Author: freswa
Revision: 736903

archrelease: copy trunk to community-any

Added:
  imapsync/repos/community-any/
  imapsync/repos/community-any/PKGBUILD
(from rev 736902, imapsync/trunk/PKGBUILD)

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

Copied: imapsync/repos/community-any/PKGBUILD (from rev 736902, 
imapsync/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2020-10-30 18:02:26 UTC (rev 736903)
@@ -0,0 +1,37 @@
+# Maintainer: Frederik Schwan 
+
+pkgname=imapsync
+pkgver=1.945
+pkgrel=2
+pkgdesc='IMAP synchronisation, sync, copy or migration tool'
+arch=('any')
+url='https://github.com/imapsync/imapsync'
+license=('custom:imapsync')
+depends=('perl-cgi' 'perl-crypt-openssl-rsa' 'perl-data-uniqid' 
'perl-date-manip'
+'perl-file-copy-recursive' 'perl-file-tail' 'perl-html-parser' 
'perl-io-socket-inet6'
+'perl-io-socket-ssl' 'perl-io-tee' 'perl-json-webtoken' 'perl-libwww' 
'perl-module-scandeps'
+'perl-mail-imapclient' 'perl-module-runtime' 'perl-ntlm' 
'perl-package-stash'
+'perl-readonly' 'perl-regexp-common' 'perl-sys-meminfo'
+'perl-term-readkey' 'perl-unicode-string')
+makedepends=('cpanminus' 'perl-par-packer')
+checkdepends=('inetutils' 'lsb-release' 'time' 'procps-ng' 'perl-test-deep' 
'perl-test-fatal'
+  'perl-test-mock-guard' 'perl-test-mockobject' 'perl-test-pod' 
'perl-test-requires'
+  'perl-test-warn')
+source=("https://github.com/imapsync/imapsync/archive/${pkgname}-${pkgver}.tar.gz;)
+b2sums=('98ef55135239ed9625fdce9e8944c2f7a8c8c1b1020c383bbda4f3e18a486b5b691e22faaa896b21e897babb04954d548ff65bf04e79db719a1e8636f0e5e3fd')
+
+build() {
+  cd ${pkgname}-${pkgname}-${pkgver}
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgname}-${pkgver}
+  make test
+}
+
+package() {
+  cd ${pkgname}-${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE.txt
+}


[arch-commits] Commit in (4 files)

2020-10-30 Thread Frederik Schwan via arch-commits
Date: Friday, October 30, 2020 @ 17:58:28
  Author: freswa
Revision: 736884

move imapsync from unsupported to [community]

Added:
  imapsync/
  imapsync/repos/
  imapsync/trunk/
  imapsync/trunk/PKGBUILD

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

Added: imapsync/trunk/PKGBUILD
===
--- imapsync/trunk/PKGBUILD (rev 0)
+++ imapsync/trunk/PKGBUILD 2020-10-30 17:58:28 UTC (rev 736884)
@@ -0,0 +1,37 @@
+# Maintainer: Frederik Schwan 
+
+pkgname=imapsync
+pkgver=1.945
+pkgrel=2
+pkgdesc='IMAP synchronisation, sync, copy or migration tool'
+arch=('any')
+url='https://github.com/imapsync/imapsync'
+license=('custom:imapsync')
+depends=('perl-cgi' 'perl-crypt-openssl-rsa' 'perl-data-uniqid' 
'perl-date-manip'
+'perl-file-copy-recursive' 'perl-file-tail' 'perl-html-parser' 
'perl-io-socket-inet6'
+'perl-io-socket-ssl' 'perl-io-tee' 'perl-json-webtoken' 'perl-libwww' 
'perl-module-scandeps'
+'perl-mail-imapclient' 'perl-module-runtime' 'perl-ntlm' 
'perl-package-stash'
+'perl-readonly' 'perl-regexp-common' 'perl-sys-meminfo'
+'perl-term-readkey' 'perl-unicode-string')
+makedepends=('cpanminus' 'perl-par-packer')
+checkdepends=('inetutils' 'lsb-release' 'time' 'procps-ng' 'perl-test-deep' 
'perl-test-fatal'
+  'perl-test-mock-guard' 'perl-test-mockobject' 'perl-test-pod' 
'perl-test-requires'
+  'perl-test-warn')
+source=("https://github.com/imapsync/imapsync/archive/${pkgname}-${pkgver}.tar.gz;)
+b2sums=('98ef55135239ed9625fdce9e8944c2f7a8c8c1b1020c383bbda4f3e18a486b5b691e22faaa896b21e897babb04954d548ff65bf04e79db719a1e8636f0e5e3fd')
+
+build() {
+  cd ${pkgname}-${pkgname}-${pkgver}
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgname}-${pkgver}
+  make test
+}
+
+package() {
+  cd ${pkgname}-${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE.txt
+}


[arch-commits] Commit in (4 files)

2020-10-30 Thread Frederik Schwan via arch-commits
Date: Friday, October 30, 2020 @ 17:30:44
  Author: freswa
Revision: 736826

move perl-unicode-string from unsupported to [community]

Added:
  perl-unicode-string/
  perl-unicode-string/repos/
  perl-unicode-string/trunk/
  perl-unicode-string/trunk/PKGBUILD

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

Added: perl-unicode-string/trunk/PKGBUILD
===
--- perl-unicode-string/trunk/PKGBUILD  (rev 0)
+++ perl-unicode-string/trunk/PKGBUILD  2020-10-30 17:30:44 UTC (rev 736826)
@@ -0,0 +1,38 @@
+# Maintainer: Frederik Schwan 
+# Contributor: Simon Perry 
+# Contributor: James Rayner 
+# Contributor: Andrew Simmons 
+
+pkgname=perl-unicode-string
+_realname=Unicode-String
+pkgver=2.10
+pkgrel=4
+pkgdesc='String of Unicode characters for perl (UCS2/UTF16)'
+arch=('x86_64')
+license=('GPL')
+url='https://metacpan.org/release/Unicode-String/'
+depends=('perl')
+options=('!emptydirs' purge)
+source=("https://cpan.metacpan.org/authors/id/G/GA/GAAS/GAAS/Unicode-String-${pkgver}.tar.gz;)
+b2sums=('4d7769b74fd85e197aa1bf8a22a57f3dc519b30bb1c1d47fa1f1de6faeb47e2a0351a580a2c34c158b13a37a43d9e5b7864c2333143d335f129219efb5451857')
+
+build() {
+  cd Unicode-String-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
+  perl Makefile.PL
+  make
+}
+
+check() {
+  cd Unicode-String-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1
+  make test
+}
+
+package() {
+  cd Unicode-String-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  make install INSTALLDIRS=vendor DESTDIR="${pkgdir}"
+}


[arch-commits] Commit in perl-unicode-string/repos (2 files)

2020-10-30 Thread Frederik Schwan via arch-commits
Date: Friday, October 30, 2020 @ 17:31:06
  Author: freswa
Revision: 736827

archrelease: copy trunk to community-x86_64

Added:
  perl-unicode-string/repos/community-x86_64/
  perl-unicode-string/repos/community-x86_64/PKGBUILD
(from rev 736826, perl-unicode-string/trunk/PKGBUILD)

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

Copied: perl-unicode-string/repos/community-x86_64/PKGBUILD (from rev 736826, 
perl-unicode-string/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2020-10-30 17:31:06 UTC (rev 736827)
@@ -0,0 +1,38 @@
+# Maintainer: Frederik Schwan 
+# Contributor: Simon Perry 
+# Contributor: James Rayner 
+# Contributor: Andrew Simmons 
+
+pkgname=perl-unicode-string
+_realname=Unicode-String
+pkgver=2.10
+pkgrel=4
+pkgdesc='String of Unicode characters for perl (UCS2/UTF16)'
+arch=('x86_64')
+license=('GPL')
+url='https://metacpan.org/release/Unicode-String/'
+depends=('perl')
+options=('!emptydirs' purge)
+source=("https://cpan.metacpan.org/authors/id/G/GA/GAAS/GAAS/Unicode-String-${pkgver}.tar.gz;)
+b2sums=('4d7769b74fd85e197aa1bf8a22a57f3dc519b30bb1c1d47fa1f1de6faeb47e2a0351a580a2c34c158b13a37a43d9e5b7864c2333143d335f129219efb5451857')
+
+build() {
+  cd Unicode-String-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
+  perl Makefile.PL
+  make
+}
+
+check() {
+  cd Unicode-String-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1
+  make test
+}
+
+package() {
+  cd Unicode-String-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  make install INSTALLDIRS=vendor DESTDIR="${pkgdir}"
+}


[arch-commits] Commit in perl-sys-meminfo/repos (2 files)

2020-10-30 Thread Frederik Schwan via arch-commits
Date: Friday, October 30, 2020 @ 17:24:05
  Author: freswa
Revision: 736813

archrelease: copy trunk to community-x86_64

Added:
  perl-sys-meminfo/repos/community-x86_64/
  perl-sys-meminfo/repos/community-x86_64/PKGBUILD
(from rev 736812, perl-sys-meminfo/trunk/PKGBUILD)

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

Copied: perl-sys-meminfo/repos/community-x86_64/PKGBUILD (from rev 736812, 
perl-sys-meminfo/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2020-10-30 17:24:05 UTC (rev 736813)
@@ -0,0 +1,36 @@
+# Maintainer: Frederik Schwan 
+# Contributor: An Nguyen (stk) 
+# Contributor: Francesco Di Battista 
+
+pkgname=perl-sys-meminfo
+pkgver=0.99
+pkgrel=2
+pkgdesc='Perl extension for return the total amount of physical memory'
+arch=('x86_64')
+url='https://metacpan.org/release/Sys-MemInfo'
+license=('GPL')
+depends=('perl')
+options=('!emptydirs' purge)
+source=("https://cpan.metacpan.org/authors/id/S/SC/SCRESTO/Sys-MemInfo-${pkgver}.tar.gz;)
+b2sums=('f45ebe017ff40cd612d69b9e804348bed8b78526c18b308a16accf7ffeec1263c2bd8ac6de8ffdf25f9c4e01562a9aa91563f159f0e76268e4bc4f188654a814')
+
+build() {
+  cd Sys-MemInfo-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
+  perl Makefile.PL
+  make
+}
+
+check() {
+  cd Sys-MemInfo-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1
+  make test
+}
+
+package() {
+  cd Sys-MemInfo-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  make install INSTALLDIRS=vendor DESTDIR="${pkgdir}"
+}


[arch-commits] Commit in (4 files)

2020-10-30 Thread Frederik Schwan via arch-commits
Date: Friday, October 30, 2020 @ 17:23:44
  Author: freswa
Revision: 736811

move perl-sys-meminfo from unsupported to [community]

Added:
  perl-sys-meminfo/
  perl-sys-meminfo/repos/
  perl-sys-meminfo/trunk/
  perl-sys-meminfo/trunk/PKGBUILD

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

Added: perl-sys-meminfo/trunk/PKGBUILD
===
--- perl-sys-meminfo/trunk/PKGBUILD (rev 0)
+++ perl-sys-meminfo/trunk/PKGBUILD 2020-10-30 17:23:44 UTC (rev 736811)
@@ -0,0 +1,36 @@
+# Maintainer: Frederik Schwan 
+# Contributor: An Nguyen (stk) 
+# Contributor: Francesco Di Battista 
+
+pkgname=perl-sys-meminfo
+pkgver=0.99
+pkgrel=2
+pkgdesc='Perl extension for return the total amount of physical memory'
+arch=('x86_64')
+url='https://metacpan.org/release/Sys-MemInfo'
+license=('GPL')
+depends=('perl')
+options=('!emptydirs' purge)
+source=("https://cpan.metacpan.org/authors/id/S/SC/SCRESTO/Sys-MemInfo-${pkgver}.tar.gz;)
+b2sums=('f45ebe017ff40cd612d69b9e804348bed8b78526c18b308a16accf7ffeec1263c2bd8ac6de8ffdf25f9c4e01562a9aa91563f159f0e76268e4bc4f188654a814')
+
+build() {
+  cd Sys-MemInfo-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
+  perl Makefile.PL
+  make
+}
+
+check() {
+  cd Sys-MemInfo-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1
+  make test
+}
+
+package() {
+  cd Sys-MemInfo-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  make install INSTALLDIRS=vendor DESTDIR="${pkgdir}"
+}


[arch-commits] Commit in perl-par-packer/repos (2 files)

2020-10-30 Thread Frederik Schwan via arch-commits
Date: Friday, October 30, 2020 @ 17:15:12
  Author: freswa
Revision: 736790

archrelease: copy trunk to community-x86_64

Added:
  perl-par-packer/repos/community-x86_64/
  perl-par-packer/repos/community-x86_64/PKGBUILD
(from rev 736789, perl-par-packer/trunk/PKGBUILD)

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

Copied: perl-par-packer/repos/community-x86_64/PKGBUILD (from rev 736789, 
perl-par-packer/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2020-10-30 17:15:12 UTC (rev 736790)
@@ -0,0 +1,42 @@
+# Maintainer: Frederik Schwan 
+# Contributor: Amish 
+# Contributor: Justin Davis 
+# Contributor: Tony Sokhon 
+
+pkgname=perl-par-packer
+pkgver=1.050
+pkgrel=5
+pkgdesc='PAR Packager'
+arch=('x86_64')
+url='https://metacpan.org/release/PAR-Packer'
+license=('GPL')
+# This package links agains libperl.so
+depends=('perl=5.32.0' 'perl-archive-zip' 'perl-getopt-argvfile' 
'perl-ipc-run3' 'perl-module-scandeps'
+  'perl-par' 'perl-par-dist')
+makedepends=('perl-extutils-makemaker')
+options=('!emptydirs' purge)
+source=("https://cpan.metacpan.org/authors/id/R/RS/RSCHUPP/PAR-Packer-${pkgver}.tar.gz;)
+b2sums=('9f7702ef38d6c21fc4df6d4a2dbc432c6d64cee99cda707a7e9197aa4d7e276210b9095da92cb1767275eba6e7671b6410b95e082d579972bab97cba48a365bf')
+
+build() {
+  cd PAR-Packer-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
+  perl Makefile.PL
+  make
+}
+
+check() {
+  cd PAR-Packer-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1
+  make test
+}
+
+package() {
+  cd PAR-Packer-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  make install INSTALLDIRS=vendor DESTDIR="${pkgdir}"
+  #remove conflicting and empty man page
+  rm "${pkgdir}"/usr/share/man/man1/pp.1
+}


[arch-commits] Commit in (4 files)

2020-10-30 Thread Frederik Schwan via arch-commits
Date: Friday, October 30, 2020 @ 17:13:52
  Author: freswa
Revision: 736786

move perl-par-packager from unsupported to [community]

Added:
  perl-par-packer/
  perl-par-packer/repos/
  perl-par-packer/trunk/
  perl-par-packer/trunk/PKGBUILD

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

Added: perl-par-packer/trunk/PKGBUILD
===
--- perl-par-packer/trunk/PKGBUILD  (rev 0)
+++ perl-par-packer/trunk/PKGBUILD  2020-10-30 17:13:52 UTC (rev 736786)
@@ -0,0 +1,42 @@
+# Maintainer: Frederik Schwan 
+# Contributor: Amish 
+# Contributor: Justin Davis 
+# Contributor: Tony Sokhon 
+
+pkgname=perl-par-packer
+pkgver=1.050
+pkgrel=5
+pkgdesc='PAR Packager'
+arch=('x86_64')
+url='https://metacpan.org/release/PAR-Packer'
+license=('GPL')
+# This package links agains libperl.so
+depends=('perl=5.32.0' 'perl-archive-zip' 'perl-getopt-argvfile' 
'perl-ipc-run3' 'perl-module-scandeps'
+  'perl-par' 'perl-par-dist')
+makedepends=('perl-extutils-makemaker')
+options=('!emptydirs' purge)
+source=("https://cpan.metacpan.org/authors/id/R/RS/RSCHUPP/PAR-Packer-${pkgver}.tar.gz;)
+b2sums=('9f7702ef38d6c21fc4df6d4a2dbc432c6d64cee99cda707a7e9197aa4d7e276210b9095da92cb1767275eba6e7671b6410b95e082d579972bab97cba48a365bf')
+
+build() {
+  cd PAR-Packer-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
+  perl Makefile.PL
+  make
+}
+
+check() {
+  cd PAR-Packer-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1
+  make test
+}
+
+package() {
+  cd PAR-Packer-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  make install INSTALLDIRS=vendor DESTDIR="${pkgdir}"
+  #remove conflicting and empty man page
+  rm "${pkgdir}"/usr/share/man/man1/pp.1
+}


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

2020-10-30 Thread Frederik Schwan via arch-commits
Date: Friday, October 30, 2020 @ 16:59:07
  Author: freswa
Revision: 736777

archrelease: copy trunk to community-any

Added:
  perl-par/repos/community-any/
  perl-par/repos/community-any/PKGBUILD
(from rev 736776, perl-par/trunk/PKGBUILD)

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

Copied: perl-par/repos/community-any/PKGBUILD (from rev 736776, 
perl-par/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2020-10-30 16:59:07 UTC (rev 736777)
@@ -0,0 +1,35 @@
+# Maintainer: Frederik Schwan 
+# Contributor: dracorp aka Piotr Rogoza 
+# Contributor:  TDY 
+# Contributor: François Charette 
+
+pkgname=perl-par
+pkgver=1.016
+pkgrel=3
+pkgdesc='Perl Archive Toolkit'
+arch=('any')
+url='https://metacpan.org/release/PAR'
+license=('GPL')
+depends=('perl-archive-zip' 'perl-par-dist')
+options=('!emptydirs' purge)
+source=("https://cpan.metacpan.org/authors/id/R/RS/RSCHUPP/PAR-${pkgver}.tar.gz;)
+b2sums=('247e48b9de6dffc73cf78f8bc5c9114edde49634ef91412c765202529e0bcfeb5eee180c40cc04ac5bfbe02c2c12f6eaf2926f2b7a4178a102a607e36301c9e3')
+
+build() {
+  cd PAR-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
+  perl Makefile.PL
+  make
+}
+check(){
+  cd PAR-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1
+  make test
+}
+package() {
+  cd PAR-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  make install INSTALLDIRS=vendor DESTDIR="${pkgdir}"
+}


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

2020-10-30 Thread Frederik Schwan via arch-commits
Date: Friday, October 30, 2020 @ 16:58:42
  Author: freswa
Revision: 736776

fix maintainer header

Modified:
  perl-par/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-30 16:57:32 UTC (rev 736775)
+++ PKGBUILD2020-10-30 16:58:42 UTC (rev 736776)
@@ -1,4 +1,5 @@
-# Maintainer: dracorp aka Piotr Rogoza 
+# Maintainer: Frederik Schwan 
+# Contributor: dracorp aka Piotr Rogoza 
 # Contributor:  TDY 
 # Contributor: François Charette 
 


[arch-commits] Commit in (4 files)

2020-10-30 Thread Frederik Schwan via arch-commits
Date: Friday, October 30, 2020 @ 16:57:32
  Author: freswa
Revision: 736775

move perl-par from unsupported to [community]

Added:
  perl-par/
  perl-par/repos/
  perl-par/trunk/
  perl-par/trunk/PKGBUILD

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

Added: perl-par/trunk/PKGBUILD
===
--- perl-par/trunk/PKGBUILD (rev 0)
+++ perl-par/trunk/PKGBUILD 2020-10-30 16:57:32 UTC (rev 736775)
@@ -0,0 +1,34 @@
+# Maintainer: dracorp aka Piotr Rogoza 
+# Contributor:  TDY 
+# Contributor: François Charette 
+
+pkgname=perl-par
+pkgver=1.016
+pkgrel=3
+pkgdesc='Perl Archive Toolkit'
+arch=('any')
+url='https://metacpan.org/release/PAR'
+license=('GPL')
+depends=('perl-archive-zip' 'perl-par-dist')
+options=('!emptydirs' purge)
+source=("https://cpan.metacpan.org/authors/id/R/RS/RSCHUPP/PAR-${pkgver}.tar.gz;)
+b2sums=('247e48b9de6dffc73cf78f8bc5c9114edde49634ef91412c765202529e0bcfeb5eee180c40cc04ac5bfbe02c2c12f6eaf2926f2b7a4178a102a607e36301c9e3')
+
+build() {
+  cd PAR-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
+  perl Makefile.PL
+  make
+}
+check(){
+  cd PAR-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1
+  make test
+}
+package() {
+  cd PAR-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  make install INSTALLDIRS=vendor DESTDIR="${pkgdir}"
+}


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

2020-10-30 Thread Frederik Schwan via arch-commits
Date: Friday, October 30, 2020 @ 16:45:42
  Author: freswa
Revision: 736772

archrelease: copy trunk to community-any

Added:
  perl-ntlm/repos/community-any/
  perl-ntlm/repos/community-any/PKGBUILD
(from rev 736771, perl-ntlm/trunk/PKGBUILD)

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

Copied: perl-ntlm/repos/community-any/PKGBUILD (from rev 736771, 
perl-ntlm/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2020-10-30 16:45:42 UTC (rev 736772)
@@ -0,0 +1,36 @@
+# Maintainer: Frederik Schwan 
+# Contributor: Eduardo Leggiero 
+
+pkgname=perl-ntlm
+pkgver=1.09
+pkgrel=5
+pkgdesc='Perl/CPAN module NTLM'
+arch=('any')
+url='https://metacpan.org/release/NTLM'
+license=('GPL')
+depends=('perl')
+makedepends=('perl-digest-hmac')
+options=('!emptydirs' purge)
+source=("https://cpan.metacpan.org/authors/id/N/NB/NBEBOUT/NTLM-${pkgver}.tar.gz;)
+b2sums=('dbf8f4497f2e57c72ad6a5dc6ff21e3cba35bdeee1ebccfc9efecb04a9808b7f3fb929c055acb7038f2990e6ef6a553a09573af70b065ffc74a72fba223e2fae')
+
+build() {
+  cd NTLM-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
+  perl Makefile.PL
+  make
+}
+
+check() {
+  cd NTLM-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1
+  make test
+}
+
+package(){
+  cd NTLM-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  make install INSTALLDIRS=vendor DESTDIR="$pkgdir"
+}


[arch-commits] Commit in (4 files)

2020-10-30 Thread Frederik Schwan via arch-commits
Date: Friday, October 30, 2020 @ 16:43:18
  Author: freswa
Revision: 736771

move perl-ntlm from unsupported to [community]

Added:
  perl-ntlm/
  perl-ntlm/repos/
  perl-ntlm/trunk/
  perl-ntlm/trunk/PKGBUILD

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

Added: perl-ntlm/trunk/PKGBUILD
===
--- perl-ntlm/trunk/PKGBUILD(rev 0)
+++ perl-ntlm/trunk/PKGBUILD2020-10-30 16:43:18 UTC (rev 736771)
@@ -0,0 +1,36 @@
+# Maintainer: Frederik Schwan 
+# Contributor: Eduardo Leggiero 
+
+pkgname=perl-ntlm
+pkgver=1.09
+pkgrel=5
+pkgdesc='Perl/CPAN module NTLM'
+arch=('any')
+url='https://metacpan.org/release/NTLM'
+license=('GPL')
+depends=('perl')
+makedepends=('perl-digest-hmac')
+options=('!emptydirs' purge)
+source=("https://cpan.metacpan.org/authors/id/N/NB/NBEBOUT/NTLM-${pkgver}.tar.gz;)
+b2sums=('dbf8f4497f2e57c72ad6a5dc6ff21e3cba35bdeee1ebccfc9efecb04a9808b7f3fb929c055acb7038f2990e6ef6a553a09573af70b065ffc74a72fba223e2fae')
+
+build() {
+  cd NTLM-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
+  perl Makefile.PL
+  make
+}
+
+check() {
+  cd NTLM-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1
+  make test
+}
+
+package(){
+  cd NTLM-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  make install INSTALLDIRS=vendor DESTDIR="$pkgdir"
+}


[arch-commits] Commit in perl-mail-imapclient/repos/community-any (PKGBUILD PKGBUILD)

2020-10-30 Thread Frederik Schwan via arch-commits
Date: Friday, October 30, 2020 @ 16:38:31
  Author: freswa
Revision: 736770

archrelease: copy trunk to community-any

Added:
  perl-mail-imapclient/repos/community-any/PKGBUILD
(from rev 736769, perl-mail-imapclient/trunk/PKGBUILD)
Deleted:
  perl-mail-imapclient/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-30 16:38:27 UTC (rev 736769)
+++ PKGBUILD2020-10-30 16:38:31 UTC (rev 736770)
@@ -1,28 +0,0 @@
-# Maintainer: Frederik Schwan 
-# Contributor: DonVla 
-# Contributor: achterin 
-
-pkgname=perl-mail-imapclient
-pkgver=3.42
-pkgrel=2
-pkgdesc='Perl/CPAN Module Mail::IMAPClient : An IMAP Client API'
-arch=('any')
-url='https://search.cpan.org/dist/Mail-IMAPClient'
-license=('GPL')
-depends=('perl-parse-recdescent' 'perl-digest-hmac')
-optdepends=("perl-authen-sasl: for Authmechanism 'DIGEST-MD5'")
-source=("https://cpan.metacpan.org/authors/id/P/PL/PLOBBES/Mail-IMAPClient-${pkgver}.tar.gz;)
-b2sums=('360006381e318dfc46835cabb1a1c72f4039813563a58d585bf9b042b880ece3e5b00a29283bf4de5c382a02628df2094e1772762251c167498c9fcd70ed85a2')
-
-build() {
-  cd Mail-IMAPClient-${pkgver}
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd Mail-IMAPClient-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  # cleanup empty dir
-  rm -rf ${pkgdir}/usr/lib/
-}

Copied: perl-mail-imapclient/repos/community-any/PKGBUILD (from rev 736769, 
perl-mail-imapclient/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-30 16:38:31 UTC (rev 736770)
@@ -0,0 +1,37 @@
+# Maintainer: Frederik Schwan 
+# Contributor: DonVla 
+# Contributor: achterin 
+
+pkgname=perl-mail-imapclient
+pkgver=3.42
+pkgrel=3
+pkgdesc='Perl/CPAN Module Mail::IMAPClient : An IMAP Client API'
+arch=('any')
+url='https://search.cpan.org/dist/Mail-IMAPClient'
+license=('GPL')
+depends=('perl-parse-recdescent' 'perl-digest-hmac')
+optdepends=("perl-authen-sasl: for Authmechanism 'DIGEST-MD5'")
+options=('!emptydirs' purge)
+source=("https://cpan.metacpan.org/authors/id/P/PL/PLOBBES/Mail-IMAPClient-${pkgver}.tar.gz;)
+b2sums=('360006381e318dfc46835cabb1a1c72f4039813563a58d585bf9b042b880ece3e5b00a29283bf4de5c382a02628df2094e1772762251c167498c9fcd70ed85a2')
+
+build() {
+  cd Mail-IMAPClient-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
+  /usr/bin/perl Makefile.PL
+  make
+}
+
+check() {
+  cd Mail-IMAPClient-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1
+  make test
+}
+
+package() {
+  cd Mail-IMAPClient-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  make install INSTALLDIRS=vendor DESTDIR="${pkgdir}"
+}


[arch-commits] Commit in perl-mail-imapclient/trunk (PKGBUILD)

2020-10-30 Thread Frederik Schwan via arch-commits
Date: Friday, October 30, 2020 @ 16:38:27
  Author: freswa
Revision: 736769

apply perl packaging guidlines

Modified:
  perl-mail-imapclient/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-30 16:35:36 UTC (rev 736768)
+++ PKGBUILD2020-10-30 16:38:27 UTC (rev 736769)
@@ -4,7 +4,7 @@
 
 pkgname=perl-mail-imapclient
 pkgver=3.42
-pkgrel=2
+pkgrel=3
 pkgdesc='Perl/CPAN Module Mail::IMAPClient : An IMAP Client API'
 arch=('any')
 url='https://search.cpan.org/dist/Mail-IMAPClient'
@@ -11,18 +11,27 @@
 license=('GPL')
 depends=('perl-parse-recdescent' 'perl-digest-hmac')
 optdepends=("perl-authen-sasl: for Authmechanism 'DIGEST-MD5'")
+options=('!emptydirs' purge)
 
source=("https://cpan.metacpan.org/authors/id/P/PL/PLOBBES/Mail-IMAPClient-${pkgver}.tar.gz;)
 
b2sums=('360006381e318dfc46835cabb1a1c72f4039813563a58d585bf9b042b880ece3e5b00a29283bf4de5c382a02628df2094e1772762251c167498c9fcd70ed85a2')
 
 build() {
   cd Mail-IMAPClient-${pkgver}
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
+  /usr/bin/perl Makefile.PL
   make
 }
 
+check() {
+  cd Mail-IMAPClient-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1
+  make test
+}
+
 package() {
   cd Mail-IMAPClient-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  # cleanup empty dir
-  rm -rf ${pkgdir}/usr/lib/
+  unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
+  make install INSTALLDIRS=vendor DESTDIR="${pkgdir}"
 }


[arch-commits] Commit in perl-json-webtoken/repos/community-any (PKGBUILD PKGBUILD)

2020-10-30 Thread Frederik Schwan via arch-commits
Date: Friday, October 30, 2020 @ 16:35:36
  Author: freswa
Revision: 736768

archrelease: copy trunk to community-any

Added:
  perl-json-webtoken/repos/community-any/PKGBUILD
(from rev 736767, perl-json-webtoken/trunk/PKGBUILD)
Deleted:
  perl-json-webtoken/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-30 16:35:33 UTC (rev 736767)
+++ PKGBUILD2020-10-30 16:35:36 UTC (rev 736768)
@@ -1,32 +0,0 @@
-# Maintainer: Frederik Schwan 
-
-pkgname=perl-json-webtoken
-pkgver=0.10
-pkgrel=4
-pkgdesc='Perl/CPAN module JSON WebToken'
-arch=('any')
-url='https://metacpan.org/release/JSON-WebToken'
-license=('GPL')
-depends=('perl-json')
-makedepends=('perl-module-build' 'perl-module-runtime')
-checkdepends=('perl-test-mock-guard' 'perl-test-requires')
-source=("https://cpan.metacpan.org/authors/id/X/XA/XAICRON/JSON-WebToken-${pkgver}.tar.gz;)
-b2sums=('823f09e7d0c2d325de19c0d0f1204d1d0573407978c6d86119e052264c16d8c81a49ee74a9551bcbbe8f054916cd02236e4fb8f0c26ee5e539b71e1a30cdceb6')
-
-build() {
-  cd JSON-WebToken-${pkgver}
-  perl Build.PL
-  ./Build
-}
-
-check() {
-  cd JSON-WebToken-${pkgver}
-  ./Build test
-}
-
-package(){
-  cd JSON-WebToken-${pkgver}
-  ./Build install --destdir "${pkgdir}"
-  # cleanup empty dir
-  rm -rf ${pkgdir}/usr/lib/
-}

Copied: perl-json-webtoken/repos/community-any/PKGBUILD (from rev 736767, 
perl-json-webtoken/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-30 16:35:36 UTC (rev 736768)
@@ -0,0 +1,36 @@
+# Maintainer: Frederik Schwan 
+
+pkgname=perl-json-webtoken
+pkgver=0.10
+pkgrel=5
+pkgdesc='Perl/CPAN module JSON WebToken'
+arch=('any')
+url='https://metacpan.org/release/JSON-WebToken'
+license=('GPL')
+depends=('perl-json')
+makedepends=('perl-module-build' 'perl-module-runtime')
+checkdepends=('perl-test-mock-guard' 'perl-test-requires')
+options=('!emptydirs' purge)
+source=("https://cpan.metacpan.org/authors/id/X/XA/XAICRON/JSON-WebToken-${pkgver}.tar.gz;)
+b2sums=('823f09e7d0c2d325de19c0d0f1204d1d0573407978c6d86119e052264c16d8c81a49ee74a9551bcbbe8f054916cd02236e4fb8f0c26ee5e539b71e1a30cdceb6')
+
+build() {
+  cd JSON-WebToken-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1 MODULEBUILDRC=/dev/null
+  perl Build.PL
+  ./Build
+}
+
+check() {
+  cd JSON-WebToken-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1
+  ./Build test
+}
+
+package(){
+  cd JSON-WebToken-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
+  ./Build install --installdirs=vendor --destdir="${pkgdir}"
+}


[arch-commits] Commit in perl-json-webtoken/trunk (PKGBUILD)

2020-10-30 Thread Frederik Schwan via arch-commits
Date: Friday, October 30, 2020 @ 16:35:33
  Author: freswa
Revision: 736767

apply perl packaging guidlines

Modified:
  perl-json-webtoken/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-30 16:34:03 UTC (rev 736766)
+++ PKGBUILD2020-10-30 16:35:33 UTC (rev 736767)
@@ -2,7 +2,7 @@
 
 pkgname=perl-json-webtoken
 pkgver=0.10
-pkgrel=4
+pkgrel=5
 pkgdesc='Perl/CPAN module JSON WebToken'
 arch=('any')
 url='https://metacpan.org/release/JSON-WebToken'
@@ -10,11 +10,14 @@
 depends=('perl-json')
 makedepends=('perl-module-build' 'perl-module-runtime')
 checkdepends=('perl-test-mock-guard' 'perl-test-requires')
+options=('!emptydirs' purge)
 
source=("https://cpan.metacpan.org/authors/id/X/XA/XAICRON/JSON-WebToken-${pkgver}.tar.gz;)
 
b2sums=('823f09e7d0c2d325de19c0d0f1204d1d0573407978c6d86119e052264c16d8c81a49ee74a9551bcbbe8f054916cd02236e4fb8f0c26ee5e539b71e1a30cdceb6')
 
 build() {
   cd JSON-WebToken-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1 MODULEBUILDRC=/dev/null
   perl Build.PL
   ./Build
 }
@@ -21,12 +24,13 @@
 
 check() {
   cd JSON-WebToken-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1
   ./Build test
 }
 
 package(){
   cd JSON-WebToken-${pkgver}
-  ./Build install --destdir "${pkgdir}"
-  # cleanup empty dir
-  rm -rf ${pkgdir}/usr/lib/
+  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
+  ./Build install --installdirs=vendor --destdir="${pkgdir}"
 }


[arch-commits] Commit in perl-test-mock-guard/trunk (PKGBUILD)

2020-10-30 Thread Frederik Schwan via arch-commits
Date: Friday, October 30, 2020 @ 16:30:38
  Author: freswa
Revision: 736763

apply packaging guidlines

Modified:
  perl-test-mock-guard/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-30 16:16:11 UTC (rev 736762)
+++ PKGBUILD2020-10-30 16:30:38 UTC (rev 736763)
@@ -3,17 +3,20 @@
 
 pkgname=perl-test-mock-guard
 pkgver=0.10
-pkgrel=2
+pkgrel=3
 pkgdesc='Simple mock test library using RAII.'
 arch=('any')
+url='https://metacpan.org/release/Test-Mock-Guard'
 license=('GPL')
 depends=('perl-class-load')
-url='https://metacpan.org/release/Test-Mock-Guard'
+options=('!emptydirs' purge)
 
source=("http://search.cpan.org/CPAN/authors/id/X/XA/XAICRON/Test-Mock-Guard-${pkgver}.tar.gz;)
 
b2sums=('7217eeef03920bdc96ae703607dbcd034b2a495b90296db9d2024e290cbc17e98f20f25f5d3f7fbdf3005b6db66476742fd5af94a954d35075d53f52f2e4fe45')
 
 build() {
   cd Test-Mock-Guard-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1 MODULEBUILDRC=/dev/null
   perl Build.PL
   ./Build
 }
@@ -20,12 +23,13 @@
 
 check() {
   cd Test-Mock-Guard-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1
   ./Build test
 }
 
 package() {
   cd Test-Mock-Guard-${pkgver}
-  ./Build install --destdir "${pkgdir}"
-  # cleanup empty dir
-  rm -rf ${pkgdir}/usr/lib/
+  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
+  ./Build install --installdirs=vendor --destdir "${pkgdir}"
 }


[arch-commits] Commit in perl-test-mock-guard/repos/community-any (PKGBUILD PKGBUILD)

2020-10-30 Thread Frederik Schwan via arch-commits
Date: Friday, October 30, 2020 @ 16:30:41
  Author: freswa
Revision: 736764

archrelease: copy trunk to community-any

Added:
  perl-test-mock-guard/repos/community-any/PKGBUILD
(from rev 736763, perl-test-mock-guard/trunk/PKGBUILD)
Deleted:
  perl-test-mock-guard/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-30 16:30:38 UTC (rev 736763)
+++ PKGBUILD2020-10-30 16:30:41 UTC (rev 736764)
@@ -1,31 +0,0 @@
-# Maintainer: Frederik Schwan 
-# Contributor: John D Jones III AKA jnbek 
-
-pkgname=perl-test-mock-guard
-pkgver=0.10
-pkgrel=2
-pkgdesc='Simple mock test library using RAII.'
-arch=('any')
-license=('GPL')
-depends=('perl-class-load')
-url='https://metacpan.org/release/Test-Mock-Guard'
-source=("http://search.cpan.org/CPAN/authors/id/X/XA/XAICRON/Test-Mock-Guard-${pkgver}.tar.gz;)
-b2sums=('7217eeef03920bdc96ae703607dbcd034b2a495b90296db9d2024e290cbc17e98f20f25f5d3f7fbdf3005b6db66476742fd5af94a954d35075d53f52f2e4fe45')
-
-build() {
-  cd Test-Mock-Guard-${pkgver}
-  perl Build.PL
-  ./Build
-}
-
-check() {
-  cd Test-Mock-Guard-${pkgver}
-  ./Build test
-}
-
-package() {
-  cd Test-Mock-Guard-${pkgver}
-  ./Build install --destdir "${pkgdir}"
-  # cleanup empty dir
-  rm -rf ${pkgdir}/usr/lib/
-}

Copied: perl-test-mock-guard/repos/community-any/PKGBUILD (from rev 736763, 
perl-test-mock-guard/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-30 16:30:41 UTC (rev 736764)
@@ -0,0 +1,35 @@
+# Maintainer: Frederik Schwan 
+# Contributor: John D Jones III AKA jnbek 
+
+pkgname=perl-test-mock-guard
+pkgver=0.10
+pkgrel=3
+pkgdesc='Simple mock test library using RAII.'
+arch=('any')
+url='https://metacpan.org/release/Test-Mock-Guard'
+license=('GPL')
+depends=('perl-class-load')
+options=('!emptydirs' purge)
+source=("http://search.cpan.org/CPAN/authors/id/X/XA/XAICRON/Test-Mock-Guard-${pkgver}.tar.gz;)
+b2sums=('7217eeef03920bdc96ae703607dbcd034b2a495b90296db9d2024e290cbc17e98f20f25f5d3f7fbdf3005b6db66476742fd5af94a954d35075d53f52f2e4fe45')
+
+build() {
+  cd Test-Mock-Guard-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1 MODULEBUILDRC=/dev/null
+  perl Build.PL
+  ./Build
+}
+
+check() {
+  cd Test-Mock-Guard-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
+  export PERL_MM_USE_DEFAULT=1
+  ./Build test
+}
+
+package() {
+  cd Test-Mock-Guard-${pkgver}
+  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
+  ./Build install --installdirs=vendor --destdir "${pkgdir}"
+}


[arch-commits] Commit in perl-mail-imapclient/repos (2 files)

2020-10-30 Thread Frederik Schwan via arch-commits
Date: Friday, October 30, 2020 @ 16:16:11
  Author: freswa
Revision: 736762

archrelease: copy trunk to community-any

Added:
  perl-mail-imapclient/repos/community-any/
  perl-mail-imapclient/repos/community-any/PKGBUILD
(from rev 736761, perl-mail-imapclient/trunk/PKGBUILD)

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

Copied: perl-mail-imapclient/repos/community-any/PKGBUILD (from rev 736761, 
perl-mail-imapclient/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2020-10-30 16:16:11 UTC (rev 736762)
@@ -0,0 +1,28 @@
+# Maintainer: Frederik Schwan 
+# Contributor: DonVla 
+# Contributor: achterin 
+
+pkgname=perl-mail-imapclient
+pkgver=3.42
+pkgrel=2
+pkgdesc='Perl/CPAN Module Mail::IMAPClient : An IMAP Client API'
+arch=('any')
+url='https://search.cpan.org/dist/Mail-IMAPClient'
+license=('GPL')
+depends=('perl-parse-recdescent' 'perl-digest-hmac')
+optdepends=("perl-authen-sasl: for Authmechanism 'DIGEST-MD5'")
+source=("https://cpan.metacpan.org/authors/id/P/PL/PLOBBES/Mail-IMAPClient-${pkgver}.tar.gz;)
+b2sums=('360006381e318dfc46835cabb1a1c72f4039813563a58d585bf9b042b880ece3e5b00a29283bf4de5c382a02628df2094e1772762251c167498c9fcd70ed85a2')
+
+build() {
+  cd Mail-IMAPClient-${pkgver}
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd Mail-IMAPClient-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  # cleanup empty dir
+  rm -rf ${pkgdir}/usr/lib/
+}


[arch-commits] Commit in (4 files)

2020-10-30 Thread Frederik Schwan via arch-commits
Date: Friday, October 30, 2020 @ 16:15:36
  Author: freswa
Revision: 736761

move perl-mail-imapclient from unsupported to [community]

Added:
  perl-mail-imapclient/
  perl-mail-imapclient/repos/
  perl-mail-imapclient/trunk/
  perl-mail-imapclient/trunk/PKGBUILD

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

Added: perl-mail-imapclient/trunk/PKGBUILD
===
--- perl-mail-imapclient/trunk/PKGBUILD (rev 0)
+++ perl-mail-imapclient/trunk/PKGBUILD 2020-10-30 16:15:36 UTC (rev 736761)
@@ -0,0 +1,28 @@
+# Maintainer: Frederik Schwan 
+# Contributor: DonVla 
+# Contributor: achterin 
+
+pkgname=perl-mail-imapclient
+pkgver=3.42
+pkgrel=2
+pkgdesc='Perl/CPAN Module Mail::IMAPClient : An IMAP Client API'
+arch=('any')
+url='https://search.cpan.org/dist/Mail-IMAPClient'
+license=('GPL')
+depends=('perl-parse-recdescent' 'perl-digest-hmac')
+optdepends=("perl-authen-sasl: for Authmechanism 'DIGEST-MD5'")
+source=("https://cpan.metacpan.org/authors/id/P/PL/PLOBBES/Mail-IMAPClient-${pkgver}.tar.gz;)
+b2sums=('360006381e318dfc46835cabb1a1c72f4039813563a58d585bf9b042b880ece3e5b00a29283bf4de5c382a02628df2094e1772762251c167498c9fcd70ed85a2')
+
+build() {
+  cd Mail-IMAPClient-${pkgver}
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd Mail-IMAPClient-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  # cleanup empty dir
+  rm -rf ${pkgdir}/usr/lib/
+}


[arch-commits] Commit in perl-json-webtoken/repos (2 files)

2020-10-30 Thread Frederik Schwan via arch-commits
Date: Friday, October 30, 2020 @ 16:03:09
  Author: freswa
Revision: 736746

archrelease: copy trunk to community-any

Added:
  perl-json-webtoken/repos/community-any/
  perl-json-webtoken/repos/community-any/PKGBUILD
(from rev 736745, perl-json-webtoken/trunk/PKGBUILD)

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

Copied: perl-json-webtoken/repos/community-any/PKGBUILD (from rev 736745, 
perl-json-webtoken/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2020-10-30 16:03:09 UTC (rev 736746)
@@ -0,0 +1,32 @@
+# Maintainer: Frederik Schwan 
+
+pkgname=perl-json-webtoken
+pkgver=0.10
+pkgrel=4
+pkgdesc='Perl/CPAN module JSON WebToken'
+arch=('any')
+url='https://metacpan.org/release/JSON-WebToken'
+license=('GPL')
+depends=('perl-json')
+makedepends=('perl-module-build' 'perl-module-runtime')
+checkdepends=('perl-test-mock-guard' 'perl-test-requires')
+source=("https://cpan.metacpan.org/authors/id/X/XA/XAICRON/JSON-WebToken-${pkgver}.tar.gz;)
+b2sums=('823f09e7d0c2d325de19c0d0f1204d1d0573407978c6d86119e052264c16d8c81a49ee74a9551bcbbe8f054916cd02236e4fb8f0c26ee5e539b71e1a30cdceb6')
+
+build() {
+  cd JSON-WebToken-${pkgver}
+  perl Build.PL
+  ./Build
+}
+
+check() {
+  cd JSON-WebToken-${pkgver}
+  ./Build test
+}
+
+package(){
+  cd JSON-WebToken-${pkgver}
+  ./Build install --destdir "${pkgdir}"
+  # cleanup empty dir
+  rm -rf ${pkgdir}/usr/lib/
+}


[arch-commits] Commit in (4 files)

2020-10-30 Thread Frederik Schwan via arch-commits
Date: Friday, October 30, 2020 @ 16:02:29
  Author: freswa
Revision: 736743

move perl-json-webtoken from unsupported to [community]

Added:
  perl-json-webtoken/
  perl-json-webtoken/repos/
  perl-json-webtoken/trunk/
  perl-json-webtoken/trunk/PKGBUILD

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

Added: perl-json-webtoken/trunk/PKGBUILD
===
--- perl-json-webtoken/trunk/PKGBUILD   (rev 0)
+++ perl-json-webtoken/trunk/PKGBUILD   2020-10-30 16:02:29 UTC (rev 736743)
@@ -0,0 +1,32 @@
+# Maintainer: Frederik Schwan 
+
+pkgname=perl-json-webtoken
+pkgver=0.10
+pkgrel=4
+pkgdesc='Perl/CPAN module JSON WebToken'
+arch=('any')
+url='https://metacpan.org/release/JSON-WebToken'
+license=('GPL')
+depends=('perl-json')
+makedepends=('perl-module-build' 'perl-module-runtime')
+checkdepends=('perl-test-mock-guard' 'perl-test-requires')
+source=("https://cpan.metacpan.org/authors/id/X/XA/XAICRON/JSON-WebToken-${pkgver}.tar.gz;)
+b2sums=('823f09e7d0c2d325de19c0d0f1204d1d0573407978c6d86119e052264c16d8c81a49ee74a9551bcbbe8f054916cd02236e4fb8f0c26ee5e539b71e1a30cdceb6')
+
+build() {
+  cd JSON-WebToken-${pkgver}
+  perl Build.PL
+  ./Build
+}
+
+check() {
+  cd JSON-WebToken-${pkgver}
+  ./Build test
+}
+
+package(){
+  cd JSON-WebToken-${pkgver}
+  ./Build install --destdir "${pkgdir}"
+  # cleanup empty dir
+  rm -rf ${pkgdir}/usr/lib/
+}


[arch-commits] Commit in perl-test-mock-guard/repos (2 files)

2020-10-30 Thread Frederik Schwan via arch-commits
Date: Friday, October 30, 2020 @ 15:53:02
  Author: freswa
Revision: 736733

archrelease: copy trunk to community-any

Added:
  perl-test-mock-guard/repos/community-any/
  perl-test-mock-guard/repos/community-any/PKGBUILD
(from rev 736732, perl-test-mock-guard/trunk/PKGBUILD)

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

Copied: perl-test-mock-guard/repos/community-any/PKGBUILD (from rev 736732, 
perl-test-mock-guard/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2020-10-30 15:53:02 UTC (rev 736733)
@@ -0,0 +1,31 @@
+# Maintainer: Frederik Schwan 
+# Contributor: John D Jones III AKA jnbek 
+
+pkgname=perl-test-mock-guard
+pkgver=0.10
+pkgrel=2
+pkgdesc='Simple mock test library using RAII.'
+arch=('any')
+license=('GPL')
+depends=('perl-class-load')
+url='https://metacpan.org/release/Test-Mock-Guard'
+source=("http://search.cpan.org/CPAN/authors/id/X/XA/XAICRON/Test-Mock-Guard-${pkgver}.tar.gz;)
+b2sums=('7217eeef03920bdc96ae703607dbcd034b2a495b90296db9d2024e290cbc17e98f20f25f5d3f7fbdf3005b6db66476742fd5af94a954d35075d53f52f2e4fe45')
+
+build() {
+  cd Test-Mock-Guard-${pkgver}
+  perl Build.PL
+  ./Build
+}
+
+check() {
+  cd Test-Mock-Guard-${pkgver}
+  ./Build test
+}
+
+package() {
+  cd Test-Mock-Guard-${pkgver}
+  ./Build install --destdir "${pkgdir}"
+  # cleanup empty dir
+  rm -rf ${pkgdir}/usr/lib/
+}


[arch-commits] Commit in (4 files)

2020-10-30 Thread Frederik Schwan via arch-commits
Date: Friday, October 30, 2020 @ 15:52:38
  Author: freswa
Revision: 736732

move perl-test-mock-guard from unsupported to [community]

Added:
  perl-test-mock-guard/
  perl-test-mock-guard/repos/
  perl-test-mock-guard/trunk/
  perl-test-mock-guard/trunk/PKGBUILD

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

Added: perl-test-mock-guard/trunk/PKGBUILD
===
--- perl-test-mock-guard/trunk/PKGBUILD (rev 0)
+++ perl-test-mock-guard/trunk/PKGBUILD 2020-10-30 15:52:38 UTC (rev 736732)
@@ -0,0 +1,31 @@
+# Maintainer: Frederik Schwan 
+# Contributor: John D Jones III AKA jnbek 
+
+pkgname=perl-test-mock-guard
+pkgver=0.10
+pkgrel=2
+pkgdesc='Simple mock test library using RAII.'
+arch=('any')
+license=('GPL')
+depends=('perl-class-load')
+url='https://metacpan.org/release/Test-Mock-Guard'
+source=("http://search.cpan.org/CPAN/authors/id/X/XA/XAICRON/Test-Mock-Guard-${pkgver}.tar.gz;)
+b2sums=('7217eeef03920bdc96ae703607dbcd034b2a495b90296db9d2024e290cbc17e98f20f25f5d3f7fbdf3005b6db66476742fd5af94a954d35075d53f52f2e4fe45')
+
+build() {
+  cd Test-Mock-Guard-${pkgver}
+  perl Build.PL
+  ./Build
+}
+
+check() {
+  cd Test-Mock-Guard-${pkgver}
+  ./Build test
+}
+
+package() {
+  cd Test-Mock-Guard-${pkgver}
+  ./Build install --destdir "${pkgdir}"
+  # cleanup empty dir
+  rm -rf ${pkgdir}/usr/lib/
+}


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

2020-10-27 Thread Frederik Schwan via arch-commits
Date: Tuesday, October 27, 2020 @ 13:56:52
  Author: freswa
Revision: 734418

upgpkg: rust-libslirp 4.3.0-1

Modified:
  rust-libslirp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-27 13:54:47 UTC (rev 734417)
+++ PKGBUILD2020-10-27 13:56:52 UTC (rev 734418)
@@ -2,7 +2,7 @@
 # Contributor: loqs
 
 pkgname=rust-libslirp
-pkgver=4.2.2
+pkgver=4.3.0
 pkgrel=1
 pkgdesc='High-level bindings & helper process for libslirp.'
 url='https://gitlab.freedesktop.org/slirp/libslirp-rs'
@@ -11,7 +11,7 @@
 depends=('dbus' 'libslirp')
 makedepends=('cargo')
 
source=("${pkgname}-${pkgver}.tar.gz::https://crates.io/api/v1/crates/libslirp/${pkgver}/download;)
-b2sums=('890f0758d6315f6b00fc06be86ec449aa92bfe6af38d05f92396cbaec46bd4307618164556ebf5e009b4012ecc7a72d6df5e22a5bb88f00b9433efdeaa50ab18')
+b2sums=('a5a87d8f99e69f332de7adcb6bf5213348945e711d5cedd41a87de52c326fc0b1e43a1903396c3fd0aca776b3c7aabe2592cbb636c8e83f2de4453a13cece10d')
 
 build() {
   cd ${pkgname#rust-}-${pkgver}


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

2020-10-27 Thread Frederik Schwan via arch-commits
Date: Tuesday, October 27, 2020 @ 13:56:54
  Author: freswa
Revision: 734419

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-27 13:56:52 UTC (rev 734418)
+++ PKGBUILD2020-10-27 13:56:54 UTC (rev 734419)
@@ -1,25 +0,0 @@
-# Maintainer: Frederik Schwan 
-# Contributor: loqs
-
-pkgname=rust-libslirp
-pkgver=4.2.2
-pkgrel=1
-pkgdesc='High-level bindings & helper process for libslirp.'
-url='https://gitlab.freedesktop.org/slirp/libslirp-rs'
-arch=('x86_64')
-license=('MIT')
-depends=('dbus' 'libslirp')
-makedepends=('cargo')
-source=("${pkgname}-${pkgver}.tar.gz::https://crates.io/api/v1/crates/libslirp/${pkgver}/download;)
-b2sums=('890f0758d6315f6b00fc06be86ec449aa92bfe6af38d05f92396cbaec46bd4307618164556ebf5e009b4012ecc7a72d6df5e22a5bb88f00b9433efdeaa50ab18')
-
-build() {
-  cd ${pkgname#rust-}-${pkgver}
-  cargo build --release --locked --all-features --target-dir=target
-}
-
-package() {
-  cd ${pkgname#rust-}-${pkgver}
-  install -Dm755 "target/release/libslirp-helper" 
"${pkgdir}"/usr/bin/slirp-helper
-  install -Dm644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}
-}

Copied: rust-libslirp/repos/community-x86_64/PKGBUILD (from rev 734418, 
rust-libslirp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-27 13:56:54 UTC (rev 734419)
@@ -0,0 +1,25 @@
+# Maintainer: Frederik Schwan 
+# Contributor: loqs
+
+pkgname=rust-libslirp
+pkgver=4.3.0
+pkgrel=1
+pkgdesc='High-level bindings & helper process for libslirp.'
+url='https://gitlab.freedesktop.org/slirp/libslirp-rs'
+arch=('x86_64')
+license=('MIT')
+depends=('dbus' 'libslirp')
+makedepends=('cargo')
+source=("${pkgname}-${pkgver}.tar.gz::https://crates.io/api/v1/crates/libslirp/${pkgver}/download;)
+b2sums=('a5a87d8f99e69f332de7adcb6bf5213348945e711d5cedd41a87de52c326fc0b1e43a1903396c3fd0aca776b3c7aabe2592cbb636c8e83f2de4453a13cece10d')
+
+build() {
+  cd ${pkgname#rust-}-${pkgver}
+  cargo build --release --locked --all-features --target-dir=target
+}
+
+package() {
+  cd ${pkgname#rust-}-${pkgver}
+  install -Dm755 "target/release/libslirp-helper" 
"${pkgdir}"/usr/bin/slirp-helper
+  install -Dm644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}
+}


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

2020-10-27 Thread Frederik Schwan via arch-commits
Date: Tuesday, October 27, 2020 @ 13:54:47
  Author: freswa
Revision: 734417

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-27 13:54:44 UTC (rev 734416)
+++ PKGBUILD2020-10-27 13:54:47 UTC (rev 734417)
@@ -1,34 +0,0 @@
-# Maintainer: Frederik Schwan 
-# Contributor: Hao Long 
-
-pkgname=python-rich
-_name=rich
-pkgver=9.0.1
-pkgrel=2
-pkgdesc='Render rich text, tables, progress bars, syntax highlighting, 
markdown and more to the terminal'
-arch=(any)
-url='https://github.com/willmcgugan/rich'
-license=('MIT')
-depends=('python-colorama' 'python-pygments' 'python-typing_extensions' 
'python-commonmark')
-makedepends=('python-setuptools' 'python-dephell')
-source=("https://github.com/willmcgugan/rich/archive/v${pkgver}/rich-${pkgver}.tar.gz;
-
"https://github.com/willmcgugan/rich/commit/cbac633ab30f3b3e4e836ff87a3a88a28bffca48.patch;)
-b2sums=('03304eab96beb683833efcacf3b15548d23850210bb06275fab78b8e76e4351f0b2d5e00e87ea8c4c3d8281a050c63ad636e214ce38b11d3906641071163bd46'
-
'9a7e358673c9c051f040beb96b5a85ac4718f7bc9ff820c04ebee7c84b0646361096c439b4fc86e91d67af31017a25dd6d1103f5f7657e545b86b89b85a6b65c')
-
-prepare() {
-  cd rich-${pkgver}
-  patch -Np1 < ../cbac633ab30f3b3e4e836ff87a3a88a28bffca48.patch
-  dephell deps convert --from pyproject.toml --to setup.py
-}
-
-build() {
-  cd rich-${pkgver}
-  python3 setup.py build
-}
-
-package() {
-  cd rich-${pkgver}
-  python3 setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: python-rich/repos/community-any/PKGBUILD (from rev 734416, 
python-rich/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-27 13:54:47 UTC (rev 734417)
@@ -0,0 +1,31 @@
+# Maintainer: Frederik Schwan 
+# Contributor: Hao Long 
+
+pkgname=python-rich
+_name=rich
+pkgver=9.1.0
+pkgrel=1
+pkgdesc='Render rich text, tables, progress bars, syntax highlighting, 
markdown and more to the terminal'
+arch=(any)
+url='https://github.com/willmcgugan/rich'
+license=('MIT')
+depends=('python-colorama' 'python-pygments' 'python-typing_extensions' 
'python-commonmark')
+makedepends=('python-setuptools' 'python-dephell')
+source=("https://github.com/willmcgugan/rich/archive/v${pkgver}/rich-${pkgver}.tar.gz;)
+b2sums=('d1bc9b854b840125316d396bdff79476db8fe98e731cc2f2bc734236122c600e7133bbf4626c9fe1cbdf1aed6e4ac7b16a0af81fd24d8da302895c3fd0b8e3de')
+
+prepare() {
+  cd rich-${pkgver}
+  dephell deps convert --from pyproject.toml --to setup.py
+}
+
+build() {
+  cd rich-${pkgver}
+  python3 setup.py build
+}
+
+package() {
+  cd rich-${pkgver}
+  python3 setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}


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

2020-10-27 Thread Frederik Schwan via arch-commits
Date: Tuesday, October 27, 2020 @ 13:54:44
  Author: freswa
Revision: 734416

upgpkg: python-rich 9.1.0-1

Modified:
  python-rich/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-27 13:53:27 UTC (rev 734415)
+++ PKGBUILD2020-10-27 13:54:44 UTC (rev 734416)
@@ -3,8 +3,8 @@
 
 pkgname=python-rich
 _name=rich
-pkgver=9.0.1
-pkgrel=2
+pkgver=9.1.0
+pkgrel=1
 pkgdesc='Render rich text, tables, progress bars, syntax highlighting, 
markdown and more to the terminal'
 arch=(any)
 url='https://github.com/willmcgugan/rich'
@@ -11,14 +11,11 @@
 license=('MIT')
 depends=('python-colorama' 'python-pygments' 'python-typing_extensions' 
'python-commonmark')
 makedepends=('python-setuptools' 'python-dephell')
-source=("https://github.com/willmcgugan/rich/archive/v${pkgver}/rich-${pkgver}.tar.gz;
-
"https://github.com/willmcgugan/rich/commit/cbac633ab30f3b3e4e836ff87a3a88a28bffca48.patch;)
-b2sums=('03304eab96beb683833efcacf3b15548d23850210bb06275fab78b8e76e4351f0b2d5e00e87ea8c4c3d8281a050c63ad636e214ce38b11d3906641071163bd46'
-
'9a7e358673c9c051f040beb96b5a85ac4718f7bc9ff820c04ebee7c84b0646361096c439b4fc86e91d67af31017a25dd6d1103f5f7657e545b86b89b85a6b65c')
+source=("https://github.com/willmcgugan/rich/archive/v${pkgver}/rich-${pkgver}.tar.gz;)
+b2sums=('d1bc9b854b840125316d396bdff79476db8fe98e731cc2f2bc734236122c600e7133bbf4626c9fe1cbdf1aed6e4ac7b16a0af81fd24d8da302895c3fd0b8e3de')
 
 prepare() {
   cd rich-${pkgver}
-  patch -Np1 < ../cbac633ab30f3b3e4e836ff87a3a88a28bffca48.patch
   dephell deps convert --from pyproject.toml --to setup.py
 }
 


[arch-commits] Commit in redis/repos/community-x86_64 (14 files)

2020-10-27 Thread Frederik Schwan via arch-commits
Date: Tuesday, October 27, 2020 @ 13:53:02
  Author: freswa
Revision: 734413

archrelease: copy trunk to community-x86_64

Added:
  redis/repos/community-x86_64/PKGBUILD
(from rev 734412, redis/trunk/PKGBUILD)
  redis/repos/community-x86_64/redis-5.0-use-system-jemalloc.patch
(from rev 734412, redis/trunk/redis-5.0-use-system-jemalloc.patch)
  redis/repos/community-x86_64/redis.conf-sane-defaults.patch
(from rev 734412, redis/trunk/redis.conf-sane-defaults.patch)
  redis/repos/community-x86_64/redis.logrotate
(from rev 734412, redis/trunk/redis.logrotate)
  redis/repos/community-x86_64/redis.service
(from rev 734412, redis/trunk/redis.service)
  redis/repos/community-x86_64/redis.sysusers
(from rev 734412, redis/trunk/redis.sysusers)
  redis/repos/community-x86_64/redis.tmpfiles
(from rev 734412, redis/trunk/redis.tmpfiles)
Deleted:
  redis/repos/community-x86_64/PKGBUILD
  redis/repos/community-x86_64/redis-5.0-use-system-jemalloc.patch
  redis/repos/community-x86_64/redis.conf-sane-defaults.patch
  redis/repos/community-x86_64/redis.logrotate
  redis/repos/community-x86_64/redis.service
  redis/repos/community-x86_64/redis.sysusers
  redis/repos/community-x86_64/redis.tmpfiles

-+
 PKGBUILD|  124 +-
 redis-5.0-use-system-jemalloc.patch |   30 
 redis.conf-sane-defaults.patch  |   40 +-
 redis.logrotate |   10 +-
 redis.service   |   48 ++---
 redis.sysusers  |2 
 redis.tmpfiles  |2 
 7 files changed, 128 insertions(+), 128 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-27 13:52:59 UTC (rev 734412)
+++ PKGBUILD2020-10-27 13:53:02 UTC (rev 734413)
@@ -1,62 +0,0 @@
-# Maintainer: Andrew Crerar 
-# Maintainer: Frederik Schwan 
-# Contributor: Sergej Pupykin 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Jan-Erik Rediger 
-# Contributor: nofxx .com>
-
-pkgname=redis
-pkgver=6.0.8
-pkgrel=3
-pkgdesc='An in-memory database that persists on disk'
-arch=('x86_64')
-url='https://redis.io/'
-license=('BSD')
-depends=('jemalloc' 'grep' 'shadow' 'systemd-libs')
-# pkg-config fails to detect systemd libraries if systemd is not installed
-makedepends=('systemd' 'openssl')
-backup=('etc/redis.conf'
-'etc/logrotate.d/redis')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/antirez/redis/archive/${pkgver}.tar.gz;
-redis.service
-redis.sysusers
-redis.tmpfiles
-redis.logrotate
-redis.conf-sane-defaults.patch
-redis-5.0-use-system-jemalloc.patch)
-sha512sums=('792b2a21a123be82aa0b70f74f275ec12cdfe72bd34f0889fb9570efbf1f41ee0d9dc21400464321bdccb5fbe1dc5082ab08854f18e10a97135dd5fe92b5d798'
-
'78c996636fc3f4d404a01fbbc63978ee4c3bce9bc7f5728e8ca14b013cabc7df73ff882ec7f4a2e0b5494faf0d1da5a3c5e9570bd579597b0fea03a9d8d066cc'
-
'2227dfb41bf5112f91716f011862ba5fade220aea3b6a8134a5a05ee3af6d1cca05b08d793a486be97df98780bf43ac5dc4e5e9989ae0c5cd4e1eedb6cee5d71'
-
'68f7bc12e3b95cb199b71255c6aa5bfaa431fbabbc7d2308e54347c0d35e6d8091c4a79a5a6b56494ab3a294f9389e3ec63902931920862f60b1ffe77222eeeb'
-
'df11492df0458b224f75fff31475d39b85116cba6deb06d80d0fd8c467d221db51a2a8f5fc5d2e3e8239c0718e1cf5dc12e99cac9019cb99d3f11835ad00aa5d'
-
'e60d1b213c3689f011490b47ef48d80b1240046585cae7ffe50fd9221350a24ee9c18ecbdee8e7d98d65f4af1a16809d1046f1246590aadaae5bcc5fda58d61b'
-
'55b4085900c54fa7e7bf1c2bad7fba8cdbaf496a3f83b6d32fccb8aed5048cdde1690fea0485162dbb637e7fafb00a6b995908fa6db55e77854eb9f575b54d40')
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch -Np1 < ../redis.conf-sane-defaults.patch
-  patch -Np1 < ../redis-5.0-use-system-jemalloc.patch
-}
-
-build() {
-  make BUILD_TLS=yes \
-   USE_SYSTEMD=yes \
-   -C $pkgname-$pkgver
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make PREFIX="$pkgdir"/usr install
-
-  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/redis/LICENSE
-  install -Dm644 redis.conf "$pkgdir"/etc/redis.conf
-  install -Dm644 ../redis.service 
"$pkgdir"/usr/lib/systemd/system/redis.service
-
-  # files kept for compatibility with installations made before 2.8.13-2
-  install -Dm644 ../redis.logrotate "$pkgdir"/etc/logrotate.d/redis
-
-  ln -sf redis-server "$pkgdir"/usr/bin/redis-sentinel
-
-  install -Dm644 "$srcdir"/redis.sysusers 
"$pkgdir"/usr/lib/sysusers.d/redis.conf
-  install -Dm644 "$srcdir"/redis.tmpfiles 
"$pkgdir"/usr/lib/tmpfiles.d/redis.conf
-}

Copied: redis/repos/community-x86_64/PKGBUILD (from rev 734412, 
redis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-27 13:53:02 UTC (rev 734413)
@@ -0,0 +1,62 @@
+# Maintainer: Andrew Crerar 
+# 

[arch-commits] Commit in redis/trunk (PKGBUILD redis.conf-sane-defaults.patch)

2020-10-27 Thread Frederik Schwan via arch-commits
Date: Tuesday, October 27, 2020 @ 13:52:59
  Author: freswa
Revision: 734412

upgpkg: redis 6.0.9-1

Modified:
  redis/trunk/PKGBUILD
  redis/trunk/redis.conf-sane-defaults.patch

+
 PKGBUILD   |8 
 redis.conf-sane-defaults.patch |6 +++---
 2 files changed, 7 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-10-27 13:39:03 UTC (rev 734411)
+++ PKGBUILD2020-10-27 13:52:59 UTC (rev 734412)
@@ -6,8 +6,8 @@
 # Contributor: nofxx .com>
 
 pkgname=redis
-pkgver=6.0.8
-pkgrel=3
+pkgver=6.0.9
+pkgrel=1
 pkgdesc='An in-memory database that persists on disk'
 arch=('x86_64')
 url='https://redis.io/'
@@ -24,12 +24,12 @@
 redis.logrotate
 redis.conf-sane-defaults.patch
 redis-5.0-use-system-jemalloc.patch)
-sha512sums=('792b2a21a123be82aa0b70f74f275ec12cdfe72bd34f0889fb9570efbf1f41ee0d9dc21400464321bdccb5fbe1dc5082ab08854f18e10a97135dd5fe92b5d798'
+sha512sums=('fc1b960f117bb78adaa8a93ff85a5aa785d39e13438659bc4971e37e53e367370d31b0392837f5158aa7a974283020c0a186d5280f9ea326184b24348b7e1515'
 
'78c996636fc3f4d404a01fbbc63978ee4c3bce9bc7f5728e8ca14b013cabc7df73ff882ec7f4a2e0b5494faf0d1da5a3c5e9570bd579597b0fea03a9d8d066cc'
 
'2227dfb41bf5112f91716f011862ba5fade220aea3b6a8134a5a05ee3af6d1cca05b08d793a486be97df98780bf43ac5dc4e5e9989ae0c5cd4e1eedb6cee5d71'
 
'68f7bc12e3b95cb199b71255c6aa5bfaa431fbabbc7d2308e54347c0d35e6d8091c4a79a5a6b56494ab3a294f9389e3ec63902931920862f60b1ffe77222eeeb'
 
'df11492df0458b224f75fff31475d39b85116cba6deb06d80d0fd8c467d221db51a2a8f5fc5d2e3e8239c0718e1cf5dc12e99cac9019cb99d3f11835ad00aa5d'
-
'e60d1b213c3689f011490b47ef48d80b1240046585cae7ffe50fd9221350a24ee9c18ecbdee8e7d98d65f4af1a16809d1046f1246590aadaae5bcc5fda58d61b'
+
'c940920942abedd394777d380f7ecc1b3b3dc185908ac592a8db5bed744ef6f4401d2ea5f54890a9e27b12fe18fdff94ce86b46258cb37267f3e9d60c97cac69'
 
'55b4085900c54fa7e7bf1c2bad7fba8cdbaf496a3f83b6d32fccb8aed5048cdde1690fea0485162dbb637e7fafb00a6b995908fa6db55e77854eb9f575b54d40')
 
 prepare() {

Modified: redis.conf-sane-defaults.patch
===
--- redis.conf-sane-defaults.patch  2020-10-27 13:39:03 UTC (rev 734411)
+++ redis.conf-sane-defaults.patch  2020-10-27 13:52:59 UTC (rev 734412)
@@ -1,9 +1,9 @@
 a/redis.conf   2020-09-10 13:09:00.0 +0200
-+++ b/redis.conf   2020-10-11 16:29:34.423610442 +0200
+--- a/redis.conf   2020-10-27 14:50:41.137789753 +0100
 b/redis.conf   2020-10-27 14:50:46.161211877 +0100
 @@ -233,7 +233,7 @@
  #UPSTART_JOB or NOTIFY_SOCKET environment variables
  # Note: these supervision methods only signal "process is ready."
- #   They do not enable continuous liveness pings back to your supervisor.
+ #   They do not enable continuous pings back to your supervisor.
 -supervised no
 +supervised systemd
  


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

2020-10-22 Thread Frederik Schwan via arch-commits
Date: Thursday, October 22, 2020 @ 13:43:16
  Author: freswa
Revision: 729136

fix version reporting

Modified:
  python-rich/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-22 13:34:46 UTC (rev 729135)
+++ PKGBUILD2020-10-22 13:43:16 UTC (rev 729136)
@@ -4,7 +4,7 @@
 pkgname=python-rich
 _name=rich
 pkgver=9.0.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Render rich text, tables, progress bars, syntax highlighting, 
markdown and more to the terminal'
 arch=(any)
 url='https://github.com/willmcgugan/rich'
@@ -11,11 +11,14 @@
 license=('MIT')
 depends=('python-colorama' 'python-pygments' 'python-typing_extensions' 
'python-commonmark')
 makedepends=('python-setuptools' 'python-dephell')
-source=("https://github.com/willmcgugan/rich/archive/v${pkgver}/rich-${pkgver}.tar.gz;)
-b2sums=('03304eab96beb683833efcacf3b15548d23850210bb06275fab78b8e76e4351f0b2d5e00e87ea8c4c3d8281a050c63ad636e214ce38b11d3906641071163bd46')
+source=("https://github.com/willmcgugan/rich/archive/v${pkgver}/rich-${pkgver}.tar.gz;
+
"https://github.com/willmcgugan/rich/commit/cbac633ab30f3b3e4e836ff87a3a88a28bffca48.patch;)
+b2sums=('03304eab96beb683833efcacf3b15548d23850210bb06275fab78b8e76e4351f0b2d5e00e87ea8c4c3d8281a050c63ad636e214ce38b11d3906641071163bd46'
+
'9a7e358673c9c051f040beb96b5a85ac4718f7bc9ff820c04ebee7c84b0646361096c439b4fc86e91d67af31017a25dd6d1103f5f7657e545b86b89b85a6b65c')
 
 prepare() {
   cd rich-${pkgver}
+  patch -Np1 < ../cbac633ab30f3b3e4e836ff87a3a88a28bffca48.patch
   dephell deps convert --from pyproject.toml --to setup.py
 }
 


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

2020-10-22 Thread Frederik Schwan via arch-commits
Date: Thursday, October 22, 2020 @ 13:43:20
  Author: freswa
Revision: 729137

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-22 13:43:16 UTC (rev 729136)
+++ PKGBUILD2020-10-22 13:43:20 UTC (rev 729137)
@@ -1,31 +0,0 @@
-# Maintainer: Frederik Schwan 
-# Contributor: Hao Long 
-
-pkgname=python-rich
-_name=rich
-pkgver=9.0.1
-pkgrel=1
-pkgdesc='Render rich text, tables, progress bars, syntax highlighting, 
markdown and more to the terminal'
-arch=(any)
-url='https://github.com/willmcgugan/rich'
-license=('MIT')
-depends=('python-colorama' 'python-pygments' 'python-typing_extensions' 
'python-commonmark')
-makedepends=('python-setuptools' 'python-dephell')
-source=("https://github.com/willmcgugan/rich/archive/v${pkgver}/rich-${pkgver}.tar.gz;)
-b2sums=('03304eab96beb683833efcacf3b15548d23850210bb06275fab78b8e76e4351f0b2d5e00e87ea8c4c3d8281a050c63ad636e214ce38b11d3906641071163bd46')
-
-prepare() {
-  cd rich-${pkgver}
-  dephell deps convert --from pyproject.toml --to setup.py
-}
-
-build() {
-  cd rich-${pkgver}
-  python3 setup.py build
-}
-
-package() {
-  cd rich-${pkgver}
-  python3 setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: python-rich/repos/community-any/PKGBUILD (from rev 729136, 
python-rich/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-22 13:43:20 UTC (rev 729137)
@@ -0,0 +1,34 @@
+# Maintainer: Frederik Schwan 
+# Contributor: Hao Long 
+
+pkgname=python-rich
+_name=rich
+pkgver=9.0.1
+pkgrel=2
+pkgdesc='Render rich text, tables, progress bars, syntax highlighting, 
markdown and more to the terminal'
+arch=(any)
+url='https://github.com/willmcgugan/rich'
+license=('MIT')
+depends=('python-colorama' 'python-pygments' 'python-typing_extensions' 
'python-commonmark')
+makedepends=('python-setuptools' 'python-dephell')
+source=("https://github.com/willmcgugan/rich/archive/v${pkgver}/rich-${pkgver}.tar.gz;
+
"https://github.com/willmcgugan/rich/commit/cbac633ab30f3b3e4e836ff87a3a88a28bffca48.patch;)
+b2sums=('03304eab96beb683833efcacf3b15548d23850210bb06275fab78b8e76e4351f0b2d5e00e87ea8c4c3d8281a050c63ad636e214ce38b11d3906641071163bd46'
+
'9a7e358673c9c051f040beb96b5a85ac4718f7bc9ff820c04ebee7c84b0646361096c439b4fc86e91d67af31017a25dd6d1103f5f7657e545b86b89b85a6b65c')
+
+prepare() {
+  cd rich-${pkgver}
+  patch -Np1 < ../cbac633ab30f3b3e4e836ff87a3a88a28bffca48.patch
+  dephell deps convert --from pyproject.toml --to setup.py
+}
+
+build() {
+  cd rich-${pkgver}
+  python3 setup.py build
+}
+
+package() {
+  cd rich-${pkgver}
+  python3 setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}


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

2020-10-22 Thread Frederik Schwan via arch-commits
Date: Thursday, October 22, 2020 @ 11:24:29
  Author: freswa
Revision: 729045

upgpkg: sha3sum 1.2-1

Modified:
  sha3sum/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-22 11:24:26 UTC (rev 729044)
+++ PKGBUILD2020-10-22 11:24:29 UTC (rev 729045)
@@ -2,8 +2,8 @@
 # Contributor: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@kth.se>
 
 pkgname=sha3sum
-pkgver=1.1.5
-pkgrel=3
+pkgver=1.2
+pkgrel=1
 pkgdesc="Keccak-family checksum calculator, including SHA-3"
 arch=('x86_64')
 url='https://github.com/maandree/sha3sum'
@@ -10,7 +10,7 @@
 license=('custom:ISC')
 depends=('libkeccak>=1.2')
 
source=("https://github.com/maandree/sha3sum/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-b2sums=('e7820ee2a4c6f6cde4417e21dac7ae128a5041a8d76b70a99eaf02c86d2d115af52b2b65f1222c9be431a90c3d7044e5911c228ec80789f493749920b51427fe')
+b2sums=('1925af4152d31f30353df40e7eef12093bec1fb930be6695b37c0d36d6ad41f2fdf986a476b43489c2a75b7da7b0ee9ce8b58029da83dfcee14ca662522eb528')
 
 prepare() {
   cd ${pkgname}-${pkgver}


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

2020-10-22 Thread Frederik Schwan via arch-commits
Date: Thursday, October 22, 2020 @ 11:24:33
  Author: freswa
Revision: 729046

archrelease: copy trunk to community-x86_64

Added:
  sha3sum/repos/community-x86_64/PKGBUILD
(from rev 729045, sha3sum/trunk/PKGBUILD)
Deleted:
  sha3sum/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-22 11:24:29 UTC (rev 729045)
+++ PKGBUILD2020-10-22 11:24:33 UTC (rev 729046)
@@ -1,33 +0,0 @@
-# Maintainer: Frederik Schwan 
-# Contributor: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@kth.se>
-
-pkgname=sha3sum
-pkgver=1.1.5
-pkgrel=3
-pkgdesc="Keccak-family checksum calculator, including SHA-3"
-arch=('x86_64')
-url='https://github.com/maandree/sha3sum'
-license=('custom:ISC')
-depends=('libkeccak>=1.2')
-source=("https://github.com/maandree/sha3sum/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-b2sums=('e7820ee2a4c6f6cde4417e21dac7ae128a5041a8d76b70a99eaf02c86d2d115af52b2b65f1222c9be431a90c3d7044e5911c228ec80789f493749920b51427fe')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  sed -i 's#FLAGS\s\+=#FLAGS +=#g' config.mk
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  make PREFIX=/usr
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  make check
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make PREFIX=/usr DESTDIR="${pkgdir}" install
-}

Copied: sha3sum/repos/community-x86_64/PKGBUILD (from rev 729045, 
sha3sum/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-22 11:24:33 UTC (rev 729046)
@@ -0,0 +1,33 @@
+# Maintainer: Frederik Schwan 
+# Contributor: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@kth.se>
+
+pkgname=sha3sum
+pkgver=1.2
+pkgrel=1
+pkgdesc="Keccak-family checksum calculator, including SHA-3"
+arch=('x86_64')
+url='https://github.com/maandree/sha3sum'
+license=('custom:ISC')
+depends=('libkeccak>=1.2')
+source=("https://github.com/maandree/sha3sum/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+b2sums=('1925af4152d31f30353df40e7eef12093bec1fb930be6695b37c0d36d6ad41f2fdf986a476b43489c2a75b7da7b0ee9ce8b58029da83dfcee14ca662522eb528')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed -i 's#FLAGS\s\+=#FLAGS +=#g' config.mk
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  make PREFIX=/usr
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make PREFIX=/usr DESTDIR="${pkgdir}" install
+}


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

2020-10-22 Thread Frederik Schwan via arch-commits
Date: Thursday, October 22, 2020 @ 11:21:51
  Author: freswa
Revision: 729039

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-22 11:21:50 UTC (rev 729038)
+++ PKGBUILD2020-10-22 11:21:51 UTC (rev 729039)
@@ -1,31 +0,0 @@
-# Maintainer: Frederik Schwan 
-# Contributor: Hao Long 
-
-pkgname=python-rich
-_name=rich
-pkgver=8.0.0
-pkgrel=1
-pkgdesc='Render rich text, tables, progress bars, syntax highlighting, 
markdown and more to the terminal'
-arch=(any)
-url='https://github.com/willmcgugan/rich'
-license=('MIT')
-depends=('python-colorama' 'python-pygments' 'python-typing_extensions' 
'python-commonmark')
-makedepends=('python-setuptools' 'python-dephell')
-source=("https://github.com/willmcgugan/rich/archive/v${pkgver}/rich-${pkgver}.tar.gz;)
-b2sums=('a9241ed92dfd88634bc7196612df27a34cae9cd491fec0da4eb610765460675c9ba4f344740c9acfed8932578173c3a1579e143ea6736667f4286976be1102c3')
-
-prepare() {
-  cd rich-${pkgver}
-  dephell deps convert --from pyproject.toml --to setup.py
-}
-
-build() {
-  cd rich-${pkgver}
-  python3 setup.py build
-}
-
-package() {
-  cd rich-${pkgver}
-  python3 setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: python-rich/repos/community-any/PKGBUILD (from rev 729037, 
python-rich/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-22 11:21:51 UTC (rev 729039)
@@ -0,0 +1,31 @@
+# Maintainer: Frederik Schwan 
+# Contributor: Hao Long 
+
+pkgname=python-rich
+_name=rich
+pkgver=9.0.1
+pkgrel=1
+pkgdesc='Render rich text, tables, progress bars, syntax highlighting, 
markdown and more to the terminal'
+arch=(any)
+url='https://github.com/willmcgugan/rich'
+license=('MIT')
+depends=('python-colorama' 'python-pygments' 'python-typing_extensions' 
'python-commonmark')
+makedepends=('python-setuptools' 'python-dephell')
+source=("https://github.com/willmcgugan/rich/archive/v${pkgver}/rich-${pkgver}.tar.gz;)
+b2sums=('03304eab96beb683833efcacf3b15548d23850210bb06275fab78b8e76e4351f0b2d5e00e87ea8c4c3d8281a050c63ad636e214ce38b11d3906641071163bd46')
+
+prepare() {
+  cd rich-${pkgver}
+  dephell deps convert --from pyproject.toml --to setup.py
+}
+
+build() {
+  cd rich-${pkgver}
+  python3 setup.py build
+}
+
+package() {
+  cd rich-${pkgver}
+  python3 setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}


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

2020-10-22 Thread Frederik Schwan via arch-commits
Date: Thursday, October 22, 2020 @ 11:21:45
  Author: freswa
Revision: 729037

upgpkg: python-rich 9.0.1-1

Modified:
  python-rich/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-22 11:21:41 UTC (rev 729036)
+++ PKGBUILD2020-10-22 11:21:45 UTC (rev 729037)
@@ -3,7 +3,7 @@
 
 pkgname=python-rich
 _name=rich
-pkgver=8.0.0
+pkgver=9.0.1
 pkgrel=1
 pkgdesc='Render rich text, tables, progress bars, syntax highlighting, 
markdown and more to the terminal'
 arch=(any)
@@ -12,7 +12,7 @@
 depends=('python-colorama' 'python-pygments' 'python-typing_extensions' 
'python-commonmark')
 makedepends=('python-setuptools' 'python-dephell')
 
source=("https://github.com/willmcgugan/rich/archive/v${pkgver}/rich-${pkgver}.tar.gz;)
-b2sums=('a9241ed92dfd88634bc7196612df27a34cae9cd491fec0da4eb610765460675c9ba4f344740c9acfed8932578173c3a1579e143ea6736667f4286976be1102c3')
+b2sums=('03304eab96beb683833efcacf3b15548d23850210bb06275fab78b8e76e4351f0b2d5e00e87ea8c4c3d8281a050c63ad636e214ce38b11d3906641071163bd46')
 
 prepare() {
   cd rich-${pkgver}


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

2020-10-19 Thread Frederik Schwan via arch-commits
Date: Monday, October 19, 2020 @ 12:33:01
  Author: freswa
Revision: 727055

downgrade to the last release

Modified:
  libvirt-python/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-19 12:32:49 UTC (rev 727054)
+++ PKGBUILD2020-10-19 12:33:01 UTC (rev 727055)
@@ -3,7 +3,8 @@
 # Contributor: Jonathan Wiersma 
 
 pkgname=('libvirt-python')
-pkgver=6.8.0
+epoch=1
+pkgver=6.4.0
 pkgrel=1
 pkgdesc="libvirt python binding"
 arch=('x86_64')
@@ -12,11 +13,9 @@
 makedepends=('python' 'libvirt')
 depends=('python' 'libvirt')
 options=('emptydirs')
-source=("https://libvirt.org/sources/python/$pkgname-$pkgver.tar.gz"{,'.asc'})
-b2sums=('667c2713bf9c0936f444c5b621f5af4e5273deda31496bc01c8834286a0ec0eb1c056006549cc5d129ef597264f8582acee62db3a2fd375daa4ebbceacb8fcc1'
-'SKIP')
-validpgpkeys=('C74415BA7C9C7F78F02E1DC34606B8A5DE95BC1F'  # Daniel Veillard 

-  '453B65310595562855471199CA68BE8010084C9C') # Jiří Denemark 
https://libvirt.org/sources/python/libvirt-python-${pkgver}.tar.gz;)
+sha512sums=('35757b1f8035047672eba547ce9d5476fbdc0b2859dfc3598698de4bd51139a7cb24e6e2f72a741c752a68fe86c0a4f4527a690d518dd9aed9b993258a734f2c')
+validpgpkeys=('C74415BA7C9C7F78F02E1DC34606B8A5DE95BC1F')
 
 package() {
   cd "${srcdir}/${pkgbase}-${pkgver}"
@@ -23,4 +22,3 @@
   python setup.py clean
   python setup.py install --root="${pkgdir}" --optimize=1
 }
-


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

2020-10-19 Thread Frederik Schwan via arch-commits
Date: Monday, October 19, 2020 @ 12:33:05
  Author: freswa
Revision: 727056

archrelease: copy trunk to community-x86_64

Added:
  libvirt-python/repos/community-x86_64/PKGBUILD
(from rev 727055, libvirt-python/trunk/PKGBUILD)
  libvirt-python/repos/community-x86_64/libvirt-python.install
(from rev 727055, libvirt-python/trunk/libvirt-python.install)
Deleted:
  libvirt-python/repos/community-x86_64/PKGBUILD
  libvirt-python/repos/community-x86_64/libvirt-python.install

+
 PKGBUILD   |   50 ++-
 libvirt-python.install |6 ++---
 2 files changed, 27 insertions(+), 29 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-19 12:33:01 UTC (rev 727055)
+++ PKGBUILD2020-10-19 12:33:05 UTC (rev 727056)
@@ -1,26 +0,0 @@
-# Maintainer: Christian Rebischke 
-# Contributor: Sergej Pupykin 
-# Contributor: Jonathan Wiersma 
-
-pkgname=('libvirt-python')
-pkgver=6.8.0
-pkgrel=1
-pkgdesc="libvirt python binding"
-arch=('x86_64')
-url="https://pypi.python.org/pypi/libvirt-python;
-license=('LGPL')
-makedepends=('python' 'libvirt')
-depends=('python' 'libvirt')
-options=('emptydirs')
-source=("https://libvirt.org/sources/python/$pkgname-$pkgver.tar.gz"{,'.asc'})
-b2sums=('667c2713bf9c0936f444c5b621f5af4e5273deda31496bc01c8834286a0ec0eb1c056006549cc5d129ef597264f8582acee62db3a2fd375daa4ebbceacb8fcc1'
-'SKIP')
-validpgpkeys=('C74415BA7C9C7F78F02E1DC34606B8A5DE95BC1F'  # Daniel Veillard 

-  '453B65310595562855471199CA68BE8010084C9C') # Jiří Denemark 

+# Contributor: Sergej Pupykin 
+# Contributor: Jonathan Wiersma 
+
+pkgname=('libvirt-python')
+epoch=1
+pkgver=6.4.0
+pkgrel=1
+pkgdesc="libvirt python binding"
+arch=('x86_64')
+url="https://pypi.python.org/pypi/libvirt-python;
+license=('LGPL')
+makedepends=('python' 'libvirt')
+depends=('python' 'libvirt')
+options=('emptydirs')
+source=("https://libvirt.org/sources/python/libvirt-python-${pkgver}.tar.gz;)
+sha512sums=('35757b1f8035047672eba547ce9d5476fbdc0b2859dfc3598698de4bd51139a7cb24e6e2f72a741c752a68fe86c0a4f4527a690d518dd9aed9b993258a734f2c')
+validpgpkeys=('C74415BA7C9C7F78F02E1DC34606B8A5DE95BC1F')
+
+package() {
+  cd "${srcdir}/${pkgbase}-${pkgver}"
+  python setup.py clean
+  python setup.py install --root="${pkgdir}" --optimize=1
+}

Deleted: libvirt-python.install
===
--- libvirt-python.install  2020-10-19 12:33:01 UTC (rev 727055)
+++ libvirt-python.install  2020-10-19 12:33:05 UTC (rev 727056)
@@ -1,3 +0,0 @@
-post_remove() {
-   rm -f /usr/lib/python[0-9].[0-9]/site-packages/libvirt.pyc
-}

Copied: libvirt-python/repos/community-x86_64/libvirt-python.install (from rev 
727055, libvirt-python/trunk/libvirt-python.install)
===
--- libvirt-python.install  (rev 0)
+++ libvirt-python.install  2020-10-19 12:33:05 UTC (rev 727056)
@@ -0,0 +1,3 @@
+post_remove() {
+   rm -f /usr/lib/python[0-9].[0-9]/site-packages/libvirt.pyc
+}


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

2020-10-17 Thread Frederik Schwan via arch-commits
Date: Sunday, October 18, 2020 @ 04:37:08
  Author: freswa
Revision: 725860

archrelease: copy trunk to community-x86_64

Added:
  libvirt/repos/community-x86_64/CVE-2020-14339.patch
(from rev 725859, libvirt/trunk/CVE-2020-14339.patch)
  libvirt/repos/community-x86_64/Changelog
(from rev 725859, libvirt/trunk/Changelog)
  libvirt/repos/community-x86_64/PKGBUILD
(from rev 725859, libvirt/trunk/PKGBUILD)
  libvirt/repos/community-x86_64/libvirt.install
(from rev 725859, libvirt/trunk/libvirt.install)
Deleted:
  libvirt/repos/community-x86_64/CVE-2020-14339.patch
  libvirt/repos/community-x86_64/Changelog
  libvirt/repos/community-x86_64/PKGBUILD
  libvirt/repos/community-x86_64/libvirt.install

--+
 CVE-2020-14339.patch |  956 -
 Changelog|2 
 PKGBUILD |  380 +--
 libvirt.install  |   14 
 4 files changed, 676 insertions(+), 676 deletions(-)

Deleted: CVE-2020-14339.patch
===
--- CVE-2020-14339.patch2020-10-18 04:37:02 UTC (rev 725859)
+++ CVE-2020-14339.patch2020-10-18 04:37:08 UTC (rev 725860)
@@ -1,478 +0,0 @@
-diff --git a/po/POTFILES.in b/po/POTFILES.in
-index af52054aa4..eb1ffd1dbd 100644
 a/po/POTFILES.in
-+++ b/po/POTFILES.in
-@@ -240,6 +240,7 @@
- @SRCDIR@/src/util/vircrypto.c
- @SRCDIR@/src/util/virdaemon.c
- @SRCDIR@/src/util/virdbus.c
-+@SRCDIR@/src/util/virdevmapper.c
- @SRCDIR@/src/util/virdnsmasq.c
- @SRCDIR@/src/util/virerror.c
- @SRCDIR@/src/util/virerror.h
-diff --git a/src/qemu/qemu_cgroup.c b/src/qemu/qemu_cgroup.c
-index 914bf640ca..e88da02341 100644
 a/src/qemu/qemu_cgroup.c
-+++ b/src/qemu/qemu_cgroup.c
-@@ -87,7 +87,7 @@ qemuSetupImagePathCgroup(virDomainObjPtr vm,
- }
- 
- if (virDevMapperGetTargets(path, ) < 0 &&
--errno != ENOSYS && errno != EBADF) {
-+errno != ENOSYS) {
- virReportSystemError(errno,
-  _("Unable to get devmapper targets for %s"),
-  path);
-diff --git a/src/qemu/qemu_domain.c b/src/qemu/qemu_domain.c
-index c5b8d91f9a..088d711ae3 100644
 a/src/qemu/qemu_domain.c
-+++ b/src/qemu/qemu_domain.c
-@@ -10338,7 +10338,7 @@ qemuDomainSetupDisk(virQEMUDriverConfigPtr cfg 
G_GNUC_UNUSED,
- return -1;
- 
- if (virDevMapperGetTargets(next->path, ) < 0 &&
--errno != ENOSYS && errno != EBADF) {
-+errno != ENOSYS) {
- virReportSystemError(errno,
-  _("Unable to get devmapper targets for 
%s"),
-  next->path);
-@@ -11402,7 +11402,7 @@ qemuDomainNamespaceSetupDisk(virDomainObjPtr vm,
- tmpPath = g_strdup(next->path);
- 
- if (virDevMapperGetTargets(next->path, ) < 0 &&
--errno != ENOSYS && errno != EBADF) {
-+errno != ENOSYS) {
- virReportSystemError(errno,
-  _("Unable to get devmapper targets for 
%s"),
-  next->path);
-diff --git a/src/util/virdevmapper.c b/src/util/virdevmapper.c
-index 40a82285f9..a471504176 100644
 a/src/util/virdevmapper.c
-+++ b/src/util/virdevmapper.c
-@@ -20,38 +20,67 @@
- 
- #include 
- 
-+#include "virdevmapper.h"
-+#include "internal.h"
-+
- #ifdef __linux__
- # include 
--#endif
-+# include 
-+# include 
-+# include 
-+# include 
-+# include 
- 
--#ifdef WITH_DEVMAPPER
--# include 
--#endif
-+# include "virthread.h"
-+# include "viralloc.h"
-+# include "virstring.h"
-+# include "virfile.h"
-+
-+# define VIR_FROM_THIS VIR_FROM_STORAGE
-+
-+# define PROC_DEVICES "/proc/devices"
-+# define DM_NAME "device-mapper"
-+# define DEV_DM_DIR "/dev/" DM_DIR
-+# define CONTROL_PATH DEV_DM_DIR "/" DM_CONTROL_NODE
-+# define BUF_SIZE (16 * 1024)
-+
-+G_STATIC_ASSERT(BUF_SIZE > sizeof(struct dm_ioctl));
-+
-+static unsigned int virDMMajor;
- 
--#include "virdevmapper.h"
--#include "internal.h"
--#include "virthread.h"
--#include "viralloc.h"
--#include "virstring.h"
--
--#ifdef WITH_DEVMAPPER
--static void
--virDevMapperDummyLogger(int level G_GNUC_UNUSED,
--const char *file G_GNUC_UNUSED,
--int line G_GNUC_UNUSED,
--int dm_errno G_GNUC_UNUSED,
--const char *fmt G_GNUC_UNUSED,
--...)
--{
--return;
--}
- 
- static int
- virDevMapperOnceInit(void)
- {
--/* Ideally, we would not need this. But libdevmapper prints
-- * error messages to stderr by default. Sad but true. */
--dm_log_with_errno_init(virDevMapperDummyLogger);
-+g_autofree char *buf = NULL;
-+VIR_AUTOSTRINGLIST lines = NULL;
-+size_t i;
-+
-+if (virFileReadAll(PROC_DEVICES, BUF_SIZE, ) < 0)
-+return -1;
-+
-+lines = virStringSplit(buf, "\n", 

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

2020-10-17 Thread Frederik Schwan via arch-commits
Date: Sunday, October 18, 2020 @ 04:37:02
  Author: freswa
Revision: 725859

fix typo in epoch variable

Modified:
  libvirt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-18 04:34:36 UTC (rev 725858)
+++ PKGBUILD2020-10-18 04:37:02 UTC (rev 725859)
@@ -4,7 +4,7 @@
 # Contributor: Jonathan Wiersma 
 
 pkgname=(libvirt libvirt-storage-gluster libvirt-storage-iscsi-direct 
libvirt-storage-rbd)
-epocj=1
+epoch=1
 pkgver=6.5.0
 pkgrel=2
 pkgdesc="API for controlling virtualization engines 
(openvz,kvm,qemu,virtualbox,xen,etc)"


[arch-commits] Commit in libvirt/repos/community-x86_64 (7 files)

2020-10-17 Thread Frederik Schwan via arch-commits
Date: Sunday, October 18, 2020 @ 04:34:36
  Author: freswa
Revision: 725858

archrelease: copy trunk to community-x86_64

Added:
  libvirt/repos/community-x86_64/CVE-2020-14339.patch
(from rev 725857, libvirt/trunk/CVE-2020-14339.patch)
  libvirt/repos/community-x86_64/Changelog
(from rev 725857, libvirt/trunk/Changelog)
  libvirt/repos/community-x86_64/PKGBUILD
(from rev 725857, libvirt/trunk/PKGBUILD)
  libvirt/repos/community-x86_64/libvirt.install
(from rev 725857, libvirt/trunk/libvirt.install)
Deleted:
  libvirt/repos/community-x86_64/Changelog
  libvirt/repos/community-x86_64/PKGBUILD
  libvirt/repos/community-x86_64/libvirt.install

--+
 CVE-2020-14339.patch |  478 +
 Changelog|2 
 PKGBUILD |  408 +++--
 libvirt.install  |   14 -
 4 files changed, 676 insertions(+), 226 deletions(-)

Copied: libvirt/repos/community-x86_64/CVE-2020-14339.patch (from rev 725857, 
libvirt/trunk/CVE-2020-14339.patch)
===
--- CVE-2020-14339.patch(rev 0)
+++ CVE-2020-14339.patch2020-10-18 04:34:36 UTC (rev 725858)
@@ -0,0 +1,478 @@
+diff --git a/po/POTFILES.in b/po/POTFILES.in
+index af52054aa4..eb1ffd1dbd 100644
+--- a/po/POTFILES.in
 b/po/POTFILES.in
+@@ -240,6 +240,7 @@
+ @SRCDIR@/src/util/vircrypto.c
+ @SRCDIR@/src/util/virdaemon.c
+ @SRCDIR@/src/util/virdbus.c
++@SRCDIR@/src/util/virdevmapper.c
+ @SRCDIR@/src/util/virdnsmasq.c
+ @SRCDIR@/src/util/virerror.c
+ @SRCDIR@/src/util/virerror.h
+diff --git a/src/qemu/qemu_cgroup.c b/src/qemu/qemu_cgroup.c
+index 914bf640ca..e88da02341 100644
+--- a/src/qemu/qemu_cgroup.c
 b/src/qemu/qemu_cgroup.c
+@@ -87,7 +87,7 @@ qemuSetupImagePathCgroup(virDomainObjPtr vm,
+ }
+ 
+ if (virDevMapperGetTargets(path, ) < 0 &&
+-errno != ENOSYS && errno != EBADF) {
++errno != ENOSYS) {
+ virReportSystemError(errno,
+  _("Unable to get devmapper targets for %s"),
+  path);
+diff --git a/src/qemu/qemu_domain.c b/src/qemu/qemu_domain.c
+index c5b8d91f9a..088d711ae3 100644
+--- a/src/qemu/qemu_domain.c
 b/src/qemu/qemu_domain.c
+@@ -10338,7 +10338,7 @@ qemuDomainSetupDisk(virQEMUDriverConfigPtr cfg 
G_GNUC_UNUSED,
+ return -1;
+ 
+ if (virDevMapperGetTargets(next->path, ) < 0 &&
+-errno != ENOSYS && errno != EBADF) {
++errno != ENOSYS) {
+ virReportSystemError(errno,
+  _("Unable to get devmapper targets for 
%s"),
+  next->path);
+@@ -11402,7 +11402,7 @@ qemuDomainNamespaceSetupDisk(virDomainObjPtr vm,
+ tmpPath = g_strdup(next->path);
+ 
+ if (virDevMapperGetTargets(next->path, ) < 0 &&
+-errno != ENOSYS && errno != EBADF) {
++errno != ENOSYS) {
+ virReportSystemError(errno,
+  _("Unable to get devmapper targets for 
%s"),
+  next->path);
+diff --git a/src/util/virdevmapper.c b/src/util/virdevmapper.c
+index 40a82285f9..a471504176 100644
+--- a/src/util/virdevmapper.c
 b/src/util/virdevmapper.c
+@@ -20,38 +20,67 @@
+ 
+ #include 
+ 
++#include "virdevmapper.h"
++#include "internal.h"
++
+ #ifdef __linux__
+ # include 
+-#endif
++# include 
++# include 
++# include 
++# include 
++# include 
+ 
+-#ifdef WITH_DEVMAPPER
+-# include 
+-#endif
++# include "virthread.h"
++# include "viralloc.h"
++# include "virstring.h"
++# include "virfile.h"
++
++# define VIR_FROM_THIS VIR_FROM_STORAGE
++
++# define PROC_DEVICES "/proc/devices"
++# define DM_NAME "device-mapper"
++# define DEV_DM_DIR "/dev/" DM_DIR
++# define CONTROL_PATH DEV_DM_DIR "/" DM_CONTROL_NODE
++# define BUF_SIZE (16 * 1024)
++
++G_STATIC_ASSERT(BUF_SIZE > sizeof(struct dm_ioctl));
++
++static unsigned int virDMMajor;
+ 
+-#include "virdevmapper.h"
+-#include "internal.h"
+-#include "virthread.h"
+-#include "viralloc.h"
+-#include "virstring.h"
+-
+-#ifdef WITH_DEVMAPPER
+-static void
+-virDevMapperDummyLogger(int level G_GNUC_UNUSED,
+-const char *file G_GNUC_UNUSED,
+-int line G_GNUC_UNUSED,
+-int dm_errno G_GNUC_UNUSED,
+-const char *fmt G_GNUC_UNUSED,
+-...)
+-{
+-return;
+-}
+ 
+ static int
+ virDevMapperOnceInit(void)
+ {
+-/* Ideally, we would not need this. But libdevmapper prints
+- * error messages to stderr by default. Sad but true. */
+-dm_log_with_errno_init(virDevMapperDummyLogger);
++g_autofree char *buf = NULL;
++VIR_AUTOSTRINGLIST lines = NULL;
++size_t i;
++
++if (virFileReadAll(PROC_DEVICES, BUF_SIZE, ) < 0)
++return 

[arch-commits] Commit in libvirt/trunk (CVE-2020-14339.patch PKGBUILD)

2020-10-17 Thread Frederik Schwan via arch-commits
Date: Sunday, October 18, 2020 @ 04:34:29
  Author: freswa
Revision: 725857

rollback to 6.5.0-2

Added:
  libvirt/trunk/CVE-2020-14339.patch
(from rev 706920, libvirt/trunk/CVE-2020-14339.patch)
Modified:
  libvirt/trunk/PKGBUILD

--+
 CVE-2020-14339.patch |  478 +
 PKGBUILD |  110 ---
 2 files changed, 519 insertions(+), 69 deletions(-)

Copied: libvirt/trunk/CVE-2020-14339.patch (from rev 706920, 
libvirt/trunk/CVE-2020-14339.patch)
===
--- CVE-2020-14339.patch(rev 0)
+++ CVE-2020-14339.patch2020-10-18 04:34:29 UTC (rev 725857)
@@ -0,0 +1,478 @@
+diff --git a/po/POTFILES.in b/po/POTFILES.in
+index af52054aa4..eb1ffd1dbd 100644
+--- a/po/POTFILES.in
 b/po/POTFILES.in
+@@ -240,6 +240,7 @@
+ @SRCDIR@/src/util/vircrypto.c
+ @SRCDIR@/src/util/virdaemon.c
+ @SRCDIR@/src/util/virdbus.c
++@SRCDIR@/src/util/virdevmapper.c
+ @SRCDIR@/src/util/virdnsmasq.c
+ @SRCDIR@/src/util/virerror.c
+ @SRCDIR@/src/util/virerror.h
+diff --git a/src/qemu/qemu_cgroup.c b/src/qemu/qemu_cgroup.c
+index 914bf640ca..e88da02341 100644
+--- a/src/qemu/qemu_cgroup.c
 b/src/qemu/qemu_cgroup.c
+@@ -87,7 +87,7 @@ qemuSetupImagePathCgroup(virDomainObjPtr vm,
+ }
+ 
+ if (virDevMapperGetTargets(path, ) < 0 &&
+-errno != ENOSYS && errno != EBADF) {
++errno != ENOSYS) {
+ virReportSystemError(errno,
+  _("Unable to get devmapper targets for %s"),
+  path);
+diff --git a/src/qemu/qemu_domain.c b/src/qemu/qemu_domain.c
+index c5b8d91f9a..088d711ae3 100644
+--- a/src/qemu/qemu_domain.c
 b/src/qemu/qemu_domain.c
+@@ -10338,7 +10338,7 @@ qemuDomainSetupDisk(virQEMUDriverConfigPtr cfg 
G_GNUC_UNUSED,
+ return -1;
+ 
+ if (virDevMapperGetTargets(next->path, ) < 0 &&
+-errno != ENOSYS && errno != EBADF) {
++errno != ENOSYS) {
+ virReportSystemError(errno,
+  _("Unable to get devmapper targets for 
%s"),
+  next->path);
+@@ -11402,7 +11402,7 @@ qemuDomainNamespaceSetupDisk(virDomainObjPtr vm,
+ tmpPath = g_strdup(next->path);
+ 
+ if (virDevMapperGetTargets(next->path, ) < 0 &&
+-errno != ENOSYS && errno != EBADF) {
++errno != ENOSYS) {
+ virReportSystemError(errno,
+  _("Unable to get devmapper targets for 
%s"),
+  next->path);
+diff --git a/src/util/virdevmapper.c b/src/util/virdevmapper.c
+index 40a82285f9..a471504176 100644
+--- a/src/util/virdevmapper.c
 b/src/util/virdevmapper.c
+@@ -20,38 +20,67 @@
+ 
+ #include 
+ 
++#include "virdevmapper.h"
++#include "internal.h"
++
+ #ifdef __linux__
+ # include 
+-#endif
++# include 
++# include 
++# include 
++# include 
++# include 
+ 
+-#ifdef WITH_DEVMAPPER
+-# include 
+-#endif
++# include "virthread.h"
++# include "viralloc.h"
++# include "virstring.h"
++# include "virfile.h"
++
++# define VIR_FROM_THIS VIR_FROM_STORAGE
++
++# define PROC_DEVICES "/proc/devices"
++# define DM_NAME "device-mapper"
++# define DEV_DM_DIR "/dev/" DM_DIR
++# define CONTROL_PATH DEV_DM_DIR "/" DM_CONTROL_NODE
++# define BUF_SIZE (16 * 1024)
++
++G_STATIC_ASSERT(BUF_SIZE > sizeof(struct dm_ioctl));
++
++static unsigned int virDMMajor;
+ 
+-#include "virdevmapper.h"
+-#include "internal.h"
+-#include "virthread.h"
+-#include "viralloc.h"
+-#include "virstring.h"
+-
+-#ifdef WITH_DEVMAPPER
+-static void
+-virDevMapperDummyLogger(int level G_GNUC_UNUSED,
+-const char *file G_GNUC_UNUSED,
+-int line G_GNUC_UNUSED,
+-int dm_errno G_GNUC_UNUSED,
+-const char *fmt G_GNUC_UNUSED,
+-...)
+-{
+-return;
+-}
+ 
+ static int
+ virDevMapperOnceInit(void)
+ {
+-/* Ideally, we would not need this. But libdevmapper prints
+- * error messages to stderr by default. Sad but true. */
+-dm_log_with_errno_init(virDevMapperDummyLogger);
++g_autofree char *buf = NULL;
++VIR_AUTOSTRINGLIST lines = NULL;
++size_t i;
++
++if (virFileReadAll(PROC_DEVICES, BUF_SIZE, ) < 0)
++return -1;
++
++lines = virStringSplit(buf, "\n", 0);
++if (!lines)
++return -1;
++
++for (i = 0; lines[i]; i++) {
++g_autofree char *dev = NULL;
++unsigned int maj;
++
++if (sscanf(lines[i], "%u %ms\n", , ) == 2 &&
++STREQ(dev, DM_NAME)) {
++virDMMajor = maj;
++break;
++}
++}
++
++if (!lines[i]) {
++virReportError(VIR_ERR_INTERNAL_ERROR,
++   _("Unable to find major for %s"),
++   DM_NAME);
++ 

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

2020-10-17 Thread Frederik Schwan via arch-commits
Date: Sunday, October 18, 2020 @ 00:34:25
  Author: freswa
Revision: 725845

upgpkg: wimlib 1.13.2-1

Modified:
  wimlib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-18 00:34:10 UTC (rev 725844)
+++ PKGBUILD2020-10-18 00:34:25 UTC (rev 725845)
@@ -2,8 +2,8 @@
 # Contributor: Eric Biggers 
 
 pkgname=wimlib
-pkgver=1.13.1
-pkgrel=2
+pkgver=1.13.2
+pkgrel=1
 pkgdesc='A library and program to extract, create, and modify WIM files'
 arch=('x86_64')
 url='https://wimlib.net'
@@ -14,8 +14,9 @@
 'mtools: for making disk image of Windows PE' 
 'syslinux: for making disk image of Windows PE'
 'cabextract: for extracting Windows PE from the WAIK')
+provides=('libwim.so')
 source=("https://wimlib.net/downloads/$pkgname-$pkgver.tar.gz;)
-sha256sums=('47f4bc645c1b6ee15068d406a90bb38aec816354e140291ccb01e536f2cdaf5f')
+sha256sums=('7295be7ef00d265aef4090c9d26af82097db651c5f8399db9d44c60f47f5a945')
 
 build() {
 cd "$pkgname-$pkgver"


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

2020-10-17 Thread Frederik Schwan via arch-commits
Date: Sunday, October 18, 2020 @ 00:34:29
  Author: freswa
Revision: 725846

archrelease: copy trunk to community-x86_64

Added:
  wimlib/repos/community-x86_64/PKGBUILD
(from rev 725845, wimlib/trunk/PKGBUILD)
Deleted:
  wimlib/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-18 00:34:25 UTC (rev 725845)
+++ PKGBUILD2020-10-18 00:34:29 UTC (rev 725846)
@@ -1,36 +0,0 @@
-# Maintainer: Alad Wenter 
-# Contributor: Eric Biggers 
-
-pkgname=wimlib
-pkgver=1.13.1
-pkgrel=2
-pkgdesc='A library and program to extract, create, and modify WIM files'
-arch=('x86_64')
-url='https://wimlib.net'
-license=('custom')
-depends=('openssl' 'fuse' 'libxml2' 'ntfs-3g')
-checkdepends=('attr')
-optdepends=('cdrkit: for making ISO image of Windows PE'
-'mtools: for making disk image of Windows PE' 
-'syslinux: for making disk image of Windows PE'
-'cabextract: for extracting Windows PE from the WAIK')
-source=("https://wimlib.net/downloads/$pkgname-$pkgver.tar.gz;)
-sha256sums=('47f4bc645c1b6ee15068d406a90bb38aec816354e140291ccb01e536f2cdaf5f')
-
-build() {
-cd "$pkgname-$pkgver"
-./configure --with-libcrypto --with-fuse --with-ntfs-3g --prefix=/usr
-make
-}
-
-check() {
-cd "$pkgname-$pkgver"
-make check
-}
-
-package() {
-cd "$pkgname-$pkgver"
-make DESTDIR="$pkgdir" install
-install -Dm644 NEWS README -t "$pkgdir/usr/share/doc/$pkgname"
-install -Dm644 COPYING* -t "$pkgdir/usr/share/licenses/$pkgname"
-}

Copied: wimlib/repos/community-x86_64/PKGBUILD (from rev 725845, 
wimlib/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-18 00:34:29 UTC (rev 725846)
@@ -0,0 +1,37 @@
+# Maintainer: Alad Wenter 
+# Contributor: Eric Biggers 
+
+pkgname=wimlib
+pkgver=1.13.2
+pkgrel=1
+pkgdesc='A library and program to extract, create, and modify WIM files'
+arch=('x86_64')
+url='https://wimlib.net'
+license=('custom')
+depends=('openssl' 'fuse' 'libxml2' 'ntfs-3g')
+checkdepends=('attr')
+optdepends=('cdrkit: for making ISO image of Windows PE'
+'mtools: for making disk image of Windows PE' 
+'syslinux: for making disk image of Windows PE'
+'cabextract: for extracting Windows PE from the WAIK')
+provides=('libwim.so')
+source=("https://wimlib.net/downloads/$pkgname-$pkgver.tar.gz;)
+sha256sums=('7295be7ef00d265aef4090c9d26af82097db651c5f8399db9d44c60f47f5a945')
+
+build() {
+cd "$pkgname-$pkgver"
+./configure --with-libcrypto --with-fuse --with-ntfs-3g --prefix=/usr
+make
+}
+
+check() {
+cd "$pkgname-$pkgver"
+make check
+}
+
+package() {
+cd "$pkgname-$pkgver"
+make DESTDIR="$pkgdir" install
+install -Dm644 NEWS README -t "$pkgdir/usr/share/doc/$pkgname"
+install -Dm644 COPYING* -t "$pkgdir/usr/share/licenses/$pkgname"
+}


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

2020-10-17 Thread Frederik Schwan via arch-commits
Date: Sunday, October 18, 2020 @ 00:27:29
  Author: freswa
Revision: 725835

upgpkg: innoextract 1.9-1

Modified:
  innoextract/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-18 00:25:47 UTC (rev 725834)
+++ PKGBUILD2020-10-18 00:27:29 UTC (rev 725835)
@@ -3,8 +3,8 @@
 # Contributor: Sam S. 
 # Contributor: Daniel Scharrer 
 pkgname=innoextract
-pkgver=1.8
-pkgrel=3
+pkgver=1.9
+pkgrel=1
 pkgdesc="A tool to extract installers created by Inno Setup"
 url='https://constexpr.org/innoextract/'
 arch=('x86_64')
@@ -13,7 +13,7 @@
 makedepends=('boost' 'cmake')
 source=("https://constexpr.org/innoextract/files/$pkgname-$pkgver.tar.gz;
 "https://constexpr.org/innoextract/files/$pkgname-$pkgver.tar.gz.sig;)
-sha256sums=('5e78f6295119eeda08a54dcac75306a1a4a40d0cb812ff3cd405e9862c285269'
+sha256sums=('6344a69fc1ed847d4ed3e272e0da5998948c6b828cb7af39c6321aba6cf88126'
 'SKIP')
 validpgpkeys=("ADE9653703D4ADE0E997758128555A66D7E1DEC9") # Daniel Scharrer 

 


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

2020-10-17 Thread Frederik Schwan via arch-commits
Date: Sunday, October 18, 2020 @ 00:27:36
  Author: freswa
Revision: 725836

archrelease: copy trunk to community-x86_64

Added:
  innoextract/repos/community-x86_64/PKGBUILD
(from rev 725835, innoextract/trunk/PKGBUILD)
Deleted:
  innoextract/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-18 00:27:29 UTC (rev 725835)
+++ PKGBUILD2020-10-18 00:27:36 UTC (rev 725836)
@@ -1,35 +0,0 @@
-# Maintainer: Alad Wenter 
-# Contributor: carstene1ns 
-# Contributor: Sam S. 
-# Contributor: Daniel Scharrer 
-pkgname=innoextract
-pkgver=1.8
-pkgrel=3
-pkgdesc="A tool to extract installers created by Inno Setup"
-url='https://constexpr.org/innoextract/'
-arch=('x86_64')
-license=('ZLIB')
-depends=('boost-libs' 'xz')
-makedepends=('boost' 'cmake')
-source=("https://constexpr.org/innoextract/files/$pkgname-$pkgver.tar.gz;
-"https://constexpr.org/innoextract/files/$pkgname-$pkgver.tar.gz.sig;)
-sha256sums=('5e78f6295119eeda08a54dcac75306a1a4a40d0cb812ff3cd405e9862c285269'
-'SKIP')
-validpgpkeys=("ADE9653703D4ADE0E997758128555A66D7E1DEC9") # Daniel Scharrer 

-
-build() {
-cd "$pkgname-$pkgver"
-
-# https://github.com/dscharrer/innoextract/issues/88
-cmake . -DCMAKE_INSTALL_PREFIX=/usr -DBoost_NO_BOOST_CMAKE=ON
-make
-}
-
-package() {
-cd "$pkgname-$pkgver"
-make DESTDIR="$pkgdir/" install
-
-install -Dm644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
-install -m644  CHANGELOG "$pkgdir/usr/share/doc/$pkgname/CHANGELOG"
-install -Dm644 LICENSE   "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: innoextract/repos/community-x86_64/PKGBUILD (from rev 725835, 
innoextract/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-18 00:27:36 UTC (rev 725836)
@@ -0,0 +1,35 @@
+# Maintainer: Alad Wenter 
+# Contributor: carstene1ns 
+# Contributor: Sam S. 
+# Contributor: Daniel Scharrer 
+pkgname=innoextract
+pkgver=1.9
+pkgrel=1
+pkgdesc="A tool to extract installers created by Inno Setup"
+url='https://constexpr.org/innoextract/'
+arch=('x86_64')
+license=('ZLIB')
+depends=('boost-libs' 'xz')
+makedepends=('boost' 'cmake')
+source=("https://constexpr.org/innoextract/files/$pkgname-$pkgver.tar.gz;
+"https://constexpr.org/innoextract/files/$pkgname-$pkgver.tar.gz.sig;)
+sha256sums=('6344a69fc1ed847d4ed3e272e0da5998948c6b828cb7af39c6321aba6cf88126'
+'SKIP')
+validpgpkeys=("ADE9653703D4ADE0E997758128555A66D7E1DEC9") # Daniel Scharrer 

+
+build() {
+cd "$pkgname-$pkgver"
+
+# https://github.com/dscharrer/innoextract/issues/88
+cmake . -DCMAKE_INSTALL_PREFIX=/usr -DBoost_NO_BOOST_CMAKE=ON
+make
+}
+
+package() {
+cd "$pkgname-$pkgver"
+make DESTDIR="$pkgdir/" install
+
+install -Dm644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
+install -m644  CHANGELOG "$pkgdir/usr/share/doc/$pkgname/CHANGELOG"
+install -Dm644 LICENSE   "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2020-10-17 Thread Frederik Schwan via arch-commits
Date: Sunday, October 18, 2020 @ 00:24:25
  Author: freswa
Revision: 725829

archrelease: copy trunk to community-x86_64

Added:
  datamash/repos/community-x86_64/PKGBUILD
(from rev 725828, datamash/trunk/PKGBUILD)
Deleted:
  datamash/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-18 00:24:22 UTC (rev 725828)
+++ PKGBUILD2020-10-18 00:24:25 UTC (rev 725829)
@@ -1,32 +0,0 @@
-# Maintainer: Alad Wenter 
-# Contributor: Gavin Lloyd 
-# Contributor: Timothy Rice 
-pkgname=datamash
-pkgver=1.6
-pkgrel=1
-pkgdesc='Performs basic numeric,textual and statistical operations on input 
textual data files'
-url="https://www.gnu.org/software/datamash/;
-arch=('x86_64')
-license=('GPL')
-source=("https://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz;
-"https://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz.sig;)
-sha256sums=('b9b9b79399616bb54722edbbcaa84303801eb62a338b3a20b6f029003deb78cb'
-'SKIP')
-# Assaf Gordon 
-validpgpkeys=('F576AAAC1B0FF849792D8CB129A794FD2272BC86')
-
-build() {
-  cd "$pkgname-$pkgver"
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  make check
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: datamash/repos/community-x86_64/PKGBUILD (from rev 725828, 
datamash/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-18 00:24:25 UTC (rev 725829)
@@ -0,0 +1,32 @@
+# Maintainer: Alad Wenter 
+# Contributor: Gavin Lloyd 
+# Contributor: Timothy Rice 
+pkgname=datamash
+pkgver=1.7
+pkgrel=1
+pkgdesc='Performs basic numeric,textual and statistical operations on input 
textual data files'
+url="https://www.gnu.org/software/datamash/;
+arch=('x86_64')
+license=('GPL')
+source=("https://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz;
+"https://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz.sig;)
+sha256sums=('574a592bb90c5ae702ffaed1b59498d5e3e7466a8abf8530c5f2f3f11fa4adb3'
+'SKIP')
+# Assaf Gordon 
+validpgpkeys=('F576AAAC1B0FF849792D8CB129A794FD2272BC86')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  make check
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}


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

2020-10-17 Thread Frederik Schwan via arch-commits
Date: Sunday, October 18, 2020 @ 00:24:22
  Author: freswa
Revision: 725828

upgpkg: datamash 1.7-1

Modified:
  datamash/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-18 00:24:19 UTC (rev 725827)
+++ PKGBUILD2020-10-18 00:24:22 UTC (rev 725828)
@@ -2,7 +2,7 @@
 # Contributor: Gavin Lloyd 
 # Contributor: Timothy Rice 
 pkgname=datamash
-pkgver=1.6
+pkgver=1.7
 pkgrel=1
 pkgdesc='Performs basic numeric,textual and statistical operations on input 
textual data files'
 url="https://www.gnu.org/software/datamash/;
@@ -10,7 +10,7 @@
 license=('GPL')
 source=("https://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz;
 "https://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz.sig;)
-sha256sums=('b9b9b79399616bb54722edbbcaa84303801eb62a338b3a20b6f029003deb78cb'
+sha256sums=('574a592bb90c5ae702ffaed1b59498d5e3e7466a8abf8530c5f2f3f11fa4adb3'
 'SKIP')
 # Assaf Gordon 
 validpgpkeys=('F576AAAC1B0FF849792D8CB129A794FD2272BC86')


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

2020-10-17 Thread Frederik Schwan via arch-commits
Date: Sunday, October 18, 2020 @ 00:17:51
  Author: freswa
Revision: 725820

archrelease: copy trunk to community-any

Added:
  asoundconf/repos/community-any/0001-python3-syntax.patch
(from rev 725819, asoundconf/trunk/0001-python3-syntax.patch)
  asoundconf/repos/community-any/0002-python3-spaces.patch
(from rev 725819, asoundconf/trunk/0002-python3-spaces.patch)
  asoundconf/repos/community-any/0003-python3-gobject.patch
(from rev 725819, asoundconf/trunk/0003-python3-gobject.patch)
  asoundconf/repos/community-any/PKGBUILD
(from rev 725819, asoundconf/trunk/PKGBUILD)
Deleted:
  asoundconf/repos/community-any/0001-python3-syntax.patch
  asoundconf/repos/community-any/0002-python3-spaces.patch
  asoundconf/repos/community-any/0003-python3-gobject.patch
  asoundconf/repos/community-any/PKGBUILD

+
 0001-python3-syntax.patch  |  386 +++---
 0002-python3-spaces.patch  |  744 +--
 0003-python3-gobject.patch |  250 +++---
 PKGBUILD   |   81 ++--
 4 files changed, 731 insertions(+), 730 deletions(-)

Deleted: 0001-python3-syntax.patch
===
--- 0001-python3-syntax.patch   2020-10-18 00:15:58 UTC (rev 725819)
+++ 0001-python3-syntax.patch   2020-10-18 00:17:51 UTC (rev 725820)
@@ -1,193 +0,0 @@
-# HG changeset patch
-# User Alad Wenter 
-# Date 1565311059 -7200
-#  Fri Aug 09 02:37:39 2019 +0200
-# Node ID e92452338b542c3626f81db079610753f723c9b9
-# Parent  bf25f416f615a43267abecab4c599e86f363438b
-python3: syntax changes
-
-diff -r bf25f416f615 -r e92452338b54 asoundconf
 a/asoundconf   Sun May 31 20:26:03 2015 +0200
-+++ b/asoundconf   Fri Aug 09 02:37:39 2019 +0200
-@@ -1,4 +1,4 @@
--#!/usr/bin/python2
-+#!/usr/bin/python3
- 
- # (C) 2005 Canonical Ltd.
- # Author: Martin Pitt 
-@@ -98,7 +98,7 @@
- open(our_conf_file, 'w').write(our_conf_header)
- return True
- except IOError:
--print >> sys.stderr, 'Error: could not create', our_conf_file
-+print('Error: could not create', our_conf_file, file=sys.stderr)
- return False
- 
- 
-@@ -116,7 +116,7 @@
- open(asoundrc_file, 'w').write('%s\n%s\n<%s>\n\n' % (asoundrc_header, 
inclusion_comment, our_conf_file))
- return True
- except IOError:
--print >> sys.stderr, 'Error: could not create', asoundrc_file
-+print('Error: could not create', asoundrc_file, file=sys.stderr)
- return False
- 
- 
-@@ -229,7 +229,7 @@
- for line in open(our_conf_file):
- m = setting_re.match(line)
- if m:
--print m.group(1).strip()
-+print(m.group(1).strip())
- return True
- return False
- except IOError:
-@@ -245,9 +245,9 @@
-   except IOError:
-   return False
- 
--  print "Names of available sound cards:"
-+print("Names of available sound cards:")
-   for cardname in card_lines:
--  print cardname.id_
-+print(cardname.id_)
-   return True
-   
- 
-@@ -262,13 +262,13 @@
-   except IOError:
-   return False
- 
--  print "Available devices for all sound cards:"
-+  print("Available devices for all sound cards:")
-   for dev in dev_lines:
-   card = next(c for c in card_lines if c.card_num == 
dev.card_num) # find card by number
--  print "hw:%d,%d: %s : %s : %s : %s" % (
-+  print('hw:{},{}: {} : {} : {} : {}'.format(
-   dev.card_num, dev.dev_num,
-   card.id_, card.name,
--  dev.id_, dev.name)
-+  dev.id_, dev.name))
- 
-   return True
- 
-@@ -294,7 +294,7 @@
- return False
- 
- found = 0
--for i in xrange(len(lines)):
-+for i in range(len(lines)):
- if setting_re.match(lines[i]):
- del lines[i]
- found = 1
-@@ -340,7 +340,7 @@
- 
- # if setting is already present, change it
- found = 0
--for i in xrange(len(lines)):
-+for i in range(len(lines)):
- if setting_re.match(lines[i]):
- lines[i] = newsetting
- found = 1
-@@ -426,10 +426,10 @@
- ##
- 
- if os.geteuid() == 0:
--print superuser_warn
-+print(superuser_warn)
- 
- if len(sys.argv) < 2 or sys.argv[1] == '--help' or sys.argv[1] == '-h':
--print usage
-+print(usage)
- sys.exit(0)
- 
- if sys.argv[1] == 'is-active':
-@@ -437,19 +437,19 @@
- 
- if sys.argv[1] == 'get':
- if len(sys.argv) != 3:
--print usage
-+print(usage)
- sys.exit(1)
- exit_code(get(sys.argv[2]))
- 
- if sys.argv[1] == 'delete':
- if len(sys.argv) != 3:
--print usage
-+print(usage)
- sys.exit(1)
- exit_code(delete(sys.argv[2]))
- 
- if sys.argv[1] == 'set':
- if len(sys.argv) != 4:
--  

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

2020-10-17 Thread Frederik Schwan via arch-commits
Date: Sunday, October 18, 2020 @ 00:15:37
  Author: freswa
Revision: 725817

upgpkg: asoundconf 1:1.2-5

Modified:
  asoundconf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-18 00:14:47 UTC (rev 725816)
+++ PKGBUILD2020-10-18 00:15:37 UTC (rev 725817)
@@ -1,17 +1,18 @@
 # Maintainer: Alad Wenter 
 # Contributor: Lukas Jirkovsky 
 pkgname=asoundconf
+epoch=1
 pkgver=1.2
-_revision=bf25f416f615a43267abecab4c599e86f363438b # 1.2
-pkgrel=4
+_commit=55cdf2e78b7f28ee1808346e5d4e32f7e95618dc # 1.2
+pkgrel=5
 pkgdesc="utility to read and change the user's ALSA library configuration"
 arch=('any')
 url="https://bitbucket.org/stativ/asoundconf;
 license=('GPL')
 depends=('python')
-makedepends=('mercurial')
+makedepends=('git')
 optdepends=('python-gobject: asoundconf-gtk GUI')
-source=("hg+https://bitbucket.org/stativ/asoundconf#revision=$_revision;
+source=("git+https://bitbucket.org/stativ/asoundconf.git#commit=$_commit;
 '0001-python3-syntax.patch'
 '0002-python3-spaces.patch'
 '0003-python3-gobject.patch')


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

2020-10-17 Thread Frederik Schwan via arch-commits
Date: Sunday, October 18, 2020 @ 00:00:14
  Author: freswa
Revision: 725796

archrelease: copy trunk to community-x86_64

Added:
  opensc/repos/community-x86_64/PKGBUILD
(from rev 725795, opensc/trunk/PKGBUILD)
Deleted:
  opensc/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-18 00:00:10 UTC (rev 725795)
+++ PKGBUILD2020-10-18 00:00:14 UTC (rev 725796)
@@ -1,46 +0,0 @@
-# Maintainer: Alad
-# Contributor: Timothy Redaelli 
-# Contributor: Sébastien Luttringer
-# Contributor: kevku 
-
-pkgname=opensc
-pkgver=0.20.0
-pkgrel=1
-pkgdesc='Tools and libraries for smart cards'
-arch=('x86_64')
-url='https://github.com/OpenSC/OpenSC/wiki'
-license=('LGPL')
-backup=('etc/opensc.conf')
-makedepends=('docbook-xsl')
-depends=('pcsclite' 'glib2' 'libltdl')
-options=('!emptydirs')
-source=("https://github.com/OpenSC/OpenSC/releases/download/$pkgver/opensc-$pkgver.tar.gz;)
-sha256sums=('bbf4b4f4a44463645c90a525e820a8059b2f742a53b7b944f941de3c97ba4863')
-
-build() {
-  cd $pkgname-$pkgver
-  _sheetdir=(/usr/share/xml/docbook/xsl-stylesheets-*)
-  ./bootstrap
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---with-completiondir=/usr/share/bash-completion/completions \
---enable-man \
---enable-doc \
---enable-readline \
---enable-openssl \
---enable-pcsc \
---enable-zlib \
---enable-sm \
---with-xsl-stylesheetsdir="$_sheetdir"
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package(){
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -D -m644 etc/opensc.conf "$pkgdir/etc/opensc.conf"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: opensc/repos/community-x86_64/PKGBUILD (from rev 725795, 
opensc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-18 00:00:14 UTC (rev 725796)
@@ -0,0 +1,46 @@
+# Maintainer: Alad
+# Contributor: Timothy Redaelli 
+# Contributor: Sébastien Luttringer
+# Contributor: kevku 
+
+pkgname=opensc
+pkgver=0.20.0
+pkgrel=2
+pkgdesc='Tools and libraries for smart cards'
+arch=('x86_64')
+url='https://github.com/OpenSC/OpenSC/wiki'
+license=('LGPL')
+backup=('etc/opensc.conf')
+makedepends=('docbook-xsl')
+depends=('pcsclite' 'glib2' 'libltdl')
+options=('!emptydirs')
+source=("https://github.com/OpenSC/OpenSC/releases/download/$pkgver/opensc-$pkgver.tar.gz;)
+sha256sums=('bbf4b4f4a44463645c90a525e820a8059b2f742a53b7b944f941de3c97ba4863')
+
+build() {
+  cd $pkgname-$pkgver
+  _sheetdir=(/usr/share/xml/docbook/xsl-stylesheets-*-nons)
+  ./bootstrap
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--with-completiondir=/usr/share/bash-completion/completions \
+--enable-man \
+--enable-doc \
+--enable-readline \
+--enable-openssl \
+--enable-pcsc \
+--enable-zlib \
+--enable-sm \
+--with-xsl-stylesheetsdir="$_sheetdir"
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package(){
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -D -m644 etc/opensc.conf "$pkgdir/etc/opensc.conf"
+}
+
+# vim:set ts=2 sw=2 et:


  1   2   3   4   5   >