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

2021-03-21 Thread Sergej Pupykin via arch-commits
Date: Monday, March 22, 2021 @ 06:31:25
  Author: spupykin
Revision: 898831

cleanup

Deleted:
  recordmydesktop/trunk/recordmydesktop-bitrate.patch
  recordmydesktop/trunk/shmstr-to-shmproto.patch

---+
 recordmydesktop-bitrate.patch |   50 
 shmstr-to-shmproto.patch  |   20 
 2 files changed, 70 deletions(-)

Deleted: recordmydesktop-bitrate.patch
===
--- recordmydesktop-bitrate.patch   2021-03-22 06:28:36 UTC (rev 898830)
+++ recordmydesktop-bitrate.patch   2021-03-22 06:31:25 UTC (rev 898831)
@@ -1,50 +0,0 @@
-diff -ru recordmydesktop-0.3.8.1.old/src/rmd_initialize_data.c 
recordmydesktop-0.3.8.1/src/rmd_initialize_data.c
 recordmydesktop-0.3.8.1.old/src/rmd_initialize_data.c  2009-11-25 
10:05:58.708779029 -0500
-+++ recordmydesktop-0.3.8.1/src/rmd_initialize_data.c  2009-11-25 
09:28:07.629507987 -0500
-@@ -224,7 +224,7 @@
- args->channels = 1;
- args->frequency= 22050;
- args->buffsize = 4096;
--args->v_bitrate= 45000;
-+args->v_bitrate= 0;
- args->v_quality= 63;
- args->s_quality= 10;
- 
-diff -ru recordmydesktop-0.3.8.1.old/src/rmd_parseargs.c 
recordmydesktop-0.3.8.1/src/rmd_parseargs.c
 recordmydesktop-0.3.8.1.old/src/rmd_parseargs.c2009-11-25 
10:06:07.409777969 -0500
-+++ recordmydesktop-0.3.8.1/src/rmd_parseargs.c2009-11-25 
09:39:32.786757292 -0500
-@@ -104,10 +104,10 @@
- "Encoding Options\n"
- "\t--on-the-fly-encoding\tEncode the audio-video data, while recording.\n"
- "\t--v_quality n\t\tA number from 0 to 63 for"
--" desired encoded video quality(default 63).\n"
-+" desired encoded video quality(default 63).\n\t   (set 
quality to zero for bitrate controlled usage)\n"
- 
--"\t--v_bitrate n\t\tA number from 45000 to 200"
--" for desired encoded video bitrate(default 45000).\n"
-+"\t--v_bitrate n\t\tA number from 0 to 2"
-+" for desired encoded video bitrate(default 0 = not rate controlled).\n"
- 
- "\t--s_quality n\t\tDesired audio quality(-1 to 10).\n\n"
- 
-@@ -327,17 +327,17 @@
-  strcmp(argv[i], "-v_bitrate")  == 0) {
- if(i+1=45000)&&(num<=200))
-+if((num>=0)&&(num<=2))
- arg_return->v_bitrate=num;
- else{
- fprintf(stderr,"Argument Usage:"
--   " --v_bitrate n(number 45000-200)\n");
-+   " --v_bitrate n(number 0-2)\n");
- return FALSE;
- }
- }
- else{
- fprintf(stderr,"Argument Usage:"
--   " --v_bitrate n(number 45000-200)\n");
-+   " --v_bitrate n(number 0-2)\n");
- return FALSE;
- }
- i++;

Deleted: shmstr-to-shmproto.patch
===
--- shmstr-to-shmproto.patch2021-03-22 06:28:36 UTC (rev 898830)
+++ shmstr-to-shmproto.patch2021-03-22 06:31:25 UTC (rev 898831)
@@ -1,20 +0,0 @@
 src/rmd_getzpixmap.c   2008-12-13 17:04:10.0 +0100
-+++ src/rmd_getzpixmap.c   2009-11-11 11:30:18.0 +0100
-@@ -32,7 +32,7 @@
- 
- #include 
- #include 
--#include 
-+#include 
- #include 
- 
- 
 src/rmd_update_image.c 2008-12-13 17:20:49.0 +0100
-+++ src/rmd_update_image.c 2009-11-11 11:30:34.0 +0100
-@@ -32,7 +32,7 @@
- #include "rmd_types.h"
- 
- #include 
--#include 
-+#include 
- #include 


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

2021-03-21 Thread Sergej Pupykin via arch-commits
Date: Monday, March 22, 2021 @ 06:28:26
  Author: spupykin
Revision: 898829

upgpkg: recordmydesktop 0.4.0-1

Modified:
  recordmydesktop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-03-22 06:20:36 UTC (rev 898828)
+++ PKGBUILD2021-03-22 06:28:26 UTC (rev 898829)
@@ -2,27 +2,20 @@
 # Contributor: Gilles CHAUVIN 
 
 pkgname=recordmydesktop
-pkgver=0.3.8.1
-pkgrel=9
+pkgver=0.4.0
+pkgrel=1
 pkgdesc="Produces a OGG encapsulated Theora/Vorbis recording of your desktop"
 arch=('x86_64')
-url="http://recordmydesktop.sourceforge.net";
+url="https://github.com/Enselic/recordmydesktop/";
 license=('GPL')
-depends=('alsa-lib' 'zlib' 'libvorbis' 'libxdamage' 'libxext' 'libtheora' 
'libsm' 'jack')
+depends=('alsa-lib' 'zlib' 'libvorbis' 'libxdamage' 'libxext' 'libtheora' 
'libsm' 'jack' 'popt')
 makedepends=('jack')
-source=(https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz
-   shmstr-to-shmproto.patch
-   recordmydesktop-bitrate.patch)
-sha512sums=('a32df1257d7d8928123437b38abcbdf623a9a65d313df5bec9bc06ef7229ebe4664a3cbea1fe5f6f1f9b89efb939873adc020f4ac072477f6df9481a37e7c350'
-
'22cc2cb91013466908858e0246643b80822e3935265e9d3d1653626bfadfdd798f78aa482addd7db1afd6c4d7f19e1f9917eed3096981cf994879027a2ff61cf'
-
'0e26f5170c39b74c345a35d6c64a6745261a2457cd340d62c1181c90ead8d6a41ebdbbee9f115d8bfc1dea2cce021a6aadd3abf9df3b7ebcff9e59774204f560')
+source=("https://github.com/Enselic/recordmydesktop/releases/download/v0.4.0/recordmydesktop-${pkgver}.tar.gz";)
+sha512sums=('4b0a141c68e10679cfce53efac518e254b0cd361b6769aaf22fdb25a2162e7cc255eb741dd671a908dafa370d464b0e298b7386b561a6a721e8419632982a1e0')
 
 build() {
   cd "$srcdir"/${pkgname}-${pkgver}
-  patch -p0 < "$srcdir"/shmstr-to-shmproto.patch
-  patch -p1 < "$srcdir"/recordmydesktop-bitrate.patch
-  ./configure --prefix=/usr --enable-jack=yes LIBS="`pkg-config --libs jack`" \
-   CFLAGS="`pkg-config --cflags jack` -DHAVE_LIBJACK"
+  ./configure --prefix=/usr --enable-jack=yes
   make
 }
 


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

2021-03-21 Thread Sergej Pupykin via arch-commits
Date: Monday, March 22, 2021 @ 06:28:36
  Author: spupykin
Revision: 898830

archrelease: copy trunk to community-x86_64

Added:
  recordmydesktop/repos/community-x86_64/PKGBUILD
(from rev 898829, recordmydesktop/trunk/PKGBUILD)
  recordmydesktop/repos/community-x86_64/recordmydesktop-bitrate.patch
(from rev 898829, recordmydesktop/trunk/recordmydesktop-bitrate.patch)
  recordmydesktop/repos/community-x86_64/shmstr-to-shmproto.patch
(from rev 898829, recordmydesktop/trunk/shmstr-to-shmproto.patch)
Deleted:
  recordmydesktop/repos/community-x86_64/PKGBUILD
  recordmydesktop/repos/community-x86_64/recordmydesktop-bitrate.patch
  recordmydesktop/repos/community-x86_64/shmstr-to-shmproto.patch

---+
 PKGBUILD  |   57 ++
 recordmydesktop-bitrate.patch |  100 
 shmstr-to-shmproto.patch  |   40 
 3 files changed, 95 insertions(+), 102 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-22 06:28:26 UTC (rev 898829)
+++ PKGBUILD2021-03-22 06:28:36 UTC (rev 898830)
@@ -1,32 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: Gilles CHAUVIN 
-
-pkgname=recordmydesktop
-pkgver=0.3.8.1
-pkgrel=9
-pkgdesc="Produces a OGG encapsulated Theora/Vorbis recording of your desktop"
-arch=('x86_64')
-url="http://recordmydesktop.sourceforge.net";
-license=('GPL')
-depends=('alsa-lib' 'zlib' 'libvorbis' 'libxdamage' 'libxext' 'libtheora' 
'libsm' 'jack')
-makedepends=('jack')
-source=(https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz
-   shmstr-to-shmproto.patch
-   recordmydesktop-bitrate.patch)
-sha512sums=('a32df1257d7d8928123437b38abcbdf623a9a65d313df5bec9bc06ef7229ebe4664a3cbea1fe5f6f1f9b89efb939873adc020f4ac072477f6df9481a37e7c350'
-
'22cc2cb91013466908858e0246643b80822e3935265e9d3d1653626bfadfdd798f78aa482addd7db1afd6c4d7f19e1f9917eed3096981cf994879027a2ff61cf'
-
'0e26f5170c39b74c345a35d6c64a6745261a2457cd340d62c1181c90ead8d6a41ebdbbee9f115d8bfc1dea2cce021a6aadd3abf9df3b7ebcff9e59774204f560')
-
-build() {
-  cd "$srcdir"/${pkgname}-${pkgver}
-  patch -p0 < "$srcdir"/shmstr-to-shmproto.patch
-  patch -p1 < "$srcdir"/recordmydesktop-bitrate.patch
-  ./configure --prefix=/usr --enable-jack=yes LIBS="`pkg-config --libs jack`" \
-   CFLAGS="`pkg-config --cflags jack` -DHAVE_LIBJACK"
-  make
-}
-
-package() {
-  cd "$srcdir"/${pkgname}-${pkgver}
-  make DESTDIR="$pkgdir" install
-}

Copied: recordmydesktop/repos/community-x86_64/PKGBUILD (from rev 898829, 
recordmydesktop/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-03-22 06:28:36 UTC (rev 898830)
@@ -0,0 +1,25 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: Gilles CHAUVIN 
+
+pkgname=recordmydesktop
+pkgver=0.4.0
+pkgrel=1
+pkgdesc="Produces a OGG encapsulated Theora/Vorbis recording of your desktop"
+arch=('x86_64')
+url="https://github.com/Enselic/recordmydesktop/";
+license=('GPL')
+depends=('alsa-lib' 'zlib' 'libvorbis' 'libxdamage' 'libxext' 'libtheora' 
'libsm' 'jack' 'popt')
+makedepends=('jack')
+source=("https://github.com/Enselic/recordmydesktop/releases/download/v0.4.0/recordmydesktop-${pkgver}.tar.gz";)
+sha512sums=('4b0a141c68e10679cfce53efac518e254b0cd361b6769aaf22fdb25a2162e7cc255eb741dd671a908dafa370d464b0e298b7386b561a6a721e8419632982a1e0')
+
+build() {
+  cd "$srcdir"/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --enable-jack=yes
+  make
+}
+
+package() {
+  cd "$srcdir"/${pkgname}-${pkgver}
+  make DESTDIR="$pkgdir" install
+}

Deleted: recordmydesktop-bitrate.patch
===
--- recordmydesktop-bitrate.patch   2021-03-22 06:28:26 UTC (rev 898829)
+++ recordmydesktop-bitrate.patch   2021-03-22 06:28:36 UTC (rev 898830)
@@ -1,50 +0,0 @@
-diff -ru recordmydesktop-0.3.8.1.old/src/rmd_initialize_data.c 
recordmydesktop-0.3.8.1/src/rmd_initialize_data.c
 recordmydesktop-0.3.8.1.old/src/rmd_initialize_data.c  2009-11-25 
10:05:58.708779029 -0500
-+++ recordmydesktop-0.3.8.1/src/rmd_initialize_data.c  2009-11-25 
09:28:07.629507987 -0500
-@@ -224,7 +224,7 @@
- args->channels = 1;
- args->frequency= 22050;
- args->buffsize = 4096;
--args->v_bitrate= 45000;
-+args->v_bitrate= 0;
- args->v_quality= 63;
- args->s_quality= 10;
- 
-diff -ru recordmydesktop-0.3.8.1.old/src/rmd_parseargs.c 
recordmydesktop-0.3.8.1/src/rmd_parseargs.c
 recordmydesktop-0.3.8.1.old/src/rmd_parseargs.c2009-11-25 
10:06:07.409777969 -0500
-+++ recordmydesktop-0.3.8.1/src/rmd_parseargs.c2009-11-25 
09:39:32.786757292 -0500
-@@ -104,10 +104,10 @@
- "Encoding Options\n"
- "\t--on-the-fly-encoding\tEncode

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

2021-03-21 Thread Sergej Pupykin via arch-commits
Date: Monday, March 22, 2021 @ 06:20:36
  Author: spupykin
Revision: 898828

archrelease: copy trunk to community-x86_64

Added:
  gsoap/repos/community-x86_64/PKGBUILD
(from rev 898827, gsoap/trunk/PKGBUILD)
Deleted:
  gsoap/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-22 06:20:28 UTC (rev 898827)
+++ PKGBUILD2021-03-22 06:20:36 UTC (rev 898828)
@@ -1,36 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: Tor Krill 
-# Contributor: Lee.MaRS 
-
-pkgname=gsoap
-pkgver=2.8.110
-pkgrel=1
-pkgdesc="Offers an XML language binding to ease the development of SOAP/XML 
Web services in C and C/C++"
-url="https://www.cs.fsu.edu/~engelen/soap.html";
-arch=('x86_64')
-license=('GPL' 'custom')
-depends=('openssl' 'zlib' 'gcc-libs')
-makedepends=('autoconf' 'automake')
-options=('staticlibs')
-source=("https://prdownloads.sourceforge.net/gsoap2/${pkgname}_${pkgver}.zip";)
-sha256sums=('ec8826265faca3c59756f8b5d637e06b7f4ed4a984243caa3f53db4ec71e577a')
-
-build() {
-  cd "$srcdir"/gsoap-2.8
-  # needed for programs which use gsoap and have -fPIC enabled
-  # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=353724
-  export CFLAGS+=" -fPIC"
-  export CXXFLAGS+=" -fPIC"
-  ./configure --prefix=/usr
-  make -j1
-}
-
-package() {
-  cd "$srcdir"/gsoap-2.8
-  make DESTDIR="$pkgdir" install
-  mkdir -p "$pkgdir"/usr/share/gsoap/import
-  mkdir -p "$pkgdir"/usr/share/gsoap/WS
-  cp -R gsoap/import "$pkgdir"/usr/share/gsoap/
-  cp -R gsoap/WS "$pkgdir"/usr/share/gsoap/
-  install -D LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
-}

Copied: gsoap/repos/community-x86_64/PKGBUILD (from rev 898827, 
gsoap/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-03-22 06:20:36 UTC (rev 898828)
@@ -0,0 +1,41 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: Tor Krill 
+# Contributor: Lee.MaRS 
+
+pkgname=gsoap
+pkgver=2.8.112
+pkgrel=1
+pkgdesc="Offers an XML language binding to ease the development of SOAP/XML 
Web services in C and C/C++"
+url="https://www.cs.fsu.edu/~engelen/soap.html";
+arch=('x86_64')
+license=('GPL' 'custom')
+depends=('openssl' 'zlib' 'gcc-libs')
+makedepends=('autoconf' 'automake')
+options=('staticlibs')
+source=("https://prdownloads.sourceforge.net/gsoap2/${pkgname}_${pkgver}.zip";)
+sha256sums=('05345312e0bb4d81c98ae63b97cff9eb097f38dafe09356189f9d8e235c54095')
+
+prepare() {
+  cd "$srcdir"/gsoap-2.8
+  sed -i 's/#  if !defined(_GNU_SOURCE) ||/#  if !defined(_GNU_SOURCE) \&\&/' 
gsoap/stdsoap2.{c,cpp}
+}
+
+build() {
+  cd "$srcdir"/gsoap-2.8
+  # needed for programs which use gsoap and have -fPIC enabled
+  # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=353724
+  export CFLAGS+=" -fPIC"
+  export CXXFLAGS+=" -fPIC"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir"/gsoap-2.8
+  make DESTDIR="$pkgdir" install
+  mkdir -p "$pkgdir"/usr/share/gsoap/import
+  mkdir -p "$pkgdir"/usr/share/gsoap/WS
+  cp -R gsoap/import "$pkgdir"/usr/share/gsoap/
+  cp -R gsoap/WS "$pkgdir"/usr/share/gsoap/
+  install -D LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+}


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

2021-03-21 Thread Sergej Pupykin via arch-commits
Date: Monday, March 22, 2021 @ 05:44:40
  Author: spupykin
Revision: 898822

upgpkg: unrealircd 5.0.9-1

Modified:
  unrealircd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-03-22 05:44:34 UTC (rev 898821)
+++ PKGBUILD2021-03-22 05:44:40 UTC (rev 898822)
@@ -2,7 +2,7 @@
 # Contributor: Zerial 
 
 pkgname=unrealircd
-pkgver=5.0.8
+pkgver=5.0.9
 pkgrel=1
 pkgdesc="Open Source IRC Server"
 arch=('x86_64')
@@ -18,7 +18,7 @@
unrealircd.tmpfiles.d
unrealircd.sysusers.d
install.pl)
-sha256sums=('256f21bb60cea93bf1f0117e9b71e9da855c50148178ddba5712728f4b960a19'
+sha256sums=('db95ed46ec5fa270ddc7fe83009d2a55b280326698c81c4d01588ffa62e28dac'
 '0a6d3c269ba5379f967b2ec035ad4c6226d42ce22ffaaf8c3e5b37ba8ee02ddd'
 '75360541bc3aec9c1241c75e0ce60214c65cb618ffe5ca77144f01651ef5ab5b'
 '9e595176e63b301476982b1456d6ed065c479ff913b6743417ab8a9efdda0e3a'


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

2021-03-21 Thread Sergej Pupykin via arch-commits
Date: Monday, March 22, 2021 @ 05:44:54
  Author: spupykin
Revision: 898823

archrelease: copy trunk to community-x86_64

Added:
  unrealircd/repos/community-x86_64/PKGBUILD
(from rev 898822, unrealircd/trunk/PKGBUILD)
  unrealircd/repos/community-x86_64/install.pl
(from rev 898822, unrealircd/trunk/install.pl)
  unrealircd/repos/community-x86_64/unrealircd.install
(from rev 898822, unrealircd/trunk/unrealircd.install)
  unrealircd/repos/community-x86_64/unrealircd.service
(from rev 898822, unrealircd/trunk/unrealircd.service)
  unrealircd/repos/community-x86_64/unrealircd.sysusers.d
(from rev 898822, unrealircd/trunk/unrealircd.sysusers.d)
  unrealircd/repos/community-x86_64/unrealircd.tmpfiles.d
(from rev 898822, unrealircd/trunk/unrealircd.tmpfiles.d)
Deleted:
  unrealircd/repos/community-x86_64/PKGBUILD
  unrealircd/repos/community-x86_64/install.pl
  unrealircd/repos/community-x86_64/unrealircd.install
  unrealircd/repos/community-x86_64/unrealircd.service
  unrealircd/repos/community-x86_64/unrealircd.sysusers.d
  unrealircd/repos/community-x86_64/unrealircd.tmpfiles.d

---+
 PKGBUILD  |  142 
 install.pl|   10 +--
 unrealircd.install|   18 +++---
 unrealircd.service|   24 
 unrealircd.sysusers.d |2 
 unrealircd.tmpfiles.d |   10 +--
 6 files changed, 103 insertions(+), 103 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-22 05:44:40 UTC (rev 898822)
+++ PKGBUILD2021-03-22 05:44:54 UTC (rev 898823)
@@ -1,71 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: Zerial 
-
-pkgname=unrealircd
-pkgver=5.0.8
-pkgrel=1
-pkgdesc="Open Source IRC Server"
-arch=('x86_64')
-url="https://www.unrealircd.org";
-license=('GPL2')
-depends=('openssl' 'curl' 'c-ares' 'tre' 'pcre2' 'libnsl')
-conflicts=('ircd')
-provides=('ircd')
-backup=('etc/unrealircd/unrealircd.conf')
-install=unrealircd.install
-source=(https://www.unrealircd.org/unrealircd4/unrealircd-$pkgver.tar.gz
-   unrealircd.service
-   unrealircd.tmpfiles.d
-   unrealircd.sysusers.d
-   install.pl)
-sha256sums=('256f21bb60cea93bf1f0117e9b71e9da855c50148178ddba5712728f4b960a19'
-'0a6d3c269ba5379f967b2ec035ad4c6226d42ce22ffaaf8c3e5b37ba8ee02ddd'
-'75360541bc3aec9c1241c75e0ce60214c65cb618ffe5ca77144f01651ef5ab5b'
-'9e595176e63b301476982b1456d6ed065c479ff913b6743417ab8a9efdda0e3a'
-'43f07093ada8eb5c954f9e2e189610575906c690c0953fec041d4f2d31210d85')
-
-prepare() {
-  cd "$srcdir"/unrealircd-$pkgver
-  sed -i \
--e 's|$(INSTALL) -m 0700|$(INSTALL) -m 0755|g' \
--e 's|$(INSTALL) -m 0600|$(INSTALL) -m 0644|g' \
-Makefile.in
-}
-
-build() {
-  cd "$srcdir"/unrealircd-$pkgver
-  ./configure \
---with-pidfile=/run/unrealircd/ircd.pid \
---with-showlistmodes \
---enable-ssl=/usr \
---with-bindir=/usr/bin \
---with-datadir=/var/lib/unrealircd \
---with-confdir=/etc/unrealircd \
---with-modulesdir=/usr/lib/unrealircd \
---with-logdir=/var/log/unrealircd \
---with-cachedir=/var/cache/unrealircd \
---with-docdir=/usr/share/doc/unrealircd \
---with-tmpdir=/tmp \
---with-scriptdir=/usr \
---with-nick-history=2000 \
---with-sendq=300 \
---with-permissions=0644 \
---with-fd-setsize=1024 \
---enable-dynamic-linking
-  make
-}
-
-package() {
-  cd "$srcdir"/unrealircd-$pkgver
-
-  export pkgdir
-#  make INSTALL="$srcdir"/install.pl install DESTDIR="$pkgdir"
-  make install DESTDIR="$pkgdir"
-  mv "$pkgdir"/usr/unrealircd "$pkgdir"/etc/unrealircd/unrealircd
-  cp "$pkgdir"/etc/unrealircd/examples/example.conf 
"$pkgdir"/etc/unrealircd/unrealircd.conf
-  rm -rf "$pkgdir"/tmp
-
-  install -Dm0644 "$srcdir"/unrealircd.service 
"$pkgdir"/usr/lib/systemd/system/unrealircd.service
-  install -Dm0644 "$srcdir"/unrealircd.tmpfiles.d 
"$pkgdir"/usr/lib/tmpfiles.d/unrealircd.conf
-  install -Dm0644 "$srcdir"/unrealircd.sysusers.d 
"$pkgdir"/usr/lib/sysusers.d/unrealircd.conf
-}

Copied: unrealircd/repos/community-x86_64/PKGBUILD (from rev 898822, 
unrealircd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-03-22 05:44:54 UTC (rev 898823)
@@ -0,0 +1,71 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: Zerial 
+
+pkgname=unrealircd
+pkgver=5.0.9
+pkgrel=1
+pkgdesc="Open Source IRC Server"
+arch=('x86_64')
+url="https://www.unrealircd.org";
+license=('GPL2')
+depends=('openssl' 'curl' 'c-ares' 'tre' 'pcre2' 'libnsl')
+conflicts=('ircd')
+provides=('ircd')
+backup=('etc/unrealircd/unrealircd.conf')
+install=unrealircd.install
+source=(https://www.unrealircd.org/unrealircd4/unrealircd-$pkgver.tar.gz
+   unrealircd.service
+   unrealircd.tmpfiles.d
+   unrealircd.sysusers.d
+   install.pl)
+sha256sums=('db95ed46ec5

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

2021-03-21 Thread Sergej Pupykin via arch-commits
Date: Monday, March 22, 2021 @ 05:44:34
  Author: spupykin
Revision: 898821

archrelease: copy trunk to community-x86_64

Added:
  recoll/repos/community-x86_64/PKGBUILD
(from rev 898820, recoll/trunk/PKGBUILD)
Deleted:
  recoll/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-22 05:44:27 UTC (rev 898820)
+++ PKGBUILD2021-03-22 05:44:34 UTC (rev 898821)
@@ -1,49 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: Daniel J Griffiths 
-# Contributor: Andrea Scarpino 
-# Contributor: Vladimir Chizhov 
-# Contributor: Robert Emil Berge 
-
-pkgname=recoll
-pkgver=1.28.5
-pkgrel=2
-pkgdesc="Full text search tool based on Xapian backend"
-arch=('x86_64')
-url="https://www.lesbonscomptes.com/recoll/";
-license=('GPL')
-depends=('xapian-core>=1.0.15-1' 'qt5-base' 'openssl' 'hicolor-icon-theme' 
'qt5-webkit'
-'chmlib')
-makedepends=('python' 'python-setuptools')
-optdepends=('libxslt: for XML based formats (fb2,etc)'
-   'unzip: for the OpenOffice.org documents'
-   'poppler: for pdf'
-   'pstotext: for postscipt'
-   'antiword: for msword'
-   'catdoc: for ms excel and powerpoint'
-   'unrtf: for RTF'
-#  'untex: for dvi support with dvips'
-   'djvulibre: for djvu'
-   'id3lib: for mp3 tags support with id3info'
-   'python-mutagen: Audio metadata'
-   'perl-image-exiftool: EXIF data from raw files'
-   'python-lxml: indexing spreadsheets'
-'python-pychm: CHM filter'
-   'aspell-en: English stemming support')
-source=("https://www.lesbonscomptes.com/$pkgname/$pkgname-${pkgver/_/}.tar.gz";)
-sha512sums=('df4c7a5e624933ccc7ce257a767a4621728a4dbcdd5b551b47845ed0fcffdd5a6f7f617a466404c5e8d8b62c81e57986e1f21e01d643899755623a2dc597d712')
-
-prepare() {
-  cd "$srcdir/$pkgname-${pkgver/_/}"
-  sed -i '1,1i#include ' qtgui/ssearch_w.cpp
-}
-
-build() {
-  cd "$srcdir/$pkgname-${pkgver/_/}"
-  QMAKE=qmake-qt5 ./configure --prefix=/usr --mandir=/usr/share/man 
--enable-recollq
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-${pkgver/_/}"
-  make DESTDIR="$pkgdir" install
-}

Copied: recoll/repos/community-x86_64/PKGBUILD (from rev 898820, 
recoll/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-03-22 05:44:34 UTC (rev 898821)
@@ -0,0 +1,49 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: Daniel J Griffiths 
+# Contributor: Andrea Scarpino 
+# Contributor: Vladimir Chizhov 
+# Contributor: Robert Emil Berge 
+
+pkgname=recoll
+pkgver=1.29.2
+pkgrel=1
+pkgdesc="Full text search tool based on Xapian backend"
+arch=('x86_64')
+url="https://www.lesbonscomptes.com/recoll/";
+license=('GPL')
+depends=('xapian-core>=1.0.15-1' 'qt5-base' 'openssl' 'hicolor-icon-theme' 
'qt5-webkit'
+'chmlib')
+makedepends=('python' 'python-setuptools')
+optdepends=('libxslt: for XML based formats (fb2,etc)'
+   'unzip: for the OpenOffice.org documents'
+   'poppler: for pdf'
+   'pstotext: for postscipt'
+   'antiword: for msword'
+   'catdoc: for ms excel and powerpoint'
+   'unrtf: for RTF'
+#  'untex: for dvi support with dvips'
+   'djvulibre: for djvu'
+   'id3lib: for mp3 tags support with id3info'
+   'python-mutagen: Audio metadata'
+   'perl-image-exiftool: EXIF data from raw files'
+   'python-lxml: indexing spreadsheets'
+'python-pychm: CHM filter'
+   'aspell-en: English stemming support')
+source=("https://www.lesbonscomptes.com/$pkgname/$pkgname-${pkgver/_/}.tar.gz";)
+sha512sums=('c87fc054a0c34f1b6bcc10a4f2c84268a51df02b8ba84634c51f9396befe5b2b84fc93d363876158c9d117a164613e91d9c63b228fec5e0e07d234c97c4680c5')
+
+prepare() {
+  cd "$srcdir/$pkgname-${pkgver/_/}"
+  sed -i '1,1i#include ' qtgui/ssearch_w.cpp
+}
+
+build() {
+  cd "$srcdir/$pkgname-${pkgver/_/}"
+  QMAKE=qmake-qt5 ./configure --prefix=/usr --mandir=/usr/share/man 
--enable-recollq
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-${pkgver/_/}"
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in nextcloud-app-mail/repos/community-any (PKGBUILD PKGBUILD)

2021-03-21 Thread Sergej Pupykin via arch-commits
Date: Monday, March 22, 2021 @ 05:44:21
  Author: spupykin
Revision: 898819

archrelease: copy trunk to community-any

Added:
  nextcloud-app-mail/repos/community-any/PKGBUILD
(from rev 898818, nextcloud-app-mail/trunk/PKGBUILD)
Deleted:
  nextcloud-app-mail/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-22 05:44:13 UTC (rev 898818)
+++ PKGBUILD2021-03-22 05:44:21 UTC (rev 898819)
@@ -1,24 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jonas Heinrich 
-# Contributor: Jonas Heinrich 
-
-pkgname=nextcloud-app-mail
-pkgver=1.9.1
-pkgrel=1
-pkgdesc="An email app for NextCloud"
-arch=('any')
-url="https://github.com/nextcloud/mail";
-license=('AGPL')
-depends=('nextcloud')
-options=('!strip')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/nextcloud/mail/releases/download/v${pkgver}/mail.tar.gz";)
-sha512sums=('1b2419d7f74dee0935e08e2d880a2dcc179f30c2dbd5dc9d0361e24eff97a550fcaa4566da4e5628c0f953f3890f35107673ac7fb50139c2b63b716795ad5728')
-
-prepare() {
-  sed -i 's|max-version="7.0"|max-version="7.1"|' 
"${srcdir}/mail/appinfo/info.xml"
-}
-
-package() {
-  install -d "${pkgdir}/usr/share/webapps/nextcloud/apps"
-  cp -a "${srcdir}/mail" "${pkgdir}/usr/share/webapps/nextcloud/apps/mail"
-}

Copied: nextcloud-app-mail/repos/community-any/PKGBUILD (from rev 898818, 
nextcloud-app-mail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-03-22 05:44:21 UTC (rev 898819)
@@ -0,0 +1,24 @@
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jonas Heinrich 
+# Contributor: Jonas Heinrich 
+
+pkgname=nextcloud-app-mail
+pkgver=1.9.3
+pkgrel=1
+pkgdesc="An email app for NextCloud"
+arch=('any')
+url="https://github.com/nextcloud/mail";
+license=('AGPL')
+depends=('nextcloud')
+options=('!strip')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/nextcloud/mail/releases/download/v${pkgver}/mail.tar.gz";)
+sha512sums=('ff1e5ca65a656e7f3c97496eb59270f3f7cf52a40d6b16a2c4ce7b6c92f66dbdf10d8ec4f60150134fe109f0369ebaff1383ce7e590c184265faf3f6f2d13cf5')
+
+prepare() {
+  sed -i 's|max-version="7.0"|max-version="7.1"|' 
"${srcdir}/mail/appinfo/info.xml"
+}
+
+package() {
+  install -d "${pkgdir}/usr/share/webapps/nextcloud/apps"
+  cp -a "${srcdir}/mail" "${pkgdir}/usr/share/webapps/nextcloud/apps/mail"
+}


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

2021-03-21 Thread Sergej Pupykin via arch-commits
Date: Monday, March 22, 2021 @ 05:44:27
  Author: spupykin
Revision: 898820

upgpkg: recoll 1.29.2-1

Modified:
  recoll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-03-22 05:44:21 UTC (rev 898819)
+++ PKGBUILD2021-03-22 05:44:27 UTC (rev 898820)
@@ -5,8 +5,8 @@
 # Contributor: Robert Emil Berge 
 
 pkgname=recoll
-pkgver=1.28.5
-pkgrel=2
+pkgver=1.29.2
+pkgrel=1
 pkgdesc="Full text search tool based on Xapian backend"
 arch=('x86_64')
 url="https://www.lesbonscomptes.com/recoll/";
@@ -30,7 +30,7 @@
 'python-pychm: CHM filter'
'aspell-en: English stemming support')
 source=("https://www.lesbonscomptes.com/$pkgname/$pkgname-${pkgver/_/}.tar.gz";)
-sha512sums=('df4c7a5e624933ccc7ce257a767a4621728a4dbcdd5b551b47845ed0fcffdd5a6f7f617a466404c5e8d8b62c81e57986e1f21e01d643899755623a2dc597d712')
+sha512sums=('c87fc054a0c34f1b6bcc10a4f2c84268a51df02b8ba84634c51f9396befe5b2b84fc93d363876158c9d117a164613e91d9c63b228fec5e0e07d234c97c4680c5')
 
 prepare() {
   cd "$srcdir/$pkgname-${pkgver/_/}"


[arch-commits] Commit in nextcloud-app-mail/trunk (PKGBUILD)

2021-03-21 Thread Sergej Pupykin via arch-commits
Date: Monday, March 22, 2021 @ 05:44:13
  Author: spupykin
Revision: 898818

upgpkg: nextcloud-app-mail 1.9.3-1

Modified:
  nextcloud-app-mail/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-03-22 05:44:07 UTC (rev 898817)
+++ PKGBUILD2021-03-22 05:44:13 UTC (rev 898818)
@@ -3,7 +3,7 @@
 # Contributor: Jonas Heinrich 
 
 pkgname=nextcloud-app-mail
-pkgver=1.9.1
+pkgver=1.9.3
 pkgrel=1
 pkgdesc="An email app for NextCloud"
 arch=('any')
@@ -12,7 +12,7 @@
 depends=('nextcloud')
 options=('!strip')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/nextcloud/mail/releases/download/v${pkgver}/mail.tar.gz";)
-sha512sums=('1b2419d7f74dee0935e08e2d880a2dcc179f30c2dbd5dc9d0361e24eff97a550fcaa4566da4e5628c0f953f3890f35107673ac7fb50139c2b63b716795ad5728')
+sha512sums=('ff1e5ca65a656e7f3c97496eb59270f3f7cf52a40d6b16a2c4ce7b6c92f66dbdf10d8ec4f60150134fe109f0369ebaff1383ce7e590c184265faf3f6f2d13cf5')
 
 prepare() {
   sed -i 's|max-version="7.0"|max-version="7.1"|' 
"${srcdir}/mail/appinfo/info.xml"


[arch-commits] Commit in nextcloud-app-contacts/repos/community-any (2 files)

2021-03-21 Thread Sergej Pupykin via arch-commits
Date: Monday, March 22, 2021 @ 05:44:07
  Author: spupykin
Revision: 898817

archrelease: copy trunk to community-any

Added:
  nextcloud-app-contacts/repos/community-any/PKGBUILD
(from rev 898816, nextcloud-app-contacts/trunk/PKGBUILD)
Deleted:
  nextcloud-app-contacts/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-22 05:43:56 UTC (rev 898816)
+++ PKGBUILD2021-03-22 05:44:07 UTC (rev 898817)
@@ -1,18 +0,0 @@
-# Maintainer: Sergej Pupykin 
-
-pkgname=nextcloud-app-contacts
-pkgver=3.4.3
-pkgrel=1
-pkgdesc="Contacts app for nextcloud"
-arch=('any')
-url="https://github.com/nextcloud/contacts/";
-license=('GPL')
-depends=('nextcloud')
-options=('!strip')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/nextcloud/contacts/releases/download/v$pkgver/contacts.tar.gz";)
-sha256sums=('3e8324042831b91f876e4fbfaa9b7feeff7380a0d7f0b6bddd1ae5f212969bde')
-
-package() {
-  install -d "$pkgdir"/usr/share/webapps/nextcloud/apps
-  cp -a "$srcdir"/contacts "$pkgdir"/usr/share/webapps/nextcloud/apps/contacts
-}

Copied: nextcloud-app-contacts/repos/community-any/PKGBUILD (from rev 898816, 
nextcloud-app-contacts/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-03-22 05:44:07 UTC (rev 898817)
@@ -0,0 +1,18 @@
+# Maintainer: Sergej Pupykin 
+
+pkgname=nextcloud-app-contacts
+pkgver=3.5.1
+pkgrel=1
+pkgdesc="Contacts app for nextcloud"
+arch=('any')
+url="https://github.com/nextcloud/contacts/";
+license=('GPL')
+depends=('nextcloud')
+options=('!strip')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/nextcloud/contacts/releases/download/v$pkgver/contacts.tar.gz";)
+sha256sums=('d83f6af637e436b4e16fcba8c4d4e3b878082a77f4b552738abfe1aad0b0aae7')
+
+package() {
+  install -d "$pkgdir"/usr/share/webapps/nextcloud/apps
+  cp -a "$srcdir"/contacts "$pkgdir"/usr/share/webapps/nextcloud/apps/contacts
+}


[arch-commits] Commit in nextcloud-app-contacts/trunk (PKGBUILD)

2021-03-21 Thread Sergej Pupykin via arch-commits
Date: Monday, March 22, 2021 @ 05:43:56
  Author: spupykin
Revision: 898816

upgpkg: nextcloud-app-contacts 3.5.1-1

Modified:
  nextcloud-app-contacts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-03-22 04:28:50 UTC (rev 898815)
+++ PKGBUILD2021-03-22 05:43:56 UTC (rev 898816)
@@ -1,7 +1,7 @@
 # Maintainer: Sergej Pupykin 
 
 pkgname=nextcloud-app-contacts
-pkgver=3.4.3
+pkgver=3.5.1
 pkgrel=1
 pkgdesc="Contacts app for nextcloud"
 arch=('any')
@@ -10,7 +10,7 @@
 depends=('nextcloud')
 options=('!strip')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/nextcloud/contacts/releases/download/v$pkgver/contacts.tar.gz";)
-sha256sums=('3e8324042831b91f876e4fbfaa9b7feeff7380a0d7f0b6bddd1ae5f212969bde')
+sha256sums=('d83f6af637e436b4e16fcba8c4d4e3b878082a77f4b552738abfe1aad0b0aae7')
 
 package() {
   install -d "$pkgdir"/usr/share/webapps/nextcloud/apps


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

2021-03-21 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, March 22, 2021 @ 04:28:50
  Author: svenstaro
Revision: 898815

archrelease: copy trunk to community-x86_64

Added:
  wesnoth/repos/community-x86_64/PKGBUILD
(from rev 898814, wesnoth/trunk/PKGBUILD)
  wesnoth/repos/community-x86_64/wesnothd.service
(from rev 898814, wesnoth/trunk/wesnothd.service)
  wesnoth/repos/community-x86_64/wesnothd.tmpfiles.conf
(from rev 898814, wesnoth/trunk/wesnothd.tmpfiles.conf)
Deleted:
  wesnoth/repos/community-x86_64/PKGBUILD
  wesnoth/repos/community-x86_64/wesnothd.service
  wesnoth/repos/community-x86_64/wesnothd.tmpfiles.conf

+
 PKGBUILD   |  108 +++
 wesnothd.service   |   18 +++
 wesnothd.tmpfiles.conf |2 
 3 files changed, 64 insertions(+), 64 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-22 04:28:42 UTC (rev 898814)
+++ PKGBUILD2021-03-22 04:28:50 UTC (rev 898815)
@@ -1,54 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Jan de Groot 
-# Contributor: Tobias Powalowski 
-# Contributor: Jacobo Arvelo 
-# Contributor: Douglas Soares de Andrade 
-
-pkgname=wesnoth
-# NOTE: Odd minor versions are unstable! Do not package those.
-pkgver=1.14.15
-epoch=1
-pkgrel=1
-pkgdesc="A turn-based strategy game on a fantasy world"
-arch=('x86_64')
-license=('GPL')
-url="http://www.wesnoth.org/";
-depends=('sdl2_ttf' 'sdl2_net' 'sdl2_mixer' 'sdl2_image' 'fribidi' 
'boost-libs' 'pango' 'lua52' 'dbus' 'python2')
-makedepends=('boost' 'cmake' 'git')
-replaces=('wesnoth-data')
-options=(!emptydirs)
-source=("git://github.com/wesnoth/wesnoth.git#tag=${pkgver}"
-wesnothd.tmpfiles.conf
-wesnothd.service)
-sha512sums=('SKIP'
-
'6e776bf9d4e6f289b1dddbea03b0cc6972af9e926c8305fac823613b101d7f3bc40f30ab73708e9df355b28cc6459b138f3d8015528796ad94d3571d20dd54ed'
-
'9d648c8bd13a574364b4dede4b1084a2fe1bf50a38ad04aa1a9f72f168915fc67d29b3c048f881a32f38a785fd4256d48c864346db08326e279237b28d5ca884')
-
-prepare() {
-  cd $pkgname
-  git cherry-pick -n 9d0e3bae096563297c9f51355968f27a67dbfdec # Fix build with 
boost 1.70
-}
-
-build() {
-  cd "$srcdir/$pkgname"
-
-  mkdir build && cd build
-  cmake .. \
-  -DCMAKE_INSTALL_PREFIX=/usr \
-  -DENABLE_OMP=ON \
-  -DENABLE_TOOLS=ON \
-  -DMANDIR=share/man \
-  -DFIFO_DIR=/var/run/wesnothd \
-  -DENABLE_DISPLAY_REVISION=OFF
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname"
-
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  install -Dm644 "$srcdir/wesnothd.tmpfiles.conf" 
"$pkgdir/usr/lib/tmpfiles.d/wesnothd.conf"
-  install -Dm644 "$srcdir/wesnothd.service" 
"$pkgdir/usr/lib/systemd/system/wesnothd.service"
-}

Copied: wesnoth/repos/community-x86_64/PKGBUILD (from rev 898814, 
wesnoth/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-03-22 04:28:50 UTC (rev 898815)
@@ -0,0 +1,54 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Jan de Groot 
+# Contributor: Tobias Powalowski 
+# Contributor: Jacobo Arvelo 
+# Contributor: Douglas Soares de Andrade 
+
+pkgname=wesnoth
+# NOTE: Odd minor versions are unstable! Do not package those.
+pkgver=1.14.16
+epoch=1
+pkgrel=1
+pkgdesc="A turn-based strategy game on a fantasy world"
+arch=('x86_64')
+license=('GPL')
+url="http://www.wesnoth.org/";
+depends=('sdl2_ttf' 'sdl2_net' 'sdl2_mixer' 'sdl2_image' 'fribidi' 
'boost-libs' 'pango' 'lua52' 'dbus' 'python2')
+makedepends=('boost' 'cmake' 'git')
+replaces=('wesnoth-data')
+options=(!emptydirs)
+source=("git://github.com/wesnoth/wesnoth.git#tag=${pkgver}"
+wesnothd.tmpfiles.conf
+wesnothd.service)
+sha512sums=('SKIP'
+
'6e776bf9d4e6f289b1dddbea03b0cc6972af9e926c8305fac823613b101d7f3bc40f30ab73708e9df355b28cc6459b138f3d8015528796ad94d3571d20dd54ed'
+
'9d648c8bd13a574364b4dede4b1084a2fe1bf50a38ad04aa1a9f72f168915fc67d29b3c048f881a32f38a785fd4256d48c864346db08326e279237b28d5ca884')
+
+prepare() {
+  cd $pkgname
+  git cherry-pick -n 9d0e3bae096563297c9f51355968f27a67dbfdec # Fix build with 
boost 1.70
+}
+
+build() {
+  cd "$srcdir/$pkgname"
+
+  mkdir build && cd build
+  cmake .. \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DENABLE_OMP=ON \
+  -DENABLE_TOOLS=ON \
+  -DMANDIR=share/man \
+  -DFIFO_DIR=/var/run/wesnothd \
+  -DENABLE_DISPLAY_REVISION=OFF
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname"
+
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 "$srcdir/wesnothd.tmpfiles.conf" 
"$pkgdir/usr/lib/tmpfiles.d/wesnothd.conf"
+  install -Dm644 "$srcdir/wesnothd.service" 
"$pkgdir/usr/lib/systemd/system/wesnothd.service"
+}

Deleted: wesnothd.service
===
--- wesnothd.service2021-03-22 04:28:42 UTC (rev 898814)
+++ wesnothd.service2021-03-22 04:28:50

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

2021-03-21 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, March 22, 2021 @ 04:28:42
  Author: svenstaro
Revision: 898814

upgpkg: wesnoth 1:1.14.16-1

Modified:
  wesnoth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-03-22 04:20:24 UTC (rev 898813)
+++ PKGBUILD2021-03-22 04:28:42 UTC (rev 898814)
@@ -6,7 +6,7 @@
 
 pkgname=wesnoth
 # NOTE: Odd minor versions are unstable! Do not package those.
-pkgver=1.14.15
+pkgver=1.14.16
 epoch=1
 pkgrel=1
 pkgdesc="A turn-based strategy game on a fantasy world"


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

2021-03-21 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, March 22, 2021 @ 04:20:24
  Author: svenstaro
Revision: 898813

archrelease: copy trunk to community-any

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

+
 PKGBUILD   |   75 ++-
 openra.install |8 ++---
 2 files changed, 40 insertions(+), 43 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-22 04:20:09 UTC (rev 898812)
+++ PKGBUILD2021-03-22 04:20:24 UTC (rev 898813)
@@ -1,39 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Matthew Bowra-Dean 
-pkgname=openra
-pkgver=20200503
-pkgrel=2
-pkgdesc="An open-source implementation of the Red Alert engine using .NET/Mono 
and OpenGL"
-arch=('any')
-url="http://www.openra.net";
-license=('GPL3')
-install=openra.install
-depends=('mono' 'ttf-dejavu' 'openal' 'libgl' 'freetype2' 'sdl2' 'lua51' 
'hicolor-icon-theme' 'gtk-update-icon-cache'
- 'desktop-file-utils' 'xdg-utils' 'zenity')
-makedepends=('git' 'unzip' 'mono-msbuild')
-options=(!strip)
-source=("git+https://github.com/OpenRA/OpenRA.git#tag=release-${pkgver}";)
-md5sums=('SKIP')
-
-prepare() {
-  cd OpenRA
-
-  make version VERSION="release-${pkgver}"
-}
-
-build() {
-  cd OpenRA
-
-  make dependencies
-  make core
-}
-
-package() {
-  cd OpenRA
-
-  make prefix=/usr DESTDIR="$pkgdir" install-core
-  make prefix=/usr DESTDIR="$pkgdir" install-linux-shortcuts
-  make prefix=/usr DESTDIR="$pkgdir" install-linux-mime
-  make prefix=/usr DESTDIR="$pkgdir" install-linux-appdata
-  make prefix=/usr DESTDIR="$pkgdir" install-man-page
-}

Copied: openra/repos/community-any/PKGBUILD (from rev 898812, 
openra/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-03-22 04:20:24 UTC (rev 898813)
@@ -0,0 +1,36 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Matthew Bowra-Dean 
+pkgname=openra
+pkgver=20210321
+pkgrel=1
+pkgdesc="An open-source implementation of the Red Alert engine using .NET/Mono 
and OpenGL"
+arch=('any')
+url="https://www.openra.net";
+license=('GPL3')
+install=openra.install
+depends=('mono' 'ttf-dejavu' 'openal' 'libgl' 'freetype2' 'sdl2' 'lua51' 
'hicolor-icon-theme' 'gtk-update-icon-cache'
+ 'desktop-file-utils' 'xdg-utils' 'zenity')
+makedepends=('git' 'unzip' 'mono-msbuild')
+options=(!strip)
+source=("git+https://github.com/OpenRA/OpenRA.git#tag=release-${pkgver}";)
+md5sums=('SKIP')
+
+prepare() {
+  cd OpenRA
+
+  make version VERSION="release-${pkgver}"
+}
+
+build() {
+  cd OpenRA
+
+  make TARGETPLATFORM=unix-generic
+}
+
+package() {
+  cd OpenRA
+
+  make prefix=/usr DESTDIR="$pkgdir" install
+  make prefix=/usr DESTDIR="$pkgdir" install-linux-shortcuts
+  make prefix=/usr DESTDIR="$pkgdir" install-linux-appdata
+}

Deleted: openra.install
===
--- openra.install  2021-03-22 04:20:09 UTC (rev 898812)
+++ openra.install  2021-03-22 04:20:24 UTC (rev 898813)
@@ -1,4 +0,0 @@
-post_remove() {
-echo "openra downloaded data files to ~/.openra/Content and you might want"
-echo "to delete those."
-}

Copied: openra/repos/community-any/openra.install (from rev 898812, 
openra/trunk/openra.install)
===
--- openra.install  (rev 0)
+++ openra.install  2021-03-22 04:20:24 UTC (rev 898813)
@@ -0,0 +1,4 @@
+post_remove() {
+echo "openra downloaded data files to ~/.openra/Content and you might want"
+echo "to delete those."
+}


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

2021-03-21 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, March 22, 2021 @ 04:20:09
  Author: svenstaro
Revision: 898812

upgpkg: openra 20210321-1

Modified:
  openra/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-03-22 04:13:58 UTC (rev 898811)
+++ PKGBUILD2021-03-22 04:20:09 UTC (rev 898812)
@@ -1,11 +1,11 @@
 # Maintainer: Sven-Hendrik Haase 
 # Contributor: Matthew Bowra-Dean 
 pkgname=openra
-pkgver=20200503
-pkgrel=2
+pkgver=20210321
+pkgrel=1
 pkgdesc="An open-source implementation of the Red Alert engine using .NET/Mono 
and OpenGL"
 arch=('any')
-url="http://www.openra.net";
+url="https://www.openra.net";
 license=('GPL3')
 install=openra.install
 depends=('mono' 'ttf-dejavu' 'openal' 'libgl' 'freetype2' 'sdl2' 'lua51' 
'hicolor-icon-theme' 'gtk-update-icon-cache'
@@ -24,18 +24,13 @@
 build() {
   cd OpenRA
 
-  # This currently downloads pre-compiled dependencies which I'm not a fan of.
-  # The next version of OpenRA will support compiling against system 
dependencies.
-  make dependencies
-  make core
+  make TARGETPLATFORM=unix-generic
 }
 
 package() {
   cd OpenRA
 
-  make prefix=/usr DESTDIR="$pkgdir" install-core
+  make prefix=/usr DESTDIR="$pkgdir" install
   make prefix=/usr DESTDIR="$pkgdir" install-linux-shortcuts
-  make prefix=/usr DESTDIR="$pkgdir" install-linux-mime
   make prefix=/usr DESTDIR="$pkgdir" install-linux-appdata
-  make prefix=/usr DESTDIR="$pkgdir" install-man-page
 }


[arch-commits] Commit in jedi-language-server/repos/community-any (PKGBUILD PKGBUILD)

2021-03-21 Thread Daniel M. Capella via arch-commits
Date: Monday, March 22, 2021 @ 04:11:34
  Author: polyzen
Revision: 898763

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-22 04:11:34 UTC (rev 898762)
+++ PKGBUILD2021-03-22 04:11:34 UTC (rev 898763)
@@ -1,34 +0,0 @@
-# Maintainer: Daniel M. Capella 
-
-pkgname=jedi-language-server
-pkgver=0.28.6
-pkgrel=1
-pkgdesc='Language server for Jedi'
-arch=('any')
-url=https://github.com/pappasam/jedi-language-server
-license=('MIT')
-depends=('python-click' 'python-docstring-to-markdown' 'python-jedi' 
'python-pygls')
-makedepends=('python-pip' 'python-poetry')
-source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz";)
-sha256sums=('c3aeed7878ccb8a52ba80beeeb8060dade8933cc4a394d9107d669d8c917b8a8')
-b2sums=('2e0541f4e0eb6de78e4ec0205a13858c9fe0162fd4595c9446321ddd1343c0ad295401f8eb88ca350bf8c4933af788b5e0c0f02325110bc44fb5f86e5a8ea2a4')
-
-prepare() {
-  cd $pkgname-$pkgver
-  # Avoid installing files directly under site-packages/
-  sed -i '/include = \["README.md"\]/d' pyproject.toml
-}
-
-build() {
-  cd $pkgname-$pkgver
-  poetry build --format wheel
-}
-
-package() {
-  cd $pkgname-$pkgver
-  export PYTHONHASHSEED=0
-  PIP_CONFIG_FILE=/dev/null pip install --isolated --root="$pkgdir" 
--ignore-installed --no-deps dist/*.whl
-  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: jedi-language-server/repos/community-any/PKGBUILD (from rev 898754, 
jedi-language-server/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-03-22 04:11:34 UTC (rev 898763)
@@ -0,0 +1,35 @@
+# Maintainer: Daniel M. Capella 
+
+pkgname=jedi-language-server
+pkgver=0.28.7
+pkgrel=1
+pkgdesc='Language server for Jedi'
+arch=('any')
+url=https://github.com/pappasam/jedi-language-server
+license=('MIT')
+depends=('python-click' 'python-docstring-to-markdown' 'python-jedi'
+ 'python-pygls')
+makedepends=('python-pip' 'python-poetry')
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz";)
+sha256sums=('7d22a87cf2017f439f872e7d630101969dcff4ef2aa061d10aa697b42de7351c')
+b2sums=('7c1443ffb9950068386768f133972b5de5c6f4dd5fda78f0b73be2f486ff969240d2eb09c8370a381fa862bac3fe867b9a0271901b731221ead482a95e6bb537')
+
+prepare() {
+  cd $pkgname-$pkgver
+  # Avoid installing files directly under site-packages/
+  sed -i '/include = \["README.md"\]/d' pyproject.toml
+}
+
+build() {
+  cd $pkgname-$pkgver
+  poetry build --format wheel
+}
+
+package() {
+  cd $pkgname-$pkgver
+  export PYTHONHASHSEED=0
+  PIP_CONFIG_FILE=/dev/null pip install --isolated --root="$pkgdir" 
--ignore-installed --no-deps dist/*.whl
+  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2021-03-21 Thread Daniel M. Capella via arch-commits
Date: Monday, March 22, 2021 @ 04:11:06
  Author: polyzen
Revision: 898734

upgpkg: jedi-language-server 0.28.7-1

Modified:
  jedi-language-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-03-22 04:11:05 UTC (rev 898733)
+++ PKGBUILD2021-03-22 04:11:06 UTC (rev 898734)
@@ -1,17 +1,18 @@
 # Maintainer: Daniel M. Capella 
 
 pkgname=jedi-language-server
-pkgver=0.28.6
+pkgver=0.28.7
 pkgrel=1
 pkgdesc='Language server for Jedi'
 arch=('any')
 url=https://github.com/pappasam/jedi-language-server
 license=('MIT')
-depends=('python-click' 'python-docstring-to-markdown' 'python-jedi' 
'python-pygls')
+depends=('python-click' 'python-docstring-to-markdown' 'python-jedi'
+ 'python-pygls')
 makedepends=('python-pip' 'python-poetry')
 
source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz";)
-sha256sums=('c3aeed7878ccb8a52ba80beeeb8060dade8933cc4a394d9107d669d8c917b8a8')
-b2sums=('2e0541f4e0eb6de78e4ec0205a13858c9fe0162fd4595c9446321ddd1343c0ad295401f8eb88ca350bf8c4933af788b5e0c0f02325110bc44fb5f86e5a8ea2a4')
+sha256sums=('7d22a87cf2017f439f872e7d630101969dcff4ef2aa061d10aa697b42de7351c')
+b2sums=('7c1443ffb9950068386768f133972b5de5c6f4dd5fda78f0b73be2f486ff969240d2eb09c8370a381fa862bac3fe867b9a0271901b731221ead482a95e6bb537')
 
 prepare() {
   cd $pkgname-$pkgver


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

2021-03-21 Thread Anatol Pomozov via arch-commits
Date: Monday, March 22, 2021 @ 04:07:36
  Author: anatolik
Revision: 898621

archrelease: copy trunk to community-staging-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-22 04:07:17 UTC (rev 898620)
+++ PKGBUILD2021-03-22 04:07:36 UTC (rev 898621)
@@ -1,76 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Ido Rosen 
-# Contributor: Brett Hoerner 
-# Contributor: Jochen Schalanda 
-# Contributor: Mathieu Clabaut 
-# Contributor: helios 
-# Contributor: George Ornbo 
-# Contributor: Niklas Heer 
-# Contributor: Steven Nance 
-
-pkgname=vagrant
-pkgver=2.2.14
-pkgrel=2
-pkgdesc="Build and distribute virtualized development environments"
-arch=('x86_64')
-url="https://vagrantup.com";
-license=('MIT')
-options=('!emptydirs')
-depends=('curl' 'libarchive' 'libssh2' 'libxml2' 'libxslt' 'rsync'
- 'ruby2.6' 'xz' 'perl')
-makedepends=('git' 'go')
-conflicts=('vagrant-substrate')
-replaces=('vagrant-substrate')
-source=($pkgname-$pkgver.tar.gz::https://github.com/mitchellh/$pkgname/archive/v$pkgver.tar.gz
-
"git+https://github.com/mitchellh/vagrant-installers.git#commit=4ddca26";)
-md5sums=('fef064ac4c3aa80ce64addcfc4666196'
- 'SKIP')
-
-build() {
-  cd $pkgname-$pkgver
-  gem-2.6 build $pkgname.gemspec
-
-
-  export GO111MODULE=off # golang 1.16 uses modules by default and packages 
below fail to compile
-  cd "$srcdir"/vagrant-installers/substrate/launcher
-  go get github.com/mitchellh/osext
-
-  go build \
--trimpath \
--buildmode=pie \
--ldflags "-extldflags \"${LDFLAGS}\"" \
--o vagrant
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  INSTALLERS_DIR="$srcdir"/vagrant-installers/substrate
-  EMBEDDED_DIR="$pkgdir"/opt/vagrant/embedded
-
-  install -d "$pkgdir"/usr/{bin,share/bash-completion/completions}
-  install -d "$EMBEDDED_DIR"/rgloader
-  install -Dm644 "$INSTALLERS_DIR"/common/gemrc "$EMBEDDED_DIR"/etc/gemrc
-  install -Dm644 "$INSTALLERS_DIR"/{common,linux}/rgloader/* \
-"$EMBEDDED_DIR"/rgloader/
-
-  echo "{ \"vagrant_version\": \"$pkgver\" }" > "$EMBEDDED_DIR"/manifest.json
-
-  GEM_PATH="$EMBEDDED_DIR"/gems/$pkgver GEM_HOME="$GEM_PATH" \
-  GEMRC="$EMBEDDED_DIR"/etc/gemrc \
-gem-2.6 install $pkgname-$pkgver.gem --no-document --prerelease
-
-  install -Dm755 "$INSTALLERS_DIR"/launcher/vagrant \
-"$pkgdir"/opt/$pkgname/bin/$pkgname
-
-  ln -s /opt/$pkgname/bin/$pkgname "$pkgdir"/usr/bin/$pkgname
-
-  install -Dm644 contrib/bash/completion.sh \
-"$pkgdir"/usr/share/bash-completion/completions/$pkgname
-
-  install -Dm644 contrib/vim/vagrantfile.vim \
-"$pkgdir"/usr/share/vim/vimfiles/ftdetect/vagrantfile.vim
-
-  install -Dm644 LICENSE \
-"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: vagrant/repos/community-staging-x86_64/PKGBUILD (from rev 898620, 
vagrant/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-03-22 04:07:36 UTC (rev 898621)
@@ -0,0 +1,76 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Ido Rosen 
+# Contributor: Brett Hoerner 
+# Contributor: Jochen Schalanda 
+# Contributor: Mathieu Clabaut 
+# Contributor: helios 
+# Contributor: George Ornbo 
+# Contributor: Niklas Heer 
+# Contributor: Steven Nance 
+
+pkgname=vagrant
+pkgver=2.2.14
+pkgrel=3
+pkgdesc="Build and distribute virtualized development environments"
+arch=('x86_64')
+url="https://vagrantup.com";
+license=('MIT')
+options=('!emptydirs')
+depends=('curl' 'libarchive' 'libssh2' 'libxml2' 'libxslt' 'rsync'
+ 'ruby2.7' 'xz' 'perl')
+makedepends=('git' 'go')
+conflicts=('vagrant-substrate')
+replaces=('vagrant-substrate')
+source=($pkgname-$pkgver.tar.gz::https://github.com/mitchellh/$pkgname/archive/v$pkgver.tar.gz
+
"git+https://github.com/mitchellh/vagrant-installers.git#commit=4ddca26";)
+md5sums=('fef064ac4c3aa80ce64addcfc4666196'
+ 'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+  gem-2.7 build $pkgname.gemspec
+
+
+  export GO111MODULE=off # golang 1.16 uses modules by default and packages 
below fail to compile
+  cd "$srcdir"/vagrant-installers/substrate/launcher
+  go get github.com/mitchellh/osext
+
+  go build \
+-trimpath \
+-buildmode=pie \
+-ldflags "-extldflags \"${LDFLAGS}\"" \
+-o vagrant
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  INSTALLERS_DIR="$srcdir"/vagrant-installers/substrate
+  EMBEDDED_DIR="$pkgdir"/opt/vagrant/embedded
+
+  install -d "$pkgdir"/usr/{bin,share/bash-completion/completions}
+  install -d "$EMBEDDED_DIR"/rgloader
+  install -Dm644 "$INSTALLERS_DIR"/common/gemrc "$EMBEDDED_DIR"/etc/gemrc
+  instal

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

2021-03-21 Thread Anatol Pomozov via arch-commits
Date: Monday, March 22, 2021 @ 04:07:17
  Author: anatolik
Revision: 898620

Rebuild vagrant with ruby2.7

ruby2.7-2.7.2-2 provided correct versioned *.so libraries plus corresponding 
*.pc.
Now ruby3 and ruby 2.7 can be installed together while *.pc pointing to its own 
libruby*.so

Modified:
  vagrant/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-03-22 04:05:48 UTC (rev 898619)
+++ PKGBUILD2021-03-22 04:07:17 UTC (rev 898620)
@@ -10,7 +10,7 @@
 
 pkgname=vagrant
 pkgver=2.2.14
-pkgrel=2
+pkgrel=3
 pkgdesc="Build and distribute virtualized development environments"
 arch=('x86_64')
 url="https://vagrantup.com";
@@ -17,7 +17,7 @@
 license=('MIT')
 options=('!emptydirs')
 depends=('curl' 'libarchive' 'libssh2' 'libxml2' 'libxslt' 'rsync'
- 'ruby2.6' 'xz' 'perl')
+ 'ruby2.7' 'xz' 'perl')
 makedepends=('git' 'go')
 conflicts=('vagrant-substrate')
 replaces=('vagrant-substrate')
@@ -28,7 +28,7 @@
 
 build() {
   cd $pkgname-$pkgver
-  gem-2.6 build $pkgname.gemspec
+  gem-2.7 build $pkgname.gemspec
 
 
   export GO111MODULE=off # golang 1.16 uses modules by default and packages 
below fail to compile
@@ -58,7 +58,7 @@
 
   GEM_PATH="$EMBEDDED_DIR"/gems/$pkgver GEM_HOME="$GEM_PATH" \
   GEMRC="$EMBEDDED_DIR"/etc/gemrc \
-gem-2.6 install $pkgname-$pkgver.gem --no-document --prerelease
+gem-2.7 install $pkgname-$pkgver.gem --no-document --prerelease
 
   install -Dm755 "$INSTALLERS_DIR"/launcher/vagrant \
 "$pkgdir"/opt/$pkgname/bin/$pkgname


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

2021-03-21 Thread Evangelos Foutras via arch-commits
Date: Monday, March 22, 2021 @ 04:05:48
  Author: foutrelis
Revision: 898619

archrelease: copy trunk to community-staging-x86_64

Added:
  metasploit/repos/community-staging-x86_64/
  metasploit/repos/community-staging-x86_64/PKGBUILD
(from rev 898618, metasploit/trunk/PKGBUILD)

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

Copied: metasploit/repos/community-staging-x86_64/PKGBUILD (from rev 898618, 
metasploit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-03-22 04:05:48 UTC (rev 898619)
@@ -0,0 +1,64 @@
+# Maintainer: Levente Polyak 
+# Contributor: Sabart Otto - Seberm 
+# Contributor: Tobias Veit - nIcE 
+
+pkgname=metasploit
+pkgver=6.0.34
+pkgrel=2
+pkgdesc='Advanced open-source platform for developing, testing, and using 
exploit code'
+url='https://www.metasploit.com/'
+arch=('x86_64')
+license=('BSD')
+depends=('ruby2.7' 'libpcap' 'postgresql-libs' 'sqlite' 'libxslt' 'libxml2' 
'inetutils' 'git')
+options=('!strip' '!emptydirs')
+source=(https://github.com/rapid7/metasploit-framework/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('59413db730f8aa400501583effc4258cf78701ee252cf8c7bce048463bb5d632e5d3586a99085d9290ec7650c967748761b1a7524c7bf4e940e7bba6075194d3')
+b2sums=('eb2a92912d7018aa60e3b3b570679335658950dc3d7f2ac9db8a254a584ce7b9b55662ad4bcf081425de49dd841326b07163eb2d72108551d24ad45267c4bdde')
+
+prepare() {
+  cd ${pkgname}-framework-${pkgver}
+
+  # https://github.com/bundler/bundler/issues/6882
+  sed -e '/BUNDLED WITH/,+1d' -i Gemfile.lock
+
+  bundle-2.7 config build.nokogiri --use-system-libraries
+  sed 's|git ls-files|find -type f|' -i metasploit-framework.gemspec
+}
+
+build() {
+  cd ${pkgname}-framework-${pkgver}
+  CFLAGS+=" -I/usr/include/libxml2"
+  bundle-2.7 install -j"$(nproc)" --no-cache --deployment
+  find vendor/bundle/ruby -exec chmod o+r '{}' \;
+  find vendor/bundle/ruby \( -name gem_make.out -or -name mkmf.log \) -delete
+}
+
+package() {
+  cd ${pkgname}-framework-${pkgver}
+
+  install -d "${pkgdir}/opt/${pkgname}" "${pkgdir}/usr/bin"
+  cp -r . "${pkgdir}/opt/${pkgname}"
+
+  for f in "${pkgdir}"/opt/${pkgname}/msf*; do
+local _msffile="${pkgdir}/usr/bin/`basename "${f}"`"
+echo -e "#!/bin/sh\nBUNDLE_GEMFILE=/opt/${pkgname}/Gemfile bundle-2.7 exec 
ruby-2.7 /opt/${pkgname}/`basename "${f}"` \"\$@\"" > "${_msffile}"
+chmod 755 "${_msffile}"
+  done
+
+  (cd "${pkgdir}/opt/${pkgname}"
+for f in tools/*/*.rb; do
+  install -Dm 755 "${f}" ".${f}"
+  echo -e "#!/bin/sh\nBUNDLE_GEMFILE=/opt/${pkgname}/Gemfile bundle-2.7 
exec ruby-2.7 /opt/${pkgname}/."${f}" \"\$@\"" > "${f}"
+  chmod 755 "${f}"
+done
+  )
+
+  install -Dm 644 external/zsh/_* -t "${pkgdir}/usr/share/zsh/site-functions"
+  install -Dm 644 LICENSE COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -d "${pkgdir}/usr/share/doc"
+  mv "${pkgdir}/opt/${pkgname}/documentation" 
"${pkgdir}/usr/share/doc/${pkgname}"
+  rm "${pkgdir}/usr/bin/msfupdate"
+  rm -r "${pkgdir}"/opt/metasploit/vendor/bundle/ruby/*/cache
+}
+
+# vim: ts=2 sw=2 et:


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

2021-03-21 Thread Evangelos Foutras via arch-commits
Date: Monday, March 22, 2021 @ 04:05:42
  Author: foutrelis
Revision: 898618

upgpkg: metasploit 6.0.34-2: switch to ruby2.7

Not yet compatible with Ruby 3.0.0; use the ruby2.7 package for now.

Modified:
  metasploit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-03-22 03:59:19 UTC (rev 898617)
+++ PKGBUILD2021-03-22 04:05:42 UTC (rev 898618)
@@ -4,12 +4,12 @@
 
 pkgname=metasploit
 pkgver=6.0.34
-pkgrel=1
+pkgrel=2
 pkgdesc='Advanced open-source platform for developing, testing, and using 
exploit code'
 url='https://www.metasploit.com/'
 arch=('x86_64')
 license=('BSD')
-depends=('ruby' 'libpcap' 'postgresql-libs' 'ruby-bundler' 'sqlite' 'libxslt' 
'libxml2' 'inetutils' 'git')
+depends=('ruby2.7' 'libpcap' 'postgresql-libs' 'sqlite' 'libxslt' 'libxml2' 
'inetutils' 'git')
 options=('!strip' '!emptydirs')
 
source=(https://github.com/rapid7/metasploit-framework/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
 
sha512sums=('59413db730f8aa400501583effc4258cf78701ee252cf8c7bce048463bb5d632e5d3586a99085d9290ec7650c967748761b1a7524c7bf4e940e7bba6075194d3')
@@ -21,7 +21,7 @@
   # https://github.com/bundler/bundler/issues/6882
   sed -e '/BUNDLED WITH/,+1d' -i Gemfile.lock
 
-  bundle config build.nokogiri --use-system-libraries
+  bundle-2.7 config build.nokogiri --use-system-libraries
   sed 's|git ls-files|find -type f|' -i metasploit-framework.gemspec
 }
 
@@ -28,7 +28,7 @@
 build() {
   cd ${pkgname}-framework-${pkgver}
   CFLAGS+=" -I/usr/include/libxml2"
-  bundle install -j"$(nproc)" --no-cache --deployment
+  bundle-2.7 install -j"$(nproc)" --no-cache --deployment
   find vendor/bundle/ruby -exec chmod o+r '{}' \;
   find vendor/bundle/ruby \( -name gem_make.out -or -name mkmf.log \) -delete
 }
@@ -41,7 +41,7 @@
 
   for f in "${pkgdir}"/opt/${pkgname}/msf*; do
 local _msffile="${pkgdir}/usr/bin/`basename "${f}"`"
-echo -e "#!/bin/sh\nBUNDLE_GEMFILE=/opt/${pkgname}/Gemfile bundle exec 
ruby /opt/${pkgname}/`basename "${f}"` \"\$@\"" > "${_msffile}"
+echo -e "#!/bin/sh\nBUNDLE_GEMFILE=/opt/${pkgname}/Gemfile bundle-2.7 exec 
ruby-2.7 /opt/${pkgname}/`basename "${f}"` \"\$@\"" > "${_msffile}"
 chmod 755 "${_msffile}"
   done
 
@@ -48,7 +48,7 @@
   (cd "${pkgdir}/opt/${pkgname}"
 for f in tools/*/*.rb; do
   install -Dm 755 "${f}" ".${f}"
-  echo -e "#!/bin/sh\nBUNDLE_GEMFILE=/opt/${pkgname}/Gemfile bundle exec 
ruby /opt/${pkgname}/."${f}" \"\$@\"" > "${f}"
+  echo -e "#!/bin/sh\nBUNDLE_GEMFILE=/opt/${pkgname}/Gemfile bundle-2.7 
exec ruby-2.7 /opt/${pkgname}/."${f}" \"\$@\"" > "${f}"
   chmod 755 "${f}"
 done
   )


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

2021-03-21 Thread Anatol Pomozov via arch-commits
Date: Monday, March 22, 2021 @ 03:59:19
  Author: anatolik
Revision: 898617

archrelease: copy trunk to community-staging-x86_64

Added:
  ruby2.7/repos/community-staging-x86_64/PKGBUILD
(from rev 898616, ruby2.7/trunk/PKGBUILD)
Deleted:
  ruby2.7/repos/community-staging-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-22 03:58:55 UTC (rev 898616)
+++ PKGBUILD2021-03-22 03:59:19 UTC (rev 898617)
@@ -1,52 +0,0 @@
-# Contributor: Thomas Dziedzic 
-# Contributor: Allan McRae 
-# Contributor: John Proctor 
-# Contributor: Jeramy Rutley 
-
-pkgname=ruby2.7
-pkgver=2.7.2
-pkgrel=1
-arch=(x86_64)
-url='https://www.ruby-lang.org/en/'
-license=(BSD custom)
-depends=(libxcrypt)
-makedepends=(gdbm openssl libffi doxygen graphviz libyaml ttf-dejavu tk)
-options=(!emptydirs)
-source=(https://cache.ruby-lang.org/pub/ruby/${pkgver:0:3}/ruby-${pkgver}.tar.xz)
-sha512sums=('7972278b096aa768c7adf2befd26003e18781a29ca317640317d30d93d6e963ded197724c8e2f1dfe1e838c5647176d414a74732a62e931fb50d6f2e0f777349')
-
-build() {
-  cd ruby-${pkgver}
-
-  ./configure \
---prefix=/usr \
---program-suffix=-2.7 \
---sysconfdir=/etc \
---localstatedir=/var \
---sharedstatedir=/var/lib \
---libexecdir=/usr/lib/ruby \
---enable-shared \
---disable-rpath \
---with-dbm-type=gdbm_compat
-
-  make
-}
-
-package() {
-  pkgdesc='An object-oriented language for quick and easy programming'
-  depends=(gdbm openssl libffi libyaml gmp zlib)
-  optdepends=(
-  'tk: for Ruby/TK'
-  )
-
-  cd ruby-${pkgver}
-
-  make DESTDIR="${pkgdir}" install-nodoc
-
-  install -D -m644 COPYING "${pkgdir}/usr/share/licenses/ruby2.7/LICENSE"
-  install -D -m644 BSDL "${pkgdir}/usr/share/licenses/ruby2.7/BSDL"
-
-  # remove files conflicting with 'ruby' package
-  rm -r "$pkgdir"/usr/share/man/
-  rm "$pkgdir"/usr/lib/libruby.so
-}

Copied: ruby2.7/repos/community-staging-x86_64/PKGBUILD (from rev 898616, 
ruby2.7/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-03-22 03:59:19 UTC (rev 898617)
@@ -0,0 +1,51 @@
+# Contributor: Thomas Dziedzic 
+# Contributor: Allan McRae 
+# Contributor: John Proctor 
+# Contributor: Jeramy Rutley 
+
+pkgname=ruby2.7
+pkgver=2.7.2
+pkgrel=2
+arch=(x86_64)
+pkgdesc='An object-oriented language for quick and easy programming, version 
2.7'
+url='https://www.ruby-lang.org/en/'
+license=(BSD custom)
+depends=(libxcrypt gdbm openssl libffi libyaml gmp zlib)
+optdepends=(
+'tk: for Ruby/TK'
+)
+makedepends=(tk)
+options=(!emptydirs)
+source=(https://cache.ruby-lang.org/pub/ruby/${pkgver:0:3}/ruby-${pkgver}.tar.xz)
+sha512sums=('7972278b096aa768c7adf2befd26003e18781a29ca317640317d30d93d6e963ded197724c8e2f1dfe1e838c5647176d414a74732a62e931fb50d6f2e0f777349')
+
+build() {
+  cd ruby-${pkgver}
+
+  ./configure \
+--prefix=/usr \
+--program-suffix=-2.7 \
+--with-soname=ruby-2.7 \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--sharedstatedir=/var/lib \
+--libexecdir=/usr/lib/ruby \
+--enable-shared \
+--disable-rpath \
+--with-dbm-type=gdbm_compat \
+--disable-install-doc
+
+  make
+}
+
+package() {
+  cd ruby-${pkgver}
+
+  make DESTDIR="${pkgdir}" install-nodoc
+
+  install -D -m644 COPYING "${pkgdir}/usr/share/licenses/ruby2.7/LICENSE"
+  install -D -m644 BSDL "${pkgdir}/usr/share/licenses/ruby2.7/BSDL"
+
+  # remove files conflicting with 'ruby' package
+  rm -r "$pkgdir"/usr/share/man/
+}


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

2021-03-21 Thread Anatol Pomozov via arch-commits
Date: Monday, March 22, 2021 @ 03:58:55
  Author: anatolik
Revision: 898616

upgpkg: ruby2.7 2.7.2-2: Use so library name suffix to avoid conflict with 
libruby.so from ruby3

Modified:
  ruby2.7/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-03-22 02:20:07 UTC (rev 898615)
+++ PKGBUILD2021-03-22 03:58:55 UTC (rev 898616)
@@ -5,12 +5,16 @@
 
 pkgname=ruby2.7
 pkgver=2.7.2
-pkgrel=1
+pkgrel=2
 arch=(x86_64)
+pkgdesc='An object-oriented language for quick and easy programming, version 
2.7'
 url='https://www.ruby-lang.org/en/'
 license=(BSD custom)
-depends=(libxcrypt)
-makedepends=(gdbm openssl libffi doxygen graphviz libyaml ttf-dejavu tk)
+depends=(libxcrypt gdbm openssl libffi libyaml gmp zlib)
+optdepends=(
+'tk: for Ruby/TK'
+)
+makedepends=(tk)
 options=(!emptydirs)
 
source=(https://cache.ruby-lang.org/pub/ruby/${pkgver:0:3}/ruby-${pkgver}.tar.xz)
 
sha512sums=('7972278b096aa768c7adf2befd26003e18781a29ca317640317d30d93d6e963ded197724c8e2f1dfe1e838c5647176d414a74732a62e931fb50d6f2e0f777349')
@@ -21,6 +25,7 @@
   ./configure \
 --prefix=/usr \
 --program-suffix=-2.7 \
+--with-soname=ruby-2.7 \
 --sysconfdir=/etc \
 --localstatedir=/var \
 --sharedstatedir=/var/lib \
@@ -27,18 +32,13 @@
 --libexecdir=/usr/lib/ruby \
 --enable-shared \
 --disable-rpath \
---with-dbm-type=gdbm_compat
+--with-dbm-type=gdbm_compat \
+--disable-install-doc
 
   make
 }
 
 package() {
-  pkgdesc='An object-oriented language for quick and easy programming'
-  depends=(gdbm openssl libffi libyaml gmp zlib)
-  optdepends=(
-  'tk: for Ruby/TK'
-  )
-
   cd ruby-${pkgver}
 
   make DESTDIR="${pkgdir}" install-nodoc
@@ -48,5 +48,4 @@
 
   # remove files conflicting with 'ruby' package
   rm -r "$pkgdir"/usr/share/man/
-  rm "$pkgdir"/usr/lib/libruby.so
 }


[arch-commits] Commit in gvfs/repos/extra-x86_64 (7 files)

2021-03-21 Thread Jan Steffens via arch-commits
Date: Monday, March 22, 2021 @ 02:18:35
  Author: heftig
Revision: 410675

archrelease: copy trunk to extra-x86_64

Added:
  gvfs/repos/extra-x86_64/0001-daemon-Remove-connection-socket-properly.patch
(from rev 410674, 
gvfs/trunk/0001-daemon-Remove-connection-socket-properly.patch)
  gvfs/repos/extra-x86_64/PKGBUILD
(from rev 410674, gvfs/trunk/PKGBUILD)
  gvfs/repos/extra-x86_64/gvfs-nfs.install
(from rev 410674, gvfs/trunk/gvfs-nfs.install)
  gvfs/repos/extra-x86_64/gvfsd.hook
(from rev 410674, gvfs/trunk/gvfsd.hook)
Deleted:
  gvfs/repos/extra-x86_64/PKGBUILD
  gvfs/repos/extra-x86_64/gvfs-nfs.install
  gvfs/repos/extra-x86_64/gvfsd.hook

-+
 0001-daemon-Remove-connection-socket-properly.patch |  140 +++
 PKGBUILD|  335 +-
 gvfs-nfs.install|   14 
 gvfsd.hook  |   22 -
 4 files changed, 329 insertions(+), 182 deletions(-)

Copied: 
gvfs/repos/extra-x86_64/0001-daemon-Remove-connection-socket-properly.patch 
(from rev 410674, 
gvfs/trunk/0001-daemon-Remove-connection-socket-properly.patch)
===
--- 0001-daemon-Remove-connection-socket-properly.patch 
(rev 0)
+++ 0001-daemon-Remove-connection-socket-properly.patch 2021-03-22 02:18:35 UTC 
(rev 410675)
@@ -0,0 +1,140 @@
+From  Mon Sep 17 00:00:00 2001
+From: "Jan Alexander Steffens (heftig)" 
+Date: Mon, 22 Mar 2021 00:18:29 +
+Subject: [PATCH] daemon: Remove connection socket properly
+
+The naming scheme for the non-abstract socket was changed but
+`new_connection_data_free` was not adjusted to match.
+
+`GDBusServer` will remove the socket when it stops, but only if
+`g_dbus_server_start` was called. So we can simplify the process
+somewhat. Also don't bother removing the directory now that all sockets
+share it.
+
+Fixes: 29a00938055d3c7c11533bdda3f84ec51d4cbb32 (daemon: Use named sockets to 
avoid network permission requirement)
+---
+ daemon/gvfsdaemon.c | 48 ++---
+ 1 file changed, 19 insertions(+), 29 deletions(-)
+
+diff --git a/daemon/gvfsdaemon.c b/daemon/gvfsdaemon.c
+index 2533d9fa..f9124a76 100644
+--- a/daemon/gvfsdaemon.c
 b/daemon/gvfsdaemon.c
+@@ -89,9 +89,7 @@ struct _GVfsDaemon
+ 
+ typedef struct {
+   GVfsDaemon *daemon;
+-  char *socket_dir;
+-  GDBusServer *server;
+-  
++
+   GDBusConnection *conn;
+ } NewConnectionData;
+ 
+@@ -656,18 +654,6 @@ static void
+ new_connection_data_free (void *memory)
+ {
+   NewConnectionData *data = memory;
+-  gchar *socket;
+-  
+-  /* Remove the socket and dir after connected */
+-  if (data->socket_dir)
+-{
+-  socket = g_strdup_printf ("%s/socket", data->socket_dir);
+-  g_unlink (socket);
+-  g_free (socket);
+-  rmdir (data->socket_dir);
+-  g_free (data->socket_dir);
+-}
+-
+   g_free (data);
+ }
+ 
+@@ -769,18 +755,21 @@ daemon_peer_connection_setup (GVfsDaemon *daemon,
+ }
+ 
+ static void
+-generate_address (char **address,
+-  char **socket_dir)
++generate_address (gchar **address, gchar **socket_path)
+ {
+-  gchar tmp[9];
++  gchar tmp[16] = "socket-";
++  gchar *socket_dir;
+ 
+-  *socket_dir = g_build_filename (g_get_user_runtime_dir (), "gvfsd", NULL);
+-  g_mkdir (*socket_dir, 0700);
++  gvfs_randomize_string (tmp + 7, 8);
++  tmp[15] = '\0';
+ 
+-  gvfs_randomize_string (tmp, 8);
+-  tmp[8] = '\0';
++  socket_dir = g_build_filename (g_get_user_runtime_dir (), "gvfsd", NULL);
++  g_mkdir (socket_dir, 0700);
+ 
+-  *address = g_strdup_printf ("unix:path=%s/socket-%s", *socket_dir, tmp);
++  *socket_path = g_build_filename (socket_dir, tmp, NULL);
++  *address = g_strdup_printf ("unix:path=%s", *socket_path);
++
++  g_free (socket_dir);
+ }
+ 
+ static gboolean
+@@ -814,50 +803,51 @@ handle_get_connection (GVfsDBusDaemon *object,
+   GError *error;
+   gchar *address1;
+   NewConnectionData *data;
+-  char *socket_dir;
++  gchar *socket_path;
+   gchar *guid;
+-  
+-  generate_address (&address1, &socket_dir);
++
++  generate_address (&address1, &socket_path);
+ 
+   data = g_new (NewConnectionData, 1);
+   data->daemon = daemon;
+-  data->socket_dir = socket_dir;
+   data->conn = NULL;
+ 
+   guid = g_dbus_generate_guid ();
+   error = NULL;
+   server = g_dbus_server_new_sync (address1,
+G_DBUS_SERVER_FLAGS_NONE,
+guid,
+daemon->auth_observer,
+NULL, /* GCancellable */
+&error);
+   g_free (guid);
+ 
+   if (server == NULL)
+ {
+   g_dbus_method_invocation_return_gerror (invocation, error);
+   g_printerr ("daemon: Error creating server at address %s: %s\n", 
address1, 

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

2021-03-21 Thread Jan Steffens via arch-commits
Date: Monday, March 22, 2021 @ 02:18:19
  Author: heftig
Revision: 410674

1.48.0-2: disable admin backend until it's fixed

Added:
  gvfs/trunk/0001-daemon-Remove-connection-socket-properly.patch
Modified:
  gvfs/trunk/PKGBUILD

-+
 0001-daemon-Remove-connection-socket-properly.patch |  140 ++
 PKGBUILD|   11 +
 2 files changed, 149 insertions(+), 2 deletions(-)

Added: 0001-daemon-Remove-connection-socket-properly.patch
===
--- 0001-daemon-Remove-connection-socket-properly.patch 
(rev 0)
+++ 0001-daemon-Remove-connection-socket-properly.patch 2021-03-22 02:18:19 UTC 
(rev 410674)
@@ -0,0 +1,140 @@
+From  Mon Sep 17 00:00:00 2001
+From: "Jan Alexander Steffens (heftig)" 
+Date: Mon, 22 Mar 2021 00:18:29 +
+Subject: [PATCH] daemon: Remove connection socket properly
+
+The naming scheme for the non-abstract socket was changed but
+`new_connection_data_free` was not adjusted to match.
+
+`GDBusServer` will remove the socket when it stops, but only if
+`g_dbus_server_start` was called. So we can simplify the process
+somewhat. Also don't bother removing the directory now that all sockets
+share it.
+
+Fixes: 29a00938055d3c7c11533bdda3f84ec51d4cbb32 (daemon: Use named sockets to 
avoid network permission requirement)
+---
+ daemon/gvfsdaemon.c | 48 ++---
+ 1 file changed, 19 insertions(+), 29 deletions(-)
+
+diff --git a/daemon/gvfsdaemon.c b/daemon/gvfsdaemon.c
+index 2533d9fa..f9124a76 100644
+--- a/daemon/gvfsdaemon.c
 b/daemon/gvfsdaemon.c
+@@ -89,9 +89,7 @@ struct _GVfsDaemon
+ 
+ typedef struct {
+   GVfsDaemon *daemon;
+-  char *socket_dir;
+-  GDBusServer *server;
+-  
++
+   GDBusConnection *conn;
+ } NewConnectionData;
+ 
+@@ -656,18 +654,6 @@ static void
+ new_connection_data_free (void *memory)
+ {
+   NewConnectionData *data = memory;
+-  gchar *socket;
+-  
+-  /* Remove the socket and dir after connected */
+-  if (data->socket_dir)
+-{
+-  socket = g_strdup_printf ("%s/socket", data->socket_dir);
+-  g_unlink (socket);
+-  g_free (socket);
+-  rmdir (data->socket_dir);
+-  g_free (data->socket_dir);
+-}
+-
+   g_free (data);
+ }
+ 
+@@ -769,18 +755,21 @@ daemon_peer_connection_setup (GVfsDaemon *daemon,
+ }
+ 
+ static void
+-generate_address (char **address,
+-  char **socket_dir)
++generate_address (gchar **address, gchar **socket_path)
+ {
+-  gchar tmp[9];
++  gchar tmp[16] = "socket-";
++  gchar *socket_dir;
+ 
+-  *socket_dir = g_build_filename (g_get_user_runtime_dir (), "gvfsd", NULL);
+-  g_mkdir (*socket_dir, 0700);
++  gvfs_randomize_string (tmp + 7, 8);
++  tmp[15] = '\0';
+ 
+-  gvfs_randomize_string (tmp, 8);
+-  tmp[8] = '\0';
++  socket_dir = g_build_filename (g_get_user_runtime_dir (), "gvfsd", NULL);
++  g_mkdir (socket_dir, 0700);
+ 
+-  *address = g_strdup_printf ("unix:path=%s/socket-%s", *socket_dir, tmp);
++  *socket_path = g_build_filename (socket_dir, tmp, NULL);
++  *address = g_strdup_printf ("unix:path=%s", *socket_path);
++
++  g_free (socket_dir);
+ }
+ 
+ static gboolean
+@@ -814,50 +803,51 @@ handle_get_connection (GVfsDBusDaemon *object,
+   GError *error;
+   gchar *address1;
+   NewConnectionData *data;
+-  char *socket_dir;
++  gchar *socket_path;
+   gchar *guid;
+-  
+-  generate_address (&address1, &socket_dir);
++
++  generate_address (&address1, &socket_path);
+ 
+   data = g_new (NewConnectionData, 1);
+   data->daemon = daemon;
+-  data->socket_dir = socket_dir;
+   data->conn = NULL;
+ 
+   guid = g_dbus_generate_guid ();
+   error = NULL;
+   server = g_dbus_server_new_sync (address1,
+G_DBUS_SERVER_FLAGS_NONE,
+guid,
+daemon->auth_observer,
+NULL, /* GCancellable */
+&error);
+   g_free (guid);
+ 
+   if (server == NULL)
+ {
+   g_dbus_method_invocation_return_gerror (invocation, error);
+   g_printerr ("daemon: Error creating server at address %s: %s\n", 
address1, error->message);
+   g_error_free (error);
+   goto error_out;
+ }
+ 
+   g_dbus_server_start (server);
+-  data->server = server;
+ 
+   g_signal_connect (server, "new-connection", G_CALLBACK 
(daemon_new_connection_func), data);
+-  
++
+   gvfs_dbus_daemon_complete_get_connection (object,
+ invocation,
+ address1,
+ "");
+ 
+   g_free (address1);
++  g_free (socket_path);
+   return TRUE;
+ 
+  error_out:
+   new_connection_data_free (data);
+   g_free (address1);
++  g_unlink (socket_path);
++  g_free (socket_path);
+   retu

[arch-commits] Commit in ruby-rack-test/repos (5 files)

2021-03-21 Thread Evangelos Foutras via arch-commits
Date: Monday, March 22, 2021 @ 00:30:12
  Author: foutrelis
Revision: 898606

archrelease: copy trunk to community-staging-any

Added:
  ruby-rack-test/repos/community-staging-any/
  ruby-rack-test/repos/community-staging-any/PKGBUILD
(from rev 898605, ruby-rack-test/trunk/PKGBUILD)
  ruby-rack-test/repos/community-staging-any/disable-broken-test.patch
(from rev 898605, ruby-rack-test/trunk/disable-broken-test.patch)
  ruby-rack-test/repos/community-staging-any/disable-rubocop.patch
(from rev 898605, ruby-rack-test/trunk/disable-rubocop.patch)
  ruby-rack-test/repos/community-staging-any/disable-simplecov.patch
(from rev 898605, ruby-rack-test/trunk/disable-simplecov.patch)

---+
 PKGBUILD  |   57 
 disable-broken-test.patch |   23 +
 disable-rubocop.patch |   20 +++
 disable-simplecov.patch   |   16 
 4 files changed, 116 insertions(+)

Copied: ruby-rack-test/repos/community-staging-any/PKGBUILD (from rev 898605, 
ruby-rack-test/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2021-03-22 00:30:12 UTC (rev 898606)
@@ -0,0 +1,57 @@
+# Maintainer: Tim Meusel 
+
+_gemname='rack-test'
+pkgname="ruby-${_gemname}"
+pkgver=1.1.0
+pkgrel=4
+pkgdesc='small, simple testing API for Rack apps'
+arch=('any')
+url='https://github.com/rack/rack-test'
+license=('MIT')
+depends=('ruby' 'ruby-rack')
+makedepends=('ruby-rdoc' 'ruby-rake')
+checkdepends=('ruby-rspec' 'ruby-sinatra')
+options=('!emptydirs')
+source=("${url}/archive/v${pkgver}/${_gemname}-v${pkgver}.tar.gz" 
'disable-rubocop.patch' 'disable-simplecov.patch' 'disable-broken-test.patch')
+sha512sums=('36d947d9b13d33ee8322e5b9d18fe8266787ccb7703f1fafadc040123e34dd44e98e7faf8b6dd816e51ed167065b2ffe79e9bcee74564dc324ba2b7dba76f82a'
+
'b1f09db04057846e7437b09a10ba38c792cbbbfd7c9fe938237d922ef72c02e0078f6a9542532b41b2f968680d539f766646995dce0a1d11ec7ab1673bc86490'
+
'5bc69c8b560bb4078e62db781698603f3f5a5722c8c1cf9912defed4862c42012db91945d852ff1ca14579f1d2b30a0978d523c35e366171542dc8afa7ef6280'
+
'09925db54171a46483ca1f823a2f60a375faec175dd1d91c312260316ee1b9a615d971bc5833c4007458ea576069f883e5280cd8f0cfc22eb9c8e05008c839f5')
+
+prepare() {
+  cd "${srcdir}/${_gemname}-${pkgver}"
+  # allow latest dependencies
+  sed --in-place 's|~>|>=|g' "${_gemname}.gemspec"
+
+  # drop rubocop. We don't have it in the repos and it doesn't add any value 
during builds
+  patch -p1 -N -i "${srcdir}/disable-rubocop.patch"
+  # drop coverage reporting. We don't have simplecov in our repos
+  patch -p1 -N -i "${srcdir}/disable-simplecov.patch"
+  # we built based on an archive, not a git repo
+  sed --in-place 's/git ls-files/find/' "${_gemname}.gemspec"
+  # disable one test that also fails upstream
+  # https://travis-ci.org/github/rack/rack-test/jobs/751430232#L346
+  patch -p1 -N -i "${srcdir}/disable-broken-test.patch"
+}
+
+build() {
+  cd "${srcdir}/${_gemname}-${pkgver}"
+  gem build "${_gemname}.gemspec"
+}
+
+check() {
+  cd "${srcdir}/${_gemname}-${pkgver}"
+  rake spec
+}
+
+package() {
+cd "${srcdir}/${_gemname}-${pkgver}"
+  local _gemdir="$(gem env gemdir)"
+  gem install --verbose --ignore-dependencies --no-user-install --install-dir 
"${pkgdir}/${_gemdir}" --bindir "${pkgdir}/usr/bin" "${_gemname}-${pkgver}.gem"
+
+  install -Dm 644 MIT-LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}/"
+
+  install -Dm 644 README.md History.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+
+  rm -rf "${pkgdir}/${_gemdir}/cache"
+}

Copied: ruby-rack-test/repos/community-staging-any/disable-broken-test.patch 
(from rev 898605, ruby-rack-test/trunk/disable-broken-test.patch)
===
--- community-staging-any/disable-broken-test.patch 
(rev 0)
+++ community-staging-any/disable-broken-test.patch 2021-03-22 00:30:12 UTC 
(rev 898606)
@@ -0,0 +1,23 @@
+diff --git a/spec/rack/test_spec.rb b/spec/rack/test_spec.rb
+index a073c4d..7d28676 100644
+--- a/spec/rack/test_spec.rb
 b/spec/rack/test_spec.rb
+@@ -163,18 +163,6 @@ describe Rack::Test::Session do
+ end
+   end
+ 
+-  it "closes response's body" do
+-body = CloseableBody.new
+-expect(body).to receive(:close)
+-
+-app = lambda do |_env|
+-  [200, { 'Content-Type' => 'text/html', 'Content-Length' => '13' }, 
body]
+-end
+-
+-session = Rack::Test::Session.new(Rack::MockSession.new(app))
+-session.request('/')
+-  end
+-
+   it "closes response's body after iteration" do
+ app = lambda do |_env|
+   [200, { 'Content-Type' => 'text/html', 'Content-Length' => '13' }, 
CloseableBody.new]

Copied: ruby-rack-test/repos/community-st

[arch-commits] Commit in ruby-rack-test/trunk (PKGBUILD)

2021-03-21 Thread Evangelos Foutras via arch-commits
Date: Monday, March 22, 2021 @ 00:30:05
  Author: foutrelis
Revision: 898605

upgpkg: ruby-rack-test 1.1.0-4: Ruby 3.0.0 rebuild

Modified:
  ruby-rack-test/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-03-22 00:29:10 UTC (rev 898604)
+++ PKGBUILD2021-03-22 00:30:05 UTC (rev 898605)
@@ -3,7 +3,7 @@
 _gemname='rack-test'
 pkgname="ruby-${_gemname}"
 pkgver=1.1.0
-pkgrel=3
+pkgrel=4
 pkgdesc='small, simple testing API for Rack apps'
 arch=('any')
 url='https://github.com/rack/rack-test'


[arch-commits] Commit in ruby-mustermann/repos/community-staging-any (2 files)

2021-03-21 Thread Evangelos Foutras via arch-commits
Date: Monday, March 22, 2021 @ 00:29:10
  Author: foutrelis
Revision: 898604

archrelease: copy trunk to community-staging-any

Added:
  ruby-mustermann/repos/community-staging-any/PKGBUILD
(from rev 898603, ruby-mustermann/trunk/PKGBUILD)
Deleted:
  ruby-mustermann/repos/community-staging-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-22 00:29:06 UTC (rev 898603)
+++ PKGBUILD2021-03-22 00:29:10 UTC (rev 898604)
@@ -1,34 +0,0 @@
-# Maintainer: Jelle van der Waa 
-
-_gemname=mustermann
-pkgname=ruby-${_gemname}
-pkgver=1.0.3
-pkgrel=3
-pkgdesc="Your personal string matching expert"
-arch=(any)
-url="https://github.com/sinatra/mustermann";
-license=('MIT')
-depends=('ruby')
-options=('!emptydirs')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/sinatra/mustermann/archive/v${pkgver}.tar.gz)
-md5sums=('b14ca6ccee20d62002764bf836b30329')
-
-prepare() {
-  cd ${_gemname}-${pkgver}/${_gemname}
-  sed -r 's|~>|>=|g' -i ${_gemname}.gemspec
-  sed 's|git ls-files|find|' -i ${_gemname}.gemspec
-}
-
-build() {
-  cd ${_gemname}-${pkgver}/${_gemname}
-  gem build ${_gemname}.gemspec
-}
-
-package() {
-  cd ${_gemname}-${pkgver}/${_gemname}
-  local _gemdir="$(gem env gemdir)"
-  gem install --ignore-dependencies --no-user-install -i "${pkgdir}${_gemdir}" 
-n "${pkgdir}/usr/bin" ${_gemname}-${pkgver}.gem
-  rm "${pkgdir}/${_gemdir}/cache/${_gemname}-${pkgver}.gem"
-
-  install -Dm 644 ../LICENSE "$pkgdir/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: ruby-mustermann/repos/community-staging-any/PKGBUILD (from rev 898603, 
ruby-mustermann/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-03-22 00:29:10 UTC (rev 898604)
@@ -0,0 +1,34 @@
+# Maintainer: Jelle van der Waa 
+
+_gemname=mustermann
+pkgname=ruby-${_gemname}
+pkgver=1.1.1
+pkgrel=1
+pkgdesc="Your personal string matching expert"
+arch=(any)
+url="https://github.com/sinatra/mustermann";
+license=('MIT')
+depends=('ruby' 'ruby-ruby2_keywords')
+options=('!emptydirs')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/sinatra/mustermann/archive/v${pkgver}.tar.gz)
+md5sums=('f74bfaf56c19fff382431b8e330b912a')
+
+prepare() {
+  cd ${_gemname}-${pkgver}/${_gemname}
+  sed -r 's|~>|>=|g' -i ${_gemname}.gemspec
+  sed 's|git ls-files|find|' -i ${_gemname}.gemspec
+}
+
+build() {
+  cd ${_gemname}-${pkgver}/${_gemname}
+  gem build ${_gemname}.gemspec
+}
+
+package() {
+  cd ${_gemname}-${pkgver}/${_gemname}
+  local _gemdir="$(gem env gemdir)"
+  gem install --ignore-dependencies --no-user-install -i "${pkgdir}${_gemdir}" 
-n "${pkgdir}/usr/bin" ${_gemname}-${pkgver}.gem
+  rm "${pkgdir}/${_gemdir}/cache/${_gemname}-${pkgver}.gem"
+
+  install -Dm 644 ../LICENSE "$pkgdir/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2021-03-21 Thread Evangelos Foutras via arch-commits
Date: Monday, March 22, 2021 @ 00:29:06
  Author: foutrelis
Revision: 898603

upgpkg: ruby-mustermann 1.1.1-1: bump for Ruby 3.0.0

Modified:
  ruby-mustermann/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-03-22 00:23:01 UTC (rev 898602)
+++ PKGBUILD2021-03-22 00:29:06 UTC (rev 898603)
@@ -2,16 +2,16 @@
 
 _gemname=mustermann
 pkgname=ruby-${_gemname}
-pkgver=1.0.3
-pkgrel=3
+pkgver=1.1.1
+pkgrel=1
 pkgdesc="Your personal string matching expert"
 arch=(any)
 url="https://github.com/sinatra/mustermann";
 license=('MIT')
-depends=('ruby')
+depends=('ruby' 'ruby-ruby2_keywords')
 options=('!emptydirs')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/sinatra/mustermann/archive/v${pkgver}.tar.gz)
-md5sums=('b14ca6ccee20d62002764bf836b30329')
+md5sums=('f74bfaf56c19fff382431b8e330b912a')
 
 prepare() {
   cd ${_gemname}-${pkgver}/${_gemname}


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

2021-03-21 Thread Giancarlo Razzolini via arch-commits
Date: Monday, March 22, 2021 @ 00:28:41
  Author: grazzolini
Revision: 410673

archrelease: copy trunk to extra-any

Added:
  archinstall/repos/extra-any/PKGBUILD
(from rev 410672, archinstall/trunk/PKGBUILD)
Deleted:
  archinstall/repos/extra-any/PKGBUILD

--+
 PKGBUILD |  110 ++---
 1 file changed, 55 insertions(+), 55 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-22 00:27:05 UTC (rev 410672)
+++ PKGBUILD2021-03-22 00:28:41 UTC (rev 410673)
@@ -1,55 +0,0 @@
-# Maintainer: Giancarlo Razzolini 
-# Contributor: Anton Hvornum 
-# Contributor: demostanis worlds 
-
-pkgbase=archinstall
-pkgname=('archinstall' 'python-archinstall')
-pkgver=2.1.1
-pkgrel=1
-pkgdesc="Just another guided/automated Arch Linux installer with a twist"
-arch=('any')
-url="https://github.com/Torxed/archinstall";
-license=('GPL')
-depends=('python')
-makedepends=('python-pip' 'python-setuptools' 'python-sphinx')
-source=("$pkgbase-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"
-"$url/releases/download/v$pkgver/$pkgbase-$pkgver.tar.gz.asc")
-md5sums=('8228c1522a4ff0378a1f55fc79bb83dd'
- 'SKIP')
-sha512sums=('08d2f889c688bf296b494680ef9fbda248e1cb35c4c87510fc2307d9061cd0cb6299e7ecf9e82ef9bb00b04b19bcffb37662b983aaacaccf82800c3094cefa5b'
-'SKIP')
-validpgpkeys=('256F73CEEFC6705C6BBAB20E5FBBB32941E3740A') # Anton Hvornum 
(Torxed) 
-
-
-build() {
-   cd "$pkgbase-$pkgver"
-
-python setup.py build
-
-cd docs
-make man
-}
-
-
-package_archinstall() {
-depends=('python-archinstall')
-   cd "$pkgbase-$pkgver"
-
-mkdir -p "${pkgdir}/usr/bin"
-
-# Install a guided profile
-   cat - > "${pkgdir}/usr/bin/archinstall" <
+# Contributor: Anton Hvornum 
+# Contributor: demostanis worlds 
+
+pkgbase=archinstall
+pkgname=('archinstall' 'python-archinstall')
+pkgver=2.1.2
+pkgrel=1
+pkgdesc="Just another guided/automated Arch Linux installer with a twist"
+arch=('any')
+url="https://github.com/Torxed/archinstall";
+license=('GPL')
+depends=('python')
+makedepends=('python-pip' 'python-setuptools' 'python-sphinx')
+source=("$pkgbase-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"
+"$url/releases/download/v$pkgver/$pkgbase-$pkgver.tar.gz.asc")
+md5sums=('327ea3933ca3ce625dae1dee7d7d1b6f'
+ 'SKIP')
+sha512sums=('ef9431dd788039cc997157e553a4c5661197e8e1fea6086f6c48e0538bcf48a3920377a4b77e277e7a57956a44ff833f9883a0f7a8154dd895834aee199791d1'
+'SKIP')
+validpgpkeys=('256F73CEEFC6705C6BBAB20E5FBBB32941E3740A') # Anton Hvornum 
(Torxed) 
+
+
+build() {
+   cd "$pkgbase-$pkgver"
+
+python setup.py build
+
+cd docs
+make man
+}
+
+
+package_archinstall() {
+depends=('python-archinstall')
+   cd "$pkgbase-$pkgver"
+
+mkdir -p "${pkgdir}/usr/bin"
+
+# Install a guided profile
+   cat - > "${pkgdir}/usr/bin/archinstall" <

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

2021-03-21 Thread Giancarlo Razzolini via arch-commits
Date: Monday, March 22, 2021 @ 00:27:05
  Author: grazzolini
Revision: 410672

upgpkg: archinstall 2.1.2-1

Modified:
  archinstall/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-03-21 23:52:57 UTC (rev 410671)
+++ PKGBUILD2021-03-22 00:27:05 UTC (rev 410672)
@@ -4,7 +4,7 @@
 
 pkgbase=archinstall
 pkgname=('archinstall' 'python-archinstall')
-pkgver=2.1.1
+pkgver=2.1.2
 pkgrel=1
 pkgdesc="Just another guided/automated Arch Linux installer with a twist"
 arch=('any')
@@ -14,9 +14,9 @@
 makedepends=('python-pip' 'python-setuptools' 'python-sphinx')
 source=("$pkgbase-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"
 "$url/releases/download/v$pkgver/$pkgbase-$pkgver.tar.gz.asc")
-md5sums=('8228c1522a4ff0378a1f55fc79bb83dd'
+md5sums=('327ea3933ca3ce625dae1dee7d7d1b6f'
  'SKIP')
-sha512sums=('08d2f889c688bf296b494680ef9fbda248e1cb35c4c87510fc2307d9061cd0cb6299e7ecf9e82ef9bb00b04b19bcffb37662b983aaacaccf82800c3094cefa5b'
+sha512sums=('ef9431dd788039cc997157e553a4c5661197e8e1fea6086f6c48e0538bcf48a3920377a4b77e277e7a57956a44ff833f9883a0f7a8154dd895834aee199791d1'
 'SKIP')
 validpgpkeys=('256F73CEEFC6705C6BBAB20E5FBBB32941E3740A') # Anton Hvornum 
(Torxed) 
 


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

2021-03-21 Thread Daniel M. Capella via arch-commits
Date: Monday, March 22, 2021 @ 00:22:38
  Author: polyzen
Revision: 898601

archrelease: copy trunk to community-x86_64

Added:
  newsboat/repos/community-x86_64/PKGBUILD
(from rev 898600, newsboat/trunk/PKGBUILD)
  newsboat/repos/community-x86_64/newsboat.changelog
(from rev 898600, newsboat/trunk/newsboat.changelog)
Deleted:
  newsboat/repos/community-x86_64/PKGBUILD
  newsboat/repos/community-x86_64/newsboat.changelog

+
 PKGBUILD   |   74 ++--
 newsboat.changelog |  186 +--
 2 files changed, 130 insertions(+), 130 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-22 00:22:11 UTC (rev 898600)
+++ PKGBUILD2021-03-22 00:22:38 UTC (rev 898601)
@@ -1,37 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Maintainer: Daniel M. Capella 
-# Contributor: Sven Pfleiderer 
-
-pkgname=newsboat
-pkgver=2.22.1
-pkgrel=1
-pkgdesc="An RSS/Atom feed reader for text terminals"
-arch=('x86_64')
-url="https://newsboat.org/";
-license=('MIT')
-depends=('curl' 'hicolor-icon-theme' 'json-c' 'libxml2' 'sqlite' 'stfl')
-makedepends=('asciidoctor' 'rust' 'swig')
-optdepends=('perl: for pinboard.pl'
-'python: for exportOPMLWithTags.py'
-'ruby: for feedgrabber.rb, heise.rb, and slashdot.rb')
-replaces=('newsbeuter')
-options=('!makeflags')
-changelog=$pkgname.changelog
-source=("https://newsboat.org/releases/$pkgver/$pkgname-$pkgver.tar.xz"{,.asc})
-sha256sums=('8920f41cc53776b67c0e85ad1696b0967f6ac248f3b8913d977942c15d75e690'
-'SKIP')
-validpgpkeys=('B8B1756A0DDBF0760CE67CCF4ED6CD61932B9EBE') # Newsboat project 

-
-build() {
-  cd $pkgname-$pkgver
-
-  make prefix=/usr
-  make doc
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make prefix=/usr DESTDIR="$pkgdir" install
-  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE
-}

Copied: newsboat/repos/community-x86_64/PKGBUILD (from rev 898600, 
newsboat/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-03-22 00:22:38 UTC (rev 898601)
@@ -0,0 +1,37 @@
+# Maintainer: Jaroslav Lichtblau 
+# Maintainer: Daniel M. Capella 
+# Contributor: Sven Pfleiderer 
+
+pkgname=newsboat
+pkgver=2.23
+pkgrel=1
+pkgdesc="An RSS/Atom feed reader for text terminals"
+arch=('x86_64')
+url="https://newsboat.org/";
+license=('MIT')
+depends=('curl' 'hicolor-icon-theme' 'json-c' 'libxml2' 'sqlite' 'stfl')
+makedepends=('asciidoctor' 'rust' 'swig')
+optdepends=('perl: for pinboard.pl'
+'python: for exportOPMLWithTags.py'
+'ruby: for feedgrabber.rb, heise.rb, and slashdot.rb')
+replaces=('newsbeuter')
+options=('!makeflags')
+changelog=$pkgname.changelog
+source=("https://newsboat.org/releases/$pkgver/$pkgname-$pkgver.tar.xz"{,.asc})
+sha256sums=('b997b139d41db2cc5f54346f27c448bee47d6c6228a12ce9cb91c3ffaec7dadc'
+'SKIP')
+validpgpkeys=('B8B1756A0DDBF0760CE67CCF4ED6CD61932B9EBE') # Newsboat project 

+
+build() {
+  cd $pkgname-$pkgver
+
+  make prefix=/usr
+  make doc
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make prefix=/usr DESTDIR="$pkgdir" install
+  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE
+}

Deleted: newsboat.changelog
===
--- newsboat.changelog  2021-03-22 00:22:11 UTC (rev 898600)
+++ newsboat.changelog  2021-03-22 00:22:38 UTC (rev 898601)
@@ -1,93 +0,0 @@
-2020-09-21 Jaroslav Lichtblau 
-   * newsboat 2.21-1
-
-2020-06-24 Jaroslav Lichtblau 
-   * newsboat 2.20.1-1
-
-2020-06-21 Jaroslav Lichtblau 
-   * newsboat 2.20-1
-
-2020-03-23 Jaroslav Lichtblau 
-   * newsboat 2.19-1
-
-2019-12-23 Jaroslav Lichtblau 
-   * newsboat 2.18-1
-
-2019-08-06 Jaroslav Lichtblau 
-   * newsboat 2.16.1-1
-
-2019-03-30 Jaroslav Lichtblau 
-   * newsboat 2.15-1
-
-2019-02-10 Jaroslav Lichtblau 
-   * newsboat 2.14.1-1
-
-2019-01-01 Jaroslav Lichtblau 
-   * newsboat 2.14-1
-
-2018-09-29 Jaroslav Lichtblau 
-   * newsboat 2.13-1
-
-2018-04-10 Jaroslav Lichtblau 
-   * newsboat 2.11.1-1
-
-2018-03-26 Jaroslav Lichtblau 
-   * newsboat 2.11-1
-
-2017-12-27 Jaroslav Lichtblau 
-   * newsboat 2.10.2-1
-
-2017-12-02 Jaroslav Lichtblau 
-   * newsboat 2.10.1-2 FS#56519 fixed
-
-2017-10-21 Jaroslav Lichtblau 
-   * newsboat 2.10.1-1
-
-2017-10-21 Jaroslav Lichtblau 
-   * newsboat 2.10-1 moving over to the new maintained fork of newsbeuter
-
-2015-09-13 Jaroslav Lichtblau 
-   * newsbeuter 2.9-4 ncurses6 re-rebuild
-
-2015-09-13 Jaroslav Lichtblau 
-   * newsbeuter 2.9-3 segmentation fault on podcasts downloads #167 fix
-
-2015-02-19 Jaroslav Lichtblau 
-   * newsbeuter 2.9-1
-
-2014-01-27 Jaroslav Lichtblau 
-   * newsbeuter 2.8-1
-
-2013-09-02 Jaroslav Lichtblau 
-   * newsbeuter 2.7-1
-
-2013

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

2021-03-21 Thread Daniel M. Capella via arch-commits
Date: Monday, March 22, 2021 @ 00:22:11
  Author: polyzen
Revision: 898600

upgpkg: newsboat 2.23-1

Modified:
  newsboat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-03-22 00:08:28 UTC (rev 898599)
+++ PKGBUILD2021-03-22 00:22:11 UTC (rev 898600)
@@ -3,7 +3,7 @@
 # Contributor: Sven Pfleiderer 
 
 pkgname=newsboat
-pkgver=2.22.1
+pkgver=2.23
 pkgrel=1
 pkgdesc="An RSS/Atom feed reader for text terminals"
 arch=('x86_64')
@@ -18,7 +18,7 @@
 options=('!makeflags')
 changelog=$pkgname.changelog
 source=("https://newsboat.org/releases/$pkgver/$pkgname-$pkgver.tar.xz"{,.asc})
-sha256sums=('8920f41cc53776b67c0e85ad1696b0967f6ac248f3b8913d977942c15d75e690'
+sha256sums=('b997b139d41db2cc5f54346f27c448bee47d6c6228a12ce9cb91c3ffaec7dadc'
 'SKIP')
 validpgpkeys=('B8B1756A0DDBF0760CE67CCF4ED6CD61932B9EBE') # Newsboat project 

 


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

2021-03-21 Thread Daniel M. Capella via arch-commits
Date: Monday, March 22, 2021 @ 00:08:28
  Author: polyzen
Revision: 898599

archrelease: copy trunk to community-any

Added:
  xandikos/repos/community-any/PKGBUILD
(from rev 898598, xandikos/trunk/PKGBUILD)
Deleted:
  xandikos/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-22 00:08:09 UTC (rev 898598)
+++ PKGBUILD2021-03-22 00:08:28 UTC (rev 898599)
@@ -1,36 +0,0 @@
-# Maintainer: Daniel M. Capella 
-
-pkgname=xandikos
-pkgver=0.2.5
-pkgrel=1
-pkgdesc='Lightweight yet complete CardDAV/CalDAV server that backs onto a Git 
repository'
-arch=('any')
-url=https://www.xandikos.org/
-license=('GPL3')
-depends=('python-aiohttp' 'python-defusedxml' 'python-dulwich'
- 'python-icalendar' 'python-jinja' 'python-multidict')
-makedepends=('python-setuptools')
-optdepends=('python-prometheus_client: for metrics with the standalone server'
-'uwsgi-plugin-python: for the WSGI interface')
-source=("https://github.com/jelmer/xandikos/archive/v$pkgver/$pkgname-v$pkgver.tar.gz";)
-b2sums=('e1d700adb413df062cb0f13a55fa1a4a3b75f3ce56cbfc91b66e8c350649c260df14d1eb1a39435d8c4b8156728c6504bc545e52a5ad16a8bad37eef12b173ea')
-
-build() {
-  cd xandikos-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd xandikos-$pkgver
-  python -m unittest xandikos.tests.test_suite
-}
-
-package() {
-  cd xandikos-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 -t "$pkgdir"/usr/share/doc/xandikos README.rst
-  install -Dm644 -t "$pkgdir"/usr/share/doc/xandikos/examples examples/*
-  install -Dm644 -t "$pkgdir"/usr/share/man/man1 xandikos.1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xandikos/repos/community-any/PKGBUILD (from rev 898598, 
xandikos/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-03-22 00:08:28 UTC (rev 898599)
@@ -0,0 +1,36 @@
+# Maintainer: Daniel M. Capella 
+
+pkgname=xandikos
+pkgver=0.2.6
+pkgrel=1
+pkgdesc='Lightweight yet complete CardDAV/CalDAV server that backs onto a Git 
repository'
+arch=('any')
+url=https://www.xandikos.org/
+license=('GPL3')
+depends=('python-aiohttp' 'python-defusedxml' 'python-dulwich'
+ 'python-icalendar' 'python-jinja' 'python-multidict')
+makedepends=('python-setuptools')
+optdepends=('python-prometheus_client: for metrics with the standalone server'
+'uwsgi-plugin-python: for the WSGI interface')
+source=("https://files.pythonhosted.org/packages/source/x/xandikos/xandikos-$pkgver.tar.gz";)
+sha256sums=('6b58fbcb2f8c2a0fc2e1f8508160443a46b3db9bf577d0ce5548689138816e23')
+b2sums=('ff7ffe1b5816719eebaaff46ea831a65ffc4342e26df3f3a80aa65eed4f29b57b69411a06f7f9938cf1bb5bc763830dea5e72878449fae5014f14e36068c0fe6')
+
+build() {
+  cd xandikos-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd xandikos-$pkgver
+  python -m unittest xandikos.tests.test_suite
+}
+
+package() {
+  cd xandikos-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 -t "$pkgdir"/usr/share/doc/xandikos README.rst
+  install -Dm644 -t "$pkgdir"/usr/share/doc/xandikos/examples examples/*
+}
+
+# vim:set ts=2 sw=2 et:


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

2021-03-21 Thread Daniel M. Capella via arch-commits
Date: Monday, March 22, 2021 @ 00:08:09
  Author: polyzen
Revision: 898598

upgpkg: xandikos 0.2.6-1

Modified:
  xandikos/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-03-22 00:01:46 UTC (rev 898597)
+++ PKGBUILD2021-03-22 00:08:09 UTC (rev 898598)
@@ -1,7 +1,7 @@
 # Maintainer: Daniel M. Capella 
 
 pkgname=xandikos
-pkgver=0.2.5
+pkgver=0.2.6
 pkgrel=1
 pkgdesc='Lightweight yet complete CardDAV/CalDAV server that backs onto a Git 
repository'
 arch=('any')
@@ -12,8 +12,9 @@
 makedepends=('python-setuptools')
 optdepends=('python-prometheus_client: for metrics with the standalone server'
 'uwsgi-plugin-python: for the WSGI interface')
-source=("https://github.com/jelmer/xandikos/archive/v$pkgver/$pkgname-v$pkgver.tar.gz";)
-b2sums=('e1d700adb413df062cb0f13a55fa1a4a3b75f3ce56cbfc91b66e8c350649c260df14d1eb1a39435d8c4b8156728c6504bc545e52a5ad16a8bad37eef12b173ea')
+source=("https://files.pythonhosted.org/packages/source/x/xandikos/xandikos-$pkgver.tar.gz";)
+sha256sums=('6b58fbcb2f8c2a0fc2e1f8508160443a46b3db9bf577d0ce5548689138816e23')
+b2sums=('ff7ffe1b5816719eebaaff46ea831a65ffc4342e26df3f3a80aa65eed4f29b57b69411a06f7f9938cf1bb5bc763830dea5e72878449fae5014f14e36068c0fe6')
 
 build() {
   cd xandikos-$pkgver
@@ -30,7 +31,6 @@
   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
   install -Dm644 -t "$pkgdir"/usr/share/doc/xandikos README.rst
   install -Dm644 -t "$pkgdir"/usr/share/doc/xandikos/examples examples/*
-  install -Dm644 -t "$pkgdir"/usr/share/man/man1 xandikos.1
 }
 
 # vim:set ts=2 sw=2 et:


[arch-commits] Commit in jedi-language-server/repos/community-any (PKGBUILD PKGBUILD)

2021-03-21 Thread Daniel M. Capella via arch-commits
Date: Monday, March 22, 2021 @ 00:01:46
  Author: polyzen
Revision: 898597

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-22 00:01:25 UTC (rev 898596)
+++ PKGBUILD2021-03-22 00:01:46 UTC (rev 898597)
@@ -1,34 +0,0 @@
-# Maintainer: Daniel M. Capella 
-
-pkgname=jedi-language-server
-pkgver=0.28.4
-pkgrel=1
-pkgdesc='Language server for Jedi'
-arch=('any')
-url=https://github.com/pappasam/jedi-language-server
-license=('MIT')
-depends=('python-click' 'python-docstring-to-markdown' 'python-jedi' 
'python-pygls')
-makedepends=('python-pip' 'python-poetry')
-source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz";)
-sha256sums=('8ef2a5c029ea1ba4fd31a0a542a5f10ddaa43cb0695214161c23b7a5d5e6ccd9')
-b2sums=('43a25ae696f6fb1f32d52040a919cd12ca55ee4faf95059d7bc52b6b1ef3f1d7bbd00a64e7389ed5334c60e05ee8fbe6c3429c0ffd9fd097f2f51feeef8331de')
-
-prepare() {
-  cd $pkgname-$pkgver
-  # Avoid installing files directly under site-packages/
-  sed -i '/include = \["README.md"\]/d' pyproject.toml
-}
-
-build() {
-  cd $pkgname-$pkgver
-  poetry build --format wheel
-}
-
-package() {
-  cd $pkgname-$pkgver
-  export PYTHONHASHSEED=0
-  PIP_CONFIG_FILE=/dev/null pip install --isolated --root="$pkgdir" 
--ignore-installed --no-deps dist/*.whl
-  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: jedi-language-server/repos/community-any/PKGBUILD (from rev 898596, 
jedi-language-server/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-03-22 00:01:46 UTC (rev 898597)
@@ -0,0 +1,34 @@
+# Maintainer: Daniel M. Capella 
+
+pkgname=jedi-language-server
+pkgver=0.28.6
+pkgrel=1
+pkgdesc='Language server for Jedi'
+arch=('any')
+url=https://github.com/pappasam/jedi-language-server
+license=('MIT')
+depends=('python-click' 'python-docstring-to-markdown' 'python-jedi' 
'python-pygls')
+makedepends=('python-pip' 'python-poetry')
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz";)
+sha256sums=('c3aeed7878ccb8a52ba80beeeb8060dade8933cc4a394d9107d669d8c917b8a8')
+b2sums=('2e0541f4e0eb6de78e4ec0205a13858c9fe0162fd4595c9446321ddd1343c0ad295401f8eb88ca350bf8c4933af788b5e0c0f02325110bc44fb5f86e5a8ea2a4')
+
+prepare() {
+  cd $pkgname-$pkgver
+  # Avoid installing files directly under site-packages/
+  sed -i '/include = \["README.md"\]/d' pyproject.toml
+}
+
+build() {
+  cd $pkgname-$pkgver
+  poetry build --format wheel
+}
+
+package() {
+  cd $pkgname-$pkgver
+  export PYTHONHASHSEED=0
+  PIP_CONFIG_FILE=/dev/null pip install --isolated --root="$pkgdir" 
--ignore-installed --no-deps dist/*.whl
+  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2021-03-21 Thread Daniel M. Capella via arch-commits
Date: Monday, March 22, 2021 @ 00:01:25
  Author: polyzen
Revision: 898596

upgpkg: jedi-language-server 0.28.6-1

Modified:
  jedi-language-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-03-21 23:54:33 UTC (rev 898595)
+++ PKGBUILD2021-03-22 00:01:25 UTC (rev 898596)
@@ -1,7 +1,7 @@
 # Maintainer: Daniel M. Capella 
 
 pkgname=jedi-language-server
-pkgver=0.28.4
+pkgver=0.28.6
 pkgrel=1
 pkgdesc='Language server for Jedi'
 arch=('any')
@@ -10,8 +10,8 @@
 depends=('python-click' 'python-docstring-to-markdown' 'python-jedi' 
'python-pygls')
 makedepends=('python-pip' 'python-poetry')
 
source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz";)
-sha256sums=('8ef2a5c029ea1ba4fd31a0a542a5f10ddaa43cb0695214161c23b7a5d5e6ccd9')
-b2sums=('43a25ae696f6fb1f32d52040a919cd12ca55ee4faf95059d7bc52b6b1ef3f1d7bbd00a64e7389ed5334c60e05ee8fbe6c3429c0ffd9fd097f2f51feeef8331de')
+sha256sums=('c3aeed7878ccb8a52ba80beeeb8060dade8933cc4a394d9107d669d8c917b8a8')
+b2sums=('2e0541f4e0eb6de78e4ec0205a13858c9fe0162fd4595c9446321ddd1343c0ad295401f8eb88ca350bf8c4933af788b5e0c0f02325110bc44fb5f86e5a8ea2a4')
 
 prepare() {
   cd $pkgname-$pkgver


[arch-commits] Commit in fcitx5-table-extra/repos/community-any (PKGBUILD PKGBUILD)

2021-03-21 Thread Felix Yan via arch-commits
Date: Sunday, March 21, 2021 @ 23:54:33
  Author: felixonmars
Revision: 898595

archrelease: copy trunk to community-any

Added:
  fcitx5-table-extra/repos/community-any/PKGBUILD
(from rev 898594, fcitx5-table-extra/trunk/PKGBUILD)
Deleted:
  fcitx5-table-extra/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-21 23:54:21 UTC (rev 898594)
+++ PKGBUILD2021-03-21 23:54:33 UTC (rev 898595)
@@ -1,28 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: csslayer 
-
-pkgname=fcitx5-table-extra
-pkgver=5.0.2
-pkgrel=1
-pkgdesc="Extra tables for Fcitx5"
-arch=('any')
-url="https://github.com/fcitx/fcitx5-table-extra";
-license=('GPL')
-depends=('fcitx5-chinese-addons')
-makedepends=('extra-cmake-modules' 'boost')
-source=("https://download.fcitx-im.org/fcitx5/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
-sha512sums=('74103b99470887c66b064986069c6b3299e461e42e469e86d2ea9ba043789396616debaad037ad6bad66e16cfd520ba96a18ef150728ce50be2727cfe8e40b2e'
-'SKIP')
-validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9') # Weng Xuetian 

-
-build(){
-  cd $pkgname-$pkgver
-
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib .
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: fcitx5-table-extra/repos/community-any/PKGBUILD (from rev 898594, 
fcitx5-table-extra/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-03-21 23:54:33 UTC (rev 898595)
@@ -0,0 +1,28 @@
+# Maintainer: Felix Yan 
+# Contributor: csslayer 
+
+pkgname=fcitx5-table-extra
+pkgver=5.0.3
+pkgrel=1
+pkgdesc="Extra tables for Fcitx5"
+arch=('any')
+url="https://github.com/fcitx/fcitx5-table-extra";
+license=('GPL')
+depends=('fcitx5-chinese-addons')
+makedepends=('extra-cmake-modules' 'boost')
+source=("https://download.fcitx-im.org/fcitx5/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
+sha512sums=('27a141632c93f7ec972bf366d79f1847871795e1c4fc4a2759938f0e8106b4f6701c4b11ce2857e6c2cc61880dabc3388d82971e89f6390f09c2745e63d88aa7'
+'SKIP')
+validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9') # Weng Xuetian 

+
+build(){
+  cd $pkgname-$pkgver
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib .
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in fcitx5-table-extra/trunk (PKGBUILD)

2021-03-21 Thread Felix Yan via arch-commits
Date: Sunday, March 21, 2021 @ 23:54:21
  Author: felixonmars
Revision: 898594

upgpkg: fcitx5-table-extra 5.0.3-1

Modified:
  fcitx5-table-extra/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-03-21 23:53:58 UTC (rev 898593)
+++ PKGBUILD2021-03-21 23:54:21 UTC (rev 898594)
@@ -2,7 +2,7 @@
 # Contributor: csslayer 
 
 pkgname=fcitx5-table-extra
-pkgver=5.0.2
+pkgver=5.0.3
 pkgrel=1
 pkgdesc="Extra tables for Fcitx5"
 arch=('any')
@@ -11,7 +11,7 @@
 depends=('fcitx5-chinese-addons')
 makedepends=('extra-cmake-modules' 'boost')
 
source=("https://download.fcitx-im.org/fcitx5/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
-sha512sums=('74103b99470887c66b064986069c6b3299e461e42e469e86d2ea9ba043789396616debaad037ad6bad66e16cfd520ba96a18ef150728ce50be2727cfe8e40b2e'
+sha512sums=('27a141632c93f7ec972bf366d79f1847871795e1c4fc4a2759938f0e8106b4f6701c4b11ce2857e6c2cc61880dabc3388d82971e89f6390f09c2745e63d88aa7'
 'SKIP')
 validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9') # Weng Xuetian 

 


[arch-commits] Commit in python-openapi-spec-validator/trunk (PKGBUILD)

2021-03-21 Thread Felix Yan via arch-commits
Date: Sunday, March 21, 2021 @ 23:53:58
  Author: felixonmars
Revision: 898593

upgpkg: python-openapi-spec-validator 0.3.0-1

Modified:
  python-openapi-spec-validator/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-03-21 23:51:59 UTC (rev 898592)
+++ PKGBUILD2021-03-21 23:53:58 UTC (rev 898593)
@@ -1,8 +1,8 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-openapi-spec-validator
-pkgver=0.2.9
-pkgrel=3
+pkgver=0.3.0
+pkgrel=1
 pkgdesc="A Python library that validates OpenAPI Specs against the OpenAPI 2.0 
(aka Swagger) and OpenAPI 3.0.0 specification"
 url="https://github.com/p1c2u/openapi-spec-validator";
 license=('Apache')
@@ -12,7 +12,7 @@
 checkdepends=('python-pytest-runner' 'python-mock' 'python-pytest-flake8' 
'python-pytest-cov'
   'python-tox')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/p1c2u/openapi-spec-validator/archive/$pkgver.tar.gz";)
-sha512sums=('29c6e6d343895069317ea69ade3e370416c8172db432187e6b64957468a9a1c69de510990f791ffeadb00591cc4bd2ebaed7ef0120fb9f6c3ed3fe25f6c28261')
+sha512sums=('9305d402a7ad69f94e28bed6476ba03095789700c79d8bf5c9db0308be2559d444eb1130d21db10dc1700baf1ef9151933eef8b2fd9ca6cb796fe8e0f9375326')
 
 build() {
   cd openapi-spec-validator-$pkgver


[arch-commits] Commit in python-idna/repos/testing-any (PKGBUILD PKGBUILD)

2021-03-21 Thread Felix Yan via arch-commits
Date: Sunday, March 21, 2021 @ 23:52:57
  Author: felixonmars
Revision: 410671

archrelease: copy trunk to testing-any

Added:
  python-idna/repos/testing-any/PKGBUILD
(from rev 410670, python-idna/trunk/PKGBUILD)
Deleted:
  python-idna/repos/testing-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-21 23:52:45 UTC (rev 410670)
+++ PKGBUILD2021-03-21 23:52:57 UTC (rev 410671)
@@ -1,33 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-idna
-pkgver=3.0
-pkgrel=1
-pkgdesc="Internationalized Domain Names in Applications (IDNA)"
-arch=('any')
-license=('BSD')
-url="https://github.com/kjd/idna";
-depends=('python')
-makedepends=('python-setuptools')
-source=("https://pypi.io/packages/source/i/idna/idna-$pkgver.tar.gz";)
-sha512sums=('2ed384e75fb3d873a19c6ee49915a48a757b3617227015f92f5e21b130cf30816ce3abf25d9ffd8931e080e645416fb0551b1be18a2d0233e02bce2e4b6556f3')
-
-prepare() {
-   rm -r idna-$pkgver/*.egg-info
-}
-
-build() {
-   cd idna-$pkgver
-   python setup.py build
-}
-
-check() {
-   cd idna-$pkgver
-   python setup.py test
-}
- 
-package() {
-   cd idna-$pkgver
-   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-   #install -Dm644 LICENSE.md -t "$pkgdir"/usr/share/licenses/$pkgname/
-}

Copied: python-idna/repos/testing-any/PKGBUILD (from rev 410670, 
python-idna/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-03-21 23:52:57 UTC (rev 410671)
@@ -0,0 +1,33 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-idna
+pkgver=3.1
+pkgrel=1
+pkgdesc="Internationalized Domain Names in Applications (IDNA)"
+arch=('any')
+license=('BSD')
+url="https://github.com/kjd/idna";
+depends=('python')
+makedepends=('python-setuptools')
+source=("https://pypi.io/packages/source/i/idna/idna-$pkgver.tar.gz";)
+sha512sums=('23c02520d00a99855d552a9b9def529f0baeec7d27e8036c544dd654ade15243fd5c9e5ad02e73b83a9ca3bb335ab2584233d17345a6a5e6d5ac089e8ac81e8a')
+
+prepare() {
+   rm -r idna-$pkgver/*.egg-info
+}
+
+build() {
+   cd idna-$pkgver
+   python setup.py build
+}
+
+check() {
+   cd idna-$pkgver
+   python setup.py test
+}
+ 
+package() {
+   cd idna-$pkgver
+   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+   #install -Dm644 LICENSE.md -t "$pkgdir"/usr/share/licenses/$pkgname/
+}


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

2021-03-21 Thread Felix Yan via arch-commits
Date: Sunday, March 21, 2021 @ 23:52:45
  Author: felixonmars
Revision: 410670

upgpkg: python-idna 3.1-1

Modified:
  python-idna/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-03-21 23:50:21 UTC (rev 410669)
+++ PKGBUILD2021-03-21 23:52:45 UTC (rev 410670)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-idna
-pkgver=3.0
+pkgver=3.1
 pkgrel=1
 pkgdesc="Internationalized Domain Names in Applications (IDNA)"
 arch=('any')
@@ -10,7 +10,7 @@
 depends=('python')
 makedepends=('python-setuptools')
 source=("https://pypi.io/packages/source/i/idna/idna-$pkgver.tar.gz";)
-sha512sums=('2ed384e75fb3d873a19c6ee49915a48a757b3617227015f92f5e21b130cf30816ce3abf25d9ffd8931e080e645416fb0551b1be18a2d0233e02bce2e4b6556f3')
+sha512sums=('23c02520d00a99855d552a9b9def529f0baeec7d27e8036c544dd654ade15243fd5c9e5ad02e73b83a9ca3bb335ab2584233d17345a6a5e6d5ac089e8ac81e8a')
 
 prepare() {
rm -r idna-$pkgver/*.egg-info


[arch-commits] Commit in fcitx5-table-other/repos/community-any (PKGBUILD PKGBUILD)

2021-03-21 Thread Felix Yan via arch-commits
Date: Sunday, March 21, 2021 @ 23:51:59
  Author: felixonmars
Revision: 898592

archrelease: copy trunk to community-any

Added:
  fcitx5-table-other/repos/community-any/PKGBUILD
(from rev 898591, fcitx5-table-other/trunk/PKGBUILD)
Deleted:
  fcitx5-table-other/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-21 23:51:47 UTC (rev 898591)
+++ PKGBUILD2021-03-21 23:51:59 UTC (rev 898592)
@@ -1,28 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: csslayer 
-
-pkgname=fcitx5-table-other
-pkgver=5.0.3
-pkgrel=1
-pkgdesc="Other tables for Fcitx5"
-arch=('any')
-url="https://github.com/fcitx/fcitx5-table-other";
-license=('GPL')
-depends=('fcitx5-chinese-addons')
-makedepends=('extra-cmake-modules' 'boost')
-source=("https://download.fcitx-im.org/fcitx5/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
-sha512sums=('1a15dbc5a50eefc108f96c718c608c2fc96314a2ca53e9950d7e9b26884f6661cf38810572249d0e82a2fda42c5e28ed8cf24ef4c75b45fb607e5835ff99a588'
-'SKIP')
-validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9') # Weng Xuetian 

-
-build(){
-  cd $pkgname-$pkgver
-
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib .
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: fcitx5-table-other/repos/community-any/PKGBUILD (from rev 898591, 
fcitx5-table-other/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-03-21 23:51:59 UTC (rev 898592)
@@ -0,0 +1,28 @@
+# Maintainer: Felix Yan 
+# Contributor: csslayer 
+
+pkgname=fcitx5-table-other
+pkgver=5.0.4
+pkgrel=1
+pkgdesc="Other tables for Fcitx5"
+arch=('any')
+url="https://github.com/fcitx/fcitx5-table-other";
+license=('GPL')
+depends=('fcitx5-chinese-addons')
+makedepends=('extra-cmake-modules' 'boost')
+source=("https://download.fcitx-im.org/fcitx5/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
+sha512sums=('abc1ad98f0296790714c0e48c5466567af803c6de5da8fcf26f7f22a4b84ceca98e11784d9f090d15a320843c844a28ec5e6b304cc1be6b50c06e6d46dd590fb'
+'SKIP')
+validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9') # Weng Xuetian 

+
+build(){
+  cd $pkgname-$pkgver
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib .
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in fcitx5-table-other/trunk (PKGBUILD)

2021-03-21 Thread Felix Yan via arch-commits
Date: Sunday, March 21, 2021 @ 23:51:47
  Author: felixonmars
Revision: 898591

upgpkg: fcitx5-table-other 5.0.4-1

Modified:
  fcitx5-table-other/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-03-21 23:51:42 UTC (rev 898590)
+++ PKGBUILD2021-03-21 23:51:47 UTC (rev 898591)
@@ -2,7 +2,7 @@
 # Contributor: csslayer 
 
 pkgname=fcitx5-table-other
-pkgver=5.0.3
+pkgver=5.0.4
 pkgrel=1
 pkgdesc="Other tables for Fcitx5"
 arch=('any')
@@ -11,7 +11,7 @@
 depends=('fcitx5-chinese-addons')
 makedepends=('extra-cmake-modules' 'boost')
 
source=("https://download.fcitx-im.org/fcitx5/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
-sha512sums=('1a15dbc5a50eefc108f96c718c608c2fc96314a2ca53e9950d7e9b26884f6661cf38810572249d0e82a2fda42c5e28ed8cf24ef4c75b45fb607e5835ff99a588'
+sha512sums=('abc1ad98f0296790714c0e48c5466567af803c6de5da8fcf26f7f22a4b84ceca98e11784d9f090d15a320843c844a28ec5e6b304cc1be6b50c06e6d46dd590fb'
 'SKIP')
 validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9') # Weng Xuetian 

 


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

2021-03-21 Thread Felix Yan via arch-commits
Date: Sunday, March 21, 2021 @ 23:51:31
  Author: felixonmars
Revision: 898589

upgpkg: fcitx5-unikey 5.0.4-1

Modified:
  fcitx5-unikey/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-03-21 23:50:20 UTC (rev 898588)
+++ PKGBUILD2021-03-21 23:51:31 UTC (rev 898589)
@@ -2,7 +2,7 @@
 # Contributor: csslayer 
 
 pkgname=fcitx5-unikey
-pkgver=5.0.3
+pkgver=5.0.4
 pkgrel=1
 pkgdesc="Unikey engine support for Fcitx5"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 depends=('fcitx5-qt')
 makedepends=('extra-cmake-modules' 'ninja')
 
source=("https://download.fcitx-im.org/fcitx5/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
-sha512sums=('a91cb98df9997df7f2e3e12d3b011dd107d88d3727a01e27e16bb339fb584cfc0ceb7216705dc609e7ecd3cdbf24818339f8a0e374e8b9d6ea2ec685a5bcdea5'
+sha512sums=('4b7fbebd50ba26251c29be3035567eda71ab198ef586138dbe454f0e54680b56a08b44be86bebdebf0e1729b15c5e0800f216da51e68f900a325f203075e89bb'
 'SKIP')
 validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9') # Weng Xuetian 

 


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

2021-03-21 Thread Felix Yan via arch-commits
Date: Sunday, March 21, 2021 @ 23:51:42
  Author: felixonmars
Revision: 898590

archrelease: copy trunk to community-x86_64

Added:
  fcitx5-unikey/repos/community-x86_64/PKGBUILD
(from rev 898589, fcitx5-unikey/trunk/PKGBUILD)
Deleted:
  fcitx5-unikey/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-21 23:51:31 UTC (rev 898589)
+++ PKGBUILD2021-03-21 23:51:42 UTC (rev 898590)
@@ -1,28 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: csslayer 
-
-pkgname=fcitx5-unikey
-pkgver=5.0.3
-pkgrel=1
-pkgdesc="Unikey engine support for Fcitx5"
-arch=('x86_64')
-url="https://github.com/fcitx/fcitx5-unikey";
-license=('GPL')
-depends=('fcitx5-qt')
-makedepends=('extra-cmake-modules' 'ninja')
-source=("https://download.fcitx-im.org/fcitx5/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
-sha512sums=('a91cb98df9997df7f2e3e12d3b011dd107d88d3727a01e27e16bb339fb584cfc0ceb7216705dc609e7ecd3cdbf24818339f8a0e374e8b9d6ea2ec685a5bcdea5'
-'SKIP')
-validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9') # Weng Xuetian 

-
-build(){
-  cd $pkgname-$pkgver
-
-  cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib .
-  ninja
-}
-
-package() {
-  cd $pkgname-$pkgver
-  DESTDIR="$pkgdir" ninja install
-}

Copied: fcitx5-unikey/repos/community-x86_64/PKGBUILD (from rev 898589, 
fcitx5-unikey/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-03-21 23:51:42 UTC (rev 898590)
@@ -0,0 +1,28 @@
+# Maintainer: Felix Yan 
+# Contributor: csslayer 
+
+pkgname=fcitx5-unikey
+pkgver=5.0.4
+pkgrel=1
+pkgdesc="Unikey engine support for Fcitx5"
+arch=('x86_64')
+url="https://github.com/fcitx/fcitx5-unikey";
+license=('GPL')
+depends=('fcitx5-qt')
+makedepends=('extra-cmake-modules' 'ninja')
+source=("https://download.fcitx-im.org/fcitx5/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
+sha512sums=('4b7fbebd50ba26251c29be3035567eda71ab198ef586138dbe454f0e54680b56a08b44be86bebdebf0e1729b15c5e0800f216da51e68f900a325f203075e89bb'
+'SKIP')
+validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9') # Weng Xuetian 

+
+build(){
+  cd $pkgname-$pkgver
+
+  cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib .
+  ninja
+}
+
+package() {
+  cd $pkgname-$pkgver
+  DESTDIR="$pkgdir" ninja install
+}


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

2021-03-21 Thread Felix Yan via arch-commits
Date: Sunday, March 21, 2021 @ 23:50:20
  Author: felixonmars
Revision: 898588

archrelease: copy trunk to community-x86_64

Added:
  fcitx5-sayura/repos/community-x86_64/PKGBUILD
(from rev 898587, fcitx5-sayura/trunk/PKGBUILD)
Deleted:
  fcitx5-sayura/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-21 23:50:09 UTC (rev 898587)
+++ PKGBUILD2021-03-21 23:50:20 UTC (rev 898588)
@@ -1,28 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: csslayer 
-
-pkgname=fcitx5-sayura
-pkgver=5.0.2
-pkgrel=1
-pkgdesc="Sinhala Transe IME engine for Fcitx5"
-arch=('x86_64')
-url="https://github.com/fcitx/fcitx5-sayura";
-license=('GPL')
-depends=('fcitx5')
-makedepends=('extra-cmake-modules')
-source=("https://download.fcitx-im.org/fcitx5/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
-sha512sums=('ec67c5da287773760e5f5000ad3bb6fb6bad300860ec9a4ffc9587b5e0dd01b5f5e0db0d9d012f4474b3cb44f41884886fc2956c41b3a2f45bc82f202a2cb1a1'
-'SKIP')
-validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9') # Weng Xuetian 

-
-build(){
-  cd $pkgname-$pkgver
-
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib .
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: fcitx5-sayura/repos/community-x86_64/PKGBUILD (from rev 898587, 
fcitx5-sayura/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-03-21 23:50:20 UTC (rev 898588)
@@ -0,0 +1,28 @@
+# Maintainer: Felix Yan 
+# Contributor: csslayer 
+
+pkgname=fcitx5-sayura
+pkgver=5.0.3
+pkgrel=1
+pkgdesc="Sinhala Transe IME engine for Fcitx5"
+arch=('x86_64')
+url="https://github.com/fcitx/fcitx5-sayura";
+license=('GPL')
+depends=('fcitx5')
+makedepends=('extra-cmake-modules')
+source=("https://download.fcitx-im.org/fcitx5/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
+sha512sums=('b326dfbc8c2b9e79d08ebca1f74a85333617c1bd0381b198a15f3b75fb0b1a552bbc1ff57cadd1e72baaf3584d4ae915c615fd8698b58a6a406db11f12de9900'
+'SKIP')
+validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9') # Weng Xuetian 

+
+build(){
+  cd $pkgname-$pkgver
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib .
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in marble/repos/kde-unstable-x86_64 (PKGBUILD PKGBUILD)

2021-03-21 Thread Antonio Rojas via arch-commits
Date: Sunday, March 21, 2021 @ 23:50:21
  Author: arojas
Revision: 410669

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  marble/repos/kde-unstable-x86_64/PKGBUILD
(from rev 410668, marble/kde-unstable/PKGBUILD)
Deleted:
  marble/repos/kde-unstable-x86_64/PKGBUILD

--+
 PKGBUILD |  142 ++---
 1 file changed, 71 insertions(+), 71 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-21 23:50:06 UTC (rev 410668)
+++ PKGBUILD2021-03-21 23:50:21 UTC (rev 410669)
@@ -1,71 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Gustavo Alvarez 
-# Contributor: Balló György 
-
-pkgbase=marble
-pkgname=(marble-common marble-qt marble)
-pkgver=21.03.80
-pkgrel=1
-pkgdesc="Desktop Globe"
-arch=(x86_64)
-url="https://www.kde.org/applications/system/marble";
-license=(GPL)
-makedepends=(extra-cmake-modules gpsd kdoctools knewstuff kparts krunner 
libwlocate phonon-qt5
- plasma-workspace qt5-serialport qt5-tools qt5-webengine shapelib 
protobuf)
-source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgbase-$pkgver.tar.xz"{,.sig})
-sha256sums=('4bab7b989fec0ba285989129c498f52cef811dbf94c8984cb5c447306be0708b'
-'SKIP')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

-  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

-  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

-
-build() {
-  cmake -B build -S $pkgbase-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_SYSCONFDIR=/etc \
--DQT_PLUGINS_DIR=lib/qt/plugins \
--DBUILD_TESTING=OFF \
--DBUILD_MARBLE_EXAMPLES=OFF \
--DBUILD_MARBLE_TESTS=OFF \
--DMOBILE=OFF
-  cmake --build build
-}
-
-package_marble-common() {
-  pkgdesc='Common libraries and plugins for Marble'
-  depends=(qt5-svg qt5-webengine phonon-qt5 protobuf)
-  optdepends=('gpsd: GPS based geolocation'
-  'libwlocate: WLAN based geolocation'
-  'qt5-serialport: APRS plugin'
-  'shapelib: SHP plugin')
-
-  DESTDIR="$pkgdir" cmake --install build
-  rm -r "$pkgdir"/usr/share/{config.kcfg,kxmlgui5,metainfo,plasma} \
-"$pkgdir"/usr/bin \
-"$pkgdir"/usr/share/knsrcfiles \
-"$pkgdir"/usr/lib/qt/{qml,plugins/*.so} \
-
"$pkgdir"/usr/share/applications/{marble_geo.desktop,marble_worldwind.desktop,org.kde.marble*.desktop}
 \
-"$pkgdir"/usr/share/kservices5/{marble_part.desktop,plasma*} \
-"$pkgdir"/usr/share/locale/*/LC_MESSAGES/*.mo
-}
-
-package_marble-qt() {
-  pkgdesc+=' (Qt version)'
-  depends=(marble-common)
-
-  DESTDIR="$pkgdir" cmake --install build/src/apps/marble-qt
-}
-
-package_marble() {
-  depends=(marble-common knewstuff kparts)
-  optdepends=('krunner: Krunner plugin')
-  groups=(kde-applications kde-education)
-
-  DESTDIR="$pkgdir" cmake --install build/src/apps/marble-kde
-  DESTDIR="$pkgdir" cmake --install build/src/plasma
-  DESTDIR="$pkgdir" cmake --install build/src/plasmarunner
-  DESTDIR="$pkgdir" cmake --install build/src/thumbnailer
-  rm -r "$pkgdir"/usr/share/{icons,doc}
-}

Copied: marble/repos/kde-unstable-x86_64/PKGBUILD (from rev 410668, 
marble/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-03-21 23:50:21 UTC (rev 410669)
@@ -0,0 +1,71 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Gustavo Alvarez 
+# Contributor: Balló György 
+
+pkgbase=marble
+pkgname=(marble-common marble-qt marble)
+pkgver=21.03.80
+pkgrel=2
+pkgdesc="Desktop Globe"
+arch=(x86_64)
+url="https://www.kde.org/applications/system/marble";
+license=(GPL)
+makedepends=(extra-cmake-modules gpsd kdoctools knewstuff kparts krunner 
libwlocate phonon-qt5
+ plasma-workspace qt5-serialport qt5-tools qt5-webengine shapelib 
protobuf)
+source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgbase-$pkgver.tar.xz"{,.sig})
+sha256sums=('4bab7b989fec0ba285989129c498f52cef811dbf94c8984cb5c447306be0708b'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

+  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

+
+build() {
+  cmake -B build -S $pkgbase-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_SYSCONFDIR=/etc \
+-DQT_PLUGINS_DIR=lib/qt/plugins \
+-DBUILD_TESTING=OFF \
+-DBUILD_MARBLE_EXAMPLES=OFF \
+-DBUILD_MARBLE_TESTS=OFF \
+-DMOBILE=OFF
+  cmake --build build
+}
+
+package_marble-common() {
+  pkgdesc='Common libraries and plugins for Marble'
+  depends=(qt5-svg qt5-webengine phonon-qt5 protobuf)
+ 

[arch-commits] Commit in marble/kde-unstable (PKGBUILD)

2021-03-21 Thread Antonio Rojas via arch-commits
Date: Sunday, March 21, 2021 @ 23:50:06
  Author: arojas
Revision: 410668

Fix conflicts

Modified:
  marble/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-03-21 23:25:24 UTC (rev 410667)
+++ PKGBUILD2021-03-21 23:50:06 UTC (rev 410668)
@@ -7,7 +7,7 @@
 pkgbase=marble
 pkgname=(marble-common marble-qt marble)
 pkgver=21.03.80
-pkgrel=1
+pkgrel=2
 pkgdesc="Desktop Globe"
 arch=(x86_64)
 url="https://www.kde.org/applications/system/marble";
@@ -45,7 +45,7 @@
   rm -r "$pkgdir"/usr/share/{config.kcfg,kxmlgui5,metainfo,plasma} \
 "$pkgdir"/usr/bin \
 "$pkgdir"/usr/share/knsrcfiles \
-"$pkgdir"/usr/lib/qt/{qml,plugins/*.so} \
+"$pkgdir"/usr/lib/qt/{qml,plugins/*.so,plugins/kf5} \
 
"$pkgdir"/usr/share/applications/{marble_geo.desktop,marble_worldwind.desktop,org.kde.marble*.desktop}
 \
 "$pkgdir"/usr/share/kservices5/{marble_part.desktop,plasma*} \
 "$pkgdir"/usr/share/locale/*/LC_MESSAGES/*.mo


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

2021-03-21 Thread Felix Yan via arch-commits
Date: Sunday, March 21, 2021 @ 23:50:09
  Author: felixonmars
Revision: 898587

upgpkg: fcitx5-sayura 5.0.3-1

Modified:
  fcitx5-sayura/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-03-21 23:50:03 UTC (rev 898586)
+++ PKGBUILD2021-03-21 23:50:09 UTC (rev 898587)
@@ -2,7 +2,7 @@
 # Contributor: csslayer 
 
 pkgname=fcitx5-sayura
-pkgver=5.0.2
+pkgver=5.0.3
 pkgrel=1
 pkgdesc="Sinhala Transe IME engine for Fcitx5"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 depends=('fcitx5')
 makedepends=('extra-cmake-modules')
 
source=("https://download.fcitx-im.org/fcitx5/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
-sha512sums=('ec67c5da287773760e5f5000ad3bb6fb6bad300860ec9a4ffc9587b5e0dd01b5f5e0db0d9d012f4474b3cb44f41884886fc2956c41b3a2f45bc82f202a2cb1a1'
+sha512sums=('b326dfbc8c2b9e79d08ebca1f74a85333617c1bd0381b198a15f3b75fb0b1a552bbc1ff57cadd1e72baaf3584d4ae915c615fd8698b58a6a406db11f12de9900'
 'SKIP')
 validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9') # Weng Xuetian 

 


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

2021-03-21 Thread Felix Yan via arch-commits
Date: Sunday, March 21, 2021 @ 23:50:03
  Author: felixonmars
Revision: 898586

archrelease: copy trunk to community-x86_64

Added:
  fcitx5-chewing/repos/community-x86_64/PKGBUILD
(from rev 898585, fcitx5-chewing/trunk/PKGBUILD)
Deleted:
  fcitx5-chewing/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-21 23:49:51 UTC (rev 898585)
+++ PKGBUILD2021-03-21 23:50:03 UTC (rev 898586)
@@ -1,29 +0,0 @@
-# $Id: PKGBUILD 226039 2017-04-27 13:52:30Z felixonmars $
-# Maintainer: Felix Yan 
-# Contributor: csslayer 
-
-pkgname=fcitx5-chewing
-pkgver=5.0.4
-pkgrel=1
-pkgdesc="Chewing Wrapper for Fcitx5"
-arch=('x86_64')
-url="https://github.com/fcitx/fcitx5-chewing";
-license=('GPL')
-depends=('fcitx5' 'libchewing')
-makedepends=('extra-cmake-modules' 'ninja')
-source=("https://download.fcitx-im.org/fcitx5/fcitx5-chewing/fcitx5-chewing-$pkgver.tar.xz"{,.sig})
-sha512sums=('8ca9649ec06555f40617c01b185ef73f3749ff2b79215e11cbdad5d0e0bbc7697af3310c1d91aa4cfe6c50e25a2586f3f7b707f0c7f4f619ad6faa1acad57cf1'
-'SKIP')
-validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9') # Weng Xuetian 

-
-build(){
-  cd $pkgname-$pkgver
-
-  cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib .
-  ninja
-}
-
-package() {
-  cd $pkgname-$pkgver
-  DESTDIR="$pkgdir" ninja install
-}

Copied: fcitx5-chewing/repos/community-x86_64/PKGBUILD (from rev 898585, 
fcitx5-chewing/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-03-21 23:50:03 UTC (rev 898586)
@@ -0,0 +1,29 @@
+# $Id: PKGBUILD 226039 2017-04-27 13:52:30Z felixonmars $
+# Maintainer: Felix Yan 
+# Contributor: csslayer 
+
+pkgname=fcitx5-chewing
+pkgver=5.0.5
+pkgrel=1
+pkgdesc="Chewing Wrapper for Fcitx5"
+arch=('x86_64')
+url="https://github.com/fcitx/fcitx5-chewing";
+license=('GPL')
+depends=('fcitx5' 'libchewing')
+makedepends=('extra-cmake-modules' 'ninja')
+source=("https://download.fcitx-im.org/fcitx5/fcitx5-chewing/fcitx5-chewing-$pkgver.tar.xz"{,.sig})
+sha512sums=('d3f70f6479cd9dce05b0c44a2372130c00af041bd082638f9a43ae2bd6ca6892646306821a547444ccdd358df3343f6bc63ad4dcd2ff9e663fc25a13a7b42767'
+'SKIP')
+validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9') # Weng Xuetian 

+
+build(){
+  cd $pkgname-$pkgver
+
+  cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib .
+  ninja
+}
+
+package() {
+  cd $pkgname-$pkgver
+  DESTDIR="$pkgdir" ninja install
+}


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

2021-03-21 Thread Felix Yan via arch-commits
Date: Sunday, March 21, 2021 @ 23:49:51
  Author: felixonmars
Revision: 898585

upgpkg: fcitx5-chewing 5.0.5-1

Modified:
  fcitx5-chewing/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-03-21 23:49:42 UTC (rev 898584)
+++ PKGBUILD2021-03-21 23:49:51 UTC (rev 898585)
@@ -3,7 +3,7 @@
 # Contributor: csslayer 
 
 pkgname=fcitx5-chewing
-pkgver=5.0.4
+pkgver=5.0.5
 pkgrel=1
 pkgdesc="Chewing Wrapper for Fcitx5"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 depends=('fcitx5' 'libchewing')
 makedepends=('extra-cmake-modules' 'ninja')
 
source=("https://download.fcitx-im.org/fcitx5/fcitx5-chewing/fcitx5-chewing-$pkgver.tar.xz"{,.sig})
-sha512sums=('8ca9649ec06555f40617c01b185ef73f3749ff2b79215e11cbdad5d0e0bbc7697af3310c1d91aa4cfe6c50e25a2586f3f7b707f0c7f4f619ad6faa1acad57cf1'
+sha512sums=('d3f70f6479cd9dce05b0c44a2372130c00af041bd082638f9a43ae2bd6ca6892646306821a547444ccdd358df3343f6bc63ad4dcd2ff9e663fc25a13a7b42767'
 'SKIP')
 validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9') # Weng Xuetian 

 


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

2021-03-21 Thread Felix Yan via arch-commits
Date: Sunday, March 21, 2021 @ 23:49:42
  Author: felixonmars
Revision: 898584

archrelease: copy trunk to community-x86_64

Added:
  fcitx5-libthai/repos/community-x86_64/PKGBUILD
(from rev 898583, fcitx5-libthai/trunk/PKGBUILD)
Deleted:
  fcitx5-libthai/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-21 23:49:31 UTC (rev 898583)
+++ PKGBUILD2021-03-21 23:49:42 UTC (rev 898584)
@@ -1,28 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: csslayer 
-
-pkgname=fcitx5-libthai
-pkgver=5.0.2
-pkgrel=1
-pkgdesc="Libthai Wrapper for Fcitx5"
-arch=('x86_64')
-url="https://github.com/fcitx/fcitx5-libthai";
-license=('GPL')
-depends=('fcitx5' 'libthai')
-makedepends=('extra-cmake-modules' 'ninja')
-source=("https://download.fcitx-im.org/fcitx5/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
-sha512sums=('660ba7ec3142cc0d568a1af2d77659778ea83c0b3f1a9fd9ca5fe40969f9f2e41fd7cf66f9932cc6479c25d511f2553f6aedfff64950da7bfc06b92bb5100e63'
-'SKIP')
-validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9') # Weng Xuetian 

-
-build(){
-  cd $pkgname-$pkgver
-
-  cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib .
-  ninja
-}
-
-package() {
-  cd $pkgname-$pkgver
-  DESTDIR="$pkgdir" ninja install
-}

Copied: fcitx5-libthai/repos/community-x86_64/PKGBUILD (from rev 898583, 
fcitx5-libthai/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-03-21 23:49:42 UTC (rev 898584)
@@ -0,0 +1,28 @@
+# Maintainer: Felix Yan 
+# Contributor: csslayer 
+
+pkgname=fcitx5-libthai
+pkgver=5.0.3
+pkgrel=1
+pkgdesc="Libthai Wrapper for Fcitx5"
+arch=('x86_64')
+url="https://github.com/fcitx/fcitx5-libthai";
+license=('GPL')
+depends=('fcitx5' 'libthai')
+makedepends=('extra-cmake-modules' 'ninja')
+source=("https://download.fcitx-im.org/fcitx5/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
+sha512sums=('c2f8a212e30a0cd92a2eac9e01bad5818b0fb0265dd131f5220aa37b965c89985afab7798a6165dcf53defa74923a45b2e7387b89825a8efc474b092331a8572'
+'SKIP')
+validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9') # Weng Xuetian 

+
+build(){
+  cd $pkgname-$pkgver
+
+  cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib .
+  ninja
+}
+
+package() {
+  cd $pkgname-$pkgver
+  DESTDIR="$pkgdir" ninja install
+}


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

2021-03-21 Thread Felix Yan via arch-commits
Date: Sunday, March 21, 2021 @ 23:49:31
  Author: felixonmars
Revision: 898583

upgpkg: fcitx5-libthai 5.0.3-1

Modified:
  fcitx5-libthai/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-03-21 23:49:26 UTC (rev 898582)
+++ PKGBUILD2021-03-21 23:49:31 UTC (rev 898583)
@@ -2,7 +2,7 @@
 # Contributor: csslayer 
 
 pkgname=fcitx5-libthai
-pkgver=5.0.2
+pkgver=5.0.3
 pkgrel=1
 pkgdesc="Libthai Wrapper for Fcitx5"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 depends=('fcitx5' 'libthai')
 makedepends=('extra-cmake-modules' 'ninja')
 
source=("https://download.fcitx-im.org/fcitx5/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
-sha512sums=('660ba7ec3142cc0d568a1af2d77659778ea83c0b3f1a9fd9ca5fe40969f9f2e41fd7cf66f9932cc6479c25d511f2553f6aedfff64950da7bfc06b92bb5100e63'
+sha512sums=('c2f8a212e30a0cd92a2eac9e01bad5818b0fb0265dd131f5220aa37b965c89985afab7798a6165dcf53defa74923a45b2e7387b89825a8efc474b092331a8572'
 'SKIP')
 validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9') # Weng Xuetian 

 


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

2021-03-21 Thread Felix Yan via arch-commits
Date: Sunday, March 21, 2021 @ 23:49:26
  Author: felixonmars
Revision: 898582

archrelease: copy trunk to community-x86_64

Added:
  fcitx5-hangul/repos/community-x86_64/PKGBUILD
(from rev 898581, fcitx5-hangul/trunk/PKGBUILD)
Deleted:
  fcitx5-hangul/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-21 23:49:15 UTC (rev 898581)
+++ PKGBUILD2021-03-21 23:49:26 UTC (rev 898582)
@@ -1,28 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: csslayer 
-
-pkgname=fcitx5-hangul
-pkgver=5.0.2
-pkgrel=1
-pkgdesc="Hangul Wrapper for Fcitx5"
-arch=('x86_64')
-url="https://github.com/fcitx/fcitx5-hangul";
-license=('GPL')
-depends=('fcitx5' 'libhangul')
-makedepends=('extra-cmake-modules')
-source=("https://download.fcitx-im.org/fcitx5/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
-sha512sums=('dfee0283a92b7d44e284950f344b7e8e5f1f5eb2afa27dedeaaa5e8c73241e891b20439eb48d56269d8fb2eeaef9f0c0da019e0a074f42e14d408aefa70e2a06'
-'SKIP')
-validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9') # Weng Xuetian 

-
-build(){
-  cd $pkgname-$pkgver
-
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib .
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: fcitx5-hangul/repos/community-x86_64/PKGBUILD (from rev 898581, 
fcitx5-hangul/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-03-21 23:49:26 UTC (rev 898582)
@@ -0,0 +1,28 @@
+# Maintainer: Felix Yan 
+# Contributor: csslayer 
+
+pkgname=fcitx5-hangul
+pkgver=5.0.3
+pkgrel=1
+pkgdesc="Hangul Wrapper for Fcitx5"
+arch=('x86_64')
+url="https://github.com/fcitx/fcitx5-hangul";
+license=('GPL')
+depends=('fcitx5' 'libhangul')
+makedepends=('extra-cmake-modules')
+source=("https://download.fcitx-im.org/fcitx5/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
+sha512sums=('42caf0a4a94b7370a3e4965a48b0bfebace57982a15ab3b40f518cea1431baf805107ed0a9694c8c6e8ca69de48a0f4f6fca27aee7997ca6335267db5ee87808'
+'SKIP')
+validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9') # Weng Xuetian 

+
+build(){
+  cd $pkgname-$pkgver
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib .
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2021-03-21 Thread Felix Yan via arch-commits
Date: Sunday, March 21, 2021 @ 23:49:15
  Author: felixonmars
Revision: 898581

upgpkg: fcitx5-hangul 5.0.3-1

Modified:
  fcitx5-hangul/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-03-21 23:49:08 UTC (rev 898580)
+++ PKGBUILD2021-03-21 23:49:15 UTC (rev 898581)
@@ -2,7 +2,7 @@
 # Contributor: csslayer 
 
 pkgname=fcitx5-hangul
-pkgver=5.0.2
+pkgver=5.0.3
 pkgrel=1
 pkgdesc="Hangul Wrapper for Fcitx5"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 depends=('fcitx5' 'libhangul')
 makedepends=('extra-cmake-modules')
 
source=("https://download.fcitx-im.org/fcitx5/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
-sha512sums=('dfee0283a92b7d44e284950f344b7e8e5f1f5eb2afa27dedeaaa5e8c73241e891b20439eb48d56269d8fb2eeaef9f0c0da019e0a074f42e14d408aefa70e2a06'
+sha512sums=('42caf0a4a94b7370a3e4965a48b0bfebace57982a15ab3b40f518cea1431baf805107ed0a9694c8c6e8ca69de48a0f4f6fca27aee7997ca6335267db5ee87808'
 'SKIP')
 validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9') # Weng Xuetian 

 


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

2021-03-21 Thread Felix Yan via arch-commits
Date: Sunday, March 21, 2021 @ 23:49:08
  Author: felixonmars
Revision: 898580

archrelease: copy trunk to community-x86_64

Added:
  fcitx5-lua/repos/community-x86_64/PKGBUILD
(from rev 898579, fcitx5-lua/trunk/PKGBUILD)
Deleted:
  fcitx5-lua/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-21 23:48:57 UTC (rev 898579)
+++ PKGBUILD2021-03-21 23:49:08 UTC (rev 898580)
@@ -1,32 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=fcitx5-lua
-pkgver=5.0.3
-pkgrel=1
-pkgdesc="Lua support for Fcitx 5"
-arch=('x86_64')
-url="https://github.com/fcitx/fcitx5-lua";
-license=('GPL')
-depends=('fcitx5' 'lua')
-makedepends=('extra-cmake-modules' 'ninja')
-source=("https://download.fcitx-im.org/fcitx5/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
-sha512sums=('6e0487a2783db13be2683dfd0b32086d4e9da3690f121b96d0a1ea580ec25a786bb123a09ca5baf0ce80dc8b4411eed98d3432c650874d7917da970eef7696e4'
-'SKIP')
-validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9') # Weng Xuetian 

-
-build() {
-  cd $pkgname-$pkgver
-
-  cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib .
-  ninja
-}
-
-check() {
-  cd $pkgname-$pkgver
-  ninja test
-}
-
-package() {
-  cd $pkgname-$pkgver
-  DESTDIR="$pkgdir" ninja install
-}

Copied: fcitx5-lua/repos/community-x86_64/PKGBUILD (from rev 898579, 
fcitx5-lua/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-03-21 23:49:08 UTC (rev 898580)
@@ -0,0 +1,32 @@
+# Maintainer: Felix Yan 
+
+pkgname=fcitx5-lua
+pkgver=5.0.4
+pkgrel=1
+pkgdesc="Lua support for Fcitx 5"
+arch=('x86_64')
+url="https://github.com/fcitx/fcitx5-lua";
+license=('GPL')
+depends=('fcitx5' 'lua')
+makedepends=('extra-cmake-modules' 'ninja')
+source=("https://download.fcitx-im.org/fcitx5/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
+sha512sums=('2e4c1edc54c8f9f5cafa8ac307a03921495caf3a63eab7fe4e987d8672956353192c90243eae946fece3a95be9292f22445bb85413343a2a0d7a674c9138c966'
+'SKIP')
+validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9') # Weng Xuetian 

+
+build() {
+  cd $pkgname-$pkgver
+
+  cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib .
+  ninja
+}
+
+check() {
+  cd $pkgname-$pkgver
+  ninja test
+}
+
+package() {
+  cd $pkgname-$pkgver
+  DESTDIR="$pkgdir" ninja install
+}


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

2021-03-21 Thread Felix Yan via arch-commits
Date: Sunday, March 21, 2021 @ 23:48:57
  Author: felixonmars
Revision: 898579

upgpkg: fcitx5-lua 5.0.4-1

Modified:
  fcitx5-lua/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-03-21 23:19:39 UTC (rev 898578)
+++ PKGBUILD2021-03-21 23:48:57 UTC (rev 898579)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=fcitx5-lua
-pkgver=5.0.3
+pkgver=5.0.4
 pkgrel=1
 pkgdesc="Lua support for Fcitx 5"
 arch=('x86_64')
@@ -10,7 +10,7 @@
 depends=('fcitx5' 'lua')
 makedepends=('extra-cmake-modules' 'ninja')
 
source=("https://download.fcitx-im.org/fcitx5/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
-sha512sums=('6e0487a2783db13be2683dfd0b32086d4e9da3690f121b96d0a1ea580ec25a786bb123a09ca5baf0ce80dc8b4411eed98d3432c650874d7917da970eef7696e4'
+sha512sums=('2e4c1edc54c8f9f5cafa8ac307a03921495caf3a63eab7fe4e987d8672956353192c90243eae946fece3a95be9292f22445bb85413343a2a0d7a674c9138c966'
 'SKIP')
 validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9') # Weng Xuetian 

 


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

2021-03-21 Thread Antonio Rojas via arch-commits
Date: Sunday, March 21, 2021 @ 23:25:24
  Author: arojas
Revision: 410667

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  kross-interpreters/repos/kde-unstable-x86_64/
  kross-interpreters/repos/kde-unstable-x86_64/PKGBUILD
(from rev 410666, kross-interpreters/kde-unstable/PKGBUILD)
  
kross-interpreters/repos/kde-unstable-x86_64/kross-interpreters-20.08.3-Drop-safe-level-support-in-more-recent-Rubies.patch
(from rev 410666, 
kross-interpreters/kde-unstable/kross-interpreters-20.08.3-Drop-safe-level-support-in-more-recent-Rubies.patch)

+
 PKGBUILD   
|   37 ++
 kross-interpreters-20.08.3-Drop-safe-level-support-in-more-recent-Rubies.patch 
|   33 
 2 files changed, 70 insertions(+)

Copied: kross-interpreters/repos/kde-unstable-x86_64/PKGBUILD (from rev 410666, 
kross-interpreters/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2021-03-21 23:25:24 UTC (rev 410667)
@@ -0,0 +1,37 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=kross-interpreters
+pkgver=21.03.80
+pkgrel=1
+pkgdesc='Language interpreters to enable in-process scripting with Kross'
+arch=(x86_64)
+url='https://www.kde.org/applications/development/'
+license=(GPL)
+depends=(kross)
+makedepends=(extra-cmake-modules kdoctools python2 ruby)
+optdepends=('python2: kross-python plugin' 'ruby: kross ruby plugin')
+groups=(kde-applications)
+source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig}
+   
kross-interpreters-20.08.3-Drop-safe-level-support-in-more-recent-Rubies.patch)
+sha256sums=('3f2fb9fd3ac9939468e9f1d4277ff272b1225b4c157f01642d5cf8ea1eede312'
+'SKIP'
+'0d5532869ef281c2efc1b9e0840d14edd408a086af2ebad39c10900108b9e812')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

+  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p1 < 
../kross-interpreters-20.08.3-Drop-safe-level-support-in-more-recent-Rubies.patch
+}
+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DCMAKE_INSTALL_LIBEXECDIR=lib \
+-DBUILD_TESTING=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}

Copied: 
kross-interpreters/repos/kde-unstable-x86_64/kross-interpreters-20.08.3-Drop-safe-level-support-in-more-recent-Rubies.patch
 (from rev 410666, 
kross-interpreters/kde-unstable/kross-interpreters-20.08.3-Drop-safe-level-support-in-more-recent-Rubies.patch)
===
--- 
kde-unstable-x86_64/kross-interpreters-20.08.3-Drop-safe-level-support-in-more-recent-Rubies.patch
  (rev 0)
+++ 
kde-unstable-x86_64/kross-interpreters-20.08.3-Drop-safe-level-support-in-more-recent-Rubies.patch
  2021-03-21 23:25:24 UTC (rev 410667)
@@ -0,0 +1,33 @@
+From 2ccfe2c5373ea851137d2152bc9aabb7dda1f132 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?V=C3=ADt=20Ondruch?= 
+Date: Thu, 7 Jan 2021 12:41:31 +0100
+Subject: [PATCH] Drop safe level support in more recent Rubies.
+
+The `rb_set_safe_level` is available approximately since Ruby 1.8.0, but the
+RUBY_SAFE_LEVEL_MAX was available since Ruby 2.1, until it was dropped
+in Ruby 3.0 altogether with Ruby safe levels [[1]].
+
+[1]: 
https://github.com/ruby/ruby/commit/e91c39f1c0f7d5e670266d9593d533fd444957f6
+---
+ ruby/rubyinterpreter.cpp | 3 +++
+ 1 file changed, 3 insertions(+)
+
+diff --git a/ruby/rubyinterpreter.cpp b/ruby/rubyinterpreter.cpp
+index 3bccdc2..ad236d5 100644
+--- a/ruby/rubyinterpreter.cpp
 b/ruby/rubyinterpreter.cpp
+@@ -65,8 +65,11 @@ RubyInterpreter::RubyInterpreter(Kross::InterpreterInfo* 
info)
+ initRuby();
+ }
+ 
++// The RUBY_SAFE_LEVEL_MAX with the safe levels were removed in Ruby 3.0.
++#ifdef RUBY_SAFE_LEVEL_MAX
+ const int defaultsafelevel = 4; // per default use the maximum safelevel
+ rb_set_safe_level( info->optionValue("safelevel", 
defaultsafelevel).toInt() );
++#endif
+ }
+ 
+ RubyInterpreter::~RubyInterpreter()
+-- 
+2.29.2
+


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

2021-03-21 Thread Antonio Rojas via arch-commits
Date: Sunday, March 21, 2021 @ 23:25:13
  Author: arojas
Revision: 410666

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  yakuake/repos/kde-unstable-x86_64/
  yakuake/repos/kde-unstable-x86_64/PKGBUILD
(from rev 410665, yakuake/kde-unstable/PKGBUILD)

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

Copied: yakuake/repos/kde-unstable-x86_64/PKGBUILD (from rev 410665, 
yakuake/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2021-03-21 23:25:13 UTC (rev 410666)
@@ -0,0 +1,32 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+# Contributor: James Rayner 
+# Contributor: leeghoofd 
+
+pkgname=yakuake
+pkgver=21.03.80
+pkgrel=1
+pkgdesc="A drop-down terminal emulator based on KDE konsole technology"
+arch=(x86_64)
+url='https://kde.org/applications/system/org.kde.yakuake'
+license=(GPL)
+depends=(konsole kwayland hicolor-icon-theme)
+makedepends=(extra-cmake-modules)
+groups=(kde-applications kde-utilities)
+source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('1da4e28e543d25bfeebfeab0b98c73582402984df18517e82ad097900db2e88e'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

+  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DBUILD_TESTING=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}


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

2021-03-21 Thread Antonio Rojas via arch-commits
Date: Sunday, March 21, 2021 @ 23:24:53
  Author: arojas
Revision: 410664

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  print-manager/repos/kde-unstable-x86_64/
  print-manager/repos/kde-unstable-x86_64/PKGBUILD
(from rev 410663, print-manager/kde-unstable/PKGBUILD)

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

Copied: print-manager/repos/kde-unstable-x86_64/PKGBUILD (from rev 410663, 
print-manager/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2021-03-21 23:24:53 UTC (rev 410664)
@@ -0,0 +1,31 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=print-manager
+pkgver=21.03.80
+pkgrel=1
+pkgdesc="A tool for managing print jobs and printers"
+arch=(x86_64)
+url='https://www.kde.org/applications/utilities/'
+license=(GPL LGPL FDL)
+depends=(kcmutils kirigami2)
+makedepends=(extra-cmake-modules kdoctools plasma-framework)
+optdepends=('system-config-printer: auto-detect the printer driver')
+groups=(kde-applications kde-utilities)
+source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('d495febcb461d545ce81a70b809ce40647853de1d4955cb6515ce308a7fcf3fe'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

+  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DBUILD_TESTING=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}


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

2021-03-21 Thread Antonio Rojas via arch-commits
Date: Sunday, March 21, 2021 @ 23:25:03
  Author: arojas
Revision: 410665

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  sweeper/repos/kde-unstable-x86_64/
  sweeper/repos/kde-unstable-x86_64/PKGBUILD
(from rev 410664, sweeper/kde-unstable/PKGBUILD)

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

Copied: sweeper/repos/kde-unstable-x86_64/PKGBUILD (from rev 410664, 
sweeper/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2021-03-21 23:25:03 UTC (rev 410665)
@@ -0,0 +1,30 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=sweeper
+pkgver=21.03.80
+pkgrel=1
+pkgdesc='System Cleaner'
+url='https://kde.org/applications/utilities/sweeper'
+arch=(x86_64)
+license=(GPL LGPL FDL)
+depends=(kactivities-stats kio)
+makedepends=(extra-cmake-modules kdoctools)
+groups=(kde-applications kde-utilities)
+source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('c27de504676d09986565bea1560dd662375d60b043871679fe53f0cc3aa05e10'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

+  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DBUILD_TESTING=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}


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

2021-03-21 Thread Antonio Rojas via arch-commits
Date: Sunday, March 21, 2021 @ 23:24:45
  Author: arojas
Revision: 410663

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  markdownpart/repos/kde-unstable-x86_64/
  markdownpart/repos/kde-unstable-x86_64/PKGBUILD
(from rev 410662, markdownpart/kde-unstable/PKGBUILD)

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

Copied: markdownpart/repos/kde-unstable-x86_64/PKGBUILD (from rev 410662, 
markdownpart/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2021-03-21 23:24:45 UTC (rev 410663)
@@ -0,0 +1,28 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=markdownpart
+pkgver=21.03.80
+pkgrel=1
+pkgdesc='KPart for rendering Markdown content'
+arch=(x86_64)
+url='https://kde.org/'
+license=(GPL)
+depends=(kparts)
+makedepends=(extra-cmake-modules)
+groups=(kde-applications kde-utilities)
+source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('5a968817bd763405db77ae91a6003738f1d8772f0b2fd9b081463c719b600641'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

+  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DBUILD_TESTING=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}


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

2021-03-21 Thread Antonio Rojas via arch-commits
Date: Sunday, March 21, 2021 @ 23:24:36
  Author: arojas
Revision: 410662

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  kwalletmanager/repos/kde-unstable-x86_64/
  kwalletmanager/repos/kde-unstable-x86_64/PKGBUILD
(from rev 410661, kwalletmanager/kde-unstable/PKGBUILD)

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

Copied: kwalletmanager/repos/kde-unstable-x86_64/PKGBUILD (from rev 410661, 
kwalletmanager/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2021-03-21 23:24:36 UTC (rev 410662)
@@ -0,0 +1,31 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kwalletmanager
+pkgver=21.03.80
+pkgrel=1
+pkgdesc='Wallet management tool'
+arch=(x86_64)
+url='https://www.kde.org/applications/system/kwalletmanager/'
+license=(LGPL)
+depends=(kio hicolor-icon-theme)
+makedepends=(extra-cmake-modules kcmutils kdoctools)
+groups=(kde-applications kde-utilities)
+source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('2cdccea4b52c4905872c839e1f9c7f4768eeb2c7202a5349424693132112caea'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

+  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DBUILD_TESTING=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}
+


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

2021-03-21 Thread Antonio Rojas via arch-commits
Date: Sunday, March 21, 2021 @ 23:24:26
  Author: arojas
Revision: 410661

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  ktimer/repos/kde-unstable-x86_64/
  ktimer/repos/kde-unstable-x86_64/PKGBUILD
(from rev 410660, ktimer/kde-unstable/PKGBUILD)

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

Copied: ktimer/repos/kde-unstable-x86_64/PKGBUILD (from rev 410660, 
ktimer/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2021-03-21 23:24:26 UTC (rev 410661)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=ktimer
+pkgver=21.03.80
+pkgrel=1
+pkgdesc='Countdown Launcher'
+url='https://kde.org/applications/utilities/ktimer/'
+arch=(x86_64)
+license=(GPL LGPL FDL)
+depends=(kio hicolor-icon-theme)
+makedepends=(extra-cmake-modules kdoctools)
+groups=(kde-applications kde-utilities)
+source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('f39557262a248fd6cfdc7ea0fe2a2af398f2654416c201706257c6fa75757314'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

+  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DBUILD_TESTING=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}


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

2021-03-21 Thread Antonio Rojas via arch-commits
Date: Sunday, March 21, 2021 @ 23:24:16
  Author: arojas
Revision: 410660

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  kteatime/repos/kde-unstable-x86_64/
  kteatime/repos/kde-unstable-x86_64/PKGBUILD
(from rev 410659, kteatime/kde-unstable/PKGBUILD)

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

Copied: kteatime/repos/kde-unstable-x86_64/PKGBUILD (from rev 410659, 
kteatime/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2021-03-21 23:24:16 UTC (rev 410660)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kteatime
+pkgver=21.03.80
+pkgrel=1
+pkgdesc='A handy timer for steeping tea'
+url='https://kde.org/applications/games/kteatime/'
+arch=(x86_64)
+license=(GPL LGPL FDL)
+groups=(kde-applications kde-utilities)
+depends=(knotifyconfig hicolor-icon-theme)
+makedepends=(extra-cmake-modules kdoctools)
+source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('78d56fd68e932dd968071e2be5a06b0c9c11a3e5b51ad1b44ba3bb645a661ebd'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

+  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DBUILD_TESTING=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}


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

2021-03-21 Thread Antonio Rojas via arch-commits
Date: Sunday, March 21, 2021 @ 23:24:07
  Author: arojas
Revision: 410659

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  konsole/repos/kde-unstable-x86_64/
  konsole/repos/kde-unstable-x86_64/PKGBUILD
(from rev 410658, konsole/kde-unstable/PKGBUILD)

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

Copied: konsole/repos/kde-unstable-x86_64/PKGBUILD (from rev 410658, 
konsole/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2021-03-21 23:24:07 UTC (rev 410659)
@@ -0,0 +1,31 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=konsole
+pkgver=21.03.80
+pkgrel=1
+arch=(x86_64)
+url='https://kde.org/applications/system/konsole/'
+pkgdesc="KDE's terminal emulator"
+license=(GPL LGPL FDL)
+groups=(kde-applications kde-utilities)
+depends=(knotifyconfig kpty kparts kinit knewstuff)
+makedepends=(extra-cmake-modules kdoctools)
+optdepends=('keditbookmarks: to manage bookmarks')
+source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('d96ee9a6fe01b3d741e6ae8ff2b148aef47c0ae7daa197b25475067505c66732'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

+  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DBUILD_TESTING=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}


[arch-commits] Commit in kgpg/repos (kde-unstable-x86_64 kde-unstable-x86_64/PKGBUILD)

2021-03-21 Thread Antonio Rojas via arch-commits
Date: Sunday, March 21, 2021 @ 23:23:57
  Author: arojas
Revision: 410658

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  kgpg/repos/kde-unstable-x86_64/
  kgpg/repos/kde-unstable-x86_64/PKGBUILD
(from rev 410657, kgpg/kde-unstable/PKGBUILD)

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

Copied: kgpg/repos/kde-unstable-x86_64/PKGBUILD (from rev 410657, 
kgpg/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2021-03-21 23:23:57 UTC (rev 410658)
@@ -0,0 +1,30 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kgpg
+pkgver=21.03.80
+pkgrel=1
+pkgdesc='A GnuPG frontend'
+url='https://kde.org/applications/utilities/kgpg/'
+arch=(x86_64)
+license=(GPL LGPL FDL)
+depends=(akonadi-contacts)
+makedepends=(extra-cmake-modules kdoctools boost)
+groups=(kde-applications kde-utilities)
+source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('f0f21fc4db794de9f8b26dd548384f0026d517fbbb2738e32b0936a94803d25e'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

+  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DBUILD_TESTING=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}


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

2021-03-21 Thread Antonio Rojas via arch-commits
Date: Sunday, March 21, 2021 @ 23:23:48
  Author: arojas
Revision: 410657

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  kfloppy/repos/kde-unstable-x86_64/
  kfloppy/repos/kde-unstable-x86_64/PKGBUILD
(from rev 410656, kfloppy/kde-unstable/PKGBUILD)

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

Copied: kfloppy/repos/kde-unstable-x86_64/PKGBUILD (from rev 410656, 
kfloppy/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2021-03-21 23:23:48 UTC (rev 410657)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kfloppy
+pkgver=21.03.80
+pkgrel=1
+pkgdesc='Floppy Formatter'
+url='https://kde.org/applications/utilities/kfloppy/'
+arch=(x86_64)
+license=(GPL LGPL FDL)
+depends=(kxmlgui kcompletion hicolor-icon-theme)
+makedepends=(extra-cmake-modules kdoctools)
+groups=(kde-applications kde-utilities)
+source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('4b1828090248f508e2aad534b864995350782acdfc465d4452cab25617727945'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

+  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DBUILD_TESTING=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}


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

2021-03-21 Thread Antonio Rojas via arch-commits
Date: Sunday, March 21, 2021 @ 23:23:38
  Author: arojas
Revision: 410656

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  kfind/repos/kde-unstable-x86_64/
  kfind/repos/kde-unstable-x86_64/PKGBUILD
(from rev 410655, kfind/kde-unstable/PKGBUILD)

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

Copied: kfind/repos/kde-unstable-x86_64/PKGBUILD (from rev 410655, 
kfind/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2021-03-21 23:23:38 UTC (rev 410656)
@@ -0,0 +1,30 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=kfind
+pkgver=21.03.80
+pkgrel=1
+pkgdesc="Find Files/Folders"
+arch=(x86_64)
+url="https://www.kde.org/applications/utilities/kfind/";
+license=(LGPL)
+depends=(kio kfilemetadata)
+makedepends=(extra-cmake-modules kdoctools)
+optdepends=('mlocate: search using mlocate index')
+groups=(kde-applications kde-utilities)
+source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('d240c2c5081cc77295626765143ac76b72cabf29b164ed5c8f5851dd2b4b6a6a'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

+  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DBUILD_TESTING=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}


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

2021-03-21 Thread Antonio Rojas via arch-commits
Date: Sunday, March 21, 2021 @ 23:23:27
  Author: arojas
Revision: 410655

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  keditbookmarks/repos/kde-unstable-x86_64/
  keditbookmarks/repos/kde-unstable-x86_64/PKGBUILD
(from rev 410654, keditbookmarks/kde-unstable/PKGBUILD)

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

Copied: keditbookmarks/repos/kde-unstable-x86_64/PKGBUILD (from rev 410654, 
keditbookmarks/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2021-03-21 23:23:27 UTC (rev 410655)
@@ -0,0 +1,29 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=keditbookmarks
+pkgver=21.03.80
+pkgrel=1
+pkgdesc="Bookmark Organizer and Editor"
+arch=(x86_64)
+url="https://www.kde.org/";
+license=(LGPL)
+depends=(kparts)
+makedepends=(extra-cmake-modules kdoctools)
+groups=(kde-applications kde-utilities)
+source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('9ce7c52561ec76ce4b976541b07e228d6f075c8c6e918858d3bda4fd1567a117'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

+  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DBUILD_TESTING=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}


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

2021-03-21 Thread Antonio Rojas via arch-commits
Date: Sunday, March 21, 2021 @ 23:23:18
  Author: arojas
Revision: 410654

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  kdialog/repos/kde-unstable-x86_64/
  kdialog/repos/kde-unstable-x86_64/PKGBUILD
(from rev 410653, kdialog/kde-unstable/PKGBUILD)

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

Copied: kdialog/repos/kde-unstable-x86_64/PKGBUILD (from rev 410653, 
kdialog/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2021-03-21 23:23:18 UTC (rev 410654)
@@ -0,0 +1,29 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=kdialog
+pkgver=21.03.80
+pkgrel=1
+pkgdesc="A utility for displaying dialog boxes from shell scripts"
+arch=(x86_64)
+url="https://www.kde.org/";
+license=(LGPL)
+depends=(kio)
+makedepends=(extra-cmake-modules)
+groups=(kde-applications kde-utilities)
+source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('7aeefc863873fe77a37b992d85421ffdff5beedfa2c3180be9099342ff46dbae'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

+  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DBUILD_TESTING=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}


[arch-commits] Commit in kdf/repos (kde-unstable-x86_64 kde-unstable-x86_64/PKGBUILD)

2021-03-21 Thread Antonio Rojas via arch-commits
Date: Sunday, March 21, 2021 @ 23:23:09
  Author: arojas
Revision: 410653

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  kdf/repos/kde-unstable-x86_64/
  kdf/repos/kde-unstable-x86_64/PKGBUILD
(from rev 410652, kdf/kde-unstable/PKGBUILD)

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

Copied: kdf/repos/kde-unstable-x86_64/PKGBUILD (from rev 410652, 
kdf/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2021-03-21 23:23:09 UTC (rev 410653)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdf
+pkgver=21.03.80
+pkgrel=1
+url="https://kde.org/applications/system/kdiskfree/";
+arch=(x86_64)
+pkgdesc='View Disk Usage'
+license=(GPL LGPL FDL)
+depends=(kio hicolor-icon-theme)
+makedepends=(extra-cmake-modules kdoctools kcmutils)
+groups=(kde-applications kde-utilities)
+source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('06f599ca1ce683aeb067d82d5770c86799d85bc27fcbe1696bf6046e20efda71'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

+  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DBUILD_TESTING=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}


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

2021-03-21 Thread Antonio Rojas via arch-commits
Date: Sunday, March 21, 2021 @ 23:22:58
  Author: arojas
Revision: 410652

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  kdebugsettings/repos/kde-unstable-x86_64/
  kdebugsettings/repos/kde-unstable-x86_64/PKGBUILD
(from rev 410651, kdebugsettings/kde-unstable/PKGBUILD)

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

Copied: kdebugsettings/repos/kde-unstable-x86_64/PKGBUILD (from rev 410651, 
kdebugsettings/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2021-03-21 23:22:58 UTC (rev 410652)
@@ -0,0 +1,29 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=kdebugsettings
+pkgver=21.03.80
+pkgrel=1
+pkgdesc='An application to enable/disable qCDebug'
+arch=(x86_64)
+url='https://utils.kde.org/'
+license=(GPL)
+depends=(kdbusaddons ki18n kitemviews kcompletion kcoreaddons)
+makedepends=(extra-cmake-modules)
+groups=(kde-applications kde-utilities)
+source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('7e48e8d4e17e31dd8e0d8d411f2995309b00dd4e0a745ba60ffd9eebc9b7d964'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

+  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DCMAKE_INSTALL_LIBEXECDIR=lib
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}
+


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

2021-03-21 Thread Antonio Rojas via arch-commits
Date: Sunday, March 21, 2021 @ 23:22:48
  Author: arojas
Revision: 410651

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  kcharselect/repos/kde-unstable-x86_64/
  kcharselect/repos/kde-unstable-x86_64/PKGBUILD
(from rev 410650, kcharselect/kde-unstable/PKGBUILD)

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

Copied: kcharselect/repos/kde-unstable-x86_64/PKGBUILD (from rev 410650, 
kcharselect/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2021-03-21 23:22:48 UTC (rev 410651)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kcharselect
+pkgver=21.03.80
+pkgrel=1
+pkgdesc='Character Selector'
+url="https://kde.org/applications/utilities/kcharselect/";
+arch=(x86_64)
+license=(GPL LGPL FDL)
+depends=(kbookmarks)
+makedepends=(extra-cmake-modules kdoctools)
+groups=(kde-applications kde-utilities)
+source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('1eec6c1a79211d0e733a0bf1b60f00a2efbd1a7bd7cba53f46fea059812960f7'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

+  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DBUILD_TESTING=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}


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

2021-03-21 Thread Antonio Rojas via arch-commits
Date: Sunday, March 21, 2021 @ 23:22:38
  Author: arojas
Revision: 410650

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  kcalc/repos/kde-unstable-x86_64/
  kcalc/repos/kde-unstable-x86_64/PKGBUILD
(from rev 410649, kcalc/kde-unstable/PKGBUILD)

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

Copied: kcalc/repos/kde-unstable-x86_64/PKGBUILD (from rev 410649, 
kcalc/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2021-03-21 23:22:38 UTC (rev 410650)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kcalc
+pkgver=21.03.80
+pkgrel=1
+pkgdesc='Scientific Calculator'
+url='https://kde.org/applications/utilities/kcalc/'
+arch=(x86_64)
+license=(GPL LGPL FDL)
+depends=(kinit)
+makedepends=(extra-cmake-modules kdoctools)
+groups=(kde-applications kde-utilities)
+source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('fcc16d587dd54af30c875d89de53eb22e2b2685223b6202a39f1ca8722c2898a'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

+  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DBUILD_TESTING=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}


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

2021-03-21 Thread Antonio Rojas via arch-commits
Date: Sunday, March 21, 2021 @ 23:22:28
  Author: arojas
Revision: 410649

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  kbackup/repos/kde-unstable-x86_64/
  kbackup/repos/kde-unstable-x86_64/PKGBUILD
(from rev 410648, kbackup/kde-unstable/PKGBUILD)

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

Copied: kbackup/repos/kde-unstable-x86_64/PKGBUILD (from rev 410648, 
kbackup/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2021-03-21 23:22:28 UTC (rev 410649)
@@ -0,0 +1,31 @@
+# Maintainer: Antonio Rojas 
+# Contributor: BluePeril 
+
+pkgname=kbackup
+pkgver=21.03.80
+pkgrel=1
+pkgdesc="A program that lets you back up any directories or files"
+arch=(x86_64)
+url="https://www.kde.org/applications/utilities/kbackup/";
+license=(GPL)
+groups=(kde-applications kde-utilities)
+depends=(kio hicolor-icon-theme)
+makedepends=(extra-cmake-modules kdoctools)
+source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('9e8fd88373bb6b44c8130b6a8349958bc2b6ee4ad6642852481b1fdc23075d37'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

+  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

+
+
+build() {
+
+  cmake -B build -S $pkgname-$pkgver \
+-DBUILD_TESTING=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}


[arch-commits] Commit in kate/repos (kde-unstable-x86_64 kde-unstable-x86_64/PKGBUILD)

2021-03-21 Thread Antonio Rojas via arch-commits
Date: Sunday, March 21, 2021 @ 23:22:17
  Author: arojas
Revision: 410648

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  kate/repos/kde-unstable-x86_64/
  kate/repos/kde-unstable-x86_64/PKGBUILD
(from rev 410647, kate/kde-unstable/PKGBUILD)

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

Copied: kate/repos/kde-unstable-x86_64/PKGBUILD (from rev 410647, 
kate/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2021-03-21 23:22:17 UTC (rev 410648)
@@ -0,0 +1,55 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgbase=kate
+pkgname=(kwrite kate)
+pkgver=21.03.80
+pkgrel=1
+arch=(x86_64)
+license=(GPL LGPL FDL)
+makedepends=(extra-cmake-modules kdoctools plasma-framework knewstuff 
kitemmodels ktexteditor kactivities kuserfeedback)
+source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgbase-$pkgver.tar.xz"{,.sig})
+sha256sums=('5ce7a843c7a7a457d16164116d7e64c885c6338d12575e4ca9666fa5a73edeb1'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

+  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

+
+build() {
+  cmake -B build -S $pkgbase-$pkgver \
+-DBUILD_TESTING=OFF
+  cmake --build build
+}
+
+package_kwrite() {
+  pkgdesc="Text Editor"
+  groups=(kde-applications kde-utilities)
+  url="https://www.kde.org/applications/utilities/kwrite/";
+  depends=(ktexteditor hicolor-icon-theme)
+
+  DESTDIR="$pkgdir" cmake --install build
+
+  find "$pkgdir" -type f -name '*kate*' -exec rm {} \;
+  rm -r "$pkgdir"/usr/lib/qt/plugins/ktexteditor \
+"$pkgdir"/usr/share/doc/HTML/*/{kate,katepart} \
+"$pkgdir"/usr/share/katexmltools \
+
"$pkgdir"/usr/share/locale/*/LC_MESSAGES/{ktexteditorpreviewplugin,lspclient,tabswitcherplugin}.mo
 \
+"$pkgdir"/usr/share/plasma/plasmoids
+}
+
+package_kate() {
+  pkgdesc="Advanced Text Editor"
+  groups=(kde-applications kde-utilities)
+  url="https://www.kde.org/applications/utilities/kate/";
+  depends=(knewstuff ktexteditor kactivities kuserfeedback hicolor-icon-theme)
+  optdepends=('konsole: open a terminal in Kate'
+  'clang: C and C++ LSP support'
+  'python-language-server: Python LSP support'
+  'texlab: LaTeX LSP support'
+  'rust: Rust LSP support')
+  DESTDIR="$pkgdir" cmake --install build
+
+  find "$pkgdir" -type f -name '*kwrite*' -exec rm {} \;
+  rm -r "$pkgdir"/usr/share/doc/HTML/*/kwrite
+}


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

2021-03-21 Thread Antonio Rojas via arch-commits
Date: Sunday, March 21, 2021 @ 23:22:06
  Author: arojas
Revision: 410647

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  filelight/repos/kde-unstable-x86_64/
  filelight/repos/kde-unstable-x86_64/PKGBUILD
(from rev 410646, filelight/kde-unstable/PKGBUILD)

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

Copied: filelight/repos/kde-unstable-x86_64/PKGBUILD (from rev 410646, 
filelight/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2021-03-21 23:22:06 UTC (rev 410647)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=filelight
+pkgver=21.03.80
+pkgrel=1
+pkgdesc='View disk usage information'
+url='https://kde.org/applications/utilities/filelight'
+arch=(x86_64)
+license=(GPL LGPL FDL)
+depends=(kio hicolor-icon-theme)
+makedepends=(extra-cmake-modules kdoctools)
+groups=(kde-applications kde-utilities)
+source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('27b72db5ecc4d8656ca638b89d29ab35b32e23dfaa404b3a536c58f064f5b4b5'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

+  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DBUILD_TESTING=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}


[arch-commits] Commit in ark/repos (kde-unstable-x86_64 kde-unstable-x86_64/PKGBUILD)

2021-03-21 Thread Antonio Rojas via arch-commits
Date: Sunday, March 21, 2021 @ 23:21:56
  Author: arojas
Revision: 410646

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  ark/repos/kde-unstable-x86_64/
  ark/repos/kde-unstable-x86_64/PKGBUILD
(from rev 410645, ark/kde-unstable/PKGBUILD)

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

Copied: ark/repos/kde-unstable-x86_64/PKGBUILD (from rev 410645, 
ark/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2021-03-21 23:21:56 UTC (rev 410646)
@@ -0,0 +1,33 @@
+# Maintainer: Antonio Rojas  
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=ark
+pkgver=21.03.80
+pkgrel=1
+pkgdesc='Archiving Tool'
+arch=(x86_64)
+url='https://kde.org/applications/utilities/ark/'
+license=(GPL)
+depends=(kparts kpty libarchive libzip kitemmodels hicolor-icon-theme)
+makedepends=(extra-cmake-modules kdoctools)
+optdepends=('p7zip: 7Z format support' 'unrar: RAR decompression support' 
'unarchiver: RAR format support'
+'lzop: LZO format support' 'lrzip: LRZ format support')
+groups=(kde-applications kde-utilities)
+source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('412c19b271656ddb00b74f5aa70c330ee31fdebd6dc938beb8751b85f05b01db'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

+  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

+
+build() { 
+  cmake -B build -S $pkgname-$pkgver \
+-DBUILD_TESTING=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}
+


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

2021-03-21 Thread Antonio Rojas via arch-commits
Date: Sunday, March 21, 2021 @ 23:21:46
  Author: arojas
Revision: 410645

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  partitionmanager/repos/kde-unstable-x86_64/
  partitionmanager/repos/kde-unstable-x86_64/PKGBUILD
(from rev 410644, partitionmanager/kde-unstable/PKGBUILD)

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

Copied: partitionmanager/repos/kde-unstable-x86_64/PKGBUILD (from rev 410644, 
partitionmanager/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2021-03-21 23:21:46 UTC (rev 410645)
@@ -0,0 +1,30 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Tobias Powalowski 
+# Contributor: Nick B 
+
+pkgname=partitionmanager
+pkgver=21.03.80
+pkgrel=1
+pkgdesc="A KDE utility that allows you to manage disks, partitions, and file 
systems"
+arch=(x86_64)
+url="https://kde.org/applications/system/org.kde.partitionmanager";
+license=(GPL2)
+depends=(kpmcore hicolor-icon-theme kio)
+makedepends=(extra-cmake-modules kdoctools)
+groups=(kde-applications kde-system)
+source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('3c4d65292bed5468591c4034e7d778e0fe8efa8b0b186be716fba48626d72331'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

+  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DBUILD_TESTING=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}


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

2021-03-21 Thread Antonio Rojas via arch-commits
Date: Sunday, March 21, 2021 @ 23:21:37
  Author: arojas
Revision: 410644

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  ksystemlog/repos/kde-unstable-x86_64/
  ksystemlog/repos/kde-unstable-x86_64/PKGBUILD
(from rev 410643, ksystemlog/kde-unstable/PKGBUILD)

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

Copied: ksystemlog/repos/kde-unstable-x86_64/PKGBUILD (from rev 410643, 
ksystemlog/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2021-03-21 23:21:37 UTC (rev 410644)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=ksystemlog
+pkgver=21.03.80
+pkgrel=1
+pkgdesc='System log viewer tool'
+url='https://kde.org/applications/system/ksystemlog/'
+arch=(x86_64)
+license=(GPL LGPL FDL)
+groups=(kde-applications kde-system)
+depends=(kio)
+makedepends=(extra-cmake-modules kdoctools)
+source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('9e009e8d6f5702016b395e2cc4ac231b4e3bde9dc7181b9a1b29f64a4842274a'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

+  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DBUILD_TESTING=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}


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

2021-03-21 Thread Antonio Rojas via arch-commits
Date: Sunday, March 21, 2021 @ 23:21:28
  Author: arojas
Revision: 410643

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  khelpcenter/repos/kde-unstable-x86_64/
  khelpcenter/repos/kde-unstable-x86_64/PKGBUILD
(from rev 410642, khelpcenter/kde-unstable/PKGBUILD)

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

Copied: khelpcenter/repos/kde-unstable-x86_64/PKGBUILD (from rev 410642, 
khelpcenter/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2021-03-21 23:21:28 UTC (rev 410643)
@@ -0,0 +1,31 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=khelpcenter
+pkgver=21.03.80
+pkgrel=1
+pkgdesc="Application to show KDE Applications' documentation"
+arch=(x86_64)
+url='https://userbase.kde.org/KHelpCenter'
+license=(LGPL)
+groups=(kde-applications kde-system)
+depends=(khtml kdoctools xapian-core grantlee kinit perl)
+makedepends=(extra-cmake-modules)
+source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('e424e60e3aa43d1cfccde6a04da0a1788f6690345aad7a6ab9872d58cc81740c'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

+  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DCMAKE_INSTALL_LIBEXECDIR=lib \
+-DBUILD_TESTING=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}


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

2021-03-21 Thread Antonio Rojas via arch-commits
Date: Sunday, March 21, 2021 @ 23:21:17
  Author: arojas
Revision: 410642

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  kcron/repos/kde-unstable-x86_64/
  kcron/repos/kde-unstable-x86_64/PKGBUILD
(from rev 410641, kcron/kde-unstable/PKGBUILD)

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

Copied: kcron/repos/kde-unstable-x86_64/PKGBUILD (from rev 410641, 
kcron/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2021-03-21 23:21:17 UTC (rev 410642)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kcron
+pkgver=21.03.80
+pkgrel=1
+pkgdesc='Configure and schedule tasks'
+url='https://userbase.kde.org/System_Settings/Task_Scheduler'
+arch=(x86_64)
+license=(GPL LGPL FDL)
+groups=(kde-applications kde-system)
+depends=(kio cron)
+makedepends=(extra-cmake-modules kdoctools)
+source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('59b2d5ea4ddc28bba5ee9ed7faedd0bf65e11eb1f28b7ac0f989a9c15d250eff'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

+  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DBUILD_TESTING=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}


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

2021-03-21 Thread Antonio Rojas via arch-commits
Date: Sunday, March 21, 2021 @ 23:21:07
  Author: arojas
Revision: 410641

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  umbrello/repos/kde-unstable-x86_64/
  umbrello/repos/kde-unstable-x86_64/PKGBUILD
(from rev 410640, umbrello/kde-unstable/PKGBUILD)

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

Copied: umbrello/repos/kde-unstable-x86_64/PKGBUILD (from rev 410640, 
umbrello/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2021-03-21 23:21:07 UTC (rev 410641)
@@ -0,0 +1,32 @@
+# Maintainer: Antonio Rojas  
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=umbrello
+pkgver=21.03.80
+pkgrel=1
+pkgdesc='UML modeller'
+arch=(x86_64)
+url='https://kde.org/applications/development/umbrello'
+license=(GPL)
+depends=(kdelibs4support kdevelop-php qt5-webkit)
+makedepends=(extra-cmake-modules kdoctools kdesignerplugin kdevelop-pg-qt llvm 
kinit doxygen)
+groups=(kde-applications kdesdk)
+source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('82a0c3951be79b059f6530ce6024fac0c9ada09ab8bcd6dfbefb705772d7ffa6'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

+  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

+
+build() { 
+  cmake -B build -S $pkgname-$pkgver \
+-DBUILD_TESTING=OFF \
+-DBUILD_UNITTESTS=OFF \
+-DBUILD_KF5=ON
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}


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

2021-03-21 Thread Antonio Rojas via arch-commits
Date: Sunday, March 21, 2021 @ 23:20:58
  Author: arojas
Revision: 410640

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  kdesdk-thumbnailers/repos/kde-unstable-x86_64/
  kdesdk-thumbnailers/repos/kde-unstable-x86_64/PKGBUILD
(from rev 410639, kdesdk-thumbnailers/kde-unstable/PKGBUILD)

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

Copied: kdesdk-thumbnailers/repos/kde-unstable-x86_64/PKGBUILD (from rev 
410639, kdesdk-thumbnailers/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2021-03-21 23:20:58 UTC (rev 410640)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdesdk-thumbnailers
+pkgver=21.03.80
+pkgrel=1
+pkgdesc='Plugins for the thumbnailing system'
+url='https://www.kde.org/applications/development/'
+arch=(x86_64)
+license=(GPL LGPL FDL)
+groups=(kde-applications kdesdk)
+depends=(kio gettext)
+makedepends=(extra-cmake-modules)
+source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('67ebe182e3535426637945a3c060f2501bf33ad2b0cd2ca4c9f97e5add9c3764'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

+  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DBUILD_TESTING=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}


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

2021-03-21 Thread Antonio Rojas via arch-commits
Date: Sunday, March 21, 2021 @ 23:20:48
  Author: arojas
Revision: 410639

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  poxml/repos/kde-unstable-x86_64/
  poxml/repos/kde-unstable-x86_64/PKGBUILD
(from rev 410638, poxml/kde-unstable/PKGBUILD)

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

Copied: poxml/repos/kde-unstable-x86_64/PKGBUILD (from rev 410638, 
poxml/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2021-03-21 23:20:48 UTC (rev 410639)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=poxml
+pkgver=21.03.80
+pkgrel=1
+pkgdesc='Translates DocBook XML files using gettext po files'
+url='https://www.kde.org/applications/development/'
+arch=(x86_64)
+license=(GPL LGPL FDL)
+groups=(kde-applications kdesdk)
+depends=(qt5-base gettext)
+makedepends=(extra-cmake-modules kdoctools)
+source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('063e88e892d18e36dde299e262e15255e500afcd270c31a8f4f682b92cf5feca'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

+  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DBUILD_TESTING=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}


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

2021-03-21 Thread Antonio Rojas via arch-commits
Date: Sunday, March 21, 2021 @ 23:20:23
  Author: arojas
Revision: 410637

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  kompare/repos/kde-unstable-x86_64/
  kompare/repos/kde-unstable-x86_64/PKGBUILD
(from rev 410636, kompare/kde-unstable/PKGBUILD)

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

Copied: kompare/repos/kde-unstable-x86_64/PKGBUILD (from rev 410636, 
kompare/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2021-03-21 23:20:23 UTC (rev 410637)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kompare
+pkgver=21.03.80
+pkgrel=1
+pkgdesc='Graphical file differences tool'
+url='https://kde.org/applications/development/kompare/'
+arch=(x86_64)
+license=(GPL LGPL FDL)
+groups=(kde-applications kdesdk)
+depends=(libkomparediff2 ktexteditor hicolor-icon-theme)
+makedepends=(extra-cmake-modules kdoctools)
+source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('9eb326acc5b5361725286a27d5fa865f3dd9b489e9eaa1260266cf12e45f7392'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

+  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DBUILD_TESTING=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}


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

2021-03-21 Thread Antonio Rojas via arch-commits
Date: Sunday, March 21, 2021 @ 23:20:37
  Author: arojas
Revision: 410638

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  lokalize/repos/kde-unstable-x86_64/
  lokalize/repos/kde-unstable-x86_64/PKGBUILD
(from rev 410637, lokalize/kde-unstable/PKGBUILD)

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

Copied: lokalize/repos/kde-unstable-x86_64/PKGBUILD (from rev 410637, 
lokalize/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2021-03-21 23:20:37 UTC (rev 410638)
@@ -0,0 +1,31 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=lokalize
+pkgver=21.03.80
+pkgrel=1
+pkgdesc='Computer-Aided Translation System'
+url='https://kde.org/applications/development/lokalize/'
+arch=(x86_64)
+license=(GPL LGPL FDL)
+groups=(kde-applications kdesdk)
+depends=(kross hunspell hicolor-icon-theme)
+makedepends=(extra-cmake-modules kdoctools)
+optdepends=('kross-interpreters: for msgmerge' 'languagetool: spell and 
grammar checking')
+source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('c53ab580fbad1d99e994112fa8a19950fbadbbc8cd77fad9bd785163d230472d'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

+  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DBUILD_TESTING=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}


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

2021-03-21 Thread Antonio Rojas via arch-commits
Date: Sunday, March 21, 2021 @ 23:19:52
  Author: arojas
Revision: 410634

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  kcachegrind/repos/kde-unstable-x86_64/
  kcachegrind/repos/kde-unstable-x86_64/PKGBUILD
(from rev 410633, kcachegrind/kde-unstable/PKGBUILD)

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

Copied: kcachegrind/repos/kde-unstable-x86_64/PKGBUILD (from rev 410633, 
kcachegrind/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2021-03-21 23:19:52 UTC (rev 410634)
@@ -0,0 +1,56 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgbase=kcachegrind
+pkgname=(kcachegrind kcachegrind-common qcachegrind)
+pkgver=21.03.80
+pkgrel=1
+pkgdesc='Visualization of Performance Profiling Data'
+url='https://kde.org/applications/development/kcachegrind/'
+arch=(x86_64)
+license=(GPL LGPL FDL)
+makedepends=(extra-cmake-modules kdoctools qt5-tools kio)
+source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('4c67ba453362af25dc786bdb27031f47a73014162d2fdf7dad724944a6c10f14'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

+  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DBUILD_TESTING=OFF
+  cmake --build build
+}
+
+package_kcachegrind() {
+  groups=(kde-applications kdesdk)
+  depends=(kio kcachegrind-common)
+  optdepends=('graphviz: for plotting support')
+
+  DESTDIR="$pkgdir" cmake --install build
+  rm -r "$pkgdir"/usr/{bin/*tree,share/{doc,icons,locale}}
+}
+
+package_kcachegrind-common() {
+  pkgdesc+=' (common files)'
+  depends=(hicolor-icon-theme)
+  optdepends=('php: for pprof2calltree' 'python2: for hotshot2calltree' 'perl: 
for dprof2calltree, memprof2calltree and op2calltree')
+
+  DESTDIR="$pkgdir" cmake --install build
+  rm -r 
"$pkgdir"/usr/{bin/kcachegrind,share/{kcachegrind,applications,metainfo}} # 
provided by kcachegrind
+
+  # Fix python 2 path
+  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
+"$pkgdir"/usr/bin/hotshot2calltree
+}
+
+package_qcachegrind() {
+  pkgdesc+=' (pure Qt version)'
+  depends=(qt5-base kcachegrind-common)
+  optdepends=('graphviz: for plotting support')
+
+  install -Dm755 build/bin/qcachegrind -t "$pkgdir"/usr/bin/
+  install -Dm644 $pkgbase-$pkgver/qcachegrind/qcachegrind.desktop -t 
"$pkgdir"/usr/share/applications/
+}


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

2021-03-21 Thread Antonio Rojas via arch-commits
Date: Sunday, March 21, 2021 @ 23:20:04
  Author: arojas
Revision: 410635

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  kdesdk-kioslaves/repos/kde-unstable-x86_64/
  kdesdk-kioslaves/repos/kde-unstable-x86_64/PKGBUILD
(from rev 410634, kdesdk-kioslaves/kde-unstable/PKGBUILD)

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

Copied: kdesdk-kioslaves/repos/kde-unstable-x86_64/PKGBUILD (from rev 410634, 
kdesdk-kioslaves/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2021-03-21 23:20:04 UTC (rev 410635)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdesdk-kioslaves
+pkgver=21.03.80
+pkgrel=1
+pkgdesc='KDE SDK KIO-Slaves'
+url='https://www.kde.org/'
+arch=(x86_64)
+license=(GPL LGPL FDL)
+groups=(kde-applications kdesdk)
+depends=(kio perl)
+makedepends=(extra-cmake-modules)
+source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha1sums=('5b0e5ae8ac39d95279d491308469f9b1aa78de5b'
+  'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

+  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DBUILD_TESTING=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}


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

2021-03-21 Thread Antonio Rojas via arch-commits
Date: Sunday, March 21, 2021 @ 23:20:13
  Author: arojas
Revision: 410636

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  kirigami-gallery/repos/kde-unstable-x86_64/
  kirigami-gallery/repos/kde-unstable-x86_64/PKGBUILD
(from rev 410635, kirigami-gallery/kde-unstable/PKGBUILD)

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

Copied: kirigami-gallery/repos/kde-unstable-x86_64/PKGBUILD (from rev 410635, 
kirigami-gallery/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2021-03-21 23:20:13 UTC (rev 410636)
@@ -0,0 +1,28 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=kirigami-gallery
+pkgver=21.03.80
+pkgrel=1
+pkgdesc="Gallery application built using Kirigami"
+url="https://www.kde.org/products/kirigami/";
+arch=(x86_64)
+license=(GPL LGPL FDL)
+groups=(kde-applications kdesdk)
+depends=(kirigami2 qt5-svg)
+makedepends=(extra-cmake-modules qt5-tools)
+source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('69d9426925f31cf3c84e80794474e1ddda056ed1b1e3301f861826fd59365f29'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

+  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DBUILD_TESTING=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}


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

2021-03-21 Thread Antonio Rojas via arch-commits
Date: Sunday, March 21, 2021 @ 23:19:40
  Author: arojas
Revision: 410633

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  kapptemplate/repos/kde-unstable-x86_64/
  kapptemplate/repos/kde-unstable-x86_64/PKGBUILD
(from rev 410632, kapptemplate/kde-unstable/PKGBUILD)

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

Copied: kapptemplate/repos/kde-unstable-x86_64/PKGBUILD (from rev 410632, 
kapptemplate/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2021-03-21 23:19:40 UTC (rev 410633)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kapptemplate
+pkgver=21.03.80
+pkgrel=1
+pkgdesc='KDE Template Generator'
+url='https://kde.org/applications/development/kapptemplate/'
+arch=(x86_64)
+license=(GPL LGPL FDL)
+groups=(kde-applications kdesdk)
+depends=(kio hicolor-icon-theme)
+makedepends=(extra-cmake-modules kdoctools)
+source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('a34ea6ea044872e0503c7ea63cf1b3d32f156e5233831ef64250aa90d86d82c9'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

+  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DBUILD_TESTING=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}


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

2021-03-21 Thread Antonio Rojas via arch-commits
Date: Sunday, March 21, 2021 @ 23:19:30
  Author: arojas
Revision: 410632

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  dolphin-plugins/repos/kde-unstable-x86_64/
  dolphin-plugins/repos/kde-unstable-x86_64/PKGBUILD
(from rev 410631, dolphin-plugins/kde-unstable/PKGBUILD)

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

Copied: dolphin-plugins/repos/kde-unstable-x86_64/PKGBUILD (from rev 410631, 
dolphin-plugins/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2021-03-21 23:19:30 UTC (rev 410632)
@@ -0,0 +1,31 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=dolphin-plugins
+pkgver=21.03.80
+pkgrel=1
+pkgdesc="Extra Dolphin plugins"
+arch=(x86_64)
+url="https://www.kde.org/applications/system/dolphin/";
+license=(LGPL)
+depends=(dolphin)
+makedepends=(extra-cmake-modules ktexteditor)
+optdepends=('ktexteditor: Mercurial plugin')
+groups=(kde-applications kdesdk)
+source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('e90164bf15290735928e5618d92cf90293b6f2c2ac91b6ec6857b8c7f1d1fcbe'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

+  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DBUILD_TESTING=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}


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

2021-03-21 Thread Felix Yan via arch-commits
Date: Sunday, March 21, 2021 @ 23:19:39
  Author: felixonmars
Revision: 898578

archrelease: copy trunk to community-x86_64

Added:
  deno/repos/community-x86_64/PKGBUILD
(from rev 898577, deno/trunk/PKGBUILD)
Deleted:
  deno/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-03-21 23:19:28 UTC (rev 898577)
+++ PKGBUILD2021-03-21 23:19:39 UTC (rev 898578)
@@ -1,43 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Metal A-wing <1 at 233 dot email>
-
-pkgname=deno
-pkgver=1.8.1
-pkgrel=1
-pkgdesc="A secure runtime for JavaScript and TypeScript"
-arch=('x86_64')
-url="https://deno.land";
-license=('MIT')
-depends=('gcc-libs')
-makedepends=('git' 'python' 'cargo' 'nodejs')
-source=("git+https://github.com/denoland/deno#tag=v$pkgver";)
-sha512sums=('SKIP')
-
-prepare() {
-  cd $pkgname
-  git submodule update --init --recursive
-}
-
-build() {
-  cd $pkgname
-  cargo build --release
-}
-
-check() {
-  cd $pkgname
-  ./target/release/deno run cli/tests/002_hello.ts
-}
-
-package() {
-  cd $pkgname
-  install -Dm755 target/release/deno "$pkgdir"/usr/bin/deno
-
-  install -dm755 "$pkgdir"/usr/share/bash-completion/completions
-  ./target/release/deno completions bash > 
"$pkgdir"/usr/share/bash-completion/completions/deno
-  install -dm755 "$pkgdir"/usr/share/zsh/site-functions
-  ./target/release/deno completions zsh > 
"$pkgdir"/usr/share/zsh/site-functions/_deno
-  install -dm755 "$pkgdir"/usr/share/fish/vendor_functions.d
-  ./target/release/deno completions fish > 
"$pkgdir"/usr/share/fish/vendor_functions.d/deno.fish
-
-  install -Dm644 LICENSE.md -t "$pkgdir"/usr/share/licenses/$pkgname/
-}

Copied: deno/repos/community-x86_64/PKGBUILD (from rev 898577, 
deno/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-03-21 23:19:39 UTC (rev 898578)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+# Contributor: Metal A-wing <1 at 233 dot email>
+
+pkgname=deno
+pkgver=1.8.2
+pkgrel=1
+pkgdesc="A secure runtime for JavaScript and TypeScript"
+arch=('x86_64')
+url="https://deno.land";
+license=('MIT')
+depends=('gcc-libs')
+makedepends=('git' 'python' 'cargo' 'nodejs')
+source=("git+https://github.com/denoland/deno#tag=v$pkgver";)
+sha512sums=('SKIP')
+
+prepare() {
+  cd $pkgname
+  git submodule update --init --recursive
+}
+
+build() {
+  cd $pkgname
+  cargo build --release
+}
+
+check() {
+  cd $pkgname
+  ./target/release/deno run cli/tests/002_hello.ts
+}
+
+package() {
+  cd $pkgname
+  install -Dm755 target/release/deno "$pkgdir"/usr/bin/deno
+
+  install -dm755 "$pkgdir"/usr/share/bash-completion/completions
+  ./target/release/deno completions bash > 
"$pkgdir"/usr/share/bash-completion/completions/deno
+  install -dm755 "$pkgdir"/usr/share/zsh/site-functions
+  ./target/release/deno completions zsh > 
"$pkgdir"/usr/share/zsh/site-functions/_deno
+  install -dm755 "$pkgdir"/usr/share/fish/vendor_functions.d
+  ./target/release/deno completions fish > 
"$pkgdir"/usr/share/fish/vendor_functions.d/deno.fish
+
+  install -Dm644 LICENSE.md -t "$pkgdir"/usr/share/licenses/$pkgname/
+}


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

2021-03-21 Thread Felix Yan via arch-commits
Date: Sunday, March 21, 2021 @ 23:19:28
  Author: felixonmars
Revision: 898577

upgpkg: deno 1.8.2-1

Modified:
  deno/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-03-21 23:04:02 UTC (rev 898576)
+++ PKGBUILD2021-03-21 23:19:28 UTC (rev 898577)
@@ -2,7 +2,7 @@
 # Contributor: Metal A-wing <1 at 233 dot email>
 
 pkgname=deno
-pkgver=1.8.1
+pkgver=1.8.2
 pkgrel=1
 pkgdesc="A secure runtime for JavaScript and TypeScript"
 arch=('x86_64')


[arch-commits] Commit in kde-dev-scripts/repos (2 files)

2021-03-21 Thread Antonio Rojas via arch-commits
Date: Sunday, March 21, 2021 @ 23:19:21
  Author: arojas
Revision: 410631

archrelease: copy kde-unstable to kde-unstable-any

Added:
  kde-dev-scripts/repos/kde-unstable-any/
  kde-dev-scripts/repos/kde-unstable-any/PKGBUILD
(from rev 410630, kde-dev-scripts/kde-unstable/PKGBUILD)

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

Copied: kde-dev-scripts/repos/kde-unstable-any/PKGBUILD (from rev 410630, 
kde-dev-scripts/kde-unstable/PKGBUILD)
===
--- kde-unstable-any/PKGBUILD   (rev 0)
+++ kde-unstable-any/PKGBUILD   2021-03-21 23:19:21 UTC (rev 410631)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kde-dev-scripts
+pkgver=21.03.80
+pkgrel=1
+pkgdesc='Scripts and setting files useful during development of KDE software'
+url='https://www.kde.org/applications/development/'
+arch=(any)
+license=(GPL LGPL FDL)
+groups=(kde-applications kdesdk)
+depends=(perl)
+makedepends=(extra-cmake-modules kdoctools)
+source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('7de2a08f9bf8c10079c3b68e343fe3eff638ee3d6816dcd28b16813c7583f86d'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

+  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

+
+build() {
+  cmake -B build -S $pkgname-$pkgver
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+
+  # Fix python 2 path
+  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
+
"$pkgdir"/usr/bin/{zonetab2pot.py,kde-systemsettings-tree.py,reviewboard-am}
+  sed -i 's|#! /usr/bin/env python|#!/usr/bin/env python2|' \
+"$pkgdir"/usr/bin/{kdelnk2desktop.py,kde_generate_export_header}
+
+# Install additional files
+  cd "$srcdir"/$pkgname-$pkgver
+  mkdir -p "$pkgdir"/usr/share/kde-dev-scripts
+  cp -r kde-devel-* gdb "$pkgdir"/usr/share/kde-dev-scripts
+}


[arch-commits] Commit in kde-dev-utils/repos (2 files)

2021-03-21 Thread Antonio Rojas via arch-commits
Date: Sunday, March 21, 2021 @ 23:19:12
  Author: arojas
Revision: 410630

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  kde-dev-utils/repos/kde-unstable-x86_64/
  kde-dev-utils/repos/kde-unstable-x86_64/PKGBUILD
(from rev 410629, kde-dev-utils/kde-unstable/PKGBUILD)

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

Copied: kde-dev-utils/repos/kde-unstable-x86_64/PKGBUILD (from rev 410629, 
kde-dev-utils/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2021-03-21 23:19:12 UTC (rev 410630)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kde-dev-utils
+pkgver=21.03.80
+pkgrel=1
+pkgdesc='Small utilities for developers using KDE/Qt libs/frameworks'
+url='https://www.kde.org/applications/development/'
+arch=(x86_64)
+license=(GPL LGPL FDL)
+groups=(kde-applications kdesdk)
+depends=(kparts qt5-tools)
+makedepends=(extra-cmake-modules)
+source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('f31d62fe46b34253ee11bda85757dab9f6082d0f4fc14af25591de8e8a6dc7c6'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

+  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DBUILD_TESTING=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}


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

2021-03-21 Thread Antonio Rojas via arch-commits
Date: Sunday, March 21, 2021 @ 23:19:01
  Author: arojas
Revision: 410629

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  cervisia/repos/kde-unstable-x86_64/
  cervisia/repos/kde-unstable-x86_64/PKGBUILD
(from rev 410628, cervisia/kde-unstable/PKGBUILD)

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

Copied: cervisia/repos/kde-unstable-x86_64/PKGBUILD (from rev 410628, 
cervisia/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2021-03-21 23:19:01 UTC (rev 410629)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=cervisia
+pkgver=21.03.80
+pkgrel=1
+pkgdesc='CVS Frontend'
+url='https://kde.org/applications/development/cervisia/'
+arch=(x86_64)
+license=(GPL LGPL FDL)
+groups=(kde-applications kdesdk)
+depends=(kdesu kparts hicolor-icon-theme kinit)
+makedepends=(extra-cmake-modules kdoctools)
+source=("https://download.kde.org/unstable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('e5757469a8c704c8eb2fbbdb73c649979c0957ce10c2f653329788fef282bb54'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

+  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DBUILD_TESTING=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}


  1   2   3   4   5   6   7   8   9   10   >