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

2021-11-23 Thread Antonio Rojas via arch-commits
Date: Wednesday, November 24, 2021 @ 07:56:10
  Author: arojas
Revision: 1054614

Fix build with TBB 2021

Modified:
  opensubdiv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-24 07:38:53 UTC (rev 1054613)
+++ PKGBUILD2021-11-24 07:56:10 UTC (rev 1054614)
@@ -10,10 +10,12 @@
 makedepends=('cmake' 'doxygen' 'glfw' 'glew' 'python' 'python-pygments' 
'python-docutils' 'opencl-headers' 'cuda')
 
source=("https://github.com/PixarAnimationStudios/OpenSubdiv/archive/v${pkgver//./_}.tar.gz;
 python3.patch
-cuda11.patch)
+cuda11.patch
+
opensubdiv-tbb2021.patch::https://github.com/PixarAnimationStudios/OpenSubdiv/commit/9079a517.patch)
 
sha512sums=('fc8f28b79347015c8991150535c1339e695d96947c72fadd4fa27b546a0813c1125cd175ee03bed5aacdb3609f74c4e526ef70103d1195ba9f7df041e73ea9fb'
 
'10f1f63e07d59deb4d91ba04448bb360efff0e41202bb6737caffbce09ba244efb349fe25b24880420b80fdadb268aed84923464af0d66ee1a36e4ba8f96cfd5'
-
'9006762976c15a57d30607189d52d0e620b5024da478dcd41a79a88b350740144a88c1a4f455bfb1b79a9f605e0587c1c828a9b0813301acec8bbb516c2bb292')
+
'9006762976c15a57d30607189d52d0e620b5024da478dcd41a79a88b350740144a88c1a4f455bfb1b79a9f605e0587c1c828a9b0813301acec8bbb516c2bb292'
+
'c65770d3e65a63c88aa1061e10c5dd6be8616a2479bd5f6d3928c97a5895cfa7d0aac455121db7ee610b9731bfbf07c3f8a26e9cd47623cd1baa046d9aa68cdf')
 
 prepare() {
   cd "OpenSubdiv-${pkgver//./_}"
@@ -20,6 +22,7 @@
 
   patch -Np1 -i "${srcdir}"/python3.patch
   patch -Np1 -i "${srcdir}"/cuda11.patch
+  patch -Np1 -i "${srcdir}"/opensubdiv-tbb2021.patch # Support TBB 2021
   mkdir build
 }
 



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

2021-11-23 Thread Antonio Rojas via arch-commits
Date: Wednesday, November 24, 2021 @ 07:38:53
  Author: arojas
Revision: 1054613

archrelease: copy trunk to community-staging-x86_64

Added:
  openvdb/repos/community-staging-x86_64/
  openvdb/repos/community-staging-x86_64/PKGBUILD
(from rev 1054612, openvdb/trunk/PKGBUILD)

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

Copied: openvdb/repos/community-staging-x86_64/PKGBUILD (from rev 1054612, 
openvdb/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-11-24 07:38:53 UTC (rev 1054613)
@@ -0,0 +1,42 @@
+# Maintainer : Sven-Hendrik Haase 
+pkgname=openvdb
+pkgver=9.0.0
+pkgrel=3
+pkgdesc='A large suite of tools for the efficient storage and manipulation of 
sparse volumetric data discretized on three-dimensional grids'
+url='https://github.com/dreamworksanimation/openvdb'
+arch=('x86_64')
+license=('MPL')
+depends=('boost-libs' 'intel-tbb' 'zlib' 'jemalloc' 'blosc' 'log4cplus')
+makedepends=('doxygen' 'boost' 'cmake' 'mesa' 'cppunit' 'glfw-x11' 'glu' 
'python' 'python-numpy' 'ninja')
+optdepends=('glfw: for tools'
+'glu: for tools'
+'python-numpy: python module')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/dreamworksanimation/openvdb/archive/v${pkgver}.tar.gz;)
+sha512sums=('1410b7b04b03fb09d6775ebe7b95e7c0a484d5f29c84203530ed30ccb7c061470be1abb93189010617342e57f3fecdd66a115c6d222024e68e2384a7fb196194')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  cmake \
+-Bbuild \
+-GNinja \
+-DUSE_NUMPY=ON \
+-DUSE_LOG4CPLUS=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DOPENVDB_BUILD_PYTHON_MODULE=ON \
+-DOPENVDB_BUILD_DOCS=ON \
+-DOPENVDB_BUILD_UNITTESTS=OFF
+
+  ninja -C build
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}/build"
+
+  DESTDIR="${pkgdir}" ninja install
+  # Try to workaround FS#72653 for now
+  mkdir -p "${pkgdir}"/usr/share/cmake-3.22/Modules/
+  ln -s "${pkgdir}"/usr/lib/cmake/OpenVDB/FindOpenVDB.cmake 
"${pkgdir}"/usr/share/cmake-3.22/Modules/FindOpenVDB.cmake
+}
+
+# vim:set sw=2 sts=2 et:



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

2021-11-23 Thread Antonio Rojas via arch-commits
Date: Wednesday, November 24, 2021 @ 07:38:36
  Author: arojas
Revision: 1054612

tbb 2021.4 rebuild

Modified:
  openvdb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-24 06:59:52 UTC (rev 1054611)
+++ PKGBUILD2021-11-24 07:38:36 UTC (rev 1054612)
@@ -1,7 +1,7 @@
 # Maintainer : Sven-Hendrik Haase 
 pkgname=openvdb
 pkgver=9.0.0
-pkgrel=2
+pkgrel=3
 pkgdesc='A large suite of tools for the efficient storage and manipulation of 
sparse volumetric data discretized on three-dimensional grids'
 url='https://github.com/dreamworksanimation/openvdb'
 arch=('x86_64')



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

2021-11-23 Thread Antonio Rojas via arch-commits
Date: Wednesday, November 24, 2021 @ 07:27:03
  Author: arojas
Revision: 429053

archrelease: copy trunk to extra-x86_64

Added:
  qt5-base/repos/extra-x86_64/PKGBUILD
(from rev 429052, qt5-base/trunk/PKGBUILD)
  qt5-base/repos/extra-x86_64/qt5-base-cflags.patch
(from rev 429052, qt5-base/trunk/qt5-base-cflags.patch)
  qt5-base/repos/extra-x86_64/qt5-base-nostrip.patch
(from rev 429052, qt5-base/trunk/qt5-base-nostrip.patch)
Deleted:
  qt5-base/repos/extra-x86_64/PKGBUILD
  qt5-base/repos/extra-x86_64/qt5-base-cflags.patch
  qt5-base/repos/extra-x86_64/qt5-base-nostrip.patch

+
 PKGBUILD   |  222 +++
 qt5-base-cflags.patch  |   92 +--
 qt5-base-nostrip.patch |   26 ++---
 3 files changed, 170 insertions(+), 170 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-11-24 07:26:50 UTC (rev 429052)
+++ PKGBUILD2021-11-24 07:27:03 UTC (rev 429053)
@@ -1,111 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgbase=qt5-base
-pkgname=(qt5-base qt5-xcb-private-headers)
-pkgver=5.15.2+kde+r257
-pkgrel=2
-_commit=e59e55682bad95c3ed88338fa638dc03379d9325
-arch=('x86_64')
-url='https://www.qt.io'
-license=('GPL3' 'LGPL3' 'FDL' 'custom')
-pkgdesc='A cross-platform application and UI framework'
-depends=('libjpeg-turbo' 'xcb-util-keysyms' 'xcb-util-renderutil' 'libgl' 
'fontconfig' 'xdg-utils'
- 'shared-mime-info' 'xcb-util-wm' 'libxrender' 'libxi' 'sqlite' 
'xcb-util-image' 'mesa'
- 'tslib' 'libinput' 'libxkbcommon-x11' 'libproxy' 'libcups' 
'double-conversion' 'md4c')
-makedepends=('libfbclient' 'mariadb-libs' 'unixodbc' 'postgresql-libs' 
'alsa-lib' 'gst-plugins-base-libs'
- 'gtk3' 'libpulse' 'cups' 'freetds' 'vulkan-headers' 'git')
-optdepends=('qt5-svg: to use SVG icon themes'
-'qt5-wayland: to run Qt applications in a Wayland session'
-'qt5-translations: for some native UI translations'
-'postgresql-libs: PostgreSQL driver'
-'mariadb-libs: MariaDB driver'
-'unixodbc: ODBC driver'
-'libfbclient: Firebird/iBase driver'
-'freetds: MS SQL driver'
-'gtk3: GTK platform plugin'
-'perl: for fixqt4headers and syncqt')
-conflicts=('qtchooser')
-groups=('qt' 'qt5')
-_pkgfqn=qtbase
-source=(git+https://invent.kde.org/qt/qt/$_pkgfqn#commit=$_commit
-qt5-base-cflags.patch
-qt5-base-nostrip.patch)
-sha256sums=('SKIP'
-'cf707cd970650f8b60f8897692b36708ded9ba116723ec8fcd885576783fe85c'
-'4b93f6a79039e676a56f9d6990a324a64a36f143916065973ded89adc621e094')
-
-pkgver() {
-  cd $_pkgfqn
-  echo "5.15.2+kde+r"`git rev-list --count origin/5.15.2..$_commit`
-}
-
-prepare() {
-  cd ${_pkgfqn}
-
-  git revert -n 6344955d17e17e2398720fe60c34cfc2a4a95208 # Revert version bump
-
-  patch -p1 < ../qt5-base-cflags.patch # Use system CFLAGS in qmake
-  patch -p1 < ../qt5-base-nostrip.patch # Don't strip binaries with qmake
-}
-
-build() {
-  cd ${_pkgfqn}
-
-  ./configure -confirm-license -opensource -v \
--prefix /usr \
--docdir /usr/share/doc/qt \
--headerdir /usr/include/qt \
--archdatadir /usr/lib/qt \
--datadir /usr/share/qt \
--sysconfdir /etc/xdg \
--examplesdir /usr/share/doc/qt/examples \
--plugin-sql-{psql,mysql,sqlite,odbc,ibase} \
--system-sqlite \
--openssl-linked \
--nomake examples \
--no-rpath \
--dbus-linked \
--system-harfbuzz \
--journald \
--no-mimetype-database \
--no-use-gold-linker \
--reduce-relocations \
--no-strip
-  make
-}
-
-package_qt5-base() {
-  pkgdesc='A cross-platform application and UI framework'
-
-  cd ${_pkgfqn}
-  make INSTALL_ROOT="${pkgdir}" install
-
-  install -Dm644 LICENSE* -t "$pkgdir"/usr/share/licenses/$pkgbase
-
-  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
-  find "${pkgdir}/usr/lib" -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
-
-  # Fix wrong qmake path in pri file
-  sed -i "s|${srcdir}/${_pkgfqn}|/usr|" \
-"${pkgdir}"/usr/lib/qt/mkspecs/modules/qt_lib_bootstrap_private.pri
-
-  # Symlinks for backwards compatibility
-  for b in "${pkgdir}"/usr/bin/*; do
-ln -s $(basename $b) "${pkgdir}"/usr/bin/$(basename $b)-qt5
-  done
-}
-
-package_qt5-xcb-private-headers() {
-  pkgdesc='Private headers for Qt5 Xcb'
-
-  depends=("qt5-base=$pkgver")
-  optdepends=()
-  groups=()
-  conflicts=()
-
-  cd ${_pkgfqn}
-  install -d -m755 "$pkgdir"/usr/include/qtxcb-private
-  cp -r src/plugins/platforms/xcb/*.h "$pkgdir"/usr/include/qtxcb-private/
-}

Copied: qt5-base/repos/extra-x86_64/PKGBUILD (from rev 429052, 
qt5-base/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-11-24 07:27:03 UTC (rev 429053)
@@ 

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

2021-11-23 Thread Antonio Rojas via arch-commits
Date: Wednesday, November 24, 2021 @ 07:26:50
  Author: arojas
Revision: 429052

Bump revision

Modified:
  qt5-base/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-24 03:15:32 UTC (rev 429051)
+++ PKGBUILD2021-11-24 07:26:50 UTC (rev 429052)
@@ -3,9 +3,9 @@
 
 pkgbase=qt5-base
 pkgname=(qt5-base qt5-xcb-private-headers)
-pkgver=5.15.2+kde+r257
-pkgrel=2
-_commit=e59e55682bad95c3ed88338fa638dc03379d9325
+pkgver=5.15.2+kde+r259
+pkgrel=1
+_commit=4882866353e01048383937487fcf9000c2312fcc
 arch=('x86_64')
 url='https://www.qt.io'
 license=('GPL3' 'LGPL3' 'FDL' 'custom')



[arch-commits] Commit in dovecot-fts-xapian/repos/community-x86_64 (4 files)

2021-11-23 Thread George Rawlinson via arch-commits
Date: Wednesday, November 24, 2021 @ 06:59:52
  Author: grawlinson
Revision: 1054611

archrelease: copy trunk to community-x86_64

Added:
  dovecot-fts-xapian/repos/community-x86_64/PKGBUILD
(from rev 1054610, dovecot-fts-xapian/trunk/PKGBUILD)
  dovecot-fts-xapian/repos/community-x86_64/dovecot-fts-xapian.install
(from rev 1054610, dovecot-fts-xapian/trunk/dovecot-fts-xapian.install)
Deleted:
  dovecot-fts-xapian/repos/community-x86_64/PKGBUILD
  dovecot-fts-xapian/repos/community-x86_64/dovecot-fts-xapian.install

+
 PKGBUILD   |  104 +--
 dovecot-fts-xapian.install |   24 -
 2 files changed, 64 insertions(+), 64 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-11-24 06:59:06 UTC (rev 1054610)
+++ PKGBUILD2021-11-24 06:59:52 UTC (rev 1054611)
@@ -1,52 +0,0 @@
-# Maintainer: George Rawlinson 
-# Maintainer: Thore Bödecker 
-
-# This must be built against the version of dovecot being used,
-# otherwise it will fail to load and thus work.
-# Specify the version of dovecot to be used here:
-_dcpkgver=2.3.16
-# Make sure to bump pkgrel if changing this.
-
-pkgname=dovecot-fts-xapian
-_pkgname="${pkgname#dovecot-}"
-pkgver=1.5.1
-pkgrel=2
-pkgdesc="Dovecot FTS plugin based on Xapian"
-arch=('x86_64')
-url="https://github.com/grosjo/fts-xapian;
-license=('LGPL2.1')
-depends=("dovecot=${_dcpkgver}" 'icu' 'xapian-core')
-install="$pkgname.install"
-source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha512sums=('ad5512ea703a49d0dffe3a18ff890570650019831c9742a3db2d5c58bb9d4254e0709e7abe5cd9d80c991a3ce621eb9e8fcc89a27b4af7f569238821a684d7cd')
-b2sums=('e1121e2842ec486f0161206e1928098cc4d402704e72dbe1740210bd49e4bf4c1e9b0b4f60156a5c2afb6fe624deb8e0fc1e9e2263281a2c713a71492d889df6')
-
-build() {
-  cd "$_pkgname-$pkgver"
-  autoreconf -vi
-  ./configure \
---prefix=/usr \
---with-dovecot=/usr/lib/dovecot
-
-  make
-
-  # generate systemd unit files
-  mkdir build
-  sed "s:@@prefix@@:/usr/bin:" contrib/systemd/dovecot-fts-optimize.service.in 
\
-> build/dovecot-fts-optimize.service
-  sed "s:@@index_frequency@@:daily:" 
contrib/systemd/dovecot-fts-optimize.timer.in \
-> build/dovecot-fts-optimize.timer
-}
-
-package() {
-  cd "$_pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-
-  # documentation
-  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
-
-  # systemd integration
-  install -vDm644 -t "$pkgdir/usr/lib/systemd/system" \
-build/dovecot-fts-optimize.{service,timer}
-}

Copied: dovecot-fts-xapian/repos/community-x86_64/PKGBUILD (from rev 1054610, 
dovecot-fts-xapian/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-11-24 06:59:52 UTC (rev 1054611)
@@ -0,0 +1,52 @@
+# Maintainer: George Rawlinson 
+# Maintainer: Thore Bödecker 
+
+# This must be built against the version of dovecot being used,
+# otherwise it will fail to load and thus work.
+# Specify the version of dovecot to be used here:
+_dcpkgver=2.3.16
+# Make sure to bump pkgrel if changing this.
+
+pkgname=dovecot-fts-xapian
+_pkgname="${pkgname#dovecot-}"
+pkgver=1.5.2
+pkgrel=1
+pkgdesc="Dovecot FTS plugin based on Xapian"
+arch=('x86_64')
+url="https://github.com/grosjo/fts-xapian;
+license=('LGPL2.1')
+depends=("dovecot=${_dcpkgver}" 'icu' 'xapian-core')
+install="$pkgname.install"
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha512sums=('afbdd9866d61104d22875eb326a2a893ef0b252e6a493c939db8a29f2d7460a70c8e7648729840ea89d60c374ce75bb34a9c90e7ca2d9c4a9239fa3b2f5905a4')
+b2sums=('25ab535a93bbc6c0ce6c50cf01916b3349c7a34d9746ea1f87e1bf45eaa643370a3f6a5e967a168b29d0bd601f3dddbff43dd75eab64f4d62d5277f78374cf9f')
+
+build() {
+  cd "$_pkgname-$pkgver"
+  autoreconf -vi
+  ./configure \
+--prefix=/usr \
+--with-dovecot=/usr/lib/dovecot
+
+  make
+
+  # generate systemd unit files
+  mkdir build
+  sed "s:@@prefix@@:/usr/bin:" contrib/systemd/dovecot-fts-optimize.service.in 
\
+> build/dovecot-fts-optimize.service
+  sed "s:@@index_frequency@@:daily:" 
contrib/systemd/dovecot-fts-optimize.timer.in \
+> build/dovecot-fts-optimize.timer
+}
+
+package() {
+  cd "$_pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
+
+  # systemd integration
+  install -vDm644 -t "$pkgdir/usr/lib/systemd/system" \
+build/dovecot-fts-optimize.{service,timer}
+}

Deleted: dovecot-fts-xapian.install
===
--- dovecot-fts-xapian.install  2021-11-24 06:59:06 UTC (rev 1054610)
+++ dovecot-fts-xapian.install  2021-11-24 06:59:52 UTC (rev 1054611)
@@ -1,12 +0,0 @@
-post_install() {
-   cat <<-EOF
-
-   Documentation is included in 

[arch-commits] Commit in dovecot-fts-xapian/trunk (PKGBUILD)

2021-11-23 Thread George Rawlinson via arch-commits
Date: Wednesday, November 24, 2021 @ 06:59:06
  Author: grawlinson
Revision: 1054610

upgpkg: dovecot-fts-xapian 1.5.2-1

New upstream release.

Modified:
  dovecot-fts-xapian/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-24 03:16:05 UTC (rev 1054609)
+++ PKGBUILD2021-11-24 06:59:06 UTC (rev 1054610)
@@ -9,8 +9,8 @@
 
 pkgname=dovecot-fts-xapian
 _pkgname="${pkgname#dovecot-}"
-pkgver=1.5.1
-pkgrel=2
+pkgver=1.5.2
+pkgrel=1
 pkgdesc="Dovecot FTS plugin based on Xapian"
 arch=('x86_64')
 url="https://github.com/grosjo/fts-xapian;
@@ -18,8 +18,8 @@
 depends=("dovecot=${_dcpkgver}" 'icu' 'xapian-core')
 install="$pkgname.install"
 source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha512sums=('ad5512ea703a49d0dffe3a18ff890570650019831c9742a3db2d5c58bb9d4254e0709e7abe5cd9d80c991a3ce621eb9e8fcc89a27b4af7f569238821a684d7cd')
-b2sums=('e1121e2842ec486f0161206e1928098cc4d402704e72dbe1740210bd49e4bf4c1e9b0b4f60156a5c2afb6fe624deb8e0fc1e9e2263281a2c713a71492d889df6')
+sha512sums=('afbdd9866d61104d22875eb326a2a893ef0b252e6a493c939db8a29f2d7460a70c8e7648729840ea89d60c374ce75bb34a9c90e7ca2d9c4a9239fa3b2f5905a4')
+b2sums=('25ab535a93bbc6c0ce6c50cf01916b3349c7a34d9746ea1f87e1bf45eaa643370a3f6a5e967a168b29d0bd601f3dddbff43dd75eab64f4d62d5277f78374cf9f')
 
 build() {
   cd "$_pkgname-$pkgver"



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

2021-11-23 Thread Caleb Maclennan via arch-commits
Date: Wednesday, November 24, 2021 @ 02:36:28
  Author: alerque
Revision: 1054536

archrelease: copy trunk to community-x86_64

Added:
  age/repos/community-x86_64/PKGBUILD
(from rev 1054535, age/trunk/PKGBUILD)
Deleted:
  age/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-11-24 02:35:41 UTC (rev 1054535)
+++ PKGBUILD2021-11-24 02:36:28 UTC (rev 1054536)
@@ -1,38 +0,0 @@
-# Maintainer: Christian Rebischke 
-# Maintainer: Caleb Maclennan 
-# Contributor: Tharre 
-
-pkgname=age
-pkgver=1.0.0
-pkgrel=3
-pkgdesc='A simple, modern and secure file encryption tool'
-arch=('x86_64')
-url="https://github.com/FiloSottile/$pkgname;
-license=('BSD')
-depends=('glibc')
-makedepends=('go')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('77ea1af03a76339f4e934222bc9fc6119698080d0e03011c79b25119e0e8a1e6c0772ede5069cd63bde48cfaa4d355c897912741680e8b0c52d4c518182c2f7f')
-
-build() {
-cd "$pkgname-$pkgver"
-go build \
-  -trimpath \
-  -buildmode=pie \
-  -mod=readonly \
-  -modcacherw \
-  -ldflags "-linkmode external -extldflags \"$LDFLAGS\"" \
-  -o . ./...
-}
-
-check() {
-cd "$pkgname-$pkgver"
-go test ./...
-}
-
-package() {
-cd "$pkgname-$pkgver"
-install -Dm755 -t "$pkgdir/usr/bin/" age age-keygen
-install -Dm644 -t "$pkgdir/usr/share/man/man1/" doc/age.1 doc/age-keygen.1
-install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname/" LICENSE
-}

Copied: age/repos/community-x86_64/PKGBUILD (from rev 1054535, 
age/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-11-24 02:36:28 UTC (rev 1054536)
@@ -0,0 +1,38 @@
+# Maintainer: Christian Rebischke 
+# Maintainer: Caleb Maclennan 
+# Contributor: Tharre 
+
+pkgname=age
+pkgver=1.0.0
+pkgrel=4
+pkgdesc='A simple, modern and secure file encryption tool'
+arch=('x86_64')
+url="https://github.com/FiloSottile/$pkgname;
+license=('BSD')
+depends=('glibc')
+makedepends=('go')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('77ea1af03a76339f4e934222bc9fc6119698080d0e03011c79b25119e0e8a1e6c0772ede5069cd63bde48cfaa4d355c897912741680e8b0c52d4c518182c2f7f')
+
+build() {
+cd "$pkgname-$pkgver"
+go build \
+  -trimpath \
+  -buildmode=pie \
+  -mod=readonly \
+  -modcacherw \
+  -ldflags "-X main.Version=$pkgver -linkmode external -extldflags 
\"$LDFLAGS\"" \
+  -o . ./...
+}
+
+check() {
+cd "$pkgname-$pkgver"
+go test ./...
+}
+
+package() {
+cd "$pkgname-$pkgver"
+install -Dm755 -t "$pkgdir/usr/bin/" age age-keygen
+install -Dm644 -t "$pkgdir/usr/share/man/man1/" doc/age.1 doc/age-keygen.1
+install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname/" LICENSE
+}



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

2021-11-23 Thread Caleb Maclennan via arch-commits
Date: Wednesday, November 24, 2021 @ 02:35:41
  Author: alerque
Revision: 1054535

upgpkg: age 1.0.0-4; build version number into binary

Modified:
  age/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-24 02:33:33 UTC (rev 1054534)
+++ PKGBUILD2021-11-24 02:35:41 UTC (rev 1054535)
@@ -4,7 +4,7 @@
 
 pkgname=age
 pkgver=1.0.0
-pkgrel=3
+pkgrel=4
 pkgdesc='A simple, modern and secure file encryption tool'
 arch=('x86_64')
 url="https://github.com/FiloSottile/$pkgname;
@@ -21,7 +21,7 @@
   -buildmode=pie \
   -mod=readonly \
   -modcacherw \
-  -ldflags "-linkmode external -extldflags \"$LDFLAGS\"" \
+  -ldflags "-X main.Version=$pkgver -linkmode external -extldflags 
\"$LDFLAGS\"" \
   -o . ./...
 }
 



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

2021-11-23 Thread Caleb Maclennan via arch-commits
Date: Wednesday, November 24, 2021 @ 02:33:33
  Author: alerque
Revision: 1054534

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-11-24 02:32:27 UTC (rev 1054533)
+++ PKGBUILD2021-11-24 02:33:33 UTC (rev 1054534)
@@ -1,91 +0,0 @@
-# Maintainer: Caleb Maclennan 
-# Contributor: Felix Yan 
-# Contributor: Yaron de Leeuw 
-
-_pyname=isort
-pkgname=python-$_pyname
-pkgver=5.10.1
-pkgrel=1
-pkgdesc='A Python utility / library to sort Python imports'
-arch=(any)
-url="https://github.com/PyCQA/$_pyname;
-license=(MIT)
-_pydeps=(toml)
-depends=(python
- "${_pydeps[@]/#/python-}")
-makedepends=(python-dephell
- python-setuptools)
-_pycheckdeps=(black
-  hypothesis-auto
-  hypothesmith
-  libcst
-  natsort
-  ## deps that make it harder not easier to tell if things work
-  # pip
-  # pip-api
-  # pipreqs
-  pytest
-  pytest-mock
-  requirementslib)
-checkdepends=(git
-  pylama
-  "${_pycheckdeps[@]/#/python-}")
-_archive="$_pyname-$pkgver"
-source=("$url/archive/$pkgver/$_archive.tar.gz")
-sha256sums=('7f3a99bb1e93e58ae10737b8a31d45aa03a096b1c4cbbbd55f05226e40089cf7')
-
-prepare() {
-   cd "$_archive"
-
-   # Devendor toml
-   rm -r isort/_vendored
-   sed -i 's/from ._vendored //' isort/settings.py
-
-   # Upstream is poetry only
-   dephell deps convert --from pyproject.toml --to setup.py
-
-   ## Skipping example integration tests
-   # for _plugin in example_*; do
-   # pushd $_plugin
-   # dephell deps convert --from pyproject.toml --to setup.py
-   # popd
-   # done
-}
-
-build() {
-   cd "$_archive"
-   python setup.py build
-}
-
-check() {
-   cd "$_archive"
-   ## Skipping example integration tests
-   # python setup.py install --root="$PWD/tmp_install" --optimize=1
-   # for _plugin in example_*; do
-   # pushd $_plugin
-   # python setup.py install 
--root="$srcdir/isort-$pkgver/tmp_install" --optimize=1
-   # popd
-   # done
-   # 
PYTHONPATH="$PWD/example_isort_formatting_plugin:$PWD/example_shared_isort_profile:$PWD/tmp_install/usr/lib/python3.9/site-packages"
 PATH="$PWD/tmp_install/usr/bin:$PATH" \
-   pytest -p no:warnings \
-   --deselect 
tests/unit/test_deprecated_finders.py::TestRequirementsFinder::test_requirements_dir
 $(: having pip in ruins other tests ) \
-   --deselect 
tests/unit/test_deprecated_finders.py::test_requirements_finder $(: having pip 
in ruins other tests ) \
-   --deselect 
tests/unit/test_deprecated_finders.py::test_pipfile_finder $(: having pip in 
ruins other tests ) \
-   --deselect 
tests/unit/test_isort.py::test_settings_path_skip_issue_909 $(: example 
integrations ) \
-   --deselect tests/unit/test_isort.py::test_skip_paths_issue_938 
$(: example integrations ) \
-   --deselect 
tests/unit/test_ticketed_features.py::test_isort_supports_shared_profiles_issue_970
 $(: example integrations ) \
-   --deselect 
tests/unit/test_literal.py::test_value_assignment_list $(: unknown) \
-   --deselect 
tests/unit/test_ticketed_features.py::test_isort_supports_formatting_plugins_issue_1353
 $(: unknown) \
-   --deselect 
tests/unit/test_ticketed_features.py::test_isort_literals_issue_1358 $(: 
unknown ) \
-   --deselect 
tests/unit/test_ticketed_features.py::test_sort_configurable_sort_issue_1732 
$(: unknown ) \
-   --deselect tests/integration/test_setting_combinations.py $(: 
unknown ) \
-   --deselect 
tests/integration/test_projects_using_isort.py::test_typeshed $(: requires 
network ) \
-   --deselect tests/test_importable.py::test_importable $(: just 
weird ) \
-   --deselect tests/benchmark/test_api.py $(: no benchmarks thanks 
)
-}
-
-package() {
-   cd "$_archive"
-   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-   install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname/" LICENSE
-}

Copied: python-isort/repos/community-any/PKGBUILD (from rev 1054533, 
python-isort/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-11-24 02:33:33 UTC (rev 1054534)
@@ -0,0 +1,92 @@
+# Maintainer: Caleb Maclennan 
+# Contributor: Felix Yan 
+# Contributor: Yaron de Leeuw 
+
+_pyname=isort

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

2021-11-23 Thread Caleb Maclennan via arch-commits
Date: Wednesday, November 24, 2021 @ 02:32:27
  Author: alerque
Revision: 1054533

upgpkg: python-isort 5.10.1-2

Modified:
  python-isort/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-24 01:07:31 UTC (rev 1054532)
+++ PKGBUILD2021-11-24 02:32:27 UTC (rev 1054533)
@@ -5,12 +5,13 @@
 _pyname=isort
 pkgname=python-$_pyname
 pkgver=5.10.1
-pkgrel=1
+pkgrel=2
 pkgdesc='A Python utility / library to sort Python imports'
 arch=(any)
 url="https://github.com/PyCQA/$_pyname;
 license=(MIT)
-_pydeps=(toml)
+_pydeps=(toml
+ tomli)
 depends=(python
  "${_pydeps[@]/#/python-}")
 makedepends=(python-dephell



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

2021-11-23 Thread Daniel Bermond via arch-commits
Date: Wednesday, November 24, 2021 @ 01:07:31
  Author: dbermond
Revision: 1054532

archrelease: copy trunk to community-x86_64

Added:
  avisynthplus/repos/community-x86_64/PKGBUILD
(from rev 1054531, avisynthplus/trunk/PKGBUILD)
  avisynthplus/repos/community-x86_64/avisynthplus.xml
(from rev 1054531, avisynthplus/trunk/avisynthplus.xml)
Deleted:
  avisynthplus/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   70 +
 avisynthplus.xml |9 ++
 2 files changed, 53 insertions(+), 26 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-11-24 01:07:01 UTC (rev 1054531)
+++ PKGBUILD2021-11-24 01:07:31 UTC (rev 1054532)
@@ -1,26 +0,0 @@
-# Maintainer: Daniel Bermond 
-
-pkgname=avisynthplus
-pkgver=3.7.0
-pkgrel=1
-pkgdesc='An improved version of the AviSynth frameserver'
-arch=('x86_64')
-url='https://avs-plus.net/'
-license=('GPL')
-depends=('gcc-libs')
-optdepends=('devil: for ImageSeq plugin')
-makedepends=('cmake' 'devil')
-source=("https://github.com/AviSynth/AviSynthPlus/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('8906d9e46dc90a194413d69b710e3106c0aafddc0c5c62004885d0c3beb79862')
-
-build() {
-cmake -B build -S "AviSynthPlus-${pkgver}" \
--DCMAKE_BUILD_TYPE:STRING='None' \
--DCMAKE_INSTALL_PREFIX:PATH='/usr' \
--Wno-dev
-make -C build
-}
-
-package() {
-make -C build DESTDIR="$pkgdir" install
-}

Copied: avisynthplus/repos/community-x86_64/PKGBUILD (from rev 1054531, 
avisynthplus/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-11-24 01:07:31 UTC (rev 1054532)
@@ -0,0 +1,44 @@
+# Maintainer: Daniel Bermond 
+
+pkgname=avisynthplus
+pkgver=3.7.0
+pkgrel=2
+pkgdesc='An improved version of the AviSynth frameserver'
+arch=('x86_64')
+url='https://avs-plus.net/'
+license=('GPL')
+depends=('gcc-libs' 'hicolor-icon-theme')
+optdepends=('devil: for ImageSeq plugin')
+makedepends=('cmake' 'devil')
+source=("https://github.com/AviSynth/AviSynthPlus/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;
+
'010-avisynthplus-gcc11-fix.patch'::'https://github.com/AviSynth/AviSynthPlus/commit/a1e33be91dfa48b8db5ee358ea4fcea952e80e4f.patch'
+'avisynthplus.xml')
+sha256sums=('8906d9e46dc90a194413d69b710e3106c0aafddc0c5c62004885d0c3beb79862'
+'6eb2b108c4689a5ca71e6c3da5af62fd2fb717bdcf4835a3a38eb67159d80072'
+'c4b270a3df7fbe1c153400215169c4ae4cae3b7a8710c843393e3a6ed0fd8a3e')
+
+prepare() {
+patch -d "AviSynthPlus-${pkgver}" -Np1 -i 
"${srcdir}/010-avisynthplus-gcc11-fix.patch"
+}
+
+build() {
+cmake -B build -S "AviSynthPlus-${pkgver}" \
+-DCMAKE_BUILD_TYPE:STRING='None' \
+-DCMAKE_INSTALL_PREFIX:PATH='/usr' \
+-Wno-dev
+make -C build
+}
+
+package() {
+make -C build DESTDIR="$pkgdir" install
+install -D -m644 avisynthplus.xml -t "${pkgdir}/usr/share/mime/packages"
+
+local _icon
+local _res
+while read -r -d '' _icon
+do
+_res="$(sed 's/[[:alpha:]]*\([0-9]\+\)\.png/\1/' <<< "${_icon##*/}")"
+[ -n "$_res" ] && install -D -m644 "$_icon" \
+
"${pkgdir}/usr/share/icons/hicolor/${_res}x${_res}/mimetypes/avisynthplus-script.png"
+done < <(find "AviSynthPlus-${pkgver}/distrib/Icons/Rastered" -type f 
-name 'AvsPlusIcon*.png' -print0)
+}

Copied: avisynthplus/repos/community-x86_64/avisynthplus.xml (from rev 1054531, 
avisynthplus/trunk/avisynthplus.xml)
===
--- avisynthplus.xml(rev 0)
+++ avisynthplus.xml2021-11-24 01:07:31 UTC (rev 1054532)
@@ -0,0 +1,9 @@
+
+
+  
+
+
+
+AviSynthPlus script
+  
+



[arch-commits] Commit in avisynthplus/trunk (PKGBUILD avisynthplus.xml)

2021-11-23 Thread Daniel Bermond via arch-commits
Date: Wednesday, November 24, 2021 @ 01:07:01
  Author: dbermond
Revision: 1054531

upgpkg: avisynthplus 3.7.0-2: FS#72368 + gcc11 fix

Added:
  avisynthplus/trunk/avisynthplus.xml
Modified:
  avisynthplus/trunk/PKGBUILD

--+
 PKGBUILD |   26 ++
 avisynthplus.xml |9 +
 2 files changed, 31 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-11-23 22:09:55 UTC (rev 1054530)
+++ PKGBUILD2021-11-24 01:07:01 UTC (rev 1054531)
@@ -2,17 +2,25 @@
 
 pkgname=avisynthplus
 pkgver=3.7.0
-pkgrel=1
+pkgrel=2
 pkgdesc='An improved version of the AviSynth frameserver'
 arch=('x86_64')
 url='https://avs-plus.net/'
 license=('GPL')
-depends=('gcc-libs')
+depends=('gcc-libs' 'hicolor-icon-theme')
 optdepends=('devil: for ImageSeq plugin')
 makedepends=('cmake' 'devil')
-source=("https://github.com/AviSynth/AviSynthPlus/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('8906d9e46dc90a194413d69b710e3106c0aafddc0c5c62004885d0c3beb79862')
+source=("https://github.com/AviSynth/AviSynthPlus/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;
+
'010-avisynthplus-gcc11-fix.patch'::'https://github.com/AviSynth/AviSynthPlus/commit/a1e33be91dfa48b8db5ee358ea4fcea952e80e4f.patch'
+'avisynthplus.xml')
+sha256sums=('8906d9e46dc90a194413d69b710e3106c0aafddc0c5c62004885d0c3beb79862'
+'6eb2b108c4689a5ca71e6c3da5af62fd2fb717bdcf4835a3a38eb67159d80072'
+'c4b270a3df7fbe1c153400215169c4ae4cae3b7a8710c843393e3a6ed0fd8a3e')
 
+prepare() {
+patch -d "AviSynthPlus-${pkgver}" -Np1 -i 
"${srcdir}/010-avisynthplus-gcc11-fix.patch"
+}
+
 build() {
 cmake -B build -S "AviSynthPlus-${pkgver}" \
 -DCMAKE_BUILD_TYPE:STRING='None' \
@@ -23,4 +31,14 @@
 
 package() {
 make -C build DESTDIR="$pkgdir" install
+install -D -m644 avisynthplus.xml -t "${pkgdir}/usr/share/mime/packages"
+
+local _icon
+local _res
+while read -r -d '' _icon
+do
+_res="$(sed 's/[[:alpha:]]*\([0-9]\+\)\.png/\1/' <<< "${_icon##*/}")"
+[ -n "$_res" ] && install -D -m644 "$_icon" \
+
"${pkgdir}/usr/share/icons/hicolor/${_res}x${_res}/mimetypes/avisynthplus-script.png"
+done < <(find "AviSynthPlus-${pkgver}/distrib/Icons/Rastered" -type f 
-name 'AvsPlusIcon*.png' -print0)
 }

Added: avisynthplus.xml
===
--- avisynthplus.xml(rev 0)
+++ avisynthplus.xml2021-11-24 01:07:01 UTC (rev 1054531)
@@ -0,0 +1,9 @@
+
+
+  
+
+
+
+AviSynthPlus script
+  
+



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

2021-11-23 Thread Antonio Rojas via arch-commits
Date: Tuesday, November 23, 2021 @ 22:09:55
  Author: arojas
Revision: 1054530

archrelease: copy trunk to community-x86_64

Added:
  gupnp-tools/repos/community-x86_64/PKGBUILD
(from rev 1054529, gupnp-tools/trunk/PKGBUILD)
Deleted:
  gupnp-tools/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-11-23 22:09:44 UTC (rev 1054529)
+++ PKGBUILD2021-11-23 22:09:55 UTC (rev 1054530)
@@ -1,26 +0,0 @@
-# Maintainer: Balló György 
-
-pkgname=gupnp-tools
-pkgver=0.10.1
-pkgrel=1
-pkgdesc="Utilities and demos to work with UPnP"
-arch=('x86_64')
-url="https://wiki.gnome.org/Projects/GUPnP;
-license=('GPL')
-depends=('gtksourceview4' 'gupnp' 'gupnp-av')
-makedepends=('meson')
-source=("https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz;)
-sha256sums=('4ea96d167462b3a548efc4fc4ea089fe518d7d29be349d1cce8982b9ffb53b4a')
-
-build() {
-  arch-meson $pkgname-$pkgver build
-  meson compile -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-package() {
-  meson install -C build --destdir "$pkgdir"
-}

Copied: gupnp-tools/repos/community-x86_64/PKGBUILD (from rev 1054529, 
gupnp-tools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-11-23 22:09:55 UTC (rev 1054530)
@@ -0,0 +1,26 @@
+# Maintainer: Balló György 
+
+pkgname=gupnp-tools
+pkgver=0.10.2
+pkgrel=1
+pkgdesc="Utilities and demos to work with UPnP"
+arch=('x86_64')
+url="https://wiki.gnome.org/Projects/GUPnP;
+license=('GPL')
+depends=('gtksourceview4' 'gupnp' 'gupnp-av')
+makedepends=('meson')
+source=("https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz;)
+sha256sums=('6de49ef4b375b8a164f74b766168b1184e0d28196b6b07a4f5341f08dfd85d6c')
+
+build() {
+  arch-meson $pkgname-$pkgver build
+  meson compile -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  meson install -C build --destdir "$pkgdir"
+}



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

2021-11-23 Thread Antonio Rojas via arch-commits
Date: Tuesday, November 23, 2021 @ 22:09:44
  Author: arojas
Revision: 1054529

Update to 0.10.2

Modified:
  gupnp-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-23 22:06:34 UTC (rev 1054528)
+++ PKGBUILD2021-11-23 22:09:44 UTC (rev 1054529)
@@ -1,7 +1,7 @@
 # Maintainer: Balló György 
 
 pkgname=gupnp-tools
-pkgver=0.10.1
+pkgver=0.10.2
 pkgrel=1
 pkgdesc="Utilities and demos to work with UPnP"
 arch=('x86_64')
@@ -10,7 +10,7 @@
 depends=('gtksourceview4' 'gupnp' 'gupnp-av')
 makedepends=('meson')
 
source=("https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz;)
-sha256sums=('4ea96d167462b3a548efc4fc4ea089fe518d7d29be349d1cce8982b9ffb53b4a')
+sha256sums=('6de49ef4b375b8a164f74b766168b1184e0d28196b6b07a4f5341f08dfd85d6c')
 
 build() {
   arch-meson $pkgname-$pkgver build



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

2021-11-23 Thread Antonio Rojas via arch-commits
Date: Tuesday, November 23, 2021 @ 22:06:34
  Author: arojas
Revision: 1054528

archrelease: copy trunk to community-x86_64

Added:
  ghostwriter/repos/community-x86_64/PKGBUILD
(from rev 1054527, ghostwriter/trunk/PKGBUILD)
Deleted:
  ghostwriter/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-11-23 22:06:20 UTC (rev 1054527)
+++ PKGBUILD2021-11-23 22:06:34 UTC (rev 1054528)
@@ -1,39 +0,0 @@
-# Maintainer: Balló György 
-# Contributor: Jakob Gahde 
-# Contributor: Bastien "neitsab" Traverse 
-# Contributor: Icaro Perseo 
-# Contributor: Philipp 'TamCore' B. 
-
-pkgname=ghostwriter
-pkgver=2.0.2
-pkgrel=1
-pkgdesc='Aesthetic, distraction-free Markdown editor'
-arch=('x86_64')
-url='https://wereturtle.github.io/ghostwriter/'
-license=('GPL3')
-depends=('hunspell' 'qt5-svg' 'qt5-webengine')
-makedepends=('qt5-tools')
-optdepends=('cmark: processing and rendering CommonMark'
-'mathjax: formula rendering in live preview'
-'pandoc: Pandoc supported Markdown flavors and export to various 
formats')
-source=("https://github.com/wereturtle/ghostwriter/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha256sums=('9b7b02a58d78f5cbc535bdf5821f0012c66d6e92fc39b8b80ca59d23adb4f71c')
-
-prepare() {
-  cd $pkgname-$pkgver
-  # Unbundle MathJax
-  sed -i 's/typeof window.MathJax !==/typeof window.MathJax.typeset !==/' 
resources/preview.html
-  sed -i 
's|qrc:3rdparty/MathJax/bin/tex-svg-full.js|file:///usr/share/mathjax/tex-svg-full.js|'
 resources/preview.html
-  sed -i '/MathJax/d' resources.qrc
-}
-
-build() {
-  cd $pkgname-$pkgver
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: ghostwriter/repos/community-x86_64/PKGBUILD (from rev 1054527, 
ghostwriter/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-11-23 22:06:34 UTC (rev 1054528)
@@ -0,0 +1,39 @@
+# Maintainer: Balló György 
+# Contributor: Jakob Gahde 
+# Contributor: Bastien "neitsab" Traverse 
+# Contributor: Icaro Perseo 
+# Contributor: Philipp 'TamCore' B. 
+
+pkgname=ghostwriter
+pkgver=2.1.0
+pkgrel=1
+pkgdesc='Aesthetic, distraction-free Markdown editor'
+arch=('x86_64')
+url='https://wereturtle.github.io/ghostwriter/'
+license=('GPL3')
+depends=('hunspell' 'qt5-svg' 'qt5-webengine')
+makedepends=('qt5-tools')
+optdepends=('cmark: processing and rendering CommonMark'
+'mathjax: formula rendering in live preview'
+'pandoc: Pandoc supported Markdown flavors and export to various 
formats')
+source=("https://github.com/wereturtle/ghostwriter/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha256sums=('5a377e006bec14abbb935ed4ad027f489051b3ab49a0e33cc8e07c67e5b4799c')
+
+prepare() {
+  cd $pkgname-$pkgver
+  # Unbundle MathJax
+  sed -i 's/typeof window.MathJax !==/typeof window.MathJax.typeset !==/' 
resources/preview.html
+  sed -i 
's|qrc:3rdparty/MathJax/bin/tex-svg-full.js|file:///usr/share/mathjax/tex-svg-full.js|'
 resources/preview.html
+  sed -i '/MathJax/d' resources.qrc
+}
+
+build() {
+  cd $pkgname-$pkgver
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+}



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

2021-11-23 Thread Antonio Rojas via arch-commits
Date: Tuesday, November 23, 2021 @ 22:06:20
  Author: arojas
Revision: 1054527

Update to 2.1.0

Modified:
  ghostwriter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-23 22:01:54 UTC (rev 1054526)
+++ PKGBUILD2021-11-23 22:06:20 UTC (rev 1054527)
@@ -5,7 +5,7 @@
 # Contributor: Philipp 'TamCore' B. 
 
 pkgname=ghostwriter
-pkgver=2.0.2
+pkgver=2.1.0
 pkgrel=1
 pkgdesc='Aesthetic, distraction-free Markdown editor'
 arch=('x86_64')
@@ -17,7 +17,7 @@
 'mathjax: formula rendering in live preview'
 'pandoc: Pandoc supported Markdown flavors and export to various 
formats')
 
source=("https://github.com/wereturtle/ghostwriter/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha256sums=('9b7b02a58d78f5cbc535bdf5821f0012c66d6e92fc39b8b80ca59d23adb4f71c')
+sha256sums=('5a377e006bec14abbb935ed4ad027f489051b3ab49a0e33cc8e07c67e5b4799c')
 
 prepare() {
   cd $pkgname-$pkgver



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

2021-11-23 Thread Andreas Radke via arch-commits
Date: Tuesday, November 23, 2021 @ 22:04:00
  Author: andyrtr
Revision: 428998

archrelease: copy trunk to testing-x86_64

Added:
  mesa-demos/repos/testing-x86_64/LICENSE
(from rev 428997, mesa-demos/trunk/LICENSE)
  mesa-demos/repos/testing-x86_64/PKGBUILD
(from rev 428997, mesa-demos/trunk/PKGBUILD)
  mesa-demos/repos/testing-x86_64/mesa-demos.install
(from rev 428997, mesa-demos/trunk/mesa-demos.install)
Deleted:
  mesa-demos/repos/testing-x86_64/LICENSE
  mesa-demos/repos/testing-x86_64/PKGBUILD
  mesa-demos/repos/testing-x86_64/mesa-demos.install

+
 LICENSE|  164 +--
 PKGBUILD   |  115 ++-
 mesa-demos.install |   12 +--
 3 files changed, 148 insertions(+), 143 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2021-11-23 22:03:48 UTC (rev 428997)
+++ LICENSE 2021-11-23 22:04:00 UTC (rev 428998)
@@ -1,82 +0,0 @@
-Disclaimer
-
-Mesa is a 3-D graphics library with an API which is very similar to
-that of OpenGL*
-To the extent that Mesa utilizes the OpenGL command syntax or state
-machine, it is being used with authorization from Silicon Graphics,
-Inc.(SGI). However, the author does not possess an OpenGL license
-from SGI, and makes no claim that Mesa is in any way a compatible
-replacement for OpenGL or associated with SGI. Those who want a
-licensed implementation of OpenGL should contact a licensed
-vendor.
-
-Please do not refer to the library as MesaGL (for legal
-reasons). It's just Mesa or The Mesa 3-D graphics
-library
-
-* OpenGL is a trademark of Silicon Graphics Incorporated.
-
-License / Copyright Information
-
-The Mesa distribution consists of several components.  Different copyrights
-and licenses apply to different components.  For example, GLUT is copyrighted
-by Mark Kilgard, some demo programs are copyrighted by SGI, some of the Mesa
-device drivers are copyrighted by their authors.  See below for a list of
-Mesa's main components and the license for each.
-
-The core Mesa library is licensed according to the terms of the MIT license.
-This allows integration with the XFree86, Xorg and DRI projects.
-
-The default Mesa license is as follows:
-
-Copyright (C) 1999-2007  Brian Paul   All Rights Reserved.
-
-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
-BRIAN PAUL 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.
-
-Attention, Contributors
-
-When contributing to the Mesa project you must agree to the licensing terms
-of the component to which you're contributing.
-The following section lists the primary components of the Mesa distribution
-and their respective licenses.
-
-
-Mesa Component Licenses
-
-Component Location   Primary Author  License
-
-Main Mesa codesrc/mesa/  Brian Paul  Mesa (MIT)
-
-Device driverssrc/mesa/drivers/* See drivers See drivers
-
-Ext headers   include/GL/glext.h SGI SGI Free B
-  include/GL/glxext.h
-
-GLUT  src/glut/  Mark KilgardMark's copyright
-
-Mesa GLU library  src/glu/mesa/  Brian Paul  GNU-LGPL
-
-SGI GLU library   src/glu/sgi/   SGI SGI Free B
-
-demo programs progs/demos/   various see source files
-
-X demos   progs/xdemos/  Brian Paul  see source files
-
-SGI demos progs/samples/ SGI SGI copyright
-
-RedBook demos progs/redbook/ SGI SGI copyright

Copied: mesa-demos/repos/testing-x86_64/LICENSE (from rev 428997, 
mesa-demos/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2021-11-23 22:04:00 UTC (rev 428998)
@@ -0,0 +1,82 @@
+Disclaimer
+
+Mesa is a 3-D graphics library with an API which is very 

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

2021-11-23 Thread Andreas Radke via arch-commits
Date: Tuesday, November 23, 2021 @ 22:03:48
  Author: andyrtr
Revision: 428997

upgpkg: mesa-demos 8.4.0-6: actually remove the utils from demos package

Modified:
  mesa-demos/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-23 21:47:43 UTC (rev 428996)
+++ PKGBUILD2021-11-23 22:03:48 UTC (rev 428997)
@@ -3,7 +3,7 @@
 pkgbase=mesa-demos
 pkgname=('mesa-demos' 'mesa-utils')
 pkgver=8.4.0
-pkgrel=5
+pkgrel=6
 arch=('x86_64')
 url="https://www.mesa3d.org/;
 license=('custom')
@@ -35,10 +35,13 @@
   make DESTDIR="${pkgdir}" install
   
   # add missing egl files
-  install -m 0755 
src/egl/opengl/{eglgears_x11,eglinfo,eglkms,egltri_x11,peglgears,xeglgears,xeglthreads}
 "${pkgdir}/usr/bin/"
+  install -m 0755 
src/egl/opengl/{eglgears_x11,eglkms,egltri_x11,peglgears,xeglgears,xeglthreads} 
"${pkgdir}/usr/bin/"
   
   install -m755 -d "${pkgdir}/usr/share/licenses/mesa-demos"
   install -m644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/mesa-demos/"
+
+  # remove utils
+  rm ${pkgdir}/usr/bin/{glxinfo,glxgears,eglinfo}
 }
 
 package_mesa-utils() {
@@ -47,8 +50,10 @@
   depends=('libgl')
   provides=('glxinfo' 'glxgears' 'eglinfo')
 
-  install -Dm755 ../pkg/mesa-demos/usr/bin/{glxinfo,glxgears,eglinfo} -t 
"$pkgdir"/usr/bin
-  rm ../pkg/mesa-demos/usr/bin/{glxinfo,glxgears,eglinfo}
+  cd mesa-demos-$pkgver
+  install -Dm 0755 src/egl/opengl/eglinfo -t "${pkgdir}/usr/bin/"
+  install -Dm 0755 src/xdemos/{glxinfo,glxgears} -t "${pkgdir}/usr/bin/"
+
   
   install -m755 -d "${pkgdir}/usr/share/licenses/$pkgname"
   install -m644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/$pkgname/"



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

2021-11-23 Thread Antonio Rojas via arch-commits
Date: Tuesday, November 23, 2021 @ 22:01:54
  Author: arojas
Revision: 1054526

archrelease: copy trunk to community-x86_64

Added:
  gnome-flashback/repos/community-x86_64/PKGBUILD
(from rev 1054525, gnome-flashback/trunk/PKGBUILD)
  gnome-flashback/repos/community-x86_64/gnome-flashback.pam
(from rev 1054525, gnome-flashback/trunk/gnome-flashback.pam)
Deleted:
  gnome-flashback/repos/community-x86_64/PKGBUILD
  gnome-flashback/repos/community-x86_64/gnome-flashback.pam

-+
 PKGBUILD|   69 --
 gnome-flashback.pam |   12 
 2 files changed, 40 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-11-23 22:01:35 UTC (rev 1054525)
+++ PKGBUILD2021-11-23 22:01:54 UTC (rev 1054526)
@@ -1,35 +0,0 @@
-# Maintainer: Balló György 
-
-pkgname=gnome-flashback
-pkgver=3.40.0
-pkgrel=1
-pkgdesc='GNOME Flashback session'
-arch=('x86_64')
-url='https://wiki.gnome.org/Projects/GnomeFlashback'
-license=('GPL')
-depends=('gnome-bluetooth' 'gnome-panel' 'gnome-session' 
'gnome-settings-daemon'
- 'gnome-themes-extra' 'libibus' 'libxkbfile' 'metacity')
-makedepends=('autoconf-archive' 'intltool' 'python')
-optdepends=('gnome-backgrounds: Default background'
-'gnome-control-center: System settings'
-'network-manager-applet: Network management')
-source=("https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz;
-'gnome-flashback.pam')
-sha256sums=('e03f33100f1982019c2e59bbdcd664549ec5caa0ef2d99e2c0e1272cea08bb3b'
-'7148b3b1773fa312d6cd14798338cc70cffb6df7504ff1787687edd0363138d2')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib/$pkgname \
-  --disable-schemas-compile --enable-compile-warnings=minimum
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  # Install pam file for the screensaver
-  install -Dm644 ../gnome-flashback.pam "$pkgdir/etc/pam.d/gnome-flashback"
-}

Copied: gnome-flashback/repos/community-x86_64/PKGBUILD (from rev 1054525, 
gnome-flashback/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-11-23 22:01:54 UTC (rev 1054526)
@@ -0,0 +1,34 @@
+# Maintainer: Balló György 
+
+pkgname=gnome-flashback
+pkgver=3.42.1
+pkgrel=1
+pkgdesc='GNOME Flashback session'
+arch=('x86_64')
+url='https://wiki.gnome.org/Projects/GnomeFlashback'
+license=('GPL')
+depends=('gnome-bluetooth' 'gnome-panel' 'gnome-session' 
'gnome-settings-daemon'
+ 'gnome-themes-extra' 'libibus' 'libxkbfile' 'metacity')
+optdepends=('gnome-backgrounds: Default background'
+'gnome-control-center: System settings'
+'network-manager-applet: Network management')
+source=("https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz;
+'gnome-flashback.pam')
+sha256sums=('c8029220acf268c520dbb0750834b2ef4df868324d0e0fb6a80354c80ba8844e'
+'7148b3b1773fa312d6cd14798338cc70cffb6df7504ff1787687edd0363138d2')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib/$pkgname \
+  --disable-schemas-compile --enable-compile-warnings=minimum
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  # Install pam file for the screensaver
+  install -Dm644 ../gnome-flashback.pam "$pkgdir/etc/pam.d/gnome-flashback"
+}

Deleted: gnome-flashback.pam
===
--- gnome-flashback.pam 2021-11-23 22:01:35 UTC (rev 1054525)
+++ gnome-flashback.pam 2021-11-23 22:01:54 UTC (rev 1054526)
@@ -1,6 +0,0 @@
-#%PAM-1.0
-auth   include system-auth
-auth   optional pam_gnome_keyring.so
-accountinclude system-auth
-password   include system-auth
-sessioninclude system-auth

Copied: gnome-flashback/repos/community-x86_64/gnome-flashback.pam (from rev 
1054525, gnome-flashback/trunk/gnome-flashback.pam)
===
--- gnome-flashback.pam (rev 0)
+++ gnome-flashback.pam 2021-11-23 22:01:54 UTC (rev 1054526)
@@ -0,0 +1,6 @@
+#%PAM-1.0
+auth   include system-auth
+auth   optional pam_gnome_keyring.so
+accountinclude system-auth
+password   include system-auth
+sessioninclude system-auth



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

2021-11-23 Thread Antonio Rojas via arch-commits
Date: Tuesday, November 23, 2021 @ 22:01:35
  Author: arojas
Revision: 1054525

Update to 3.42.1

Modified:
  gnome-flashback/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-23 21:59:16 UTC (rev 1054524)
+++ PKGBUILD2021-11-23 22:01:35 UTC (rev 1054525)
@@ -1,7 +1,7 @@
 # Maintainer: Balló György 
 
 pkgname=gnome-flashback
-pkgver=3.40.0
+pkgver=3.42.1
 pkgrel=1
 pkgdesc='GNOME Flashback session'
 arch=('x86_64')
@@ -14,7 +14,7 @@
 'network-manager-applet: Network management')
 
source=("https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz;
 'gnome-flashback.pam')
-sha256sums=('e03f33100f1982019c2e59bbdcd664549ec5caa0ef2d99e2c0e1272cea08bb3b'
+sha256sums=('c8029220acf268c520dbb0750834b2ef4df868324d0e0fb6a80354c80ba8844e'
 '7148b3b1773fa312d6cd14798338cc70cffb6df7504ff1787687edd0363138d2')
 
 build() {



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

2021-11-23 Thread Antonio Rojas via arch-commits
Date: Tuesday, November 23, 2021 @ 21:59:16
  Author: arojas
Revision: 1054524

archrelease: copy trunk to community-x86_64

Added:
  pdftricks/repos/community-x86_64/PKGBUILD
(from rev 1054523, pdftricks/trunk/PKGBUILD)
Deleted:
  pdftricks/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-11-23 21:59:05 UTC (rev 1054523)
+++ PKGBUILD2021-11-23 21:59:16 UTC (rev 1054524)
@@ -1,28 +0,0 @@
-# Maintainer: Balló György 
-
-pkgname=pdftricks
-pkgver=0.3.1
-pkgrel=1
-pkgdesc='Simple, efficient application for small manipulations in PDF files 
using Ghostscript'
-arch=('x86_64')
-url='https://github.com/muriloventuroso/pdftricks'
-license=('GPL3')
-depends=('ghostscript' 'granite' 'imagemagick')
-makedepends=('meson' 'vala')
-source=("https://github.com/muriloventuroso/$pkgname/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha256sums=('af107d9f5b238a65a78158f3e38ae4cc07a1ea9bdb736fb64cb85fdaa9867721')
-
-prepare() {
-  # Use standard icon name
-  sed -i 's/process-completed/gtk-apply/' $pkgname-$pkgver/src/Widgets/*.vala
-}
-
-build() {
-  arch-meson $pkgname-$pkgver build
-  meson compile -C build
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-  ln -s com.github.muriloventuroso.pdftricks "$pkgdir/usr/bin/$pkgname"
-}

Copied: pdftricks/repos/community-x86_64/PKGBUILD (from rev 1054523, 
pdftricks/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-11-23 21:59:16 UTC (rev 1054524)
@@ -0,0 +1,28 @@
+# Maintainer: Balló György 
+
+pkgname=pdftricks
+pkgver=0.4.1
+pkgrel=1
+pkgdesc='Simple, efficient application for small manipulations in PDF files 
using Ghostscript'
+arch=('x86_64')
+url='https://github.com/muriloventuroso/pdftricks'
+license=('GPL3')
+depends=('ghostscript' 'granite' 'imagemagick')
+makedepends=('meson' 'vala')
+source=("https://github.com/muriloventuroso/$pkgname/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha256sums=('4b0fa5d73621ef42d6d0040ec2147a43bae2337ea722651525f080f2ae78bea3')
+
+prepare() {
+  # Use standard icon name
+  sed -i 's/process-completed/gtk-apply/' $pkgname-$pkgver/src/Widgets/*.vala
+}
+
+build() {
+  arch-meson $pkgname-$pkgver build
+  meson compile -C build
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+  ln -s com.github.muriloventuroso.pdftricks "$pkgdir/usr/bin/$pkgname"
+}



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

2021-11-23 Thread Antonio Rojas via arch-commits
Date: Tuesday, November 23, 2021 @ 21:59:05
  Author: arojas
Revision: 1054523

Update to 0.4.1

Modified:
  pdftricks/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-23 21:52:16 UTC (rev 1054522)
+++ PKGBUILD2021-11-23 21:59:05 UTC (rev 1054523)
@@ -1,7 +1,7 @@
 # Maintainer: Balló György 
 
 pkgname=pdftricks
-pkgver=0.3.1
+pkgver=0.4.1
 pkgrel=1
 pkgdesc='Simple, efficient application for small manipulations in PDF files 
using Ghostscript'
 arch=('x86_64')
@@ -10,7 +10,7 @@
 depends=('ghostscript' 'granite' 'imagemagick')
 makedepends=('meson' 'vala')
 
source=("https://github.com/muriloventuroso/$pkgname/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha256sums=('af107d9f5b238a65a78158f3e38ae4cc07a1ea9bdb736fb64cb85fdaa9867721')
+sha256sums=('4b0fa5d73621ef42d6d0040ec2147a43bae2337ea722651525f080f2ae78bea3')
 
 prepare() {
   # Use standard icon name



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

2021-11-23 Thread Caleb Maclennan via arch-commits
Date: Tuesday, November 23, 2021 @ 21:52:16
  Author: alerque
Revision: 1054522

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-11-23 21:51:26 UTC (rev 1054521)
+++ PKGBUILD2021-11-23 21:52:16 UTC (rev 1054522)
@@ -1,49 +0,0 @@
-# Maintainer: Andrzej Giniewicz 
-# Maintainer: Caleb Maclennan 
-# Contributor: Firmicus 
-# Contributor: flying sheep 
-
-pkgname=python-fonttools
-pkgver=4.28.1
-pkgrel=1
-pkgdesc='A library to manipulate font files from Python'
-url='https://github.com/fonttools/fonttools'
-license=('MIT')
-arch=('x86_64')
-depends=('python')
-makedepends=('cython'
- 'python-setuptools')
-optdepends=('python-brotli: to compress/decompress WOFF 2.0 web fonts'
-'python-fs: to read/write UFO source files'
-'python-lxml: faster backend for XML files reading/writing'
-'python-lz4: for graphite type tables in ttLib/tables'
-'python-matplotlib: for visualizing DesignSpaceDocument and 
resulting VariationModel'
-'python-pyqt5: for drawing glyphs with Qt’s QPainterPath'
-'python-reportlab: to drawing glyphs as PNG images'
-'python-scipy: for finding wrong contour/component order between 
different masters'
-'python-sympy: for symbolic font statistics analysis'
-'python-unicodedata2: for displaying the Unicode character names 
when dumping the cmap table with ttx'
-'python-zopfli: faster backend fom WOFF 1.0 web fonts compression')
-checkdepends=('python-brotli'
-  'python-fs'
-  'python-pytest'
-  'python-ufolib2')
-source=("https://github.com/fonttools/fonttools/archive/$pkgver/fonttools-$pkgver.zip;)
-sha256sums=('086f667985593c1682fdd5c6a4f24949269dfc33b330d4303bed349f789fd3e6')
-
-build() {
-   cd "fonttools-$pkgver"
-   python setup.py build_ext --inplace
-   python setup.py build
-}
-
-check() {
-   cd "fonttools-$pkgver"
-   PYTHONPATH=Lib pytest
-}
-
-package() {
-   cd "fonttools-$pkgver"
-   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-   install -Dm0755 -t "$pkgdir/usr/share/licenses/$pkgname/" LICENSE
-}

Copied: python-fonttools/repos/community-x86_64/PKGBUILD (from rev 1054521, 
python-fonttools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-11-23 21:52:16 UTC (rev 1054522)
@@ -0,0 +1,49 @@
+# Maintainer: Andrzej Giniewicz 
+# Maintainer: Caleb Maclennan 
+# Contributor: Firmicus 
+# Contributor: flying sheep 
+
+pkgname=python-fonttools
+pkgver=4.28.2
+pkgrel=1
+pkgdesc='A library to manipulate font files from Python'
+url='https://github.com/fonttools/fonttools'
+license=('MIT')
+arch=('x86_64')
+depends=('python')
+makedepends=('cython'
+ 'python-setuptools')
+optdepends=('python-brotli: to compress/decompress WOFF 2.0 web fonts'
+'python-fs: to read/write UFO source files'
+'python-lxml: faster backend for XML files reading/writing'
+'python-lz4: for graphite type tables in ttLib/tables'
+'python-matplotlib: for visualizing DesignSpaceDocument and 
resulting VariationModel'
+'python-pyqt5: for drawing glyphs with Qt’s QPainterPath'
+'python-reportlab: to drawing glyphs as PNG images'
+'python-scipy: for finding wrong contour/component order between 
different masters'
+'python-sympy: for symbolic font statistics analysis'
+'python-unicodedata2: for displaying the Unicode character names 
when dumping the cmap table with ttx'
+'python-zopfli: faster backend fom WOFF 1.0 web fonts compression')
+checkdepends=('python-brotli'
+  'python-fs'
+  'python-pytest'
+  'python-ufolib2')
+source=("https://github.com/fonttools/fonttools/archive/$pkgver/fonttools-$pkgver.zip;)
+sha256sums=('1bd54098d61794a954ab288dc29a1fe142f896cea6d8b5830ca74d3c8d57075c')
+
+build() {
+   cd "fonttools-$pkgver"
+   python setup.py build_ext --inplace
+   python setup.py build
+}
+
+check() {
+   cd "fonttools-$pkgver"
+   PYTHONPATH=Lib pytest
+}
+
+package() {
+   cd "fonttools-$pkgver"
+   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+   install -Dm0755 -t "$pkgdir/usr/share/licenses/$pkgname/" LICENSE
+}



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

2021-11-23 Thread Caleb Maclennan via arch-commits
Date: Tuesday, November 23, 2021 @ 21:51:26
  Author: alerque
Revision: 1054521

upgpkg: python-fonttools 4.28.2-1

Modified:
  python-fonttools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-23 21:45:01 UTC (rev 1054520)
+++ PKGBUILD2021-11-23 21:51:26 UTC (rev 1054521)
@@ -4,7 +4,7 @@
 # Contributor: flying sheep 
 
 pkgname=python-fonttools
-pkgver=4.28.1
+pkgver=4.28.2
 pkgrel=1
 pkgdesc='A library to manipulate font files from Python'
 url='https://github.com/fonttools/fonttools'
@@ -29,7 +29,7 @@
   'python-pytest'
   'python-ufolib2')
 
source=("https://github.com/fonttools/fonttools/archive/$pkgver/fonttools-$pkgver.zip;)
-sha256sums=('086f667985593c1682fdd5c6a4f24949269dfc33b330d4303bed349f789fd3e6')
+sha256sums=('1bd54098d61794a954ab288dc29a1fe142f896cea6d8b5830ca74d3c8d57075c')
 
 build() {
cd "fonttools-$pkgver"



[arch-commits] Commit in cmake/trunk (rebuild.list)

2021-11-23 Thread Antonio Rojas via arch-commits
Date: Tuesday, November 23, 2021 @ 21:47:43
  Author: arojas
Revision: 428996

Add openvdb

Modified:
  cmake/trunk/rebuild.list

--+
 rebuild.list |1 +
 1 file changed, 1 insertion(+)

Modified: rebuild.list
===
--- rebuild.list2021-11-23 21:21:49 UTC (rev 428995)
+++ rebuild.list2021-11-23 21:47:43 UTC (rev 428996)
@@ -1,2 +1,3 @@
 cmake-fedora
 uranium
+openvdb



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

2021-11-23 Thread Antonio Rojas via arch-commits
Date: Tuesday, November 23, 2021 @ 21:45:01
  Author: arojas
Revision: 1054520

archrelease: copy trunk to community-any

Added:
  languagetool/repos/community-any/PKGBUILD
(from rev 1054519, languagetool/trunk/PKGBUILD)
  languagetool/repos/community-any/languagetool.service
(from rev 1054519, languagetool/trunk/languagetool.service)
  languagetool/repos/community-any/languagetool.sh
(from rev 1054519, languagetool/trunk/languagetool.sh)
Deleted:
  languagetool/repos/community-any/PKGBUILD
  languagetool/repos/community-any/languagetool.service
  languagetool/repos/community-any/languagetool.sh

--+
 PKGBUILD |   72 
 languagetool.service |   28 -
 languagetool.sh  |  142 -
 3 files changed, 121 insertions(+), 121 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-11-23 21:44:45 UTC (rev 1054519)
+++ PKGBUILD2021-11-23 21:45:01 UTC (rev 1054520)
@@ -1,36 +0,0 @@
-# Maintainer: Andrzej Giniewicz 
-# Contributor: Julien MISCHKOWITZ 
-# Contributor: Panagiotis Papadopoulos pano_90 (AT) gmx (DOT) net
-
-pkgname=languagetool
-pkgver=5.5
-pkgrel=1
-pkgdesc="An open source language checker"
-arch=('any')
-url="https://www.languagetool.org; 
-license=("LGPL")
-depends=('java-runtime-headless>=8')
-makedepends=('unzip')
-optdepends=('java-runtime: needed for the GUI version'
-'libxtst: needed for the GUI version'
-'gtk2: needed for the GUI version')
-source=("https://www.languagetool.org/download/LanguageTool-${pkgver}.zip; 
"$pkgname.sh" "$pkgname.service")
-noextract=($pkgname-$pkgver.zip)
-sha256sums=('18d16d103f1e59b125a1f48ff9d3c23051f21a80b2ca64a1da305d576245f90d'
-'009c0a65a978ad11ac097edd4be64688a2c80281b201495eff9ab667c5b0f0fe'
-'c1bc7bc6336cbd988fb2e54610693886a20bc4bff48b499617ff4f6fc5b09052')
-
-package() {
-  cd "$srcdir"
-  install -d "$pkgdir"/usr/{bin,share/java/$pkgname}
-  unzip -q LanguageTool-$pkgver.zip -d "$pkgdir"/usr/share
-  cd "$pkgdir"/usr/share/
-  mv LanguageTool-$pkgver $pkgname
-  cd $pkgname
-  mv *.jar "$pkgdir"/usr/share/java/$pkgname
-  mv libs/*.jar "$pkgdir"/usr/share/java/$pkgname
-  rm -rf libs
-  install -m755 "$srcdir"/$pkgname.sh "$pkgdir"/usr/bin/$pkgname
-  mkdir -p "$pkgdir"/usr/lib/systemd/system
-  install -m644 "$srcdir"/$pkgname.service 
"$pkgdir"/usr/lib/systemd/system/$pkgname.service
-}

Copied: languagetool/repos/community-any/PKGBUILD (from rev 1054519, 
languagetool/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-11-23 21:45:01 UTC (rev 1054520)
@@ -0,0 +1,36 @@
+# Maintainer: Andrzej Giniewicz 
+# Contributor: Julien MISCHKOWITZ 
+# Contributor: Panagiotis Papadopoulos pano_90 (AT) gmx (DOT) net
+
+pkgname=languagetool
+pkgver=5.5
+pkgrel=2
+pkgdesc="An open source language checker"
+arch=('any')
+url="https://www.languagetool.org; 
+license=("LGPL")
+depends=('java-runtime-headless>=8')
+makedepends=('unzip')
+optdepends=('java-runtime: needed for the GUI version'
+'libxtst: needed for the GUI version'
+'gtk3: GTK style for the GUI')
+source=("https://www.languagetool.org/download/LanguageTool-${pkgver}.zip; 
"$pkgname.sh" "$pkgname.service")
+noextract=($pkgname-$pkgver.zip)
+sha256sums=('18d16d103f1e59b125a1f48ff9d3c23051f21a80b2ca64a1da305d576245f90d'
+'009c0a65a978ad11ac097edd4be64688a2c80281b201495eff9ab667c5b0f0fe'
+'c1bc7bc6336cbd988fb2e54610693886a20bc4bff48b499617ff4f6fc5b09052')
+
+package() {
+  cd "$srcdir"
+  install -d "$pkgdir"/usr/{bin,share/java/$pkgname}
+  unzip -q LanguageTool-$pkgver.zip -d "$pkgdir"/usr/share
+  cd "$pkgdir"/usr/share/
+  mv LanguageTool-$pkgver $pkgname
+  cd $pkgname
+  mv *.jar "$pkgdir"/usr/share/java/$pkgname
+  mv libs/*.jar "$pkgdir"/usr/share/java/$pkgname
+  rm -rf libs
+  install -m755 "$srcdir"/$pkgname.sh "$pkgdir"/usr/bin/$pkgname
+  mkdir -p "$pkgdir"/usr/lib/systemd/system
+  install -m644 "$srcdir"/$pkgname.service 
"$pkgdir"/usr/lib/systemd/system/$pkgname.service
+}

Deleted: languagetool.service
===
--- languagetool.service2021-11-23 21:44:45 UTC (rev 1054519)
+++ languagetool.service2021-11-23 21:45:01 UTC (rev 1054520)
@@ -1,14 +0,0 @@
-[Unit]
-Description=Languagetool HTTP server
-
-[Service]
-Type=simple
-PIDFile=/run/language-tool.pid
-User=nobody
-Restart=always
-ExecStart=/usr/bin/languagetool --http --allow-origin "*"
-ExecReload=/bin/kill -HUP $MAINPID
-ExecStop=/bin/kill -QUIT $MAINPID
-
-[Install]
-WantedBy=multi-user.target

Copied: languagetool/repos/community-any/languagetool.service (from rev 
1054519, languagetool/trunk/languagetool.service)

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

2021-11-23 Thread Antonio Rojas via arch-commits
Date: Tuesday, November 23, 2021 @ 21:44:45
  Author: arojas
Revision: 1054519

Remove gtk2 dependency (FS#72819)

Modified:
  languagetool/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-23 21:35:02 UTC (rev 1054518)
+++ PKGBUILD2021-11-23 21:44:45 UTC (rev 1054519)
@@ -4,7 +4,7 @@
 
 pkgname=languagetool
 pkgver=5.5
-pkgrel=1
+pkgrel=2
 pkgdesc="An open source language checker"
 arch=('any')
 url="https://www.languagetool.org; 
@@ -13,7 +13,7 @@
 makedepends=('unzip')
 optdepends=('java-runtime: needed for the GUI version'
 'libxtst: needed for the GUI version'
-'gtk2: needed for the GUI version')
+'gtk3: GTK style for the GUI')
 source=("https://www.languagetool.org/download/LanguageTool-${pkgver}.zip; 
"$pkgname.sh" "$pkgname.service")
 noextract=($pkgname-$pkgver.zip)
 sha256sums=('18d16d103f1e59b125a1f48ff9d3c23051f21a80b2ca64a1da305d576245f90d'



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

2021-11-23 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, November 23, 2021 @ 21:35:02
  Author: svenstaro
Revision: 1054518

archrelease: copy trunk to community-x86_64

Added:
  openvdb/repos/community-x86_64/PKGBUILD
(from rev 1054517, openvdb/trunk/PKGBUILD)
Deleted:
  openvdb/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-11-23 21:34:54 UTC (rev 1054517)
+++ PKGBUILD2021-11-23 21:35:02 UTC (rev 1054518)
@@ -1,39 +0,0 @@
-# Maintainer : Sven-Hendrik Haase 
-pkgname=openvdb
-pkgver=9.0.0
-pkgrel=1
-pkgdesc='A large suite of tools for the efficient storage and manipulation of 
sparse volumetric data discretized on three-dimensional grids'
-url='https://github.com/dreamworksanimation/openvdb'
-arch=('x86_64')
-license=('MPL')
-depends=('boost-libs' 'intel-tbb' 'zlib' 'jemalloc' 'blosc' 'log4cplus')
-makedepends=('doxygen' 'boost' 'cmake' 'mesa' 'cppunit' 'glfw-x11' 'glu' 
'python' 'python-numpy' 'ninja')
-optdepends=('glfw: for tools'
-'glu: for tools'
-'python-numpy: python module')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/dreamworksanimation/openvdb/archive/v${pkgver}.tar.gz;)
-sha512sums=('1410b7b04b03fb09d6775ebe7b95e7c0a484d5f29c84203530ed30ccb7c061470be1abb93189010617342e57f3fecdd66a115c6d222024e68e2384a7fb196194')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  cmake \
--Bbuild \
--GNinja \
--DUSE_NUMPY=ON \
--DUSE_LOG4CPLUS=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DOPENVDB_BUILD_PYTHON_MODULE=ON \
--DOPENVDB_BUILD_DOCS=ON \
--DOPENVDB_BUILD_UNITTESTS=OFF
-
-  ninja -C build
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}/build"
-
-  DESTDIR="${pkgdir}" ninja install
-}
-
-# vim:set sw=2 sts=2 et:

Copied: openvdb/repos/community-x86_64/PKGBUILD (from rev 1054517, 
openvdb/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-11-23 21:35:02 UTC (rev 1054518)
@@ -0,0 +1,42 @@
+# Maintainer : Sven-Hendrik Haase 
+pkgname=openvdb
+pkgver=9.0.0
+pkgrel=2
+pkgdesc='A large suite of tools for the efficient storage and manipulation of 
sparse volumetric data discretized on three-dimensional grids'
+url='https://github.com/dreamworksanimation/openvdb'
+arch=('x86_64')
+license=('MPL')
+depends=('boost-libs' 'intel-tbb' 'zlib' 'jemalloc' 'blosc' 'log4cplus')
+makedepends=('doxygen' 'boost' 'cmake' 'mesa' 'cppunit' 'glfw-x11' 'glu' 
'python' 'python-numpy' 'ninja')
+optdepends=('glfw: for tools'
+'glu: for tools'
+'python-numpy: python module')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/dreamworksanimation/openvdb/archive/v${pkgver}.tar.gz;)
+sha512sums=('1410b7b04b03fb09d6775ebe7b95e7c0a484d5f29c84203530ed30ccb7c061470be1abb93189010617342e57f3fecdd66a115c6d222024e68e2384a7fb196194')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  cmake \
+-Bbuild \
+-GNinja \
+-DUSE_NUMPY=ON \
+-DUSE_LOG4CPLUS=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DOPENVDB_BUILD_PYTHON_MODULE=ON \
+-DOPENVDB_BUILD_DOCS=ON \
+-DOPENVDB_BUILD_UNITTESTS=OFF
+
+  ninja -C build
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}/build"
+
+  DESTDIR="${pkgdir}" ninja install
+  # Try to workaround FS#72653 for now
+  mkdir -p "${pkgdir}"/usr/share/cmake-3.22/Modules/
+  ln -s "${pkgdir}"/usr/lib/cmake/OpenVDB/FindOpenVDB.cmake 
"${pkgdir}"/usr/share/cmake-3.22/Modules/FindOpenVDB.cmake
+}
+
+# vim:set sw=2 sts=2 et:



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

2021-11-23 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, November 23, 2021 @ 21:34:54
  Author: svenstaro
Revision: 1054517

upgpkg: openvdb 9.0.0-2: Try to workaround FS#72653

Modified:
  openvdb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-23 21:20:54 UTC (rev 1054516)
+++ PKGBUILD2021-11-23 21:34:54 UTC (rev 1054517)
@@ -1,7 +1,7 @@
-# Maintainer : Sven-Hendrik Haase 
+# Maintainer : Sven-Hendrik Haase 
 pkgname=openvdb
 pkgver=9.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc='A large suite of tools for the efficient storage and manipulation of 
sparse volumetric data discretized on three-dimensional grids'
 url='https://github.com/dreamworksanimation/openvdb'
 arch=('x86_64')
@@ -34,6 +34,9 @@
   cd "${srcdir}/${pkgname}-${pkgver}/build"
 
   DESTDIR="${pkgdir}" ninja install
+  # Try to workaround FS#72653 for now
+  mkdir -p "${pkgdir}"/usr/share/cmake-3.22/Modules/
+  ln -s "${pkgdir}"/usr/lib/cmake/OpenVDB/FindOpenVDB.cmake 
"${pkgdir}"/usr/share/cmake-3.22/Modules/FindOpenVDB.cmake
 }
 
 # vim:set sw=2 sts=2 et:



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

2021-11-23 Thread Frederik Schwan via arch-commits
Date: Tuesday, November 23, 2021 @ 21:20:54
  Author: freswa
Revision: 1054516

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-11-23 21:20:51 UTC (rev 1054515)
+++ PKGBUILD2021-11-23 21:20:54 UTC (rev 1054516)
@@ -1,51 +0,0 @@
-# Maintainer: Frederik Schwan 
-# Contributor: Christian Rebischke 
-# Contributor: Sergej Pupykin 
-# Contributor: Jonathan Wiersma 
-
-pkgname=virt-viewer
-pkgver=10.0
-pkgrel=2
-pkgdesc='A lightweight interface for interacting with the graphical display of 
virtualized guest OS.'
-arch=('x86_64')
-url='https://gitlab.com/virt-viewer/virt-viewer'
-license=('GPL')
-depends=('gtk-vnc' 'libvirt' 'spice-gtk' 'libvirt-glib' 'libgovirt' 'vte3')
-makedepends=('meson' 'intltool' 'spice-protocol' 'gobject-introspection' 
'bash-completion')
-replaces=('virtviewer')
-source=("https://virt-manager.org/download/sources/virt-viewer/virt-viewer-${pkgver}.tar.xz"{,.asc}
-
fix-sendkey-actions.patch::https://gitlab.com/berrange/virt-viewer/-/commit/aa6b4b40b8dac1ba38e06237db04bfd4fa5f4850.patch)
-b2sums=('3368164c2f770f8aa963e0fb93e713249b05d31600747b68197864a40bf6fdb221ad44abb8ea5465706543241bd5898353cadf2a3e0917455383283722fdfd4f'
-'SKIP'
-
'f570a1dbf49db7c86b17287518c6dec737b1a1d2e033df60b7f82579573d85d59bee3d15e28d20e2231910db40d2b0c80bebc658eadbe23a4577b1ea80489c5b')
-validpgpkeys=('DAF3A6FDB26B62912D0E8E3FBE86EBB415104FDF') # Daniel P. Berrange
-
-prepare() {
-  cd virt-viewer-${pkgver}
-  patch -Np1 < ../fix-sendkey-actions.patch
-}
-
-build() {
-  cd virt-viewer-${pkgver}
-  arch-meson build \
--Dlibvirt=enabled \
--Dvnc=enabled \
--Dspice=enabled \
--Dovirt=enabled \
--Dvte=enabled \
--Dbash_completion=enabled
-
-  ninja -C build
-}
-
-check() {
-  cd virt-viewer-${pkgver}
-
-  ninja -C build test
-}
-
-package() {
-  cd virt-viewer-${pkgver}
-
-  DESTDIR="${pkgdir}" ninja -C build install
-}

Copied: virt-viewer/repos/community-x86_64/PKGBUILD (from rev 1054515, 
virt-viewer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-11-23 21:20:54 UTC (rev 1054516)
@@ -0,0 +1,39 @@
+# Maintainer: Frederik Schwan 
+# Contributor: Christian Rebischke 
+# Contributor: Sergej Pupykin 
+# Contributor: Jonathan Wiersma 
+
+pkgname=virt-viewer
+pkgver=11.0
+pkgrel=1
+pkgdesc='A lightweight interface for interacting with the graphical display of 
virtualized guest OS.'
+arch=('x86_64')
+url='https://gitlab.com/virt-viewer/virt-viewer'
+license=('GPL')
+depends=('gtk-vnc' 'libvirt' 'spice-gtk' 'libvirt-glib' 'libgovirt' 'vte3')
+makedepends=('meson' 'intltool' 'spice-protocol' 'gobject-introspection' 
'bash-completion')
+replaces=('virtviewer')
+source=("https://virt-manager.org/download/sources/virt-viewer/virt-viewer-${pkgver}.tar.xz"{,.asc})
+b2sums=('41914a60361f0a47a0b0b54962d228ffaec67c6b69c664bb6fe683b7074dd5e2136d2bf3528b6e1b6b785cc4e337125fe16fdd94dd603dd42e8fde543931241a'
+'SKIP')
+validpgpkeys=('DAF3A6FDB26B62912D0E8E3FBE86EBB415104FDF') # Daniel P. Berrange
+
+build() {
+  arch-meson virt-viewer-${pkgver} build \
+-Dlibvirt=enabled \
+-Dvnc=enabled \
+-Dspice=enabled \
+-Dovirt=enabled \
+-Dvte=enabled \
+-Dbash_completion=enabled
+
+  ninja -C build
+}
+
+check() {
+  ninja -C build test
+}
+
+package() {
+  DESTDIR="${pkgdir}" ninja -C build install
+}



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

2021-11-23 Thread Frederik Schwan via arch-commits
Date: Tuesday, November 23, 2021 @ 21:20:51
  Author: freswa
Revision: 1054515

upgpkg: virt-viewer 11.0-1

Modified:
  virt-viewer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-23 21:20:48 UTC (rev 1054514)
+++ PKGBUILD2021-11-23 21:20:51 UTC (rev 1054515)
@@ -4,8 +4,8 @@
 # Contributor: Jonathan Wiersma 
 
 pkgname=virt-viewer
-pkgver=10.0
-pkgrel=2
+pkgver=11.0
+pkgrel=1
 pkgdesc='A lightweight interface for interacting with the graphical display of 
virtualized guest OS.'
 arch=('x86_64')
 url='https://gitlab.com/virt-viewer/virt-viewer'
@@ -13,21 +13,13 @@
 depends=('gtk-vnc' 'libvirt' 'spice-gtk' 'libvirt-glib' 'libgovirt' 'vte3')
 makedepends=('meson' 'intltool' 'spice-protocol' 'gobject-introspection' 
'bash-completion')
 replaces=('virtviewer')
-source=("https://virt-manager.org/download/sources/virt-viewer/virt-viewer-${pkgver}.tar.xz"{,.asc}
-
fix-sendkey-actions.patch::https://gitlab.com/berrange/virt-viewer/-/commit/aa6b4b40b8dac1ba38e06237db04bfd4fa5f4850.patch)
-b2sums=('3368164c2f770f8aa963e0fb93e713249b05d31600747b68197864a40bf6fdb221ad44abb8ea5465706543241bd5898353cadf2a3e0917455383283722fdfd4f'
-'SKIP'
-
'f570a1dbf49db7c86b17287518c6dec737b1a1d2e033df60b7f82579573d85d59bee3d15e28d20e2231910db40d2b0c80bebc658eadbe23a4577b1ea80489c5b')
+source=("https://virt-manager.org/download/sources/virt-viewer/virt-viewer-${pkgver}.tar.xz"{,.asc})
+b2sums=('41914a60361f0a47a0b0b54962d228ffaec67c6b69c664bb6fe683b7074dd5e2136d2bf3528b6e1b6b785cc4e337125fe16fdd94dd603dd42e8fde543931241a'
+'SKIP')
 validpgpkeys=('DAF3A6FDB26B62912D0E8E3FBE86EBB415104FDF') # Daniel P. Berrange
 
-prepare() {
-  cd virt-viewer-${pkgver}
-  patch -Np1 < ../fix-sendkey-actions.patch
-}
-
 build() {
-  cd virt-viewer-${pkgver}
-  arch-meson build \
+  arch-meson virt-viewer-${pkgver} build \
 -Dlibvirt=enabled \
 -Dvnc=enabled \
 -Dspice=enabled \
@@ -39,13 +31,9 @@
 }
 
 check() {
-  cd virt-viewer-${pkgver}
-
   ninja -C build test
 }
 
 package() {
-  cd virt-viewer-${pkgver}
-
   DESTDIR="${pkgdir}" ninja -C build install
 }



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

2021-11-23 Thread Antonio Rojas via arch-commits
Date: Tuesday, November 23, 2021 @ 21:20:48
  Author: arojas
Revision: 1054514

archrelease: copy trunk to community-x86_64

Added:
  mame/repos/community-x86_64/PKGBUILD
(from rev 1054513, mame/trunk/PKGBUILD)
  mame/repos/community-x86_64/mame.desktop
(from rev 1054513, mame/trunk/mame.desktop)
  mame/repos/community-x86_64/mame.sh
(from rev 1054513, mame/trunk/mame.sh)
  mame/repos/community-x86_64/mame.svg
(from rev 1054513, mame/trunk/mame.svg)
Deleted:
  mame/repos/community-x86_64/PKGBUILD
  mame/repos/community-x86_64/mame.desktop
  mame/repos/community-x86_64/mame.sh
  mame/repos/community-x86_64/mame.svg

--+
 PKGBUILD |  196 -
 mame.desktop |   40 +--
 mame.sh  |  110 +++
 3 files changed, 173 insertions(+), 173 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-11-23 21:20:31 UTC (rev 1054513)
+++ PKGBUILD2021-11-23 21:20:48 UTC (rev 1054514)
@@ -1,98 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Sergej Pupykin 
-# Contributor: robb_force 
-# Contributor: JJDaNiMoTh 
-
-pkgbase=mame
-pkgname=(mame mame-tools)
-pkgver=0.237
-pkgrel=1
-pkgdesc='Port of the popular Multiple Arcade Machine Emulator using SDL with 
OpenGL support'
-url='https://mamedev.org/'
-license=(GPL2)
-arch=(x86_64)
-makedepends=(nasm python asio rapidjson glm libxinerama sdl2_ttf qt5-base 
lua53 libutf8proc pugixml portmidi portaudio flac libpulse)
-source=(https://github.com/mamedev/mame/archive/mame${pkgver/./}.tar.gz
-mame.sh mame.desktop mame.svg)
-sha256sums=('92dc0f38ec1a2412c6b9c1403cae610bc13e1d21b4e647ab290d41215a940cae'
-'ee1c59bafc5e5441e99fa4c58108a3e18048e60672f34de865c8a5a976094dba'
-'0e5e93f84673c2d17a1bf7a6b256cfa54ef89a086a828df19bc054c12776d821'
-'17c442c933d764175e4ce1de50a80c0c2ddd5d733caf09c3cd5e6ba697ac43f4')
-
-
-prepare() {
-  cd mame-mame${pkgver/./}
-
-# Use system libraries
-  sed -e 's|\# USE_SYSTEM_LIB|USE_SYSTEM_LIB|g' -i makefile
-# except for asio
-  sed -e 's|USE_SYSTEM_LIB_ASIO|\# USE_SYSTEM_LIB_ASIO|g' -i makefile
-}
-
-build() {
-  cd mame-mame${pkgver/./}
-  export CFLAGS+=" -I/usr/include/lua5.3/"
-  export CXXFLAGS+=" -I/usr/include/lua5.3/"
-
-# Hack to force linking to lua5.3
-  mkdir lib
-  ln -s /usr/lib/liblua5.3.so lib/liblua.so
-  export LDFLAGS+=" -L${PWD}/lib"
-
-  make \
-NOWERROR=1 \
-OPTIMIZE=2 \
-TOOLS=1 \
-ARCHOPTS=-flifetime-dse=1
-}
-
-package_mame() {
-  depends=(sdl2_ttf qt5-base lua53 libutf8proc pugixml portmidi portaudio flac 
libpulse hicolor-icon-theme)
-  conflicts=(sdlmame)
-  replaces=(sdlmame) 
-
-  cd mame-mame${pkgver/./}
-
-  # Install the mame script
-  install -Dm755 "$srcdir"/$pkgname.sh "$pkgdir"/usr/bin/$pkgname
-
-  # Install the binaries
-  install -Dm755 mame -t "$pkgdir"/usr/lib/mame
-
-  # Install the extra bits
-  install -Dm644 src/osd/modules/opengl/shader/glsl*.*h -t 
"$pkgdir"/usr/lib/$pkgname/shader/
-  cp -ar {artwork,bgfx,plugins,language,ctrlr,keymaps,hash} 
"$pkgdir"/usr/lib/$pkgname/
-
-  # Include the license
-  install -Dm644 docs/LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-  # FS#28203
-  sed -i 's|KEYCODE_2_PAD|KEYCODE_2PAD|' "$pkgdir"/usr/lib/mame/ctrlr/*.cfg
-  sed -i 's|KEYCODE_4_PAD|KEYCODE_4PAD|' "$pkgdir"/usr/lib/mame/ctrlr/*.cfg
-  sed -i 's|KEYCODE_6_PAD|KEYCODE_6PAD|' "$pkgdir"/usr/lib/mame/ctrlr/*.cfg
-  sed -i 's|KEYCODE_8_PAD|KEYCODE_8PAD|' "$pkgdir"/usr/lib/mame/ctrlr/*.cfg
-
-  # documentation
-  install -dm0755 "$pkgdir"/usr/share/doc
-  cp -a docs "$pkgdir"/usr/share/doc/$pkgname
-  rm -r "$pkgdir"/usr/share/doc/$pkgname/man
-  install -Dm644 docs/man/*.6* -t "$pkgdir"/usr/share/man/man6/
-
-  # install desktop file and icon
-  install -Dm644 "$srcdir"/mame.desktop -t "$pkgdir"/usr/share/applications
-  install -Dm644 "$srcdir"/mame.svg -t 
"$pkgdir"/usr/share/icons/hicolor/scalable/apps
-}
-
-package_mame-tools() {
-  pkgdesc='Port of the popular Multiple Arcade Machine Emulator using SDL with 
OpenGL support (tools)'
-  depends=(sdl2 libutf8proc flac)
-
-  cd mame-mame${pkgver/./}
-  for _i in castool chdman floptool imgtool jedutil ldresample ldverify nltool 
nlwav pngcmp regrep romcmp \
-split srcclean testkeys unidasm; do
-install -Dm755 $_i -t "$pkgdir"/usr/bin
-  done
-  mv "$pkgdir"/usr/bin/{,mame-}split # Fix conflicts
-
-  install -Dm644 docs/man/*.1* -t "$pkgdir"/usr/share/man/man1/
-}

Copied: mame/repos/community-x86_64/PKGBUILD (from rev 1054513, 
mame/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-11-23 21:20:48 UTC (rev 1054514)
@@ -0,0 +1,98 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Sergej Pupykin 
+# Contributor: robb_force 
+# Contributor: JJDaNiMoTh 
+
+pkgbase=mame
+pkgname=(mame 

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

2021-11-23 Thread Antonio Rojas via arch-commits
Date: Tuesday, November 23, 2021 @ 21:20:31
  Author: arojas
Revision: 1054513

Update to 0.238

Modified:
  mame/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-23 21:01:30 UTC (rev 1054512)
+++ PKGBUILD2021-11-23 21:20:31 UTC (rev 1054513)
@@ -5,7 +5,7 @@
 
 pkgbase=mame
 pkgname=(mame mame-tools)
-pkgver=0.237
+pkgver=0.238
 pkgrel=1
 pkgdesc='Port of the popular Multiple Arcade Machine Emulator using SDL with 
OpenGL support'
 url='https://mamedev.org/'
@@ -14,7 +14,7 @@
 makedepends=(nasm python asio rapidjson glm libxinerama sdl2_ttf qt5-base 
lua53 libutf8proc pugixml portmidi portaudio flac libpulse)
 source=(https://github.com/mamedev/mame/archive/mame${pkgver/./}.tar.gz
 mame.sh mame.desktop mame.svg)
-sha256sums=('92dc0f38ec1a2412c6b9c1403cae610bc13e1d21b4e647ab290d41215a940cae'
+sha256sums=('13aa880b097832acf6cda43629f9253bcc8a340748db071028903358ffbe7faf'
 'ee1c59bafc5e5441e99fa4c58108a3e18048e60672f34de865c8a5a976094dba'
 '0e5e93f84673c2d17a1bf7a6b256cfa54ef89a086a828df19bc054c12776d821'
 '17c442c933d764175e4ce1de50a80c0c2ddd5d733caf09c3cd5e6ba697ac43f4')



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

2021-11-23 Thread Caleb Maclennan via arch-commits
Date: Tuesday, November 23, 2021 @ 21:01:30
  Author: alerque
Revision: 1054512

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-11-23 21:00:27 UTC (rev 1054511)
+++ PKGBUILD2021-11-23 21:01:30 UTC (rev 1054512)
@@ -1,40 +0,0 @@
-# Maintainer: Caleb Maclennan 
-# Maintainer: Daniel M. Capella 
-# Contributor: Angel Velasquez 
-# Contributor: Felix Yan 
-
-_pyname=astroid
-pkgname=python-$_pyname
-pkgver=2.8.5
-pkgrel=1
-pkgdesc='A common base representation of python source code'
-arch=(any)
-url="https://github.com/PyCQA/$_pyname;
-license=(LGPL)
-_pydeps=(lazy-object-proxy
- typing-extensions
- wrapt)
-depends=(python
- "${_pydeps[@]/#/python-}")
-makedepends=(python-setuptools)
-checkdepends=(python-pytest)
-replaces=(python-logilab-astng)
-conflicts=(python-logilab-astng)
-_archive="$_pyname-$pkgver"
-source=("$url/archive/v$pkgver/$_archive.tar.gz")
-sha256sums=('23442400e49c269db88ed3f888f328b1b581b6efe9e3735868476763bfd283c9')
-
-build() {
-   cd "$_archive"
-   python setup.py build
-}
-
-check() {
-   cd "$_archive"
-   pytest
-}
-
-package() {
-   cd "$_archive"
-   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}

Copied: python-astroid/repos/community-any/PKGBUILD (from rev 1054511, 
python-astroid/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-11-23 21:01:30 UTC (rev 1054512)
@@ -0,0 +1,40 @@
+# Maintainer: Caleb Maclennan 
+# Maintainer: Daniel M. Capella 
+# Contributor: Angel Velasquez 
+# Contributor: Felix Yan 
+
+_pyname=astroid
+pkgname=python-$_pyname
+pkgver=2.9.0
+pkgrel=1
+pkgdesc='A common base representation of python source code'
+arch=(any)
+url="https://github.com/PyCQA/$_pyname;
+license=(LGPL)
+_pydeps=(lazy-object-proxy
+ typing-extensions
+ wrapt)
+depends=(python
+ "${_pydeps[@]/#/python-}")
+makedepends=(python-setuptools)
+checkdepends=(python-pytest)
+replaces=(python-logilab-astng)
+conflicts=(python-logilab-astng)
+_archive="$_pyname-$pkgver"
+source=("$url/archive/v$pkgver/$_archive.tar.gz")
+sha256sums=('35ceb3584637c7ad7c0238024ec8d4a7693f868238e03d37ae77975fdb45b76d')
+
+build() {
+   cd "$_archive"
+   python setup.py build
+}
+
+check() {
+   cd "$_archive"
+   pytest
+}
+
+package() {
+   cd "$_archive"
+   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}



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

2021-11-23 Thread Caleb Maclennan via arch-commits
Date: Tuesday, November 23, 2021 @ 21:00:27
  Author: alerque
Revision: 1054511

upgpkg: python-astroid 2.9.0-1

Modified:
  python-astroid/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-23 20:59:51 UTC (rev 1054510)
+++ PKGBUILD2021-11-23 21:00:27 UTC (rev 1054511)
@@ -5,7 +5,7 @@
 
 _pyname=astroid
 pkgname=python-$_pyname
-pkgver=2.8.5
+pkgver=2.9.0
 pkgrel=1
 pkgdesc='A common base representation of python source code'
 arch=(any)
@@ -22,7 +22,7 @@
 conflicts=(python-logilab-astng)
 _archive="$_pyname-$pkgver"
 source=("$url/archive/v$pkgver/$_archive.tar.gz")
-sha256sums=('23442400e49c269db88ed3f888f328b1b581b6efe9e3735868476763bfd283c9')
+sha256sums=('35ceb3584637c7ad7c0238024ec8d4a7693f868238e03d37ae77975fdb45b76d')
 
 build() {
cd "$_archive"



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

2021-11-23 Thread Andreas Radke via arch-commits
Date: Tuesday, November 23, 2021 @ 20:55:41
  Author: andyrtr
Revision: 428994

archrelease: copy trunk to testing-x86_64

Added:
  mesa-demos/repos/testing-x86_64/
  mesa-demos/repos/testing-x86_64/LICENSE
(from rev 428993, mesa-demos/trunk/LICENSE)
  mesa-demos/repos/testing-x86_64/PKGBUILD
(from rev 428993, mesa-demos/trunk/PKGBUILD)
  mesa-demos/repos/testing-x86_64/mesa-demos.install
(from rev 428993, mesa-demos/trunk/mesa-demos.install)

+
 LICENSE|   82 +++
 PKGBUILD   |   55 ++
 mesa-demos.install |6 +++
 3 files changed, 143 insertions(+)

Copied: mesa-demos/repos/testing-x86_64/LICENSE (from rev 428993, 
mesa-demos/trunk/LICENSE)
===
--- testing-x86_64/LICENSE  (rev 0)
+++ testing-x86_64/LICENSE  2021-11-23 20:55:41 UTC (rev 428994)
@@ -0,0 +1,82 @@
+Disclaimer
+
+Mesa is a 3-D graphics library with an API which is very similar to
+that of OpenGL*
+To the extent that Mesa utilizes the OpenGL command syntax or state
+machine, it is being used with authorization from Silicon Graphics,
+Inc.(SGI). However, the author does not possess an OpenGL license
+from SGI, and makes no claim that Mesa is in any way a compatible
+replacement for OpenGL or associated with SGI. Those who want a
+licensed implementation of OpenGL should contact a licensed
+vendor.
+
+Please do not refer to the library as MesaGL (for legal
+reasons). It's just Mesa or The Mesa 3-D graphics
+library
+
+* OpenGL is a trademark of Silicon Graphics Incorporated.
+
+License / Copyright Information
+
+The Mesa distribution consists of several components.  Different copyrights
+and licenses apply to different components.  For example, GLUT is copyrighted
+by Mark Kilgard, some demo programs are copyrighted by SGI, some of the Mesa
+device drivers are copyrighted by their authors.  See below for a list of
+Mesa's main components and the license for each.
+
+The core Mesa library is licensed according to the terms of the MIT license.
+This allows integration with the XFree86, Xorg and DRI projects.
+
+The default Mesa license is as follows:
+
+Copyright (C) 1999-2007  Brian Paul   All Rights Reserved.
+
+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
+BRIAN PAUL 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.
+
+Attention, Contributors
+
+When contributing to the Mesa project you must agree to the licensing terms
+of the component to which you're contributing.
+The following section lists the primary components of the Mesa distribution
+and their respective licenses.
+
+
+Mesa Component Licenses
+
+Component Location   Primary Author  License
+
+Main Mesa codesrc/mesa/  Brian Paul  Mesa (MIT)
+
+Device driverssrc/mesa/drivers/* See drivers See drivers
+
+Ext headers   include/GL/glext.h SGI SGI Free B
+  include/GL/glxext.h
+
+GLUT  src/glut/  Mark KilgardMark's copyright
+
+Mesa GLU library  src/glu/mesa/  Brian Paul  GNU-LGPL
+
+SGI GLU library   src/glu/sgi/   SGI SGI Free B
+
+demo programs progs/demos/   various see source files
+
+X demos   progs/xdemos/  Brian Paul  see source files
+
+SGI demos progs/samples/ SGI SGI copyright
+
+RedBook demos progs/redbook/ SGI SGI copyright

Copied: mesa-demos/repos/testing-x86_64/PKGBUILD (from rev 428993, 
mesa-demos/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2021-11-23 20:55:41 UTC (rev 428994)
@@ -0,0 +1,55 @@
+# Maintainer: Andreas Radke 
+
+pkgbase=mesa-demos

[arch-commits] Commit in mesa-demos/trunk (PKGBUILD mesa-demos.install)

2021-11-23 Thread Andreas Radke via arch-commits
Date: Tuesday, November 23, 2021 @ 20:55:28
  Author: andyrtr
Revision: 428993

upgpkg: mesa-demos 8.4.0-5: split build and move glxinfo/glxgears/eglinfo into 
new mesa-utils - FS#72556

Added:
  mesa-demos/trunk/mesa-demos.install
Modified:
  mesa-demos/trunk/PKGBUILD

+
 PKGBUILD   |   32 +---
 mesa-demos.install |6 ++
 2 files changed, 31 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-11-23 17:51:46 UTC (rev 428992)
+++ PKGBUILD2021-11-23 20:55:28 UTC (rev 428993)
@@ -1,15 +1,14 @@
-# Maintainer: Jan de Groot 
 # Maintainer: Andreas Radke 
 
-pkgname='mesa-demos'
+pkgbase=mesa-demos
+pkgname=('mesa-demos' 'mesa-utils')
 pkgver=8.4.0
-pkgrel=4
+pkgrel=5
 arch=('x86_64')
-pkgdesc="Mesa demos and tools incl. glxinfo + glxgears"
 url="https://www.mesa3d.org/;
 license=('custom')
-depends=('libgl' 'glew' 'freeglut')
-makedepends=('mesa' 'freetype2' 'git')
+makedepends=('mesa' 'freetype2' 'git'
+ 'glew' 'freeglut')
 
source=(https://mesa.freedesktop.org/archive/demos/mesa-demos-$pkgver.tar.bz2{,.sig}
 'LICENSE')
 
sha512sums=('b72d03cad36e0535ff18dcfb222ec4200064b9264f6da51a6e5f03b0dd912abe188bc1d600b6698de3ce6f63b28d2ce01565886ca8e7079edc4967fbf2fb0957'
@@ -22,10 +21,16 @@
   ./configure --prefix=/usr \
 --disable-gles1 \
 --with-system-data-files=/usr/share/mesa-demos
+
   make
 }
 
-package() {
+package_mesa-demos() {
+
+  pkgdesc="Mesa demos"
+  install=mesa-demos.install
+  depends=('glew' 'freeglut')
+  
   cd mesa-demos-$pkgver
   make DESTDIR="${pkgdir}" install
   
@@ -35,3 +40,16 @@
   install -m755 -d "${pkgdir}/usr/share/licenses/mesa-demos"
   install -m644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/mesa-demos/"
 }
+
+package_mesa-utils() {
+
+  pkgdesc="essential Mesa utilities"
+  depends=('libgl')
+  provides=('glxinfo' 'glxgears' 'eglinfo')
+
+  install -Dm755 ../pkg/mesa-demos/usr/bin/{glxinfo,glxgears,eglinfo} -t 
"$pkgdir"/usr/bin
+  rm ../pkg/mesa-demos/usr/bin/{glxinfo,glxgears,eglinfo}
+  
+  install -m755 -d "${pkgdir}/usr/share/licenses/$pkgname"
+  install -m644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/$pkgname/"
+}

Added: mesa-demos.install
===
--- mesa-demos.install  (rev 0)
+++ mesa-demos.install  2021-11-23 20:55:28 UTC (rev 428993)
@@ -0,0 +1,6 @@
+post_upgrade() {
+  if [ "`vercmp $2 8.4.0-5`" -lt 0 ]; then
+echo ">>> glxinfo, eglinfo and glxgears are now part of"
+echo ">>> the new \"mesa-utils\" package."
+  fi
+}



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

2021-11-23 Thread Orhun Parmaksiz via arch-commits
Date: Tuesday, November 23, 2021 @ 20:22:22
  Author: orhun
Revision: 1054509

archrelease: copy trunk to community-x86_64

Added:
  onefetch/repos/community-x86_64/PKGBUILD
(from rev 1054508, onefetch/trunk/PKGBUILD)
Deleted:
  onefetch/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-11-23 20:22:11 UTC (rev 1054508)
+++ PKGBUILD2021-11-23 20:22:22 UTC (rev 1054509)
@@ -1,41 +0,0 @@
-# Maintainer: Orhun Parmaksız 
-# Maintainer: Caleb Maclennan 
-# Contributor: Stephen Gregoratto 
-# Contributor: Ossama Hjaji 
-
-pkgname=onefetch
-pkgver=2.10.2
-pkgrel=4
-pkgdesc="Git repository summary on your terminal"
-url="https://github.com/o2sh/onefetch;
-license=('MIT')
-arch=('x86_64')
-depends=('libgit2' 'libgit2.so')
-makedepends=('rust')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha256sums=('6e4d4effcd4fd94ce21625a5e32da5da6446c8874200e40dd791e623b7aff7bb')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  cargo build --frozen --release --all-features
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  cargo test --frozen --all-features
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  install -Dm 755 "target/release/$pkgname" "$pkgdir/usr/bin/$pkgname"
-  install -Dm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
-  install -Dm 644 LICENSE.md -t "$pkgdir/usr/share/licenses/$pkgname"
-  install -Dm 644 "docs/$pkgname.1" "$pkgdir/usr/share/man/man1/$pkgname.1"
-}
-
-# vim: ts=2 sw=2 et:

Copied: onefetch/repos/community-x86_64/PKGBUILD (from rev 1054508, 
onefetch/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-11-23 20:22:22 UTC (rev 1054509)
@@ -0,0 +1,41 @@
+# Maintainer: Orhun Parmaksız 
+# Maintainer: Caleb Maclennan 
+# Contributor: Stephen Gregoratto 
+# Contributor: Ossama Hjaji 
+
+pkgname=onefetch
+pkgver=2.11.0
+pkgrel=1
+pkgdesc="Git repository summary on your terminal"
+url="https://github.com/o2sh/onefetch;
+license=('MIT')
+arch=('x86_64')
+depends=('libgit2' 'libgit2.so')
+makedepends=('rust')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha256sums=('ffd3cc3bd24e299ede1fada2b2da8bf066d59219da167477e1997c860650c192')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  cargo build --frozen --release --all-features
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  cargo test --frozen --all-features
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  install -Dm 755 "target/release/$pkgname" "$pkgdir/usr/bin/$pkgname"
+  install -Dm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
+  install -Dm 644 LICENSE.md -t "$pkgdir/usr/share/licenses/$pkgname"
+  install -Dm 644 "docs/$pkgname.1" "$pkgdir/usr/share/man/man1/$pkgname.1"
+}
+
+# vim: ts=2 sw=2 et:



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

2021-11-23 Thread Orhun Parmaksiz via arch-commits
Date: Tuesday, November 23, 2021 @ 20:22:11
  Author: orhun
Revision: 1054508

upgpkg: onefetch 2.11.0-1: upstream release

Modified:
  onefetch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-23 19:54:21 UTC (rev 1054507)
+++ PKGBUILD2021-11-23 20:22:11 UTC (rev 1054508)
@@ -4,8 +4,8 @@
 # Contributor: Ossama Hjaji 
 
 pkgname=onefetch
-pkgver=2.10.2
-pkgrel=4
+pkgver=2.11.0
+pkgrel=1
 pkgdesc="Git repository summary on your terminal"
 url="https://github.com/o2sh/onefetch;
 license=('MIT')
@@ -13,7 +13,7 @@
 depends=('libgit2' 'libgit2.so')
 makedepends=('rust')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha256sums=('6e4d4effcd4fd94ce21625a5e32da5da6446c8874200e40dd791e623b7aff7bb')
+sha256sums=('ffd3cc3bd24e299ede1fada2b2da8bf066d59219da167477e1997c860650c192')
 
 prepare() {
   cd "$pkgname-$pkgver"



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

2021-11-23 Thread Bruno Pagani via arch-commits
Date: Tuesday, November 23, 2021 @ 19:54:21
  Author: archange
Revision: 1054507

archrelease: copy trunk to community-any

Added:
  materia-kde/repos/community-any/PKGBUILD
(from rev 1054505, materia-kde/trunk/PKGBUILD)
Deleted:
  materia-kde/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-11-23 19:54:21 UTC (rev 1054506)
+++ PKGBUILD2021-11-23 19:54:21 UTC (rev 1054507)
@@ -1,38 +0,0 @@
-# Maintainer: Bruno Pagani 
-
-pkgbase=materia-kde
-pkgname=(materia-kde kvantum-theme-materia)
-pkgver=20211027
-pkgrel=1
-pkgdesc="Materia theme for KDE Plasma 5"
-arch=(any)
-url="https://github.com/PapirusDevelopmentTeam/materia-kde;
-license=(GPL3)
-options=(!strip)
-source=(${url}/archive/${pkgver}/${pkgbase}-${pkgver}.tar.gz)
-sha256sums=('cfabeecbfe5a9d3f163c61d00b8a75b1780788662d84f3686e9ebc3be985377f')
-
-package_materia-kde() {
-optdepends=('materia-gtk-theme: Matching GTK theme'
-'kvantum-theme-materia: Materia theme for Kvantum Qt style 
(recommended)')
-
-cd ${pkgbase}-${pkgver}
-install -d "${pkgdir}"/usr/share
-
-cp -r plasma "${pkgdir}"/usr/share
-cp -r aurorae "${pkgdir}"/usr/share
-cp -r color-schemes "${pkgdir}"/usr/share
-cp -r sddm "${pkgdir}"/usr/share
-cp -r konsole "${pkgdir}"/usr/share
-cp -r yakuake "${pkgdir}"/usr/share
-}
-
-package_kvantum-theme-materia() {
-pkgdesc="Materia theme for KDE Plasma 5"
-depends=(kvantum-qt5)
-
-cd ${pkgbase}-${pkgver}
-install -d "${pkgdir}"/usr/share
-
-cp -r Kvantum "${pkgdir}"/usr/share
-}

Copied: materia-kde/repos/community-any/PKGBUILD (from rev 1054505, 
materia-kde/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-11-23 19:54:21 UTC (rev 1054507)
@@ -0,0 +1,38 @@
+# Maintainer: Bruno Pagani 
+
+pkgbase=materia-kde
+pkgname=(materia-kde kvantum-theme-materia)
+pkgver=20211123
+pkgrel=1
+pkgdesc="Materia theme for KDE Plasma 5"
+arch=(any)
+url="https://github.com/PapirusDevelopmentTeam/materia-kde;
+license=(GPL3)
+options=(!strip)
+source=(${url}/archive/${pkgver}/${pkgbase}-${pkgver}.tar.gz)
+sha256sums=('31707d0ccd564131ffd77d6bfcffa3063789579e43e5f3260883966973a2298d')
+
+package_materia-kde() {
+optdepends=('materia-gtk-theme: Matching GTK theme'
+'kvantum-theme-materia: Materia theme for Kvantum Qt style 
(recommended)')
+
+cd ${pkgbase}-${pkgver}
+install -d "${pkgdir}"/usr/share
+
+cp -r plasma "${pkgdir}"/usr/share
+cp -r aurorae "${pkgdir}"/usr/share
+cp -r color-schemes "${pkgdir}"/usr/share
+cp -r sddm "${pkgdir}"/usr/share
+cp -r konsole "${pkgdir}"/usr/share
+cp -r yakuake "${pkgdir}"/usr/share
+}
+
+package_kvantum-theme-materia() {
+pkgdesc="Materia theme for KDE Plasma 5"
+depends=(kvantum-qt5)
+
+cd ${pkgbase}-${pkgver}
+install -d "${pkgdir}"/usr/share
+
+cp -r Kvantum "${pkgdir}"/usr/share
+}



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

2021-11-23 Thread Bruno Pagani via arch-commits
Date: Tuesday, November 23, 2021 @ 19:53:57
  Author: archange
Revision: 1054505

upgpkg: materia-kde 20211123-1

Modified:
  materia-kde/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-23 19:46:31 UTC (rev 1054504)
+++ PKGBUILD2021-11-23 19:53:57 UTC (rev 1054505)
@@ -2,7 +2,7 @@
 
 pkgbase=materia-kde
 pkgname=(materia-kde kvantum-theme-materia)
-pkgver=20211027
+pkgver=20211123
 pkgrel=1
 pkgdesc="Materia theme for KDE Plasma 5"
 arch=(any)
@@ -10,7 +10,7 @@
 license=(GPL3)
 options=(!strip)
 source=(${url}/archive/${pkgver}/${pkgbase}-${pkgver}.tar.gz)
-sha256sums=('cfabeecbfe5a9d3f163c61d00b8a75b1780788662d84f3686e9ebc3be985377f')
+sha256sums=('31707d0ccd564131ffd77d6bfcffa3063789579e43e5f3260883966973a2298d')
 
 package_materia-kde() {
 optdepends=('materia-gtk-theme: Matching GTK theme'



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

2021-11-23 Thread Christian Hesse via arch-commits
Date: Tuesday, November 23, 2021 @ 19:46:31
  Author: eworm
Revision: 1054504

archrelease: copy trunk to community-testing-x86_64

Added:
  haproxy/repos/community-testing-x86_64/
  
haproxy/repos/community-testing-x86_64/0001-Use-CFLAGS-and-LDFLAGS-when-building-admin.patch
(from rev 1054503, 
haproxy/trunk/0001-Use-CFLAGS-and-LDFLAGS-when-building-admin.patch)
  haproxy/repos/community-testing-x86_64/PKGBUILD
(from rev 1054503, haproxy/trunk/PKGBUILD)
  haproxy/repos/community-testing-x86_64/haproxy.cfg
(from rev 1054503, haproxy/trunk/haproxy.cfg)
  haproxy/repos/community-testing-x86_64/haproxy.install
(from rev 1054503, haproxy/trunk/haproxy.install)
  haproxy/repos/community-testing-x86_64/haproxy.sysusers
(from rev 1054503, haproxy/trunk/haproxy.sysusers)

---+
 0001-Use-CFLAGS-and-LDFLAGS-when-building-admin.patch |   39 +++
 PKGBUILD  |   82 
 haproxy.cfg   |   49 +
 haproxy.install   |8 +
 haproxy.sysusers  |1 
 5 files changed, 179 insertions(+)

Copied: 
haproxy/repos/community-testing-x86_64/0001-Use-CFLAGS-and-LDFLAGS-when-building-admin.patch
 (from rev 1054503, 
haproxy/trunk/0001-Use-CFLAGS-and-LDFLAGS-when-building-admin.patch)
===
--- 
community-testing-x86_64/0001-Use-CFLAGS-and-LDFLAGS-when-building-admin.patch  
(rev 0)
+++ 
community-testing-x86_64/0001-Use-CFLAGS-and-LDFLAGS-when-building-admin.patch  
2021-11-23 19:46:31 UTC (rev 1054504)
@@ -0,0 +1,39 @@
+diff --git a/admin/iprange/Makefile b/admin/iprange/Makefile
+index 13598d8..eb89fb9 100644
+--- a/admin/iprange/Makefile
 b/admin/iprange/Makefile
+@@ -7,7 +7,7 @@ OBJS = iprange ip6range
+ all: $(OBJS)
+ 
+ %: %.c
+-  $(CC) $(LDFLAGS) $(OPTIMIZE) -o $@ $^
++  $(CC) $(OPTIMIZE) $(CFLAGS) $(LDFLAGS) -o $@ $^
+ 
+ clean:
+   rm -f $(OBJS) *.o *.a *~
+diff --git a/dev/poll/Makefile b/dev/poll/Makefile
+index fdee514..9be926c 100644
+--- a/dev/poll/Makefile
 b/dev/poll/Makefile
+@@ -5,7 +5,7 @@ INCLUDE  =
+ OBJS = poll
+ 
+ poll: poll.c
+-  $(CC) $(OPTIMIZE) $(DEFINE) $(INCLUDE) -o $@ $^
++  $(CC) $(OPTIMIZE) $(CFLAGS) $(LDFLAGS) $(DEFINE) $(INCLUDE) -o $@ $^
+ 
+ clean:
+   rm -f $(OBJS) *.[oas] *~
+diff --git a/dev/tcploop/Makefile b/dev/tcploop/Makefile
+index 42a6259..e8a6ff7 100644
+--- a/dev/tcploop/Makefile
 b/dev/tcploop/Makefile
+@@ -5,7 +5,7 @@ INCLUDE  =
+ OBJS = tcploop
+ 
+ tcploop: tcploop.c
+-  $(CC) $(OPTIMIZE) $(DEFINE) $(INCLUDE) -o $@ $^
++  $(CC) $(OPTIMIZE) $(CFLAGS) $(LDFLAGS) $(DEFINE) $(INCLUDE) -o $@ $^
+ 
+ clean:
+   rm -f $(OBJS) *.[oas] *~

Copied: haproxy/repos/community-testing-x86_64/PKGBUILD (from rev 1054503, 
haproxy/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-11-23 19:46:31 UTC (rev 1054504)
@@ -0,0 +1,82 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Bartłomiej Piotrowski 
+
+pkgname=haproxy
+pkgver=2.5.0
+pkgrel=1
+
+pkgdesc='Reliable, high performance TCP/HTTP load balancer'
+url='https://www.haproxy.org/'
+arch=('x86_64')
+license=('GPL')
+
+depends=('openssl' 'pcre' 'zlib' 'libxcrypt' 'libcrypt.so' 'lua' 
'systemd-libs')
+makedepends=('systemd')
+
+backup=('etc/haproxy/haproxy.cfg')
+
+install=haproxy.install
+
+source=(https://www.haproxy.org/download/${pkgver%.*}/src/haproxy-$pkgver.tar.gz
+haproxy.cfg
+haproxy.sysusers
+0001-Use-CFLAGS-and-LDFLAGS-when-building-admin.patch)
+
+sha256sums=('16a5ed6256ca3670e41b76366a892b08485643204a3ce72b6e7a2d9a313aa225'
+'e88edeb2fe23508565e46ff485c93cfb7c2e9c64f231538452ec7ecd7ec37a42'
+'b02b4088205039f0979aef0ef3e22957f493dd54eabefaee7011f2d795303b3e'
+'8cdbb8be7a712f7b2c7f4823a96d2d2926d96b57632e9669069354d7f2df9fd2')
+
+prepare() {
+  cd haproxy-$pkgver
+
+  patch -p1 <"$srcdir"/0001-Use-CFLAGS-and-LDFLAGS-when-building-admin.patch
+}
+
+build() {
+  cd haproxy-$pkgver
+
+  export CFLAGS="$CFLAGS -fwrapv"
+
+  make \
+CFLAGS="$CFLAGS" \
+LDFLAGS="$LDFLAGS" \
+CPU=generic \
+TARGET=linux-glibc \
+USE_GETADDRINFO=1 \
+USE_LUA=1 \
+USE_OPENSSL=1 \
+USE_PCRE=1 USE_PCRE_JIT=1 \
+USE_PROMEX=1 \
+USE_SYSTEMD=1 \
+USE_ZLIB=1
+
+make \
+  SBINDIR=/usr/bin \
+  OPTIMIZE= \
+  CFLAGS="$CFLAGS" \
+  LDFLAGS="$LDFLAGS" \
+  admin/{halog/halog,iprange/ip{,6}range}
+make \
+  SBINDIR=/usr/bin \
+  -C admin/systemd/
+}
+
+package() {
+  cd haproxy-$pkgver
+  make \
+PREFIX="$pkgdir"/usr \
+SBINDIR="$pkgdir"/usr/bin \
+

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

2021-11-23 Thread Christian Hesse via arch-commits
Date: Tuesday, November 23, 2021 @ 19:46:23
  Author: eworm
Revision: 1054503

upgpkg: haproxy 2.5.0-1: new upstream release

Modified:
  haproxy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-23 19:28:06 UTC (rev 1054502)
+++ PKGBUILD2021-11-23 19:46:23 UTC (rev 1054503)
@@ -2,7 +2,7 @@
 # Contributor: Bartłomiej Piotrowski 
 
 pkgname=haproxy
-pkgver=2.4.8
+pkgver=2.5.0
 pkgrel=1
 
 pkgdesc='Reliable, high performance TCP/HTTP load balancer'
@@ -22,7 +22,7 @@
 haproxy.sysusers
 0001-Use-CFLAGS-and-LDFLAGS-when-building-admin.patch)
 
-sha256sums=('e3e4c1ad293bc25e8d8790cc5e45133213dda008bfd0228bf3077259b32ebaa5'
+sha256sums=('16a5ed6256ca3670e41b76366a892b08485643204a3ce72b6e7a2d9a313aa225'
 'e88edeb2fe23508565e46ff485c93cfb7c2e9c64f231538452ec7ecd7ec37a42'
 'b02b4088205039f0979aef0ef3e22957f493dd54eabefaee7011f2d795303b3e'
 '8cdbb8be7a712f7b2c7f4823a96d2d2926d96b57632e9669069354d7f2df9fd2')



[arch-commits] Commit in intel-graphics-compiler/repos (2 files)

2021-11-23 Thread Bruno Pagani via arch-commits
Date: Tuesday, November 23, 2021 @ 19:28:06
  Author: archange
Revision: 1054502

archrelease: copy trunk to community-testing-x86_64

Added:
  intel-graphics-compiler/repos/community-testing-x86_64/
  intel-graphics-compiler/repos/community-testing-x86_64/PKGBUILD
(from rev 1054501, intel-graphics-compiler/trunk/PKGBUILD)

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

Copied: intel-graphics-compiler/repos/community-testing-x86_64/PKGBUILD (from 
rev 1054501, intel-graphics-compiler/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-11-23 19:28:06 UTC (rev 1054502)
@@ -0,0 +1,58 @@
+# Maintainer: Daniel Bermond 
+# Maintainer: Bruno Pagani 
+
+pkgname=intel-graphics-compiler
+epoch=1
+pkgver=1.0.9389
+pkgrel=1
+pkgdesc="Intel Graphics Compiler for OpenCL"
+arch=(x86_64)
+url="https://github.com/intel/intel-graphics-compiler;
+license=(MIT)
+depends=(llvm-libs intel-opencl-clang ncurses zlib)
+makedepends=(git cmake clang lld llvm python libunwind)
+options=(!emptydirs)
+source=(${url}/archive/igc-${pkgver}.tar.gz
+
${pkgname}-fix-lld-prebuilt.patch::https://github.com/intel/intel-graphics-compiler/pull/210.patch
+
${pkgname}-fix-216.patch::https://github.com/intel/intel-graphics-compiler/commit/99edbf49d7c97febca9fd354415a9a93c92421d3.patch
+
git+https://github.com/intel/vc-intrinsics.git#commit=2cd5a7b013d09d21ad206708943faf0b575e0ece
+git+https://github.com/KhronosGroup/SPIRV-Tools.git
+git+https://github.com/KhronosGroup/SPIRV-Headers.git)
+sha256sums=('563a525375c25875aeb41a0fed1ebe9d1c3d67355576c73948c5305bcac93e36'
+'b2da1a00ac59ce7e98fd6cfb554f8974b1500bc1b9973387181414ffa4cffea5'
+'c7a96b5629384422ff2d848624ac60d5cc6dffd0289bce430df1ba813a45474c'
+'SKIP'
+'SKIP'
+'SKIP')
+
+prepare() {
+  cd ${pkgname}-igc-${pkgver}
+  # https://github.com/intel/intel-graphics-compiler/issues/216
+  patch -p1 < ../${pkgname}-fix-216.patch
+  patch -p1 < ../${pkgname}-fix-lld-prebuilt.patch
+}
+
+build() {
+  cmake -B build -S ${pkgname}-igc-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DIGC_OPTION__ARCHITECTURE_TARGET='Linux64' \
+-DIGC_OPTION__CLANG_MODE=Prebuilds \
+-DIGC_OPTION__LLD_MODE=Prebuilds \
+-DIGC_OPTION__LLVM_PREFERRED_VERSION='13.0.0' \
+-DIGC_OPTION__LLVM_MODE=Prebuilds \
+-DIGC_OPTION__LINK_KHRONOS_SPIRV_TRANSLATOR=ON \
+-DIGC_OPTION__USE_KHRONOS_SPIRV_TRANSLATOR_IN_VC=ON \
+-DIGC_OPTION__SPIRV_TRANSLATOR_MODE=Prebuilds \
+-DVC_INTRINSICS_SRC="${srcdir}/vc-intrinsics" \
+-DINSTALL_GENX_IR=ON \
+-Wno-dev
+  make -C build
+}
+
+package() {
+  make -C build DESTDIR="${pkgdir}" install
+  install -D -m644 ${pkgname}-igc-${pkgver}/LICENSE.md -t 
"${pkgdir}"/usr/share/licenses/${pkgname}
+  mv "${pkgdir}"/usr/lib/igc/NOTICES.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}
+}



[arch-commits] Commit in intel-graphics-compiler/trunk (PKGBUILD)

2021-11-23 Thread Bruno Pagani via arch-commits
Date: Tuesday, November 23, 2021 @ 19:27:45
  Author: archange
Revision: 1054501

upgpkg: intel-graphics-compiler 1:1.0.9389-1

Modified:
  intel-graphics-compiler/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-23 18:08:23 UTC (rev 1054500)
+++ PKGBUILD2021-11-23 19:27:45 UTC (rev 1054501)
@@ -3,8 +3,8 @@
 
 pkgname=intel-graphics-compiler
 epoch=1
-pkgver=1.0.8744
-pkgrel=4
+pkgver=1.0.9389
+pkgrel=1
 pkgdesc="Intel Graphics Compiler for OpenCL"
 arch=(x86_64)
 url="https://github.com/intel/intel-graphics-compiler;
@@ -13,18 +13,22 @@
 makedepends=(git cmake clang lld llvm python libunwind)
 options=(!emptydirs)
 source=(${url}/archive/igc-${pkgver}.tar.gz
-
${pkgname}-fix-209.patch::https://github.com/intel/intel-graphics-compiler/commit/c74d33971d65d6bf410e77fca0c27aeedce7b81e.patch
 
${pkgname}-fix-lld-prebuilt.patch::https://github.com/intel/intel-graphics-compiler/pull/210.patch
-
git+https://github.com/intel/vc-intrinsics.git#commit=e5ad7e02aa4aa21a3cd7b3e5d1f3ec9b95f58872)
-sha256sums=('1e8ef2dcebb670e7d66de053c2b0c92b8cf8733dae04503bf26dfd7cc798b5ef'
-'5c4a77e85a85b4b23189a94466eedf5e8103f9583792720b61df1b7044b38796'
+
${pkgname}-fix-216.patch::https://github.com/intel/intel-graphics-compiler/commit/99edbf49d7c97febca9fd354415a9a93c92421d3.patch
+
git+https://github.com/intel/vc-intrinsics.git#commit=2cd5a7b013d09d21ad206708943faf0b575e0ece
+git+https://github.com/KhronosGroup/SPIRV-Tools.git
+git+https://github.com/KhronosGroup/SPIRV-Headers.git)
+sha256sums=('563a525375c25875aeb41a0fed1ebe9d1c3d67355576c73948c5305bcac93e36'
 'b2da1a00ac59ce7e98fd6cfb554f8974b1500bc1b9973387181414ffa4cffea5'
+'c7a96b5629384422ff2d848624ac60d5cc6dffd0289bce430df1ba813a45474c'
+'SKIP'
+'SKIP'
 'SKIP')
 
 prepare() {
   cd ${pkgname}-igc-${pkgver}
-  # https://github.com/intel/intel-graphics-compiler/issues/209
-  patch -p1 < ../${pkgname}-fix-209.patch
+  # https://github.com/intel/intel-graphics-compiler/issues/216
+  patch -p1 < ../${pkgname}-fix-216.patch
   patch -p1 < ../${pkgname}-fix-lld-prebuilt.patch
 }
 



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

2021-11-23 Thread Antonio Rojas via arch-commits
Date: Tuesday, November 23, 2021 @ 18:08:23
  Author: arojas
Revision: 1054500

archrelease: copy trunk to community-x86_64

Added:
  gpxsee/repos/community-x86_64/PKGBUILD
(from rev 1054499, gpxsee/trunk/PKGBUILD)
Deleted:
  gpxsee/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-11-23 18:08:12 UTC (rev 1054499)
+++ PKGBUILD2021-11-23 18:08:23 UTC (rev 1054500)
@@ -1,37 +0,0 @@
-# Maintainer: Balló György 
-# Contributor: Raffaele Zamorano
-# Contributor: Jose Riha 
-# Contributor: Nikolay Korotkiy 
-
-pkgname=gpxsee
-_pkgname=GPXSee
-pkgver=9.11
-pkgrel=1
-pkgdesc='GPS log file viewer and analyzer'
-arch=(x86_64)
-url='https://www.gpxsee.org/'
-license=(GPL3)
-depends=(qt6-imageformats qt6-5compat)
-makedepends=(qt6-tools)
-source=(https://downloads.sourceforge.net/$pkgname/$_pkgname-$pkgver.tar.gz
-https://github.com/tumic0/GPXSee/commit/21cda471.patch)
-sha256sums=('8bd55580a6d6fbd9d7f754476cbd020eae212d252f95ca63d357edcb6c8859fa'
-'7eec71ec92749893938c88d648466d5057238899a77c0c81742ed96da058821f')
-
-prepare() {
-  patch -d $_pkgname-$pkgver -p1 < 21cda471.patch # Fix icons install
-}
-
-build() {
-  cd $_pkgname-$pkgver
-  /usr/lib/qt6/bin/lrelease gpxsee.pro
-  qmake6 gpxsee.pro PREFIX=/usr
-  make
-}
-
-package() {
-  cd $_pkgname-$pkgver
-  make INSTALL_ROOT="$pkgdir" install
-  # Install appdata
-  install -Dm644 pkg/appdata.xml 
"$pkgdir"/usr/share/metainfo/$pkgname.appdata.xml
-}

Copied: gpxsee/repos/community-x86_64/PKGBUILD (from rev 1054499, 
gpxsee/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-11-23 18:08:23 UTC (rev 1054500)
@@ -0,0 +1,31 @@
+# Maintainer: Balló György 
+# Contributor: Raffaele Zamorano
+# Contributor: Jose Riha 
+# Contributor: Nikolay Korotkiy 
+
+pkgname=gpxsee
+_pkgname=GPXSee
+pkgver=9.12
+pkgrel=1
+pkgdesc='GPS log file viewer and analyzer'
+arch=(x86_64)
+url='https://www.gpxsee.org/'
+license=(GPL3)
+depends=(qt6-imageformats qt6-5compat)
+makedepends=(qt6-tools)
+source=(https://downloads.sourceforge.net/$pkgname/$_pkgname-$pkgver.tar.gz)
+sha256sums=('52724a54469fca6edb754fc6e43c68eec42b7f6549dc74677edcf1d1d041ee5e')
+
+build() {
+  cd $_pkgname-$pkgver
+  /usr/lib/qt6/bin/lrelease gpxsee.pro
+  qmake6 gpxsee.pro PREFIX=/usr
+  make
+}
+
+package() {
+  cd $_pkgname-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+  # Install appdata
+  install -Dm644 pkg/appdata.xml 
"$pkgdir"/usr/share/metainfo/$pkgname.appdata.xml
+}



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

2021-11-23 Thread Antonio Rojas via arch-commits
Date: Tuesday, November 23, 2021 @ 18:08:12
  Author: arojas
Revision: 1054499

Update to 9.12

Modified:
  gpxsee/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-23 17:22:16 UTC (rev 1054498)
+++ PKGBUILD2021-11-23 18:08:12 UTC (rev 1054499)
@@ -5,7 +5,7 @@
 
 pkgname=gpxsee
 _pkgname=GPXSee
-pkgver=9.11
+pkgver=9.12
 pkgrel=1
 pkgdesc='GPS log file viewer and analyzer'
 arch=(x86_64)
@@ -13,15 +13,9 @@
 license=(GPL3)
 depends=(qt6-imageformats qt6-5compat)
 makedepends=(qt6-tools)
-source=(https://downloads.sourceforge.net/$pkgname/$_pkgname-$pkgver.tar.gz
-https://github.com/tumic0/GPXSee/commit/21cda471.patch)
-sha256sums=('8bd55580a6d6fbd9d7f754476cbd020eae212d252f95ca63d357edcb6c8859fa'
-'7eec71ec92749893938c88d648466d5057238899a77c0c81742ed96da058821f')
+source=(https://downloads.sourceforge.net/$pkgname/$_pkgname-$pkgver.tar.gz)
+sha256sums=('52724a54469fca6edb754fc6e43c68eec42b7f6549dc74677edcf1d1d041ee5e')
 
-prepare() {
-  patch -d $_pkgname-$pkgver -p1 < 21cda471.patch # Fix icons install
-}
-
 build() {
   cd $_pkgname-$pkgver
   /usr/lib/qt6/bin/lrelease gpxsee.pro



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

2021-11-23 Thread Antonio Rojas via arch-commits
Date: Tuesday, November 23, 2021 @ 17:51:46
  Author: arojas
Revision: 428992

archrelease: copy trunk to extra-x86_64

Added:
  pstoedit/repos/extra-x86_64/PKGBUILD
(from rev 428991, pstoedit/trunk/PKGBUILD)
Deleted:
  pstoedit/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-11-23 17:51:35 UTC (rev 428991)
+++ PKGBUILD2021-11-23 17:51:46 UTC (rev 428992)
@@ -1,32 +0,0 @@
-# Maintainer: Ronald van Haren 
-# Contributor: damir 
-# Contributor: Tobias Powalowski 
-
-pkgname=pstoedit
-pkgver=3.76
-pkgrel=1
-pkgdesc="Translates PostScript and PDF graphics into other vector formats"
-arch=('x86_64')
-url="http://www.pstoedit.net/;
-license=('GPL')
-depends=('gcc-libs' 'plotutils' 'gd' 'imagemagick')
-makedepends=('ghostscript')
-source=("https://downloads.sourceforge.net/sourceforge/pstoedit/pstoedit-${pkgver}.tar.gz;)
-sha512sums=('58aed0231a380d887092af894332f562d13ada9728ebfd0a41ec3409bb488dc773abb1b69dcaa2a2625c66bc9ae822ff075c7d3f057100dd248bf06035800862')
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  sed -e 's|ImageMagick++|Magick++|' -i configure.ac
-  autoreconf -vi
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: pstoedit/repos/extra-x86_64/PKGBUILD (from rev 428991, 
pstoedit/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-11-23 17:51:46 UTC (rev 428992)
@@ -0,0 +1,32 @@
+# Maintainer: Ronald van Haren 
+# Contributor: damir 
+# Contributor: Tobias Powalowski 
+
+pkgname=pstoedit
+pkgver=3.78
+pkgrel=1
+pkgdesc="Translates PostScript and PDF graphics into other vector formats"
+arch=('x86_64')
+url="http://www.pstoedit.net/;
+license=('GPL')
+depends=('gcc-libs' 'plotutils' 'gd' 'imagemagick')
+makedepends=('ghostscript')
+source=("https://downloads.sourceforge.net/sourceforge/pstoedit/pstoedit-${pkgver}.tar.gz;)
+sha512sums=('ed880da1ba16780224b4bb40d520f99bc5290b4335dd30f1a195855ce75b3880d5a4fca9885b214855ce61d8bd701aa0681a190e69a8fdef2f3d5e1e2f692648')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  sed -e 's|ImageMagick++|Magick++|' -i configure.ac
+  autoreconf -vi
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}



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

2021-11-23 Thread Antonio Rojas via arch-commits
Date: Tuesday, November 23, 2021 @ 17:51:35
  Author: arojas
Revision: 428991

Update to 3.78

Modified:
  pstoedit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-23 17:26:59 UTC (rev 428990)
+++ PKGBUILD2021-11-23 17:51:35 UTC (rev 428991)
@@ -3,7 +3,7 @@
 # Contributor: Tobias Powalowski 
 
 pkgname=pstoedit
-pkgver=3.76
+pkgver=3.78
 pkgrel=1
 pkgdesc="Translates PostScript and PDF graphics into other vector formats"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 depends=('gcc-libs' 'plotutils' 'gd' 'imagemagick')
 makedepends=('ghostscript')
 
source=("https://downloads.sourceforge.net/sourceforge/pstoedit/pstoedit-${pkgver}.tar.gz;)
-sha512sums=('58aed0231a380d887092af894332f562d13ada9728ebfd0a41ec3409bb488dc773abb1b69dcaa2a2625c66bc9ae822ff075c7d3f057100dd248bf06035800862')
+sha512sums=('ed880da1ba16780224b4bb40d520f99bc5290b4335dd30f1a195855ce75b3880d5a4fca9885b214855ce61d8bd701aa0681a190e69a8fdef2f3d5e1e2f692648')
 
 prepare() {
   cd "${srcdir}/${pkgname}-${pkgver}"



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

2021-11-23 Thread Jan Steffens via arch-commits
Date: Tuesday, November 23, 2021 @ 17:26:59
  Author: heftig
Revision: 428990

archrelease: copy trunk to extra-any

Added:
  alacarte/repos/extra-any/PKGBUILD
(from rev 428989, alacarte/trunk/PKGBUILD)
Deleted:
  alacarte/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-11-23 17:26:53 UTC (rev 428989)
+++ PKGBUILD2021-11-23 17:26:59 UTC (rev 428990)
@@ -1,40 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-# Contributor: pressh 
-
-pkgname=alacarte
-pkgver=3.42.0+0+g0225d87
-pkgrel=1
-pkgdesc="Menu editor for gnome"
-url="https://gitlab.gnome.org/GNOME/alacarte;
-arch=(any)
-license=(LGPL)
-depends=(gnome-menus python-gobject python-cairo gtk3)
-makedepends=(intltool libxslt docbook-xsl git)
-_commit=0225d87182a2c208e1d7d802c174899bd34fa8ed  # tags/3.42.0^0
-source=("git+https://gitlab.gnome.org/GNOME/alacarte.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --long | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  autoreconf -fvi
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-
-  python -m compileall -d /usr "$pkgdir/usr"
-  python -O -m compileall -d /usr "$pkgdir/usr"
-}

Copied: alacarte/repos/extra-any/PKGBUILD (from rev 428989, 
alacarte/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-11-23 17:26:59 UTC (rev 428990)
@@ -0,0 +1,41 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+# Contributor: pressh 
+
+pkgname=alacarte
+pkgver=3.42.0
+pkgrel=1
+epoch=1
+pkgdesc="Menu editor for gnome"
+url="https://gitlab.gnome.org/GNOME/alacarte;
+arch=(any)
+license=(LGPL)
+depends=(gnome-menus python-gobject python-cairo gtk3)
+makedepends=(intltool libxslt docbook-xsl git)
+_commit=0225d87182a2c208e1d7d802c174899bd34fa8ed  # tags/3.42.0^0
+source=("git+https://gitlab.gnome.org/GNOME/alacarte.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  autoreconf -fvi
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+
+  python -m compileall -d /usr "$pkgdir/usr"
+  python -O -m compileall -d /usr "$pkgdir/usr"
+}



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

2021-11-23 Thread Jan Steffens via arch-commits
Date: Tuesday, November 23, 2021 @ 17:26:53
  Author: heftig
Revision: 428989

3.42.0-1: pkgver

Modified:
  alacarte/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-23 17:25:45 UTC (rev 428988)
+++ PKGBUILD2021-11-23 17:26:53 UTC (rev 428989)
@@ -3,8 +3,9 @@
 # Contributor: pressh 
 
 pkgname=alacarte
-pkgver=3.42.0+0+g0225d87
+pkgver=3.42.0
 pkgrel=1
+epoch=1
 pkgdesc="Menu editor for gnome"
 url="https://gitlab.gnome.org/GNOME/alacarte;
 arch=(any)
@@ -17,7 +18,7 @@
 
 pkgver() {
   cd $pkgname
-  git describe --long | sed 's/-/+/g'
+  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
 }
 
 prepare() {



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

2021-11-23 Thread Jan Steffens via arch-commits
Date: Tuesday, November 23, 2021 @ 17:25:45
  Author: heftig
Revision: 428988

archrelease: copy trunk to extra-any

Added:
  alacarte/repos/extra-any/PKGBUILD
(from rev 428987, alacarte/trunk/PKGBUILD)
Deleted:
  alacarte/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-11-23 17:25:37 UTC (rev 428987)
+++ PKGBUILD2021-11-23 17:25:45 UTC (rev 428988)
@@ -1,39 +0,0 @@
-# Maintainer: Jan de Groot 
-# Contributor: pressh 
-
-pkgname=alacarte
-pkgver=3.36.0+2+gae6b92d
-pkgrel=2
-pkgdesc="Menu editor for gnome"
-url="https://gitlab.gnome.org/GNOME/alacarte;
-arch=(any)
-license=(LGPL)
-depends=(gnome-menus python-gobject python-cairo gtk3)
-makedepends=(intltool libxslt docbook-xsl git gnome-common)
-_commit=ae6b92daad3f53c025f59cfbb674ba3de7dcb8a4  # master
-source=("git+https://gitlab.gnome.org/GNOME/alacarte.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --long | sed '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
-
-  python -m compileall -d /usr "$pkgdir/usr"
-  python -O -m compileall -d /usr "$pkgdir/usr"
-}

Copied: alacarte/repos/extra-any/PKGBUILD (from rev 428987, 
alacarte/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-11-23 17:25:45 UTC (rev 428988)
@@ -0,0 +1,40 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+# Contributor: pressh 
+
+pkgname=alacarte
+pkgver=3.42.0+0+g0225d87
+pkgrel=1
+pkgdesc="Menu editor for gnome"
+url="https://gitlab.gnome.org/GNOME/alacarte;
+arch=(any)
+license=(LGPL)
+depends=(gnome-menus python-gobject python-cairo gtk3)
+makedepends=(intltool libxslt docbook-xsl git)
+_commit=0225d87182a2c208e1d7d802c174899bd34fa8ed  # tags/3.42.0^0
+source=("git+https://gitlab.gnome.org/GNOME/alacarte.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --long | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  autoreconf -fvi
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+
+  python -m compileall -d /usr "$pkgdir/usr"
+  python -O -m compileall -d /usr "$pkgdir/usr"
+}



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

2021-11-23 Thread Jan Steffens via arch-commits
Date: Tuesday, November 23, 2021 @ 17:25:37
  Author: heftig
Revision: 428987

3.42.0+0+g0225d87-1

Modified:
  alacarte/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-23 17:16:40 UTC (rev 428986)
+++ PKGBUILD2021-11-23 17:25:37 UTC (rev 428987)
@@ -1,16 +1,17 @@
-# Maintainer: Jan de Groot 
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
 # Contributor: pressh 
 
 pkgname=alacarte
-pkgver=3.36.0+2+gae6b92d
-pkgrel=2
+pkgver=3.42.0+0+g0225d87
+pkgrel=1
 pkgdesc="Menu editor for gnome"
 url="https://gitlab.gnome.org/GNOME/alacarte;
 arch=(any)
 license=(LGPL)
 depends=(gnome-menus python-gobject python-cairo gtk3)
-makedepends=(intltool libxslt docbook-xsl git gnome-common)
-_commit=ae6b92daad3f53c025f59cfbb674ba3de7dcb8a4  # master
+makedepends=(intltool libxslt docbook-xsl git)
+_commit=0225d87182a2c208e1d7d802c174899bd34fa8ed  # tags/3.42.0^0
 source=("git+https://gitlab.gnome.org/GNOME/alacarte.git#commit=$_commit;)
 sha256sums=('SKIP')
 
@@ -21,7 +22,7 @@
 
 prepare() {
   cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
+  autoreconf -fvi
 }
 
 build() {



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

2021-11-23 Thread Antonio Rojas via arch-commits
Date: Tuesday, November 23, 2021 @ 17:22:16
  Author: arojas
Revision: 1054498

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-11-23 17:22:02 UTC (rev 1054497)
+++ PKGBUILD2021-11-23 17:22:16 UTC (rev 1054498)
@@ -1,33 +0,0 @@
-# Maintainer: Kyle Keen 
-
-pkgname=python-jupyter_client
-pkgver=7.0.6
-pkgrel=1
-pkgdesc="Jupyter protocol implementation and client libraries"
-arch=('any')
-url="https://pypi.python.org/pypi/jupyter_client;
-license=('BSD')
-depends=('python-ipykernel' 'python-traitlets' 'python-pyzmq'
- 'python-jupyter_core' 'python-dateutil' 'python-entrypoints' 
'python-nest_asyncio')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest' 'python-async_generator')
-#source=("$pkgname-$pkgver.tgz::https://github.com/jupyter/jupyter_client/archive/$pkgver.tar.gz;)
-source=("https://files.pythonhosted.org/packages/source/j/jupyter_client/jupyter_client-$pkgver.tar.gz;)
-sha256sums=('8b6e06000eb9399775e0a55c52df6c1be476209c22f90c2691ded0e338dc')
-
-# dep cycle with python-ipykernel
-
-build() {
-  cd "$srcdir"
-}
-
-check() {
-  cd "$srcdir/jupyter_client-$pkgver"
-  pytest
-}
-
-package() {
-  cd "$srcdir/jupyter_client-$pkgver"
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-  install -Dm644 COPYING.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-jupyter_client/repos/community-any/PKGBUILD (from rev 1054497, 
python-jupyter_client/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-11-23 17:22:16 UTC (rev 1054498)
@@ -0,0 +1,33 @@
+# Maintainer: Kyle Keen 
+
+pkgname=python-jupyter_client
+pkgver=7.1.0
+pkgrel=1
+pkgdesc="Jupyter protocol implementation and client libraries"
+arch=('any')
+url="https://pypi.python.org/pypi/jupyter_client;
+license=('BSD')
+depends=('python-ipykernel' 'python-traitlets' 'python-pyzmq'
+ 'python-jupyter_core' 'python-dateutil' 'python-entrypoints' 
'python-nest_asyncio')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest' 'python-async_generator')
+#source=("$pkgname-$pkgver.tgz::https://github.com/jupyter/jupyter_client/archive/$pkgver.tar.gz;)
+source=("https://files.pythonhosted.org/packages/source/j/jupyter_client/jupyter_client-$pkgver.tar.gz;)
+sha256sums=('a5f995a73cffb314ed262713ae6dfce53c6b8216cea9f332071b8ff44a6e1654')
+
+# dep cycle with python-ipykernel
+
+build() {
+  cd "$srcdir"
+}
+
+check() {
+  cd "$srcdir/jupyter_client-$pkgver"
+  pytest
+}
+
+package() {
+  cd "$srcdir/jupyter_client-$pkgver"
+  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
+  install -Dm644 COPYING.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



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

2021-11-23 Thread Antonio Rojas via arch-commits
Date: Tuesday, November 23, 2021 @ 17:22:02
  Author: arojas
Revision: 1054497

Update to 7.1.0

Modified:
  python-jupyter_client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-23 17:16:40 UTC (rev 1054496)
+++ PKGBUILD2021-11-23 17:22:02 UTC (rev 1054497)
@@ -1,7 +1,7 @@
 # Maintainer: Kyle Keen 
 
 pkgname=python-jupyter_client
-pkgver=7.0.6
+pkgver=7.1.0
 pkgrel=1
 pkgdesc="Jupyter protocol implementation and client libraries"
 arch=('any')
@@ -13,7 +13,7 @@
 checkdepends=('python-pytest' 'python-async_generator')
 
#source=("$pkgname-$pkgver.tgz::https://github.com/jupyter/jupyter_client/archive/$pkgver.tar.gz;)
 
source=("https://files.pythonhosted.org/packages/source/j/jupyter_client/jupyter_client-$pkgver.tar.gz;)
-sha256sums=('8b6e06000eb9399775e0a55c52df6c1be476209c22f90c2691ded0e338dc')
+sha256sums=('a5f995a73cffb314ed262713ae6dfce53c6b8216cea9f332071b8ff44a6e1654')
 
 # dep cycle with python-ipykernel
 



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

2021-11-23 Thread Jan Steffens via arch-commits
Date: Tuesday, November 23, 2021 @ 17:16:40
  Author: heftig
Revision: 428986

archrelease: copy trunk to testing-x86_64

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

-+
 PKGBUILD|   96 
 bundle.sh   |   22 ++
 certdata2pem.py |  413 ++
 3 files changed, 531 insertions(+)

Copied: nss/repos/testing-x86_64/PKGBUILD (from rev 428985, nss/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2021-11-23 17:16:40 UTC (rev 428986)
@@ -0,0 +1,96 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgbase=nss
+pkgname=(nss ca-certificates-mozilla)
+pkgver=3.72
+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=('6ea60a9ff113e493ea2ab25f41ea75a9fbd10af7903f26f703dac8680732d02e'
+'d2a1579dae05fd16175fac27ef08b54731ecefdf414085c610179afcf62b096c'
+'3bfadf722da6773bdabdd25bdf78158648043d1b7e57615574f189a88ca865dd')
+
+prepare() {
+  cd nss-$pkgver/nss
+
+  mkdir "$srcdir/certs"
+  ln -srt "$srcdir/certs" lib/ckfw/builtins/{certdata.txt,nssckbi.h}
+}
+
+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
+
+  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/bundle.sh (from rev 428985, 
nss/trunk/bundle.sh)
===
--- testing-x86_64/bundle.sh(rev 0)
+++ testing-x86_64/bundle.sh2021-11-23 17:16:40 UTC (rev 428986)
@@ -0,0 +1,22 @@
+#!/bin/sh
+# From Fedora's ca-certificates.spec
+
+(
+  cat < ca-bundle.trust.p11-kit
+
+for p in certs/*.tmp-p11-kit; do 
+  cat "$p" >> ca-bundle.trust.p11-kit
+done

Copied: nss/repos/testing-x86_64/certdata2pem.py (from rev 428985, 
nss/trunk/certdata2pem.py)
===
--- testing-x86_64/certdata2pem.py  (rev 0)
+++ testing-x86_64/certdata2pem.py  2021-11-23 17:16:40 UTC (rev 428986)
@@ -0,0 +1,413 @@
+#!/usr/bin/python
+# vim:set et sw=4:
+#
+# certdata2pem.py - splits certdata.txt into multiple files
+#
+# Copyright (C) 2009 Philipp Kern 
+# Copyright (C) 2013 Kai Engert 
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License 

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

2021-11-23 Thread Jan Steffens via arch-commits
Date: Tuesday, November 23, 2021 @ 17:16:40
  Author: heftig
Revision: 1054496

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-nss/repos/multilib-testing-x86_64/
  
lib32-nss/repos/multilib-testing-x86_64/0001-Hack-mpi_x64.s-to-work-with-fno-plt.patch
(from rev 1054495, 
lib32-nss/trunk/0001-Hack-mpi_x64.s-to-work-with-fno-plt.patch)
  lib32-nss/repos/multilib-testing-x86_64/PKGBUILD
(from rev 1054495, lib32-nss/trunk/PKGBUILD)

+
 0001-Hack-mpi_x64.s-to-work-with-fno-plt.patch |   57 +
 PKGBUILD   |   62 +++
 2 files changed, 119 insertions(+)

Copied: 
lib32-nss/repos/multilib-testing-x86_64/0001-Hack-mpi_x64.s-to-work-with-fno-plt.patch
 (from rev 1054495, 
lib32-nss/trunk/0001-Hack-mpi_x64.s-to-work-with-fno-plt.patch)
===
--- multilib-testing-x86_64/0001-Hack-mpi_x64.s-to-work-with-fno-plt.patch  
(rev 0)
+++ multilib-testing-x86_64/0001-Hack-mpi_x64.s-to-work-with-fno-plt.patch  
2021-11-23 17:16:40 UTC (rev 1054496)
@@ -0,0 +1,57 @@
+From  Mon Sep 17 00:00:00 2001
+From: "Jan Alexander Steffens (heftig)" 
+Date: Sat, 12 Dec 2020 13:43:54 +0100
+Subject: [PATCH] Hack mpi_x64.s to work with -fno-plt
+
+---
+ lib/freebl/mpi/mpi_x86.s | 23 +--
+ 1 file changed, 21 insertions(+), 2 deletions(-)
+
+diff --git a/lib/freebl/mpi/mpi_x86.s b/lib/freebl/mpi/mpi_x86.s
+index 8f7e2130c3..b3ca1ce5b4 100644
+--- a/lib/freebl/mpi/mpi_x86.s
 b/lib/freebl/mpi/mpi_x86.s
+@@ -22,22 +22,41 @@ is_sse: .long  -1
+ #
+ .ifndef NO_PIC
+ .macro GET   var,reg
+-movl   \var@GOTOFF(%ebx),\reg
++call   thunk.ax
++addl   $_GLOBAL_OFFSET_TABLE_, %eax
++movl   \var@GOTOFF(%eax),\reg
+ .endm
+ .macro PUT   reg,var
+-movl   \reg,\var@GOTOFF(%ebx)
++call   thunk.dx
++addl   $_GLOBAL_OFFSET_TABLE_, %edx
++movl   \reg,\var@GOTOFF(%edx)
+ .endm
+ .else
+ .macro GET   var,reg
+ movl   \var,\reg
+ .endm
+ .macro PUT   reg,var
+ movl   \reg,\var
+ .endm
+ .endif
+ 
+ .text
+ 
++.ifndef NO_PIC
++.globlthunk.ax
++.hidden   thunk.ax
++.type thunk.ax, @function
++thunk.ax:
++   movl   (%esp),%eax
++   ret
++
++.globlthunk.dx
++.hidden   thunk.dx
++.type thunk.dx, @function
++thunk.dx:
++   movl   (%esp),%edx
++   ret
++.endif
+ 
+  #  ebp - 36: caller's esi
+  #  ebp - 32: caller's edi

Copied: lib32-nss/repos/multilib-testing-x86_64/PKGBUILD (from rev 1054495, 
lib32-nss/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2021-11-23 17:16:40 UTC (rev 1054496)
@@ -0,0 +1,62 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Daniel Wallace 
+# Contributor: kfgz 
+# Contributor: Ionut Biru 
+
+pkgname=lib32-nss
+pkgver=3.72
+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;
+0001-Hack-mpi_x64.s-to-work-with-fno-plt.patch)
+sha256sums=('6ea60a9ff113e493ea2ab25f41ea75a9fbd10af7903f26f703dac8680732d02e'
+'e27a9fc2e7687ab9c1cb430917f13775ab29f9abf4c2032ea262a5a2a8b43ffa')
+
+prepare() {
+  cd nss-$pkgver/nss
+
+  # https://bugzilla.mozilla.org/show_bug.cgi?id=1382942
+  patch -Np1 -i "$srcdir/0001-Hack-mpi_x64.s-to-work-with-fno-plt.patch"
+}
+
+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
+
+  # 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:



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

2021-11-23 Thread Jan Steffens via arch-commits
Date: Tuesday, November 23, 2021 @ 17:16:22
  Author: heftig
Revision: 428985

3.72-2: FS#72612 fix source

Modified:
  nss/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-23 16:27:03 UTC (rev 428984)
+++ PKGBUILD2021-11-23 17:16:22 UTC (rev 428985)
@@ -4,7 +4,7 @@
 pkgbase=nss
 pkgname=(nss ca-certificates-mozilla)
 pkgver=3.72
-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=('6848428fa18be2f05b7f1ed0696fc853b4cfa2c0c3ac3d3cfbb4a5ca7429e7f4'
+sha256sums=('6ea60a9ff113e493ea2ab25f41ea75a9fbd10af7903f26f703dac8680732d02e'
 'd2a1579dae05fd16175fac27ef08b54731ecefdf414085c610179afcf62b096c'
 '3bfadf722da6773bdabdd25bdf78158648043d1b7e57615574f189a88ca865dd')
 



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

2021-11-23 Thread Jan Steffens via arch-commits
Date: Tuesday, November 23, 2021 @ 17:16:22
  Author: heftig
Revision: 1054495

3.72-2: FS#72612 fix source

Modified:
  lib32-nss/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-23 17:15:03 UTC (rev 1054494)
+++ PKGBUILD2021-11-23 17:16:22 UTC (rev 1054495)
@@ -5,7 +5,7 @@
 
 pkgname=lib32-nss
 pkgver=3.72
-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;
 0001-Hack-mpi_x64.s-to-work-with-fno-plt.patch)
-sha256sums=('6848428fa18be2f05b7f1ed0696fc853b4cfa2c0c3ac3d3cfbb4a5ca7429e7f4'
+sha256sums=('6ea60a9ff113e493ea2ab25f41ea75a9fbd10af7903f26f703dac8680732d02e'
 'e27a9fc2e7687ab9c1cb430917f13775ab29f9abf4c2032ea262a5a2a8b43ffa')
 
 prepare() {



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

2021-11-23 Thread Morten Linderud via arch-commits
Date: Tuesday, November 23, 2021 @ 17:15:03
  Author: foxboron
Revision: 1054494

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-11-23 17:14:52 UTC (rev 1054493)
+++ PKGBUILD2021-11-23 17:15:03 UTC (rev 1054494)
@@ -1,45 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Maintainer: Morten Linderud 
-
-pkgname=k9s
-pkgver=0.25.3
-pkgrel=1
-pkgdesc='TUI for managing Kubernetes clusters and pods'
-arch=(x86_64)
-url='https://github.com/derailed/k9s'
-license=(APACHE)
-makedepends=(git go)
-_commit=ffab2151ee8ba3bcde31db4a1296d4221876f2e4
-source=("git+$url#commit=$_commit")
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-build() {
-  cd $pkgname
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
-  make VERSION=$pkgver build
-}
-
-check() {
-  make -C $pkgname test
-}
-
-package() {
-  cd $pkgname
-  exes/k9s completion bash | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/bash-completion/completions/k9s"
-  exes/k9s completion zsh | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/zsh/site-functions/_k9s"
-  exes/k9s completion fish | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/fish/vendor_completions.d/k9s.fish"
-  install -Dm755 "execs/$pkgname" "$pkgdir/usr/bin/$pkgname"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# getver: github.com/derailed/k9s/releases
-# vim: ts=2 sw=2 et:

Copied: k9s/repos/community-x86_64/PKGBUILD (from rev 1054493, 
k9s/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-11-23 17:15:03 UTC (rev 1054494)
@@ -0,0 +1,45 @@
+# Maintainer: Alexander F. Rødseth 
+# Maintainer: Morten Linderud 
+
+pkgname=k9s
+pkgver=0.25.5
+pkgrel=1
+pkgdesc='TUI for managing Kubernetes clusters and pods'
+arch=(x86_64)
+url='https://github.com/derailed/k9s'
+license=(APACHE)
+makedepends=(git go)
+_commit=4ae57817bd4f7b169461e39f2f8aa506fa43c79c   #refs/tags/v0.25.5
+source=("git+$url#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+build() {
+  cd $pkgname
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+  make VERSION=$pkgver build
+}
+
+check() {
+  make -C $pkgname test
+}
+
+package() {
+  cd $pkgname
+  exes/k9s completion bash | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/bash-completion/completions/k9s"
+  exes/k9s completion zsh | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/zsh/site-functions/_k9s"
+  exes/k9s completion fish | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/fish/vendor_completions.d/k9s.fish"
+  install -Dm755 "execs/$pkgname" "$pkgdir/usr/bin/$pkgname"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# getver: github.com/derailed/k9s/releases
+# vim: ts=2 sw=2 et:



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

2021-11-23 Thread Morten Linderud via arch-commits
Date: Tuesday, November 23, 2021 @ 17:14:52
  Author: foxboron
Revision: 1054493

upgpkg: k9s 0.25.5-1

Modified:
  k9s/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-23 17:10:50 UTC (rev 1054492)
+++ PKGBUILD2021-11-23 17:14:52 UTC (rev 1054493)
@@ -2,7 +2,7 @@
 # Maintainer: Morten Linderud 
 
 pkgname=k9s
-pkgver=0.25.3
+pkgver=0.25.5
 pkgrel=1
 pkgdesc='TUI for managing Kubernetes clusters and pods'
 arch=(x86_64)
@@ -9,7 +9,7 @@
 url='https://github.com/derailed/k9s'
 license=(APACHE)
 makedepends=(git go)
-_commit=ffab2151ee8ba3bcde31db4a1296d4221876f2e4
+_commit=4ae57817bd4f7b169461e39f2f8aa506fa43c79c   #refs/tags/v0.25.5
 source=("git+$url#commit=$_commit")
 sha256sums=('SKIP')
 



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

2021-11-23 Thread Morten Linderud via arch-commits
Date: Tuesday, November 23, 2021 @ 17:10:50
  Author: foxboron
Revision: 1054492

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-11-23 17:10:41 UTC (rev 1054491)
+++ PKGBUILD2021-11-23 17:10:50 UTC (rev 1054492)
@@ -1,34 +0,0 @@
-# Maintainer: Alexander F Rødseth 
-# Maintainer: Morten Linderud 
-# Contributor: Thomas Dziedzic 
-# Contributor: Nicolás de la torre 
-# Contributor: Ryan Coyner 
-# Contributor: Jens Maucher 
-
-pkgname=python-rope
-pkgver=0.21.1
-pkgrel=1
-pkgdesc='Refactoring library'
-arch=('any')
-url='https://github.com/python-rope/rope'
-license=('GPL')
-makedepends=('python' 'python-setuptools')
-source=("https://pypi.io/packages/source/r/rope/rope-$pkgver.tar.gz;)
-sha256sums=('4fe61ea25ca64f1819be57fbb44ee07ca98b3dce08a0ceaaf3c6d6166b603f7f')
-
-build(){
-  cd "rope-$pkgver"
-  python setup.py build
-}
-
-check(){
-  cd "rope-$pkgver"
-  python -m unittest
-}
-
-package() {
-  cd "rope-$pkgver"
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-rope/repos/community-any/PKGBUILD (from rev 1054491, 
python-rope/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-11-23 17:10:50 UTC (rev 1054492)
@@ -0,0 +1,34 @@
+# Maintainer: Alexander F Rødseth 
+# Maintainer: Morten Linderud 
+# Contributor: Thomas Dziedzic 
+# Contributor: Nicolás de la torre 
+# Contributor: Ryan Coyner 
+# Contributor: Jens Maucher 
+
+pkgname=python-rope
+pkgver=0.22.0
+pkgrel=1
+pkgdesc='Refactoring library'
+arch=('any')
+url='https://github.com/python-rope/rope'
+license=('GPL')
+makedepends=('python' 'python-setuptools')
+source=("https://pypi.io/packages/source/r/rope/rope-$pkgver.tar.gz;)
+sha256sums=('b00fbc064a26fc62d7220578a27fd639b2fad57213663cc396c137e92d73f10f')
+
+build(){
+  cd "rope-$pkgver"
+  python setup.py build
+}
+
+check(){
+  cd "rope-$pkgver"
+  python -m unittest
+}
+
+package() {
+  cd "rope-$pkgver"
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+
+# vim:set ts=2 sw=2 et:



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

2021-11-23 Thread Morten Linderud via arch-commits
Date: Tuesday, November 23, 2021 @ 17:10:41
  Author: foxboron
Revision: 1054491

upgpkg: python-rope 0.22.0-1

Modified:
  python-rope/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-23 17:09:08 UTC (rev 1054490)
+++ PKGBUILD2021-11-23 17:10:41 UTC (rev 1054491)
@@ -6,7 +6,7 @@
 # Contributor: Jens Maucher 
 
 pkgname=python-rope
-pkgver=0.21.1
+pkgver=0.22.0
 pkgrel=1
 pkgdesc='Refactoring library'
 arch=('any')
@@ -14,7 +14,7 @@
 license=('GPL')
 makedepends=('python' 'python-setuptools')
 source=("https://pypi.io/packages/source/r/rope/rope-$pkgver.tar.gz;)
-sha256sums=('4fe61ea25ca64f1819be57fbb44ee07ca98b3dce08a0ceaaf3c6d6166b603f7f')
+sha256sums=('b00fbc064a26fc62d7220578a27fd639b2fad57213663cc396c137e92d73f10f')
 
 build(){
   cd "rope-$pkgver"



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

2021-11-23 Thread Morten Linderud via arch-commits
Date: Tuesday, November 23, 2021 @ 17:09:08
  Author: foxboron
Revision: 1054490

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-11-23 17:08:59 UTC (rev 1054489)
+++ PKGBUILD2021-11-23 17:09:08 UTC (rev 1054490)
@@ -1,34 +0,0 @@
-# Maintainer: Morten Linderud 
-# Maintainer: Andrew Crerar 
-# Contributor: Maikel Wever 
-
-pkgname=python-pipenv
-pkgver=2021.11.15
-pkgrel=1
-pkgdesc="Sacred Marriage of Pipfile, Pip, & Virtualenv."
-url="https://pipenv.pypa.io;
-arch=('any')
-license=('MIT')
-depends=('python' 'python-pip' 'python-certifi'
- 'python-virtualenv-clone' 'python-virtualenv')
-makedepends=('python-setuptools')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/pypa/pipenv/archive/v${pkgver}.tar.gz;)
-sha512sums=('080c8d0e5b43a6df805ffd3d298b3d7ce5f15a662bf568bfb173a1cedd5d49c3c970194aa64fbd22d7abe7710153f63870824ec349b29a34ca6d91c0589aad6b')
-
-build() {
-  cd "pipenv-${pkgver}"
-  python setup.py build
-}
-
-package() {
-  cd "pipenv-${pkgver}"
-  python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
-  install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  pushd pipenv
-  find . -name \*LICENSE\* -exec install -Dm 644 \{\} 
"${pkgdir}/usr/share/licenses/${pkgname}/"\{\} \;
-  popd
-
-  PIPENV_SHELL=bash python -m pipenv --completion | install -Dm644 /dev/stdin 
"${pkgdir}/usr/share/bash-completion/completions/pipenv"
-  PIPENV_SHELL=zsh  python -m pipenv --completion | install -Dm644 /dev/stdin 
"${pkgdir}/usr/share/zsh/site-functions/_pipenv"
-  PIPENV_SHELL=fish python -m pipenv --completion | install -Dm644 /dev/stdin 
"${pkgdir}/usr/share/fish/vendor_completions.d/pipenv.fish"
-}

Copied: python-pipenv/repos/community-any/PKGBUILD (from rev 1054489, 
python-pipenv/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-11-23 17:09:08 UTC (rev 1054490)
@@ -0,0 +1,34 @@
+# Maintainer: Morten Linderud 
+# Maintainer: Andrew Crerar 
+# Contributor: Maikel Wever 
+
+pkgname=python-pipenv
+pkgver=2021.11.23
+pkgrel=1
+pkgdesc="Sacred Marriage of Pipfile, Pip, & Virtualenv."
+url="https://pipenv.pypa.io;
+arch=('any')
+license=('MIT')
+depends=('python' 'python-pip' 'python-certifi'
+ 'python-virtualenv-clone' 'python-virtualenv')
+makedepends=('python-setuptools')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/pypa/pipenv/archive/v${pkgver}.tar.gz;)
+sha512sums=('3873a3e7de33677b63bb133e397f46030ec28a24479b38009a4c409d93277327e8f53694fa56fdb8120f9cd632e849fde6f4205e29d9f5704c8844101e8e8298')
+
+build() {
+  cd "pipenv-${pkgver}"
+  python setup.py build
+}
+
+package() {
+  cd "pipenv-${pkgver}"
+  python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
+  install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  pushd pipenv
+  find . -name \*LICENSE\* -exec install -Dm 644 \{\} 
"${pkgdir}/usr/share/licenses/${pkgname}/"\{\} \;
+  popd
+
+  PIPENV_SHELL=bash python -m pipenv --completion | install -Dm644 /dev/stdin 
"${pkgdir}/usr/share/bash-completion/completions/pipenv"
+  PIPENV_SHELL=zsh  python -m pipenv --completion | install -Dm644 /dev/stdin 
"${pkgdir}/usr/share/zsh/site-functions/_pipenv"
+  PIPENV_SHELL=fish python -m pipenv --completion | install -Dm644 /dev/stdin 
"${pkgdir}/usr/share/fish/vendor_completions.d/pipenv.fish"
+}



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

2021-11-23 Thread Morten Linderud via arch-commits
Date: Tuesday, November 23, 2021 @ 17:08:59
  Author: foxboron
Revision: 1054489

upgpkg: python-pipenv 2021.11.23-1

Modified:
  python-pipenv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-23 17:06:51 UTC (rev 1054488)
+++ PKGBUILD2021-11-23 17:08:59 UTC (rev 1054489)
@@ -3,7 +3,7 @@
 # Contributor: Maikel Wever 
 
 pkgname=python-pipenv
-pkgver=2021.11.15
+pkgver=2021.11.23
 pkgrel=1
 pkgdesc="Sacred Marriage of Pipfile, Pip, & Virtualenv."
 url="https://pipenv.pypa.io;
@@ -13,7 +13,7 @@
  'python-virtualenv-clone' 'python-virtualenv')
 makedepends=('python-setuptools')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/pypa/pipenv/archive/v${pkgver}.tar.gz;)
-sha512sums=('080c8d0e5b43a6df805ffd3d298b3d7ce5f15a662bf568bfb173a1cedd5d49c3c970194aa64fbd22d7abe7710153f63870824ec349b29a34ca6d91c0589aad6b')
+sha512sums=('3873a3e7de33677b63bb133e397f46030ec28a24479b38009a4c409d93277327e8f53694fa56fdb8120f9cd632e849fde6f4205e29d9f5704c8844101e8e8298')
 
 build() {
   cd "pipenv-${pkgver}"



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

2021-11-23 Thread Morten Linderud via arch-commits
Date: Tuesday, November 23, 2021 @ 17:06:51
  Author: foxboron
Revision: 1054488

archrelease: copy trunk to community-x86_64

Added:
  python-autobahn/repos/community-x86_64/PKGBUILD
(from rev 1054487, python-autobahn/trunk/PKGBUILD)
  python-autobahn/repos/community-x86_64/judge-sse-header.patch
(from rev 1054487, python-autobahn/trunk/judge-sse-header.patch)
Deleted:
  python-autobahn/repos/community-x86_64/PKGBUILD
  python-autobahn/repos/community-x86_64/judge-sse-header.patch

+
 PKGBUILD   |  132 +++
 judge-sse-header.patch |   28 -
 2 files changed, 80 insertions(+), 80 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-11-23 17:06:38 UTC (rev 1054487)
+++ PKGBUILD2021-11-23 17:06:51 UTC (rev 1054488)
@@ -1,66 +0,0 @@
-# Maintainer: Morten Linderud 
-# Maintainer: Chih-Hsuan Yen 
-# Maintainer: Anatol Pomozov
-
-pkgname=python-autobahn
-pkgver=21.3.1
-pkgrel=2
-pkgdesc='Real-time framework for Web, Mobile & Internet of Things'
-arch=(x86_64)
-url='https://crossbar.io/autobahn/'
-license=(MIT)
-depends=(python-cffi python-twisted python-txaio python-wsaccel
- python-cryptography)
-makedepends=(python-argon2_cffi python-cbor python-flatbuffers
- python-msgpack python-passlib python-pynacl python-pytrie
- python-setuptools python-ubjson)
-checkdepends=(python-pytest python-pytest-asyncio)
-optdepends=(
-  'python-cbor: CBOR serializer support'
-  'python-flatbuffers: FlatBuffers serializer support'
-  'python-msgpack: MsgPack serializer support'
-  'python-u-msgpack: pure-python alternative to python-msgpack for MsgPack 
serializer support'
-  'python-ubjson: UBJSON serializer support'
-  'python-ujson: accelerated JSON serializer support'
-  'python-argon2_cffi: WAMP-SCRAM authentication support'
-  'python-passlib: WAMP-SCRAM authentication support'
-  'python-pynacl: WAMP-cryptosign and WAMP-cryptobox support'
-  'python-pytrie: WAMP-cryptobox support'
-  'python-pyopenssl: SSL/TLS support'
-  'python-snappy: snappy compression suppport for WebSocket messages'
-)
-
-source=(https://files.pythonhosted.org/packages/source/a/autobahn/autobahn-$pkgver.tar.gz
-judge-sse-header.patch)
-sha256sums=('e126c1f583e872fb59e79d36977cfa1f2d0a8a79f90ae31f406faae7664b8e03'
-'a6505b22363d7b1bbd6c9b4d503118e16129abf91e65885b7ee7f47f74ed9d00')
-
-prepare() {
-  cd "$srcdir/autobahn-$pkgver"
-  # For reproducibility
-  # If Arch decides to increase CPU requirements [1], -march=x86-64 can be
-  # replaced with -march=nehalem so that the SSE 4.1 implementation is built
-  # [1] 
https://lists.archlinux.org/pipermail/arch-dev-public/2020-March/029914.html
-  sed -i "s#, '-march=native'##" autobahn/nvx/_utf8validator.py
-  patch -Np1 -i "${srcdir}/judge-sse-header.patch"
-}
-
-build() {
-  cd "$srcdir/autobahn-$pkgver"
-  AUTOBAHN_USE_NVX=1 python setup.py build
-}
-
-check() {
-  cd "$srcdir/autobahn-$pkgver"
-  pyver=$(python -c "import sys; print('{}.{}'.format(*sys.version_info[:2]))")
-  # "autobahn on asyncio is tested using pytest, while for twisted we are 
using twisted trial"
-  # 
https://github.com/crossbario/autobahn-python/issues/1235#issuecomment-522440810
-  USE_TWISTED=1 PYTHONPATH=.:build/lib.linux-$CARCH-$pyver trial autobahn
-  USE_ASYNCIO=1 PYTHONPATH=.:build/lib.linux-$CARCH-$pyver pytest autobahn
-}
-
-package() {
-  cd "$srcdir/autobahn-$pkgver"
-  AUTOBAHN_USE_NVX=1 python setup.py install --root="$pkgdir" --optimize=1 
--skip-build
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-autobahn/repos/community-x86_64/PKGBUILD (from rev 1054487, 
python-autobahn/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-11-23 17:06:51 UTC (rev 1054488)
@@ -0,0 +1,66 @@
+# Maintainer: Morten Linderud 
+# Maintainer: Chih-Hsuan Yen 
+# Maintainer: Anatol Pomozov
+
+pkgname=python-autobahn
+pkgver=21.11.1
+pkgrel=1
+pkgdesc='Real-time framework for Web, Mobile & Internet of Things'
+arch=(x86_64)
+url='https://crossbar.io/autobahn/'
+license=(MIT)
+depends=(python-cffi python-twisted python-txaio python-wsaccel
+ python-cryptography)
+makedepends=(python-argon2_cffi python-cbor python-flatbuffers
+ python-msgpack python-passlib python-pynacl python-pytrie
+ python-setuptools python-ubjson)
+checkdepends=(python-pytest python-pytest-asyncio)
+optdepends=(
+  'python-cbor: CBOR serializer support'
+  'python-flatbuffers: FlatBuffers serializer support'
+  'python-msgpack: MsgPack serializer support'
+  'python-u-msgpack: pure-python alternative to python-msgpack for MsgPack 
serializer support'
+  'python-ubjson: UBJSON serializer support'
+  'python-ujson: accelerated JSON serializer support'
+  'python-argon2_cffi: 

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

2021-11-23 Thread Morten Linderud via arch-commits
Date: Tuesday, November 23, 2021 @ 17:06:38
  Author: foxboron
Revision: 1054487

upgpkg: python-autobahn 21.11.1-1

Modified:
  python-autobahn/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-23 17:03:57 UTC (rev 1054486)
+++ PKGBUILD2021-11-23 17:06:38 UTC (rev 1054487)
@@ -3,8 +3,8 @@
 # Maintainer: Anatol Pomozov
 
 pkgname=python-autobahn
-pkgver=21.3.1
-pkgrel=2
+pkgver=21.11.1
+pkgrel=1
 pkgdesc='Real-time framework for Web, Mobile & Internet of Things'
 arch=(x86_64)
 url='https://crossbar.io/autobahn/'
@@ -32,7 +32,7 @@
 
 
source=(https://files.pythonhosted.org/packages/source/a/autobahn/autobahn-$pkgver.tar.gz
 judge-sse-header.patch)
-sha256sums=('e126c1f583e872fb59e79d36977cfa1f2d0a8a79f90ae31f406faae7664b8e03'
+sha256sums=('bd6f46315419ca0a5be4109f737410208ad5f19718f67ca6a4a674cc66ca9b18'
 'a6505b22363d7b1bbd6c9b4d503118e16129abf91e65885b7ee7f47f74ed9d00')
 
 prepare() {



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

2021-11-23 Thread Jelle van der Waa via arch-commits
Date: Tuesday, November 23, 2021 @ 17:03:47
  Author: jelle
Revision: 1054485

upgpkg: openrct2 0.3.5.1-1

Modified:
  openrct2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-23 17:03:31 UTC (rev 1054484)
+++ PKGBUILD2021-11-23 17:03:47 UTC (rev 1054485)
@@ -2,8 +2,8 @@
 # Contributor: Graham Edgecombe 
 
 pkgname=openrct2
-pkgver=0.3.5
-pkgrel=2
+pkgver=0.3.5.1
+pkgrel=1
 pkgdesc='Open source re-implementation of Roller Coaster Tycoon 2 (requires 
full
  copy of the game)'
 arch=('x86_64')
@@ -18,7 +18,7 @@
 'libpulse: PulseAudio audio driver')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/OpenRCT2/OpenRCT2/archive/v$pkgver.tar.gz
 googletest-fix-maybe-uninitialized.patch)
-sha256sums=('daeeef2c1a0d42399ce339a65576a4e005b374d42b0be88c6695d68ab33ccf21'
+sha256sums=('8ebca20667e8bcd085e7d0d22877a8e74aca00e2394cdef622ee9c761f2b5a3a'
 '6c4becab25ec1824883a4c1946d4aa4b45534b9a6199b782db7879b78178ff84')
 
 prepare() {



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

2021-11-23 Thread Morten Linderud via arch-commits
Date: Tuesday, November 23, 2021 @ 17:03:31
  Author: foxboron
Revision: 1054484

archrelease: copy trunk to community-x86_64

Added:
  tailscale/repos/community-x86_64/PKGBUILD
(from rev 1054483, tailscale/trunk/PKGBUILD)
Deleted:
  tailscale/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-11-23 17:03:22 UTC (rev 1054483)
+++ PKGBUILD2021-11-23 17:03:31 UTC (rev 1054484)
@@ -1,57 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: David Anderson 
-
-pkgname=tailscale
-pkgver=1.18.0
-pkgrel=1
-pkgdesc="A mesh VPN that makes it easy to connect your devices, wherever they 
are."
-arch=("x86_64")
-url="https://tailscale.com;
-license=("MIT")
-makedepends=("git" "go")
-depends=("glibc")
-backup=("etc/default/tailscaled")
-_commit=71f1dd5aa2b32607869a5774e29974c67ddc2131   #refs/tags/v1.18.0^{}
-source=("git+https://github.com/tailscale/tailscale.git#commit=${_commit};)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd "${pkgname}"
-  git describe --tags | sed 's/^[vV]//;s/-/+/g'
-}
-
-prepare() {
-cd "${pkgname}"
-go mod vendor
-}
-
-build() {
-cd "${pkgname}"
-export CGO_CPPFLAGS="${CPPFLAGS}"
-export CGO_CFLAGS="${CFLAGS}"
-export CGO_CXXFLAGS="${CXXFLAGS}"
-export CGO_LDFLAGS="${LDFLAGS}"
-export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
-GO_LDFLAGS="\
--linkmode=external \
--X tailscale.com/version.Long=${pkgver} \
--X tailscale.com/version.Short=$(cut -d+ -f1 <<< "${pkgver}") \
--X tailscale.com/version.GitCommit=${_commit}"
-for cmd in ./cmd/tailscale ./cmd/tailscaled; do
-go build -v -tags xversion -ldflags "$GO_LDFLAGS" "$cmd"
-done
-}
-
-#TODO: Figure out why tests are failing
-# check() {
-# cd "${pkgname}"
-# go test $(go list ./... | grep -v tsdns_test)
-# }
-
-package() {
-cd "${pkgname}"
-install -Dm755 tailscale tailscaled -t "$pkgdir/usr/bin"
-install -Dm644 cmd/tailscaled/tailscaled.defaults 
"$pkgdir/etc/default/tailscaled"
-install -Dm644 cmd/tailscaled/tailscaled.service -t 
"$pkgdir/usr/lib/systemd/system"
-install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
-}

Copied: tailscale/repos/community-x86_64/PKGBUILD (from rev 1054483, 
tailscale/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-11-23 17:03:31 UTC (rev 1054484)
@@ -0,0 +1,57 @@
+# Maintainer: Morten Linderud 
+# Contributor: David Anderson 
+
+pkgname=tailscale
+pkgver=1.18.1
+pkgrel=1
+pkgdesc="A mesh VPN that makes it easy to connect your devices, wherever they 
are."
+arch=("x86_64")
+url="https://tailscale.com;
+license=("MIT")
+makedepends=("git" "go")
+depends=("glibc")
+backup=("etc/default/tailscaled")
+_commit=aee2387d6e54095054010f00d0eea1454ccd3808   #refs/tags/v1.18.1^{}
+source=("git+https://github.com/tailscale/tailscale.git#commit=${_commit};)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd "${pkgname}"
+  git describe --tags | sed 's/^[vV]//;s/-/+/g'
+}
+
+prepare() {
+cd "${pkgname}"
+go mod vendor
+}
+
+build() {
+cd "${pkgname}"
+export CGO_CPPFLAGS="${CPPFLAGS}"
+export CGO_CFLAGS="${CFLAGS}"
+export CGO_CXXFLAGS="${CXXFLAGS}"
+export CGO_LDFLAGS="${LDFLAGS}"
+export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+GO_LDFLAGS="\
+-linkmode=external \
+-X tailscale.com/version.Long=${pkgver} \
+-X tailscale.com/version.Short=$(cut -d+ -f1 <<< "${pkgver}") \
+-X tailscale.com/version.GitCommit=${_commit}"
+for cmd in ./cmd/tailscale ./cmd/tailscaled; do
+go build -v -tags xversion -ldflags "$GO_LDFLAGS" "$cmd"
+done
+}
+
+#TODO: Figure out why tests are failing
+# check() {
+# cd "${pkgname}"
+# go test $(go list ./... | grep -v tsdns_test)
+# }
+
+package() {
+cd "${pkgname}"
+install -Dm755 tailscale tailscaled -t "$pkgdir/usr/bin"
+install -Dm644 cmd/tailscaled/tailscaled.defaults 
"$pkgdir/etc/default/tailscaled"
+install -Dm644 cmd/tailscaled/tailscaled.service -t 
"$pkgdir/usr/lib/systemd/system"
+install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
+}



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

2021-11-23 Thread Morten Linderud via arch-commits
Date: Tuesday, November 23, 2021 @ 17:03:22
  Author: foxboron
Revision: 1054483

upgpkg: tailscale 1.18.1-1

Modified:
  tailscale/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-23 16:46:38 UTC (rev 1054482)
+++ PKGBUILD2021-11-23 17:03:22 UTC (rev 1054483)
@@ -2,7 +2,7 @@
 # Contributor: David Anderson 
 
 pkgname=tailscale
-pkgver=1.18.0
+pkgver=1.18.1
 pkgrel=1
 pkgdesc="A mesh VPN that makes it easy to connect your devices, wherever they 
are."
 arch=("x86_64")
@@ -11,7 +11,7 @@
 makedepends=("git" "go")
 depends=("glibc")
 backup=("etc/default/tailscaled")
-_commit=71f1dd5aa2b32607869a5774e29974c67ddc2131   #refs/tags/v1.18.0^{}
+_commit=aee2387d6e54095054010f00d0eea1454ccd3808   #refs/tags/v1.18.1^{}
 source=("git+https://github.com/tailscale/tailscale.git#commit=${_commit};)
 sha256sums=('SKIP')
 



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

2021-11-23 Thread Anatol Pomozov via arch-commits
Date: Tuesday, November 23, 2021 @ 16:46:38
  Author: anatolik
Revision: 1054482

archrelease: copy trunk to community-testing-x86_64

Added:
  usbredir/repos/community-testing-x86_64/
  usbredir/repos/community-testing-x86_64/PKGBUILD
(from rev 1054481, usbredir/trunk/PKGBUILD)

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

Copied: usbredir/repos/community-testing-x86_64/PKGBUILD (from rev 1054481, 
usbredir/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-11-23 16:46:38 UTC (rev 1054482)
@@ -0,0 +1,30 @@
+# Maintainer: Sergej Pupykin 
+# Maintainer: Stefano Facchini 
+
+pkgname=usbredir
+pkgver=0.12.0
+pkgrel=1
+pkgdesc="USB traffic redirection protocol"
+arch=('x86_64')
+url="https://www.spice-space.org/usbredir.html;
+license=('GPL2' 'LGPL2.1')
+depends=('libusb' 'glib2')
+makedepends=('meson')
+source=(https://spice-space.org/download/usbredir/$pkgname-$pkgver.tar.xz)
+sha256sums=('fbb44025bf55e1ce8d84afc7596bfa47c8a36cd603c6fa440f9102c1c9761e6d')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  arch-meson . build
+  meson compile -C build
+}
+
+check() {
+  cd "$srcdir/$pkgname-$pkgver"
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  meson install -C build --destdir="$pkgdir"
+}



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

2021-11-23 Thread Anatol Pomozov via arch-commits
Date: Tuesday, November 23, 2021 @ 16:46:20
  Author: anatolik
Revision: 1054481

upgpkg: usbredir 0.12.0-1

Modified:
  usbredir/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-23 16:13:22 UTC (rev 1054480)
+++ PKGBUILD2021-11-23 16:46:20 UTC (rev 1054481)
@@ -2,7 +2,7 @@
 # Maintainer: Stefano Facchini 
 
 pkgname=usbredir
-pkgver=0.11.0
+pkgver=0.12.0
 pkgrel=1
 pkgdesc="USB traffic redirection protocol"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 depends=('libusb' 'glib2')
 makedepends=('meson')
 source=(https://spice-space.org/download/usbredir/$pkgname-$pkgver.tar.xz)
-sha256sums=('72dd5f3aa90dfbc0510b5149bb5b1654c8f21fdc405dfce7b5dc163dcff19cba')
+sha256sums=('fbb44025bf55e1ce8d84afc7596bfa47c8a36cd603c6fa440f9102c1c9761e6d')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"



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

2021-11-23 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, November 23, 2021 @ 16:27:03
  Author: svenstaro
Revision: 428984

archrelease: copy trunk to extra-x86_64

Added:
  varnish/repos/extra-x86_64/PKGBUILD
(from rev 428983, varnish/trunk/PKGBUILD)
  varnish/repos/extra-x86_64/varnish.install
(from rev 428983, varnish/trunk/varnish.install)
  varnish/repos/extra-x86_64/varnish.sysusers
(from rev 428983, varnish/trunk/varnish.sysusers)
Deleted:
  varnish/repos/extra-x86_64/PKGBUILD
  varnish/repos/extra-x86_64/varnish.install
  varnish/repos/extra-x86_64/varnish.sysusers

--+
 PKGBUILD |  138 ++---
 varnish.install  |   24 -
 varnish.sysusers |4 -
 3 files changed, 83 insertions(+), 83 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-11-23 16:26:57 UTC (rev 428983)
+++ PKGBUILD2021-11-23 16:27:03 UTC (rev 428984)
@@ -1,69 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Dave Reisner 
-# Contributor: Jaroslav Lichtblau 
-# Contributor: Douglas Soares de Andrade
-# Contributor: Roberto Alsina 
-
-pkgname=varnish
-pkgver=7.0.0
-pkgrel=1
-pkgdesc="High-performance HTTP accelerator"
-arch=('x86_64')
-url="https://www.varnish-cache.org/;
-license=('BSD')
-depends=('gcc' 'libnsl' 'pcre2')
-makedepends=('python-docutils' 'python-sphinx' 'git')
-optdepends=('python: needed for vmod development')
-backup=('etc/varnish/default.vcl')
-install=$pkgname.install
-source=("https://varnish-cache.org/_downloads/varnish-$pkgver.tgz;
-
"git+https://github.com/varnishcache/pkg-varnish-cache.git#commit=d3e6a3f;
-varnish.sysusers)
-sha512sums=('39c694db4ec7b35236d12fe2c03036260d6799395b1c8bb5a58e96fc88d67dcaa5eb8bc75643540d3aa0edc1a8924d7d839e88293b0521fadef4cd12f466fb4b'
-'SKIP'
-
'1eeeba4ab990c1790495f9ff4625ad37f21e155e08e0c255e09d18c44054f3a59613b81c07d8701610b0b266e5181ae8bbae2523138737f3c4f0e1a6c287bb0c')
-
-prepare() {
-  cd "varnish-$pkgver"
-
-  ./autogen.sh
-}
-
-build() {
-  cd "varnish-$pkgver"
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var/lib \
---sbindir=/usr/bin
-
-  make
-}
-
-# check() {
-#   cd "varnish-$pkgver"
-#
-#   make check
-# }
-
-package() {
-  cd "varnish-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-
-  install -Dm644 "$srcdir/pkg-varnish-cache/systemd/varnish.service" 
"$pkgdir/usr/lib/systemd/system/varnish.service"
-  install -Dm644 "$srcdir/pkg-varnish-cache/systemd/varnishncsa.service" 
"$pkgdir/usr/lib/systemd/system/varnishncsa.service"
-  install -Dm755 "$srcdir/pkg-varnish-cache/systemd/varnishreload" 
"$pkgdir/usr/bin/varnishreload"
-  install -Dm755 "$srcdir/pkg-varnish-cache/systemd/varnish.logrotate" 
"$pkgdir/etc/logrotate.d/varnish"
-
-  # create varnish:varnish user/group
-  install -Dm644 "$srcdir/varnish.sysusers" 
"$pkgdir/usr/lib/sysusers.d/varnish.conf"
-
-  # config
-  install -Dm644 "etc/example.vcl" "$pkgdir/etc/varnish/default.vcl"
-  install -Dm644 "etc/builtin.vcl" "$pkgdir/usr/share/doc/varnish/builtin.vcl"
-
-  # license
-  install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: varnish/repos/extra-x86_64/PKGBUILD (from rev 428983, 
varnish/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-11-23 16:27:03 UTC (rev 428984)
@@ -0,0 +1,69 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Dave Reisner 
+# Contributor: Jaroslav Lichtblau 
+# Contributor: Douglas Soares de Andrade
+# Contributor: Roberto Alsina 
+
+pkgname=varnish
+pkgver=7.0.1
+pkgrel=1
+pkgdesc="High-performance HTTP accelerator"
+arch=('x86_64')
+url="https://www.varnish-cache.org/;
+license=('BSD')
+depends=('gcc' 'libnsl' 'pcre2')
+makedepends=('python-docutils' 'python-sphinx' 'git')
+optdepends=('python: needed for vmod development')
+backup=('etc/varnish/default.vcl')
+install=$pkgname.install
+source=("https://varnish-cache.org/_downloads/varnish-$pkgver.tgz;
+
"git+https://github.com/varnishcache/pkg-varnish-cache.git#commit=d3e6a3f;
+varnish.sysusers)
+sha512sums=('7541d50b03a113f0a13660d459cc4c2eb45d57fb19380ab56a5413a4e5d702f9c0856585f09aeea6084a239ad8c69017af3805a864540b4697e0eac29f00b408'
+'SKIP'
+
'1eeeba4ab990c1790495f9ff4625ad37f21e155e08e0c255e09d18c44054f3a59613b81c07d8701610b0b266e5181ae8bbae2523138737f3c4f0e1a6c287bb0c')
+
+prepare() {
+  cd "varnish-$pkgver"
+
+  ./autogen.sh
+}
+
+build() {
+  cd "varnish-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var/lib \
+--sbindir=/usr/bin
+
+  make
+}
+
+# check() {
+#   cd "varnish-$pkgver"
+#
+#   make check
+# }
+
+package() {
+  cd "varnish-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 "$srcdir/pkg-varnish-cache/systemd/varnish.service" 

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

2021-11-23 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, November 23, 2021 @ 16:26:57
  Author: svenstaro
Revision: 428983

upgpkg: varnish 7.0.1-1

Modified:
  varnish/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-23 11:24:10 UTC (rev 428982)
+++ PKGBUILD2021-11-23 16:26:57 UTC (rev 428983)
@@ -5,7 +5,7 @@
 # Contributor: Roberto Alsina 
 
 pkgname=varnish
-pkgver=7.0.0
+pkgver=7.0.1
 pkgrel=1
 pkgdesc="High-performance HTTP accelerator"
 arch=('x86_64')
@@ -19,7 +19,7 @@
 source=("https://varnish-cache.org/_downloads/varnish-$pkgver.tgz;
 
"git+https://github.com/varnishcache/pkg-varnish-cache.git#commit=d3e6a3f;
 varnish.sysusers)
-sha512sums=('39c694db4ec7b35236d12fe2c03036260d6799395b1c8bb5a58e96fc88d67dcaa5eb8bc75643540d3aa0edc1a8924d7d839e88293b0521fadef4cd12f466fb4b'
+sha512sums=('7541d50b03a113f0a13660d459cc4c2eb45d57fb19380ab56a5413a4e5d702f9c0856585f09aeea6084a239ad8c69017af3805a864540b4697e0eac29f00b408'
 'SKIP'
 
'1eeeba4ab990c1790495f9ff4625ad37f21e155e08e0c255e09d18c44054f3a59613b81c07d8701610b0b266e5181ae8bbae2523138737f3c4f0e1a6c287bb0c')
 



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

2021-11-23 Thread Anatol Pomozov via arch-commits
Date: Tuesday, November 23, 2021 @ 16:13:22
  Author: anatolik
Revision: 1054480

archrelease: copy trunk to community-testing-x86_64

Added:
  gitlab-shell/repos/community-testing-x86_64/
  gitlab-shell/repos/community-testing-x86_64/PKGBUILD
(from rev 1054479, gitlab-shell/trunk/PKGBUILD)
  gitlab-shell/repos/community-testing-x86_64/configs.patch
(from rev 1054479, gitlab-shell/trunk/configs.patch)
  gitlab-shell/repos/community-testing-x86_64/gitlab-shell.gitconfig
(from rev 1054479, gitlab-shell/trunk/gitlab-shell.gitconfig)
  gitlab-shell/repos/community-testing-x86_64/gitlab-shell.install
(from rev 1054479, gitlab-shell/trunk/gitlab-shell.install)
  gitlab-shell/repos/community-testing-x86_64/gitlab-shell.sysusers
(from rev 1054479, gitlab-shell/trunk/gitlab-shell.sysusers)

+
 PKGBUILD   |   98 +++
 configs.patch  |   65 +++
 gitlab-shell.gitconfig |   12 +
 gitlab-shell.install   |4 +
 gitlab-shell.sysusers  |1 
 5 files changed, 180 insertions(+)

Copied: gitlab-shell/repos/community-testing-x86_64/PKGBUILD (from rev 1054479, 
gitlab-shell/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-11-23 16:13:22 UTC (rev 1054480)
@@ -0,0 +1,98 @@
+# Maintainer: Anatol Pomozov 
+# Contributor: Sven-Hendrik Haase 
+# Contributor: Pavol (Lopo) Hluchy 
+# Contributor: Massimiliano Torromeo 
+# Contributor: Jonas Heinrich 
+# Contributor: Lee Watson 
+# Contributor: Tobias Hunger 
+# Contributor: Stefan Tatschner 
+
+
+# NOTE: Gitlab isn't always compatible with modern Ruby versions. In that 
case, check the
+# commit log for an old fix on how to tell it to use older versions of Ruby. 
I'm afraid we'll
+# need this again at some point in the future.
+pkgname=gitlab-shell
+pkgver=13.22.0
+pkgrel=1
+epoch=3
+pkgdesc="Git management software"
+arch=('x86_64')
+url="https://gitlab.com/gitlab-org/gitlab-shell/;
+license=('MIT')
+depends=('ruby' 'redis' 'git')
+makedepends=('go')
+options=('!strip')
+install=gitlab-shell.install
+backup=("etc/webapps/${pkgname}/config.yml"
+"etc/webapps/${pkgname}/secret"
+"etc/webapps/${pkgname}/.gitconfig")
+source=("${pkgname}-${pkgver}.tar.gz::https://gitlab.com/gitlab-org/gitlab-shell/-/archive/v${pkgver}/gitlab-shell-v${pkgver}.tar.gz;
+"configs.patch"
+"gitlab-shell.gitconfig"
+"gitlab-shell.sysusers")
+sha512sums=('22e164095fe7aa0fa4f3f873a71101290ad195ec216433f66a1798b95a54f2a765ec2bc2642c96dad20658511bf436bd5363fbc465c974d88de3f58ed0d2983e'
+
'13c0fb88693e787f2960059985713d7ffb6d2fa51d9dbcba9c9562ae91e74bd3963efc63837cd19c5441fb5835d0c8eafd3285bea6676168f7b111a08fb086a7'
+
'cb8003f2ce8013fcd807aae6d66c22c3a767e74d569bd69aaa5a54b84a36135d25b3af57861f858f8f407e089ff69ff5c325bf065c6051ce8fa197fab70470b8'
+
'616188911fa7b7c569bc2d5e2024177e67366c48b4ffef1f7ad4dc8e4e9e2cdb421b687f45a1e9bdec8bf2736a157ca9f1e0ba24edae2f073b8c7b5ac42745e8')
+
+_datadir="/usr/share/webapps/${pkgname}"
+_etcdir="/etc/webapps/${pkgname}"
+_homedir="/var/lib/gitlab"
+_logdir="/var/log/gitlab"
+_srcdir="gitlab-shell-v${pkgver}"
+
+prepare() {
+  cd ${_srcdir}
+
+  patch -p1 < ../configs.patch
+  # At this point config file should not contain any references to '/home/git'
+}
+
+build() {
+  cd ${_srcdir}
+
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+  make build
+}
+
+package() {
+  cd ${_srcdir}
+
+  install -dm755 -o root -g root "${pkgdir}${_datadir}"
+  install -dm750 -o 105 -g 105 "${pkgdir}${_homedir}"
+  install -dm750 -o 105 -g 105 "${pkgdir}${_homedir}/satellites"
+  install -dm700 -o 105 -g 105 "${pkgdir}${_homedir}/.ssh"
+  install -dm750 -o 105 -g 105 "${pkgdir}${_etcdir}"
+  install -dm770 -o 105 -g root "${pkgdir}${_logdir}"
+
+  # sysusers
+  install -Dm644 "${srcdir}/gitlab-shell.sysusers" 
"${pkgdir}/usr/lib/sysusers.d/gitlab-shell.conf"
+
+  # .gitconfig
+  install -Dm644 -o 105 -g 105 "${srcdir}/gitlab-shell.gitconfig" 
"${pkgdir}${_etcdir}/.gitconfig"
+  ln -fs "${_etcdir}/.gitconfig" "${pkgdir}${_homedir}/.gitconfig"
+
+  # .gitlab_shell_secret
+  touch "${pkgdir}${_etcdir}/secret"
+  chmod 640 "${pkgdir}${_etcdir}/secret"
+  chown root:105 "${pkgdir}${_etcdir}/secret"
+  ln -fs "${_etcdir}/secret" "${pkgdir}${_datadir}/.gitlab_shell_secret"
+
+  # config.yml
+  install -Dm644 config.yml.example "${pkgdir}${_etcdir}/config.yml"
+  ln -fs "${_etcdir}/config.yml" "${pkgdir}${_datadir}/config.yml"
+
+  cp -r VERSION bin spec support "${pkgdir}${_datadir}"
+  ln -fs "${_datadir}" "${pkgdir}/${_homedir}/"
+
+  install -dm2770 -o 105 -g 105 

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

2021-11-23 Thread Anatol Pomozov via arch-commits
Date: Tuesday, November 23, 2021 @ 16:12:52
  Author: anatolik
Revision: 1054479

upgpkg: gitlab-shell 3:13.22.0-1

Modified:
  gitlab-shell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-23 16:08:25 UTC (rev 1054478)
+++ PKGBUILD2021-11-23 16:12:52 UTC (rev 1054479)
@@ -12,7 +12,7 @@
 # commit log for an old fix on how to tell it to use older versions of Ruby. 
I'm afraid we'll
 # need this again at some point in the future.
 pkgname=gitlab-shell
-pkgver=13.20.0
+pkgver=13.22.0
 pkgrel=1
 epoch=3
 pkgdesc="Git management software"
@@ -30,7 +30,7 @@
 "configs.patch"
 "gitlab-shell.gitconfig"
 "gitlab-shell.sysusers")
-sha512sums=('36face48e02305ec9335bb6e5146dc0e20a034b32ba370a5329d3f6ce98ccd7ffd35ec26ffe96a274ee8c132846db5eceaf2b8f8ace41b883326fdef89bcbfc4'
+sha512sums=('22e164095fe7aa0fa4f3f873a71101290ad195ec216433f66a1798b95a54f2a765ec2bc2642c96dad20658511bf436bd5363fbc465c974d88de3f58ed0d2983e'
 
'13c0fb88693e787f2960059985713d7ffb6d2fa51d9dbcba9c9562ae91e74bd3963efc63837cd19c5441fb5835d0c8eafd3285bea6676168f7b111a08fb086a7'
 
'cb8003f2ce8013fcd807aae6d66c22c3a767e74d569bd69aaa5a54b84a36135d25b3af57861f858f8f407e089ff69ff5c325bf065c6051ce8fa197fab70470b8'
 
'616188911fa7b7c569bc2d5e2024177e67366c48b4ffef1f7ad4dc8e4e9e2cdb421b687f45a1e9bdec8bf2736a157ca9f1e0ba24edae2f073b8c7b5ac42745e8')



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

2021-11-23 Thread Daniel Bermond via arch-commits
Date: Tuesday, November 23, 2021 @ 16:08:25
  Author: dbermond
Revision: 1054478

archrelease: copy trunk to community-staging-x86_64

Added:
  rkcommon/repos/community-staging-x86_64/
  rkcommon/repos/community-staging-x86_64/PKGBUILD
(from rev 1054477, rkcommon/trunk/PKGBUILD)

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

Copied: rkcommon/repos/community-staging-x86_64/PKGBUILD (from rev 1054477, 
rkcommon/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-11-23 16:08:25 UTC (rev 1054478)
@@ -0,0 +1,30 @@
+# Maintainer: Daniel Bermond 
+# Maintainer: Bruno Pagani 
+
+pkgname=rkcommon
+pkgver=1.8.0
+pkgrel=2
+pkgdesc="Intel RenderKit common C++/CMake infrastructure"
+arch=(x86_64)
+url="https://github.com/ospray/rkcommon/;
+license=(Apache)
+depends=(tbb)
+makedepends=(cmake)
+source=(${url}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('f037c15f7049610ef8bca37500b2ab00775af60ebbb9d491ba5fc2e5c04a7794')
+
+build() {
+  cmake -B build -S ${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=None \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-Wno-dev
+  make -C build
+}
+
+check() {
+  make -C build test
+}
+
+package() {
+  make -C build DESTDIR="${pkgdir}" install
+}



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

2021-11-23 Thread Daniel Bermond via arch-commits
Date: Tuesday, November 23, 2021 @ 16:08:03
  Author: dbermond
Revision: 1054477

upgpkg: rkcommon 1.8.0-2: tbb 2021.4 rebuild

Modified:
  rkcommon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-23 16:05:04 UTC (rev 1054476)
+++ PKGBUILD2021-11-23 16:08:03 UTC (rev 1054477)
@@ -3,7 +3,7 @@
 
 pkgname=rkcommon
 pkgver=1.8.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Intel RenderKit common C++/CMake infrastructure"
 arch=(x86_64)
 url="https://github.com/ospray/rkcommon/;



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

2021-11-23 Thread Jonas Witschel via arch-commits
Date: Tuesday, November 23, 2021 @ 16:05:04
  Author: diabonas
Revision: 1054476

archrelease: copy trunk to community-testing-any

Added:
  python-aiohttp-socks/repos/community-testing-any/PKGBUILD
(from rev 1054475, python-aiohttp-socks/trunk/PKGBUILD)
Deleted:
  python-aiohttp-socks/repos/community-testing-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-11-23 16:04:54 UTC (rev 1054475)
+++ PKGBUILD2021-11-23 16:05:04 UTC (rev 1054476)
@@ -1,32 +0,0 @@
-# Maintainer: Santiago Torres-Arias 
-# Maintainer: Jonas Witschel 
-
-pkgname=python-aiohttp-socks
-pkgver=0.7.0
-pkgrel=1
-pkgdesc="SOCKS proxy connector for aiohttp. SOCKS4(a) and SOCKS5 are 
supported."
-arch=('any')
-url="https://github.com/romis2012/aiohttp-socks/;
-license=('Apache')
-depends=('python-aiohttp' 'python-python-socks')
-makedepends=('git' 'python' 'python-setuptools')
-checkdepends=('python-flask' 'python-pytest' 'python-pytest-asyncio')
-source=("git+https://github.com/romis2012/aiohttp-socks?signed#tag=v${pkgver};)
-sha256sums=('SKIP')
-validpgpkeys=('706A8935FED55F3BFB7C188B5EEAD7400A5D80ED') # Roman Snegirev 
(maintainer)
-
-check() {
-cd "${pkgname//python-}"
-pytest
-}
-
-build() {
-cd "${pkgname//python-}"
-python setup.py build
-
-}
-
-package() {
-cd "${pkgname//python-}"
-python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
-}

Copied: python-aiohttp-socks/repos/community-testing-any/PKGBUILD (from rev 
1054475, python-aiohttp-socks/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-11-23 16:05:04 UTC (rev 1054476)
@@ -0,0 +1,32 @@
+# Maintainer: Santiago Torres-Arias 
+# Maintainer: Jonas Witschel 
+
+pkgname=python-aiohttp-socks
+pkgver=0.7.1
+pkgrel=1
+pkgdesc="SOCKS proxy connector for aiohttp. SOCKS4(a) and SOCKS5 are 
supported."
+arch=('any')
+url="https://github.com/romis2012/aiohttp-socks/;
+license=('Apache')
+depends=('python-aiohttp' 'python-python-socks')
+makedepends=('git' 'python' 'python-setuptools')
+checkdepends=('python-flask' 'python-pytest' 'python-pytest-asyncio')
+source=("git+https://github.com/romis2012/aiohttp-socks?signed#tag=v${pkgver};)
+sha256sums=('SKIP')
+validpgpkeys=('706A8935FED55F3BFB7C188B5EEAD7400A5D80ED') # Roman Snegirev 
(maintainer)
+
+check() {
+cd "${pkgname//python-}"
+pytest
+}
+
+build() {
+cd "${pkgname//python-}"
+python setup.py build
+
+}
+
+package() {
+cd "${pkgname//python-}"
+python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
+}



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

2021-11-23 Thread Jonas Witschel via arch-commits
Date: Tuesday, November 23, 2021 @ 16:04:54
  Author: diabonas
Revision: 1054475

upgpkg: python-aiohttp-socks 0.7.1-1: upstream release

Modified:
  python-aiohttp-socks/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-23 15:44:45 UTC (rev 1054474)
+++ PKGBUILD2021-11-23 16:04:54 UTC (rev 1054475)
@@ -2,7 +2,7 @@
 # Maintainer: Jonas Witschel 
 
 pkgname=python-aiohttp-socks
-pkgver=0.7.0
+pkgver=0.7.1
 pkgrel=1
 pkgdesc="SOCKS proxy connector for aiohttp. SOCKS4(a) and SOCKS5 are 
supported."
 arch=('any')



[arch-commits] Commit in root/repos/community-testing-x86_64 (22 files)

2021-11-23 Thread Konstantin Gizdov via arch-commits
Date: Tuesday, November 23, 2021 @ 15:44:45
  Author: kgizdov
Revision: 1054474

archrelease: copy trunk to community-testing-x86_64

Added:
  root/repos/community-testing-x86_64/8351.patch
(from rev 1054473, root/trunk/8351.patch)
  root/repos/community-testing-x86_64/9271.patch
(from rev 1054473, root/trunk/9271.patch)
  root/repos/community-testing-x86_64/PKGBUILD
(from rev 1054473, root/trunk/PKGBUILD)
  root/repos/community-testing-x86_64/ROOFIT_LICENSE
(from rev 1054473, root/trunk/ROOFIT_LICENSE)
  root/repos/community-testing-x86_64/jupyter_notebook_config.py
(from rev 1054473, root/trunk/jupyter_notebook_config.py)
  root/repos/community-testing-x86_64/nbman-for-arch.patch
(from rev 1054473, root/trunk/nbman-for-arch.patch)
  root/repos/community-testing-x86_64/root.pc.tpl
(from rev 1054473, root/trunk/root.pc.tpl)
  root/repos/community-testing-x86_64/root.xml
(from rev 1054473, root/trunk/root.xml)
  root/repos/community-testing-x86_64/settings-cuda.cmake
(from rev 1054473, root/trunk/settings-cuda.cmake)
  root/repos/community-testing-x86_64/settings.cmake
(from rev 1054473, root/trunk/settings.cmake)
  root/repos/community-testing-x86_64/thisroot.fail
(from rev 1054473, root/trunk/thisroot.fail)
Deleted:
  root/repos/community-testing-x86_64/8351.patch
  root/repos/community-testing-x86_64/9271.patch
  root/repos/community-testing-x86_64/PKGBUILD
  root/repos/community-testing-x86_64/ROOFIT_LICENSE
  root/repos/community-testing-x86_64/jupyter_notebook_config.py
  root/repos/community-testing-x86_64/nbman-for-arch.patch
  root/repos/community-testing-x86_64/root.pc.tpl
  root/repos/community-testing-x86_64/root.xml
  root/repos/community-testing-x86_64/settings-cuda.cmake
  root/repos/community-testing-x86_64/settings.cmake
  root/repos/community-testing-x86_64/thisroot.fail

+
 8351.patch |   58 -
 9271.patch | 1479 +--
 PKGBUILD   |  612 -
 ROOFIT_LICENSE |   44 -
 jupyter_notebook_config.py |2 
 nbman-for-arch.patch   |  354 +-
 root.pc.tpl|   24 
 root.xml   |   28 
 settings-cuda.cmake|  224 +++---
 settings.cmake |  224 +++---
 thisroot.fail  |   98 +-
 11 files changed, 1587 insertions(+), 1560 deletions(-)

Deleted: 8351.patch
===
--- 8351.patch  2021-11-23 15:44:31 UTC (rev 1054473)
+++ 8351.patch  2021-11-23 15:44:45 UTC (rev 1054474)
@@ -1,29 +0,0 @@
-From 87a0caf0c8b2b4158a6f35e948087ae64c4c06a7 Mon Sep 17 00:00:00 2001
-From: Enrico Guiraud 
-Date: Mon, 7 Jun 2021 11:02:48 +0200
-Subject: [PATCH] [io] Avoid nullptr deref when printing warning in
- TStreamerInfo
-

- io/io/src/TStreamerInfo.cxx | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/io/io/src/TStreamerInfo.cxx b/io/io/src/TStreamerInfo.cxx
-index d545ab7be8e3..a02663589066 100644
 a/io/io/src/TStreamerInfo.cxx
-+++ b/io/io/src/TStreamerInfo.cxx
-@@ -1109,12 +1109,12 @@ void TStreamerInfo::BuildCheck(TFile *file /* = 0 */, 
Bool_t load /* = kTRUE */)
-  fClassVersion, GetName(), GetName(), GetName(), 
fClassVersion);
-   } else {
-  Warning("BuildCheck", "\n\
--   The StreamerInfo from %s does not match existing one (%s:%d)\n\
-+   The StreamerInfo does not match existing one (%s:%d)\n\
-The existing one has not been used yet and will be discarded.\n\
-Reading should work properly, however writing object of\n\
-type %s will not work properly.  Most likely the version number\n\
-of the class was not properly updated [See ClassDef(%s,%d)].",
-- file->GetName(), GetName(), fClassVersion, 
GetName(), GetName(), fClassVersion);
-+ GetName(), fClassVersion, GetName(), GetName(), 
fClassVersion);
-   }
-}
- }

Copied: root/repos/community-testing-x86_64/8351.patch (from rev 1054473, 
root/trunk/8351.patch)
===
--- 8351.patch  (rev 0)
+++ 8351.patch  2021-11-23 15:44:45 UTC (rev 1054474)
@@ -0,0 +1,29 @@
+From 87a0caf0c8b2b4158a6f35e948087ae64c4c06a7 Mon Sep 17 00:00:00 2001
+From: Enrico Guiraud 
+Date: Mon, 7 Jun 2021 11:02:48 +0200
+Subject: [PATCH] [io] Avoid nullptr deref when printing warning in
+ TStreamerInfo
+
+---
+ io/io/src/TStreamerInfo.cxx | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/io/io/src/TStreamerInfo.cxx b/io/io/src/TStreamerInfo.cxx
+index d545ab7be8e3..a02663589066 100644
+--- a/io/io/src/TStreamerInfo.cxx
 b/io/io/src/TStreamerInfo.cxx
+@@ -1109,12 +1109,12 @@ void TStreamerInfo::BuildCheck(TFile *file /* = 0 */, 
Bool_t load /* = kTRUE */)
+  

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

2021-11-23 Thread Konstantin Gizdov via arch-commits
Date: Tuesday, November 23, 2021 @ 15:44:31
  Author: kgizdov
Revision: 1054473

upgpkg: root 6.24.06-6: updated nonnull patch

Modified:
  root/trunk/9271.patch
  root/trunk/PKGBUILD

+
 9271.patch |   53 -
 PKGBUILD   |4 ++--
 2 files changed, 42 insertions(+), 15 deletions(-)

Modified: 9271.patch
===
--- 9271.patch  2021-11-23 15:35:57 UTC (rev 1054472)
+++ 9271.patch  2021-11-23 15:44:31 UTC (rev 1054473)
@@ -1,8 +1,30 @@
+From ef095d953b7632654dcd93aa3151508dfefa22d3 Mon Sep 17 00:00:00 2001
+From: Konstantin Gizdov 
+Date: Thu, 11 Nov 2021 01:57:36 +0200
+Subject: [PATCH] backport 'address some -Wnonnull issue and follow-up
+ improvements' to v6-24-00-patches
+
+RooFit::HistFactory::ConfigParser: fix null dereferences, improve logic, 
modernise, fix some edge cases, optimise performance
+RooAddModel: fix null dereferences
+TMVA::DataLoader: calling .front() in an empty container is undefined, fix 
also null ptr dereference
+RooDataHist and RooRealSumFunc fixes for null dereferences
+RooAbsCollection: safer Int_t getSize() and RooAbsArg* front(), offer 
alternatives
+RooDataHist::_adjustBinning throw std::logic_error when pass type is not 
derived from real
+clang-format applied
+---
+ roofit/histfactory/src/ConfigParser.cxx   | 469 --
+ roofit/roofitcore/inc/RooAbsCollection.h  |  17 +-
+ roofit/roofitcore/src/RooAddModel.cxx | 114 +++--
+ roofit/roofitcore/src/RooDataHist.cxx |  15 +-
+ roofit/roofitcore/src/RooRealSumFunc.cxx  |   5 +-
+ .../Architectures/Reference/DataLoader.cxx|  12 +
+ 6 files changed, 299 insertions(+), 333 deletions(-)
+
 diff --git a/roofit/histfactory/src/ConfigParser.cxx 
b/roofit/histfactory/src/ConfigParser.cxx
-index 227a16b6a0..f1d7eba4f4 100644
+index 227a16b6a0a9..3ec032579037 100644
 --- a/roofit/histfactory/src/ConfigParser.cxx
 +++ b/roofit/histfactory/src/ConfigParser.cxx
-@@ -260,280 +260,210 @@ std::vector< RooStats::HistFactory::Measurement > 
ConfigParser::GetMeasurementsF
+@@ -260,280 +260,215 @@ std::vector< RooStats::HistFactory::Measurement > 
ConfigParser::GetMeasurementsF
return measurement_list;
  
  }
@@ -104,7 +126,8 @@
 +   TXMLAttr *curAttr = nullptr;
 +   while ((/**/ curAttr = dynamic_cast(attribIt()) /**/) != 
nullptr) {
 +  // curAttr is guaranteed non-null above
-+  const std::string curAttrName(curAttr->GetName()), 
curAttrValue(curAttr->GetValue());
++  const std::string curAttrName(curAttr->GetName() ? curAttr->GetName() : 
""),
++ curAttrValue(curAttr->GetValue() ? curAttr->GetValue() : "");
 +  if (curAttrName == "") {
 + cxcoutEHF << "Found XML attribute in Measurement with no name.\n";
 + // ADD Output Here
@@ -174,7 +197,9 @@
 +   // Then, get the properties of the children nodes
 +   TXMLNode *child = node->GetChildren();
 +   while (child != nullptr) {
-+  const std::string childName(child->GetName()), 
childNodeName(child->GetNodeName()), childText(child->GetText());
++  const std::string childName(child->GetName() ? child->GetName() : ""),
++ childNodeName(child->GetNodeName() ? child->GetNodeName() : ""),
++ childText(child->GetText() ? child->GetText() : "");
 +  if (childNodeName.empty()) {
 + cxcoutEHF << "Found XML child node of Measurement with no name\n";
 + throw hf_exc();
@@ -190,7 +215,7 @@
 + TXMLAttr *curParam = nullptr;
 + while ((/**/ curParam = dynamic_cast(paramIt()) /**/) != 
nullptr) {
 +// curParam is guaranteed non-null above
-+const std::string curParamName(curParam->GetName());
++const std::string curParamName(curParam->GetName() ? 
curParam->GetName() : "");
 +if (curParamName.empty()) {
 +   cxcoutEHF << "Error: Found tag attribute with no name in 
ParamSetting\n";
 +   throw hf_exc();
@@ -228,7 +253,8 @@
 + attribIt = child->GetAttributes();
 + curAttr = nullptr;
 + while ((/**/ curAttr = dynamic_cast(attribIt()) /**/) != 
nullptr) {
-+const std::string curAttrName(curAttr->GetName()), 
curAttrValue(curAttr->GetValue());
++const std::string curAttrName(curAttr->GetName() ? 
curAttr->GetName() : ""),
++   curAttrValue(curAttr->GetValue() ? curAttr->GetValue() : "");
 +if (curAttrName.empty()) {
 +   cxcoutEHF << "Error: Found tag attribute with no name in 
ConstraintTerm\n";
 +   throw hf_exc();
@@ -267,7 +293,8 @@
 + attribIt = child->GetAttributes();
 + curAttr = nullptr;
 + while ((/**/ curAttr = dynamic_cast(attribIt()) /**/) != 
nullptr) {
-+const std::string curAttrName(curAttr->GetName()), 
curAttrValue(curAttr->GetValue());
++const std::string curAttrName(curAttr->GetName() ? 
curAttr->GetName() : ""),
++ 

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

2021-11-23 Thread Alexander Epaneshnikov via arch-commits
Date: Tuesday, November 23, 2021 @ 15:35:57
  Author: alex19ep
Revision: 1054472

archrelease: copy trunk to community-x86_64

Added:
  nnn/repos/community-x86_64/PKGBUILD
(from rev 1054471, nnn/trunk/PKGBUILD)
Deleted:
  nnn/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-11-23 15:35:45 UTC (rev 1054471)
+++ PKGBUILD2021-11-23 15:35:57 UTC (rev 1054472)
@@ -1,54 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Pablo Arias 
-# Contributor: John Jenkins 
-
-pkgname=nnn
-pkgver=4.3
-pkgrel=1
-pkgdesc="The fastest terminal file manager ever written."
-arch=('x86_64')
-depends=('bash')
-optdepends=(
-'atool: for more archive formats'
-'libarchive: for more archive formats'
-'zip: for zip archive format'
-'unzip: for zip archive format'
-'trash-cli: to trash files'
-'sshfs: mount remotes'
-'rclone: mount remotes'
-'fuse2: unmount remotes'
-'xdg-utils: desktop opener'
-)
-url="https://github.com/jarun/${pkgname};
-license=('BSD')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz"
-
"${pkgname}-${pkgver}.tar.gz.sig::${url}/releases/download/v${pkgver}/nnn-${pkgver}.tar.gz.sig")
-sha512sums=('588af174d86db14acf5d1e2ac42f88ca5c6f0e105996a58771e7e0f989f224616e7a12d74fecc96540a9782db0cf8857c21bf0f50df4ee3b4b5c641291c64575'
-'SKIP')
-validpgpkeys=('BBAD0B2F3093A7C3377A8F6BA75979F35C080412')
-
-prepare() {
-sed -i 's/install: all/install:/' "${pkgname}-${pkgver}/Makefile"
-}
-
-build() {
-cd "${pkgname}-${pkgver}"
-make
-}
-
-package() {
-cd "${pkgname}-${pkgver}"
-make DESTDIR="${pkgdir}" PREFIX=/usr install
-make DESTDIR="${pkgdir}" PREFIX=/usr install-desktop
-
-install -Dm644 misc/auto-completion/fish/nnn.fish 
"${pkgdir}/usr/share/fish/vendor_completions.d/nnn.fish"
-install -Dm644 misc/auto-completion/bash/nnn-completion.bash 
"${pkgdir}/usr/share/bash-completion/completions/nnn"
-install -Dm644 misc/auto-completion/zsh/_nnn 
"${pkgdir}/usr/share/zsh/site-functions/_nnn"
-
-install -Dm644 -t "${pkgdir}/usr/share/nnn/quitcd/" misc/quitcd/*
-
-cp -a plugins "${pkgdir}/usr/share/nnn/plugins/"
-
-install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
-}

Copied: nnn/repos/community-x86_64/PKGBUILD (from rev 1054471, 
nnn/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-11-23 15:35:57 UTC (rev 1054472)
@@ -0,0 +1,55 @@
+# Maintainer: Felix Yan 
+# Contributor: Maxim Baz <$pkgname at maximbaz dot com>
+# Contributor: Pablo Arias 
+# Contributor: John Jenkins 
+
+pkgname=nnn
+pkgver=4.4
+pkgrel=1
+pkgdesc="The fastest terminal file manager ever written."
+arch=('x86_64')
+depends=('bash')
+optdepends=(
+'atool: for more archive formats'
+'libarchive: for more archive formats'
+'zip: for zip archive format'
+'unzip: for zip archive format'
+'trash-cli: to trash files'
+'sshfs: mount remotes'
+'rclone: mount remotes'
+'fuse2: unmount remotes'
+'xdg-utils: desktop opener'
+)
+url="https://github.com/jarun/${pkgname};
+license=('BSD')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz"
+
"${pkgname}-${pkgver}.tar.gz.sig::${url}/releases/download/v${pkgver}/nnn-${pkgver}.tar.gz.sig")
+sha512sums=('fec90fcfda7e52e5f49743feddbf0fdba50fa5a89cccda89ca7e1ff6626bc7fbe92e0bd41e6de48eb1690379add2294d7411e70226b89fc40878e42b4bb9239d'
+'SKIP')
+validpgpkeys=('BBAD0B2F3093A7C3377A8F6BA75979F35C080412')
+
+prepare() {
+sed -i 's/install: all/install:/' "${pkgname}-${pkgver}/Makefile"
+}
+
+build() {
+cd "${pkgname}-${pkgver}"
+make
+}
+
+package() {
+cd "${pkgname}-${pkgver}"
+make DESTDIR="${pkgdir}" PREFIX=/usr install
+make DESTDIR="${pkgdir}" PREFIX=/usr install-desktop
+
+install -Dm644 misc/auto-completion/fish/nnn.fish 
"${pkgdir}/usr/share/fish/vendor_completions.d/nnn.fish"
+install -Dm644 misc/auto-completion/bash/nnn-completion.bash 
"${pkgdir}/usr/share/bash-completion/completions/nnn"
+install -Dm644 misc/auto-completion/zsh/_nnn 
"${pkgdir}/usr/share/zsh/site-functions/_nnn"
+
+install -Dm644 -t "${pkgdir}/usr/share/nnn/quitcd/" misc/quitcd/*
+
+cp -a plugins "${pkgdir}/usr/share/nnn/plugins/"
+
+install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
+}



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

2021-11-23 Thread Alexander Epaneshnikov via arch-commits
Date: Tuesday, November 23, 2021 @ 15:35:45
  Author: alex19ep
Revision: 1054471

upgpkg: nnn 4.4-1 new upstream release

Modified:
  nnn/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-23 15:08:09 UTC (rev 1054470)
+++ PKGBUILD2021-11-23 15:35:45 UTC (rev 1054471)
@@ -1,10 +1,11 @@
 # Maintainer: Felix Yan 
 # Contributor: Maxim Baz <$pkgname at maximbaz dot com>
 # Contributor: Pablo Arias 
 # Contributor: John Jenkins 
 
 pkgname=nnn
-pkgver=4.3
+pkgver=4.4
 pkgrel=1
 pkgdesc="The fastest terminal file manager ever written."
 arch=('x86_64')
@@ -24,7 +25,7 @@
 license=('BSD')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz"
 
"${pkgname}-${pkgver}.tar.gz.sig::${url}/releases/download/v${pkgver}/nnn-${pkgver}.tar.gz.sig")
-sha512sums=('588af174d86db14acf5d1e2ac42f88ca5c6f0e105996a58771e7e0f989f224616e7a12d74fecc96540a9782db0cf8857c21bf0f50df4ee3b4b5c641291c64575'
+sha512sums=('fec90fcfda7e52e5f49743feddbf0fdba50fa5a89cccda89ca7e1ff6626bc7fbe92e0bd41e6de48eb1690379add2294d7411e70226b89fc40878e42b4bb9239d'
 'SKIP')
 validpgpkeys=('BBAD0B2F3093A7C3377A8F6BA75979F35C080412')
 



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

2021-11-23 Thread Alexander Rødseth via arch-commits
Date: Tuesday, November 23, 2021 @ 15:08:09
  Author: arodseth
Revision: 1054470

archrelease: copy trunk to community-x86_64

Added:
  freecad/repos/community-x86_64/PKGBUILD
(from rev 1054469, freecad/trunk/PKGBUILD)
  freecad/repos/community-x86_64/freecad-boost.patch
(from rev 1054469, freecad/trunk/freecad-boost.patch)
  freecad/repos/community-x86_64/freecad-vtk9.patch
(from rev 1054469, freecad/trunk/freecad-vtk9.patch)
  freecad/repos/community-x86_64/freecad.xml
(from rev 1054469, freecad/trunk/freecad.xml)
Deleted:
  freecad/repos/community-x86_64/PKGBUILD
  freecad/repos/community-x86_64/freecad-boost.patch
  freecad/repos/community-x86_64/freecad-vtk9.patch
  freecad/repos/community-x86_64/freecad.xml

-+
 PKGBUILD|  206 +++---
 freecad-boost.patch |   50 -
 freecad-vtk9.patch  | 1654 +-
 freecad.xml |   18 
 4 files changed, 964 insertions(+), 964 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-11-23 15:08:00 UTC (rev 1054469)
+++ PKGBUILD2021-11-23 15:08:09 UTC (rev 1054470)
@@ -1,103 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: loqs 
-# Contributor: Gabriel Souza Franco 
-# Contributor: Florian Pritz
-# Contributor: Jonas Heinrich 
-# Contributor: Jordi De Groof 
-# Contributor: mickele
-# Contributor: manwithgrenade
-# Contributor: bricem13
-# Contributor: gborzi
-
-pkgname=freecad
-pkgver=0.19.2
-pkgrel=6
-pkgdesc='General purpose 3D CAD modeler'
-arch=(x86_64)
-url='https://freecadweb.org/'
-license=(LGPL)
-depends=(boost-libs glew jsoncpp libspnav med netcdf opencascade openmpi
- pyside2-tools python-gitpython python-matplotlib python-pivy
- python-ply python-pyside2 qt5-svg qt5-tools qt5-webkit qt5-x11extras
- qt5-xmlpatterns xerces-c)
-makedepends=(adios2 boost cmake cgns coin eigen fmt gcc-fortran gendesk git
- jdk-openjdk libharu liblas ninja openvdb openvr ospray pdal
- postgresql-libs python-mpi4py python-shiboken2 shiboken2 swig
- utf8cpp)
-source=(freecad.xml
-freecad-boost.patch
-freecad-vtk9.patch
-
"git+https://github.com/FreeCAD/FreeCAD#commit=7b5e18a0759de778b74d3a5c17eba9cb815035ac;)
 # tag: 0.19.2
-b2sums=('f5f295b9b5f268126feffbe3f3344c124faf5e2263f3f071348bd7f5d0bf2e30eb33fcf174d0ab76ad80ca7bd8ddea95ccbaf7f33f0896189ac78603fecb9485'
-
'6ec5dcead7f3438b387aeb3f608b910105d493aafcd47ae84715cdfe6f8651926056283ec4aeeab542b89df9fd9ffc2dbb74f5593e864acd23c8b352033ed1dc'
-
'242702f926101c57774046548068d17b22bd582ba1a1c45534ac8ceaa174c56277db80f32bed8ad1475b37006a1d777193b6c098ed8a733772152a898d1dd825'
-'SKIP')
-
-prepare() {
-  # Fix Boost linking with VTK 9 (thanks Fedora)
-  patch -d FreeCAD -p1 -i ../freecad-boost.patch
-  # Fix build with VTK 9 (thanks Fedora)
-  patch -d FreeCAD -p1 -i ../freecad-vtk9.patch
-  # Generate desktop shortcut
-  gendesk -f -n --pkgname "$pkgname" --pkgdesc "$pkgdesc" --name FreeCAD \
---mimetypes='application/x-extension-fcstd' --startupnotify=true
-}
-
-build() {
-  # OpenCascade requires that /usr/bin comes before /bin in $PATH
-  export PATH="/usr/bin:$PATH"
-
-  cmake \
--B build \
--D BUILD_ENABLE_CXX_STD=C++14 \
--D BUILD_QT5=ON \
--D CMAKE_BUILD_TYPE=Release \
--D CMAKE_C_FLAGS="$CFLAGS -fPIC -w" \
--D CMAKE_CXX_FLAGS="$CXXFLAGS -fPIC -w" \
--D CMAKE_INSTALL_DATADIR=/usr/share/freecad \
--D CMAKE_INSTALL_DOCDIR=/usr/share/freecad/doc \
--D CMAKE_INSTALL_PREFIX=/usr/lib/freecad \
--D FREECAD_USE_EXTERNAL_PIVY=ON \
--D FREECAD_USE_OCC_VARIANT='Official Version' \
--D FREECAD_USE_QT_FILEDIALOG=ON \
--D PYTHON_EXECUTABLE=/usr/bin/python \
--D CMAKE_MODULE_PATH=/usr/lib/cmake/OpenVDB \
--G Ninja \
--S FreeCAD
-  ninja -C build
-}
-
-package() {
-  DESTDIR="$pkgdir" ninja -C build install
-
-  # Desktop shortcut
-  install -Dm644 freecad.desktop \
-"$pkgdir/usr/share/applications/freecad.desktop"
-
-  # MIME info
-  install -Dm644 freecad.xml "$pkgdir/usr/share/mime/packages/freecad.xml"
-
-  # Thumbnailer, see FS#71592
-  install -Dm644 \
-"$pkgdir/usr/lib/freecad/share/thumbnailers/FreeCAD.thumbnailer" \
-"$pkgdir/usr/share/thumbnailers/FreeCAD.thumbnailer"
-  rm -f "$pkgdir/usr/lib/freecad/share/thumbnailers/FreeCAD.thumbnailer"
-
-  # Icons
-  cd FreeCAD/src/Gui/Icons
-  for i in 16 32 48 64; do
-install -Dm644 "freecad-icon-$i.png" \
-  "$pkgdir/usr/share/icons/hicolor/${i}x$i/apps/freecad.png"
-  done
-  install -Dm644 freecad.svg \
-"$pkgdir/usr/share/icons/hicolor/scalable/apps/freecad.svg"
-
-  # Symlinks in /usr/bin
-  install -d "$pkgdir/usr/bin"
-  ln -sf /usr/lib/freecad/bin/FreeCAD "$pkgdir/usr/bin/freecad"
-  ln -sf /usr/lib/freecad/bin/FreeCAD "$pkgdir/usr/bin/FreeCAD"
-  ln -sf /usr/lib/freecad/bin/FreeCADCmd 

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

2021-11-23 Thread Alexander Rødseth via arch-commits
Date: Tuesday, November 23, 2021 @ 15:08:00
  Author: arodseth
Revision: 1054469

upgpkg: freecad 0.19.2-7

Modified:
  freecad/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-23 14:58:05 UTC (rev 1054468)
+++ PKGBUILD2021-11-23 15:08:00 UTC (rev 1054469)
@@ -11,7 +11,7 @@
 
 pkgname=freecad
 pkgver=0.19.2
-pkgrel=6
+pkgrel=7
 pkgdesc='General purpose 3D CAD modeler'
 arch=(x86_64)
 url='https://freecadweb.org/'
@@ -77,7 +77,9 @@
   # MIME info
   install -Dm644 freecad.xml "$pkgdir/usr/share/mime/packages/freecad.xml"
 
-  # Thumbnailer, see FS#71592
+  # Thumbnailer
+  install -Dm755 FreeCAD/src/Tools/freecad-thumbnailer \
+"$pkgdir/usr/bin/freecad-thumbnailer"
   install -Dm644 \
 "$pkgdir/usr/lib/freecad/share/thumbnailers/FreeCAD.thumbnailer" \
 "$pkgdir/usr/share/thumbnailers/FreeCAD.thumbnailer"
@@ -85,12 +87,12 @@
 
   # Icons
   cd FreeCAD/src/Gui/Icons
+  install -Dm644 freecad.svg \
+"$pkgdir/usr/share/icons/hicolor/scalable/apps/freecad.svg"
   for i in 16 32 48 64; do
 install -Dm644 "freecad-icon-$i.png" \
   "$pkgdir/usr/share/icons/hicolor/${i}x$i/apps/freecad.png"
   done
-  install -Dm644 freecad.svg \
-"$pkgdir/usr/share/icons/hicolor/scalable/apps/freecad.svg"
 
   # Symlinks in /usr/bin
   install -d "$pkgdir/usr/bin"
@@ -98,6 +100,4 @@
   ln -sf /usr/lib/freecad/bin/FreeCAD "$pkgdir/usr/bin/FreeCAD"
   ln -sf /usr/lib/freecad/bin/FreeCADCmd "$pkgdir/usr/bin/freecadcmd"
   ln -sf /usr/lib/freecad/bin/FreeCADCmd "$pkgdir/usr/bin/FreeCADCmd"
-  ln -sf /usr/lib/freecad/bin/freecad-thumbnailer \
-"$pkgdir/usr/bin/freecad-thumbnailer"
 }



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

2021-11-23 Thread Justin Kromlinger via arch-commits
Date: Tuesday, November 23, 2021 @ 14:58:05
  Author: hashworks
Revision: 1054468

archrelease: copy trunk to community-x86_64

Added:
  piping-server/repos/community-x86_64/PKGBUILD
(from rev 1054467, piping-server/trunk/PKGBUILD)
  piping-server/repos/community-x86_64/piping-server.service
(from rev 1054467, piping-server/trunk/piping-server.service)
Deleted:
  piping-server/repos/community-x86_64/PKGBUILD
  piping-server/repos/community-x86_64/piping-server.service

---+
 PKGBUILD  |   70 ++---
 piping-server.service |   74 
 2 files changed, 72 insertions(+), 72 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-11-23 14:58:03 UTC (rev 1054467)
+++ PKGBUILD2021-11-23 14:58:05 UTC (rev 1054468)
@@ -1,35 +0,0 @@
-# Maintainer: Justin Kromlinger 
-pkgname=piping-server
-pkgver=0.10.0
-pkgrel=1
-pkgdesc='Infinitely transfer between every device over pure HTTP with pipes or 
browsers'
-arch=('x86_64')
-url="https://github.com/nwtgck/piping-server-rust;
-license=('MIT')
-depends=('gcc-libs')
-makedepends=('cargo')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"
-"$pkgname.service")
-sha256sums=('573d09d8ff4b32ff00f1c49e1c0af55da211488a2f4ab3e696f7ad03e0faab47'
-'9182467638a583b29bed0ae69ed00013b1721ce8753e5ba90a56cbaac07d768c')
-
-build() {
-  cd "piping-server-rust-$pkgver"
-  cargo build --release --locked --target-dir=target
-}
-
-check() {
-  cd "piping-server-rust-$pkgver"
-  cargo test --release --locked
-}
-
-package() {
-  install -Dm644 piping-server.service 
"$pkgdir/usr/lib/systemd/system/piping-server.service"
-
-  cd "piping-server-rust-$pkgver"
-
-  install -Dm755 "target/release/$pkgname" "$pkgdir/usr/bin/$pkgname"
-
-  install -Dm 644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-  install -Dm 644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
-}

Copied: piping-server/repos/community-x86_64/PKGBUILD (from rev 1054467, 
piping-server/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-11-23 14:58:05 UTC (rev 1054468)
@@ -0,0 +1,35 @@
+# Maintainer: Justin Kromlinger 
+pkgname=piping-server
+pkgver=0.10.1
+pkgrel=1
+pkgdesc='Infinitely transfer between every device over pure HTTP with pipes or 
browsers'
+arch=('x86_64')
+url="https://github.com/nwtgck/piping-server-rust;
+license=('MIT')
+depends=('gcc-libs')
+makedepends=('cargo')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"
+"$pkgname.service")
+sha256sums=('3d0e94683140a3635a0ef1e703630e3df541b4b6a94c3bc2c0b4a809763bd748'
+'9182467638a583b29bed0ae69ed00013b1721ce8753e5ba90a56cbaac07d768c')
+
+build() {
+  cd "piping-server-rust-$pkgver"
+  cargo build --release --locked --target-dir=target
+}
+
+check() {
+  cd "piping-server-rust-$pkgver"
+  cargo test --release --locked
+}
+
+package() {
+  install -Dm644 piping-server.service 
"$pkgdir/usr/lib/systemd/system/piping-server.service"
+
+  cd "piping-server-rust-$pkgver"
+
+  install -Dm755 "target/release/$pkgname" "$pkgdir/usr/bin/$pkgname"
+
+  install -Dm 644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -Dm 644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
+}

Deleted: piping-server.service
===
--- piping-server.service   2021-11-23 14:58:03 UTC (rev 1054467)
+++ piping-server.service   2021-11-23 14:58:05 UTC (rev 1054468)
@@ -1,37 +0,0 @@
-[Unit]
-Description=piping-server
-Documentation=https://github.com/nwtgck/piping-server-rust
-
-[Service]
-ExecStart=/usr/bin/piping-server --http-port 8181
-
-DynamicUser=yes
-CapabilityBoundingSet=~CAP_SETUID CAP_SETGID CAP_SETPCAP CAP_SYS_ADMIN 
CAP_SYS_PTRACE CAP_CHOWN CAP_FSETID CAP_SETFCAP CAP_DAC_OVERRIDE 
CAP_DAC_READ_SEARCH CAP_FOWNER CAP_IPC_OWNER CAP_NET_ADMIN CAP_SYS_TIME 
CAP_AUDIT_CONTROL CAP_AUDIT_READ CAP_AUDIT_WRITE CAP_KILL CAP_NET_BIND_SERVICE 
CAP_NET_BROADCAST CAP_NET_RAW CAP_SYS_NICE CAP_SYS_RESOURCE CAP_MAC_ADMIN 
CAP_MAC_OVERRIDE CAP_SYS_BOOT CAP_LINUX_IMMUTABLE CAP_IPC_LOCK CAP_SYS_CHROOT 
CAP_BLOCK_SUSPEND CAP_LEASE CAP_SYS_PACCT CAP_SYS_TTY_CONFIG CAP_WAKE_ALARM
-LockPersonality=true
-MemoryDenyWriteExecute=true
-NoNewPrivileges=true
-DevicePolicy=closed
-PrivateDevices=true
-PrivateTmp=true
-PrivateUsers=true
-ProtectClock=true
-ProtectControlGroups=true
-ProtectHome=read-only
-ProtectHostname=true
-ProtectKernelTunables=true
-ProtectKernelLogs=true
-ProtectKernelModules=true
-ProtectSystem=strict
-RemoveIPC=true
-RestrictAddressFamilies=~AF_AX25 AF_IPX AF_APPLETALK AF_X25 AF_DECnet AF_KEY 
AF_NETLINK AF_PACKET AF_RDS AF_PPPOX AF_LLC AF_IB AF_MPLS AF_CAN AF_TIPC 
AF_BLUETOOTH AF_ALG AF_VSOCK AF_KCM AF_UNIX AF_XDP

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

2021-11-23 Thread Justin Kromlinger via arch-commits
Date: Tuesday, November 23, 2021 @ 14:58:03
  Author: hashworks
Revision: 1054467

upgpkg: piping-server 0.10.1-1

Modified:
  piping-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-23 14:48:22 UTC (rev 1054466)
+++ PKGBUILD2021-11-23 14:58:03 UTC (rev 1054467)
@@ -1,6 +1,6 @@
 # Maintainer: Justin Kromlinger 
 pkgname=piping-server
-pkgver=0.10.0
+pkgver=0.10.1
 pkgrel=1
 pkgdesc='Infinitely transfer between every device over pure HTTP with pipes or 
browsers'
 arch=('x86_64')
@@ -10,7 +10,7 @@
 makedepends=('cargo')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"
 "$pkgname.service")
-sha256sums=('573d09d8ff4b32ff00f1c49e1c0af55da211488a2f4ab3e696f7ad03e0faab47'
+sha256sums=('3d0e94683140a3635a0ef1e703630e3df541b4b6a94c3bc2c0b4a809763bd748'
 '9182467638a583b29bed0ae69ed00013b1721ce8753e5ba90a56cbaac07d768c')
 
 build() {



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

2021-11-23 Thread Santiago Torres-Arias via arch-commits
Date: Tuesday, November 23, 2021 @ 14:48:22
  Author: sangy
Revision: 1054466

archrelease: copy trunk to community-x86_64

Added:
  jp2a/repos/community-x86_64/PKGBUILD
(from rev 1054465, jp2a/trunk/PKGBUILD)
Deleted:
  jp2a/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-11-23 14:48:03 UTC (rev 1054465)
+++ PKGBUILD2021-11-23 14:48:22 UTC (rev 1054466)
@@ -1,36 +0,0 @@
-# Maintainer: Morten Linderud 
-
-pkgname='jp2a'
-pkgver=1.1.0
-pkgrel=2
-pkgdesc='A small utility for converting JPG images to ASCII'
-arch=('x86_64')
-url='https://github.com/Talinx/jp2a/'
-license=('GPL2')
-depends=('curl' 'libjpeg' 'libpng')
-makedepends=('doxygen' 'autoconf-archive' 'git')
-_commit=9ed01d6aa57c5b63657abe5c76cd28935206084c   #refs/tags/v1.1.0
-source=("git+https://github.com/Talinx/jp2a.git#commit=${_commit}?signed;)
-validpgpkeys=("5FCAE86E581E73AD91CB3235E7DBBCF6B02920CC") # Christoph Raitzig
-sha256sums=('SKIP')
-
-prepare(){
-  cd "${pkgname}"
-  autoreconf -vi
-}
-
-build(){
-  cd "${pkgname}"
-  bashcompdir=/usr/share/bash-completion/completions ./configure 
--prefix='/usr'
-  make
-}
-
-check() {
-  cd "${pkgname}"
-  make check
-}
-
-package(){
-  cd "${pkgname}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: jp2a/repos/community-x86_64/PKGBUILD (from rev 1054465, 
jp2a/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-11-23 14:48:22 UTC (rev 1054466)
@@ -0,0 +1,36 @@
+# Maintainer: Morten Linderud 
+
+pkgname='jp2a'
+pkgver=1.1.1
+pkgrel=1
+pkgdesc='A small utility for converting JPG images to ASCII'
+arch=('x86_64')
+url='https://github.com/Talinx/jp2a/'
+license=('GPL2')
+depends=('curl' 'libjpeg' 'libpng')
+makedepends=('doxygen' 'autoconf-archive' 'git')
+_commit=9ed01d6aa57c5b63657abe5c76cd28935206084c   #refs/tags/v1.1.0
+source=("git+https://github.com/Talinx/jp2a.git#commit=${_commit}?signed;)
+validpgpkeys=("5FCAE86E581E73AD91CB3235E7DBBCF6B02920CC") # Christoph Raitzig
+sha256sums=('SKIP')
+
+prepare(){
+  cd "${pkgname}"
+  autoreconf -vi
+}
+
+build(){
+  cd "${pkgname}"
+  bashcompdir=/usr/share/bash-completion/completions ./configure 
--prefix='/usr'
+  make
+}
+
+check() {
+  cd "${pkgname}"
+  make check
+}
+
+package(){
+  cd "${pkgname}"
+  make DESTDIR="${pkgdir}" install
+}



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

2021-11-23 Thread Santiago Torres-Arias via arch-commits
Date: Tuesday, November 23, 2021 @ 14:48:03
  Author: sangy
Revision: 1054465

upgpkg: jp2a 1.1.1-1

Modified:
  jp2a/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-23 14:45:24 UTC (rev 1054464)
+++ PKGBUILD2021-11-23 14:48:03 UTC (rev 1054465)
@@ -1,8 +1,8 @@
 # Maintainer: Morten Linderud 
 
 pkgname='jp2a'
-pkgver=1.1.0
-pkgrel=2
+pkgver=1.1.1
+pkgrel=1
 pkgdesc='A small utility for converting JPG images to ASCII'
 arch=('x86_64')
 url='https://github.com/Talinx/jp2a/'



[arch-commits] Commit in munin/repos/community-any (32 files)

2021-11-23 Thread Santiago Torres-Arias via arch-commits
Date: Tuesday, November 23, 2021 @ 14:45:24
  Author: sangy
Revision: 1054464

archrelease: copy trunk to community-any

Added:
  munin/repos/community-any/08-munin-font-dir.conf
(from rev 1054463, munin/trunk/08-munin-font-dir.conf)
  munin/repos/community-any/Makefile.config
(from rev 1054463, munin/trunk/Makefile.config)
  munin/repos/community-any/PKGBUILD
(from rev 1054463, munin/trunk/PKGBUILD)
  munin/repos/community-any/logrotate.munin
(from rev 1054463, munin/trunk/logrotate.munin)
  munin/repos/community-any/logrotate.munin-node
(from rev 1054463, munin/trunk/logrotate.munin-node)
  munin/repos/community-any/munin-async.service
(from rev 1054463, munin/trunk/munin-async.service)
  munin/repos/community-any/munin-cron-entry
(from rev 1054463, munin/trunk/munin-cron-entry)
  munin/repos/community-any/munin-graph.service
(from rev 1054463, munin/trunk/munin-graph.service)
  munin/repos/community-any/munin-graph.socket
(from rev 1054463, munin/trunk/munin-graph.socket)
  munin/repos/community-any/munin-html.service
(from rev 1054463, munin/trunk/munin-html.service)
  munin/repos/community-any/munin-html.socket
(from rev 1054463, munin/trunk/munin-html.socket)
  munin/repos/community-any/munin-node.install
(from rev 1054463, munin/trunk/munin-node.install)
  munin/repos/community-any/munin-node.service
(from rev 1054463, munin/trunk/munin-node.service)
  munin/repos/community-any/munin.install
(from rev 1054463, munin/trunk/munin.install)
  munin/repos/community-any/munin.sysusers
(from rev 1054463, munin/trunk/munin.sysusers)
  munin/repos/community-any/munin.tmpfiles
(from rev 1054463, munin/trunk/munin.tmpfiles)
Deleted:
  munin/repos/community-any/08-munin-font-dir.conf
  munin/repos/community-any/Makefile.config
  munin/repos/community-any/PKGBUILD
  munin/repos/community-any/logrotate.munin
  munin/repos/community-any/logrotate.munin-node
  munin/repos/community-any/munin-async.service
  munin/repos/community-any/munin-cron-entry
  munin/repos/community-any/munin-graph.service
  munin/repos/community-any/munin-graph.socket
  munin/repos/community-any/munin-html.service
  munin/repos/community-any/munin-html.socket
  munin/repos/community-any/munin-node.install
  munin/repos/community-any/munin-node.service
  munin/repos/community-any/munin.install
  munin/repos/community-any/munin.sysusers
  munin/repos/community-any/munin.tmpfiles

+
 08-munin-font-dir.conf |   14 +-
 Makefile.config|  282 +++
 PKGBUILD   |  200 -
 logrotate.munin|8 -
 logrotate.munin-node   |8 -
 munin-async.service|   24 ++--
 munin-cron-entry   |   12 +-
 munin-graph.service|   22 +--
 munin-graph.socket |   16 +-
 munin-html.service |   22 +--
 munin-html.socket  |   16 +-
 munin-node.install |   10 -
 munin-node.service |   22 +--
 munin.install  |   28 ++--
 munin.sysusers |4 
 munin.tmpfiles |   10 -
 16 files changed, 349 insertions(+), 349 deletions(-)

Deleted: 08-munin-font-dir.conf
===
--- 08-munin-font-dir.conf  2021-11-23 14:44:03 UTC (rev 1054463)
+++ 08-munin-font-dir.conf  2021-11-23 14:45:24 UTC (rev 1054464)
@@ -1,7 +0,0 @@
-
-
-
-   
-   /usr/lib/munin
-

Copied: munin/repos/community-any/08-munin-font-dir.conf (from rev 1054463, 
munin/trunk/08-munin-font-dir.conf)
===
--- 08-munin-font-dir.conf  (rev 0)
+++ 08-munin-font-dir.conf  2021-11-23 14:45:24 UTC (rev 1054464)
@@ -0,0 +1,7 @@
+
+
+
+   
+   /usr/lib/munin
+

Deleted: Makefile.config
===
--- Makefile.config 2021-11-23 14:44:03 UTC (rev 1054463)
+++ Makefile.config 2021-11-23 14:45:24 UTC (rev 1054464)
@@ -1,141 +0,0 @@
-# -*- makefile -*-
-# This file specifies where Munin will look for things after you've
-# run 'make' in the source directory.  Modify it to suit your needs.
-
-# DESTDIR is meant only for use when making Munin packages.  Unless
-# you're doing packaging do NOT set it.
-# DESTDIR is empty during building, and optionally set to point to
-# a shadow tree during make install.
-
-# Note: There is a need for a VARDIR, with DBDIR, PLUGSTATE, HTMLDIR
-# and LOGDIR as subdirectories.  Today, DBDIR contains configured
-# domains, as well as PLUGSTATE, and we risk collisions.
-
-#
-# the base of the Munin installation.
-#
-PREFIX = $(DESTDIR)
-
-# Where Munin keeps its configurations (server.conf, client.conf, ++)
-CONFDIR= $(DESTDIR)/etc/munin
-
-# Server only - where to put munin-cron
-BINDIR = $(PREFIX)/usr/bin
-
-# Client only - where to put munin-node, munin-node-configure, and munin-run
-SBINDIR= 

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

2021-11-23 Thread Santiago Torres-Arias via arch-commits
Date: Tuesday, November 23, 2021 @ 14:44:03
  Author: sangy
Revision: 1054463

upgpkg: munin 2.0.69-1

Modified:
  munin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-23 14:40:22 UTC (rev 1054462)
+++ PKGBUILD2021-11-23 14:44:03 UTC (rev 1054463)
@@ -3,7 +3,7 @@
 
 pkgname=('munin' 'munin-node')
 pkgbase=munin
-pkgver=2.0.68
+pkgver=2.0.69
 pkgrel=1
 pkgdesc="A distributed monitoring/graphing tool"
 arch=('any')
@@ -84,7 +84,7 @@
chmod 775 "$pkgdir/var/lib/munin/plugin-state"
 }
 
-md5sums=('c33efb90ef0293438dad82c39ed45050'
+md5sums=('27ca8aa541280e062195500f619e2a30'
  'ddd12ed7e02015fee9cb00c9afc3e837'
  'dc9c83aa2a278466fb475364462f4119'
  'eb2f1e6e746e85ce1e9f40086be0'



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

2021-11-23 Thread Santiago Torres-Arias via arch-commits
Date: Tuesday, November 23, 2021 @ 14:40:22
  Author: sangy
Revision: 1054462

archrelease: copy trunk to community-x86_64

Added:
  uncrustify/repos/community-x86_64/PKGBUILD
(from rev 1054461, uncrustify/trunk/PKGBUILD)
Deleted:
  uncrustify/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-11-23 14:40:06 UTC (rev 1054461)
+++ PKGBUILD2021-11-23 14:40:22 UTC (rev 1054462)
@@ -1,34 +0,0 @@
-# Maintainer: Pierre Neidhardt 
-# Contributor: Auguste Pop 
-
-pkgname=uncrustify
-pkgver=0.73.0
-pkgrel=1
-pkgdesc="A source code beautifier"
-arch=(x86_64)
-url="http://uncrustify.sourceforge.net/;
-license=(GPL)
-depends=(gcc-libs)
-makedepends=(cmake python)
-source=("https://github.com/uncrustify/uncrustify/archive/uncrustify-$pkgver.tar.gz;)
-sha256sums=('2df0326ba8c413d675b796e051d89a318b7c9cccebc993d66466e2e7fd970672')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" PREFIX=/usr install
-
-  cd ../$pkgname-$pkgname-$pkgver
-  install -d -m755 "$pkgdir"/usr/share/uncrustify
-  install -m644 etc/*.cfg "$pkgdir"/usr/share/uncrustify
-}

Copied: uncrustify/repos/community-x86_64/PKGBUILD (from rev 1054461, 
uncrustify/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-11-23 14:40:22 UTC (rev 1054462)
@@ -0,0 +1,34 @@
+# Maintainer: Pierre Neidhardt 
+# Contributor: Auguste Pop 
+
+pkgname=uncrustify
+pkgver=0.74.0
+pkgrel=1
+pkgdesc="A source code beautifier"
+arch=(x86_64)
+url="http://uncrustify.sourceforge.net/;
+license=(GPL)
+depends=(gcc-libs)
+makedepends=(cmake python)
+source=("https://github.com/uncrustify/uncrustify/archive/uncrustify-$pkgver.tar.gz;)
+sha256sums=('b7d24e256e7f919aa96289ac8167ac98340df7faa2d34b60d2242dc54700caaa')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" PREFIX=/usr install
+
+  cd ../$pkgname-$pkgname-$pkgver
+  install -d -m755 "$pkgdir"/usr/share/uncrustify
+  install -m644 etc/*.cfg "$pkgdir"/usr/share/uncrustify
+}



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

2021-11-23 Thread Santiago Torres-Arias via arch-commits
Date: Tuesday, November 23, 2021 @ 14:40:06
  Author: sangy
Revision: 1054461

upgpkg: uncrustify 0.74.0-1

Modified:
  uncrustify/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-23 14:02:52 UTC (rev 1054460)
+++ PKGBUILD2021-11-23 14:40:06 UTC (rev 1054461)
@@ -2,7 +2,7 @@
 # Contributor: Auguste Pop 
 
 pkgname=uncrustify
-pkgver=0.73.0
+pkgver=0.74.0
 pkgrel=1
 pkgdesc="A source code beautifier"
 arch=(x86_64)
@@ -11,7 +11,7 @@
 depends=(gcc-libs)
 makedepends=(cmake python)
 
source=("https://github.com/uncrustify/uncrustify/archive/uncrustify-$pkgver.tar.gz;)
-sha256sums=('2df0326ba8c413d675b796e051d89a318b7c9cccebc993d66466e2e7fd970672')
+sha256sums=('b7d24e256e7f919aa96289ac8167ac98340df7faa2d34b60d2242dc54700caaa')
 
 prepare() {
   mkdir -p build



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

2021-11-23 Thread Jonas Witschel via arch-commits
Date: Tuesday, November 23, 2021 @ 14:02:52
  Author: diabonas
Revision: 1054460

python-python-socks: use signed git tag as source

Modified:
  python-python-socks/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-23 13:53:42 UTC (rev 1054459)
+++ PKGBUILD2021-11-23 14:02:52 UTC (rev 1054460)
@@ -1,6 +1,7 @@
 # Maintainer: Jonas Witschel 
 pkgname=python-python-socks
 pkgver=2.0.0
+_tag=c56dd42d51e2d88f04ecf23c05da9f0ce8bdabde # git rev-parse "v$pkgver"
 pkgrel=1
 pkgdesc='Core proxy client (SOCKS4, SOCKS5, HTTP) functionality for Python'
 arch=('any')
@@ -7,26 +8,32 @@
 url='https://github.com/romis2012/python-socks'
 license=('APACHE')
 depends=('python') 
-makedepends=('python-setuptools')
+makedepends=('git' 'python-setuptools')
 checkdepends=('python-async-timeout' 'python-curio' 'python-flask' 
'python-pytest'
   'python-pytest-asyncio' 'python-pytest-trio' 'python-trio' 
'python-yarl')
 optdepends=('python-async-timeout: asyncio support'
 'python-curio: curio support'
 'python-trio: trio support')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('088a606ca6e13de79cfa8b180d76e91cca129b3e1ffad2243e5924dc10530340924ea815eb9af0e53b5369daa9cf3e66b2f623da6913ed32916b91d24a47c1e4')
+source=("git+$url.git?signed#tag=$_tag")
+sha512sums=('SKIP')
+validpgpkeys=('706A8935FED55F3BFB7C188B5EEAD7400A5D80ED') # Roman Snegirev 

 
+pkgver() {
+   cd "${pkgname#python-}"
+   git describe | sed 's/^v//;s/\([^-]*-\)g/r\1/;s/-/./g'
+}
+
 build() {
-   cd "${pkgname#python-}-$pkgver"
+   cd "${pkgname#python-}"
python setup.py build
 }
 
 check() {
-   cd "${pkgname#python-}-$pkgver"
+   cd "${pkgname#python-}"
pytest
 }
 
 package() {
-   cd "${pkgname#python-}-$pkgver"
+   cd "${pkgname#python-}"
python setup.py install --root="$pkgdir" --optimize=1 --skip-build
 }



[arch-commits] Commit in python-aiohttp-socks/repos (2 files)

2021-11-23 Thread Jonas Witschel via arch-commits
Date: Tuesday, November 23, 2021 @ 13:50:58
  Author: diabonas
Revision: 1054457

archrelease: copy trunk to community-staging-any

Added:
  python-aiohttp-socks/repos/community-staging-any/
  python-aiohttp-socks/repos/community-staging-any/PKGBUILD
(from rev 1054456, python-aiohttp-socks/trunk/PKGBUILD)

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

Copied: python-aiohttp-socks/repos/community-staging-any/PKGBUILD (from rev 
1054456, python-aiohttp-socks/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2021-11-23 13:50:58 UTC (rev 1054457)
@@ -0,0 +1,32 @@
+# Maintainer: Santiago Torres-Arias 
+# Maintainer: Jonas Witschel 
+
+pkgname=python-aiohttp-socks
+pkgver=0.7.0
+pkgrel=1
+pkgdesc="SOCKS proxy connector for aiohttp. SOCKS4(a) and SOCKS5 are 
supported."
+arch=('any')
+url="https://github.com/romis2012/aiohttp-socks/;
+license=('Apache')
+depends=('python-aiohttp' 'python-python-socks')
+makedepends=('git' 'python' 'python-setuptools')
+checkdepends=('python-flask' 'python-pytest' 'python-pytest-asyncio')
+source=("git+https://github.com/romis2012/aiohttp-socks?signed#tag=v${pkgver};)
+sha256sums=('SKIP')
+validpgpkeys=('706A8935FED55F3BFB7C188B5EEAD7400A5D80ED') # Roman Snegirev 
(maintainer)
+
+check() {
+cd "${pkgname//python-}"
+pytest
+}
+
+build() {
+cd "${pkgname//python-}"
+python setup.py build
+
+}
+
+package() {
+cd "${pkgname//python-}"
+python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
+}



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

2021-11-23 Thread Jonas Witschel via arch-commits
Date: Tuesday, November 23, 2021 @ 13:50:39
  Author: diabonas
Revision: 1054456

upgpkg: python-aiohttp-socks 0.7.0-1: upstream release

This release requries python-python-socks >= 2.0.0.

Modified:
  python-aiohttp-socks/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-23 13:47:41 UTC (rev 1054455)
+++ PKGBUILD2021-11-23 13:50:39 UTC (rev 1054456)
@@ -2,7 +2,7 @@
 # Maintainer: Jonas Witschel 
 
 pkgname=python-aiohttp-socks
-pkgver=0.6.1
+pkgver=0.7.0
 pkgrel=1
 pkgdesc="SOCKS proxy connector for aiohttp. SOCKS4(a) and SOCKS5 are 
supported."
 arch=('any')



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

2021-11-23 Thread Jonas Witschel via arch-commits
Date: Tuesday, November 23, 2021 @ 13:47:41
  Author: diabonas
Revision: 1054455

archrelease: copy trunk to community-staging-any

Added:
  python-python-socks/repos/community-staging-any/
  python-python-socks/repos/community-staging-any/PKGBUILD
(from rev 1054454, python-python-socks/trunk/PKGBUILD)

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

Copied: python-python-socks/repos/community-staging-any/PKGBUILD (from rev 
1054454, python-python-socks/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2021-11-23 13:47:41 UTC (rev 1054455)
@@ -0,0 +1,32 @@
+# Maintainer: Jonas Witschel 
+pkgname=python-python-socks
+pkgver=2.0.0
+pkgrel=1
+pkgdesc='Core proxy client (SOCKS4, SOCKS5, HTTP) functionality for Python'
+arch=('any')
+url='https://github.com/romis2012/python-socks'
+license=('APACHE')
+depends=('python') 
+makedepends=('python-setuptools')
+checkdepends=('python-async-timeout' 'python-curio' 'python-flask' 
'python-pytest'
+  'python-pytest-asyncio' 'python-pytest-trio' 'python-trio' 
'python-yarl')
+optdepends=('python-async-timeout: asyncio support'
+'python-curio: curio support'
+'python-trio: trio support')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('088a606ca6e13de79cfa8b180d76e91cca129b3e1ffad2243e5924dc10530340924ea815eb9af0e53b5369daa9cf3e66b2f623da6913ed32916b91d24a47c1e4')
+
+build() {
+   cd "${pkgname#python-}-$pkgver"
+   python setup.py build
+}
+
+check() {
+   cd "${pkgname#python-}-$pkgver"
+   pytest
+}
+
+package() {
+   cd "${pkgname#python-}-$pkgver"
+   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}



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

2021-11-23 Thread Jonas Witschel via arch-commits
Date: Tuesday, November 23, 2021 @ 13:47:24
  Author: diabonas
Revision: 1054454

upgpkg: python-python-socks 2.0.0-1: upstream release

Remove patch included in the new release.

Modified:
  python-python-socks/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-23 13:28:41 UTC (rev 1054453)
+++ PKGBUILD2021-11-23 13:47:24 UTC (rev 1054454)
@@ -1,6 +1,6 @@
 # Maintainer: Jonas Witschel 
 pkgname=python-python-socks
-pkgver=1.2.4
+pkgver=2.0.0
 pkgrel=1
 pkgdesc='Core proxy client (SOCKS4, SOCKS5, HTTP) functionality for Python'
 arch=('any')
@@ -13,17 +13,9 @@
 optdepends=('python-async-timeout: asyncio support'
 'python-curio: curio support'
 'python-trio: trio support')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"
-
"python-python-socks-1.2.4_fix_test_suite.patch::$url/commit/9ea957a0e367563961bf6619ac64e4127be1e01b.patch")
-sha512sums=('6e70d8d98b2901e97250d30b350002944d979356bb6cd7dd4022af420e166076259a7b1aa4845d771243b18ab3f06ee955f07482c527835bb0135f0622d804be'
-
'6e48bc1f2b5acfa5ee5d2e17b6593e3159225bfa8ad805229daebe4deca3b71e5bef424f222d359b6a0d28bd42bc27d45496df81888dc9d053e89c593e80970e')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('088a606ca6e13de79cfa8b180d76e91cca129b3e1ffad2243e5924dc10530340924ea815eb9af0e53b5369daa9cf3e66b2f623da6913ed32916b91d24a47c1e4')
 
-prepare() {
-   cd "${pkgname#python-}-$pkgver"
-   # Fix test suite failures due to expired certificates
-   patch --forward --strip=1 
--input="$srcdir/python-python-socks-1.2.4_fix_test_suite.patch"
-}
-
 build() {
cd "${pkgname#python-}-$pkgver"
python setup.py build



  1   2   >