[arch-commits] Commit in blender/trunk (D8355-ffmpeg43.patch PKGBUILD)

2020-07-26 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, July 27, 2020 @ 00:56:08
  Author: svenstaro
Revision: 665400

upgpkg: blender 17:2.83.3-3: Fix crash with FFMPEG 4.3 (FS#67402)

Added:
  blender/trunk/D8355-ffmpeg43.patch
Modified:
  blender/trunk/PKGBUILD

--+
 D8355-ffmpeg43.patch |   35 +++
 PKGBUILD |   24 +++-
 2 files changed, 50 insertions(+), 9 deletions(-)

Added: D8355-ffmpeg43.patch
===
--- D8355-ffmpeg43.patch(rev 0)
+++ D8355-ffmpeg43.patch2020-07-27 00:56:08 UTC (rev 665400)
@@ -0,0 +1,35 @@
+diff --git a/source/blender/imbuf/intern/anim_movie.c 
b/source/blender/imbuf/intern/anim_movie.c
+--- a/source/blender/imbuf/intern/anim_movie.c
 b/source/blender/imbuf/intern/anim_movie.c
+@@ -1205,7 +1205,29 @@
+   }
+ 
+   IMB_freeImBuf(anim->last_frame);
+-  anim->last_frame = IMB_allocImBuf(anim->x, anim->y, 32, IB_rect);
++
++  /* Certain versions of FFmpeg have a bug in libswscale which ends up in 
crash
++   * when destination buffer is not properly aligned. For example, this 
happens
++   * in FFmpeg 4.3.1. It got fixed later on, but for compatibility reasons is
++   * still best to avoid crash.
++   *
++   * This is achieved by using own allocation call rather than relying on
++   * IMB_allocImBuf() to do so since the IMB_allocImBuf() is not guaranteed
++   * to perform aligned allocation.
++   *
++   * In theory this could give better performance, since SIMD operations on
++   * aligned data are usually faster.
++   *
++   * Note that even though sometimes vertical flip is required it does not
++   * affect on alignment of data passed to sws_scale because if the X 
dimension
++   * is not 32 byte aligned special intermediate buffer is allocated.
++   *
++   * The issue was reported to FFmpeg under ticket #8747 in the FFmpeg tracker
++   * and is fixed in the newer versions than 4.3.1. */
++  anim->last_frame = IMB_allocImBuf(anim->x, anim->y, 32, 0);
++  anim->last_frame->rect = MEM_mallocN_aligned((size_t)4 * anim->x * anim->y, 
32, "ffmpeg ibuf");
++  anim->last_frame->mall |= IB_rect;
++
+   anim->last_frame->rect_colorspace = 
colormanage_colorspace_get_named(anim->colorspace);
+ 
+   ffmpeg_postprocess(anim);
+

Modified: PKGBUILD
===
--- PKGBUILD2020-07-27 00:35:20 UTC (rev 665399)
+++ PKGBUILD2020-07-27 00:56:08 UTC (rev 665400)
@@ -20,7 +20,7 @@
 pkgname=blender
 pkgver=2.83.3
 [[ -n $_gitcommit ]] && pkgver=${pkgver}.git1.${_gitcommit:0:8}
-pkgrel=2
+pkgrel=3
 epoch=17
 pkgdesc="A fully integrated 3D graphics creation suite"
 arch=('x86_64')
@@ -40,6 +40,7 @@
 "git://git.blender.org/blender-dev-tools.git"
 embree.patch
 D8063-cuda11.diff
+D8355-ffmpeg43.patch
 
https://developer.download.nvidia.com/redist/optix/v7.0/OptiX-7.0.0-include.zip)
 if [[ -n $_gittag ]]; then
 
source+=("${pkgname}-${pkgver}::git://git.blender.org/blender.git#tag=${_gittag}")
@@ -52,6 +53,7 @@
 'SKIP'
 
'6de779ad8649a034ee65c45a36d7838ac0b8b32c3336b4d476186265c060f56276e3e0a2860ec4bff42bef7d5582ee82238013845f6a697672767a05a455aaca'
 
'7b0dc31c8babaaeed35807d27cc54e6e9fb79a08c4c267244bea2b47149e05089fe495f239fff7d4fff9b1ebcafd588396e8d1db5529dc7ac49d78731575e128'
+
'70e3bd8762c573cac4ec1d6772cdaab3ce6a248c26c78cbfe729d29058b3bf764305ee02525529955f292ad682883433ca20a91096ccb10d0cfe0148a67ee15f'
 
'b2cff73def3757d4259f4b4d318a8ccfe166bf7c215cbb2124f1c81bd6e742f96207285b24eb4d99b527b7b97dc6d5e8fdf2f16d78d5d1e2684c26d681328491'
 'SKIP')
 
@@ -68,15 +70,19 @@
   patch -Np1 -i "$srcdir"/embree.patch
   patch -Np1 -i "$srcdir"/D8063-cuda11.diff
 
+  # Fix crash with ffmpeg 4.3 (https://bugs.archlinux.org/task/67402)
+  patch -Np1 -i "$srcdir"/D8355-ffmpeg43.patch
+
   mkdir build
 }
 
 build() {
-  cd "$srcdir/$pkgname-$pkgver"/build
+  cd "$srcdir/$pkgname-$pkgver"
 
-  cmake \
+  cmake . \
+-Bbuild \
 -GNinja \
--C../build_files/cmake/config/blender_release.cmake .. \
+-Cbuild_files/cmake/config/blender_release.cmake \
 -DOPTIX_ROOT_DIR="$srcdir"/include \
 -DWITH_CYCLES_EMBREE=ON \
 -DCMAKE_INSTALL_PREFIX=/usr \
@@ -87,16 +93,16 @@
 -DPYTHON_LIBPATH=/usr/lib \
 -DPYTHON_LIBRARY=python3.8 \
 -DPYTHON_INCLUDE_DIRS=/usr/include/python3.8
-  ninja
+  ninja -C build
 }
 
 package() {
-  cd "$srcdir/$pkgname-$pkgver/build"
+  cd "$srcdir/$pkgname-$pkgver"
 
-  DESTDIR="${pkgdir}" ninja install
-  install -Dm755 ../release/bin/blender-softwaregl 
"${pkgdir}/usr/bin/blender-softwaregl"
+  DESTDIR="${pkgdir}" ninja -C build install
+  install -Dm755 release/bin/blender-softwaregl 
"${pkgdir}/usr/bin/blender-softwaregl"
   python -m compileall "${pkgdir}/usr/share/blender"
   python -O -m compileall "${pkgdir}/usr/share/blender"
 
-  

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

2020-07-26 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, July 27, 2020 @ 00:56:18
  Author: svenstaro
Revision: 665401

archrelease: copy trunk to community-x86_64

Added:
  blender/repos/community-x86_64/D8063-cuda11.diff
(from rev 665400, blender/trunk/D8063-cuda11.diff)
  blender/repos/community-x86_64/D8355-ffmpeg43.patch
(from rev 665400, blender/trunk/D8355-ffmpeg43.patch)
  blender/repos/community-x86_64/PKGBUILD
(from rev 665400, blender/trunk/PKGBUILD)
  blender/repos/community-x86_64/embree.patch
(from rev 665400, blender/trunk/embree.patch)
Deleted:
  blender/repos/community-x86_64/D8063-cuda11.diff
  blender/repos/community-x86_64/PKGBUILD
  blender/repos/community-x86_64/embree.patch

--+
 D8063-cuda11.diff|  210 -
 D8355-ffmpeg43.patch |   35 
 PKGBUILD |  210 +
 embree.patch |   86 ++--
 4 files changed, 291 insertions(+), 250 deletions(-)

Deleted: D8063-cuda11.diff
===
--- D8063-cuda11.diff   2020-07-27 00:56:08 UTC (rev 665400)
+++ D8063-cuda11.diff   2020-07-27 00:56:18 UTC (rev 665401)
@@ -1,105 +0,0 @@
-diff --git a/CMakeLists.txt b/CMakeLists.txt
 a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -375,7 +375,7 @@
- option(WITH_CYCLES_CUBIN_COMPILER   "Build cubins with nvrtc based compiler 
instead of nvcc" OFF)
- option(WITH_CYCLES_CUDA_BUILD_SERIAL "Build cubins one after another (useful 
on machines with limited RAM)" OFF)
- mark_as_advanced(WITH_CYCLES_CUDA_BUILD_SERIAL)
--set(CYCLES_CUDA_BINARIES_ARCH sm_30 sm_35 sm_37 sm_50 sm_52 sm_60 sm_61 sm_70 
sm_75 CACHE STRING "CUDA architectures to build binaries for")
-+set(CYCLES_CUDA_BINARIES_ARCH sm_30 sm_35 sm_37 sm_50 sm_52 sm_60 sm_61 sm_70 
sm_75 sm_80 CACHE STRING "CUDA architectures to build binaries for")
- mark_as_advanced(CYCLES_CUDA_BINARIES_ARCH)
- unset(PLATFORM_DEFAULT)
- option(WITH_CYCLES_LOGGING  "Build Cycles with logging support" ON)
-diff --git a/build_files/cmake/config/blender_release.cmake 
b/build_files/cmake/config/blender_release.cmake
 a/build_files/cmake/config/blender_release.cmake
-+++ b/build_files/cmake/config/blender_release.cmake
-@@ -52,7 +52,7 @@
- set(WITH_MEM_JEMALLOC  ON  CACHE BOOL "" FORCE)
- set(WITH_CYCLES_CUDA_BINARIES  ON  CACHE BOOL "" FORCE)
- set(WITH_CYCLES_CUBIN_COMPILER OFF CACHE BOOL "" FORCE)
--set(CYCLES_CUDA_BINARIES_ARCH 
sm_30;sm_35;sm_37;sm_50;sm_52;sm_60;sm_61;sm_70;sm_75 CACHE STRING "" FORCE)
-+set(CYCLES_CUDA_BINARIES_ARCH 
sm_30;sm_35;sm_37;sm_50;sm_52;sm_60;sm_61;sm_70;sm_75;sm_80 CACHE STRING "" 
FORCE)
- set(WITH_CYCLES_DEVICE_OPTIX   ON CACHE BOOL "" FORCE)
- 
- # platform dependent options
-diff --git a/intern/cycles/CMakeLists.txt b/intern/cycles/CMakeLists.txt
 a/intern/cycles/CMakeLists.txt
-+++ b/intern/cycles/CMakeLists.txt
-@@ -313,7 +313,7 @@
-   set(MAX_MSVC 1910)
- elseif(${CUDA_VERSION} EQUAL "9.1")
-   set(MAX_MSVC 1911)
--elseif(${CUDA_VERSION} LESS "11.0")
-+elseif(${CUDA_VERSION} LESS "12.0")
-   set(MAX_MSVC 1999)
- endif()
- if(NOT MSVC_VERSION LESS ${MAX_MSVC} OR CMAKE_C_COMPILER_ID MATCHES 
"Clang")
-diff --git a/intern/cycles/kernel/CMakeLists.txt 
b/intern/cycles/kernel/CMakeLists.txt
 a/intern/cycles/kernel/CMakeLists.txt
-+++ b/intern/cycles/kernel/CMakeLists.txt
-@@ -485,8 +485,12 @@
-   foreach(arch ${CYCLES_CUDA_BINARIES_ARCH})
- if(${arch} MATCHES "sm_2.")
-   message(STATUS "CUDA binaries for ${arch} are no longer supported, 
skipped.")
-+elseif(${arch} MATCHES "sm_30" AND ${CUDA_VERSION} GREATER 109)
-+  message(STATUS "CUDA binaries for ${arch} are no longer supported, 
skipped.")
- elseif(${arch} MATCHES "sm_7." AND ${CUDA_VERSION} LESS 100)
-   message(STATUS "CUDA binaries for ${arch} require CUDA 10.0+, skipped.")
-+elseif(${arch} MATCHES "sm_8." AND ${CUDA_VERSION} LESS 110)
-+  message(STATUS "CUDA binaries for ${arch} require CUDA 11.0+, skipped.")
- else()
-   # Compile regular kernel
-   CYCLES_CUDA_KERNEL_ADD(${arch} ${prev_arch} filter "" 
"${cuda_filter_sources}" FALSE)
-@@ -525,6 +529,11 @@
-   set(cuda_flags ${cuda_flags}
- -D __KERNEL_DEBUG__)
- endif()
-+set(OPTIX_TARGET 30)
-+if(${CUDA_VERSION} GREATER 109) #cuda 11
-+  set(OPTIX_TARGET 52)
-+endif()
-+
- if(WITH_CYCLES_CUBIN_COMPILER)
- 
-   # Needed to find libnvrtc-builtins.so. Can't do it from inside
-@@ -536,7 +545,6 @@
- set(CUBIN_CC_ENV ${CMAKE_COMMAND}
-   -E env LD_LIBRARY_PATH="${CUDA_TOOLKIT_ROOT_DIR}/lib64")
-   endif()
--
-   add_custom_command(
- OUTPUT ${output}
- DEPENDS
-@@ -551,7 +559,7 @@
-   ${SRC_UTIL_HEADERS}
- COMMAND ${CUBIN_CC_ENV}
- "$"
---target 30
-+-target ${OPTIX_TARGET}
- -ptx
- -i 

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

2020-07-26 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, July 27, 2020 @ 00:35:20
  Author: svenstaro
Revision: 665399

archrelease: copy trunk to community-x86_64

Added:
  netdata/repos/community-x86_64/PKGBUILD
(from rev 665398, netdata/trunk/PKGBUILD)
  netdata/repos/community-x86_64/netdata.install
(from rev 665398, netdata/trunk/netdata.install)
  netdata/repos/community-x86_64/netdata.sysusers
(from rev 665398, netdata/trunk/netdata.sysusers)
Deleted:
  netdata/repos/community-x86_64/PKGBUILD
  netdata/repos/community-x86_64/netdata.install
  netdata/repos/community-x86_64/netdata.sysusers

--+
 PKGBUILD |  108 ++---
 netdata.install  |   24 +--
 netdata.sysusers |2 
 3 files changed, 67 insertions(+), 67 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-27 00:35:12 UTC (rev 665398)
+++ PKGBUILD2020-07-27 00:35:20 UTC (rev 665399)
@@ -1,54 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: SanskritFritz (gmail)
-
-pkgname=netdata
-pkgver=1.23.2
-pkgrel=1
-pkgdesc="Real-time performance monitoring, in the greatest possible detail, 
over the web"
-url="https://github.com/netdata/netdata;
-arch=('x86_64')
-license=('GPL')
-backup=('etc/netdata/netdata.conf')
-depends=('libmnl' 'libnetfilter_acct' 'zlib' 'judy' 'libuv' 'json-c' 'libcap' 
'lz4' 'openssl')
-optdepends=('nodejs: for monitoring named and SNMP devices'
-'lm_sensors: for monitoring hardware sensors'
-'iproute2: for monitoring Linux QoS'
-'python: for most of the external plugins'
-'python-psycopg2: for monitoring PostgreSQL databases'
-'python-mysqlclient: for monitoring MySQL/MariaDB databases'
-'python-requests: for monitoring elasticsearch'
-'hddtemp: for monitoring hhd temperature'
-'apcupsd: for monitoring APC UPS'
-'iw: for monitoring Linux as access point')
-install=$pkgname.install
-source=("$pkgname-$pkgver.tar.gz::https://github.com/netdata/netdata/archive/v${pkgver}.tar.gz;
-"$pkgname.sysusers")
-sha512sums=('4a4dc647e0326da4f785444e15e2f74af09428374bfe2db57c44dd2765ce77b2babbd8b52e33e04f49b95937a6ca8691ffa18b51d1717ea927025b70fa7e369f'
-
'a910809a823ba58ca7bdaa72e8d68427b48f452c1fbb2343fa182ecb0a091a7640e73af24b8ba2fdd90e00aed8ef53b7fccd25cb8f04ca9b9fa6c8e52223ca66')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  autoreconf -i
-  ./configure \
-   --prefix="/usr" \
-   --sbindir="/usr/bin" \
-   --sysconfdir="/etc" \
-   --libexecdir="/usr/lib" \
-   --localstatedir="/var" \
-   --with-zlib --with-math --with-user=netdata
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-
-  install -Dm644 system/netdata.conf "$pkgdir"/etc/netdata/netdata.conf
-  chown -R 0:134 "$pkgdir"/usr/share/netdata/web
-
-  install -Dm0644 "system/netdata.service.v235" 
"$pkgdir/usr/lib/systemd/system/netdata.service"
-  install -Dm0644 "system/netdata.logrotate" "$pkgdir/etc/logrotate.d/netdata"
-  install -Dm0644 "${srcdir}/${pkgname}.sysusers" 
"${pkgdir}/usr/lib/sysusers.d/${pkgname}.conf"
-}

Copied: netdata/repos/community-x86_64/PKGBUILD (from rev 665398, 
netdata/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-27 00:35:20 UTC (rev 665399)
@@ -0,0 +1,54 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: SanskritFritz (gmail)
+
+pkgname=netdata
+pkgver=1.23.2
+pkgrel=2
+pkgdesc="Real-time performance monitoring, in the greatest possible detail, 
over the web"
+url="https://github.com/netdata/netdata;
+arch=('x86_64')
+license=('GPL')
+backup=('etc/netdata/netdata.conf')
+depends=('libmnl' 'libnetfilter_acct' 'zlib' 'judy' 'libuv' 'json-c' 'libcap' 
'lz4' 'openssl' 'which')
+optdepends=('nodejs: for monitoring named and SNMP devices'
+'lm_sensors: for monitoring hardware sensors'
+'iproute2: for monitoring Linux QoS'
+'python: for most of the external plugins'
+'python-psycopg2: for monitoring PostgreSQL databases'
+'python-mysqlclient: for monitoring MySQL/MariaDB databases'
+'python-requests: for monitoring elasticsearch'
+'hddtemp: for monitoring hhd temperature'
+'apcupsd: for monitoring APC UPS'
+'iw: for monitoring Linux as access point')
+install=$pkgname.install
+source=("$pkgname-$pkgver.tar.gz::https://github.com/netdata/netdata/archive/v${pkgver}.tar.gz;
+"$pkgname.sysusers")
+sha512sums=('4a4dc647e0326da4f785444e15e2f74af09428374bfe2db57c44dd2765ce77b2babbd8b52e33e04f49b95937a6ca8691ffa18b51d1717ea927025b70fa7e369f'
+
'a910809a823ba58ca7bdaa72e8d68427b48f452c1fbb2343fa182ecb0a091a7640e73af24b8ba2fdd90e00aed8ef53b7fccd25cb8f04ca9b9fa6c8e52223ca66')
+
+build() {
+  cd 

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

2020-07-26 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, July 27, 2020 @ 00:35:12
  Author: svenstaro
Revision: 665398

upgpkg: netdata 1.23.2-2

Depend on which (FS#67385)

Modified:
  netdata/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 23:33:22 UTC (rev 665397)
+++ PKGBUILD2020-07-27 00:35:12 UTC (rev 665398)
@@ -3,13 +3,13 @@
 
 pkgname=netdata
 pkgver=1.23.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Real-time performance monitoring, in the greatest possible detail, 
over the web"
 url="https://github.com/netdata/netdata;
 arch=('x86_64')
 license=('GPL')
 backup=('etc/netdata/netdata.conf')
-depends=('libmnl' 'libnetfilter_acct' 'zlib' 'judy' 'libuv' 'json-c' 'libcap' 
'lz4' 'openssl')
+depends=('libmnl' 'libnetfilter_acct' 'zlib' 'judy' 'libuv' 'json-c' 'libcap' 
'lz4' 'openssl' 'which')
 optdepends=('nodejs: for monitoring named and SNMP devices'
 'lm_sensors: for monitoring hardware sensors'
 'iproute2: for monitoring Linux QoS'


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

2020-07-26 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, July 26, 2020 @ 23:33:17
  Author: svenstaro
Revision: 665396

upgpkg: broot 0.19.2-1

Modified:
  broot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 23:14:28 UTC (rev 665395)
+++ PKGBUILD2020-07-26 23:33:17 UTC (rev 665396)
@@ -3,7 +3,7 @@
 # Contributor: Daniel M. Capella 
 
 pkgname=broot
-pkgver=0.18.6
+pkgver=0.19.2
 pkgrel=1
 pkgdesc='Fuzzy Search + tree + cd'
 arch=('x86_64')
@@ -12,7 +12,7 @@
 depends=('gcc-libs' 'zlib')
 makedepends=('rust')
 
source=("https://github.com/Canop/broot/archive/v$pkgver/$pkgname-v$pkgver.tar.gz;)
-sha256sums=('b0ad7f172885639dc55cd1c94c606b1ac7439e3ccb5233cfa9e2ed04f3a3bbf1')
+sha256sums=('7d26392e1e70d382d20ef478a2dfa093c410f8db2d2689615c89cf3f69166063')
 
 build() {
   cd $pkgname-$pkgver


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

2020-07-26 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, July 26, 2020 @ 23:33:22
  Author: svenstaro
Revision: 665397

archrelease: copy trunk to community-x86_64

Added:
  broot/repos/community-x86_64/PKGBUILD
(from rev 665396, broot/trunk/PKGBUILD)
Deleted:
  broot/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-26 23:33:17 UTC (rev 665396)
+++ PKGBUILD2020-07-26 23:33:22 UTC (rev 665397)
@@ -1,33 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Adam Fontenot 
-# Contributor: Daniel M. Capella 
-
-pkgname=broot
-pkgver=0.18.6
-pkgrel=1
-pkgdesc='Fuzzy Search + tree + cd'
-arch=('x86_64')
-url=https://github.com/Canop/broot
-license=('MIT')
-depends=('gcc-libs' 'zlib')
-makedepends=('rust')
-source=("https://github.com/Canop/broot/archive/v$pkgver/$pkgname-v$pkgver.tar.gz;)
-sha256sums=('b0ad7f172885639dc55cd1c94c606b1ac7439e3ccb5233cfa9e2ed04f3a3bbf1')
-
-build() {
-  cd $pkgname-$pkgver
-  cargo build --release --locked
-}
-
-check() {
-  cd $pkgname-$pkgver
-  cargo test --release --locked
-}
-
-package() {
-  cd $pkgname-$pkgver
-  install -Dt "$pkgdir"/usr/bin target/release/$pkgname
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: broot/repos/community-x86_64/PKGBUILD (from rev 665396, 
broot/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-26 23:33:22 UTC (rev 665397)
@@ -0,0 +1,33 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Adam Fontenot 
+# Contributor: Daniel M. Capella 
+
+pkgname=broot
+pkgver=0.19.2
+pkgrel=1
+pkgdesc='Fuzzy Search + tree + cd'
+arch=('x86_64')
+url=https://github.com/Canop/broot
+license=('MIT')
+depends=('gcc-libs' 'zlib')
+makedepends=('rust')
+source=("https://github.com/Canop/broot/archive/v$pkgver/$pkgname-v$pkgver.tar.gz;)
+sha256sums=('7d26392e1e70d382d20ef478a2dfa093c410f8db2d2689615c89cf3f69166063')
+
+build() {
+  cd $pkgname-$pkgver
+  cargo build --release --locked
+}
+
+check() {
+  cd $pkgname-$pkgver
+  cargo test --release --locked
+}
+
+package() {
+  cd $pkgname-$pkgver
+  install -Dt "$pkgdir"/usr/bin target/release/$pkgname
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-07-26 Thread Kpcyrd via arch-commits
Date: Sunday, July 26, 2020 @ 23:14:13
  Author: kpcyrd
Revision: 665394

upgpkg: cargo-audit 0.12.0-1

Modified:
  cargo-audit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 22:55:02 UTC (rev 665393)
+++ PKGBUILD2020-07-26 23:14:13 UTC (rev 665394)
@@ -1,7 +1,7 @@
 # Maintainer: kpcyrd 
 
 pkgname=cargo-audit
-pkgver=0.11.0
+pkgver=0.12.0
 pkgrel=1
 pkgdesc="Audit Cargo.lock for crates with security vulnerabilities"
 url="https://github.com/RustSec/cargo-audit;
@@ -9,8 +9,8 @@
 arch=('x86_64')
 license=('MIT' 'APACHE')
 
source=("https://github.com/RustSec/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('a6aafef957e8585ce03c3bd147a78a2044591dffac9e2ae3d9a5305238248ab5')
-b2sums=('75790dc81b94a3a67a8291d3f5006ac9fd5c868cc74708086c7bcc821017d7ee6002dcbf574a72eb4def5e00c8163263c4e6fc227ff732cc59303f6a8367b84a')
+sha256sums=('5c30e38d592dbc135123d3ca69fd1c778782ef9a9064d8b7cfbd93db5d636d75')
+b2sums=('f52bc30c3be63468377528808c0d66b47c9a3e10dcee767277cdd3b876da893b959ff6977987761e93bfc3b4d39e930fb3a8e19a7160c62b4f45d439f7019820')
 
 build() {
   cd "${pkgname}-${pkgver}"


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

2020-07-26 Thread Kpcyrd via arch-commits
Date: Sunday, July 26, 2020 @ 23:14:28
  Author: kpcyrd
Revision: 665395

archrelease: copy trunk to community-x86_64

Added:
  cargo-audit/repos/community-x86_64/PKGBUILD
(from rev 665394, cargo-audit/trunk/PKGBUILD)
Deleted:
  cargo-audit/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-26 23:14:13 UTC (rev 665394)
+++ PKGBUILD2020-07-26 23:14:28 UTC (rev 665395)
@@ -1,31 +0,0 @@
-# Maintainer: kpcyrd 
-
-pkgname=cargo-audit
-pkgver=0.11.0
-pkgrel=1
-pkgdesc="Audit Cargo.lock for crates with security vulnerabilities"
-url="https://github.com/RustSec/cargo-audit;
-depends=('cargo')
-arch=('x86_64')
-license=('MIT' 'APACHE')
-source=("https://github.com/RustSec/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('a6aafef957e8585ce03c3bd147a78a2044591dffac9e2ae3d9a5305238248ab5')
-b2sums=('75790dc81b94a3a67a8291d3f5006ac9fd5c868cc74708086c7bcc821017d7ee6002dcbf574a72eb4def5e00c8163263c4e6fc227ff732cc59303f6a8367b84a')
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  cargo build --release --locked
-}
-
-check() {
-  cd "${pkgname}-${pkgver}"
-  cargo test --release --locked
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  install -Dm755 "target/release/${pkgname}" -t "${pkgdir}/usr/bin"
-  install -Dm644 LICENSE-MIT -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: cargo-audit/repos/community-x86_64/PKGBUILD (from rev 665394, 
cargo-audit/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-26 23:14:28 UTC (rev 665395)
@@ -0,0 +1,31 @@
+# Maintainer: kpcyrd 
+
+pkgname=cargo-audit
+pkgver=0.12.0
+pkgrel=1
+pkgdesc="Audit Cargo.lock for crates with security vulnerabilities"
+url="https://github.com/RustSec/cargo-audit;
+depends=('cargo')
+arch=('x86_64')
+license=('MIT' 'APACHE')
+source=("https://github.com/RustSec/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('5c30e38d592dbc135123d3ca69fd1c778782ef9a9064d8b7cfbd93db5d636d75')
+b2sums=('f52bc30c3be63468377528808c0d66b47c9a3e10dcee767277cdd3b876da893b959ff6977987761e93bfc3b4d39e930fb3a8e19a7160c62b4f45d439f7019820')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  cargo build --release --locked
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  cargo test --release --locked
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  install -Dm755 "target/release/${pkgname}" -t "${pkgdir}/usr/bin"
+  install -Dm644 LICENSE-MIT -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in nss/repos/testing-x86_64 (6 files)

2020-07-26 Thread Jan Steffens via arch-commits
Date: Sunday, July 26, 2020 @ 22:55:03
  Author: heftig
Revision: 392565

archrelease: copy trunk to testing-x86_64

Added:
  nss/repos/testing-x86_64/PKGBUILD
(from rev 392564, nss/trunk/PKGBUILD)
  nss/repos/testing-x86_64/bundle.sh
(from rev 392564, nss/trunk/bundle.sh)
  nss/repos/testing-x86_64/certdata2pem.py
(from rev 392564, nss/trunk/certdata2pem.py)
Deleted:
  nss/repos/testing-x86_64/PKGBUILD
  nss/repos/testing-x86_64/bundle.sh
  nss/repos/testing-x86_64/certdata2pem.py

-+
 PKGBUILD|  194 ++--
 bundle.sh   |   44 +-
 certdata2pem.py |  826 +++---
 3 files changed, 532 insertions(+), 532 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-26 22:54:49 UTC (rev 392564)
+++ PKGBUILD2020-07-26 22:55:03 UTC (rev 392565)
@@ -1,97 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgbase=nss
-pkgname=(nss ca-certificates-mozilla)
-pkgver=3.55
-pkgrel=1
-pkgdesc="Network Security Services"
-url="https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS;
-arch=(x86_64)
-license=(MPL GPL)
-depends=(nspr sqlite zlib sh 'p11-kit>=0.23.19')
-makedepends=(perl python gyp)
-source=("https://ftp.mozilla.org/pub/security/nss/releases/NSS_${pkgver//./_}_RTM/src/nss-${pkgver}.tar.gz;
-certdata2pem.py bundle.sh)
-sha256sums=('a02c0bb1b91199600f9b7b45a9dd2feb8a0e3fafd3fc11ca7c5a3f0103bb76d2'
-'d2a1579dae05fd16175fac27ef08b54731ecefdf414085c610179afcf62b096c'
-'3bfadf722da6773bdabdd25bdf78158648043d1b7e57615574f189a88ca865dd')
-
-prepare() {
-  mkdir certs
-  ln -srt certs nss-$pkgver/nss/lib/ckfw/builtins/{certdata.txt,nssckbi.h}
-
-  cd nss-$pkgver
-}
-
-build() {
-  cd certs
-  ../certdata2pem.py
-
-  cd ..
-  ./bundle.sh
-
-  cd nss-$pkgver/nss
-  ./build.sh \
---target x64 \
---opt \
---system-sqlite \
---system-nspr \
---enable-libpkix \
---disable-tests
-}
-
-package_nss() {
-  cd nss-$pkgver
-
-  local libdir=/usr/lib nsprver="$(pkg-config --modversion nspr)"
-  sed nss/pkg/pkg-config/nss.pc.in \
--e "s,%libdir%,$libdir,g" \
--e "s,%prefix%,/usr,g" \
--e "s,%exec_prefix%,/usr/bin,g" \
--e "s,%includedir%,/usr/include/nss,g" \
--e "s,%NSPR_VERSION%,$nsprver,g" \
--e "s,%NSS_VERSION%,$pkgver,g" |
-install -Dm644 /dev/stdin "$pkgdir$libdir/pkgconfig/nss.pc"
-
-  ln -s nss.pc "$pkgdir$libdir/pkgconfig/mozilla-nss.pc"
-
-  install -Dt "$pkgdir$libdir" dist/Release/lib/*.so
-  install -Dt "$pkgdir$libdir" -m644 dist/Release/lib/*.chk
-
-  local vmajor vminor vpatch
-  { read vmajor; read vminor; read vpatch; } \
-< <(awk '/#define.*NSS_V(MAJOR|MINOR|PATCH)/ {print $3}' nss/lib/nss/nss.h)
-
-  sed nss/pkg/pkg-config/nss-config.in \
--e "s,@libdir@,$libdir,g" \
--e "s,@prefix@,/usr/bin,g" \
--e "s,@exec_prefix@,/usr/bin,g" \
--e "s,@includedir@,/usr/include/nss,g" \
--e "s,@MOD_MAJOR_VERSION@,$vmajor,g" \
--e "s,@MOD_MINOR_VERSION@,$vminor,g" \
--e "s,@MOD_PATCH_VERSION@,$vpatch,g" |
-install -D /dev/stdin "$pkgdir/usr/bin/nss-config"
-
-  install -Dt "$pkgdir/usr/bin" \
-dist/Release/bin/{*util,shlibsign,signtool,signver,ssltap}
-
-  install -Dt "$pkgdir/usr/include/nss" -m644 dist/public/nss/*.h
-
-  install -Dt "$pkgdir/usr/share/man/man1" -m644 \
-nss/doc/nroff/{*util,signtool,signver,ssltap}.1
-
-  # Replace built-in trust with p11-kit connection
-  ln -s pkcs11/p11-kit-trust.so "$pkgdir$libdir/p11-kit-trust.so"
-  ln -sf p11-kit-trust.so "$pkgdir$libdir/libnssckbi.so"
-}
-
-package_ca-certificates-mozilla() {
-  pkgdesc="Mozilla's set of trusted CA certificates"
-  depends=('ca-certificates-utils>=20181109-3')
-
-  install -Dm644 ca-bundle.trust.p11-kit \
-"$pkgdir/usr/share/ca-certificates/trust-source/mozilla.trust.p11-kit"
-}
-
-# vim:set sw=2 et:

Copied: nss/repos/testing-x86_64/PKGBUILD (from rev 392564, nss/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-26 22:55:03 UTC (rev 392565)
@@ -0,0 +1,97 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgbase=nss
+pkgname=(nss ca-certificates-mozilla)
+pkgver=3.55
+pkgrel=2
+pkgdesc="Network Security Services"
+url="https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS;
+arch=(x86_64)
+license=(MPL GPL)
+depends=(nspr sqlite zlib sh 'p11-kit>=0.23.19')
+makedepends=(perl python gyp)
+source=("https://ftp.mozilla.org/pub/security/nss/releases/NSS_${pkgver//./_}_RTM/src/nss-${pkgver}.tar.gz;
+certdata2pem.py bundle.sh)
+sha256sums=('fc692e3db45a082ee6328cd989e795c171a00df9c518df090937f7604f850004'
+'d2a1579dae05fd16175fac27ef08b54731ecefdf414085c610179afcf62b096c'
+'3bfadf722da6773bdabdd25bdf78158648043d1b7e57615574f189a88ca865dd')
+

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

2020-07-26 Thread Jan Steffens via arch-commits
Date: Sunday, July 26, 2020 @ 22:54:49
  Author: heftig
Revision: 392564

3.55-2

Modified:
  nss/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 20:58:47 UTC (rev 392563)
+++ PKGBUILD2020-07-26 22:54:49 UTC (rev 392564)
@@ -4,7 +4,7 @@
 pkgbase=nss
 pkgname=(nss ca-certificates-mozilla)
 pkgver=3.55
-pkgrel=1
+pkgrel=2
 pkgdesc="Network Security Services"
 url="https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS;
 arch=(x86_64)
@@ -13,7 +13,7 @@
 makedepends=(perl python gyp)
 
source=("https://ftp.mozilla.org/pub/security/nss/releases/NSS_${pkgver//./_}_RTM/src/nss-${pkgver}.tar.gz;
 certdata2pem.py bundle.sh)
-sha256sums=('a02c0bb1b91199600f9b7b45a9dd2feb8a0e3fafd3fc11ca7c5a3f0103bb76d2'
+sha256sums=('fc692e3db45a082ee6328cd989e795c171a00df9c518df090937f7604f850004'
 'd2a1579dae05fd16175fac27ef08b54731ecefdf414085c610179afcf62b096c'
 '3bfadf722da6773bdabdd25bdf78158648043d1b7e57615574f189a88ca865dd')
 


[arch-commits] Commit in lib32-nss/repos/multilib-testing-x86_64 (4 files)

2020-07-26 Thread Jan Steffens via arch-commits
Date: Sunday, July 26, 2020 @ 22:55:02
  Author: heftig
Revision: 665393

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-nss/repos/multilib-testing-x86_64/PKGBUILD
(from rev 665392, lib32-nss/trunk/PKGBUILD)
  lib32-nss/repos/multilib-testing-x86_64/no-plt.diff
(from rev 665392, lib32-nss/trunk/no-plt.diff)
Deleted:
  lib32-nss/repos/multilib-testing-x86_64/PKGBUILD
  lib32-nss/repos/multilib-testing-x86_64/no-plt.diff

-+
 PKGBUILD|  128 +-
 no-plt.diff |   96 +--
 2 files changed, 112 insertions(+), 112 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-26 22:54:50 UTC (rev 665392)
+++ PKGBUILD2020-07-26 22:55:02 UTC (rev 665393)
@@ -1,64 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Daniel Wallace 
-# Contributor: kfgz 
-# Contributor: Ionut Biru 
-
-pkgname=lib32-nss
-pkgver=3.55
-pkgrel=1
-pkgdesc="Network Security Services (32-bit)"
-url="https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS;
-arch=(x86_64)
-license=(MPL GPL)
-depends=(lib32-nspr lib32-sqlite lib32-zlib 'lib32-p11-kit>=0.23.19')
-makedepends=(perl python gyp)
-source=("https://ftp.mozilla.org/pub/security/nss/releases/NSS_${pkgver//./_}_RTM/src/nss-${pkgver}.tar.gz;
-no-plt.diff)
-sha256sums=('a02c0bb1b91199600f9b7b45a9dd2feb8a0e3fafd3fc11ca7c5a3f0103bb76d2'
-'ea8e1b871c0f1dd29cdea1b1a2e7f47bf4713e2ae7b947ec832dba7dfcc67daa')
-
-prepare() {
-  cd nss-$pkgver
-
-  # https://bugzilla.mozilla.org/show_bug.cgi?id=1382942
-  patch -Np2 -i ../no-plt.diff
-}
-
-build() {
-  cd nss-$pkgver/nss
-  ./build.sh \
---target ia32 \
---opt \
---system-sqlite \
---system-nspr \
---enable-libpkix \
---disable-tests
-}
-
-package() {
-  depends+=(nss)
-
-  cd nss-$pkgver
-
-  local libdir=/usr/lib32 nsprver="$(i686-pc-linux-gnu-pkg-config --modversion 
nspr)"
-  sed nss/pkg/pkg-config/nss.pc.in \
--e "s,%libdir%,$libdir,g" \
--e "s,%prefix%,/usr,g" \
--e "s,%exec_prefix%,/usr/bin,g" \
--e "s,%includedir%,/usr/include/nss,g" \
--e "s,%NSPR_VERSION%,$nsprver,g" \
--e "s,%NSS_VERSION%,$pkgver,g" |
-install -Dm644 /dev/stdin "$pkgdir$libdir/pkgconfig/nss.pc"
-
-  ln -s nss.pc "$pkgdir$libdir/pkgconfig/mozilla-nss.pc"
-
-  install -Dt "$pkgdir$libdir" dist/Release/lib/*.so
-  install -Dt "$pkgdir$libdir" -m644 dist/Release/lib/*.chk
-
-
-  # Replace built-in trust with p11-kit connection
-  ln -s pkcs11/p11-kit-trust.so "$pkgdir$libdir/p11-kit-trust.so"
-  ln -sf p11-kit-trust.so "$pkgdir$libdir/libnssckbi.so"
-}
-
-# vim:set sw=2 et:

Copied: lib32-nss/repos/multilib-testing-x86_64/PKGBUILD (from rev 665392, 
lib32-nss/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-26 22:55:02 UTC (rev 665393)
@@ -0,0 +1,64 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Daniel Wallace 
+# Contributor: kfgz 
+# Contributor: Ionut Biru 
+
+pkgname=lib32-nss
+pkgver=3.55
+pkgrel=2
+pkgdesc="Network Security Services (32-bit)"
+url="https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS;
+arch=(x86_64)
+license=(MPL GPL)
+depends=(lib32-nspr lib32-sqlite lib32-zlib 'lib32-p11-kit>=0.23.19')
+makedepends=(perl python gyp)
+source=("https://ftp.mozilla.org/pub/security/nss/releases/NSS_${pkgver//./_}_RTM/src/nss-${pkgver}.tar.gz;
+no-plt.diff)
+sha256sums=('fc692e3db45a082ee6328cd989e795c171a00df9c518df090937f7604f850004'
+'ea8e1b871c0f1dd29cdea1b1a2e7f47bf4713e2ae7b947ec832dba7dfcc67daa')
+
+prepare() {
+  cd nss-$pkgver
+
+  # https://bugzilla.mozilla.org/show_bug.cgi?id=1382942
+  patch -Np2 -i ../no-plt.diff
+}
+
+build() {
+  cd nss-$pkgver/nss
+  ./build.sh \
+--target ia32 \
+--opt \
+--system-sqlite \
+--system-nspr \
+--enable-libpkix \
+--disable-tests
+}
+
+package() {
+  depends+=(nss)
+
+  cd nss-$pkgver
+
+  local libdir=/usr/lib32 nsprver="$(i686-pc-linux-gnu-pkg-config --modversion 
nspr)"
+  sed nss/pkg/pkg-config/nss.pc.in \
+-e "s,%libdir%,$libdir,g" \
+-e "s,%prefix%,/usr,g" \
+-e "s,%exec_prefix%,/usr/bin,g" \
+-e "s,%includedir%,/usr/include/nss,g" \
+-e "s,%NSPR_VERSION%,$nsprver,g" \
+-e "s,%NSS_VERSION%,$pkgver,g" |
+install -Dm644 /dev/stdin "$pkgdir$libdir/pkgconfig/nss.pc"
+
+  ln -s nss.pc "$pkgdir$libdir/pkgconfig/mozilla-nss.pc"
+
+  install -Dt "$pkgdir$libdir" dist/Release/lib/*.so
+  install -Dt "$pkgdir$libdir" -m644 dist/Release/lib/*.chk
+
+
+  # Replace built-in trust with p11-kit connection
+  ln -s pkcs11/p11-kit-trust.so "$pkgdir$libdir/p11-kit-trust.so"
+  ln -sf p11-kit-trust.so "$pkgdir$libdir/libnssckbi.so"
+}
+
+# vim:set sw=2 et:

Deleted: no-plt.diff

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

2020-07-26 Thread Jan Steffens via arch-commits
Date: Sunday, July 26, 2020 @ 22:54:50
  Author: heftig
Revision: 665392

3.55-2

Modified:
  lib32-nss/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 21:59:30 UTC (rev 665391)
+++ PKGBUILD2020-07-26 22:54:50 UTC (rev 665392)
@@ -5,7 +5,7 @@
 
 pkgname=lib32-nss
 pkgver=3.55
-pkgrel=1
+pkgrel=2
 pkgdesc="Network Security Services (32-bit)"
 url="https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS;
 arch=(x86_64)
@@ -14,7 +14,7 @@
 makedepends=(perl python gyp)
 
source=("https://ftp.mozilla.org/pub/security/nss/releases/NSS_${pkgver//./_}_RTM/src/nss-${pkgver}.tar.gz;
 no-plt.diff)
-sha256sums=('a02c0bb1b91199600f9b7b45a9dd2feb8a0e3fafd3fc11ca7c5a3f0103bb76d2'
+sha256sums=('fc692e3db45a082ee6328cd989e795c171a00df9c518df090937f7604f850004'
 'ea8e1b871c0f1dd29cdea1b1a2e7f47bf4713e2ae7b947ec832dba7dfcc67daa')
 
 prepare() {


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

2020-07-26 Thread Dan Printzell via arch-commits
Date: Sunday, July 26, 2020 @ 21:59:30
  Author: wild
Revision: 665391

archrelease: copy trunk to community-x86_64

Added:
  dfmt/repos/community-x86_64/PKGBUILD
(from rev 665390, dfmt/trunk/PKGBUILD)
Deleted:
  dfmt/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-26 21:59:25 UTC (rev 665390)
+++ PKGBUILD2020-07-26 21:59:30 UTC (rev 665391)
@@ -1,53 +0,0 @@
-# Maintainer: Dan Printzell 
-
-pkgname=('dfmt')
-pkgver=0.12.0
-pkgrel=1
-_pkgcommit=09caf255e537ea832a87c9aeb7ec4ed38d751300
-pkgdesc="Dfmt is a formatter for D source code"
-arch=('x86_64')
-url="https://github.com/dlang-community/dfmt;
-license=("custom")
-groups=('dlang')
-makedepends=('ldc' 'git')
-depends=('liblphobos')
-
-source=(
-   "git+https://github.com/dlang-community/dfmt#commit=$_pkgcommit;
-   "git+https://github.com/dlang-community/libdparse;
-   "git+https://github.com/sociomantic-tsunami/makd;
-   "git+https://github.com/sociomantic-tsunami/beaver;
-   "git+https://github.com/dlang-community/stdx-allocator;
-)
-sha256sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP')
-
-prepare() {
-   cd "$srcdir/dfmt"
-
-   git submodule init
-   git config submodule.libdparse.url "$srcdir/libdparse"
-   git config submodule.makd.url "$srcdir/makd"
-   git config submodule.beaver.url "$srcdir/beaver"
-   git config submodule.stdx-allocator.url "$srcdir/stdx-allocator"
-   git submodule update
-
-   _extraFlags="-O5 -flto=full -linker=gold -link-defaultlib-shared=false 
-L=\"$LDFLAGS\""
-   sed -i "/LDC_FLAGS \:=/ a override LDC_FLAGS += $_extraFlags" makefile
-}
-
-build() {
-   cd "$srcdir/dfmt"
-   make ldc
-}
-
-package() {
-   # binaries
-   install -Dm755 "$srcdir/dfmt/bin/dfmt" "$pkgdir/usr/bin/dfmt"
-
-   # license
-   install -Dm644 "$srcdir/dfmt/LICENSE.txt" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: dfmt/repos/community-x86_64/PKGBUILD (from rev 665390, 
dfmt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-26 21:59:30 UTC (rev 665391)
@@ -0,0 +1,53 @@
+# Maintainer: Dan Printzell 
+
+pkgname=('dfmt')
+pkgver=0.13.0
+pkgrel=1
+_pkgcommit=b5dbb0e031d411bb94c8784f52eebbe474583755
+pkgdesc="Dfmt is a formatter for D source code"
+arch=('x86_64')
+url="https://github.com/dlang-community/dfmt;
+license=("custom")
+groups=('dlang')
+makedepends=('ldc' 'git')
+depends=('liblphobos')
+
+source=(
+   "git+https://github.com/dlang-community/dfmt#commit=$_pkgcommit;
+   "git+https://github.com/dlang-community/libdparse;
+   "git+https://github.com/sociomantic-tsunami/makd;
+   "git+https://github.com/sociomantic-tsunami/beaver;
+   "git+https://github.com/dlang-community/stdx-allocator;
+)
+sha256sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP')
+
+prepare() {
+   cd "$srcdir/dfmt"
+
+   git submodule init
+   git config submodule.libdparse.url "$srcdir/libdparse"
+   git config submodule.makd.url "$srcdir/makd"
+   git config submodule.beaver.url "$srcdir/beaver"
+   git config submodule.stdx-allocator.url "$srcdir/stdx-allocator"
+   git submodule update
+
+   _extraFlags="-O5 -flto=full -linker=gold -link-defaultlib-shared=false 
-L=\"$LDFLAGS\""
+   sed -i "/LDC_FLAGS \:=/ a override LDC_FLAGS += $_extraFlags" makefile
+}
+
+build() {
+   cd "$srcdir/dfmt"
+   make ldc
+}
+
+package() {
+   # binaries
+   install -Dm755 "$srcdir/dfmt/bin/dfmt" "$pkgdir/usr/bin/dfmt"
+
+   # license
+   install -Dm644 "$srcdir/dfmt/LICENSE.txt" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2020-07-26 Thread Dan Printzell via arch-commits
Date: Sunday, July 26, 2020 @ 21:59:25
  Author: wild
Revision: 665390

upgpkg: dfmt 0.13.0-1: Updated to 0.13.0

Modified:
  dfmt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 21:57:22 UTC (rev 665389)
+++ PKGBUILD2020-07-26 21:59:25 UTC (rev 665390)
@@ -1,9 +1,9 @@
 # Maintainer: Dan Printzell 
 
 pkgname=('dfmt')
-pkgver=0.12.0
+pkgver=0.13.0
 pkgrel=1
-_pkgcommit=09caf255e537ea832a87c9aeb7ec4ed38d751300
+_pkgcommit=b5dbb0e031d411bb94c8784f52eebbe474583755
 pkgdesc="Dfmt is a formatter for D source code"
 arch=('x86_64')
 url="https://github.com/dlang-community/dfmt;


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

2020-07-26 Thread Dan Printzell via arch-commits
Date: Sunday, July 26, 2020 @ 21:57:15
  Author: wild
Revision: 665388

upgpkg: dcd 1:0.13.0-1: Updated to 0.13.0

Modified:
  dcd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 21:55:15 UTC (rev 665387)
+++ PKGBUILD2020-07-26 21:57:15 UTC (rev 665388)
@@ -4,10 +4,10 @@
 # Contributor: Mihails Strasuns 
 
 pkgname=dcd
-pkgver=0.12.0
-pkgrel=3
+pkgver=0.13.0
+pkgrel=1
 epoch=1
-_pkgcommit=33dbd7653ecf830b735382e11d9bee66853a6dcf
+_pkgcommit=808460a678d9c993d393c36e7eb06601a157efcf
 pkgdesc="D Completion Daemon: auto-complete for the D programming language"
 arch=('x86_64')
 url="https://github.com/dlang-community/DCD;


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

2020-07-26 Thread Dan Printzell via arch-commits
Date: Sunday, July 26, 2020 @ 21:57:22
  Author: wild
Revision: 665389

archrelease: copy trunk to community-x86_64

Added:
  dcd/repos/community-x86_64/PKGBUILD
(from rev 665388, dcd/trunk/PKGBUILD)
  dcd/repos/community-x86_64/dcd.conf
(from rev 665388, dcd/trunk/dcd.conf)
  dcd/repos/community-x86_64/dcd.service
(from rev 665388, dcd/trunk/dcd.service)
Deleted:
  dcd/repos/community-x86_64/PKGBUILD
  dcd/repos/community-x86_64/dcd.conf
  dcd/repos/community-x86_64/dcd.service

-+
 PKGBUILD|  146 +-
 dcd.conf|2 
 dcd.service |   26 +-
 3 files changed, 87 insertions(+), 87 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-26 21:57:15 UTC (rev 665388)
+++ PKGBUILD2020-07-26 21:57:22 UTC (rev 665389)
@@ -1,73 +0,0 @@
-# Maintainer: Dan Printzell 
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Jaroslav Lichtblau 
-# Contributor: Mihails Strasuns 
-
-pkgname=dcd
-pkgver=0.12.0
-pkgrel=3
-epoch=1
-_pkgcommit=33dbd7653ecf830b735382e11d9bee66853a6dcf
-pkgdesc="D Completion Daemon: auto-complete for the D programming language"
-arch=('x86_64')
-url="https://github.com/dlang-community/DCD;
-license=('GPL3')
-groups=('dlang')
-makedepends=('ldc' 'git')
-depends=('liblphobos')
-source=("git+https://github.com/dlang-community/DCD#commit=$_pkgcommit;
-"git+https://github.com/msgpack/msgpack-d;
-"git+https://github.com/economicmodeling/containers;
-"git+https://github.com/dlang-community/libdparse;
-"git+https://github.com/dlang-community/dsymbol;
-"git+https://github.com/dlang-community/stdx-allocator;
-"dcd.service"
-   "dcd.conf")
-sha512sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-
'563e660058721fdacdfa365a774e58b0e9cdb962e14198112a5d971aa4e35025529266130474212834d78ad1c11901e2f8208176a3891ce6ffc9a2ffd9c8c1e0'
-
'1480d4d66b6732f198fcaae52861b06c8bfcee7f622a546d643a4e8fb259aa0350415fb2f87b1bc4d301ad11af866d7962faf2bcfc0587971a86a73265676703')
-
-prepare() {
-  cd "$srcdir/DCD"
-
-  git submodule init
-  git config submodule.msgpack-d.url "$srcdir/msgpack-d"
-  git config submodule.containers.url "$srcdir/containers"
-  git config submodule.libdparse.url "$srcdir/libdparse"
-  git config submodule.dsymbol.url "$srcdir/dsymbol"
-  git config submodule.stdx-allocator.url "$srcdir/stdx-allocator"
-  git submodule update
-
-  # Only LDC have -O5
-  sed -i "/-O5/ a -flto=full -linker=gold -link-defaultlib-shared=false 
-L=\"$LDFLAGS\"" makefile
-}
-
-build() {
-  cd "$srcdir/DCD"
-
-  make ldc
-}
-
-package() {
-  # binaries
-  install -Dm755 "$srcdir/DCD/bin/dcd-server" "$pkgdir/usr/bin/dcd-server"
-  install -Dm755 "$srcdir/DCD/bin/dcd-client" "$pkgdir/usr/bin/dcd-client"
-
-  # documentation
-  install -d "$pkgdir/usr/share/man/man1/"
-  find "$srcdir/DCD/man1/" -type f -exec install -m 644 "{}" 
"$pkgdir/usr/share/man/man1/" \;
-
-  # license
-  install -Dm644 "$srcdir/DCD/License.txt" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  # systemd service
-  install -Dm644 "$srcdir/dcd.service" 
"$pkgdir/usr/lib/systemd/system/dcd.service"
-
-  # global config
-  install -Dm644 "$srcdir/dcd.conf" "$pkgdir/etc/dcd.conf"
-}

Copied: dcd/repos/community-x86_64/PKGBUILD (from rev 665388, 
dcd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-26 21:57:22 UTC (rev 665389)
@@ -0,0 +1,73 @@
+# Maintainer: Dan Printzell 
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Jaroslav Lichtblau 
+# Contributor: Mihails Strasuns 
+
+pkgname=dcd
+pkgver=0.13.0
+pkgrel=1
+epoch=1
+_pkgcommit=808460a678d9c993d393c36e7eb06601a157efcf
+pkgdesc="D Completion Daemon: auto-complete for the D programming language"
+arch=('x86_64')
+url="https://github.com/dlang-community/DCD;
+license=('GPL3')
+groups=('dlang')
+makedepends=('ldc' 'git')
+depends=('liblphobos')
+source=("git+https://github.com/dlang-community/DCD#commit=$_pkgcommit;
+"git+https://github.com/msgpack/msgpack-d;
+"git+https://github.com/economicmodeling/containers;
+"git+https://github.com/dlang-community/libdparse;
+"git+https://github.com/dlang-community/dsymbol;
+"git+https://github.com/dlang-community/stdx-allocator;
+"dcd.service"
+   "dcd.conf")
+sha512sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+
'563e660058721fdacdfa365a774e58b0e9cdb962e14198112a5d971aa4e35025529266130474212834d78ad1c11901e2f8208176a3891ce6ffc9a2ffd9c8c1e0'
+
'1480d4d66b6732f198fcaae52861b06c8bfcee7f622a546d643a4e8fb259aa0350415fb2f87b1bc4d301ad11af866d7962faf2bcfc0587971a86a73265676703')
+
+prepare() {
+  cd "$srcdir/DCD"

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

2020-07-26 Thread Dan Printzell via arch-commits
Date: Sunday, July 26, 2020 @ 21:55:09
  Author: wild
Revision: 665386

upgpkg: dscanner 0.10.0-1: Updated to 0.10.0

Modified:
  dscanner/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 21:46:39 UTC (rev 665385)
+++ PKGBUILD2020-07-26 21:55:09 UTC (rev 665386)
@@ -2,9 +2,9 @@
 # Maintainer: Filipe Laíns (FFY00) 
 
 pkgname=dscanner
-pkgver=0.9.0
+pkgver=0.10.0
 pkgrel=1
-_pkgcommit=6d91031302fd611cbb3ce36f9b7499ddc3cd2ce7
+_pkgcommit=a40492bc92e86bad6441fc3aba776fe2c6a5090b
 pkgdesc="Swiss-army knife for D source code"
 arch=('x86_64')
 url="https://github.com/dlang-community/D-Scanner;


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

2020-07-26 Thread Dan Printzell via arch-commits
Date: Sunday, July 26, 2020 @ 21:55:15
  Author: wild
Revision: 665387

archrelease: copy trunk to community-x86_64

Added:
  dscanner/repos/community-x86_64/PKGBUILD
(from rev 665386, dscanner/trunk/PKGBUILD)
Deleted:
  dscanner/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-26 21:55:09 UTC (rev 665386)
+++ PKGBUILD2020-07-26 21:55:15 UTC (rev 665387)
@@ -1,57 +0,0 @@
-# Maintainer: Dan Printzell 
-# Maintainer: Filipe Laíns (FFY00) 
-
-pkgname=dscanner
-pkgver=0.9.0
-pkgrel=1
-_pkgcommit=6d91031302fd611cbb3ce36f9b7499ddc3cd2ce7
-pkgdesc="Swiss-army knife for D source code"
-arch=('x86_64')
-url="https://github.com/dlang-community/D-Scanner;
-license=("custom")
-groups=('dlang')
-makedepends=('ldc' 'git')
-depends=('liblphobos')
-source=("git+https://github.com/dlang-community/D-Scanner#commit=$_pkgcommit;
-"git+https://github.com/dlang-community/libdparse;
-"git+https://github.com/burner/inifiled;
-"git+https://github.com/economicmodeling/containers;
-"git+https://github.com/dlang-community/dsymbol;
-"git+https://github.com/economicmodeling/libddoc;
-"git+https://github.com/dlang-community/stdx-allocator;)
-sha512sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP')
-
-prepare() {
-  cd "$srcdir/D-Scanner"
-
-  git submodule init
-  git config submodule.libdparse.url "$srcdir/libdparse"
-  git config submodule.inifiled.url "$srcdir/inifiled"
-  git config submodule.containers.url "$srcdir/containers"
-  git config submodule.dsymbol.url "$srcdir/dsymbol"
-  git config submodule.libddoc.url "$srcdir/libddoc"
-  git config submodule.stdx-allocator.url "$srcdir/stdx-allocator"
-  git submodule update
-
-  # Only LDC have -O5
-  sed -i "s/-O5/-O5 -flto=full -linker=gold -link-defaultlib-shared=false 
-L=\"$LDFLAGS\"/g" makefile
-}
-
-build() {
-  cd "$srcdir/D-Scanner"
-  make ldc
-}
-
-package() {
-  # binaries
-  install -Dm755 "$srcdir/D-Scanner/bin/dscanner" "$pkgdir/usr/bin/dscanner"
-
-  # license
-  install -Dm644 "$srcdir/D-Scanner/LICENSE_1_0.txt" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: dscanner/repos/community-x86_64/PKGBUILD (from rev 665386, 
dscanner/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-26 21:55:15 UTC (rev 665387)
@@ -0,0 +1,57 @@
+# Maintainer: Dan Printzell 
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=dscanner
+pkgver=0.10.0
+pkgrel=1
+_pkgcommit=a40492bc92e86bad6441fc3aba776fe2c6a5090b
+pkgdesc="Swiss-army knife for D source code"
+arch=('x86_64')
+url="https://github.com/dlang-community/D-Scanner;
+license=("custom")
+groups=('dlang')
+makedepends=('ldc' 'git')
+depends=('liblphobos')
+source=("git+https://github.com/dlang-community/D-Scanner#commit=$_pkgcommit;
+"git+https://github.com/dlang-community/libdparse;
+"git+https://github.com/burner/inifiled;
+"git+https://github.com/economicmodeling/containers;
+"git+https://github.com/dlang-community/dsymbol;
+"git+https://github.com/economicmodeling/libddoc;
+"git+https://github.com/dlang-community/stdx-allocator;)
+sha512sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP')
+
+prepare() {
+  cd "$srcdir/D-Scanner"
+
+  git submodule init
+  git config submodule.libdparse.url "$srcdir/libdparse"
+  git config submodule.inifiled.url "$srcdir/inifiled"
+  git config submodule.containers.url "$srcdir/containers"
+  git config submodule.dsymbol.url "$srcdir/dsymbol"
+  git config submodule.libddoc.url "$srcdir/libddoc"
+  git config submodule.stdx-allocator.url "$srcdir/stdx-allocator"
+  git submodule update
+
+  # Only LDC have -O5
+  sed -i "s/-O5/-O5 -flto=full -linker=gold -link-defaultlib-shared=false 
-L=\"$LDFLAGS\"/g" makefile
+}
+
+build() {
+  cd "$srcdir/D-Scanner"
+  make ldc
+}
+
+package() {
+  # binaries
+  install -Dm755 "$srcdir/D-Scanner/bin/dscanner" "$pkgdir/usr/bin/dscanner"
+
+  # license
+  install -Dm644 "$srcdir/D-Scanner/LICENSE_1_0.txt" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2020-07-26 Thread Konstantin Gizdov via arch-commits
Date: Sunday, July 26, 2020 @ 21:46:20
  Author: kgizdov
Revision: 665384

upgpkg: root 6.22.00-3: fix python

Modified:
  root/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 21:33:09 UTC (rev 665383)
+++ PKGBUILD2020-07-26 21:46:20 UTC (rev 665384)
@@ -7,7 +7,7 @@
 pkgbase=root
 pkgname=('root' 'root-cuda')
 pkgver=6.22.00
-pkgrel=2
+pkgrel=3
 pkgdesc='C++ data analysis framework and interpreter from CERN'
 arch=('x86_64')
 url='https://root.cern'
@@ -187,6 +187,9 @@
 ln -f rootcling genreflex
 cd "${bld_dir}" # go back
 
+# rename the modulemap
+mv "${pkgdir}"/usr/include/module.modulemap 
"${pkgdir}"/usr/include/root.modulemap
+
 # fix python env call
 sed -e 's/@python@/python/' -i "${pkgdir}/usr/lib/root/cmdLineUtils.py"
 
@@ -195,8 +198,8 @@
 local _pyver=$(get_pyver)
 local _pydir="${pkgdir}/usr/lib/python${_pyver}/site-packages"
 install -d "${_pydir}"
-find "${pkgdir}/usr/lib/root" -maxdepth 1 -mindepth 1 \( -iname "*py*" -or 
-name "*Js*" \) \
-! \( -name "*EGPythia8*" -or -iname "*.rootmap" -or -iname "*.pcm" 
\) -print0 | while read -rd $'\0' _lib; do
+find "${pkgdir}/usr/lib/root" -maxdepth 1 -mindepth 1 \( -iname '*py*' -or 
-name '*Js*' -or -name 'ROOT' \) \
+! \( -name '*EGPythia8*' -or -iname '*.rootmap' -or -iname '*.pcm' 
\) -print0 | while read -rd $'\0' _lib; do
 _base=$(basename "${_lib}")
 ln -sf "/usr/lib/root/${_base}" 
"${pkgdir}/usr/lib/python${_pyver}/site-packages/${_base}"
 done


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

2020-07-26 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 26, 2020 @ 20:58:42
  Author: jelle
Revision: 392562

Add makedepend perl

Add perl as explicit makedepend as it's currently a transient dependency.

Modified:
  liblouis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 20:50:35 UTC (rev 392561)
+++ PKGBUILD2020-07-26 20:58:42 UTC (rev 392562)
@@ -3,13 +3,13 @@
 
 pkgname=liblouis
 pkgver=3.14.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Open-source braille translator and back-translator"
 arch=(x86_64)
 url="http://liblouis.org/;
 license=('GPL3')
 depends=(glibc)
-makedepends=(help2man python)
+makedepends=(help2man python perl)
 
source=(https://github.com/liblouis/liblouis/releases/download/v$pkgver/liblouis-$pkgver.tar.gz)
 sha256sums=('f5b25f8059dd76595aeb419b1522dda78f281a75a7c56dceaaa443f8c437306a')
 


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

2020-07-26 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 26, 2020 @ 20:58:47
  Author: jelle
Revision: 392563

archrelease: copy trunk to extra-x86_64

Added:
  liblouis/repos/extra-x86_64/PKGBUILD
(from rev 392562, liblouis/trunk/PKGBUILD)
Deleted:
  liblouis/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-26 20:58:42 UTC (rev 392562)
+++ PKGBUILD2020-07-26 20:58:47 UTC (rev 392563)
@@ -1,30 +0,0 @@
-# Maintainer: Jan de Groot 
-# Contributor: Ionut Biru 
-
-pkgname=liblouis
-pkgver=3.14.0
-pkgrel=1
-pkgdesc="Open-source braille translator and back-translator"
-arch=(x86_64)
-url="http://liblouis.org/;
-license=('GPL3')
-depends=(glibc)
-makedepends=(help2man python)
-source=(https://github.com/liblouis/liblouis/releases/download/v$pkgver/liblouis-$pkgver.tar.gz)
-sha256sums=('f5b25f8059dd76595aeb419b1522dda78f281a75a7c56dceaaa443f8c437306a')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --disable-static --enable-ucs4
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  cd python
-  LD_PRELOAD+=":$srcdir/$pkgname-$pkgver/liblouis/.libs/liblouis.so"
-  python setup.py install --root="$pkgdir" --prefix="/usr" --optimize=1
-}
-# vim:set ts=2 sw=2 et:

Copied: liblouis/repos/extra-x86_64/PKGBUILD (from rev 392562, 
liblouis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-26 20:58:47 UTC (rev 392563)
@@ -0,0 +1,30 @@
+# Maintainer: Jan de Groot 
+# Contributor: Ionut Biru 
+
+pkgname=liblouis
+pkgver=3.14.0
+pkgrel=2
+pkgdesc="Open-source braille translator and back-translator"
+arch=(x86_64)
+url="http://liblouis.org/;
+license=('GPL3')
+depends=(glibc)
+makedepends=(help2man python perl)
+source=(https://github.com/liblouis/liblouis/releases/download/v$pkgver/liblouis-$pkgver.tar.gz)
+sha256sums=('f5b25f8059dd76595aeb419b1522dda78f281a75a7c56dceaaa443f8c437306a')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static --enable-ucs4
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  cd python
+  LD_PRELOAD+=":$srcdir/$pkgname-$pkgver/liblouis/.libs/liblouis.so"
+  python setup.py install --root="$pkgdir" --prefix="/usr" --optimize=1
+}
+# vim:set ts=2 sw=2 et:


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

2020-07-26 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 26, 2020 @ 20:50:35
  Author: jelle
Revision: 392561

archrelease: copy trunk to extra-x86_64

Added:
  zenity/repos/extra-x86_64/PKGBUILD
(from rev 392560, zenity/trunk/PKGBUILD)
Deleted:
  zenity/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-26 20:50:23 UTC (rev 392560)
+++ PKGBUILD2020-07-26 20:50:35 UTC (rev 392561)
@@ -1,37 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Maintainer: Jan de Groot 
-
-pkgname=zenity
-pkgver=3.32.0+17+gfb0938f
-pkgrel=2
-pkgdesc="Display graphical dialog boxes from shell scripts"
-url="https://gitlab.gnome.org/GNOME/zenity;
-arch=(x86_64)
-license=(LGPL)
-depends=(webkit2gtk libnotify)
-makedepends=(yelp-tools autoconf-archive git)
-_commit=fb0938fa1bb34a1a09162a2327fdff7132ff5721  # master
-source=("git+https://gitlab.gnome.org/GNOME/zenity.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^ZENITY_//;s/_/./g;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="${pkgdir}" install
-}

Copied: zenity/repos/extra-x86_64/PKGBUILD (from rev 392560, 
zenity/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-26 20:50:35 UTC (rev 392561)
@@ -0,0 +1,37 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Jan de Groot 
+
+pkgname=zenity
+pkgver=3.32.0+17+gfb0938f
+pkgrel=3
+pkgdesc="Display graphical dialog boxes from shell scripts"
+url="https://gitlab.gnome.org/GNOME/zenity;
+arch=(x86_64)
+license=(LGPL)
+depends=(webkit2gtk libnotify)
+makedepends=(yelp-tools autoconf-archive git perl)
+_commit=fb0938fa1bb34a1a09162a2327fdff7132ff5721  # master
+source=("git+https://gitlab.gnome.org/GNOME/zenity.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^ZENITY_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="${pkgdir}" install
+}


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

2020-07-26 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 26, 2020 @ 20:50:23
  Author: jelle
Revision: 392560

Add perl makedepend

As openssl in the future no longer depends on perl, add perl as makedepends.

Modified:
  zenity/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 20:20:52 UTC (rev 392559)
+++ PKGBUILD2020-07-26 20:50:23 UTC (rev 392560)
@@ -3,13 +3,13 @@
 
 pkgname=zenity
 pkgver=3.32.0+17+gfb0938f
-pkgrel=2
+pkgrel=3
 pkgdesc="Display graphical dialog boxes from shell scripts"
 url="https://gitlab.gnome.org/GNOME/zenity;
 arch=(x86_64)
 license=(LGPL)
 depends=(webkit2gtk libnotify)
-makedepends=(yelp-tools autoconf-archive git)
+makedepends=(yelp-tools autoconf-archive git perl)
 _commit=fb0938fa1bb34a1a09162a2327fdff7132ff5721  # master
 source=("git+https://gitlab.gnome.org/GNOME/zenity.git#commit=$_commit;)
 sha256sums=('SKIP')


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

2020-07-26 Thread Jan Steffens via arch-commits
Date: Sunday, July 26, 2020 @ 20:20:52
  Author: heftig
Revision: 392559

archrelease: copy trunk to extra-x86_64

Added:
  libqmi/repos/extra-x86_64/PKGBUILD
(from rev 392558, libqmi/trunk/PKGBUILD)
Deleted:
  libqmi/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-26 20:20:43 UTC (rev 392558)
+++ PKGBUILD2020-07-26 20:20:52 UTC (rev 392559)
@@ -1,43 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=libqmi
-pkgver=1.26.0
-pkgrel=1
-pkgdesc="QMI modem protocol helper library"
-arch=(x86_64)
-url="https://www.freedesktop.org/wiki/Software/libqmi/;
-license=(GPL2)
-depends=(libmbim libgudev)
-makedepends=(gtk-doc python git help2man autoconf-archive 
gobject-introspection)
-provides=(libqmi-glib.so)
-_commit=61c814c2324f5f55d6ac7a41b4fe81c9b44b970b  # tags/1.26.0
-source=("git+https://gitlab.freedesktop.org/mobile-broadband/libqmi.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-rc/rc/;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---libexecdir=/usr/lib --disable-static --enable-gtk-doc \
---enable-compile-warnings=minimum
-  make
-}
-
-check() {
-  cd $pkgname
-  make check
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: libqmi/repos/extra-x86_64/PKGBUILD (from rev 392558, 
libqmi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-26 20:20:52 UTC (rev 392559)
@@ -0,0 +1,43 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=libqmi
+pkgver=1.26.2
+pkgrel=1
+pkgdesc="QMI modem protocol helper library"
+arch=(x86_64)
+url="https://www.freedesktop.org/wiki/Software/libqmi/;
+license=(GPL2)
+depends=(libmbim libgudev)
+makedepends=(gtk-doc python git help2man autoconf-archive 
gobject-introspection)
+provides=(libqmi-glib.so)
+_commit=20446dd80662725d73a634fc6946cbdb99dc6468  # tags/1.26.2
+source=("git+https://gitlab.freedesktop.org/mobile-broadband/libqmi.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-rc/rc/;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--libexecdir=/usr/lib --disable-static --enable-gtk-doc \
+--enable-compile-warnings=yes
+  make
+}
+
+check() {
+  cd $pkgname
+  make check
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}


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

2020-07-26 Thread Jan Steffens via arch-commits
Date: Sunday, July 26, 2020 @ 20:20:43
  Author: heftig
Revision: 392558

1.26.2-1

Modified:
  libqmi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 20:10:26 UTC (rev 392557)
+++ PKGBUILD2020-07-26 20:20:43 UTC (rev 392558)
@@ -1,7 +1,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=libqmi
-pkgver=1.26.0
+pkgver=1.26.2
 pkgrel=1
 pkgdesc="QMI modem protocol helper library"
 arch=(x86_64)
@@ -10,7 +10,7 @@
 depends=(libmbim libgudev)
 makedepends=(gtk-doc python git help2man autoconf-archive 
gobject-introspection)
 provides=(libqmi-glib.so)
-_commit=61c814c2324f5f55d6ac7a41b4fe81c9b44b970b  # tags/1.26.0
+_commit=20446dd80662725d73a634fc6946cbdb99dc6468  # tags/1.26.2
 
source=("git+https://gitlab.freedesktop.org/mobile-broadband/libqmi.git#commit=$_commit;)
 sha256sums=('SKIP')
 


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

2020-07-26 Thread Morten Linderud via arch-commits
Date: Sunday, July 26, 2020 @ 19:54:13
  Author: foxboron
Revision: 665382

archrelease: copy trunk to community-x86_64

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

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

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

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


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

2020-07-26 Thread Morten Linderud via arch-commits
Date: Sunday, July 26, 2020 @ 19:54:05
  Author: foxboron
Revision: 665381

upgpkg: i3-gaps 4.18.2-1

Modified:
  i3-gaps/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 19:18:51 UTC (rev 665380)
+++ PKGBUILD2020-07-26 19:54:05 UTC (rev 665381)
@@ -3,8 +3,8 @@
 
 pkgname=i3-gaps
 _pkgsourcename=i3
-pkgver=4.18.1
-pkgrel=2
+pkgver=4.18.2
+pkgrel=1
 pkgdesc='A fork of i3wm tiling window manager with more features, including 
gaps'
 arch=('i686' 'x86_64')
 url='https://github.com/Airblader/i3'
@@ -25,7 +25,7 @@
 backup=(etc/i3/config)
 options=('docs')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Airblader/i3/archive/${pkgver}.tar.gz;)
-sha256sums=('3f709e7b38938fa152ca730b9940634c5b1bcf3d9db38d023b30820d522df31d')
+sha256sums=('cc03cc008f51792b3c2fd5c8815ec213f8040385865fa558b0c78d5dc5f7150d')
 
 prepare(){
   mkdir build


[arch-commits] Commit in mediawiki/repos/community-any (6 files)

2020-07-26 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 26, 2020 @ 19:18:51
  Author: jelle
Revision: 665380

archrelease: copy trunk to community-any

Added:
  mediawiki/repos/community-any/PKGBUILD
(from rev 665379, mediawiki/trunk/PKGBUILD)
  mediawiki/repos/community-any/apache.example.conf
(from rev 665379, mediawiki/trunk/apache.example.conf)
  mediawiki/repos/community-any/mediawiki.install
(from rev 665379, mediawiki/trunk/mediawiki.install)
Deleted:
  mediawiki/repos/community-any/PKGBUILD
  mediawiki/repos/community-any/apache.example.conf
  mediawiki/repos/community-any/mediawiki.install

-+
 PKGBUILD|  165 +-
 apache.example.conf |   14 ++--
 mediawiki.install   |6 -
 3 files changed, 94 insertions(+), 91 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-26 19:18:40 UTC (rev 665379)
+++ PKGBUILD2020-07-26 19:18:51 UTC (rev 665380)
@@ -1,81 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: Sergej Pupykin 
-
-pkgbase=mediawiki
-pkgname=('mediawiki' 'mediawiki-math')
-#pkgname=('mediawiki')
-pkgver=1.34.2
-_basever=${pkgver%.*}
-_hash=b1a022f
-pkgrel=1
-pkgdesc="MediaWiki engine"
-arch=('any')
-url="https://www.mediawiki.org/wiki/MediaWiki;
-# + https://www.mediawiki.org/wiki/Extension:Math
-license=("GPL")
-depends=('php')
-makedepends=('git' 'texvc')
-optdepends=('texvc: for math rendering'
-   'pcre: for regular expressions support'
-   'php-intl: to handle Unicode normalization'
-#  'php-mysql: for MySQL database support'
-   'php-pgsql: for PostgreSQL database support'
-   'php-sqlite: for sqlite database support'
-#  'php-apcu: for cache support'
-#  'php-xcache: for cache support'
-   'memcached: for cache support'
-   'php-gd: for thumbnails rendering'
-   'imagemagick: for thumbnails rendering'
-   'smtp-forwarder: for mail sending')
-install=mediawiki.install
-options=(!strip)
-validpgpkeys=('41B2ABE817ADD3E52BDA946F72BC1C5D23107F8A'
-  '1D98867E82982C8FE0ABC25F9B69B3109D3BB7B0'
-  'C83A8E4D3C8FEB7C8A3A1998131910E01605D9AA')
-#  
mediawiki-math-${_basever}::git+https://git.wikimedia.org/git/mediawiki/extensions/Math.git#branch=REL${_basever/./_}
-source=("https://releases.wikimedia.org/mediawiki/${_basever}/mediawiki-$pkgver.tar.gz"{,.sig}
-   
"mediawiki-math-${_basever}.tar.gz::https://codeload.github.com/wikimedia/mediawiki-extensions-Math/legacy.tar.gz/REL${_basever/./_};
-   apache.example.conf)
-sha256sums=('0edc557f6093bdb91f7ea32e0ade117e02dc13593518584d07088845823224d6'
-'SKIP'
-'533c4f052bffafc1f1ea6b5b0a88cf363cdcfbaa6996ccb85f950635707e8e5e'
-'cfeff68331e930b6a93f166c12666ac59a84aa24334f94520eff3f988f37ce2b')
-
-package_mediawiki() {
-  cd "$srcdir"
-  install -vdm0755 "$pkgdir"/usr/share/webapps
-  install -vdm0755 "$pkgdir"/etc/webapps/mediawiki
-  cp -a $pkgname-$pkgver "$pkgdir"/usr/share/webapps/mediawiki
-
-  install -vDm0644 "$srcdir"/apache.example.conf 
"$pkgdir"/etc/webapps/mediawiki/apache.example.conf
-
-  # move cache and images to /var
-  install -vdm0755 -o http -g http "$pkgdir"/var/cache/mediawiki
-  install -vdm0755 -o http -g http "$pkgdir"/var/lib/mediawiki
-
-  cd "$pkgdir"/usr/share/webapps/mediawiki
-
-  mv cache/.htaccess "$pkgdir"/var/cache/mediawiki/
-  rmdir cache
-  ln -sf /var/cache/mediawiki cache
-
-  mv images/* "$pkgdir"/var/lib/mediawiki/
-  mv images/.htaccess "$pkgdir"/var/lib/mediawiki/
-  rmdir images
-  ln -sf /var/lib/mediawiki images
-}
-
-package_mediawiki-math() {
-  depends=('mediawiki')
-  optdepends=('texvc')
-  backup=()
-  pkgdesc="MediaWiki math extension"
-  unset install
-
-  cd "$srcdir"
-  install -vdm0755 "$pkgdir"/usr/share/webapps/mediawiki/extensions
-#  cp -a mediawiki-math-${_basever} 
"$pkgdir"/usr/share/webapps/mediawiki/extensions/Math
-  cp -a wikimedia-mediawiki-extensions-Math-${_hash} 
"$pkgdir"/usr/share/webapps/mediawiki/extensions/Math
-  install -dm0755 "$pkgdir"/usr/share/webapps/mediawiki/extensions/Math/math
-  ln -s /usr/bin/texvc 
"$pkgdir"/usr/share/webapps/mediawiki/extensions/Math/math/texvc
-}

Copied: mediawiki/repos/community-any/PKGBUILD (from rev 665379, 
mediawiki/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-26 19:18:51 UTC (rev 665380)
@@ -0,0 +1,84 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: Sergej Pupykin 
+
+pkgbase=mediawiki
+pkgname=('mediawiki' 'mediawiki-math')
+#pkgname=('mediawiki')
+pkgver=1.34.2
+_basever=${pkgver%.*}
+_hash=b1a022f
+pkgrel=2
+pkgdesc="MediaWiki engine"
+arch=('any')
+url="https://www.mediawiki.org/wiki/MediaWiki;
+# + https://www.mediawiki.org/wiki/Extension:Math
+license=("GPL")
+depends=('php')
+makedepends=('git' 'texvc')
+optdepends=('texvc: 

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

2020-07-26 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 26, 2020 @ 19:18:40
  Author: jelle
Revision: 665379

upgpkg: mediawiki 1.34.2-2

Modified:
  mediawiki/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 19:07:57 UTC (rev 665378)
+++ PKGBUILD2020-07-26 19:18:40 UTC (rev 665379)
@@ -7,7 +7,7 @@
 pkgver=1.34.2
 _basever=${pkgver%.*}
 _hash=b1a022f
-pkgrel=1
+pkgrel=2
 pkgdesc="MediaWiki engine"
 arch=('any')
 url="https://www.mediawiki.org/wiki/MediaWiki;
@@ -26,7 +26,9 @@
'memcached: for cache support'
'php-gd: for thumbnails rendering'
'imagemagick: for thumbnails rendering'
-   'smtp-forwarder: for mail sending')
+   'smtp-forwarder: for mail sending'
+'python: required for SyntaxHighlight/ConfirmEdit extensions'
+'perl: compare_schemas.pl and mediawiki_mysql2postgres.pl')
 install=mediawiki.install
 options=(!strip)
 validpgpkeys=('41B2ABE817ADD3E52BDA946F72BC1C5D23107F8A'
@@ -42,6 +44,7 @@
 'cfeff68331e930b6a93f166c12666ac59a84aa24334f94520eff3f988f37ce2b')
 
 package_mediawiki() {
+
   cd "$srcdir"
   install -vdm0755 "$pkgdir"/usr/share/webapps
   install -vdm0755 "$pkgdir"/etc/webapps/mediawiki


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

2020-07-26 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 26, 2020 @ 19:07:57
  Author: jelle
Revision: 665378

archrelease: copy trunk to community-x86_64

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

+
 PKGBUILD   |   61 +++
 vifm.changelog |  144 +++
 2 files changed, 103 insertions(+), 102 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-26 19:07:50 UTC (rev 665377)
+++ PKGBUILD2020-07-26 19:07:57 UTC (rev 665378)
@@ -1,30 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-
-pkgname=vifm
-pkgver=0.10.1
-pkgrel=2
-pkgdesc="A file manager with curses interface, which provides Vi[m]-like 
environment"
-arch=('x86_64')
-url="https://vifm.info/;
-license=('GPL')
-depends=('ncurses' 'desktop-file-utils')
-changelog=$pkgname.changelog
-source=(https://prdownloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2{,.asc})
-validpgpkeys=('22349CDBE5227D2108A5667799DC5E4DB05F6BE2') # xaizek 

-sha256sums=('99006f56db05e1bdfb7983e8d5c31c9ac93bf2ac9e0409a577c8ca660fecd03b'
-'SKIP')
-
-build() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  CFLAGS+=' -fcommon' # 
https://wiki.gentoo.org/wiki/Gcc_10_porting_notes/fno_common
-
-  ./configure --prefix=/usr --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: vifm/repos/community-x86_64/PKGBUILD (from rev 665377, 
vifm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-26 19:07:57 UTC (rev 665378)
@@ -0,0 +1,31 @@
+# Maintainer: Jaroslav Lichtblau 
+
+pkgname=vifm
+pkgver=0.10.1
+pkgrel=3
+pkgdesc="A file manager with curses interface, which provides Vi[m]-like 
environment"
+arch=('x86_64')
+url="https://vifm.info/;
+license=('GPL')
+depends=('ncurses' 'desktop-file-utils')
+makedepends=('perl')
+changelog=$pkgname.changelog
+source=(https://prdownloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2{,.asc})
+validpgpkeys=('22349CDBE5227D2108A5667799DC5E4DB05F6BE2') # xaizek 

+sha256sums=('99006f56db05e1bdfb7983e8d5c31c9ac93bf2ac9e0409a577c8ca660fecd03b'
+'SKIP')
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  CFLAGS+=' -fcommon' # 
https://wiki.gentoo.org/wiki/Gcc_10_porting_notes/fno_common
+
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+}

Deleted: vifm.changelog
===
--- vifm.changelog  2020-07-26 19:07:50 UTC (rev 665377)
+++ vifm.changelog  2020-07-26 19:07:57 UTC (rev 665378)
@@ -1,72 +0,0 @@
-2019-08-06 Jaroslav Lichtblau 
-   * vifm 0.10.1-1
-
-2018-11-12 Jaroslav Lichtblau 
-   * vifm 0.10-1
-
-2018-02-07 Jaroslav Lichtblau 
-   * vifm 0.9.1-1
-
-2017-06-24 Jaroslav Lichtblau 
-   * vifm 0.9-1
-
-2016-09-21 Jaroslav Lichtblau 
-   * vifm 0.8.2-2 FS#50799 fix
-
-2016-07-19 Jaroslav Lichtblau 
-   * vifm 0.8.2-1
-
-2016-05-01 Jaroslav Lichtblau 
-   * vifm 0.8.1.a-1 FS#49159 fix
-
-2016-04-30 Jaroslav Lichtblau 
-   * vifm 0.8.1a-1
-
-2016-01-19 Jaroslav Lichtblau 
-   * vifm 0.8.1-1
-
-2015-07-10 Jaroslav Lichtblau 
-   * vifm 0.8-1
-   * .install file added
-
-2014-10-28 Jaroslav Lichtblau 
-   * vifm 0.7.8-1
-
-2014-05-18 Jaroslav Lichtblau 
-   * vifm 0.7.7-1
-
-2013-11-11 Jaroslav Lichtblau 
-   * vifm 0.7.6-1
-
-2013-05-18 Jaroslav Lichtblau 
-   * vifm 0.7.5-1
-
-2013-01-30 Jaroslav Lichtblau 
-   * vifm 0.7.4b-1
-
-2012-10-20 Jaroslav Lichtblau 
-   * vifm 0.7.4a-1
-
-2012-07-07 Jaroslav Lichtblau 
-   * vifm 0.7.3a-1
-
-2012-06-04 Jaroslav Lichtblau 
-   * vifm 0.7.3-1
-
-2012-02-25 Jaroslav Lichtblau 
-   * vifm 0.7.2-1
-
-2011-11-28 Jaroslav Lichtblau 
-   * vifm 0.7.1-1
-
-2011-10-09 Jaroslav Lichtblau 
-   * vifm 0.7.0-1
-
-2011-08-20 Jaroslav Lichtblau 
-   * vifm 0.6.3-1
-
-2011-07-19 Jaroslav Lichtblau 
-   * vifm 0.6.2-1
-
-2010-02-15 Jaroslav Lichtblau 
-   * Moved to [community] 0.5-2 (212 votes in AUR)

Copied: vifm/repos/community-x86_64/vifm.changelog (from rev 665377, 
vifm/trunk/vifm.changelog)
===
--- vifm.changelog  (rev 0)
+++ vifm.changelog  2020-07-26 19:07:57 UTC (rev 665378)
@@ -0,0 +1,72 @@
+2019-08-06 Jaroslav Lichtblau 
+   * vifm 0.10.1-1
+
+2018-11-12 Jaroslav Lichtblau 
+   * vifm 0.10-1
+
+2018-02-07 Jaroslav Lichtblau 
+   * vifm 0.9.1-1
+
+2017-06-24 Jaroslav Lichtblau 
+   * vifm 0.9-1

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

2020-07-26 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 26, 2020 @ 19:07:50
  Author: jelle
Revision: 665377

Add missing makedepends on perl

Modified:
  vifm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 19:01:22 UTC (rev 665376)
+++ PKGBUILD2020-07-26 19:07:50 UTC (rev 665377)
@@ -2,12 +2,13 @@
 
 pkgname=vifm
 pkgver=0.10.1
-pkgrel=2
+pkgrel=3
 pkgdesc="A file manager with curses interface, which provides Vi[m]-like 
environment"
 arch=('x86_64')
 url="https://vifm.info/;
 license=('GPL')
 depends=('ncurses' 'desktop-file-utils')
+makedepends=('perl')
 changelog=$pkgname.changelog
 
source=(https://prdownloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2{,.asc})
 validpgpkeys=('22349CDBE5227D2108A5667799DC5E4DB05F6BE2') # xaizek 



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

2020-07-26 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 26, 2020 @ 19:01:22
  Author: jelle
Revision: 665376

archrelease: copy trunk to community-any

Added:
  python-trimesh/repos/community-any/
  python-trimesh/repos/community-any/PKGBUILD
(from rev 665375, python-trimesh/trunk/PKGBUILD)

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

Copied: python-trimesh/repos/community-any/PKGBUILD (from rev 665375, 
python-trimesh/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2020-07-26 19:01:22 UTC (rev 665376)
@@ -0,0 +1,36 @@
+# Maintainer: Jelle van der Waa 
+
+pkgname=python-trimesh
+pkgver=3.7.13
+pkgrel=1
+pkgdesc='Trimesh is a pure Python library for loading and using triangular 
meshes with an emphasis on watertight surfaces'
+arch=('any')
+url="https://github.com/mikedh/trimesh;
+license=('MIT')
+depends=(python python-setuptools python-numpy)
+optdepends=('python-networkx: graph operations'
+'python-pyglet: preview windows'
+'python-rtree: vector path handling'
+'python-scipy: convex hulls'
+'python-shapely: vector path handling'
+'python-pillow: load images'
+'python-jsonschema: validate JSON schemas like GLTF'
+'python-requests: network requests'
+'python-msgpack: serialize into msgpack'
+'python-lxml: handle XML better and faster than built- in XML'
+'python-sympy: do analytical math'
+'python-xxhash: hash ndarrays faster than built-in MD5/CRC')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/mikedh/trimesh/archive/${pkgver}.tar.gz)
+sha512sums=('0f0e2b601828f2058ee478f4afb380646cfb7c92dc0b395d42b40e2641726b7fabad134fbccd7219d63a8384da9dd2d5984ad15ddd68656e851c8bc56a8e07f6')
+
+build() {
+  cd trimesh-${pkgver}
+  python setup.py build
+}
+
+package() {
+  cd trimesh-${pkgver}
+  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+
+  install -D -m644 LICENSE.md "$pkgdir/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2020-07-26 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 26, 2020 @ 19:01:17
  Author: jelle
Revision: 665375

New dependency of cura

Modified:
  python-trimesh/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 18:53:34 UTC (rev 665374)
+++ PKGBUILD2020-07-26 19:01:17 UTC (rev 665375)
@@ -7,17 +7,30 @@
 arch=('any')
 url="https://github.com/mikedh/trimesh;
 license=('MIT')
-depends=('python' 'python-setuptools' 'python-lxml' 'python-pillow' 
'python-rtee' 'python-jsonschema'
- 'python-shapely' 'python-pyglet 'python-xxhash')
+depends=(python python-setuptools python-numpy)
+optdepends=('python-networkx: graph operations'
+'python-pyglet: preview windows'
+'python-rtree: vector path handling'
+'python-scipy: convex hulls'
+'python-shapely: vector path handling'
+'python-pillow: load images'
+'python-jsonschema: validate JSON schemas like GLTF'
+'python-requests: network requests'
+'python-msgpack: serialize into msgpack'
+'python-lxml: handle XML better and faster than built- in XML'
+'python-sympy: do analytical math'
+'python-xxhash: hash ndarrays faster than built-in MD5/CRC')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/mikedh/trimesh/archive/${pkgver}.tar.gz)
+sha512sums=('0f0e2b601828f2058ee478f4afb380646cfb7c92dc0b395d42b40e2641726b7fabad134fbccd7219d63a8384da9dd2d5984ad15ddd68656e851c8bc56a8e07f6')
 
 build() {
+  cd trimesh-${pkgver}
   python setup.py build
 }
 
 package() {
+  cd trimesh-${pkgver}
   python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-}
 
-package() {
+  install -D -m644 LICENSE.md "$pkgdir/usr/share/licenses/${pkgname}/LICENSE"
 }


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

2020-07-26 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 26, 2020 @ 18:53:20
  Author: jelle
Revision: 665370

archrelease: copy trunk to community-x86_64

Added:
  curaengine/repos/community-x86_64/PKGBUILD
(from rev 665369, curaengine/trunk/PKGBUILD)
Deleted:
  curaengine/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-26 18:53:17 UTC (rev 665369)
+++ PKGBUILD2020-07-26 18:53:20 UTC (rev 665370)
@@ -1,42 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Contributor: Grey Christoforo 
-
-pkgname=curaengine
-pkgver=4.5.0
-pkgrel=2
-pkgdesc="Engine for processing 3D models into 3D printing instruction for 
Ultimaker and other GCode based 3D printers."
-url="https://github.com/Ultimaker/CuraEngine;
-arch=('x86_64')
-license=('AGPL')
-depends=('arcus' 'rapidjson' 'polyclipping')
-checkdepends=('cppunit')
-makedepends=('cmake' 'git' 'gmock' 'gtest')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/${pkgname}/archive/${pkgver}.tar.gz;)
-sha512sums=('481f6b839fe7d4bad14d9820337574d31a928e258ede359c608075f1cc7771e3eb649d5d0cff5f1edbc1e2c1802ee99e1ca2eb36a34799331279cbc0c3294636')
-
-
-build() {
-  cd CuraEngine-${pkgver}
-  mkdir -p build
-  cd build
-
-   cmake .. \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DBUILD_TESTS=ON \
- -DUSE_SYSTEM_LIBS=ON \
- -DCMAKE_BUILD_TYPE=Release
-
-  make
-}
-
-check() {
-  cd CuraEngine-${pkgver}/build
-  make test
-}
-
-package() {
-  cd CuraEngine-${pkgver}/build
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: curaengine/repos/community-x86_64/PKGBUILD (from rev 665369, 
curaengine/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-26 18:53:20 UTC (rev 665370)
@@ -0,0 +1,42 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: Grey Christoforo 
+
+pkgname=curaengine
+pkgver=4.6.2
+pkgrel=1
+pkgdesc="Engine for processing 3D models into 3D printing instruction for 
Ultimaker and other GCode based 3D printers."
+url="https://github.com/Ultimaker/CuraEngine;
+arch=('x86_64')
+license=('AGPL')
+depends=('arcus' 'rapidjson' 'polyclipping')
+checkdepends=('cppunit')
+makedepends=('cmake' 'git' 'gmock' 'gtest')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/${pkgname}/archive/${pkgver}.tar.gz;)
+sha512sums=('7bc63f0921d690816d55c8c5cc825053cf5d2ff73c552e78e9a7cb2a4febf16e7386bbd2c0a300504f86a6bff3e3b8f03f52b8986c5fef12de4adaea85b8af9a')
+
+
+build() {
+  cd CuraEngine-${pkgver}
+  mkdir -p build
+  cd build
+
+   cmake .. \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DBUILD_TESTS=ON \
+ -DUSE_SYSTEM_LIBS=ON \
+ -DCMAKE_BUILD_TYPE=Release
+
+  make
+}
+
+check() {
+  cd CuraEngine-${pkgver}/build
+  make test
+}
+
+package() {
+  cd CuraEngine-${pkgver}/build
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-07-26 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 26, 2020 @ 18:53:26
  Author: jelle
Revision: 665372

archrelease: copy trunk to community-any

Added:
  uranium/repos/community-any/PKGBUILD
(from rev 665371, uranium/trunk/PKGBUILD)
Deleted:
  uranium/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-26 18:53:20 UTC (rev 665371)
+++ PKGBUILD2020-07-26 18:53:26 UTC (rev 665372)
@@ -1,46 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Contributor: Grey Christoforo 
-
-pkgname=uranium
-pkgver=4.5.0
-pkgrel=2
-pkgdesc="A Python framework for building Desktop applications."
-url="https://github.com/Ultimaker/Uranium;
-arch=('any')
-license=('LGPL')
-depends=('python' 'qt5-quickcontrols' 'qt5-quickcontrols2' 'python-pyqt5' 
'python-numpy'
- 'arcus' 'python-shapely' 'python-scipy' 'python-cryptography' 
'python-certifi')
-makedepends=('cmake')
-checkdepends=('mypy' 'python-pytest' 'python-twisted')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/${pkgname}/archive/${pkgver}.tar.gz;)
-sha256sums=('8149f18305225c453296261d8553117caba121300e6f0add79b827afc3e7b14a')
-
-prepare() {
-  cd Uranium-${pkgver}
-  sed -i 's,/dist-packages,.${PYTHON_VERSION_MINOR}/site-packages,g' 
CMakeLists.txt
-}
-
-build() {
-  cd Uranium-${pkgver}
-  mkdir -p build && cd build
-
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTS=ON
-
-  make
-}
-
-check() {
-  cd Uranium-${pkgver}/build
-  # few tests fail atm
-  #make CTEST_OUTPUT_ON_FAILURE=TRUE test
-}
-
-package() {
-  cd Uranium-${pkgver}/build
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: uranium/repos/community-any/PKGBUILD (from rev 665371, 
uranium/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-26 18:53:26 UTC (rev 665372)
@@ -0,0 +1,46 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: Grey Christoforo 
+
+pkgname=uranium
+pkgver=4.6.2
+pkgrel=1
+pkgdesc="A Python framework for building Desktop applications."
+url="https://github.com/Ultimaker/Uranium;
+arch=('any')
+license=('LGPL')
+depends=('python' 'qt5-quickcontrols' 'qt5-quickcontrols2' 'python-pyqt5' 
'python-numpy'
+ 'arcus' 'python-shapely' 'python-scipy' 'python-cryptography' 
'python-certifi')
+makedepends=('cmake')
+checkdepends=('mypy' 'python-pytest' 'python-twisted')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/${pkgname}/archive/${pkgver}.tar.gz;)
+sha256sums=('8f162f7e31681eca198e59d0a6a9382ad82527729e6f9981d8e75ce7671c05d5')
+
+prepare() {
+  cd Uranium-${pkgver}
+  sed -i 's,/dist-packages,.${PYTHON_VERSION_MINOR}/site-packages,g' 
CMakeLists.txt
+}
+
+build() {
+  cd Uranium-${pkgver}
+  mkdir -p build && cd build
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTS=ON
+
+  make
+}
+
+check() {
+  cd Uranium-${pkgver}/build
+  # few tests fail atm
+  #make CTEST_OUTPUT_ON_FAILURE=TRUE test
+}
+
+package() {
+  cd Uranium-${pkgver}/build
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-07-26 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 26, 2020 @ 18:53:34
  Author: jelle
Revision: 665374

archrelease: copy trunk to community-any

Added:
  cura/repos/community-any/PKGBUILD
(from rev 665373, cura/trunk/PKGBUILD)
Deleted:
  cura/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-26 18:53:29 UTC (rev 665373)
+++ PKGBUILD2020-07-26 18:53:34 UTC (rev 665374)
@@ -1,51 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Contributor: Grey Christoforo 
-
-pkgname=cura
-pkgver=4.5.0
-pkgrel=1
-pkgdesc="A software solution for 3D printing aimed at RepRaps and the 
Ultimaker."
-depends=('python-pyqt5' 'qt5-svg' 'python-scipy' 'python-pyserial' 
'python-numpy' 'uranium' 'python-requests'
- 'curaengine' 'cura-binary-data' 'cura-resources-materials' 
'libsavitar' 'qt5-graphicaleffects'
- 'python-certifi')
-makedepends=('qt5-tools' 'cmake')
-optdepends=('python-zeroconf: network printing support')
-provides=('cura')
-url="https://ultimaker.com/en/products/cura-software;
-license=('LGPL')
-arch=('any')
-source=($pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/Cura/archive/${pkgver}.tar.gz)
-sha512sums=('a42f685b18dfe712ae04e6778e5a986fa64730dcbd90383d604b090c17f1e555c3e22a5b333568abd8b8a48f568dffeeccfa04c273485edc3b42298229bf1b6a')
-
-# Build order
-# arcus -> uranium -> curaengine -> libsavitar ->
-
-prepare(){
-  cd Cura-${pkgver}
-  sed -i 's,/dist-packages,.${PYTHON_VERSION_MINOR}/site-packages,g' 
CMakeLists.txt
-}
-
-build(){
-  cd Cura-${pkgver}
-  mkdir -p build
-  cd build
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DURANIUM_SCRIPTS_DIR=/usr/share/uranium/scripts \
--DCURA_VERSION=$pkgver \
--DCURA_SDK_VERSION=6.0.0 -DCURA_CLOUD_API_VERSION=1
-
-  make
-}
-
-package(){
-  cd Cura-${pkgver}/build
-  make DESTDIR="${pkgdir}" install
-  
-  # make sure cura can find uranium plugins:
-  ln -s /usr/lib/uranium/plugins/* "${pkgdir}/usr/lib/cura/plugins/."
-
-  # don't ever send any user or print info through the internet to Ultimaker
-  rm -rf "${pkgdir}/usr/lib/cura/plugins/SliceInfoPlugin"
-}

Copied: cura/repos/community-any/PKGBUILD (from rev 665373, cura/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-26 18:53:34 UTC (rev 665374)
@@ -0,0 +1,59 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: Grey Christoforo 
+
+pkgname=cura
+pkgver=4.6.2
+pkgrel=1
+pkgdesc="A software solution for 3D printing aimed at RepRaps and the 
Ultimaker."
+depends=('python-pyqt5' 'qt5-svg' 'python-scipy' 'python-pyserial' 
'python-numpy' 'uranium' 'python-requests'
+ 'curaengine' 'cura-binary-data' 'cura-resources-materials' 
'libsavitar' 'qt5-graphicaleffects'
+ 'python-certifi')
+makedepends=('qt5-tools' 'cmake')
+optdepends=('python-zeroconf: network printing support'
+'python-trimesh: Reading AMF files'
+'python-libcharon: UFPWriter/UFPReader')
+provides=('cura')
+url="https://ultimaker.com/en/products/cura-software;
+license=('LGPL')
+arch=('any')
+source=($pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/Cura/archive/${pkgver}.tar.gz
+
camera_tool_not_found.patch::https://github.com/Ultimaker/Cura/commit/773edfd533acf258f1d785092506c0746a93808c.patch)
+sha512sums=('3a3fcb9cf9e72fd10a1da1b14e5fbece0f203fd864266344860b1953876969e17ddce13b09655bd3e94b1eca9ce2e914fa49bb576a48b2a4c93e0cddebc1606b'
+
'6531b70488d2ddd97a9ec9272cc01006729327b5e28a019a9258302d93c7d3ba1a4e6aa80bdea3d460835069702cdde9681622991a5b12dd0631f8b61cca59a8')
+
+# Build order
+# arcus -> uranium -> curaengine -> libsavitar ->
+
+prepare(){
+  cd Cura-${pkgver}
+  sed -i 's,/dist-packages,.${PYTHON_VERSION_MINOR}/site-packages,g' 
CMakeLists.txt
+
+  patch -Np1 -i ${srcdir}/camera_tool_not_found.patch
+}
+
+build(){
+  cd Cura-${pkgver}
+  mkdir -p build
+  cd build
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DURANIUM_SCRIPTS_DIR=/usr/share/uranium/scripts \
+-DCURA_VERSION=$pkgver \
+-DCURA_SDK_VERSION=6.0.0 \
+-DCURA_CLOUD_API_VERSION=1 \
+-DCURA_CLOUD_API_ROOT:STRING="https://api.ultimaker.com; \
+-DCURA_CLOUD_ACCOUNT_API_ROOT:STRING="https://account.ultimaker.com;
+
+  make
+}
+
+package(){
+  cd Cura-${pkgver}/build
+  make DESTDIR="${pkgdir}" install
+  
+  # make sure cura can find uranium plugins:
+  ln -s /usr/lib/uranium/plugins/* "${pkgdir}/usr/lib/cura/plugins/."
+
+  # don't ever send any user or print info through the internet to Ultimaker
+  rm -rf "${pkgdir}/usr/lib/cura/plugins/SliceInfoPlugin"
+}


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

2020-07-26 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 26, 2020 @ 18:53:17
  Author: jelle
Revision: 665369

archrelease: copy trunk to community-x86_64

Added:
  libsavitar/repos/community-x86_64/PKGBUILD
(from rev 665368, libsavitar/trunk/PKGBUILD)
  libsavitar/repos/community-x86_64/use_system_pugixml.patch
(from rev 665368, libsavitar/trunk/use_system_pugixml.patch)
Deleted:
  libsavitar/repos/community-x86_64/PKGBUILD
  libsavitar/repos/community-x86_64/use_system_pugixml.patch

--+
 PKGBUILD |   82 -
 use_system_pugixml.patch |   89 +++--
 2 files changed, 63 insertions(+), 108 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-26 18:53:14 UTC (rev 665368)
+++ PKGBUILD2020-07-26 18:53:17 UTC (rev 665369)
@@ -1,41 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Contributor: neodarz 
-
-pkgname=libsavitar
-pkgver=4.4.0
-pkgrel=1
-pkgdesc="C++ implementation of 3mf loading with SIP python bindings"
-arch=('x86_64')
-url="https://github.com/Ultimaker/libsavitar;
-license=('AGPL')
-depends=('python' 'pugixml')
-makedepends=('cmake' 'python-sip' 'sip')
-source=($pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/libSavitar//archive/${pkgver}.tar.gz
 use_system_pugixml.patch)
-sha512sums=('a8039fed9c0b00f3698f37e0b0653a43b8f5b0461fd734687461114f2df63a9781520f45d7b25f598b2f1dfa5c24585cb297a7408029cea4273df614c33a2e98'
-
'be333be1737e8b2483dcfbd5fc992165bdf47ccce22fb2cc88f8ecb24ce6b17451a15f58e3a11c3671305afec88983878c8b0e914662c813e3a7bbeff587b956')
-
-prepare() {
-  cd "libSavitar-${pkgver}"
-  sed -i 's,DESTINATION 
lib/python${PYTHON_VERSION_MAJOR}/dist-packages,DESTINATION 
lib/python${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}/site-packages,g' 
CMakeLists.txt
-  sed -i 's,DESTINATION 
lib/python${PYTHON_VERSION_MAJOR}/dist-packages/cura),DESTINATION 
lib/python${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}/site-packages/cura),g'
 CMakeLists.txt
-
-  # don't install a second system pugixml; WONTFIX upstream due to:
-  # "It's been decided that an external dependency makes setting up your
-  # development environment for Cura needlessly difficult."
-  patch -Np1 -i "$srcdir"/use_system_pugixml.patch
-}
-
-build() {
-  cd "libSavitar-${pkgver}"
-  mkdir  build && cd build
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=/usr/lib \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd "libSavitar-${pkgver}/build"
-  make DESTDIR="${pkgdir}" install
-}

Copied: libsavitar/repos/community-x86_64/PKGBUILD (from rev 665368, 
libsavitar/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-26 18:53:17 UTC (rev 665369)
@@ -0,0 +1,41 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: neodarz 
+
+pkgname=libsavitar
+pkgver=4.6.2
+pkgrel=1
+pkgdesc="C++ implementation of 3mf loading with SIP python bindings"
+arch=('x86_64')
+url="https://github.com/Ultimaker/libsavitar;
+license=('AGPL')
+depends=('python' 'pugixml')
+makedepends=('cmake' 'python-sip' 'sip')
+source=($pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/libSavitar//archive/${pkgver}.tar.gz
 use_system_pugixml.patch)
+sha512sums=('1aa8915fe7e4870d74de55cdf4988eb416fa473a41a3ccbd3b3b88c6b1fc299afb257f7b1613eafd11a0c95cf9f3d3e0b2356b5b573a7b14c13f0017fbcb5200'
+
'b312dcf43bf334001da98da93388da99731eacf417fe3a9dff51831bdd1f0ab5487377925bebce05e227533be2680b1a45f3203b0a7b9de9a77280a206ec7b26')
+
+prepare() {
+  cd "libSavitar-${pkgver}"
+  sed -i 's,DESTINATION 
lib/python${PYTHON_VERSION_MAJOR}/dist-packages,DESTINATION 
lib/python${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}/site-packages,g' 
CMakeLists.txt
+  sed -i 's,DESTINATION 
lib/python${PYTHON_VERSION_MAJOR}/dist-packages/cura),DESTINATION 
lib/python${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}/site-packages/cura),g'
 CMakeLists.txt
+
+  # don't install a second system pugixml; WONTFIX upstream due to:
+  # "It's been decided that an external dependency makes setting up your
+  # development environment for Cura needlessly difficult."
+  patch -Np1 -i "$srcdir"/use_system_pugixml.patch
+}
+
+build() {
+  cd "libSavitar-${pkgver}"
+  mkdir  build && cd build
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=/usr/lib \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd "libSavitar-${pkgver}/build"
+  make DESTDIR="${pkgdir}" install
+}

Deleted: use_system_pugixml.patch
===
--- use_system_pugixml.patch2020-07-26 18:53:14 UTC (rev 665368)
+++ use_system_pugixml.patch2020-07-26 18:53:17 UTC (rev 665369)
@@ -1,67 +0,0 @@
-diff -aur libSavitar-4.1.0.old/CMakeLists.txt libSavitar-4.1.0/CMakeLists.txt
 libSavitar-4.1.0.old/CMakeLists.txt

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

2020-07-26 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 26, 2020 @ 18:52:58
  Author: jelle
Revision: 665365

upgpkg: arcus 4.6.2-1

Modified:
  arcus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 18:49:03 UTC (rev 665364)
+++ PKGBUILD2020-07-26 18:52:58 UTC (rev 665365)
@@ -3,8 +3,8 @@
 
 # upstreamed renamed to libarcus
 pkgname=arcus
-pkgver=4.5.0
-pkgrel=2
+pkgver=4.6.2
+pkgrel=1
 pkgdesc="Communication library between internal components for Ultimaker 
software"
 url="https://github.com/Ultimaker/libArcus;
 arch=('x86_64')
@@ -12,7 +12,7 @@
 makedepends=('cmake' 'sip')
 depends=('python' 'protobuf' 'python-sip')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/libArcus/archive/${pkgver}.tar.gz;)
-sha512sums=('cde73dac5581425f032fba98511658fd130f69066b7ce712eaf1eff3c38528cc3dbc4196df2e3301b99e3a396c17fd6b4ee591bdffc622964001ab77926b1cdd')
+sha512sums=('238d9ba79ca9be7d4d090e5cc753ccdb9f704614a9e76a62df84adb444a4a24aae9c90ebc108f4a84285bd8edd40b1213160e63007d36c4bb61d66617d7020af')
 
 build() {
   cd libArcus-${pkgver}


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

2020-07-26 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 26, 2020 @ 18:53:14
  Author: jelle
Revision: 665368

upgpkg: curaengine 4.6.2-1

Modified:
  curaengine/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 18:53:10 UTC (rev 665367)
+++ PKGBUILD2020-07-26 18:53:14 UTC (rev 665368)
@@ -2,8 +2,8 @@
 # Contributor: Grey Christoforo 
 
 pkgname=curaengine
-pkgver=4.5.0
-pkgrel=2
+pkgver=4.6.2
+pkgrel=1
 pkgdesc="Engine for processing 3D models into 3D printing instruction for 
Ultimaker and other GCode based 3D printers."
 url="https://github.com/Ultimaker/CuraEngine;
 arch=('x86_64')
@@ -12,7 +12,7 @@
 checkdepends=('cppunit')
 makedepends=('cmake' 'git' 'gmock' 'gtest')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/${pkgname}/archive/${pkgver}.tar.gz;)
-sha512sums=('481f6b839fe7d4bad14d9820337574d31a928e258ede359c608075f1cc7771e3eb649d5d0cff5f1edbc1e2c1802ee99e1ca2eb36a34799331279cbc0c3294636')
+sha512sums=('7bc63f0921d690816d55c8c5cc825053cf5d2ff73c552e78e9a7cb2a4febf16e7386bbd2c0a300504f86a6bff3e3b8f03f52b8986c5fef12de4adaea85b8af9a')
 
 
 build() {


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

2020-07-26 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 26, 2020 @ 18:53:29
  Author: jelle
Revision: 665373

upgpkg: cura 4.6.2-1

Modified:
  cura/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 18:53:26 UTC (rev 665372)
+++ PKGBUILD2020-07-26 18:53:29 UTC (rev 665373)
@@ -2,7 +2,7 @@
 # Contributor: Grey Christoforo 
 
 pkgname=cura
-pkgver=4.5.0
+pkgver=4.6.2
 pkgrel=1
 pkgdesc="A software solution for 3D printing aimed at RepRaps and the 
Ultimaker."
 depends=('python-pyqt5' 'qt5-svg' 'python-scipy' 'python-pyserial' 
'python-numpy' 'uranium' 'python-requests'
@@ -9,13 +9,17 @@
  'curaengine' 'cura-binary-data' 'cura-resources-materials' 
'libsavitar' 'qt5-graphicaleffects'
  'python-certifi')
 makedepends=('qt5-tools' 'cmake')
-optdepends=('python-zeroconf: network printing support')
+optdepends=('python-zeroconf: network printing support'
+'python-trimesh: Reading AMF files'
+'python-libcharon: UFPWriter/UFPReader')
 provides=('cura')
 url="https://ultimaker.com/en/products/cura-software;
 license=('LGPL')
 arch=('any')
-source=($pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/Cura/archive/${pkgver}.tar.gz)
-sha512sums=('a42f685b18dfe712ae04e6778e5a986fa64730dcbd90383d604b090c17f1e555c3e22a5b333568abd8b8a48f568dffeeccfa04c273485edc3b42298229bf1b6a')
+source=($pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/Cura/archive/${pkgver}.tar.gz
+
camera_tool_not_found.patch::https://github.com/Ultimaker/Cura/commit/773edfd533acf258f1d785092506c0746a93808c.patch)
+sha512sums=('3a3fcb9cf9e72fd10a1da1b14e5fbece0f203fd864266344860b1953876969e17ddce13b09655bd3e94b1eca9ce2e914fa49bb576a48b2a4c93e0cddebc1606b'
+
'6531b70488d2ddd97a9ec9272cc01006729327b5e28a019a9258302d93c7d3ba1a4e6aa80bdea3d460835069702cdde9681622991a5b12dd0631f8b61cca59a8')
 
 # Build order
 # arcus -> uranium -> curaengine -> libsavitar ->
@@ -23,6 +27,8 @@
 prepare(){
   cd Cura-${pkgver}
   sed -i 's,/dist-packages,.${PYTHON_VERSION_MINOR}/site-packages,g' 
CMakeLists.txt
+
+  patch -Np1 -i ${srcdir}/camera_tool_not_found.patch
 }
 
 build(){
@@ -31,10 +37,12 @@
   cd build
   cmake .. \
 -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
 -DURANIUM_SCRIPTS_DIR=/usr/share/uranium/scripts \
 -DCURA_VERSION=$pkgver \
--DCURA_SDK_VERSION=6.0.0 -DCURA_CLOUD_API_VERSION=1
+-DCURA_SDK_VERSION=6.0.0 \
+-DCURA_CLOUD_API_VERSION=1 \
+-DCURA_CLOUD_API_ROOT:STRING="https://api.ultimaker.com; \
+-DCURA_CLOUD_ACCOUNT_API_ROOT:STRING="https://account.ultimaker.com;
 
   make
 }


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

2020-07-26 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 26, 2020 @ 18:53:20
  Author: jelle
Revision: 665371

upgpkg: uranium 4.6.2-1

Modified:
  uranium/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 18:53:20 UTC (rev 665370)
+++ PKGBUILD2020-07-26 18:53:20 UTC (rev 665371)
@@ -2,8 +2,8 @@
 # Contributor: Grey Christoforo 
 
 pkgname=uranium
-pkgver=4.5.0
-pkgrel=2
+pkgver=4.6.2
+pkgrel=1
 pkgdesc="A Python framework for building Desktop applications."
 url="https://github.com/Ultimaker/Uranium;
 arch=('any')
@@ -13,7 +13,7 @@
 makedepends=('cmake')
 checkdepends=('mypy' 'python-pytest' 'python-twisted')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/${pkgname}/archive/${pkgver}.tar.gz;)
-sha256sums=('8149f18305225c453296261d8553117caba121300e6f0add79b827afc3e7b14a')
+sha256sums=('8f162f7e31681eca198e59d0a6a9382ad82527729e6f9981d8e75ce7671c05d5')
 
 prepare() {
   cd Uranium-${pkgver}


[arch-commits] Commit in libsavitar/trunk (PKGBUILD use_system_pugixml.patch)

2020-07-26 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 26, 2020 @ 18:53:10
  Author: jelle
Revision: 665367

upgpkg: libsavitar 4.6.2-1

Modified:
  libsavitar/trunk/PKGBUILD
  libsavitar/trunk/use_system_pugixml.patch

--+
 PKGBUILD |6 +--
 use_system_pugixml.patch |   75 +
 2 files changed, 18 insertions(+), 63 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 18:53:03 UTC (rev 665366)
+++ PKGBUILD2020-07-26 18:53:10 UTC (rev 665367)
@@ -2,7 +2,7 @@
 # Contributor: neodarz 
 
 pkgname=libsavitar
-pkgver=4.4.0
+pkgver=4.6.2
 pkgrel=1
 pkgdesc="C++ implementation of 3mf loading with SIP python bindings"
 arch=('x86_64')
@@ -11,8 +11,8 @@
 depends=('python' 'pugixml')
 makedepends=('cmake' 'python-sip' 'sip')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/libSavitar//archive/${pkgver}.tar.gz
 use_system_pugixml.patch)
-sha512sums=('a8039fed9c0b00f3698f37e0b0653a43b8f5b0461fd734687461114f2df63a9781520f45d7b25f598b2f1dfa5c24585cb297a7408029cea4273df614c33a2e98'
-
'be333be1737e8b2483dcfbd5fc992165bdf47ccce22fb2cc88f8ecb24ce6b17451a15f58e3a11c3671305afec88983878c8b0e914662c813e3a7bbeff587b956')
+sha512sums=('1aa8915fe7e4870d74de55cdf4988eb416fa473a41a3ccbd3b3b88c6b1fc299afb257f7b1613eafd11a0c95cf9f3d3e0b2356b5b573a7b14c13f0017fbcb5200'
+
'b312dcf43bf334001da98da93388da99731eacf417fe3a9dff51831bdd1f0ab5487377925bebce05e227533be2680b1a45f3203b0a7b9de9a77280a206ec7b26')
 
 prepare() {
   cd "libSavitar-${pkgver}"

Modified: use_system_pugixml.patch
===
--- use_system_pugixml.patch2020-07-26 18:53:03 UTC (rev 665366)
+++ use_system_pugixml.patch2020-07-26 18:53:10 UTC (rev 665367)
@@ -1,67 +1,22 @@
-diff -aur libSavitar-4.1.0.old/CMakeLists.txt libSavitar-4.1.0/CMakeLists.txt
 libSavitar-4.1.0.old/CMakeLists.txt2019-06-14 21:54:00.101539146 
+0200
-+++ libSavitar-4.1.0/CMakeLists.txt2019-06-14 21:54:34.518676200 +0200
-@@ -14,7 +14,7 @@
+From b76fcd6da723cc725f2703d6c1b82b954a1bd03a Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Gabriel=20F=C3=A9ron?= 
+Date: Tue, 18 Jun 2019 22:45:17 +0200
+Subject: [PATCH] Don't build pugixml
+
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index eecd5e9..7ec2b2b 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -15,8 +15,6 @@ if(BUILD_TESTS)
  find_package(Threads QUIET)
  endif()
  
 -add_subdirectory(pugixml)
-+find_package(pugixml REQUIRED)
- 
+-
  if(BUILD_PYTHON)
  list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake)
-diff -aur libSavitar-4.1.0.old/src/MeshData.cpp 
libSavitar-4.1.0/src/MeshData.cpp
 libSavitar-4.1.0.old/src/MeshData.cpp  2019-06-14 21:54:00.101539146 
+0200
-+++ libSavitar-4.1.0/src/MeshData.cpp  2019-06-14 21:56:16.930076069 +0200
-@@ -17,7 +17,7 @@
-  */
  
- #include "MeshData.h"
--#include "../pugixml/src/pugixml.hpp"
-+#include 
- #include 
- #include 
- #include  //For std::runtime_error.
-diff -aur libSavitar-4.1.0.old/src/Scene.cpp libSavitar-4.1.0/src/Scene.cpp
 libSavitar-4.1.0.old/src/Scene.cpp 2019-06-14 21:54:00.101539146 +0200
-+++ libSavitar-4.1.0/src/Scene.cpp 2019-06-14 21:56:09.553308560 +0200
-@@ -17,7 +17,7 @@
-  */
- 
- #include "Scene.h"
--#include "../pugixml/src/pugixml.hpp"
-+#include 
- #include 
- #include 
- using namespace Savitar;
-diff -aur libSavitar-4.1.0.old/src/SceneNode.cpp 
libSavitar-4.1.0/src/SceneNode.cpp
 libSavitar-4.1.0.old/src/SceneNode.cpp 2019-06-14 21:54:00.101539146 
+0200
-+++ libSavitar-4.1.0/src/SceneNode.cpp 2019-06-14 21:56:12.723351894 +0200
-@@ -17,7 +17,7 @@
-  */
- 
- #include "SceneNode.h"
--#include "../pugixml/src/pugixml.hpp"
-+#include 
- #include 
- using namespace Savitar;
- 
-diff -aur libSavitar-4.1.0.old/src/ThreeMFParser.h 
libSavitar-4.1.0/src/ThreeMFParser.h
 libSavitar-4.1.0.old/src/ThreeMFParser.h   2019-06-14 21:54:00.101539146 
+0200
-+++ libSavitar-4.1.0/src/ThreeMFParser.h   2019-06-14 21:55:32.532802504 
+0200
-@@ -21,7 +21,7 @@
- 
- #include "SavitarExport.h"
- #include "SceneNode.h"
--#include "../pugixml/src/pugixml.hpp"
-+#include 
- 
- #include 
- namespace Savitar
-@@ -44,4 +44,4 @@
- std::string sceneToString(Scene scene);
- };
- }
--#endif
-\ No newline at end of file
-+#endif
+-- 
+2.21.0
+


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

2020-07-26 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 26, 2020 @ 18:53:03
  Author: jelle
Revision: 665366

archrelease: copy trunk to community-x86_64

Added:
  arcus/repos/community-x86_64/PKGBUILD
(from rev 665365, arcus/trunk/PKGBUILD)
Deleted:
  arcus/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-26 18:52:58 UTC (rev 665365)
+++ PKGBUILD2020-07-26 18:53:03 UTC (rev 665366)
@@ -1,38 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Contributor: Grey Christoforo 
-
-# upstreamed renamed to libarcus
-pkgname=arcus
-pkgver=4.5.0
-pkgrel=2
-pkgdesc="Communication library between internal components for Ultimaker 
software"
-url="https://github.com/Ultimaker/libArcus;
-arch=('x86_64')
-license=('LGPL')
-makedepends=('cmake' 'sip')
-depends=('python' 'protobuf' 'python-sip')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/libArcus/archive/${pkgver}.tar.gz;)
-sha512sums=('cde73dac5581425f032fba98511658fd130f69066b7ce712eaf1eff3c38528cc3dbc4196df2e3301b99e3a396c17fd6b4ee591bdffc622964001ab77926b1cdd')
-
-build() {
-  cd libArcus-${pkgver}
-  mkdir -p build
-  cd build
-  
-  cmake .. \
-  -DCMAKE_INSTALL_PREFIX=/usr \
-  -DCMAKE_BUILD_TYPE=Release \
-  -DBUILD_EXAMPLES=OFF  \
-  -DCMAKE_INSTALL_LIBDIR=/usr/lib/
-
-  make
-}
-
-package() {
-  cd libArcus-${pkgver}/build
-  make DESTDIR="${pkgdir}" install
-
-  install -Dm644 "${srcdir}/libArcus-${pkgver}/LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: arcus/repos/community-x86_64/PKGBUILD (from rev 665365, 
arcus/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-26 18:53:03 UTC (rev 665366)
@@ -0,0 +1,38 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: Grey Christoforo 
+
+# upstreamed renamed to libarcus
+pkgname=arcus
+pkgver=4.6.2
+pkgrel=1
+pkgdesc="Communication library between internal components for Ultimaker 
software"
+url="https://github.com/Ultimaker/libArcus;
+arch=('x86_64')
+license=('LGPL')
+makedepends=('cmake' 'sip')
+depends=('python' 'protobuf' 'python-sip')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/libArcus/archive/${pkgver}.tar.gz;)
+sha512sums=('238d9ba79ca9be7d4d090e5cc753ccdb9f704614a9e76a62df84adb444a4a24aae9c90ebc108f4a84285bd8edd40b1213160e63007d36c4bb61d66617d7020af')
+
+build() {
+  cd libArcus-${pkgver}
+  mkdir -p build
+  cd build
+  
+  cmake .. \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DCMAKE_BUILD_TYPE=Release \
+  -DBUILD_EXAMPLES=OFF  \
+  -DCMAKE_INSTALL_LIBDIR=/usr/lib/
+
+  make
+}
+
+package() {
+  cd libArcus-${pkgver}/build
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 "${srcdir}/libArcus-${pkgver}/LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in cura-resources-materials/trunk (PKGBUILD)

2020-07-26 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 26, 2020 @ 18:48:22
  Author: jelle
Revision: 665361

upgpkg: cura-resources-materials 4.6.2-1

Modified:
  cura-resources-materials/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 18:11:54 UTC (rev 665360)
+++ PKGBUILD2020-07-26 18:48:22 UTC (rev 665361)
@@ -2,7 +2,7 @@
 # Contributor: Uffe Jakobsen 
  
 pkgname=cura-resources-materials
-pkgver=4.5.0
+pkgver=4.6.2
 pkgrel=1
 pkgdesc="Missing materials resources for Cura"
 url="https://ultimaker.com/en/products/cura-software;
@@ -9,7 +9,7 @@
 license=("AGPL")
 arch=("any")
 
source=(fdm_materials-$pkgver.tar.gz::https://github.com/Ultimaker/fdm_materials/archive/${pkgver}.tar.gz)
-sha1sums=('68856d37a8be93c3a1c3dc1d8fd04a9204c6803c')
+sha1sums=('ef25e49854398f15c5969684e010f0b5e3a40516')
 
 package()
 {


[arch-commits] Commit in cura-resources-materials/repos/community-any (2 files)

2020-07-26 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 26, 2020 @ 18:48:31
  Author: jelle
Revision: 665362

archrelease: copy trunk to community-any

Added:
  cura-resources-materials/repos/community-any/PKGBUILD
(from rev 665361, cura-resources-materials/trunk/PKGBUILD)
Deleted:
  cura-resources-materials/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-26 18:48:22 UTC (rev 665361)
+++ PKGBUILD2020-07-26 18:48:31 UTC (rev 665362)
@@ -1,18 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Contributor: Uffe Jakobsen 
- 
-pkgname=cura-resources-materials
-pkgver=4.5.0
-pkgrel=1
-pkgdesc="Missing materials resources for Cura"
-url="https://ultimaker.com/en/products/cura-software;
-license=("AGPL")
-arch=("any")
-source=(fdm_materials-$pkgver.tar.gz::https://github.com/Ultimaker/fdm_materials/archive/${pkgver}.tar.gz)
-sha1sums=('68856d37a8be93c3a1c3dc1d8fd04a9204c6803c')
-
-package()
-{
-  mkdir -p "${pkgdir}/usr/share/cura/resources/materials"
-  cp -r ${srcdir}/fdm_materials-${pkgver}/*.fdm_material 
"${pkgdir}/usr/share/cura/resources/materials/"
-}

Copied: cura-resources-materials/repos/community-any/PKGBUILD (from rev 665361, 
cura-resources-materials/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-26 18:48:31 UTC (rev 665362)
@@ -0,0 +1,18 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: Uffe Jakobsen 
+ 
+pkgname=cura-resources-materials
+pkgver=4.6.2
+pkgrel=1
+pkgdesc="Missing materials resources for Cura"
+url="https://ultimaker.com/en/products/cura-software;
+license=("AGPL")
+arch=("any")
+source=(fdm_materials-$pkgver.tar.gz::https://github.com/Ultimaker/fdm_materials/archive/${pkgver}.tar.gz)
+sha1sums=('ef25e49854398f15c5969684e010f0b5e3a40516')
+
+package()
+{
+  mkdir -p "${pkgdir}/usr/share/cura/resources/materials"
+  cp -r ${srcdir}/fdm_materials-${pkgver}/*.fdm_material 
"${pkgdir}/usr/share/cura/resources/materials/"
+}


[arch-commits] Commit in cura-binary-data/trunk (PKGBUILD)

2020-07-26 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 26, 2020 @ 18:48:57
  Author: jelle
Revision: 665363

upgpkg: cura-binary-data 4.6.2-1

Modified:
  cura-binary-data/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 18:48:31 UTC (rev 665362)
+++ PKGBUILD2020-07-26 18:48:57 UTC (rev 665363)
@@ -2,7 +2,7 @@
 # Contributor: Grey Christoforo 
 
 pkgname=cura-binary-data
-pkgver=4.5.0
+pkgver=4.6.2
 pkgrel=1
 pkgdesc="Binary data (firmwares and such) for cura"
 url="https://github.com/Ultimaker/${pkgname};
@@ -9,7 +9,7 @@
 license=('AGPL')
 arch=('any')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/Ultimaker/${pkgname}/archive/${pkgver}.tar.gz)
-sha1sums=('d3b5d4f98ab3ccc3bd2d4e4510d4bf74f9eca806')
+sha1sums=('e4ba02aed6ea0cc86602ac80292ec1ac9c5ab9ac')
 
 package(){
   install -d "${pkgdir}/usr/share/"


[arch-commits] Commit in cura-binary-data/repos/community-any (PKGBUILD PKGBUILD)

2020-07-26 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 26, 2020 @ 18:49:03
  Author: jelle
Revision: 665364

archrelease: copy trunk to community-any

Added:
  cura-binary-data/repos/community-any/PKGBUILD
(from rev 665363, cura-binary-data/trunk/PKGBUILD)
Deleted:
  cura-binary-data/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-26 18:48:57 UTC (rev 665363)
+++ PKGBUILD2020-07-26 18:49:03 UTC (rev 665364)
@@ -1,20 +0,0 @@
-# Maintainer: Jelle  van der Waa 
-# Contributor: Grey Christoforo 
-
-pkgname=cura-binary-data
-pkgver=4.5.0
-pkgrel=1
-pkgdesc="Binary data (firmwares and such) for cura"
-url="https://github.com/Ultimaker/${pkgname};
-license=('AGPL')
-arch=('any')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/Ultimaker/${pkgname}/archive/${pkgver}.tar.gz)
-sha1sums=('d3b5d4f98ab3ccc3bd2d4e4510d4bf74f9eca806')
-
-package(){
-  install -d "${pkgdir}/usr/share/"
-  cp -r "${srcdir}/${pkgname}-${pkgver}/cura/" "${pkgdir}/usr/share/cura"
-  
-  # see https://github.com/Ultimaker/cura-binary-data/issues/6
-  rm -rf "${pkgdir}/usr/share/cura/resources/i18n" 
-}

Copied: cura-binary-data/repos/community-any/PKGBUILD (from rev 665363, 
cura-binary-data/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-26 18:49:03 UTC (rev 665364)
@@ -0,0 +1,20 @@
+# Maintainer: Jelle  van der Waa 
+# Contributor: Grey Christoforo 
+
+pkgname=cura-binary-data
+pkgver=4.6.2
+pkgrel=1
+pkgdesc="Binary data (firmwares and such) for cura"
+url="https://github.com/Ultimaker/${pkgname};
+license=('AGPL')
+arch=('any')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/Ultimaker/${pkgname}/archive/${pkgver}.tar.gz)
+sha1sums=('e4ba02aed6ea0cc86602ac80292ec1ac9c5ab9ac')
+
+package(){
+  install -d "${pkgdir}/usr/share/"
+  cp -r "${srcdir}/${pkgname}-${pkgver}/cura/" "${pkgdir}/usr/share/cura"
+  
+  # see https://github.com/Ultimaker/cura-binary-data/issues/6
+  rm -rf "${pkgdir}/usr/share/cura/resources/i18n" 
+}


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

2020-07-26 Thread Antonio Rojas via arch-commits
Date: Sunday, July 26, 2020 @ 18:11:54
  Author: arojas
Revision: 665360

archrelease: copy trunk to community-x86_64

Added:
  pynac/repos/community-x86_64/PKGBUILD
(from rev 665359, pynac/trunk/PKGBUILD)
  pynac/repos/community-x86_64/pynac-python-3.8.patch
(from rev 665359, pynac/trunk/pynac-python-3.8.patch)
Deleted:
  pynac/repos/community-x86_64/PKGBUILD

+
 PKGBUILD   |   60 +--
 pynac-python-3.8.patch |   24 ++
 2 files changed, 57 insertions(+), 27 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-26 18:11:42 UTC (rev 665359)
+++ PKGBUILD2020-07-26 18:11:54 UTC (rev 665360)
@@ -1,27 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Rémy Oudompheng 
-
-pkgname=pynac
-pkgver=0.7.26
-pkgrel=4
-pkgdesc="Python version of GiNaC, a C++ library for symbolic mathematical 
calculations"
-arch=(x86_64)
-url="http://pynac.org;
-license=(GPL)
-depends=(python singular) # giac disabled because of 
https://trac.sagemath.org/ticket/26427
-source=("https://github.com/pynac/pynac/releases/download/pynac-$pkgver/pynac-$pkgver.tar.bz2;)
-sha256sums=('cc124ae9757355e3434ff864aeca6503184faf0642d26bc2f7bca6f3f2c9b50f')
-
-build() {
-  cd pynac-$pkgver
-
-  ./configure --prefix=/usr
-  #https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd pynac-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: pynac/repos/community-x86_64/PKGBUILD (from rev 665359, 
pynac/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-26 18:11:54 UTC (rev 665360)
@@ -0,0 +1,33 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Rémy Oudompheng 
+
+pkgname=pynac
+pkgver=0.7.26
+pkgrel=5
+pkgdesc="Python version of GiNaC, a C++ library for symbolic mathematical 
calculations"
+arch=(x86_64)
+url="http://pynac.org;
+license=(GPL)
+depends=(python singular) # giac disabled because of 
https://trac.sagemath.org/ticket/26427
+source=("https://github.com/pynac/pynac/releases/download/pynac-$pkgver/pynac-$pkgver.tar.bz2;
+ pynac-python-3.8.patch)
+sha256sums=('cc124ae9757355e3434ff864aeca6503184faf0642d26bc2f7bca6f3f2c9b50f'
+'a5b6de6521d33d4b7e4d06e841dbfc45d71b9ded09fc38ac2e5c7b7a8564f3bd')
+
+prepare() {
+  patch -d $pkgname-$pkgver -p1 -i ../pynac-python-3.8.patch # Define 
PY_SSIZE_T_CLEAN as required by python 3.8
+}
+
+build() {
+  cd pynac-$pkgver
+
+  ./configure --prefix=/usr
+  #https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd pynac-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: pynac/repos/community-x86_64/pynac-python-3.8.patch (from rev 665359, 
pynac/trunk/pynac-python-3.8.patch)
===
--- pynac-python-3.8.patch  (rev 0)
+++ pynac-python-3.8.patch  2020-07-26 18:11:54 UTC (rev 665360)
@@ -0,0 +1,24 @@
+diff --git a/ginac/function.cpp b/ginac/function.cpp
+index c158723..689e2b8 100644
+--- a/ginac/function.cpp
 b/ginac/function.cpp
+@@ -21,6 +21,7 @@
+  */
+ 
+ #define register
++#define PY_SSIZE_T_CLEAN
+ #include 
+ #include "py_funcs.h"
+ #include "function.h"
+diff --git a/ginac/numeric.cpp b/ginac/numeric.cpp
+index 276d86c..b463806 100644
+--- a/ginac/numeric.cpp
 b/ginac/numeric.cpp
+@@ -50,6 +50,7 @@
+  */
+ 
+ #define register
++#define PY_SSIZE_T_CLEAN
+ #include 
+ #include 
+ #include "flint/fmpz.h"


[arch-commits] Commit in pynac/trunk (PKGBUILD pynac-python-3.8.patch)

2020-07-26 Thread Antonio Rojas via arch-commits
Date: Sunday, July 26, 2020 @ 18:11:42
  Author: arojas
Revision: 665359

Fix deprecation warnings on unpickling with Python 3.8

Added:
  pynac/trunk/pynac-python-3.8.patch
Modified:
  pynac/trunk/PKGBUILD

+
 PKGBUILD   |   12 +---
 pynac-python-3.8.patch |   24 
 2 files changed, 33 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 17:27:00 UTC (rev 665358)
+++ PKGBUILD2020-07-26 18:11:42 UTC (rev 665359)
@@ -3,15 +3,21 @@
 
 pkgname=pynac
 pkgver=0.7.26
-pkgrel=4
+pkgrel=5
 pkgdesc="Python version of GiNaC, a C++ library for symbolic mathematical 
calculations"
 arch=(x86_64)
 url="http://pynac.org;
 license=(GPL)
 depends=(python singular) # giac disabled because of 
https://trac.sagemath.org/ticket/26427
-source=("https://github.com/pynac/pynac/releases/download/pynac-$pkgver/pynac-$pkgver.tar.bz2;)
-sha256sums=('cc124ae9757355e3434ff864aeca6503184faf0642d26bc2f7bca6f3f2c9b50f')
+source=("https://github.com/pynac/pynac/releases/download/pynac-$pkgver/pynac-$pkgver.tar.bz2;
+ pynac-python-3.8.patch)
+sha256sums=('cc124ae9757355e3434ff864aeca6503184faf0642d26bc2f7bca6f3f2c9b50f'
+'a5b6de6521d33d4b7e4d06e841dbfc45d71b9ded09fc38ac2e5c7b7a8564f3bd')
 
+prepare() {
+  patch -d $pkgname-$pkgver -p1 -i ../pynac-python-3.8.patch # Define 
PY_SSIZE_T_CLEAN as required by python 3.8
+}
+
 build() {
   cd pynac-$pkgver
 

Added: pynac-python-3.8.patch
===
--- pynac-python-3.8.patch  (rev 0)
+++ pynac-python-3.8.patch  2020-07-26 18:11:42 UTC (rev 665359)
@@ -0,0 +1,24 @@
+diff --git a/ginac/function.cpp b/ginac/function.cpp
+index c158723..689e2b8 100644
+--- a/ginac/function.cpp
 b/ginac/function.cpp
+@@ -21,6 +21,7 @@
+  */
+ 
+ #define register
++#define PY_SSIZE_T_CLEAN
+ #include 
+ #include "py_funcs.h"
+ #include "function.h"
+diff --git a/ginac/numeric.cpp b/ginac/numeric.cpp
+index 276d86c..b463806 100644
+--- a/ginac/numeric.cpp
 b/ginac/numeric.cpp
+@@ -50,6 +50,7 @@
+  */
+ 
+ #define register
++#define PY_SSIZE_T_CLEAN
+ #include 
+ #include 
+ #include "flint/fmpz.h"


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

2020-07-26 Thread Fabio Castelli via arch-commits
Date: Sunday, July 26, 2020 @ 17:27:00
  Author: muflone
Revision: 665358

archrelease: copy trunk to community-x86_64

Added:
  dbeaver/repos/community-x86_64/PKGBUILD
(from rev 665357, dbeaver/trunk/PKGBUILD)
  dbeaver/repos/community-x86_64/dbeaver.desktop
(from rev 665357, dbeaver/trunk/dbeaver.desktop)
  dbeaver/repos/community-x86_64/dbeaver.hook
(from rev 665357, dbeaver/trunk/dbeaver.hook)
  dbeaver/repos/community-x86_64/dbeaver.install
(from rev 665357, dbeaver/trunk/dbeaver.install)
  dbeaver/repos/community-x86_64/dbeaver.profile.gz
(from rev 665357, dbeaver/trunk/dbeaver.profile.gz)
  dbeaver/repos/community-x86_64/dbeaver.sh
(from rev 665357, dbeaver/trunk/dbeaver.sh)
Deleted:
  dbeaver/repos/community-x86_64/PKGBUILD
  dbeaver/repos/community-x86_64/dbeaver.desktop
  dbeaver/repos/community-x86_64/dbeaver.hook
  dbeaver/repos/community-x86_64/dbeaver.install
  dbeaver/repos/community-x86_64/dbeaver.profile.gz
  dbeaver/repos/community-x86_64/dbeaver.sh

-+
 PKGBUILD|  216 +++---
 dbeaver.desktop |   28 +++
 dbeaver.hook|   24 +++---
 dbeaver.install |   10 +-
 dbeaver.sh  |   12 +--
 5 files changed, 145 insertions(+), 145 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-26 17:25:10 UTC (rev 665357)
+++ PKGBUILD2020-07-26 17:27:00 UTC (rev 665358)
@@ -1,108 +0,0 @@
-# Maintainer: Muflone http://www.muflone.com/contacts/english/
-# Contributor: Arne Hoch 
-
-pkgname=dbeaver
-pkgver=7.1.2
-pkgrel=1
-pkgdesc="Free universal SQL Client for developers and database administrators 
(community edition)"
-arch=('x86_64')
-url="https://dbeaver.io/;
-license=("Apache")
-depends=('java-runtime>=8' 'gtk3' 'gtk-update-icon-cache' 'libsecret')
-makedepends=('maven' 'java-runtime>=8')
-optdepends=('dbeaver-plugin-office: export data in Microsoft Office Excel 
format'
-'dbeaver-plugin-svg-format: save diagrams in SVG format')
-source=("${pkgname}-${pkgver}.tar.gz"::"https://github.com/serge-rider/dbeaver/archive/${pkgver}.tar.gz;
-"${pkgname}.desktop"
-"${pkgname}.sh"
-"${pkgname}.profile.gz"
-"${pkgname}.hook"
-"${pkgname}.install")
-sha256sums=('5f1deb980c621df032dff683f369f1fe10992610eda13abe179fbbd419121436'
-'27573b6ddb62a3d4dde4841a633e9b52cb020deb338b327a6d460fd3a29c8ded'
-'3d1138ef8ec6d413d9552cab0444bd3b692fa808e9798a16b280ab17b6ca3659'
-'1863e74bdcf22b7328e6e8487cbebff7d5360e34bde85c1dd226b168b4737034'
-'f8b763ca210bfa4d9a4e407b656ba4f5d1bf2f3f54c67044f7a4dd0c3625fc22'
-'f8d65dd933049b587a5815ea75a30ef944300b812df383ca1c2dcd68280bc7ab')
-install="${pkgname}.install"
-
-prepare() {
-  # Fix version number in profile file
-  gzip --decompress --keep --stdout "${pkgname}.profile.gz" | 
-sed "s/DBEAVER_VERSION/${pkgver}/g" |
-gzip -9 > "${pkgname}.profile-${pkgver}.gz"
-
-  # Download dependencies during prepare FS#55873
-  # https://bugs.archlinux.org/task/55873
-  cd "${pkgname}-${pkgver}"
-  export MAVEN_OPTS="-Xmx2048m"
-  mvn --batch-mode validate
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  mvn --batch-mode package
-}
-
-package() {
-  cd "${pkgname}-${pkgver}/product/standalone"
-  # Install icons into /usr/share/icons/hicolor
-  for _size in 16 32 48 64 128 256 512
-  do
-install -m 644 -D "icons-sources/icon_${_size}x${_size}.png" \
-  "${pkgdir}/usr/share/icons/hicolor/${_size}x${_size}/apps/dbeaver.png"
-  done
-
-  # Move into the target directory
-  cd "target/products/org.jkiss.dbeaver.core.product/linux/gtk/${CARCH}"
-
-  # Initially install everything into /usr/lib/dbeaver
-  install -m 755 -d "${pkgdir}/usr/lib"
-  cp -r "dbeaver" "${pkgdir}/usr/lib/${pkgname}"
-
-  # Move shared data to /usr/share/dbeaver
-  cd "${pkgdir}/usr/lib/${pkgname}"
-  install -m 755 -d "${pkgdir}/usr/share/${pkgname}"
-  for _file in configuration features p2 .eclipseproduct artifacts.xml 
dbeaver.ini readme.txt
-  do
-mv "${_file}" "${pkgdir}/usr/share/${pkgname}"
-ln -s "/usr/share/${pkgname}/${_file}" .
-  done
-
-  # Install additional licenses
-  install -m 755 -d "${pkgdir}/usr/share/licenses"
-  mv licenses "${pkgdir}/usr/share/licenses/${pkgname}"
-
-  # Install icons
-  install -m 755 -d "${pkgdir}/usr/share/pixmaps"
-  mv dbeaver.png "${pkgdir}/usr/share/pixmaps/${pkgname}.png"
-  mv icon.xpm "${pkgdir}/usr/share/pixmaps/${pkgname}.xpm"
-
-  # Install executable script into /usr/bin
-  install -m 755 -d "${pkgdir}/usr/bin"
-  install -m 755 "${srcdir}/dbeaver.sh" "${pkgdir}/usr/bin/${pkgname}"
-
-  # Install application launcher into /usr/share/applications
-  install -m 755 -d "${pkgdir}/usr/share/applications"
-  install -m 755 -t "${pkgdir}/usr/share/applications" 
"${srcdir}/${pkgname}.desktop"
-
-  # Clean up and install new profile
-  rm -rf 

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

2020-07-26 Thread Fabio Castelli via arch-commits
Date: Sunday, July 26, 2020 @ 17:25:10
  Author: muflone
Revision: 665357

upgpkg: dbeaver 7.1.3-1

Modified:
  dbeaver/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 16:28:14 UTC (rev 665356)
+++ PKGBUILD2020-07-26 17:25:10 UTC (rev 665357)
@@ -2,7 +2,7 @@
 # Contributor: Arne Hoch 
 
 pkgname=dbeaver
-pkgver=7.1.2
+pkgver=7.1.3
 pkgrel=1
 pkgdesc="Free universal SQL Client for developers and database administrators 
(community edition)"
 arch=('x86_64')
@@ -18,7 +18,7 @@
 "${pkgname}.profile.gz"
 "${pkgname}.hook"
 "${pkgname}.install")
-sha256sums=('5f1deb980c621df032dff683f369f1fe10992610eda13abe179fbbd419121436'
+sha256sums=('6f7f7dd28bd638b9fc0323ef4b33d067ff60a1cbd271326f8236b4d90bb0bdc7'
 '27573b6ddb62a3d4dde4841a633e9b52cb020deb338b327a6d460fd3a29c8ded'
 '3d1138ef8ec6d413d9552cab0444bd3b692fa808e9798a16b280ab17b6ca3659'
 '1863e74bdcf22b7328e6e8487cbebff7d5360e34bde85c1dd226b168b4737034'


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

2020-07-26 Thread Xyne via arch-commits
Date: Sunday, July 26, 2020 @ 16:28:14
  Author: xyne
Revision: 665356

archrelease: copy trunk to community-x86_64

Added:
  fdupes/repos/community-x86_64/LICENSE
(from rev 665355, fdupes/trunk/LICENSE)
  fdupes/repos/community-x86_64/PKGBUILD
(from rev 665355, fdupes/trunk/PKGBUILD)
Deleted:
  fdupes/repos/community-x86_64/LICENSE
  fdupes/repos/community-x86_64/PKGBUILD

--+
 LICENSE  |   44 +++
 PKGBUILD |   86 ++---
 2 files changed, 65 insertions(+), 65 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2020-07-26 16:28:02 UTC (rev 665355)
+++ LICENSE 2020-07-26 16:28:14 UTC (rev 665356)
@@ -1,22 +0,0 @@
-Legal Information
-
-FDUPES Copyright (c) 1999 Adrian Lopez
-
-Permission is hereby granted, free of charge, to any person
-obtaining a copy of this software and associated documentation files
-(the "Software"), to deal in the Software without restriction,
-including without limitation the rights to use, copy, modify, merge,
-publish, distribute, sublicense, and/or sell copies of the Software,
-and to permit persons to whom the Software is furnished to do so,
-subject to the following conditions:
-
-The above copyright notice and this permission notice shall be
-included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 
-OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 
-IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY 
-CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 
-TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 
-SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Copied: fdupes/repos/community-x86_64/LICENSE (from rev 665355, 
fdupes/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2020-07-26 16:28:14 UTC (rev 665356)
@@ -0,0 +1,22 @@
+Legal Information
+
+FDUPES Copyright (c) 1999 Adrian Lopez
+
+Permission is hereby granted, free of charge, to any person
+obtaining a copy of this software and associated documentation files
+(the "Software"), to deal in the Software without restriction,
+including without limitation the rights to use, copy, modify, merge,
+publish, distribute, sublicense, and/or sell copies of the Software,
+and to permit persons to whom the Software is furnished to do so,
+subject to the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 
+OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY 
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-26 16:28:02 UTC (rev 665355)
+++ PKGBUILD2020-07-26 16:28:14 UTC (rev 665356)
@@ -1,43 +0,0 @@
-# Maintainer: Xyne 
-# Contributor: Daenyth 
-# Contributor: Chris Winter 
-
-pkgname=fdupes
-pkgver=2.0.0
-pkgrel=1
-# Version changed from 1.51 to 1.6.1
-epoch=1
-pkgdesc="a program for identifying or deleting duplicate files residing within 
specified directories"
-arch=('x86_64')
-url="https://github.com/adrianlopezroche/fdupes;
-license=(custom)
-depends=(glibc ncurses pcre2)
-makedepends=(git)
-source=(
-  
https://github.com/adrianlopezroche/fdupes/releases/download/${pkgver}/fdupes-${pkgver}.tar.gz
-  LICENSE
-)
-# Alternatively
-# source=(git://github.com/adrianlopezroche/fdupes.git#tag=$pkgname-$pkgver 
LICENSE)
-sha512sums=('3c76cfba1cc650f6e680933cda6236e2110018d8a6a132e146d0d61c8f44cac5944e9966b1f3de5847aca6f233ab4df9b180888e0f4b3e3fa5ae8c5f9cb1484f'
-
'40a005755c406c394506fdacad79140a4bdcb4474024832edc81c6d5f8524be9f2b8f504c5492cbab1cfd6bed86e72ff29d665eab3dec171468de490cf156381')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make PREFIX=/usr
-}
-
-package(){
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-  # cd $pkgname-$pkgver
-  # # This works on the master branch but not for the 1.51 tag.
-  # # install -d "$pkgdir"/usr/{share/man/man1,bin} # remnant from old PKGBUILD
-  # #make PREFIX=/usr DESTDIR="$pkgdir" install
-  # install -Dm755 fdupes "$pkgdir/usr/bin/fdupes"
- 

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

2020-07-26 Thread Xyne via arch-commits
Date: Sunday, July 26, 2020 @ 16:28:02
  Author: xyne
Revision: 665355

upgpkg: fdupes 1:2.1.1-1: Update to 2.1.1

Modified:
  fdupes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 15:20:44 UTC (rev 665354)
+++ PKGBUILD2020-07-26 16:28:02 UTC (rev 665355)
@@ -3,7 +3,7 @@
 # Contributor: Chris Winter 
 
 pkgname=fdupes
-pkgver=2.0.0
+pkgver=2.1.1
 pkgrel=1
 # Version changed from 1.51 to 1.6.1
 epoch=1
@@ -14,12 +14,12 @@
 depends=(glibc ncurses pcre2)
 makedepends=(git)
 source=(
-  
https://github.com/adrianlopezroche/fdupes/releases/download/${pkgver}/fdupes-${pkgver}.tar.gz
+  
https://github.com/adrianlopezroche/fdupes/releases/download/v${pkgver}/fdupes-${pkgver}.tar.gz
   LICENSE
 )
 # Alternatively
 # source=(git://github.com/adrianlopezroche/fdupes.git#tag=$pkgname-$pkgver 
LICENSE)
-sha512sums=('3c76cfba1cc650f6e680933cda6236e2110018d8a6a132e146d0d61c8f44cac5944e9966b1f3de5847aca6f233ab4df9b180888e0f4b3e3fa5ae8c5f9cb1484f'
+sha512sums=('41b7920b1cdf9b5c6029d8adaa37cf65c9880d88e466abf1b97e4fbdb7621ad045f1b0499dbc8b28276b2a2cbe623b910607375dafe7fddce50052b4f04598a8'
 
'40a005755c406c394506fdacad79140a4bdcb4474024832edc81c6d5f8524be9f2b8f504c5492cbab1cfd6bed86e72ff29d665eab3dec171468de490cf156381')
 
 build() {


[arch-commits] Commit in geoip-database/repos/extra-any (4 files)

2020-07-26 Thread Evangelos Foutras via arch-commits
Date: Sunday, July 26, 2020 @ 16:14:30
  Author: foutrelis
Revision: 392556

archrelease: copy trunk to extra-any

Added:
  geoip-database/repos/extra-any/PKGBUILD
(from rev 392555, geoip-database/trunk/PKGBUILD)
  geoip-database/repos/extra-any/update.sh
(from rev 392555, geoip-database/trunk/update.sh)
Deleted:
  geoip-database/repos/extra-any/PKGBUILD
  geoip-database/repos/extra-any/update.sh

---+
 PKGBUILD  |  164 ++--
 update.sh |   54 +--
 2 files changed, 109 insertions(+), 109 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-26 16:14:26 UTC (rev 392555)
+++ PKGBUILD2020-07-26 16:14:30 UTC (rev 392556)
@@ -1,82 +0,0 @@
-# Maintainer: Evangelos Foutras 
-
-pkgname=('geoip-database' 'geoip-database-extra')
-pkgver=20200609
-pkgrel=1
-arch=('any')
-url="https://mailfud.org/geoip-legacy/;
-license=('CCPL:by-sa')
-makedepends=('util-linux')
-checkdepends=('geoip')
-_source_base=https://sources.archlinux.org/other/packages/$pkgname/$pkgver
-source=(GeoIP-$pkgver.dat.gz::$_source_base/GeoIP.dat.gz
-GeoIPv6-$pkgver.dat.gz::$_source_base/GeoIPv6.dat.gz
-GeoIPCity-$pkgver.dat.gz::$_source_base/GeoIPCity.dat.gz
-GeoIPCityv6-$pkgver.dat.gz::$_source_base/GeoIPCityv6.dat.gz
-GeoIPASNum-$pkgver.dat.gz::$_source_base/GeoIPASNum.dat.gz
-GeoIPASNumv6-$pkgver.dat.gz::$_source_base/GeoIPASNumv6.dat.gz)
-sha256sums=('6dc009a7baf02cd29a1de87e8ea37fc982645fa84ab728924f96158ef40d3284'
-'3f3fdf1298968c78e7d31e3203c41ecceaf4b28b50760956c0ccb832ab131623'
-'8c50098ec25b7e8b4183952581e757d9ab9b9b2958c7df41ac9a9bdb773d9a2e'
-'2beffaf55957dd2561079fb572632c0ee655d5ca159cce8289b056710a6d4ba7'
-'4f1b13a3b2ed7f9ca8c3f4fbf7f3e50129835f7024a436ae2967805bddb6b6b4'
-'44b0db53d46604a8dd706fe635bd49f352c34fadf0515ef69b731b99c64f4ec6')
-
-prepare() {
-  cd "$srcdir"
-  rename -v -- "-$pkgver" '' *.dat
-}
-
-check() {
-  cd "$srcdir"
-
-  if [[ $(geoiplookup -f GeoIP.dat 8.8.8.8) != *'US, United States' ]]; then
-echo >&2 'Unable to resolve IPv4 address to country.'
-return 1
-  fi
-
-  if [[ $(geoiplookup6 -f GeoIPv6.dat 2001:4860:4860::) != *'US, United 
States' ]]; then
-echo >&2 'Unable to resolve IPv6 address to country.'
-return 1
-  fi
-
-  if [[ $(geoiplookup -f GeoIPCity.dat 8.8.8.8) != *'US, 00, N/A, N/A'* ]]; 
then
-echo >&2 'Unable to resolve IPv4 address to city.'
-return 1
-  fi
-
-  if [[ $(geoiplookup6 -f GeoIPCityv6.dat 2001:4860:4860::) != *'US, 00, 
N/A, N/A'* ]]; then
-echo >&2 'Unable to resolve IPv6 address to city.'
-return 1
-  fi
-
-  if [[ $(geoiplookup -f GeoIPASNum.dat 8.8.8.8) != *'AS15169 GOOGLE' ]]; then
-echo >&2 'Unable to resolve IPv4 address to ASN.'
-return 1
-  fi
-
-  if [[ $(geoiplookup6 -f GeoIPASNumv6.dat 2001:4860:4860::) != *'AS15169 
GOOGLE' ]]; then
-echo >&2 'Unable to resolve IPv6 address to ASN.'
-return 1
-  fi
-}
-
-package_geoip-database() {
-  pkgdesc="GeoIP legacy country database (based on GeoLite2 data created by 
MaxMind)"
-
-  cd "$srcdir"
-
-  install -d "$pkgdir/usr/share/GeoIP"
-  install -m644 -t "$pkgdir/usr/share/GeoIP" GeoIP{,v6}.dat
-}
-
-package_geoip-database-extra() {
-  pkgdesc="GeoIP legacy city/ASN databases (based on GeoLite2 data created by 
MaxMind)"
-
-  cd "$srcdir"
-
-  install -d "$pkgdir/usr/share/GeoIP"
-  install -m644 -t "$pkgdir/usr/share/GeoIP" GeoIPCity{,v6}.dat 
GeoIPASNum{,v6}.dat
-}
-
-# vim:set ts=2 sw=2 et:

Copied: geoip-database/repos/extra-any/PKGBUILD (from rev 392555, 
geoip-database/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-26 16:14:30 UTC (rev 392556)
@@ -0,0 +1,82 @@
+# Maintainer: Evangelos Foutras 
+
+pkgname=('geoip-database' 'geoip-database-extra')
+pkgver=20200721
+pkgrel=1
+arch=('any')
+url="https://mailfud.org/geoip-legacy/;
+license=('CCPL:by-sa')
+makedepends=('util-linux')
+checkdepends=('geoip')
+_source_base=https://sources.archlinux.org/other/packages/$pkgname/$pkgver
+source=(GeoIP-$pkgver.dat.gz::$_source_base/GeoIP.dat.gz
+GeoIPv6-$pkgver.dat.gz::$_source_base/GeoIPv6.dat.gz
+GeoIPCity-$pkgver.dat.gz::$_source_base/GeoIPCity.dat.gz
+GeoIPCityv6-$pkgver.dat.gz::$_source_base/GeoIPCityv6.dat.gz
+GeoIPASNum-$pkgver.dat.gz::$_source_base/GeoIPASNum.dat.gz
+GeoIPASNumv6-$pkgver.dat.gz::$_source_base/GeoIPASNumv6.dat.gz)
+sha256sums=('617700bff76aa3c50978174a482cd355b0f3b2c3c70b4bd40458c10c326840c0'
+'657df26d535b298cced122916636cc7a7a9d1b2e3de646e53ac3e0a41dc1a618'
+'06a905d39bb9d1acd9b772aef4823a2c27bfea3dfc0bf98cc5ff73da878d3eb6'
+'b171f9b33d0ce92af3b51eda41e951f4a5b14903beebfd0b9abea730773f4087'
+

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

2020-07-26 Thread Evangelos Foutras via arch-commits
Date: Sunday, July 26, 2020 @ 16:14:26
  Author: foutrelis
Revision: 392555

upgpkg: geoip-database 20200721-1: update

Modified:
  geoip-database/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 12:46:20 UTC (rev 392554)
+++ PKGBUILD2020-07-26 16:14:26 UTC (rev 392555)
@@ -1,7 +1,7 @@
 # Maintainer: Evangelos Foutras 
 
 pkgname=('geoip-database' 'geoip-database-extra')
-pkgver=20200609
+pkgver=20200721
 pkgrel=1
 arch=('any')
 url="https://mailfud.org/geoip-legacy/;
@@ -15,12 +15,12 @@
 GeoIPCityv6-$pkgver.dat.gz::$_source_base/GeoIPCityv6.dat.gz
 GeoIPASNum-$pkgver.dat.gz::$_source_base/GeoIPASNum.dat.gz
 GeoIPASNumv6-$pkgver.dat.gz::$_source_base/GeoIPASNumv6.dat.gz)
-sha256sums=('6dc009a7baf02cd29a1de87e8ea37fc982645fa84ab728924f96158ef40d3284'
-'3f3fdf1298968c78e7d31e3203c41ecceaf4b28b50760956c0ccb832ab131623'
-'8c50098ec25b7e8b4183952581e757d9ab9b9b2958c7df41ac9a9bdb773d9a2e'
-'2beffaf55957dd2561079fb572632c0ee655d5ca159cce8289b056710a6d4ba7'
-'4f1b13a3b2ed7f9ca8c3f4fbf7f3e50129835f7024a436ae2967805bddb6b6b4'
-'44b0db53d46604a8dd706fe635bd49f352c34fadf0515ef69b731b99c64f4ec6')
+sha256sums=('617700bff76aa3c50978174a482cd355b0f3b2c3c70b4bd40458c10c326840c0'
+'657df26d535b298cced122916636cc7a7a9d1b2e3de646e53ac3e0a41dc1a618'
+'06a905d39bb9d1acd9b772aef4823a2c27bfea3dfc0bf98cc5ff73da878d3eb6'
+'b171f9b33d0ce92af3b51eda41e951f4a5b14903beebfd0b9abea730773f4087'
+'6891239fd9826e24f1b50db9d3a665bb958bcb42fdf3249579faceaf8ff0f6c9'
+'cb12e6c96d8b5e263b0f43f68f5415a2cd005940c6cc7b6f52945269475d9628')
 
 prepare() {
   cd "$srcdir"
@@ -40,7 +40,7 @@
 return 1
   fi
 
-  if [[ $(geoiplookup -f GeoIPCity.dat 8.8.8.8) != *'US, 00, N/A, N/A'* ]]; 
then
+  if [[ $(geoiplookup -f GeoIPCity.dat 8.8.8.8) != *'US, MO, Missouri'* ]]; 
then
 echo >&2 'Unable to resolve IPv4 address to city.'
 return 1
   fi


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

2020-07-26 Thread Felix Yan via arch-commits
Date: Sunday, July 26, 2020 @ 15:20:29
  Author: felixonmars
Revision: 665353

upgpkg: startdde 5.5.0.8-1

Modified:
  startdde/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 14:16:37 UTC (rev 665352)
+++ PKGBUILD2020-07-26 15:20:29 UTC (rev 665353)
@@ -3,7 +3,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=startdde
-pkgver=5.5.0.7
+pkgver=5.5.0.8
 pkgrel=1
 pkgdesc="starter of deepin desktop environment"
 arch=('x86_64')
@@ -20,7 +20,7 @@
 replaces=('deepin-wm-switcher')
 groups=('deepin')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/startdde/archive/$pkgver.tar.gz;)
-sha512sums=('7adfd2f1070248e48fe41bed2b49fa3d5fa91278ac8fd6995da5a66c004ca86cd97fb6b9f0d7912823b88b6d27b21b25266235243cc69d5a89f02a4137d27844')
+sha512sums=('f64fff65f68972fb8a52ba90eb7cc2752b21004a208c34a7801762b63370d483f99e192414ec722c0972fbdc6e617da6c462162c8e5df465b47ccae6681276ad')
 
 prepare() {
   export GOPATH="$srcdir/build:/usr/share/gocode"


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

2020-07-26 Thread Felix Yan via arch-commits
Date: Sunday, July 26, 2020 @ 15:20:44
  Author: felixonmars
Revision: 665354

archrelease: copy trunk to community-x86_64

Added:
  startdde/repos/community-x86_64/PKGBUILD
(from rev 665353, startdde/trunk/PKGBUILD)
Deleted:
  startdde/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-26 15:20:29 UTC (rev 665353)
+++ PKGBUILD2020-07-26 15:20:44 UTC (rev 665354)
@@ -1,54 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=startdde
-pkgver=5.5.0.7
-pkgrel=1
-pkgdesc="starter of deepin desktop environment"
-arch=('x86_64')
-url="https://github.com/linuxdeepin/startdde;
-license=('GPL3')
-depends=('deepin-daemon' 'deepin-dock' 'deepin-polkit-agent' 
'deepin-file-manager'
- 'deepin-session-shell' 'deepin-session-ui' 'libgnome-keyring')
-makedepends=('cmake' 'coffeescript' 
'golang-github-linuxdeepin-go-dbus-factory' 'golang-deepin-gir'
- 'golang-deepin-lib' 'golang-deepin-dde-api' 'go' 'git' 'jq'
- 'golang-golang-x-net' 'golang-github-linuxdeepin-go-x11-client')
-optdepends=('deepin-wm: Legacy 3D window manager'
-'deepin-metacity: Legacy 2D window manager'
-'deepin-kwin: Preferred window manager')
-replaces=('deepin-wm-switcher')
-groups=('deepin')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/startdde/archive/$pkgver.tar.gz;)
-sha512sums=('7adfd2f1070248e48fe41bed2b49fa3d5fa91278ac8fd6995da5a66c004ca86cd97fb6b9f0d7912823b88b6d27b21b25266235243cc69d5a89f02a4137d27844')
-
-prepare() {
-  export GOPATH="$srcdir/build:/usr/share/gocode"
-  go get github.com/cryptix/wav golang.org/x/xerrors
-
-  sed -i 's/sbin/bin/' startdde-$pkgver/Makefile
-}
-
-build() {
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
-
-  cd startdde-$pkgver
-  make
-}
-
-package() {
-  cd startdde-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  # Fix env file permission
-  chmod +x "$pkgdir"/etc/X11/Xsession.d/*
-
-  # Don't rely on deepin-session's location
-  install -dm755 "$pkgdir"/etc/X11/xinit/xinitrc.d
-  mv "$pkgdir"/etc/X11/Xsession.d/* "$pkgdir"/etc/X11/xinit/xinitrc.d/
-  rmdir "$pkgdir"/etc/X11/Xsession.d
-}

Copied: startdde/repos/community-x86_64/PKGBUILD (from rev 665353, 
startdde/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-26 15:20:44 UTC (rev 665354)
@@ -0,0 +1,54 @@
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=startdde
+pkgver=5.5.0.8
+pkgrel=1
+pkgdesc="starter of deepin desktop environment"
+arch=('x86_64')
+url="https://github.com/linuxdeepin/startdde;
+license=('GPL3')
+depends=('deepin-daemon' 'deepin-dock' 'deepin-polkit-agent' 
'deepin-file-manager'
+ 'deepin-session-shell' 'deepin-session-ui' 'libgnome-keyring')
+makedepends=('cmake' 'coffeescript' 
'golang-github-linuxdeepin-go-dbus-factory' 'golang-deepin-gir'
+ 'golang-deepin-lib' 'golang-deepin-dde-api' 'go' 'git' 'jq'
+ 'golang-golang-x-net' 'golang-github-linuxdeepin-go-x11-client')
+optdepends=('deepin-wm: Legacy 3D window manager'
+'deepin-metacity: Legacy 2D window manager'
+'deepin-kwin: Preferred window manager')
+replaces=('deepin-wm-switcher')
+groups=('deepin')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/startdde/archive/$pkgver.tar.gz;)
+sha512sums=('f64fff65f68972fb8a52ba90eb7cc2752b21004a208c34a7801762b63370d483f99e192414ec722c0972fbdc6e617da6c462162c8e5df465b47ccae6681276ad')
+
+prepare() {
+  export GOPATH="$srcdir/build:/usr/share/gocode"
+  go get github.com/cryptix/wav golang.org/x/xerrors
+
+  sed -i 's/sbin/bin/' startdde-$pkgver/Makefile
+}
+
+build() {
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+
+  cd startdde-$pkgver
+  make
+}
+
+package() {
+  cd startdde-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  # Fix env file permission
+  chmod +x "$pkgdir"/etc/X11/Xsession.d/*
+
+  # Don't rely on deepin-session's location
+  install -dm755 "$pkgdir"/etc/X11/xinit/xinitrc.d
+  mv "$pkgdir"/etc/X11/Xsession.d/* "$pkgdir"/etc/X11/xinit/xinitrc.d/
+  rmdir "$pkgdir"/etc/X11/Xsession.d
+}


[arch-commits] Commit in (4 files)

2020-07-26 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 26, 2020 @ 14:16:33
  Author: jelle
Revision: 665351

new cura dependency

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

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

Added: python-trimesh/trunk/PKGBUILD
===
--- python-trimesh/trunk/PKGBUILD   (rev 0)
+++ python-trimesh/trunk/PKGBUILD   2020-07-26 14:16:33 UTC (rev 665351)
@@ -0,0 +1,23 @@
+# Maintainer: Jelle van der Waa 
+
+pkgname=python-trimesh
+pkgver=3.7.13
+pkgrel=1
+pkgdesc='Trimesh is a pure Python library for loading and using triangular 
meshes with an emphasis on watertight surfaces'
+arch=('any')
+url="https://github.com/mikedh/trimesh;
+license=('MIT')
+depends=('python' 'python-setuptools' 'python-lxml' 'python-pillow' 
'python-rtee' 'python-jsonschema'
+ 'python-shapely' 'python-pyglet 'python-xxhash')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/mikedh/trimesh/archive/${pkgver}.tar.gz)
+
+build() {
+  python setup.py build
+}
+
+package() {
+  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+}
+
+package() {
+}


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

2020-07-26 Thread Jiachen Yang via arch-commits
Date: Sunday, July 26, 2020 @ 14:16:37
  Author: farseerfc
Revision: 665352

archrelease: copy trunk to community-x86_64

Added:
  telegram-desktop/repos/community-x86_64/PKGBUILD
(from rev 665350, telegram-desktop/trunk/PKGBUILD)
Deleted:
  telegram-desktop/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-26 14:16:33 UTC (rev 665351)
+++ PKGBUILD2020-07-26 14:16:37 UTC (rev 665352)
@@ -1,38 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: hexchain 
-pkgname=telegram-desktop
-pkgver=2.1.13
-pkgrel=1
-pkgdesc='Official Telegram Desktop client'
-arch=('x86_64')
-url="https://desktop.telegram.org/;
-license=('GPL3')
-depends=('hunspell' 'ffmpeg' 'hicolor-icon-theme' 'lz4' 'minizip' 'openal'
- 'qt5-imageformats' 'xxhash' 'libdbusmenu-qt5')
-makedepends=('cmake' 'git' 'ninja' 'python' 'range-v3' 'tl-expected' 'gtk3')
-optdepends=('ttf-opensans: default Open Sans font family')
-source=("https://github.com/telegramdesktop/tdesktop/releases/download/v${pkgver}/tdesktop-${pkgver}-full.tar.gz;)
-sha512sums=('f28ae7c8c9a9eb8094fc52784742b470235234a3df7487902152858bc7c297b2dcfe5c8b939cdb9653a356b3835609e7289f53cdf7d5fb3f009823d3dbeb1bd8')
-
-build() {
-cd tdesktop-$pkgver-full
-
-# export CXXFLAGS="$CXXFLAGS 
-ffile-prefix-map=$srcdir/tdesktop-$pkgver-full="
-cmake -B build -G Ninja . \
--DCMAKE_INSTALL_PREFIX="/usr" \
--DCMAKE_BUILD_TYPE=Release \
--DTDESKTOP_API_TEST=ON \
--DDESKTOP_APP_USE_PACKAGED_RLOTTIE=OFF \
--DDESKTOP_APP_USE_PACKAGED_VARIANT=OFF \
--DDESKTOP_APP_USE_PACKAGED_GSL=OFF \
--DTDESKTOP_DISABLE_REGISTER_CUSTOM_SCHEME=ON \
--DTDESKTOP_USE_PACKAGED_TGVOIP=OFF \
--DDESKTOP_APP_SPECIAL_TARGET="" \
--DTDESKTOP_LAUNCHER_BASENAME="telegramdesktop"
-ninja -C build
-}
-
-package() {
-cd tdesktop-$pkgver-full
-DESTDIR=$pkgdir ninja -C build install
-}

Copied: telegram-desktop/repos/community-x86_64/PKGBUILD (from rev 665350, 
telegram-desktop/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-26 14:16:37 UTC (rev 665352)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: hexchain 
+pkgname=telegram-desktop
+pkgver=2.2.0
+pkgrel=1
+pkgdesc='Official Telegram Desktop client'
+arch=('x86_64')
+url="https://desktop.telegram.org/;
+license=('GPL3')
+depends=('hunspell' 'ffmpeg' 'hicolor-icon-theme' 'lz4' 'minizip' 'openal'
+ 'qt5-imageformats' 'xxhash' 'libdbusmenu-qt5' 'qt5-wayland')
+makedepends=('cmake' 'git' 'ninja' 'python' 'range-v3' 'tl-expected' 'gtk3')
+optdepends=('ttf-opensans: default Open Sans font family')
+source=("https://github.com/telegramdesktop/tdesktop/releases/download/v${pkgver}/tdesktop-${pkgver}-full.tar.gz;)
+sha512sums=('2aeca83be7bc385bd7537d56ecf66996facedd0af588e743fedbb08c3158fc76436d6cf3b1fb5dd7c8d37b4471f739872ca54ba300aa1d0e0202e87c005703fd')
+
+build() {
+cd tdesktop-$pkgver-full
+
+# export CXXFLAGS="$CXXFLAGS 
-ffile-prefix-map=$srcdir/tdesktop-$pkgver-full="
+cmake -B build -G Ninja . \
+-DCMAKE_INSTALL_PREFIX="/usr" \
+-DCMAKE_BUILD_TYPE=Release \
+-DTDESKTOP_API_TEST=ON \
+-DDESKTOP_APP_USE_PACKAGED_RLOTTIE=OFF \
+-DDESKTOP_APP_USE_PACKAGED_VARIANT=OFF \
+-DDESKTOP_APP_USE_PACKAGED_GSL=OFF \
+-DTDESKTOP_DISABLE_REGISTER_CUSTOM_SCHEME=ON \
+-DTDESKTOP_USE_PACKAGED_TGVOIP=OFF \
+-DDESKTOP_APP_SPECIAL_TARGET="" \
+-DTDESKTOP_LAUNCHER_BASENAME="telegramdesktop"
+ninja -C build
+}
+
+package() {
+cd tdesktop-$pkgver-full
+DESTDIR=$pkgdir ninja -C build install
+}


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

2020-07-26 Thread Jiachen Yang via arch-commits
Date: Sunday, July 26, 2020 @ 14:15:59
  Author: farseerfc
Revision: 665350

upgpkg: telegram-desktop 2.2.0-1: telegram-desktop 2.2.0

Modified:
  telegram-desktop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 13:53:51 UTC (rev 665349)
+++ PKGBUILD2020-07-26 14:15:59 UTC (rev 665350)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 # Contributor: hexchain 
 pkgname=telegram-desktop
-pkgver=2.1.13
+pkgver=2.2.0
 pkgrel=1
 pkgdesc='Official Telegram Desktop client'
 arch=('x86_64')
@@ -8,11 +8,11 @@
 url="https://desktop.telegram.org/;
 license=('GPL3')
 depends=('hunspell' 'ffmpeg' 'hicolor-icon-theme' 'lz4' 'minizip' 'openal'
- 'qt5-imageformats' 'xxhash' 'libdbusmenu-qt5')
+ 'qt5-imageformats' 'xxhash' 'libdbusmenu-qt5' 'qt5-wayland')
 makedepends=('cmake' 'git' 'ninja' 'python' 'range-v3' 'tl-expected' 'gtk3')
 optdepends=('ttf-opensans: default Open Sans font family')
 
source=("https://github.com/telegramdesktop/tdesktop/releases/download/v${pkgver}/tdesktop-${pkgver}-full.tar.gz;)
-sha512sums=('f28ae7c8c9a9eb8094fc52784742b470235234a3df7487902152858bc7c297b2dcfe5c8b939cdb9653a356b3835609e7289f53cdf7d5fb3f009823d3dbeb1bd8')
+sha512sums=('2aeca83be7bc385bd7537d56ecf66996facedd0af588e743fedbb08c3158fc76436d6cf3b1fb5dd7c8d37b4471f739872ca54ba300aa1d0e0202e87c005703fd')
 
 build() {
 cd tdesktop-$pkgver-full


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

2020-07-26 Thread Florian Pritz via arch-commits
Date: Sunday, July 26, 2020 @ 13:53:51
  Author: bluewind
Revision: 665349

archrelease: copy trunk to community-any

Added:
  zim/repos/community-any/PKGBUILD
(from rev 665348, zim/trunk/PKGBUILD)
Deleted:
  zim/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-26 13:53:48 UTC (rev 665348)
+++ PKGBUILD2020-07-26 13:53:51 UTC (rev 665349)
@@ -1,51 +0,0 @@
-# Maintainer: Florian Pritz 
-# Contributor: Kevin Piche 
-# Contributor: Daniel J Griffiths 
-
-pkgname=zim
-pkgver=0.73.1
-pkgrel=1
-pkgdesc="A WYSIWYG text editor that aims at bringing the concept of a wiki to 
the desktop."
-arch=(any)
-license=('GPL' 'PerlArtistic')
-url="https://zim-wiki.org/;
-depends=('python' 'python-gobject' 'ttf-font' 'gtk3' 'python-xdg')
-checkdepends=('xorg-server-xvfb')
-optdepends=('bzr: Version Control plugin'
-'git: Version Control plugin'
-'mercurial: Version Control plugin'
-'gnuplot: Insert Gnuplot plugin'
-'ditaa: Insert Ditaa plugin'
-'graphviz: Insert Diagram plugin'
-'xdot: Link Map plugin'
-'gtkspell3: Spell Checker plugin'
-'r: Insert GNU R Plot plugin'
-'scrot: Insert Screenshot plugin'
-'lilypond: Insert Score plugin'
-'gtksourceview3: Source View plugin'
-'texlive-bin: Insert Equation plugin')
-source=("https://www.zim-wiki.org/downloads/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('7fbc5242c9e96d13d9d43d341db9dc94')
-
-
-check() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-
-   if [[ "$pkgver" != "0.73.1" ]]; then
-   # Test are broken starting with 0.71.0, but no fix is in sight 
yet.
-   # Skip the tests since I don't have the time to fix them myself.
-   # When the next version comes out, either update the if 
condition or be
-   # happy that they are fixed.
-   # 
https://github.com/zim-desktop-wiki/zim-desktop-wiki/issues/814
-   xvfb-run -w0 ./test.py
-   fi
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-
-   python setup.py install --root="${pkgdir}" --optimize=1
-
-   install -dm755 "$pkgdir/usr/share/icons/"
-   cp -r xdg/hicolor/ "$pkgdir/usr/share/icons/"
-}

Copied: zim/repos/community-any/PKGBUILD (from rev 665348, zim/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-26 13:53:51 UTC (rev 665349)
@@ -0,0 +1,51 @@
+# Maintainer: Florian Pritz 
+# Contributor: Kevin Piche 
+# Contributor: Daniel J Griffiths 
+
+pkgname=zim
+pkgver=0.73.2
+pkgrel=1
+pkgdesc="A WYSIWYG text editor that aims at bringing the concept of a wiki to 
the desktop."
+arch=(any)
+license=('GPL' 'PerlArtistic')
+url="https://zim-wiki.org/;
+depends=('python' 'python-gobject' 'ttf-font' 'gtk3' 'python-xdg')
+checkdepends=('xorg-server-xvfb')
+optdepends=('bzr: Version Control plugin'
+'git: Version Control plugin'
+'mercurial: Version Control plugin'
+'gnuplot: Insert Gnuplot plugin'
+'ditaa: Insert Ditaa plugin'
+'graphviz: Insert Diagram plugin'
+'xdot: Link Map plugin'
+'gtkspell3: Spell Checker plugin'
+'r: Insert GNU R Plot plugin'
+'scrot: Insert Screenshot plugin'
+'lilypond: Insert Score plugin'
+'gtksourceview3: Source View plugin'
+'texlive-bin: Insert Equation plugin')
+source=("https://www.zim-wiki.org/downloads/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('36709453c4b1858bce30e2b3a705ef3d')
+
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   if [[ "$pkgver" != "0.73.2" ]]; then
+   # Test are broken starting with 0.71.0, but no fix is in sight 
yet.
+   # Skip the tests since I don't have the time to fix them myself.
+   # When the next version comes out, either update the if 
condition or be
+   # happy that they are fixed.
+   # 
https://github.com/zim-desktop-wiki/zim-desktop-wiki/issues/814
+   xvfb-run -w0 ./test.py
+   fi
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   python setup.py install --root="${pkgdir}" --optimize=1
+
+   install -dm755 "$pkgdir/usr/share/icons/"
+   cp -r xdg/hicolor/ "$pkgdir/usr/share/icons/"
+}


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

2020-07-26 Thread Florian Pritz via arch-commits
Date: Sunday, July 26, 2020 @ 13:53:48
  Author: bluewind
Revision: 665348

upgpkg: zim 0.73.2-1: upstream update

Modified:
  zim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 13:14:47 UTC (rev 665347)
+++ PKGBUILD2020-07-26 13:53:48 UTC (rev 665348)
@@ -3,7 +3,7 @@
 # Contributor: Daniel J Griffiths 
 
 pkgname=zim
-pkgver=0.73.1
+pkgver=0.73.2
 pkgrel=1
 pkgdesc="A WYSIWYG text editor that aims at bringing the concept of a wiki to 
the desktop."
 arch=(any)
@@ -25,13 +25,13 @@
 'gtksourceview3: Source View plugin'
 'texlive-bin: Insert Equation plugin')
 source=("https://www.zim-wiki.org/downloads/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('7fbc5242c9e96d13d9d43d341db9dc94')
+md5sums=('36709453c4b1858bce30e2b3a705ef3d')
 
 
 check() {
cd "${srcdir}/${pkgname}-${pkgver}"
 
-   if [[ "$pkgver" != "0.73.1" ]]; then
+   if [[ "$pkgver" != "0.73.2" ]]; then
# Test are broken starting with 0.71.0, but no fix is in sight 
yet.
# Skip the tests since I don't have the time to fix them myself.
# When the next version comes out, either update the if 
condition or be


[arch-commits] Commit in lua-cqueues/repos/community-staging-x86_64 (2 files)

2020-07-26 Thread Daurnimator via arch-commits
Date: Sunday, July 26, 2020 @ 13:14:47
  Author: daurnimator
Revision: 665347

archrelease: copy trunk to community-staging-x86_64

Added:
  lua-cqueues/repos/community-staging-x86_64/PKGBUILD
(from rev 665346, lua-cqueues/trunk/PKGBUILD)
Deleted:
  lua-cqueues/repos/community-staging-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-26 13:12:59 UTC (rev 665346)
+++ PKGBUILD2020-07-26 13:14:47 UTC (rev 665347)
@@ -1,49 +0,0 @@
-# Maintainer: Daurnimator 
-
-pkgname=('lua-cqueues' 'lua51-cqueues' 'lua52-cqueues' 'lua53-cqueues')
-pkgver=20200726
-pkgrel=1
-arch=('x86_64')
-url='http://25thandclement.com/~william/projects/cqueues.html'
-license=('MIT')
-makedepends=('lua' 'lua51' 'lua52' 'lua53')
-depends=('openssl')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/wahern/cqueues/archive/rel-$pkgver.tar.gz;)
-md5sums=('fb21e8404cea86191e9658669eb44118')
-
-build() {
-   cd "cqueues-rel-$pkgver"
-   make prefix=/usr
-}
-
-package_lua-cqueues() {
-   pkgdesc='Continuation Queues: Embeddable asynchronous networking, 
threading, and notification framework for Lua 5.3'
-
-   cd "cqueues-rel-$pkgver"
-   make DESTDIR="$pkgdir" prefix=/usr install5.4
-   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_lua51-cqueues() {
-   pkgdesc='Continuation Queues: Embeddable asynchronous networking, 
threading, and notification framework for Lua 5.1'
-
-   cd "cqueues-rel-$pkgver"
-   make DESTDIR="$pkgdir" prefix=/usr install5.1
-   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_lua52-cqueues() {
-   pkgdesc='Continuation Queues: Embeddable asynchronous networking, 
threading, and notification framework for Lua 5.2'
-
-   cd "cqueues-rel-$pkgver"
-   make DESTDIR="$pkgdir" prefix=/usr install5.2
-   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_lua53-cqueues() {
-   pkgdesc='Continuation Queues: Embeddable asynchronous networking, 
threading, and notification framework for Lua 5.3'
-
-   cd "cqueues-rel-$pkgver"
-   make DESTDIR="$pkgdir" prefix=/usr install5.3
-   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: lua-cqueues/repos/community-staging-x86_64/PKGBUILD (from rev 665346, 
lua-cqueues/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-26 13:14:47 UTC (rev 665347)
@@ -0,0 +1,49 @@
+# Maintainer: Daurnimator 
+
+pkgname=('lua-cqueues' 'lua51-cqueues' 'lua52-cqueues' 'lua53-cqueues')
+pkgver=20200726
+pkgrel=2
+arch=('x86_64')
+url='http://25thandclement.com/~william/projects/cqueues.html'
+license=('MIT')
+makedepends=('lua' 'lua51' 'lua52' 'lua53')
+depends=('openssl')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/wahern/cqueues/archive/rel-$pkgver.tar.gz;)
+md5sums=('fb21e8404cea86191e9658669eb44118')
+
+build() {
+   cd "cqueues-rel-$pkgver"
+   make prefix=/usr
+}
+
+package_lua-cqueues() {
+   pkgdesc='Continuation Queues: Embeddable asynchronous networking, 
threading, and notification framework for Lua 5.4'
+
+   cd "cqueues-rel-$pkgver"
+   make DESTDIR="$pkgdir" prefix=/usr install5.4
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua51-cqueues() {
+   pkgdesc='Continuation Queues: Embeddable asynchronous networking, 
threading, and notification framework for Lua 5.1'
+
+   cd "cqueues-rel-$pkgver"
+   make DESTDIR="$pkgdir" prefix=/usr install5.1
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua52-cqueues() {
+   pkgdesc='Continuation Queues: Embeddable asynchronous networking, 
threading, and notification framework for Lua 5.2'
+
+   cd "cqueues-rel-$pkgver"
+   make DESTDIR="$pkgdir" prefix=/usr install5.2
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua53-cqueues() {
+   pkgdesc='Continuation Queues: Embeddable asynchronous networking, 
threading, and notification framework for Lua 5.3'
+
+   cd "cqueues-rel-$pkgver"
+   make DESTDIR="$pkgdir" prefix=/usr install5.3
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2020-07-26 Thread Daurnimator via arch-commits
Date: Sunday, July 26, 2020 @ 13:12:59
  Author: daurnimator
Revision: 665346

upgpkg: lua-cqueues 20200726-2: fix pkgdesc for Lua 5.4 split package

Modified:
  lua-cqueues/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 12:58:23 UTC (rev 665345)
+++ PKGBUILD2020-07-26 13:12:59 UTC (rev 665346)
@@ -2,7 +2,7 @@
 
 pkgname=('lua-cqueues' 'lua51-cqueues' 'lua52-cqueues' 'lua53-cqueues')
 pkgver=20200726
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 url='http://25thandclement.com/~william/projects/cqueues.html'
 license=('MIT')
@@ -17,7 +17,7 @@
 }
 
 package_lua-cqueues() {
-   pkgdesc='Continuation Queues: Embeddable asynchronous networking, 
threading, and notification framework for Lua 5.3'
+   pkgdesc='Continuation Queues: Embeddable asynchronous networking, 
threading, and notification framework for Lua 5.4'
 
cd "cqueues-rel-$pkgver"
make DESTDIR="$pkgdir" prefix=/usr install5.4


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

2020-07-26 Thread Felix Yan via arch-commits
Date: Sunday, July 26, 2020 @ 12:58:23
  Author: felixonmars
Revision: 665345

archrelease: copy trunk to community-x86_64

Added:
  deepin-reader/repos/community-x86_64/PKGBUILD
(from rev 665344, deepin-reader/trunk/PKGBUILD)
Deleted:
  deepin-reader/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-26 12:58:08 UTC (rev 665344)
+++ PKGBUILD2020-07-26 12:58:23 UTC (rev 665345)
@@ -1,37 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=deepin-reader
-pkgver=5.7.0.6
-pkgrel=1
-pkgdesc='A simple PDF reader, supporting bookmarks, highlights and annotations'
-arch=('x86_64')
-url="https://github.com/linuxdeepin/deepin-reader;
-license=('GPL3')
-depends=('deepin-qt5integration' 'djvulibre' 'karchive' 'libspectre' 
'poppler-qt5')
-makedepends=('qt5-tools')
-groups=('deepin-extra')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-reader/archive/$pkgver.tar.gz;)
-sha512sums=('c0dfad629d3094beee6c660c77ae33310e84d7c1e5d140a4ce40f152819b553851de4e72f911d8e3ad3f703c62262c7628709b5f90ae0ea474c5949981df3355')
-
-prepare() {
-  cd deepin-reader-$pkgver/src
-  sed -i '/include /a #include ' 
pdfControl/docview/commonstruct.h
-  sed -i '/include /a #include ' 
CustomControl/RoundColorWidget.cpp 
lpreviewControl/bookmark/bookmarkdelegate.cpp \
- utils/utils.cpp 
lpreviewControl/thumbnail/ThumbnailDelegate.cpp 
lpreviewControl/note/notesdelegate.cpp \
- 
lpreviewControl/search/searchresdelegate.cpp
-  sed -i '/include /a #include ' document/model.h
-  sed -i '/include /a #include ' uiframe/DocSheet.h
-  sed -i '/include /a #include ' 
djvuControl/SheetBrowserDJVU.cpp
-  sed -i '/include /a #include ' 
widgets/SlideWidget.cpp
-}
-
-build() {
-  cd deepin-reader-$pkgver
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd deepin-reader-$pkgver
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: deepin-reader/repos/community-x86_64/PKGBUILD (from rev 665344, 
deepin-reader/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-26 12:58:23 UTC (rev 665345)
@@ -0,0 +1,37 @@
+# Maintainer: Felix Yan 
+
+pkgname=deepin-reader
+pkgver=5.7.0.7
+pkgrel=1
+pkgdesc='A simple PDF reader, supporting bookmarks, highlights and annotations'
+arch=('x86_64')
+url="https://github.com/linuxdeepin/deepin-reader;
+license=('GPL3')
+depends=('deepin-qt5integration' 'djvulibre' 'karchive' 'libspectre' 
'poppler-qt5')
+makedepends=('qt5-tools')
+groups=('deepin-extra')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-reader/archive/$pkgver.tar.gz;)
+sha512sums=('7a227ac250bf7a333ea0ce89b3bb11d753910033225ea2aeacc5471ee9bd8977032a499b976cedb7afb5a822d30198d70444789b221109c46ea185d434bdadee')
+
+prepare() {
+  cd deepin-reader-$pkgver/src
+  sed -i '/include /a #include ' 
pdfControl/docview/commonstruct.h
+  sed -i '/include /a #include ' 
CustomControl/RoundColorWidget.cpp 
lpreviewControl/bookmark/bookmarkdelegate.cpp \
+ utils/utils.cpp 
lpreviewControl/thumbnail/ThumbnailDelegate.cpp 
lpreviewControl/note/notesdelegate.cpp \
+ 
lpreviewControl/search/searchresdelegate.cpp
+  sed -i '/include /a #include ' document/model.h
+  sed -i '/include /a #include ' uiframe/DocSheet.h
+  sed -i '/include /a #include ' 
djvuControl/SheetBrowserDJVU.cpp
+  sed -i '/include /a #include ' 
widgets/SlideWidget.cpp
+}
+
+build() {
+  cd deepin-reader-$pkgver
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd deepin-reader-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+}


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

2020-07-26 Thread Felix Yan via arch-commits
Date: Sunday, July 26, 2020 @ 12:58:08
  Author: felixonmars
Revision: 665344

upgpkg: deepin-reader 5.7.0.7-1

Modified:
  deepin-reader/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 12:57:25 UTC (rev 665343)
+++ PKGBUILD2020-07-26 12:58:08 UTC (rev 665344)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=deepin-reader
-pkgver=5.7.0.6
+pkgver=5.7.0.7
 pkgrel=1
 pkgdesc='A simple PDF reader, supporting bookmarks, highlights and annotations'
 arch=('x86_64')
@@ -11,7 +11,7 @@
 makedepends=('qt5-tools')
 groups=('deepin-extra')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-reader/archive/$pkgver.tar.gz;)
-sha512sums=('c0dfad629d3094beee6c660c77ae33310e84d7c1e5d140a4ce40f152819b553851de4e72f911d8e3ad3f703c62262c7628709b5f90ae0ea474c5949981df3355')
+sha512sums=('7a227ac250bf7a333ea0ce89b3bb11d753910033225ea2aeacc5471ee9bd8977032a499b976cedb7afb5a822d30198d70444789b221109c46ea185d434bdadee')
 
 prepare() {
   cd deepin-reader-$pkgver/src


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

2020-07-26 Thread Felix Yan via arch-commits
Date: Sunday, July 26, 2020 @ 12:57:25
  Author: felixonmars
Revision: 665343

archrelease: copy trunk to community-any

Added:
  jenkins/repos/community-any/LICENSE
(from rev 665342, jenkins/trunk/LICENSE)
  jenkins/repos/community-any/PKGBUILD
(from rev 665342, jenkins/trunk/PKGBUILD)
  jenkins/repos/community-any/jenkins.conf
(from rev 665342, jenkins/trunk/jenkins.conf)
  jenkins/repos/community-any/jenkins.install
(from rev 665342, jenkins/trunk/jenkins.install)
  jenkins/repos/community-any/jenkins.service
(from rev 665342, jenkins/trunk/jenkins.service)
  jenkins/repos/community-any/jenkins.sysusers
(from rev 665342, jenkins/trunk/jenkins.sysusers)
  jenkins/repos/community-any/jenkins.tmpfiles
(from rev 665342, jenkins/trunk/jenkins.tmpfiles)
Deleted:
  jenkins/repos/community-any/LICENSE
  jenkins/repos/community-any/PKGBUILD
  jenkins/repos/community-any/jenkins.conf
  jenkins/repos/community-any/jenkins.install
  jenkins/repos/community-any/jenkins.service
  jenkins/repos/community-any/jenkins.sysusers
  jenkins/repos/community-any/jenkins.tmpfiles

--+
 LICENSE  |   46 +--
 PKGBUILD |   88 ++---
 jenkins.conf |   26 +++
 jenkins.install  |   14 
 jenkins.service  |   48 ++--
 jenkins.sysusers |4 +-
 jenkins.tmpfiles |2 -
 7 files changed, 114 insertions(+), 114 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2020-07-26 12:56:49 UTC (rev 665342)
+++ LICENSE 2020-07-26 12:57:25 UTC (rev 665343)
@@ -1,23 +0,0 @@
-The MIT License
-
-Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number 
of other of contributors
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
-
-

Copied: jenkins/repos/community-any/LICENSE (from rev 665342, 
jenkins/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2020-07-26 12:57:25 UTC (rev 665343)
@@ -0,0 +1,23 @@
+The MIT License
+
+Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number 
of other of contributors
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-26 12:56:49 UTC (rev 665342)
+++ PKGBUILD2020-07-26 12:57:25 UTC (rev 665343)
@@ -1,44 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Alexander Rødseth 
-# Contributor: Marcel Huber 
-# Contributor: Illarion Kovalchuk 
-
-pkgname=jenkins
-pkgver=2.245
-pkgrel=1
-pkgdesc='Extendable continuous integration server (latest)'
-arch=('any')
-url='https://jenkins.io'
-license=('MIT')
-depends=('java-runtime=8' 'ttf-dejavu')
-provides=('jenkins-ci')
-conflicts=('jenkins-ci')
-replaces=('jenkins-ci')
-backup=('etc/conf.d/jenkins')
-install='jenkins.install'

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

2020-07-26 Thread Felix Yan via arch-commits
Date: Sunday, July 26, 2020 @ 12:56:49
  Author: felixonmars
Revision: 665342

upgpkg: jenkins 2.248-1

Modified:
  jenkins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 12:54:03 UTC (rev 665341)
+++ PKGBUILD2020-07-26 12:56:49 UTC (rev 665342)
@@ -4,7 +4,7 @@
 # Contributor: Illarion Kovalchuk 
 
 pkgname=jenkins
-pkgver=2.245
+pkgver=2.248
 pkgrel=1
 pkgdesc='Extendable continuous integration server (latest)'
 arch=('any')
@@ -24,7 +24,7 @@
 'jenkins.tmpfiles'
 'jenkins.sysusers'
 'LICENSE')
-sha512sums=('9f6d0fc155924b8ae7160b9520c379fa57afd0a77075557e2f921bf25f36995db1c916ebfaf6a76f5049c89cb69a6997ac5795289d1b1d122d75a904089163cb'
+sha512sums=('8c7b563170650d3af22812ae48db1d4549ad9b9be5583b34d0c6ff7bb1bfd0b62efedc58e214b1bc55f13841f92c5eec2d7c78de89c4cdb4bd17b6f275de102c'
 
'7a81b2fd0ce91da42bacf35615fd7cb0352a0316b78b41fe180ba531848ca85b1f1df1573ab5707d9aebb36bacc51c81bc200f80cf41f1d1903309c1478d50f8'
 
'320e3d7bcdb78861e829e97be3ec37b8f1846737032ba70f624dfc5be86569d527279f53654a4a22d78b816ff1b07df429725a1d0a8059d44900d1095d1189ab'
 
'a845a7147be54affc586dfce9a188ec24c92e673e88dec0b62da386d2e597de6ecda103429008562abd897f179a52c37cf2188ebc65b8c636efd07d707e18f90'


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

2020-07-26 Thread Felix Yan via arch-commits
Date: Sunday, July 26, 2020 @ 12:54:03
  Author: felixonmars
Revision: 665341

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-26 12:53:48 UTC (rev 665340)
+++ PKGBUILD2020-07-26 12:54:03 UTC (rev 665341)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: csslayer 
-
-pkgname=fcitx5
-pkgver=0.0.0.20200722
-_commit=6e595ce8f313fadfc604efe769a8195ceff7a531
-_endictver=20121020
-pkgrel=1
-pkgdesc="Next generation of fcitx"
-arch=('x86_64')
-url="https://github.com/fcitx/fcitx5;
-license=('GPL')
-conflicts=('fcitx')
-groups=('fcitx5-im')
-depends=('cairo' 'enchant' 'iso-codes' 'libgl' 'libxkbcommon-x11' 'pango' 
'systemd' 'wayland'
- 'wayland-protocols' 'xcb-imdkit' 'xcb-util-wm' 'libxkbfile' 'fmt' 
'gdk-pixbuf2'
- 'cldr-emoji-annotation')
-makedepends=('extra-cmake-modules')
-source=("https://github.com/fcitx/fcitx5/archive/$_commit/fcitx5-$_commit.tar.gz;
-https://download.fcitx-im.org/data/en_dict-$_endictver.tar.gz)
-sha512sums=('d032f6273d571d4506006c6e283e4366f06fbb99bae0dd2abeb6a84503f996908ec4ba026653b1010d500feb0df1a9b580737447505f935d7e9a4a0b3fc57c70'
-
'8418bd02492bfd786c0fab93be4400ef027ec8e9fac02220cc1f653f5eb67f54573a6a84a15baba19bb34ab892745c87df16499d6304ea75009131e2ab3b97f2')
-
-prepare() {
-  cd $pkgname-$_commit/src/modules/spell/dict
-  ln -s "$srcdir"/en_dict-$_endictver.tar.gz ./
-}
-
-build() {
-  cd $pkgname-$_commit
-
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib .
-  make
-}
-
-check() {
-  cd $pkgname-$_commit
-  make test
-}
-
-package() {
-  cd $pkgname-$_commit
-  make DESTDIR="$pkgdir" install
-}

Copied: fcitx5/repos/community-x86_64/PKGBUILD (from rev 665340, 
fcitx5/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-26 12:54:03 UTC (rev 665341)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: csslayer 
+
+pkgname=fcitx5
+pkgver=0.0.0.20200726
+_commit=80acd93f074234d990f93b1da5114385b10d07ab
+_endictver=20121020
+pkgrel=1
+pkgdesc="Next generation of fcitx"
+arch=('x86_64')
+url="https://github.com/fcitx/fcitx5;
+license=('GPL')
+conflicts=('fcitx')
+groups=('fcitx5-im')
+depends=('cairo' 'enchant' 'iso-codes' 'libgl' 'libxkbcommon-x11' 'pango' 
'systemd' 'wayland'
+ 'wayland-protocols' 'xcb-imdkit' 'xcb-util-wm' 'libxkbfile' 'fmt' 
'gdk-pixbuf2'
+ 'cldr-emoji-annotation')
+makedepends=('extra-cmake-modules')
+source=("https://github.com/fcitx/fcitx5/archive/$_commit/fcitx5-$_commit.tar.gz;
+https://download.fcitx-im.org/data/en_dict-$_endictver.tar.gz)
+sha512sums=('a77689bb246d2da857940d23df3fdf86b69c7b7a1d43685d16fd47982d9b2e592821ed5b6aee7ef727e7c74984f513f25793f39ed75d4a83cd52b80ff57c4ae3'
+
'8418bd02492bfd786c0fab93be4400ef027ec8e9fac02220cc1f653f5eb67f54573a6a84a15baba19bb34ab892745c87df16499d6304ea75009131e2ab3b97f2')
+
+prepare() {
+  cd $pkgname-$_commit/src/modules/spell/dict
+  ln -s "$srcdir"/en_dict-$_endictver.tar.gz ./
+}
+
+build() {
+  cd $pkgname-$_commit
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib .
+  make
+}
+
+check() {
+  cd $pkgname-$_commit
+  make test
+}
+
+package() {
+  cd $pkgname-$_commit
+  make DESTDIR="$pkgdir" install
+}


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

2020-07-26 Thread Felix Yan via arch-commits
Date: Sunday, July 26, 2020 @ 12:53:48
  Author: felixonmars
Revision: 665340

upgpkg: fcitx5 0.0.0.20200726-1

Modified:
  fcitx5/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 12:52:43 UTC (rev 665339)
+++ PKGBUILD2020-07-26 12:53:48 UTC (rev 665340)
@@ -3,8 +3,8 @@
 # Contributor: csslayer 
 
 pkgname=fcitx5
-pkgver=0.0.0.20200722
-_commit=6e595ce8f313fadfc604efe769a8195ceff7a531
+pkgver=0.0.0.20200726
+_commit=80acd93f074234d990f93b1da5114385b10d07ab
 _endictver=20121020
 pkgrel=1
 pkgdesc="Next generation of fcitx"
@@ -19,7 +19,7 @@
 makedepends=('extra-cmake-modules')
 
source=("https://github.com/fcitx/fcitx5/archive/$_commit/fcitx5-$_commit.tar.gz;
 https://download.fcitx-im.org/data/en_dict-$_endictver.tar.gz)
-sha512sums=('d032f6273d571d4506006c6e283e4366f06fbb99bae0dd2abeb6a84503f996908ec4ba026653b1010d500feb0df1a9b580737447505f935d7e9a4a0b3fc57c70'
+sha512sums=('a77689bb246d2da857940d23df3fdf86b69c7b7a1d43685d16fd47982d9b2e592821ed5b6aee7ef727e7c74984f513f25793f39ed75d4a83cd52b80ff57c4ae3'
 
'8418bd02492bfd786c0fab93be4400ef027ec8e9fac02220cc1f653f5eb67f54573a6a84a15baba19bb34ab892745c87df16499d6304ea75009131e2ab3b97f2')
 
 prepare() {


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

2020-07-26 Thread Felix Yan via arch-commits
Date: Sunday, July 26, 2020 @ 12:52:43
  Author: felixonmars
Revision: 665339

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-26 12:52:28 UTC (rev 665338)
+++ PKGBUILD2020-07-26 12:52:43 UTC (rev 665339)
@@ -1,66 +0,0 @@
-# Maintainer: Felix Yan 
-# Maintainer: Bruno Pagani 
-# Contributor: Stéphane Gaudreault 
-# Contributor: Stefan Husmann 
-# Contributor: Angel 'angvp' Velasquez 
-# Contributor: Douglas Soares de Andrade 
-
-pkgname=python-matplotlib
-pkgver=3.3.0
-pkgrel=2
-pkgdesc="A python plotting library, making publication quality plots"
-arch=(x86_64)
-url="https://matplotlib.org;
-license=(custom)
-depends=(freetype2 python-cycler python-dateutil python-kiwisolver 
python-numpy python-pillow python-pyparsing qhull)
-optdepends=('tk: Tk{Agg,Cairo} backends'
-'python-pyqt5: Qt5{Agg,Cairo} backends'
-'python-gobject: for GTK3{Agg,Cairo} backend'
-'python-wxpython: WX{,Agg,Cairo} backend'
-'python-cairo: {GTK3,Qt5,Tk,WX}Cairo backends'
-'python-cairocffi: alternative for Cairo backends'
-'python-tornado: WebAgg backend'
-'ffmpeg: for saving movies'
-'imagemagick: for saving animated gifs'
-'ghostscript: usetex dependencies'
-'texlive-bin: usetex dependencies'
-'texlive-latexextra: usetex usage with pdflatex')
-makedepends=(git rsync python-setuptools
- tk python-pyqt5 python-gobject
- python-wxpython python-cairocffi python-tornado
- ghostscript texlive-bin)
- # agg missing some non-upstreamed patches?
-checkdepends=(python-pytest-xdist python-pytest-runner xorg-server-xvfb
-  texlive-core texlive-latexextra inkscape mencoder
-  ffmpeg imagemagick python-pandas)
-source=("https://github.com/matplotlib/matplotlib/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;
- 
matplotlib-fix-path-of-degenerate-polygons.patch::"https://github.com/matplotlib/matplotlib/commit/07847dd2.patch;)
-sha512sums=('79555a175ef1e63da4f3d2457dc44dd825dbe4b5833696fa9ba57bfc654dc4df286ede4357ee276f19d674be1cb622e8718000a74c1f122cc13641f4d3ad0ada'
-
'b16c4af737a08004ad83f5eb058ffd1470f6cb522114ef8ef74e211887a6c00809b7f475cdb83cceb46aaaff6acfd0c25c8ba1fbcbf2fd536e09efde35e80e2a')
-
-prepare() {
-  cd matplotlib-${pkgver}
-  patch -p1 -i ../matplotlib-fix-path-of-degenerate-polygons.patch # Fix path 
of degenerate polygons
-
-# Use system freetype and qhull
-  sed -e 's|#system_freetype = False|system_freetype = True|' -e 
's|#system_qhull = False|system_qhull = True|' setup.cfg.template > setup.cfg
-}
-
-build() {
-  cd matplotlib-${pkgver}
-  python setup.py build
-}
-
-check() {
-  cd matplotlib-${pkgver}
-  xvfb-run -a -s "+extension GLX +extension RANDR +render -screen 0 
1280x1024x24" \
-python setup.py pytest --addopts="-n auto" || warning "Tests failed" # 
Different font rendering details
-}
-
-package_python-matplotlib() {
-  cd matplotlib-${pkgver}
-  python setup.py install --root "${pkgdir}" --prefix=/usr --optimize=1 
--skip-build
-  install -Dm644 doc/users/license.rst -t 
"${pkgdir}"/usr/share/licenses/${pkgname}/
-  # Needed since https://github.com/matplotlib/matplotlib/pull/14170
-  rm -r 
"${pkgdir}"/usr/lib/python3.8/site-packages/{matplotlib,mpl_toolkits}/tests/
-}

Copied: python-matplotlib/repos/community-x86_64/PKGBUILD (from rev 665338, 
python-matplotlib/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-26 12:52:43 UTC (rev 665339)
@@ -0,0 +1,66 @@
+# Maintainer: Felix Yan 
+# Maintainer: Bruno Pagani 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Stefan Husmann 
+# Contributor: Angel 'angvp' Velasquez 
+# Contributor: Douglas Soares de Andrade 
+
+pkgname=python-matplotlib
+pkgver=3.3.0
+pkgrel=3
+pkgdesc="A python plotting library, making publication quality plots"
+arch=(x86_64)
+url="https://matplotlib.org;
+license=(custom)
+depends=(freetype2 python-cycler python-dateutil python-kiwisolver 
python-numpy python-pillow python-pyparsing qhull)
+optdepends=('tk: Tk{Agg,Cairo} backends'
+'python-pyqt5: Qt5{Agg,Cairo} backends'
+'python-gobject: for GTK3{Agg,Cairo} backend'
+'python-wxpython: WX{,Agg,Cairo} backend'
+'python-cairo: {GTK3,Qt5,Tk,WX}Cairo backends'
+'python-cairocffi: alternative for Cairo backends'
+'python-tornado: WebAgg backend'
+'ffmpeg: for 

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

2020-07-26 Thread Felix Yan via arch-commits
Date: Sunday, July 26, 2020 @ 12:52:28
  Author: felixonmars
Revision: 665338

upgpkg: python-matplotlib 3.3.0-3

Modified:
  python-matplotlib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 12:45:05 UTC (rev 665337)
+++ PKGBUILD2020-07-26 12:52:28 UTC (rev 665338)
@@ -7,7 +7,7 @@
 
 pkgname=python-matplotlib
 pkgver=3.3.0
-pkgrel=2
+pkgrel=3
 pkgdesc="A python plotting library, making publication quality plots"
 arch=(x86_64)
 url="https://matplotlib.org;


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

2020-07-26 Thread Felix Yan via arch-commits
Date: Sunday, July 26, 2020 @ 12:46:05
  Author: felixonmars
Revision: 392553

upgpkg: python-isort 5.0.7-1

Modified:
  python-isort/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 12:40:36 UTC (rev 392552)
+++ PKGBUILD2020-07-26 12:46:05 UTC (rev 392553)
@@ -2,7 +2,7 @@
 # Contributor: Yaron de Leeuw 
 
 pkgname=python-isort
-pkgver=5.0.6
+pkgver=5.0.7
 pkgrel=1
 pkgdesc="A Python utility / library to sort Python imports."
 arch=('any')
@@ -13,7 +13,7 @@
 checkdepends=('pylama' 'python-hypothesis-auto' 'python-pip' 'python-pip-api' 
'python-pipreqs'
   'python-pytest' 'python-requirementslib')
 
source=("https://github.com/timothycrosley/isort/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('a393105ffe98f9a7bf38fd2cf1b70024cfb335d51e97cd410a5c88f6bbe8a279c697ef8370e6a09571d63a1df41bd1f39f66ea20a71b108f6d5efb2edbf6a9b9')
+sha512sums=('ce2b73704cb158caf687d2f65e4eb268c0bce35dd3bd8873bc03e6aad5d1b9edf87b9413a769d4bae773b172a7df6c8a293105f31a893b7f87dd723da6e01f31')
 
 prepare() {
   cd isort-$pkgver


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

2020-07-26 Thread Felix Yan via arch-commits
Date: Sunday, July 26, 2020 @ 12:46:20
  Author: felixonmars
Revision: 392554

archrelease: copy trunk to testing-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-26 12:46:05 UTC (rev 392553)
+++ PKGBUILD2020-07-26 12:46:20 UTC (rev 392554)
@@ -1,40 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Yaron de Leeuw 
-
-pkgname=python-isort
-pkgver=5.0.6
-pkgrel=1
-pkgdesc="A Python utility / library to sort Python imports."
-arch=('any')
-url="https://github.com/timothycrosley/isort;
-license=('MIT')
-depends=('python')
-makedepends=('python-dephell')
-checkdepends=('pylama' 'python-hypothesis-auto' 'python-pip' 'python-pip-api' 
'python-pipreqs'
-  'python-pytest' 'python-requirementslib')
-source=("https://github.com/timothycrosley/isort/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('a393105ffe98f9a7bf38fd2cf1b70024cfb335d51e97cd410a5c88f6bbe8a279c697ef8370e6a09571d63a1df41bd1f39f66ea20a71b108f6d5efb2edbf6a9b9')
-
-prepare() {
-  cd isort-$pkgver
-  # poetry-generated setup.py are fatally broken, see:
-  # https://github.com/sdispater/poetry/issues/866
-  dephell deps convert --from pyproject.toml --to setup.py
-}
-
-build() {
-  cd isort-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd isort-$pkgver
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.8/site-packages" 
PATH="$PWD/tmp_install/usr/bin:$PATH" pytest --deselect 
tests/test_importable.py::test_importable
-}
-
-package() {
-  cd isort-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
-}

Copied: python-isort/repos/testing-any/PKGBUILD (from rev 392553, 
python-isort/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-26 12:46:20 UTC (rev 392554)
@@ -0,0 +1,40 @@
+# Maintainer: Felix Yan 
+# Contributor: Yaron de Leeuw 
+
+pkgname=python-isort
+pkgver=5.0.7
+pkgrel=1
+pkgdesc="A Python utility / library to sort Python imports."
+arch=('any')
+url="https://github.com/timothycrosley/isort;
+license=('MIT')
+depends=('python')
+makedepends=('python-dephell')
+checkdepends=('pylama' 'python-hypothesis-auto' 'python-pip' 'python-pip-api' 
'python-pipreqs'
+  'python-pytest' 'python-requirementslib')
+source=("https://github.com/timothycrosley/isort/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('ce2b73704cb158caf687d2f65e4eb268c0bce35dd3bd8873bc03e6aad5d1b9edf87b9413a769d4bae773b172a7df6c8a293105f31a893b7f87dd723da6e01f31')
+
+prepare() {
+  cd isort-$pkgver
+  # poetry-generated setup.py are fatally broken, see:
+  # https://github.com/sdispater/poetry/issues/866
+  dephell deps convert --from pyproject.toml --to setup.py
+}
+
+build() {
+  cd isort-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd isort-$pkgver
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.8/site-packages" 
PATH="$PWD/tmp_install/usr/bin:$PATH" pytest --deselect 
tests/test_importable.py::test_importable
+}
+
+package() {
+  cd isort-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+}


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

2020-07-26 Thread Felix Yan via arch-commits
Date: Sunday, July 26, 2020 @ 12:45:05
  Author: felixonmars
Revision: 665337

archrelease: copy trunk to community-any

Added:
  systemd-swap/repos/community-any/PKGBUILD
(from rev 665336, systemd-swap/trunk/PKGBUILD)
  systemd-swap/repos/community-any/systemd-swap.install
(from rev 665336, systemd-swap/trunk/systemd-swap.install)
Deleted:
  systemd-swap/repos/community-any/PKGBUILD
  systemd-swap/repos/community-any/systemd-swap.install

--+
 PKGBUILD |   50 -
 systemd-swap.install |   10 -
 2 files changed, 30 insertions(+), 30 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-26 12:44:47 UTC (rev 665336)
+++ PKGBUILD2020-07-26 12:45:05 UTC (rev 665337)
@@ -1,25 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Timofey Titovets 
-
-pkgname=systemd-swap
-pkgver=4.3.2
-pkgrel=1
-pkgdesc="Script for creating hybrid swap space from zram swaps, swap files and 
swap partitions."
-arch=('any')
-url="https://github.com/Nefelim4ag/systemd-swap;
-license=('GPL3')
-depends=('systemd' 'bash')
-backup=('etc/systemd/swap.conf')
-install="$pkgname.install"
-source=("$pkgname-$pkgver.tar.gz::https://github.com/Nefelim4ag/systemd-swap/archive/$pkgver.tar.gz;)
-sha512sums=('8c738dc4ec01dd61ce7adb875e7870158b74593676cea846172d3c1236d1406d19f8789652d73515297d7e0327e5d2883e36b6330a5bd085d11c44bd4937b9d9')
-
-build() {
-  cd systemd-swap-$pkgver
-  make
-}
-
-package() {
-  cd systemd-swap-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: systemd-swap/repos/community-any/PKGBUILD (from rev 665336, 
systemd-swap/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-26 12:45:05 UTC (rev 665337)
@@ -0,0 +1,25 @@
+# Maintainer: Felix Yan 
+# Contributor: Timofey Titovets 
+
+pkgname=systemd-swap
+pkgver=4.3.3
+pkgrel=1
+pkgdesc="Script for creating hybrid swap space from zram swaps, swap files and 
swap partitions."
+arch=('any')
+url="https://github.com/Nefelim4ag/systemd-swap;
+license=('GPL3')
+depends=('systemd' 'bash')
+backup=('etc/systemd/swap.conf')
+install="$pkgname.install"
+source=("$pkgname-$pkgver.tar.gz::https://github.com/Nefelim4ag/systemd-swap/archive/$pkgver.tar.gz;)
+sha512sums=('ccb205dda01b344c54963504f78ce783d7730b5fbc83191c3f819444a34353411a2417586b5a8557429aee24ac00ffa4834324ad427f6452b8c79b31ad38359d')
+
+build() {
+  cd systemd-swap-$pkgver
+  make
+}
+
+package() {
+  cd systemd-swap-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: systemd-swap.install
===
--- systemd-swap.install2020-07-26 12:44:47 UTC (rev 665336)
+++ systemd-swap.install2020-07-26 12:45:05 UTC (rev 665337)
@@ -1,5 +0,0 @@
-post_upgrade() {
-  if [[ $(vercmp "$2" 3) < 0 ]]; then
-echo "Since 3.0, the config file was moved to /etc/systemd/swap.conf, and 
incompatible with the old syntax. Please adjust your settings accordingly."
-  fi
-}

Copied: systemd-swap/repos/community-any/systemd-swap.install (from rev 665336, 
systemd-swap/trunk/systemd-swap.install)
===
--- systemd-swap.install(rev 0)
+++ systemd-swap.install2020-07-26 12:45:05 UTC (rev 665337)
@@ -0,0 +1,5 @@
+post_upgrade() {
+  if [[ $(vercmp "$2" 3) < 0 ]]; then
+echo "Since 3.0, the config file was moved to /etc/systemd/swap.conf, and 
incompatible with the old syntax. Please adjust your settings accordingly."
+  fi
+}


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

2020-07-26 Thread Felix Yan via arch-commits
Date: Sunday, July 26, 2020 @ 12:44:47
  Author: felixonmars
Revision: 665336

upgpkg: systemd-swap 4.3.3-1

Modified:
  systemd-swap/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 12:28:48 UTC (rev 665335)
+++ PKGBUILD2020-07-26 12:44:47 UTC (rev 665336)
@@ -2,7 +2,7 @@
 # Contributor: Timofey Titovets 
 
 pkgname=systemd-swap
-pkgver=4.3.2
+pkgver=4.3.3
 pkgrel=1
 pkgdesc="Script for creating hybrid swap space from zram swaps, swap files and 
swap partitions."
 arch=('any')
@@ -12,7 +12,7 @@
 backup=('etc/systemd/swap.conf')
 install="$pkgname.install"
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/Nefelim4ag/systemd-swap/archive/$pkgver.tar.gz;)
-sha512sums=('8c738dc4ec01dd61ce7adb875e7870158b74593676cea846172d3c1236d1406d19f8789652d73515297d7e0327e5d2883e36b6330a5bd085d11c44bd4937b9d9')
+sha512sums=('ccb205dda01b344c54963504f78ce783d7730b5fbc83191c3f819444a34353411a2417586b5a8557429aee24ac00ffa4834324ad427f6452b8c79b31ad38359d')
 
 build() {
   cd systemd-swap-$pkgver


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

2020-07-26 Thread Evangelos Foutras via arch-commits
Date: Sunday, July 26, 2020 @ 12:40:36
  Author: foutrelis
Revision: 392552

archrelease: copy trunk to extra-x86_64

Added:
  xfwm4/repos/extra-x86_64/PKGBUILD
(from rev 392551, xfwm4/trunk/PKGBUILD)
Deleted:
  xfwm4/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-26 12:40:32 UTC (rev 392551)
+++ PKGBUILD2020-07-26 12:40:36 UTC (rev 392552)
@@ -1,40 +0,0 @@
-# Maintainer: Evangelos Foutras 
-# Contributor: tobias 
-
-pkgname=xfwm4
-pkgver=4.14.2
-pkgrel=1
-pkgdesc="Xfce's window manager"
-arch=('x86_64')
-url="https://www.xfce.org/;
-license=('GPL2')
-groups=('xfce4')
-depends=('libxfce4ui' 'xfconf' 'libwnck3' 'libepoxy' 'libxpresent'
- 'hicolor-icon-theme')
-makedepends=('intltool')
-source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('b15b40342596a3b6ab5167a58371262adf5484e165cb25a31fef42f0aa8ffd92')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib \
---localstatedir=/var \
---disable-static \
---enable-startup-notification \
---enable-randr \
---enable-compositor \
---enable-xsync \
---disable-debug
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xfwm4/repos/extra-x86_64/PKGBUILD (from rev 392551, 
xfwm4/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-26 12:40:36 UTC (rev 392552)
@@ -0,0 +1,40 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: tobias 
+
+pkgname=xfwm4
+pkgver=4.14.3
+pkgrel=1
+pkgdesc="Xfce's window manager"
+arch=('x86_64')
+url="https://www.xfce.org/;
+license=('GPL2')
+groups=('xfce4')
+depends=('libxfce4ui' 'xfconf' 'libwnck3' 'libepoxy' 'libxpresent'
+ 'hicolor-icon-theme')
+makedepends=('intltool')
+source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('829bec5a9e35a9f11c54a546c0112f5ad36e0f747be1156856d4abcce37283bf')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib \
+--localstatedir=/var \
+--disable-static \
+--enable-startup-notification \
+--enable-randr \
+--enable-compositor \
+--enable-xsync \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-07-26 Thread Evangelos Foutras via arch-commits
Date: Sunday, July 26, 2020 @ 12:40:32
  Author: foutrelis
Revision: 392551

upgpkg: xfwm4 4.14.3-1: new upstream release

Modified:
  xfwm4/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 09:33:16 UTC (rev 392550)
+++ PKGBUILD2020-07-26 12:40:32 UTC (rev 392551)
@@ -2,7 +2,7 @@
 # Contributor: tobias 
 
 pkgname=xfwm4
-pkgver=4.14.2
+pkgver=4.14.3
 pkgrel=1
 pkgdesc="Xfce's window manager"
 arch=('x86_64')
@@ -13,7 +13,7 @@
  'hicolor-icon-theme')
 makedepends=('intltool')
 
source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('b15b40342596a3b6ab5167a58371262adf5484e165cb25a31fef42f0aa8ffd92')
+sha256sums=('829bec5a9e35a9f11c54a546c0112f5ad36e0f747be1156856d4abcce37283bf')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"


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

2020-07-26 Thread Chih-Hsuan Yen via arch-commits
Date: Sunday, July 26, 2020 @ 12:28:48
  Author: yan12125
Revision: 665335

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-26 12:28:32 UTC (rev 665334)
+++ PKGBUILD2020-07-26 12:28:48 UTC (rev 665335)
@@ -1,48 +0,0 @@
-# Maintainer: Chih-Hsuan Yen 
-# Contributor: quomoow 
-
-pkgname=python-pg8000
-pkgver=1.16.1
-pkgrel=1
-pkgdesc="Pure-Python PostgreSQL database driver, DB-API compatible"
-arch=(any)
-url='https://github.com/tlocke/pg8000'
-license=(BSD)
-makedepends=(python-setuptools)
-checkdepends=(python-pytest python-pytest-mock python-pytz pifpaf postgresql)
-depends=(python python-scramp)
-source=("https://github.com/tlocke/pg8000/archive/$pkgver/pg8000-$pkgver.tar.gz;)
-sha256sums=('8af9ba3e1edf249b50b13f9f654aa6d39dd66c959fbbf041a4b66cefeb05c7d9')
-
-prepare() {
-  cd pg8000-$pkgver
-
-  # Remove upper bounds of dependencies
-  sed --in-place=.orig -r 's#,?<[0-9.]+,?##;s#==([0-9.]+)#>=\1#' setup.py
-  diff -u setup.py{.orig,} || true
-}
-
-build() {
-  cd pg8000-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd pg8000-$pkgver
-  # See upstream .travis.yml for initialization SQL commands
-  # XXX: The postgres plugin in pifpaf does not listen on a TCP port
-  #  without --host
-  # XXX: testGss and testSsl needs custom pg_hba.conf and postgresql.conf,
-  #  and pifpaf does not support that yet
-  PYTHONPATH="$PWD" pifpaf run postgresql --host localhost -- bash -c "
-psql -c \"CREATE ROLE postgres WITH LOGIN SUPERUSER PASSWORD 'pw';\"
-psql -c \"create extension hstore;\"
-pytest -v test -k 'not testGss and not testSsl'
-  "
-}
-
-package() {
-  cd pg8000-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname
-}

Copied: python-pg8000/repos/community-any/PKGBUILD (from rev 665334, 
python-pg8000/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-26 12:28:48 UTC (rev 665335)
@@ -0,0 +1,49 @@
+# Maintainer: Chih-Hsuan Yen 
+# Contributor: quomoow 
+
+pkgname=python-pg8000
+pkgver=1.16.3
+pkgrel=1
+pkgdesc="Pure-Python PostgreSQL database driver, DB-API compatible"
+arch=(any)
+url='https://github.com/tlocke/pg8000'
+license=(BSD)
+makedepends=(python-setuptools)
+checkdepends=(python-pytest python-pytest-mock python-pytest-benchmark
+  python-pytz pifpaf postgresql)
+depends=(python python-scramp)
+source=("https://files.pythonhosted.org/packages/source/p/pg8000/pg8000-$pkgver.tar.gz;)
+sha256sums=('91b1584f25c84c2d0fe408bd44466cc16e1db9b9e95f454ff7c334edf3fe650c')
+
+prepare() {
+  cd pg8000-$pkgver
+
+  # Remove upper bounds of dependencies
+  sed --in-place=.orig -r 's#,?<[0-9.]+,?##;s#==([0-9.]+)#>=\1#' setup.py
+  diff -u setup.py{.orig,} || true
+}
+
+build() {
+  cd pg8000-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd pg8000-$pkgver
+  # See upstream .travis.yml for initialization SQL commands
+  # XXX: The postgres plugin in pifpaf does not listen on a TCP port
+  #  without --host
+  # XXX: testGss and testSsl needs custom pg_hba.conf and postgresql.conf,
+  #  and pifpaf does not support that yet
+  PYTHONPATH="$PWD" pifpaf run postgresql --host localhost -- bash -c "
+psql -c \"CREATE ROLE postgres WITH LOGIN SUPERUSER PASSWORD 'pw';\"
+psql -c \"create extension hstore;\"
+pytest -v test -k 'not testGss and not testSsl'
+  "
+}
+
+package() {
+  cd pg8000-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname
+}


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

2020-07-26 Thread Chih-Hsuan Yen via arch-commits
Date: Sunday, July 26, 2020 @ 12:28:32
  Author: yan12125
Revision: 665334

upgpkg: python-pg8000 1.16.3-1; switch to PyPI tarball

Upstream fixes the PyPI tarball [1]

[1] https://github.com/tlocke/pg8000/issues/47

Modified:
  python-pg8000/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 11:46:10 UTC (rev 665333)
+++ PKGBUILD2020-07-26 12:28:32 UTC (rev 665334)
@@ -2,7 +2,7 @@
 # Contributor: quomoow 
 
 pkgname=python-pg8000
-pkgver=1.16.1
+pkgver=1.16.3
 pkgrel=1
 pkgdesc="Pure-Python PostgreSQL database driver, DB-API compatible"
 arch=(any)
@@ -9,10 +9,11 @@
 url='https://github.com/tlocke/pg8000'
 license=(BSD)
 makedepends=(python-setuptools)
-checkdepends=(python-pytest python-pytest-mock python-pytz pifpaf postgresql)
+checkdepends=(python-pytest python-pytest-mock python-pytest-benchmark
+  python-pytz pifpaf postgresql)
 depends=(python python-scramp)
-source=("https://github.com/tlocke/pg8000/archive/$pkgver/pg8000-$pkgver.tar.gz;)
-sha256sums=('8af9ba3e1edf249b50b13f9f654aa6d39dd66c959fbbf041a4b66cefeb05c7d9')
+source=("https://files.pythonhosted.org/packages/source/p/pg8000/pg8000-$pkgver.tar.gz;)
+sha256sums=('91b1584f25c84c2d0fe408bd44466cc16e1db9b9e95f454ff7c334edf3fe650c')
 
 prepare() {
   cd pg8000-$pkgver


[arch-commits] Commit in lua-cqueues/repos/community-staging-x86_64 (2 files)

2020-07-26 Thread Daurnimator via arch-commits
Date: Sunday, July 26, 2020 @ 11:46:10
  Author: daurnimator
Revision: 665333

archrelease: copy trunk to community-staging-x86_64

Added:
  lua-cqueues/repos/community-staging-x86_64/PKGBUILD
(from rev 665332, lua-cqueues/trunk/PKGBUILD)
Deleted:
  lua-cqueues/repos/community-staging-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-26 11:45:42 UTC (rev 665332)
+++ PKGBUILD2020-07-26 11:46:10 UTC (rev 665333)
@@ -1,58 +0,0 @@
-# Maintainer: Daurnimator 
-
-pkgname=('lua-cqueues' 'lua51-cqueues' 'lua52-cqueues' 'lua53-cqueues')
-pkgver=20200603
-pkgrel=2
-arch=('x86_64')
-url='http://25thandclement.com/~william/projects/cqueues.html'
-license=('MIT')
-makedepends=('lua' 'lua51' 'lua52' 'lua53')
-depends=('openssl')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/wahern/cqueues/archive/rel-$pkgver.tar.gz;
-   
"lua54.patch::https://src.fedoraproject.org/rpms/lua-cqueues/raw/5d7117c6ac061cc185f45af448845b0943577b58/f/lua-cqueues-20200603-lua-5.4.patch;)
-md5sums=('1c93648a274e780542b617d4729d4427'
- '4eba795b85b147b2ea3fedac94bf5567')
-
-prepare() {
-   # https://github.com/wahern/cqueues/issues/239
-   # 
https://src.fedoraproject.org/rpms/lua-cqueues/c/5d7117c6ac061cc185f45af448845b0943577b58?branch=master
-   cd "cqueues-rel-$pkgver"
-   patch -p1 < ../lua54.patch
-}
-
-build() {
-   cd "cqueues-rel-$pkgver"
-   make prefix=/usr
-}
-
-package_lua-cqueues() {
-   pkgdesc='Continuation Queues: Embeddable asynchronous networking, 
threading, and notification framework for Lua 5.3'
-
-   cd "cqueues-rel-$pkgver"
-   make DESTDIR="$pkgdir" prefix=/usr install5.4
-   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_lua51-cqueues() {
-   pkgdesc='Continuation Queues: Embeddable asynchronous networking, 
threading, and notification framework for Lua 5.1'
-
-   cd "cqueues-rel-$pkgver"
-   make DESTDIR="$pkgdir" prefix=/usr install5.1
-   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_lua52-cqueues() {
-   pkgdesc='Continuation Queues: Embeddable asynchronous networking, 
threading, and notification framework for Lua 5.2'
-
-   cd "cqueues-rel-$pkgver"
-   make DESTDIR="$pkgdir" prefix=/usr install5.2
-   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_lua53-cqueues() {
-   pkgdesc='Continuation Queues: Embeddable asynchronous networking, 
threading, and notification framework for Lua 5.3'
-
-   cd "cqueues-rel-$pkgver"
-   make DESTDIR="$pkgdir" prefix=/usr install5.3
-   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: lua-cqueues/repos/community-staging-x86_64/PKGBUILD (from rev 665332, 
lua-cqueues/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-26 11:46:10 UTC (rev 665333)
@@ -0,0 +1,49 @@
+# Maintainer: Daurnimator 
+
+pkgname=('lua-cqueues' 'lua51-cqueues' 'lua52-cqueues' 'lua53-cqueues')
+pkgver=20200726
+pkgrel=1
+arch=('x86_64')
+url='http://25thandclement.com/~william/projects/cqueues.html'
+license=('MIT')
+makedepends=('lua' 'lua51' 'lua52' 'lua53')
+depends=('openssl')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/wahern/cqueues/archive/rel-$pkgver.tar.gz;)
+md5sums=('fb21e8404cea86191e9658669eb44118')
+
+build() {
+   cd "cqueues-rel-$pkgver"
+   make prefix=/usr
+}
+
+package_lua-cqueues() {
+   pkgdesc='Continuation Queues: Embeddable asynchronous networking, 
threading, and notification framework for Lua 5.3'
+
+   cd "cqueues-rel-$pkgver"
+   make DESTDIR="$pkgdir" prefix=/usr install5.4
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua51-cqueues() {
+   pkgdesc='Continuation Queues: Embeddable asynchronous networking, 
threading, and notification framework for Lua 5.1'
+
+   cd "cqueues-rel-$pkgver"
+   make DESTDIR="$pkgdir" prefix=/usr install5.1
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua52-cqueues() {
+   pkgdesc='Continuation Queues: Embeddable asynchronous networking, 
threading, and notification framework for Lua 5.2'
+
+   cd "cqueues-rel-$pkgver"
+   make DESTDIR="$pkgdir" prefix=/usr install5.2
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua53-cqueues() {
+ 

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

2020-07-26 Thread Daurnimator via arch-commits
Date: Sunday, July 26, 2020 @ 11:45:42
  Author: daurnimator
Revision: 665332

upgpkg: lua-cqueues 20200726-1

Modified:
  lua-cqueues/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 10:51:09 UTC (rev 665331)
+++ PKGBUILD2020-07-26 11:45:42 UTC (rev 665332)
@@ -1,25 +1,16 @@
 # Maintainer: Daurnimator 
 
 pkgname=('lua-cqueues' 'lua51-cqueues' 'lua52-cqueues' 'lua53-cqueues')
-pkgver=20200603
-pkgrel=2
+pkgver=20200726
+pkgrel=1
 arch=('x86_64')
 url='http://25thandclement.com/~william/projects/cqueues.html'
 license=('MIT')
 makedepends=('lua' 'lua51' 'lua52' 'lua53')
 depends=('openssl')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/wahern/cqueues/archive/rel-$pkgver.tar.gz;
-   
"lua54.patch::https://src.fedoraproject.org/rpms/lua-cqueues/raw/5d7117c6ac061cc185f45af448845b0943577b58/f/lua-cqueues-20200603-lua-5.4.patch;)
-md5sums=('1c93648a274e780542b617d4729d4427'
- '4eba795b85b147b2ea3fedac94bf5567')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/wahern/cqueues/archive/rel-$pkgver.tar.gz;)
+md5sums=('fb21e8404cea86191e9658669eb44118')
 
-prepare() {
-   # https://github.com/wahern/cqueues/issues/239
-   # 
https://src.fedoraproject.org/rpms/lua-cqueues/c/5d7117c6ac061cc185f45af448845b0943577b58?branch=master
-   cd "cqueues-rel-$pkgver"
-   patch -p1 < ../lua54.patch
-}
-
 build() {
cd "cqueues-rel-$pkgver"
make prefix=/usr


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

2020-07-26 Thread Christian Hesse via arch-commits
Date: Sunday, July 26, 2020 @ 10:51:09
  Author: eworm
Revision: 665331

update project url

Modified:
  minicom/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 10:09:05 UTC (rev 665330)
+++ PKGBUILD2020-07-26 10:51:09 UTC (rev 665331)
@@ -7,9 +7,9 @@
 pkgname=minicom
 pkgver=2.7.1
 pkgrel=4
-pkgdesc="A serial communication program"
+pkgdesc='A serial communication program'
 arch=('x86_64')
-url="http://alioth.debian.org/projects/minicom/;
+url='https://salsa.debian.org/minicom-team/minicom'
 license=('GPL')
 depends=('bash')
 optdepends=('lrzsz: for xmodem, ymodem and zmodem file transfer protocols')


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

2020-07-26 Thread Felix Yan via arch-commits
Date: Sunday, July 26, 2020 @ 10:09:05
  Author: felixonmars
Revision: 665330

archrelease: copy trunk to community-x86_64

Added:
  deepin-terminal/repos/community-x86_64/PKGBUILD
(from rev 665329, deepin-terminal/trunk/PKGBUILD)
  deepin-terminal/repos/community-x86_64/remove-vendor.patch
(from rev 665329, deepin-terminal/trunk/remove-vendor.patch)
Deleted:
  deepin-terminal/repos/community-x86_64/PKGBUILD
  deepin-terminal/repos/community-x86_64/remove-vendor.patch

-+
 PKGBUILD|   92 ++---
 remove-vendor.patch |  158 +-
 2 files changed, 125 insertions(+), 125 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-26 10:08:47 UTC (rev 665329)
+++ PKGBUILD2020-07-26 10:09:05 UTC (rev 665330)
@@ -1,46 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-terminal
-pkgver=5.2.13
-pkgrel=1
-pkgdesc='Default terminal emulation application for Deepin'
-arch=('x86_64')
-url="https://github.com/linuxdeepin/deepin-terminal;
-license=('GPL3')
-depends=('at-spi2-core' 'deepin-qt5integration')
-makedepends=('chrpath' 'cmake' 'expac' 'lxqt-build-tools' 'ninja' 'qt5-tools')
-optdepends=('zssh: for remote management support')
-groups=('deepin-extra')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-terminal/archive/$pkgver.tar.gz;)
-sha512sums=('a58cba7f4d1c3f836678f0702340022e9afed12cb3faf10c1933f0c80f1a29794005c4e35a021d8882e4adf70b65350c4290d9e85c8a7354d4802df68b7b')
-
-prepare() {
-  mkdir -p build
-  cd deepin-terminal-$pkgver
-  # Devendor qtermwidget - disabled due to the vendored copy has changes
-  #rm -r terminalwidget
-  #sed -i '/terminalwidget/d;/build_qtermwidget/d' deepin-terminal.pro
-  #sed -i 's|terminalwidget/lib/qtermwidget.h|qtermwidget5/qtermwidget.h|' 
encodeplugin/encodelistmodel.cpp views/termwidget.h theme/themelistmodel.cpp
-
-  # Much upstream weirdness
-  sed -i '//i#include \n#include ' 
3rdparty/terminalwidget/lib/SessionManager.h
-  #sed -i 's/QString("/QString::fromLatin1("/;s/message = "Session 
crashed.";/message = QString::fromLatin1("Session crashed.");/' 
3rdparty/terminalwidget/lib/{Filter,Session}.cpp
-  sed -i '/LXQtCompilerSettings/a remove_definitions(-DQT_NO_CAST_FROM_ASCII 
-DQT_NO_CAST_TO_ASCII)' 3rdparty/terminalwidget/CMakeLists.txt
-  sed -i 's|default-config.json|src/assets/other/default-config.json|' 
CMakeLists.txt
-}
-
-build(){
-  cd build
-  cmake -GNinja -DDTKCORE_TOOL_DIR=/usr/lib/libdtk-$(expac %v dtkcore | cut -d 
- -f 1 | cut -d : -f 2)/DCore/bin ../deepin-terminal-$pkgver
-  ninja
-}
-
-package() {
-  cd build
-  DESTDIR="$pkgdir" ninja install
-
-  rm -r "$pkgdir"/build
-  chrpath --delete "$pkgdir"/usr/bin/deepin-terminal
-}

Copied: deepin-terminal/repos/community-x86_64/PKGBUILD (from rev 665329, 
deepin-terminal/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-26 10:09:05 UTC (rev 665330)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-terminal
+pkgver=5.2.14
+pkgrel=1
+pkgdesc='Default terminal emulation application for Deepin'
+arch=('x86_64')
+url="https://github.com/linuxdeepin/deepin-terminal;
+license=('GPL3')
+depends=('at-spi2-core' 'deepin-qt5integration')
+makedepends=('chrpath' 'cmake' 'expac' 'lxqt-build-tools' 'ninja' 'qt5-tools')
+optdepends=('zssh: for remote management support')
+groups=('deepin-extra')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-terminal/archive/$pkgver.tar.gz;)
+sha512sums=('6f5599bd3e28be1f65835ea97cd6f49991c6dfcd80260d76dd54c70ff62ffa4dc37a7b0d7e38557cf47cdd09cd75f6c34aa817b94dad61ccdcf33b2000ba0beb')
+
+prepare() {
+  mkdir -p build
+  cd deepin-terminal-$pkgver
+  # Devendor qtermwidget - disabled due to the vendored copy has changes
+  #rm -r terminalwidget
+  #sed -i '/terminalwidget/d;/build_qtermwidget/d' deepin-terminal.pro
+  #sed -i 's|terminalwidget/lib/qtermwidget.h|qtermwidget5/qtermwidget.h|' 
encodeplugin/encodelistmodel.cpp views/termwidget.h theme/themelistmodel.cpp
+
+  # Much upstream weirdness
+  sed -i '//i#include \n#include ' 
3rdparty/terminalwidget/lib/SessionManager.h
+  #sed -i 's/QString("/QString::fromLatin1("/;s/message = "Session 
crashed.";/message = QString::fromLatin1("Session crashed.");/' 
3rdparty/terminalwidget/lib/{Filter,Session}.cpp
+  sed -i '/LXQtCompilerSettings/a remove_definitions(-DQT_NO_CAST_FROM_ASCII 
-DQT_NO_CAST_TO_ASCII)' 3rdparty/terminalwidget/CMakeLists.txt
+  sed -i 's|default-config.json|src/assets/other/default-config.json|' 
CMakeLists.txt
+}
+
+build(){
+  cd build
+  cmake -GNinja -DDTKCORE_TOOL_DIR=/usr/lib/libdtk-$(expac %v dtkcore | cut -d 
- -f 1 | cut -d : -f 2)/DCore/bin 

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

2020-07-26 Thread Felix Yan via arch-commits
Date: Sunday, July 26, 2020 @ 10:08:47
  Author: felixonmars
Revision: 665329

upgpkg: deepin-terminal 5.2.14-1

Modified:
  deepin-terminal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 10:03:04 UTC (rev 665328)
+++ PKGBUILD2020-07-26 10:08:47 UTC (rev 665329)
@@ -3,7 +3,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-terminal
-pkgver=5.2.13
+pkgver=5.2.14
 pkgrel=1
 pkgdesc='Default terminal emulation application for Deepin'
 arch=('x86_64')
@@ -14,7 +14,7 @@
 optdepends=('zssh: for remote management support')
 groups=('deepin-extra')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-terminal/archive/$pkgver.tar.gz;)
-sha512sums=('a58cba7f4d1c3f836678f0702340022e9afed12cb3faf10c1933f0c80f1a29794005c4e35a021d8882e4adf70b65350c4290d9e85c8a7354d4802df68b7b')
+sha512sums=('6f5599bd3e28be1f65835ea97cd6f49991c6dfcd80260d76dd54c70ff62ffa4dc37a7b0d7e38557cf47cdd09cd75f6c34aa817b94dad61ccdcf33b2000ba0beb')
 
 prepare() {
   mkdir -p build


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

2020-07-26 Thread Felix Yan via arch-commits
Date: Sunday, July 26, 2020 @ 10:02:49
  Author: felixonmars
Revision: 665327

upgpkg: deepin-launcher 5.2.0.15-1

Modified:
  deepin-launcher/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 09:59:09 UTC (rev 665326)
+++ PKGBUILD2020-07-26 10:02:49 UTC (rev 665327)
@@ -3,7 +3,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-launcher
-pkgver=5.2.0.14
+pkgver=5.2.0.15
 pkgrel=1
 pkgdesc='Deepin desktop-environment - Launcher module'
 arch=('x86_64')
@@ -16,7 +16,7 @@
 replaces=('dde-launcher')
 groups=('deepin')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-launcher/archive/$pkgver.tar.gz;)
-sha512sums=('d13cfd672d6a0ca1b3f35040936d9b84e8b778100dce309b9525d48131a1696c04f7eacabd7357941aca1030c143d048a6c990f3ef62866bd3aa51cef9bbec47')
+sha512sums=('bd88b3e8d95ee8a72d2aacbce75e02b98adad45b6c626d5fa577f585275d1a69a3e0bf8e675e32399aad431600cf7e14ee8aa49515d7dd2c576c9f3e1edf36fb')
 
 prepare() {
   cd dde-launcher-$pkgver


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

2020-07-26 Thread Felix Yan via arch-commits
Date: Sunday, July 26, 2020 @ 10:03:04
  Author: felixonmars
Revision: 665328

archrelease: copy trunk to community-x86_64

Added:
  deepin-launcher/repos/community-x86_64/PKGBUILD
(from rev 665327, deepin-launcher/trunk/PKGBUILD)
Deleted:
  deepin-launcher/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-26 10:02:49 UTC (rev 665327)
+++ PKGBUILD2020-07-26 10:03:04 UTC (rev 665328)
@@ -1,37 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-launcher
-pkgver=5.2.0.14
-pkgrel=1
-pkgdesc='Deepin desktop-environment - Launcher module'
-arch=('x86_64')
-url="https://github.com/linuxdeepin/dde-launcher;
-license=('GPL3')
-depends=('gsettings-qt' 'qt5-svg' 'qt5-x11extras' 'startdde' 
'deepin-qt5integration' 'deepin-menu'
- 'deepin-daemon' 'deepin-qt-dbus-factory' 'xdg-user-dirs')
-makedepends=('cmake' 'ninja' 'qt5-tools')
-conflicts=('dde-launcher')
-replaces=('dde-launcher')
-groups=('deepin')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-launcher/archive/$pkgver.tar.gz;)
-sha512sums=('d13cfd672d6a0ca1b3f35040936d9b84e8b778100dce309b9525d48131a1696c04f7eacabd7357941aca1030c143d048a6c990f3ef62866bd3aa51cef9bbec47')
-
-prepare() {
-  cd dde-launcher-$pkgver
-  sed -i 
's|/usr/share/backgrounds/default_background.jpg|/usr/share/backgrounds/deepin/desktop.jpg|'
 src/boxframe/*.cpp
-
-  sed -i '/include /a #include ' 
src/widgets/miniframenavigation.cpp src/widgets/avatar.cpp 
src/widgets/miniframebutton.cpp
-}
-
-build() {
-  cd dde-launcher-$pkgver
-  cmake . -GNinja -DCMAKE_INSTALL_PREFIX=/usr -DWITHOUT_UNINSTALL_APP=
-  ninja
-}
-
-package() {
-  cd dde-launcher-$pkgver
-  DESTDIR="$pkgdir" ninja install
-}

Copied: deepin-launcher/repos/community-x86_64/PKGBUILD (from rev 665327, 
deepin-launcher/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-26 10:03:04 UTC (rev 665328)
@@ -0,0 +1,37 @@
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-launcher
+pkgver=5.2.0.15
+pkgrel=1
+pkgdesc='Deepin desktop-environment - Launcher module'
+arch=('x86_64')
+url="https://github.com/linuxdeepin/dde-launcher;
+license=('GPL3')
+depends=('gsettings-qt' 'qt5-svg' 'qt5-x11extras' 'startdde' 
'deepin-qt5integration' 'deepin-menu'
+ 'deepin-daemon' 'deepin-qt-dbus-factory' 'xdg-user-dirs')
+makedepends=('cmake' 'ninja' 'qt5-tools')
+conflicts=('dde-launcher')
+replaces=('dde-launcher')
+groups=('deepin')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-launcher/archive/$pkgver.tar.gz;)
+sha512sums=('bd88b3e8d95ee8a72d2aacbce75e02b98adad45b6c626d5fa577f585275d1a69a3e0bf8e675e32399aad431600cf7e14ee8aa49515d7dd2c576c9f3e1edf36fb')
+
+prepare() {
+  cd dde-launcher-$pkgver
+  sed -i 
's|/usr/share/backgrounds/default_background.jpg|/usr/share/backgrounds/deepin/desktop.jpg|'
 src/boxframe/*.cpp
+
+  sed -i '/include /a #include ' 
src/widgets/miniframenavigation.cpp src/widgets/avatar.cpp 
src/widgets/miniframebutton.cpp
+}
+
+build() {
+  cd dde-launcher-$pkgver
+  cmake . -GNinja -DCMAKE_INSTALL_PREFIX=/usr -DWITHOUT_UNINSTALL_APP=
+  ninja
+}
+
+package() {
+  cd dde-launcher-$pkgver
+  DESTDIR="$pkgdir" ninja install
+}


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

2020-07-26 Thread Felix Yan via arch-commits
Date: Sunday, July 26, 2020 @ 09:58:54
  Author: felixonmars
Revision: 665325

upgpkg: v2ray-domain-list-community 20200725163800-1

Modified:
  v2ray-domain-list-community/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 09:09:35 UTC (rev 665324)
+++ PKGBUILD2020-07-26 09:58:54 UTC (rev 665325)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=v2ray-domain-list-community
-pkgver=20200724164201
+pkgver=20200725163800
 pkgrel=1
 pkgdesc="A list of domains to be used as geosites for routing purpose in 
Project V"
 arch=('any')
@@ -9,7 +9,7 @@
 license=('MIT')
 makedepends=('go' 'git')
 
source=("https://github.com/v2fly/domain-list-community/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('28e8edf1cf91f1eb705a3bd63416d55b860a2cd6c8e3da101dab8b8127e32e94aa7bc1d53daf24f9c564ca62a989b0d6d95c09308aefb5660023313783d678f5')
+sha512sums=('beb368eca8766aee28bc66533131f6f58eb3ab3bf10458e40bd15f9a8a5ed4e1f29886deb4a28e44b3f054893950179ac61864dd64fd6b4d93edc4d133a427e5')
 
 prepare() {
   mkdir .gopath


[arch-commits] Commit in v2ray-domain-list-community/repos/community-any (2 files)

2020-07-26 Thread Felix Yan via arch-commits
Date: Sunday, July 26, 2020 @ 09:59:09
  Author: felixonmars
Revision: 665326

archrelease: copy trunk to community-any

Added:
  v2ray-domain-list-community/repos/community-any/PKGBUILD
(from rev 665325, v2ray-domain-list-community/trunk/PKGBUILD)
Deleted:
  v2ray-domain-list-community/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-26 09:58:54 UTC (rev 665325)
+++ PKGBUILD2020-07-26 09:59:09 UTC (rev 665326)
@@ -1,34 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=v2ray-domain-list-community
-pkgver=20200724164201
-pkgrel=1
-pkgdesc="A list of domains to be used as geosites for routing purpose in 
Project V"
-arch=('any')
-url="https://github.com/v2fly/domain-list-community;
-license=('MIT')
-makedepends=('go' 'git')
-source=("https://github.com/v2fly/domain-list-community/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('28e8edf1cf91f1eb705a3bd63416d55b860a2cd6c8e3da101dab8b8127e32e94aa7bc1d53daf24f9c564ca62a989b0d6d95c09308aefb5660023313783d678f5')
-
-prepare() {
-  mkdir .gopath
-  export GOPATH="$srcdir/.gopath"
-
-  mkdir -p .gopath/src/github.com/v2fly
-  ln -s "$PWD/domain-list-community-$pkgver" 
.gopath/src/github.com/v2fly/domain-list-community
-
-  go get github.com/golang/protobuf/proto
-  go get -insecure v2ray.com/core/app/router
-}
-
-build() {
-  cd .gopath
-  go run ./src/github.com/v2fly/domain-list-community/main.go
-}
-
-package() {
-  cd .gopath
-  install -Dm755 dlc.dat "$pkgdir"/usr/lib/v2ray/geosite.dat
-  install -Dm644 "$srcdir"/domain-list-community-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: v2ray-domain-list-community/repos/community-any/PKGBUILD (from rev 
665325, v2ray-domain-list-community/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-26 09:59:09 UTC (rev 665326)
@@ -0,0 +1,34 @@
+# Maintainer: Felix Yan 
+
+pkgname=v2ray-domain-list-community
+pkgver=20200725163800
+pkgrel=1
+pkgdesc="A list of domains to be used as geosites for routing purpose in 
Project V"
+arch=('any')
+url="https://github.com/v2fly/domain-list-community;
+license=('MIT')
+makedepends=('go' 'git')
+source=("https://github.com/v2fly/domain-list-community/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('beb368eca8766aee28bc66533131f6f58eb3ab3bf10458e40bd15f9a8a5ed4e1f29886deb4a28e44b3f054893950179ac61864dd64fd6b4d93edc4d133a427e5')
+
+prepare() {
+  mkdir .gopath
+  export GOPATH="$srcdir/.gopath"
+
+  mkdir -p .gopath/src/github.com/v2fly
+  ln -s "$PWD/domain-list-community-$pkgver" 
.gopath/src/github.com/v2fly/domain-list-community
+
+  go get github.com/golang/protobuf/proto
+  go get -insecure v2ray.com/core/app/router
+}
+
+build() {
+  cd .gopath
+  go run ./src/github.com/v2fly/domain-list-community/main.go
+}
+
+package() {
+  cd .gopath
+  install -Dm755 dlc.dat "$pkgdir"/usr/lib/v2ray/geosite.dat
+  install -Dm644 "$srcdir"/domain-list-community-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in transmission/repos/extra-x86_64 (6 files)

2020-07-26 Thread Florian Pritz via arch-commits
Date: Sunday, July 26, 2020 @ 09:33:16
  Author: bluewind
Revision: 392550

archrelease: copy trunk to extra-x86_64

Added:
  transmission/repos/extra-x86_64/PKGBUILD
(from rev 392549, transmission/trunk/PKGBUILD)
  transmission/repos/extra-x86_64/transmission-cli.sysusers
(from rev 392549, transmission/trunk/transmission-cli.sysusers)
  transmission/repos/extra-x86_64/transmission-cli.tmpfiles
(from rev 392549, transmission/trunk/transmission-cli.tmpfiles)
Deleted:
  transmission/repos/extra-x86_64/PKGBUILD
  transmission/repos/extra-x86_64/transmission-cli.sysusers
  transmission/repos/extra-x86_64/transmission-cli.tmpfiles

---+
 PKGBUILD  |  178 ++--
 transmission-cli.sysusers |2 
 transmission-cli.tmpfiles |2 
 3 files changed, 91 insertions(+), 91 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-26 09:33:13 UTC (rev 392549)
+++ PKGBUILD2020-07-26 09:33:16 UTC (rev 392550)
@@ -1,89 +0,0 @@
-# Maintainer : Tom Gundersen 
-# Maintainer : Ionut Biru 
-
-pkgbase=transmission
-pkgname=(transmission-cli transmission-gtk transmission-qt)
-pkgver=3.00
-pkgrel=1
-arch=(x86_64)
-url="http://www.transmissionbt.com/;
-license=(MIT)
-makedepends=(gtk3 intltool curl qt5-base libevent systemd qt5-tools)
-source=(https://github.com/transmission/transmission-releases/raw/master/transmission-${pkgver}.tar.xz
-transmission-cli.sysusers
-transmission-cli.tmpfiles)
-sha256sums=('9144652fe742f7f7dd6657716e378da60b751aaeda8bef8344b3eefc4db255f2'
-'641310fb0590d40e00bea1b5b9c843953ab78edf019109f276be9c6a7bdaf5b2'
-'1266032bb07e47d6bcdc7dabd74df2557cc466c33bf983a5881316a4cc098451')
-
-prepare() {
-  cd $pkgbase-$pkgver
-
-  rm -f m4/glib-gettext.m4
-  autoreconf -fi
-
-  sed -i '/^Icon=/ s/$/-qt/' qt/transmission-qt.desktop
-}
-
-build() {
-  cd $pkgbase-$pkgver
-  ./configure --prefix=/usr
-  make
-
-  cd qt
-  qmake qtr.pro \
-
DEFINES+=TRANSLATIONS_DIR=\\\"/usr/share/transmission-qt/translations\\\"
-  make
-  lrelease translations/*.ts
-}
-
-package_transmission-cli() {
-  pkgdesc='Fast, easy, and free BitTorrent client (CLI tools, daemon and web 
client)'
-  depends=(curl libevent systemd)
-
-  cd $pkgbase-$pkgver
-
-  for dir in daemon cli web utils; do
-make -C "$dir" DESTDIR="$pkgdir" install
-  done
-
-  install -Dm644 daemon/transmission-daemon.service \
-"$pkgdir/usr/lib/systemd/system/transmission.service"
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/transmission-cli/COPYING"
-
-  install -Dm644 "$srcdir/$pkgname.sysusers" \
-"$pkgdir/usr/lib/sysusers.d/transmission.conf"
-  install -Dm644 "$srcdir/$pkgname.tmpfiles" \
-"$pkgdir/usr/lib/tmpfiles.d/transmission.conf"
-}
-
-package_transmission-gtk() {
-  pkgdesc='Fast, easy, and free BitTorrent client (GTK+ GUI)'
-  depends=(curl libevent gtk3 desktop-file-utils hicolor-icon-theme)
-  optdepends=('libnotify: Desktop notification support'
-  'transmission-cli: daemon and web support')
-
-  cd $pkgbase-$pkgver
-
-  make -C gtk DESTDIR="$pkgdir" install
-  make -C po DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/transmission-gtk/COPYING"
-}
-
-package_transmission-qt() {
-  pkgdesc='Fast, easy, and free BitTorrent client (Qt GUI)'
-  depends=(curl qt5-base libevent)
-  optdepends=('transmission-cli: daemon and web support')
-
-  cd $pkgbase-$pkgver
-
-  make -C qt INSTALL_ROOT="$pkgdir"/usr install
-  install -Dm644 -t "$pkgdir/usr/share/transmission-qt/translations" \
-qt/translations/*.qm
-
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/transmission-qt/COPYING"
-  install -Dm644 qt/icons/transmission.png \
-"$pkgdir/usr/share/pixmaps/transmission-qt.png"
-  install -Dm644 qt/transmission-qt.desktop \
-"$pkgdir/usr/share/applications/transmission-qt.desktop"
-}

Copied: transmission/repos/extra-x86_64/PKGBUILD (from rev 392549, 
transmission/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-26 09:33:16 UTC (rev 392550)
@@ -0,0 +1,89 @@
+# Maintainer : Tom Gundersen 
+# Maintainer : Ionut Biru 
+
+pkgbase=transmission
+pkgname=(transmission-cli transmission-gtk transmission-qt)
+pkgver=3.00
+pkgrel=2
+arch=(x86_64)
+url="http://www.transmissionbt.com/;
+license=(MIT)
+makedepends=(gtk3 intltool curl qt5-base libevent systemd qt5-tools 
libappindicator-gtk3)
+source=(https://github.com/transmission/transmission-releases/raw/master/transmission-${pkgver}.tar.xz
+transmission-cli.sysusers
+transmission-cli.tmpfiles)
+sha256sums=('9144652fe742f7f7dd6657716e378da60b751aaeda8bef8344b3eefc4db255f2'
+'641310fb0590d40e00bea1b5b9c843953ab78edf019109f276be9c6a7bdaf5b2'
+

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

2020-07-26 Thread Florian Pritz via arch-commits
Date: Sunday, July 26, 2020 @ 09:33:13
  Author: bluewind
Revision: 392549

upgpkg: transmission 3.00-2: FS#67346 - [transmission-gtk] Build with 
libappindicator

Modified:
  transmission/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 09:00:45 UTC (rev 392548)
+++ PKGBUILD2020-07-26 09:33:13 UTC (rev 392549)
@@ -4,11 +4,11 @@
 pkgbase=transmission
 pkgname=(transmission-cli transmission-gtk transmission-qt)
 pkgver=3.00
-pkgrel=1
+pkgrel=2
 arch=(x86_64)
 url="http://www.transmissionbt.com/;
 license=(MIT)
-makedepends=(gtk3 intltool curl qt5-base libevent systemd qt5-tools)
+makedepends=(gtk3 intltool curl qt5-base libevent systemd qt5-tools 
libappindicator-gtk3)
 
source=(https://github.com/transmission/transmission-releases/raw/master/transmission-${pkgver}.tar.xz
 transmission-cli.sysusers
 transmission-cli.tmpfiles)
@@ -59,7 +59,7 @@
 
 package_transmission-gtk() {
   pkgdesc='Fast, easy, and free BitTorrent client (GTK+ GUI)'
-  depends=(curl libevent gtk3 desktop-file-utils hicolor-icon-theme)
+  depends=(curl libevent gtk3 desktop-file-utils hicolor-icon-theme 
libappindicator-gtk3)
   optdepends=('libnotify: Desktop notification support'
   'transmission-cli: daemon and web support')
 


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

2020-07-26 Thread Laurent Carlier via arch-commits
Date: Sunday, July 26, 2020 @ 09:09:29
  Author: lcarlier
Revision: 665323

upgpkg: minetest 5.3.0-1: upstream update 5.3.0

Modified:
  minetest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 09:01:00 UTC (rev 665322)
+++ PKGBUILD2020-07-26 09:09:29 UTC (rev 665323)
@@ -2,7 +2,7 @@
 # Contributor: Konsta Kokkinen 
 
 pkgname=('minetest' 'minetest-server' 'minetest-common')
-pkgver=5.2.0
+pkgver=5.3.0
 pkgrel=1
 arch=('x86_64')
 url='https://www.minetest.net/'
@@ -14,8 +14,8 @@
 minetest.service
 sysusers.d
 tmpfiles.d)
-sha256sums=('4996c7c50a6600d0c7140680d4bd995cb9aae910f216b46373953b49d6b13a5d'
-'0c49fd6e310de1aba2e8cb8ae72efe0e06bb6bc8d7c5efea23bc201b6a80ce94'
+sha256sums=('65dc2049f24c93fa544500f310a61e289c1b8fa47bf60877b746a2c27a7238d6'
+'06c6c1d4b97af211dd0fa518a3e68a205f594e9816a4b2477e48d4d21d278e2d'
 '2d80b4ff925770bdf3d857debb2ad11227cc9b022eb01a358b18f8d5f2641a5c'
 'e4166d639b35efda2cd72269208184ab1e72c54541344cd202ff2005c90b9433'
 'd9405cf7cd0a657ef06082570783383a1f527fbc0bd122ea506d4fbe26950d4a')


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

2020-07-26 Thread Laurent Carlier via arch-commits
Date: Sunday, July 26, 2020 @ 09:09:35
  Author: lcarlier
Revision: 665324

archrelease: copy trunk to community-x86_64

Added:
  minetest/repos/community-x86_64/PKGBUILD
(from rev 665323, minetest/trunk/PKGBUILD)
  minetest/repos/community-x86_64/minetest.service
(from rev 665323, minetest/trunk/minetest.service)
  minetest/repos/community-x86_64/sysusers.d
(from rev 665323, minetest/trunk/sysusers.d)
  minetest/repos/community-x86_64/tmpfiles.d
(from rev 665323, minetest/trunk/tmpfiles.d)
Deleted:
  minetest/repos/community-x86_64/PKGBUILD
  minetest/repos/community-x86_64/minetest.service
  minetest/repos/community-x86_64/sysusers.d
  minetest/repos/community-x86_64/tmpfiles.d

--+
 PKGBUILD |  194 ++---
 minetest.service |   20 ++---
 sysusers.d   |4 -
 tmpfiles.d   |2 
 4 files changed, 110 insertions(+), 110 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-26 09:09:29 UTC (rev 665323)
+++ PKGBUILD2020-07-26 09:09:35 UTC (rev 665324)
@@ -1,97 +0,0 @@
-# Maintainer: Laurent Carlier 
-# Contributor: Konsta Kokkinen 
-
-pkgname=('minetest' 'minetest-server' 'minetest-common')
-pkgver=5.2.0
-pkgrel=1
-arch=('x86_64')
-url='https://www.minetest.net/'
-license=('GPL')
-makedepends=('sqlite' 'freetype2' 'leveldb' 'postgresql' 'spatialindex' 
'openal' 'libvorbis' 'curl'
- 'irrlicht' 'hicolor-icon-theme' 'cmake' 'hiredis' 'luajit')
-source=($pkgname-$pkgver.tar.gz::https://github.com/minetest/minetest/archive/${pkgver}.tar.gz
-
$pkgname-data-$pkgver.tar.gz::https://github.com/minetest/minetest_game/archive/${pkgver}.tar.gz
-minetest.service
-sysusers.d
-tmpfiles.d)
-sha256sums=('4996c7c50a6600d0c7140680d4bd995cb9aae910f216b46373953b49d6b13a5d'
-'0c49fd6e310de1aba2e8cb8ae72efe0e06bb6bc8d7c5efea23bc201b6a80ce94'
-'2d80b4ff925770bdf3d857debb2ad11227cc9b022eb01a358b18f8d5f2641a5c'
-'e4166d639b35efda2cd72269208184ab1e72c54541344cd202ff2005c90b9433'
-'d9405cf7cd0a657ef06082570783383a1f527fbc0bd122ea506d4fbe26950d4a')
-
-prepare() {
-  install -d build-{client,server}
-}
-
-build() {
-  cd "$srcdir"/build-client
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DBUILD_CLIENT=1 \
--DENABLE_GETTEXT=1 \
--DENABLE_FREETYPE=1 \
--DENABLE_LEVELDB=0 \
--DENABLE_POSTGRESQL=1 \
--DENABLE_SPATIAL=1 \
--DENABLE_REDIS=0
-  make
-
-  cd "$srcdir"/build-server
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DBUILD_CLIENT=0 \
--DBUILD_SERVER=1 \
--DENABLE_LEVELDB=1 \
--DENABLE_POSTGRESQL=1 \
--DENABLE_SPATIAL=1 \
--DENABLE_REDIS=1
-  make
-}
-
-package_minetest() {
-  pkgdesc='Multiplayer infinite-world block sandbox game'
-  depends=('minetest-common' 'irrlicht' 'curl' 'libvorbis' 'sqlite'
-   'openal' 'hicolor-icon-theme' 'desktop-file-utils' 'xdg-utils'
-   'freetype2' 'luajit' 'postgresql-libs' 'spatialindex')
-
-  cd build-client
-  make DESTDIR="$pkgdir" install
-
-  rm -rf "$pkgdir"/usr/share/{minetest,doc}
-  rm "$pkgdir"/usr/share/man/man6/minetestserver.6
-}
-
-package_minetest-server() {
-  pkgdesc='Server of infinite-world block sandbox game'
-  depends=('minetest-common' 'leveldb' 'curl' 'sqlite' 'hiredis' 'luajit'
-   'postgresql-libs' 'spatialindex')
-
-  cd build-server
-  make DESTDIR="$pkgdir" install
-  install -d  "$pkgdir"/etc/minetest
-  install -Dm644 ../minetest.service \
-"$pkgdir"/usr/lib/systemd/system/minetest@.service
-
-  rm -rf "$pkgdir"/usr/share/{minetest,metainfo,appdata,applications,icons,doc}
-  mv "$pkgdir"/usr/share/man/man6/minetest.6 
"$pkgdir"/usr/share/man/man6/minetestserver.6
-
-  install -Dm644 ${srcdir}/tmpfiles.d 
${pkgdir}/usr/lib/tmpfiles.d/minetest-server.conf
-  install -Dm644 ${srcdir}/sysusers.d 
${pkgdir}/usr/lib/sysusers.d/minetest-server.conf
-}
-
-package_minetest-common() {
-  pkgdesc='Common data files for minetest and minetest-server'
-
-  cd $pkgbase-$pkgver
-  install -d "$pkgdir"/usr/share/minetest
-
-  cp -r games builtin client fonts textures "$pkgdir"/usr/share/minetest/
-  cp -r "$srcdir"/build-client/locale "$pkgdir"/usr/share/minetest/
-  cp -r "$srcdir"/minetest_game-$pkgver 
"$pkgdir"/usr/share/minetest/games/minetest
-  rm "$pkgdir"/usr/share/minetest/games/minetest/.gitignore
-
-  for file in doc/{fst_api,lua_api,menu_lua_api,protocol,world_format}.txt; do
-install -Dm644 $file "$pkgdir"/usr/share/minetest/doc/$(basename $file)
-  done
-}

Copied: minetest/repos/community-x86_64/PKGBUILD (from rev 665323, 
minetest/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-26 09:09:35 UTC (rev 665324)
@@ -0,0 +1,97 @@
+# Maintainer: Laurent Carlier 
+# Contributor: 

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

2020-07-26 Thread Jonas Witschel via arch-commits
Date: Sunday, July 26, 2020 @ 08:47:31
  Author: diabonas
Revision: 665321

Add systemd to makedepends

systemd has been removed from the base-devel group and is required by the
build system to determine the location of the systemd unit directory.

Modified:
  tang/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 07:41:01 UTC (rev 665320)
+++ PKGBUILD2020-07-26 08:47:31 UTC (rev 665321)
@@ -7,7 +7,7 @@
 url='https://github.com/latchset/tang'
 license=('GPL3')
 depends=('http-parser' 'jose')
-makedepends=('asciidoc')
+makedepends=('asciidoc' 'systemd')
 source=("$url/releases/download/v$pkgver/$pkgname-$pkgver.tar.bz2")
 
sha512sums=('dd4187fa6962523ac2a745ef05a27cdf7e5264c595942e63d406d67a1c595e87bd7e74091cb2e16362f369480cdf8e3b4bfe1fee13b9cb73d5308f42c52f138a')
 


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

2020-07-26 Thread Gaëtan Bisson via arch-commits
Date: Sunday, July 26, 2020 @ 07:43:26
  Author: bisson
Revision: 392547

archrelease: copy trunk to extra-x86_64

Added:
  postfix/repos/extra-x86_64/PKGBUILD
(from rev 392546, postfix/trunk/PKGBUILD)
  postfix/repos/extra-x86_64/aliases.patch
(from rev 392546, postfix/trunk/aliases.patch)
  postfix/repos/extra-x86_64/service
(from rev 392546, postfix/trunk/service)
  postfix/repos/extra-x86_64/sysusers.d
(from rev 392546, postfix/trunk/sysusers.d)
Deleted:
  postfix/repos/extra-x86_64/PKGBUILD
  postfix/repos/extra-x86_64/aliases.patch
  postfix/repos/extra-x86_64/service
  postfix/repos/extra-x86_64/sysusers.d

---+
 PKGBUILD  |  216 
 aliases.patch |   36 -
 service   |   28 +++
 sysusers.d|4 -
 4 files changed, 142 insertions(+), 142 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-26 07:40:31 UTC (rev 392546)
+++ PKGBUILD2020-07-26 07:43:26 UTC (rev 392547)
@@ -1,108 +0,0 @@
-# Contributor: Jeff Brodnax 
-# Contributor: Paul Mattal 
-# Maintainer: Gaetan Bisson 
-
-pkgname=postfix
-pkgver=3.5.4
-pkgrel=1
-url='http://www.postfix.org/'
-pkgdesc='Fast, easy to administer, secure mail server'
-license=('custom')
-arch=('x86_64')
-depends=('openssl' 'pcre' 'icu' 'libsasl' 'libldap' 'db' 'libnsl'
- 'mariadb-libs' 'postgresql-libs' 'sqlite' 'tinycdb')
-optdepends=('perl: postfix-collate.pl and qshape')
-source=("http://ftp.porcupine.org/mirrors/postfix-release/official/${pkgname}-${pkgver}.tar.gz;
-'aliases.patch'
-'sysusers.d'
-'service')
-sha256sums=('fc2fb1cc27556aa2506bc287af04881cde07c83d5cb213ba835083b4bb796881'
-'f4c766efc20b4638f9fd72707ca6d4c2628279ebd79f5227276fa4ca6867c336'
-'63f39147887336bdd173fb9425998f0a0c6f00a31241f922a255c157bfd8d02e'
-'52781649c49a50cecd7d20f693f602d7dc78b985ac5f0e72c4abfa0d800e58f0')
-
-backup=('etc/postfix/'{access,aliases,canonical,generic,header_checks,main.cf,master.cf,relocated,transport,virtual})
-
-conflicts=('smtp-server' 'smtp-forwarder' 'postfix-tools')
-provides=('smtp-server' 'smtp-forwarder' 'postfix-tools')
-replaces=('postfix-tools')
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-
-   CCARGS='
-   -DUSE_SASL_AUTH -DUSE_CYRUS_SASL -I/usr/include/sasl
-   -DHAS_LDAP
-   -DUSE_TLS
-   -DHAS_MYSQL -I/usr/include/mysql
-   -DHAS_PGSQL -I/usr/include/postgresql
-   -DHAS_SQLITE
-   -DHAS_CDB
-   -DDEF_COMMAND_DIR=\"/usr/bin\"
-   -DDEF_DAEMON_DIR=\"/usr/lib/postfix/bin\"
-   -DDEF_SENDMAIL_PATH=\"/usr/bin/sendmail\"
-   -DDEF_README_DIR=\"/usr/share/doc/postfix\"
-   -DDEF_MANPAGE_DIR=\"/usr/share/man\"
-   '
-   AUXLIBS='
-   -lsasl2
-   -lldap -llber
-   -lssl -lcrypto
-   -lmysqlclient -lz -lm
-   -lpq
-   -lsqlite3 -lpthread
-   -lcdb
-   '
-   make makefiles \
-   DEBUG='' \
-   pie=yes \
-   shared=yes \
-   CCARGS="${CCARGS//$'\n'/}" \
-   AUXLIBS="${AUXLIBS//$'\n'/}" \
-   OPT="${CFLAGS} ${LDFLAGS}" \
-
-   make
-}
-
-package() {
-   cd "${srcdir}/postfix-${pkgver}"
-
-   sed 's:bin/postconf -dhx:bin/postconf -c conf -dhx:g' -i postfix-install
-   LD_LIBRARY_PATH=lib:$LD_LIBRARY_PATH \
-   sh postfix-install -non-interactive install_root="${pkgdir}"
-
-   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-   install -Dm644 ../service 
"${pkgdir}/usr/lib/systemd/system/${pkgname}.service"
-   install -Dm644 ../sysusers.d 
"${pkgdir}/usr/lib/sysusers.d/${pkgname}.conf"
-
-   for name in posttls-finger {smtp,qmqp}-{sink,source}; do
-   install -Dm644 "man/man1/${name}.1" 
"${pkgdir}/usr/share/man/man1/${name}.1"
-   install -Dm755 "bin/${name}" "${pkgdir}/usr/bin/${name}"
-   done
-
-   name=qshape
-   install -Dm644 "man/man1/${name}.1" 
"${pkgdir}/usr/share/man/man1/${name}.1"
-   install -Dm755 "auxiliary/${name}/${name}.pl" 
"${pkgdir}/usr/bin/${name}"
-
-   install -Dm755 "auxiliary/collate/collate.pl" 
"${pkgdir}/usr/bin/postfix-collate.pl"
-
-   # now set permissions right to appease the pacman gods
-   sed -r \
-   -e '/override=1/d' \
-   -e '/absolute path name/d' \
-   -e 's/\$POSTCONF -/$POSTCONF -c .\/etc\/postfix -/g' \
-   -e '/(if \[|chmod|chown|find|mkdir|test)/s/\$path/.\/$path/g' \
-   libexec/post-install > ../arch-post-install
-   cd "${pkgdir}"
-   LD_LIBRARY_PATH=usr/lib/postfix:$LD_LIBRARY_PATH \
-   sh "${srcdir}/arch-post-install" \
-   

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

2020-07-26 Thread Antonio Rojas via arch-commits
Date: Sunday, July 26, 2020 @ 07:41:01
  Author: arojas
Revision: 665320

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-26 07:40:47 UTC (rev 665319)
+++ PKGBUILD2020-07-26 07:41:01 UTC (rev 665320)
@@ -1,26 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Fredrick Brennan 
-# Contributor: Stephan Eisvogel 
-
-pkgname=python-pikepdf
-pkgver=1.17.2
-pkgrel=1
-pkgdesc='Read and write PDFs with Python, powered by qpdf'
-arch=(x86_64)
-url='https://github.com/pikepdf/pikepdf'
-license=(MPL2)
-makedepends=(pybind11 python-setuptools)
-depends=(python-lxml python-pillow qpdf)
-source=($pkgname-$pkgver.tar.gz::"https://github.com/pikepdf/pikepdf/archive/v$pkgver.tar.gz;)
-sha256sums=('37d63585d905300b131619d47f0a1819814f41ee4af2cd1c98d27aaa513481d0')
-
-build() {
-  cd pikepdf-$pkgver
-  python setup.py build
-}
-
-package() {
-  cd pikepdf-$pkgver
-  python setup.py install --root="$pkgdir" --prefix=/usr --optimize=1 
--skip-build
-  install -Dm644 LICENSE.txt -t "$pkgdir"/usr/share/licenses/$pkgname
-}

Copied: python-pikepdf/repos/community-x86_64/PKGBUILD (from rev 665319, 
python-pikepdf/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-26 07:41:01 UTC (rev 665320)
@@ -0,0 +1,26 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Fredrick Brennan 
+# Contributor: Stephan Eisvogel 
+
+pkgname=python-pikepdf
+pkgver=1.17.3
+pkgrel=1
+pkgdesc='Read and write PDFs with Python, powered by qpdf'
+arch=(x86_64)
+url='https://github.com/pikepdf/pikepdf'
+license=(MPL2)
+makedepends=(pybind11 python-setuptools)
+depends=(python-lxml python-pillow qpdf)
+source=($pkgname-$pkgver.tar.gz::"https://github.com/pikepdf/pikepdf/archive/v$pkgver.tar.gz;)
+sha256sums=('3a7876ce1344bc0a3a538d826b1def7282c7bb3cb24df85eae0225ac97a9dcb1')
+
+build() {
+  cd pikepdf-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd pikepdf-$pkgver
+  python setup.py install --root="$pkgdir" --prefix=/usr --optimize=1 
--skip-build
+  install -Dm644 LICENSE.txt -t "$pkgdir"/usr/share/licenses/$pkgname
+}


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

2020-07-26 Thread Antonio Rojas via arch-commits
Date: Sunday, July 26, 2020 @ 07:40:47
  Author: arojas
Revision: 665319

Update to 1.17.3

Modified:
  python-pikepdf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-26 05:18:15 UTC (rev 665318)
+++ PKGBUILD2020-07-26 07:40:47 UTC (rev 665319)
@@ -3,7 +3,7 @@
 # Contributor: Stephan Eisvogel 
 
 pkgname=python-pikepdf
-pkgver=1.17.2
+pkgver=1.17.3
 pkgrel=1
 pkgdesc='Read and write PDFs with Python, powered by qpdf'
 arch=(x86_64)
@@ -12,7 +12,7 @@
 makedepends=(pybind11 python-setuptools)
 depends=(python-lxml python-pillow qpdf)
 
source=($pkgname-$pkgver.tar.gz::"https://github.com/pikepdf/pikepdf/archive/v$pkgver.tar.gz;)
-sha256sums=('37d63585d905300b131619d47f0a1819814f41ee4af2cd1c98d27aaa513481d0')
+sha256sums=('3a7876ce1344bc0a3a538d826b1def7282c7bb3cb24df85eae0225ac97a9dcb1')
 
 build() {
   cd pikepdf-$pkgver


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

2020-07-26 Thread Gaëtan Bisson via arch-commits
Date: Sunday, July 26, 2020 @ 07:40:31
  Author: bisson
Revision: 392546

upstream update

Modified:
  postfix/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-25 22:32:00 UTC (rev 392545)
+++ PKGBUILD2020-07-26 07:40:31 UTC (rev 392546)
@@ -3,7 +3,7 @@
 # Maintainer: Gaetan Bisson 
 
 pkgname=postfix
-pkgver=3.5.4
+pkgver=3.5.5
 pkgrel=1
 url='http://www.postfix.org/'
 pkgdesc='Fast, easy to administer, secure mail server'
@@ -16,7 +16,7 @@
 'aliases.patch'
 'sysusers.d'
 'service')
-sha256sums=('fc2fb1cc27556aa2506bc287af04881cde07c83d5cb213ba835083b4bb796881'
+sha256sums=('dc2462a62fee5be82feb04391e5099755fe29ca28b75fa7f5c1ea1cfa7ffdac2'
 'f4c766efc20b4638f9fd72707ca6d4c2628279ebd79f5227276fa4ca6867c336'
 '63f39147887336bdd173fb9425998f0a0c6f00a31241f922a255c157bfd8d02e'
 '52781649c49a50cecd7d20f693f602d7dc78b985ac5f0e72c4abfa0d800e58f0')