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

2021-06-04 Thread Daurnimator via arch-commits
Date: Saturday, June 5, 2021 @ 03:33:32
  Author: daurnimator
Revision: 955964

archrelease: copy trunk to community-staging-x86_64

Added:
  zig/repos/community-staging-x86_64/
  zig/repos/community-staging-x86_64/PKGBUILD
(from rev 955963, zig/trunk/PKGBUILD)
  zig/repos/community-staging-x86_64/resolve_DNS.patch
(from rev 955963, zig/trunk/resolve_DNS.patch)

---+
 PKGBUILD  |   49 +
 resolve_DNS.patch |   23 +++
 2 files changed, 72 insertions(+)

Copied: zig/repos/community-staging-x86_64/PKGBUILD (from rev 955963, 
zig/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-06-05 03:33:32 UTC (rev 955964)
@@ -0,0 +1,49 @@
+# Maintainer: Daurnimator 
+# Contributor: Marc Tiehuis 
+
+pkgname=zig
+pkgver=0.8.0
+pkgrel=1
+pkgdesc='a general-purpose programming language and toolchain for maintaining 
robust, optimal, and reusable software'
+arch=('x86_64')
+url='https://ziglang.org/'
+license=('MIT')
+depends=('clang' 'llvm-libs' 'lld')
+makedepends=('cmake' 'llvm')
+source=("https://ziglang.org/download/$pkgver/zig-$pkgver.tar.xz;
+"resolve_DNS.patch")
+sha256sums=('03a828d00c06b2e3bb8b7ff706997fd76bf32503b08d759756155b6e8c981e77'
+'c2b7e709dcc229f0e58e2529db900bcfb9a1cfb73da765c5c76ab1e6d0a333cc')
+
+prepare() {
+cd "$pkgname-$pkgver"
+# https://github.com/ziglang/zig/issues/6898
+patch -p1 < ../resolve_DNS.patch
+}
+
+build() {
+cd "$pkgname-$pkgver"
+
+# The zig CMakeLists uses build type Debug if not set
+# override it back to None so makepkg env vars are respected
+cmake -B build \
+-DCMAKE_BUILD_TYPE=None \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DZIG_PREFER_CLANG_CPP_DYLIB=ON \
+.
+make -C build
+}
+
+check() {
+cd "$pkgname-$pkgver/build"
+
+./zig build test
+}
+
+package() {
+cd "$pkgname-$pkgver"
+
+install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+make -C build DESTDIR="$pkgdir" install
+}

Copied: zig/repos/community-staging-x86_64/resolve_DNS.patch (from rev 955963, 
zig/trunk/resolve_DNS.patch)
===
--- community-staging-x86_64/resolve_DNS.patch  (rev 0)
+++ community-staging-x86_64/resolve_DNS.patch  2021-06-05 03:33:32 UTC (rev 
955964)
@@ -0,0 +1,23 @@
+diff --git a/lib/std/net/test.zig b/lib/std/net/test.zig
+index 9f40bb5a3..15dd8c920 100644
+--- a/lib/std/net/test.zig
 b/lib/std/net/test.zig
+@@ -106,18 +106,6 @@ test "resolve DNS" {
+ }
+ }
+ 
+-// Resolve localhost, this should not fail.
+-{
+-const localhost_v4 = try net.Address.parseIp("127.0.0.1", 80);
+-const localhost_v6 = try net.Address.parseIp("::2", 80);
+-
+-const result = try net.getAddressList(testing.allocator, "localhost", 
80);
+-defer result.deinit();
+-for (result.addrs) |addr| {
+-if (addr.eql(localhost_v4) or addr.eql(localhost_v6)) break;
+-} else @panic("unexpected address for localhost");
+-}
+-
+ {
+ // The tests are required to work even when there is no Internet 
connection,
+ // so some of these errors we must accept and skip the test.


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

2021-06-04 Thread Daurnimator via arch-commits
Date: Saturday, June 5, 2021 @ 03:33:17
  Author: daurnimator
Revision: 955963

upgpkg: zig 0.8.0-1

Modified:
  zig/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-05 01:35:30 UTC (rev 955962)
+++ PKGBUILD2021-06-05 03:33:17 UTC (rev 955963)
@@ -2,8 +2,8 @@
 # Contributor: Marc Tiehuis 
 
 pkgname=zig
-pkgver=0.7.1
-pkgrel=2
+pkgver=0.8.0
+pkgrel=1
 pkgdesc='a general-purpose programming language and toolchain for maintaining 
robust, optimal, and reusable software'
 arch=('x86_64')
 url='https://ziglang.org/'
@@ -12,7 +12,7 @@
 makedepends=('cmake' 'llvm')
 source=("https://ziglang.org/download/$pkgver/zig-$pkgver.tar.xz;
 "resolve_DNS.patch")
-sha256sums=('2db3b944ab368d955b48743d9f7c963b8f96de1a441ba5a35e197237cc6dae44'
+sha256sums=('03a828d00c06b2e3bb8b7ff706997fd76bf32503b08d759756155b6e8c981e77'
 'c2b7e709dcc229f0e58e2529db900bcfb9a1cfb73da765c5c76ab1e6d0a333cc')
 
 prepare() {
@@ -24,16 +24,14 @@
 build() {
 cd "$pkgname-$pkgver"
 
-mkdir -p build
-cd build
 # The zig CMakeLists uses build type Debug if not set
 # override it back to None so makepkg env vars are respected
-cmake \
+cmake -B build \
 -DCMAKE_BUILD_TYPE=None \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DZIG_PREFER_CLANG_CPP_DYLIB=ON \
-..
-make
+.
+make -C build
 }
 
 check() {


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

2021-06-04 Thread Anatol Pomozov via arch-commits
Date: Saturday, June 5, 2021 @ 01:35:30
  Author: anatolik
Revision: 955962

archrelease: copy trunk to community-x86_64

Added:
  tarantool/repos/community-x86_64/PKGBUILD
(from rev 955961, tarantool/trunk/PKGBUILD)
  tarantool/repos/community-x86_64/tarantool.sysusers
(from rev 955961, tarantool/trunk/tarantool.sysusers)
Deleted:
  tarantool/repos/community-x86_64/PKGBUILD
  tarantool/repos/community-x86_64/tarantool.sysusers

+
 PKGBUILD   |  182 +--
 tarantool.sysusers |4 -
 2 files changed, 93 insertions(+), 93 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-05 01:35:05 UTC (rev 955961)
+++ PKGBUILD2021-06-05 01:35:30 UTC (rev 955962)
@@ -1,91 +0,0 @@
-# Maintainer: Anatol Pomozov 
-
-pkgname=tarantool
-pkgver=2.8.1
-pkgrel=1
-pkgdesc='Lua application server integrated with a database management system'
-arch=(x86_64)
-url='https://www.tarantool.org'
-license=(BSD)
-depends=(readline ncurses zlib libyaml openssl libunwind icu)
-makedepends=(git cmake systemd)
-checkdepends=(python-gevent python-tarantool)
-source=(git+https://github.com/tarantool/tarantool.git#tag=$pkgver
-git+https://github.com/tarantool/luajit.git#branch=tarantool-1.7
-git+https://github.com/tarantool/libyaml.git
-git+https://github.com/tarantool/msgpuck.git
-git+https://github.com/rtsisyk/luafun.git
-git+https://github.com/tarantool/test-run.git
-git+https://github.com/tarantool/small.git
-git+https://github.com/tarantool/zstd.git
-
git+https://github.com/tarantool/luarocks.git#branch=luarocks-3.1.1-tarantool
-git+https://github.com/tarantool/decNumber.git
-git+https://github.com/tarantool/curl.git
-git+https://github.com/tarantool/c-ares.git
-tarantool.sysusers)
-sha256sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'2feccda75effbd44b40e43608e56395376ea7b9039a09aada91a05f9559b12fe')
-
-prepare() {
-  cd tarantool
-
-  git submodule init
-  git config -f .gitmodules 'submodule.third_party/luajit.url' "$srcdir/luajit"
-  git config -f .gitmodules 'submodule.src/lib/msgpuck.url' "$srcdir/msgpuck"
-  git config -f .gitmodules 'submodule.third_party/luafun.url' "$srcdir/luafun"
-  git config -f .gitmodules 'submodule.third_party/libyaml.url' 
"$srcdir/libyaml"
-  git config -f .gitmodules 'submodule.third_party/zstd.url' "$srcdir/zstd"
-  git config -f .gitmodules 'submodule.test-run.url' "$srcdir/test-run"
-  git config -f .gitmodules 'submodule.src/lib/small.url' "$srcdir/small"
-  git config -f .gitmodules 'submodule.third_party/luarocks.url' 
"$srcdir/luarocks"
-  git config -f .gitmodules 'submodule.third_party/decNumber.url' 
"$srcdir/decNumber"
-  git config -f .gitmodules 'submodule.third_party/curl.url' "$srcdir/curl"
-  git config -f .gitmodules 'submodule.third_party/c-ares.url' "$srcdir/c-ares"
-
-  git submodule sync
-  git submodule update
-}
-
-build() {
-  cd tarantool
-
-  # tarantool uses git submodule, handle this
-  cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_BINDIR=/usr/bin \
--DCMAKE_INSTALL_SYSCONFDIR=/etc \
--DCMAKE_INSTALL_LIBDIR=/usr/lib \
--DCMAKE_BUILD_TYPE=RelWithDebInfo \
--DCMAKE_SKIP_RPATH=ON \
--DENABLE_BACKTRACE:BOOL=ON \
--DWITH_SYSTEMD:BOOL=ON \
--DENABLE_DIST:BOOL=ON \
-.
-  make
-}
-
-check() {
-  cd "$srcdir/tarantool/test"
-  python test-run.py --suite box
-}
-
-package() {
-  cd tarantool
-  make install DESTDIR="$pkgdir"
-
-  sed 's|/var/run/|/run/|' -i "$pkgdir"/usr/lib/tmpfiles.d/tarantool.conf # 
https://github.com/tarantool/tarantool/issues/5227
-
-  install -D -m644 "$srcdir"/tarantool.sysusers 
"$pkgdir/usr/lib/sysusers.d/tarantool.conf"
-  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: tarantool/repos/community-x86_64/PKGBUILD (from rev 955961, 
tarantool/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-05 01:35:30 UTC (rev 955962)
@@ -0,0 +1,91 @@
+# Maintainer: Anatol Pomozov 
+
+pkgname=tarantool
+pkgver=2.9.0
+pkgrel=1
+pkgdesc='Lua application server integrated with a database management system'
+arch=(x86_64)
+url='https://www.tarantool.org'
+license=(BSD)
+depends=(readline ncurses zlib libyaml openssl libunwind icu)
+makedepends=(git cmake systemd)
+checkdepends=(python-gevent python-tarantool)
+source=(git+https://github.com/tarantool/tarantool.git#tag=$pkgver
+git+https://github.com/tarantool/luajit.git#branch=tarantool-1.7
+git+https://github.com/tarantool/libyaml.git
+

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

2021-06-04 Thread Anatol Pomozov via arch-commits
Date: Saturday, June 5, 2021 @ 01:35:05
  Author: anatolik
Revision: 955961

upgpkg: tarantool 2.9.0-1

Modified:
  tarantool/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-05 01:03:22 UTC (rev 955960)
+++ PKGBUILD2021-06-05 01:35:05 UTC (rev 955961)
@@ -1,7 +1,7 @@
 # Maintainer: Anatol Pomozov 
 
 pkgname=tarantool
-pkgver=2.8.1
+pkgver=2.9.0
 pkgrel=1
 pkgdesc='Lua application server integrated with a database management system'
 arch=(x86_64)


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

2021-06-04 Thread Orhun Parmaksiz via arch-commits
Date: Saturday, June 5, 2021 @ 01:03:22
  Author: orhun
Revision: 955960

archrelease: copy trunk to community-x86_64

Added:
  pycharm-community-edition/repos/community-x86_64/PKGBUILD
(from rev 955959, pycharm-community-edition/trunk/PKGBUILD)
  pycharm-community-edition/repos/community-x86_64/pycharm.desktop
(from rev 955959, pycharm-community-edition/trunk/pycharm.desktop)
  pycharm-community-edition/repos/community-x86_64/pycharm.sh
(from rev 955959, pycharm-community-edition/trunk/pycharm.sh)
Deleted:
  pycharm-community-edition/repos/community-x86_64/PKGBUILD
  pycharm-community-edition/repos/community-x86_64/pycharm.desktop
  pycharm-community-edition/repos/community-x86_64/pycharm.sh

-+
 PKGBUILD|  198 +++---
 pycharm.desktop |   22 +++---
 pycharm.sh  |   40 +-
 3 files changed, 130 insertions(+), 130 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-05 01:03:05 UTC (rev 955959)
+++ PKGBUILD2021-06-05 01:03:22 UTC (rev 955960)
@@ -1,99 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Maintainer: Levente Polyak 
-# Maintainer: Orhun Parmaksız 
-# Contributor: David Keogh 
-
-pkgname=pycharm-community-edition
-pkgver=2021.1.1
-_build=211.7142.13
-_gitcommit=57775d7ab3335fc90899480e272c7ecea7f80e6e
-pkgrel=1
-pkgdesc='Python IDE for Professional Developers'
-arch=(x86_64)
-url=https://www.jetbrains.com/pycharm/
-license=(APACHE)
-depends=(
-  giflib
-  glib2
-  java-environment=11
-  java11-openjfx
-  python
-  sh
-  ttf-font
-  fontconfig
-  libdbusmenu-glib
-)
-optdepends=(
-  'ipython: IPython integration for Python 3'
-  'python2: Python 2 support'
-)
-makedepends=(
-  ant
-  git
-  java-environment=8
-  python2-setuptools
-  python-setuptools
-)
-source=(
-  
"git+https://github.com/JetBrains/intellij-community.git#commit=${_gitcommit};
-  pycharm.desktop
-  pycharm.sh
-)
-sha256sums=('SKIP'
-'f727119ec7c8b96820e80712b1ee342de6a94ff72402e8f2d390cbff702f9b21'
-'7b5360b4977e934931acab775d04915417a5da9f3ea1dd44355525b0016cf65d')
-
-prepare() {
-  cd intellij-community
-
-  echo ${_build} > build.txt
-
-  # https://youtrack.jetbrains.com/issue/IDEA-266631
-  sed '/intellij.cwm.plugin/d' -i python/build/plugin-list.txt
-  sed '/intellij.marketplace/d' -i python/build/plugin-list.txt
-
-  sed '/def targetOs =/c def targetOs = "linux"' -i 
build/dependencies/setupJbre.gradle
-  sed '/String targetOS/c   String targetOS = OS_LINUX' -i 
platform/build-scripts/groovy/org/jetbrains/intellij/build/BuildOptions.groovy
-  sed -E 's|(\1|' -i build.xml
-  sed -E 's|(\1|' -i python/build.xml
-  sed "s/-Xmx612m -XX:MaxPermSize=152m/-Xmx2048m -XX:MaxPermSize=512m/" -i 
python/build.xml
-  sed 's|../build/plugins-autoupload.txt|plugins-autoupload.txt|' -i 
platform/build-scripts/groovy/org/jetbrains/intellij/build/impl/DistributionJARsBuilder.groovy
-  touch plugins-autoupload.txt
-  ./getPlugins.sh
-}
-
-build() {
-  cd intellij-community/python
-
-  unset _JAVA_OPTIONS
-  export JAVA_HOME=/usr/lib/jvm/java-11-openjdk
-  export PATH="${JAVA_HOME}/bin:${PATH}"
-  export JDK_16_x64=/usr/lib/jvm/java-8-openjdk
-  export JDK_18_x64=/usr/lib/jvm/java-8-openjdk
-
-  ant -Dintellij.build.target.os=linux build
-  tar -xf ../out/pycharm-ce/artifacts/pycharmPC-${_build}-no-jbr.tar.gz -C 
"${srcdir}"
-
-  cd ../../pycharm-community-${pkgver}
-
-  python2 plugins/python-ce/helpers/pydev/setup_cython.py build_ext 
--build-temp build --build-lib .
-  python3 plugins/python-ce/helpers/pydev/setup_cython.py build_ext 
--build-temp build --build-lib .
-}
-
-package() {
-  cd pycharm-community-${pkgver}
-
-  # workaround FS#40934
-  sed -i 's/lcd/on/' bin/*.vmoptions
-
-  rm -rf bin/fsnotifier{,-arm} lib/libpty/linux/x86
-
-  install -dm 755 "${pkgdir}"/usr/share/{licenses,pixmaps,pycharm}
-  cp -dr --no-preserve='ownership' bin lib plugins 
"${pkgdir}"/usr/share/pycharm/
-  cp -dr --no-preserve='ownership' license 
"${pkgdir}"/usr/share/licenses/pycharm/
-  ln -s /usr/share/pycharm/bin/pycharm.png "${pkgdir}"/usr/share/pixmaps/
-  install -Dm 644 ../pycharm.desktop -t "${pkgdir}"/usr/share/applications/
-  install -Dm 755 ../pycharm.sh "${pkgdir}"/usr/bin/pycharm
-}
-
-# vim: ts=2 sw=2 et:

Copied: pycharm-community-edition/repos/community-x86_64/PKGBUILD (from rev 
955959, pycharm-community-edition/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-05 01:03:22 UTC (rev 955960)
@@ -0,0 +1,99 @@
+# Maintainer: Maxime Gauduin 
+# Maintainer: Levente Polyak 
+# Maintainer: Orhun Parmaksız 
+# Contributor: David Keogh 
+
+pkgname=pycharm-community-edition
+pkgver=2021.1.2
+_build=211.7442.45
+_gitcommit=c315cd29d549d5f8c03638e657a7d55f214bb0ef
+pkgrel=1
+pkgdesc='Python IDE for Professional Developers'
+arch=(x86_64)

[arch-commits] Commit in pycharm-community-edition/trunk (PKGBUILD)

2021-06-04 Thread Orhun Parmaksiz via arch-commits
Date: Saturday, June 5, 2021 @ 01:03:05
  Author: orhun
Revision: 955959

upgpkg: pycharm-community-edition 2021.1.2-1: upstream release

Modified:
  pycharm-community-edition/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-05 01:00:32 UTC (rev 955958)
+++ PKGBUILD2021-06-05 01:03:05 UTC (rev 955959)
@@ -4,9 +4,9 @@
 # Contributor: David Keogh 
 
 pkgname=pycharm-community-edition
-pkgver=2021.1.1
-_build=211.7142.13
-_gitcommit=57775d7ab3335fc90899480e272c7ecea7f80e6e
+pkgver=2021.1.2
+_build=211.7442.45
+_gitcommit=c315cd29d549d5f8c03638e657a7d55f214bb0ef
 pkgrel=1
 pkgdesc='Python IDE for Professional Developers'
 arch=(x86_64)


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

2021-06-04 Thread Jan Steffens via arch-commits
Date: Saturday, June 5, 2021 @ 01:00:32
  Author: heftig
Revision: 955958

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-librsvg/repos/multilib-x86_64/PKGBUILD
(from rev 955957, lib32-librsvg/trunk/PKGBUILD)
  lib32-librsvg/repos/multilib-x86_64/multilib.diff
(from rev 955957, lib32-librsvg/trunk/multilib.diff)
Deleted:
  lib32-librsvg/repos/multilib-x86_64/PKGBUILD
  lib32-librsvg/repos/multilib-x86_64/multilib.diff

---+
 PKGBUILD  |  136 
 multilib.diff |   66 +--
 2 files changed, 101 insertions(+), 101 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-05 01:00:14 UTC (rev 955957)
+++ PKGBUILD2021-06-05 01:00:32 UTC (rev 955958)
@@ -1,68 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Maxime Gauduin 
-# Contributor: jtts 
-# Contributor: Jan de Groot 
-
-pkgname=lib32-librsvg
-pkgver=2.50.6
-pkgrel=1
-epoch=2
-pkgdesc="SVG rendering library (32-bit)"
-url="https://wiki.gnome.org/Projects/LibRsvg;
-arch=(x86_64)
-license=(LGPL)
-depends=(lib32-gdk-pixbuf2 lib32-pango lib32-libxml2 librsvg)
-makedepends=(gobject-introspection gtk-doc git rust lib32-rust-libs)
-checkdepends=(ttf-dejavu)
-provides=(librsvg-${pkgver%%.*}.so)
-_commit=b78911f8dbcc218ac3fda63de37304fb332ca7fe  # tags/2.50.6^0
-source=("git+https://gitlab.gnome.org/GNOME/librsvg.git#commit=$_commit;
-multilib.diff)
-sha256sums=('SKIP'
-'92818f59a43ba67d95fca36fc2fa51fd4b23ab0e010a1aec04ab797088a8964a')
-
-pkgver() {
-  cd librsvg
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd librsvg
-
-  # Hack to cross-compile rust only
-  git apply -3 ../multilib.diff
-
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd librsvg
-
-  export CC='gcc -m32'
-  export CXX='g++ -m32'
-  export PKG_CONFIG=i686-pc-linux-gnu-pkg-config
-  export RUST_TARGET=i686-pc-linux-gnu
-
-  # Use LTO
-  export CARGO_PROFILE_RELEASE_LTO=true CARGO_PROFILE_RELEASE_CODEGEN_UNITS=1
-
-  ./configure --prefix=/usr --disable-static --disable-vala \
---disable-gtk-doc --disable-introspection --libdir=/usr/lib32
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' libtool
-  make
-}
-
-check() {
-  cd librsvg
-  # Test suite is very dependent on the versions of
-  # Cairo, Pango, FreeType and HarfBuzz
-  make check || :
-}
-
-package() {
-  cd librsvg
-  make DESTDIR="$pkgdir" install
-  rm -r "$pkgdir"/usr/{bin,include,share}
-}
-
-# vim: ts=2 sw=2 et:

Copied: lib32-librsvg/repos/multilib-x86_64/PKGBUILD (from rev 955957, 
lib32-librsvg/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-05 01:00:32 UTC (rev 955958)
@@ -0,0 +1,68 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Maxime Gauduin 
+# Contributor: jtts 
+# Contributor: Jan de Groot 
+
+pkgname=lib32-librsvg
+pkgver=2.50.7
+pkgrel=1
+epoch=2
+pkgdesc="SVG rendering library (32-bit)"
+url="https://wiki.gnome.org/Projects/LibRsvg;
+arch=(x86_64)
+license=(LGPL)
+depends=(lib32-gdk-pixbuf2 lib32-pango lib32-libxml2 librsvg)
+makedepends=(gobject-introspection gtk-doc git rust lib32-rust-libs)
+checkdepends=(ttf-dejavu)
+provides=(librsvg-${pkgver%%.*}.so)
+_commit=6ca387974e6a3e248c261d3dac15b8d4a742d3aa  # tags/2.50.7^0
+source=("git+https://gitlab.gnome.org/GNOME/librsvg.git#commit=$_commit;
+multilib.diff)
+sha256sums=('SKIP'
+'92818f59a43ba67d95fca36fc2fa51fd4b23ab0e010a1aec04ab797088a8964a')
+
+pkgver() {
+  cd librsvg
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd librsvg
+
+  # Hack to cross-compile rust only
+  git apply -3 ../multilib.diff
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd librsvg
+
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG=i686-pc-linux-gnu-pkg-config
+  export RUST_TARGET=i686-pc-linux-gnu
+
+  # Use LTO
+  export CARGO_PROFILE_RELEASE_LTO=true CARGO_PROFILE_RELEASE_CODEGEN_UNITS=1
+
+  ./configure --prefix=/usr --disable-static --disable-vala \
+--disable-gtk-doc --disable-introspection --libdir=/usr/lib32
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' libtool
+  make
+}
+
+check() {
+  cd librsvg
+  # Test suite is very dependent on the versions of
+  # Cairo, Pango, FreeType and HarfBuzz
+  make check || :
+}
+
+package() {
+  cd librsvg
+  make DESTDIR="$pkgdir" install
+  rm -r "$pkgdir"/usr/{bin,include,share}
+}
+
+# vim: ts=2 sw=2 et:

Deleted: multilib.diff
===
--- multilib.diff   2021-06-05 01:00:14 UTC (rev 955957)
+++ multilib.diff   2021-06-05 01:00:32 UTC (rev 955958)
@@ -1,33 +0,0 @@
- Makefile.am  | 2 --
- configure.ac | 4 +---
- 2 files changed, 1 insertion(+), 5 deletions(-)
-
-diff --git c/Makefile.am i/Makefile.am
-index 9cb38958..9adeb800 100644
 

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

2021-06-04 Thread Jan Steffens via arch-commits
Date: Saturday, June 5, 2021 @ 01:00:28
  Author: heftig
Revision: 417124

archrelease: copy trunk to extra-x86_64

Added:
  librsvg/repos/extra-x86_64/PKGBUILD
(from rev 417123, librsvg/trunk/PKGBUILD)
Deleted:
  librsvg/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-05 01:00:14 UTC (rev 417123)
+++ PKGBUILD2021-06-05 01:00:28 UTC (rev 417124)
@@ -1,53 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgname=librsvg
-pkgver=2.50.6
-pkgrel=1
-epoch=2
-pkgdesc="SVG rendering library"
-url="https://wiki.gnome.org/Projects/LibRsvg;
-arch=(x86_64)
-license=(LGPL)
-depends=(gdk-pixbuf2 pango)
-makedepends=(gobject-introspection vala gtk-doc git rust)
-provides=(librsvg-${pkgver%%.*}.so)
-_commit=b78911f8dbcc218ac3fda63de37304fb332ca7fe  # tags/2.50.6^0
-source=("git+https://gitlab.gnome.org/GNOME/librsvg.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd librsvg
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd librsvg
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd librsvg
-
-  # Use LTO
-  export CARGO_PROFILE_RELEASE_LTO=true CARGO_PROFILE_RELEASE_CODEGEN_UNITS=1
-
-  ./configure --prefix=/usr --disable-static --enable-vala \
---enable-gtk-doc
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' libtool
-  make
-}
-
-check() {
-  cd librsvg
-  # Test suite is very dependent on the versions of
-  # Cairo, Pango, FreeType and HarfBuzz
-  make check || :
-}
-
-package() {
-  cd librsvg
-  make DESTDIR="$pkgdir" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: librsvg/repos/extra-x86_64/PKGBUILD (from rev 417123, 
librsvg/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-05 01:00:28 UTC (rev 417124)
@@ -0,0 +1,53 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=librsvg
+pkgver=2.50.7
+pkgrel=1
+epoch=2
+pkgdesc="SVG rendering library"
+url="https://wiki.gnome.org/Projects/LibRsvg;
+arch=(x86_64)
+license=(LGPL)
+depends=(gdk-pixbuf2 pango)
+makedepends=(gobject-introspection vala gtk-doc git rust)
+provides=(librsvg-${pkgver%%.*}.so)
+_commit=6ca387974e6a3e248c261d3dac15b8d4a742d3aa  # tags/2.50.7^0
+source=("git+https://gitlab.gnome.org/GNOME/librsvg.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd librsvg
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd librsvg
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd librsvg
+
+  # Use LTO
+  export CARGO_PROFILE_RELEASE_LTO=true CARGO_PROFILE_RELEASE_CODEGEN_UNITS=1
+
+  ./configure --prefix=/usr --disable-static --enable-vala \
+--enable-gtk-doc
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' libtool
+  make
+}
+
+check() {
+  cd librsvg
+  # Test suite is very dependent on the versions of
+  # Cairo, Pango, FreeType and HarfBuzz
+  make check || :
+}
+
+package() {
+  cd librsvg
+  make DESTDIR="$pkgdir" install
+}
+
+# vim: ts=2 sw=2 et:


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

2021-06-04 Thread Jan Steffens via arch-commits
Date: Saturday, June 5, 2021 @ 01:00:14
  Author: heftig
Revision: 417123

2.50.7-1

Modified:
  librsvg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-04 19:17:25 UTC (rev 417122)
+++ PKGBUILD2021-06-05 01:00:14 UTC (rev 417123)
@@ -2,7 +2,7 @@
 # Contributor: Jan de Groot 
 
 pkgname=librsvg
-pkgver=2.50.6
+pkgver=2.50.7
 pkgrel=1
 epoch=2
 pkgdesc="SVG rendering library"
@@ -12,7 +12,7 @@
 depends=(gdk-pixbuf2 pango)
 makedepends=(gobject-introspection vala gtk-doc git rust)
 provides=(librsvg-${pkgver%%.*}.so)
-_commit=b78911f8dbcc218ac3fda63de37304fb332ca7fe  # tags/2.50.6^0
+_commit=6ca387974e6a3e248c261d3dac15b8d4a742d3aa  # tags/2.50.7^0
 source=("git+https://gitlab.gnome.org/GNOME/librsvg.git#commit=$_commit;)
 sha256sums=('SKIP')
 


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

2021-06-04 Thread Jan Steffens via arch-commits
Date: Saturday, June 5, 2021 @ 01:00:14
  Author: heftig
Revision: 955957

2.50.7-1

Modified:
  lib32-librsvg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-04 22:51:30 UTC (rev 955956)
+++ PKGBUILD2021-06-05 01:00:14 UTC (rev 955957)
@@ -4,7 +4,7 @@
 # Contributor: Jan de Groot 
 
 pkgname=lib32-librsvg
-pkgver=2.50.6
+pkgver=2.50.7
 pkgrel=1
 epoch=2
 pkgdesc="SVG rendering library (32-bit)"
@@ -15,7 +15,7 @@
 makedepends=(gobject-introspection gtk-doc git rust lib32-rust-libs)
 checkdepends=(ttf-dejavu)
 provides=(librsvg-${pkgver%%.*}.so)
-_commit=b78911f8dbcc218ac3fda63de37304fb332ca7fe  # tags/2.50.6^0
+_commit=6ca387974e6a3e248c261d3dac15b8d4a742d3aa  # tags/2.50.7^0
 source=("git+https://gitlab.gnome.org/GNOME/librsvg.git#commit=$_commit;
 multilib.diff)
 sha256sums=('SKIP'


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

2021-06-04 Thread Kpcyrd via arch-commits
Date: Friday, June 4, 2021 @ 22:51:30
  Author: kpcyrd
Revision: 955956

archrelease: copy trunk to community-x86_64

Added:
  signal-desktop/repos/community-x86_64/PKGBUILD
(from rev 955955, signal-desktop/trunk/PKGBUILD)
  signal-desktop/repos/community-x86_64/TRADEMARK_CONSENT.txt
(from rev 955955, signal-desktop/trunk/TRADEMARK_CONSENT.txt)
  signal-desktop/repos/community-x86_64/expire-from-source-date-epoch.patch
(from rev 955955, signal-desktop/trunk/expire-from-source-date-epoch.patch)
  signal-desktop/repos/community-x86_64/signal-desktop.desktop
(from rev 955955, signal-desktop/trunk/signal-desktop.desktop)
Deleted:
  signal-desktop/repos/community-x86_64/PKGBUILD
  signal-desktop/repos/community-x86_64/TRADEMARK_CONSENT.txt
  signal-desktop/repos/community-x86_64/expire-from-source-date-epoch.patch
  signal-desktop/repos/community-x86_64/signal-desktop.desktop

-+
 PKGBUILD|  138 +-
 expire-from-source-date-epoch.patch |   26 +++---
 signal-desktop.desktop  |   26 +++---
 3 files changed, 95 insertions(+), 95 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-04 22:51:09 UTC (rev 955955)
+++ PKGBUILD2021-06-04 22:51:30 UTC (rev 955956)
@@ -1,69 +0,0 @@
-# Maintainer: kpcyrd 
-# Contributor: Jean Lucas 
-
-pkgname=signal-desktop
-_pkgname=Signal-Desktop
-pkgver=5.3.0
-pkgrel=1
-pkgdesc="Signal Private Messenger for Linux"
-license=('AGPL3')
-arch=('x86_64')
-url="https://signal.org;
-depends=('gtk3' 'libvips' 'libxss' 'hicolor-icon-theme')
-makedepends=('yarn' 'git' 'git-lfs' 'nodejs-lts-fermium' 'npm6' 'python')
-source=(
-  
"${pkgname}-${pkgver}.tar.gz::https://github.com/signalapp/${_pkgname}/archive/v${pkgver}.tar.gz;
-  "${pkgname}.desktop"
-  "expire-from-source-date-epoch.patch"
-)
-sha512sums=('27f2fdbdc84aacf78cf8ee668d2b33693269afe7f27ab315fe7010829179b7e0610322aa502abeb1b6ddf38df7b3bdd2965e36e859b074270b56c578d5b089a4'
-
'90cfee563a985bc73c4e7984715d190ae0b5c7aa887a7dc15c665980ca5cc8420b02f6c7a54e032c29e18876d5d51cfbe5027a9f0a59de3903f50fd469d73ce0'
-
'6673066172d6c367961f3e2d762dd483e51a9f733d52e27d0569b333ad397375fd41d61b8a414b8c9e8dbba560a6c710678b3d105f8d285cb94d70561368d5a2')
-b2sums=('0b001081cfe1a19b9540eb2293c93132c62364ba88945a1453874a42f8bb348ea1e608ca2a330c2c5c91b2fe420fffa28d7b3c48307737e270bc065041fde539'
-
'b0974f1409bf77e917a3ecce68a9d066eaf24a6cd35e0d52b0d61fcf2fb014f19962bb445b6eaf668081d370c69c01b08420c056902907574a29a71a4f0f2457'
-
'b8171e6d881a6ffd5588d1cae00ed81412eff1602670003fc1f48b7e6cb2d680340d464b7b38ee8886a8bd8193166ad71e3ad10b0de8b2a397b383b72434e289')
-
-prepare() {
-  cd "${_pkgname}-${pkgver}"
-
-  # git-lfs hook needs to be installed for one of the dependencies
-  git lfs install
-
-  # Allow higher Node versions
-  sed 's#"node": "#&>=#' -i package.json
-
-  # Select node-gyp versions with python3 support
-  sed 's#"node-gyp": "5.0.3"#"node-gyp": "6.1.0"#' -i package.json
-  # https://github.com/sass/node-sass/pull/2841
-  # https://github.com/sass/node-sass/issues/2716
-  sed -r 's#("resolutions": \{)#"resolutions": {"node-sass/node-gyp": 
"^6.0.0",#' -i package.json
-
-  yarn install --ignore-engines
-
-  # We can't read the release date from git so we use SOURCE_DATE_EPOCH instead
-  patch --forward --strip=1 
--input="${srcdir}/expire-from-source-date-epoch.patch"
-}
-
-build() {
-  cd "${_pkgname}-${pkgver}"
-  yarn generate
-  yarn build
-}
-
-package() {
-  cd "${_pkgname}-${pkgver}"
-
-  install -d "${pkgdir}/usr/"{lib,bin}
-  cp -a release/linux-unpacked "${pkgdir}/usr/lib/${pkgname}"
-  ln -s "/usr/lib/${pkgname}/${pkgname}" "${pkgdir}/usr/bin/"
-
-  chmod u+s "${pkgdir}/usr/lib/signal-desktop/chrome-sandbox"
-
-  install -Dm 644 "../${pkgname}.desktop" -t "${pkgdir}/usr/share/applications"
-  for i in 16 24 32 48 64 128 256 512 1024; do
-install -Dm 644 "build/icons/png/${i}x${i}.png" \
-  "${pkgdir}/usr/share/icons/hicolor/${i}x${i}/apps/${pkgname}.png"
-  done
-}
-
-# vim: ts=2 sw=2 et:

Copied: signal-desktop/repos/community-x86_64/PKGBUILD (from rev 955955, 
signal-desktop/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-04 22:51:30 UTC (rev 955956)
@@ -0,0 +1,69 @@
+# Maintainer: kpcyrd 
+# Contributor: Jean Lucas 
+
+pkgname=signal-desktop
+_pkgname=Signal-Desktop
+pkgver=5.4.0
+pkgrel=1
+pkgdesc="Signal Private Messenger for Linux"
+license=('AGPL3')
+arch=('x86_64')
+url="https://signal.org;
+depends=('gtk3' 'libvips' 'libxss' 'hicolor-icon-theme')
+makedepends=('yarn' 'git' 'git-lfs' 'nodejs-lts-fermium' 'npm6' 'python')
+source=(
+  
"${pkgname}-${pkgver}.tar.gz::https://github.com/signalapp/${_pkgname}/archive/v${pkgver}.tar.gz;
+  "${pkgname}.desktop"
+  

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

2021-06-04 Thread Kpcyrd via arch-commits
Date: Friday, June 4, 2021 @ 22:51:09
  Author: kpcyrd
Revision: 955955

upgpkg: signal-desktop 5.4.0-1

Modified:
  signal-desktop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-04 22:46:41 UTC (rev 955954)
+++ PKGBUILD2021-06-04 22:51:09 UTC (rev 955955)
@@ -3,7 +3,7 @@
 
 pkgname=signal-desktop
 _pkgname=Signal-Desktop
-pkgver=5.3.0
+pkgver=5.4.0
 pkgrel=1
 pkgdesc="Signal Private Messenger for Linux"
 license=('AGPL3')
@@ -16,10 +16,10 @@
   "${pkgname}.desktop"
   "expire-from-source-date-epoch.patch"
 )
-sha512sums=('27f2fdbdc84aacf78cf8ee668d2b33693269afe7f27ab315fe7010829179b7e0610322aa502abeb1b6ddf38df7b3bdd2965e36e859b074270b56c578d5b089a4'
+sha512sums=('3a8806be5060482502d7ae47436d0d0c9c72eb70828985454c1e6d2716365a1edf5f13a02ba49605fb044b89cdd1bc08efb895b04818c1fec755ae4489abe7ae'
 
'90cfee563a985bc73c4e7984715d190ae0b5c7aa887a7dc15c665980ca5cc8420b02f6c7a54e032c29e18876d5d51cfbe5027a9f0a59de3903f50fd469d73ce0'
 
'6673066172d6c367961f3e2d762dd483e51a9f733d52e27d0569b333ad397375fd41d61b8a414b8c9e8dbba560a6c710678b3d105f8d285cb94d70561368d5a2')
-b2sums=('0b001081cfe1a19b9540eb2293c93132c62364ba88945a1453874a42f8bb348ea1e608ca2a330c2c5c91b2fe420fffa28d7b3c48307737e270bc065041fde539'
+b2sums=('5c800e45d49bf909d98baff7b95b0179c84a68dcd0881284cfa90594c8af7bb062c3c9e74b3bf10e5eb05c517cf05372ab348047d494b7948cdfbcecda5a15df'
 
'b0974f1409bf77e917a3ecce68a9d066eaf24a6cd35e0d52b0d61fcf2fb014f19962bb445b6eaf668081d370c69c01b08420c056902907574a29a71a4f0f2457'
 
'b8171e6d881a6ffd5588d1cae00ed81412eff1602670003fc1f48b7e6cb2d680340d464b7b38ee8886a8bd8193166ad71e3ad10b0de8b2a397b383b72434e289')
 


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

2021-06-04 Thread Eli Schwartz via arch-commits
Date: Friday, June 4, 2021 @ 22:19:41
  Author: eschwartz
Revision: 955953

archrelease: copy trunk to community-x86_64

Added:
  
cinnamon/repos/community-x86_64/0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch
(from rev 955952, 
cinnamon/trunk/0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch)
  cinnamon/repos/community-x86_64/PKGBUILD
(from rev 955952, cinnamon/trunk/PKGBUILD)
  cinnamon/repos/community-x86_64/default-theme.patch
(from rev 955952, cinnamon/trunk/default-theme.patch)
  cinnamon/repos/community-x86_64/set_wheel.diff
(from rev 955952, cinnamon/trunk/set_wheel.diff)
Deleted:
  
cinnamon/repos/community-x86_64/0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch
  cinnamon/repos/community-x86_64/PKGBUILD
  cinnamon/repos/community-x86_64/default-theme.patch
  cinnamon/repos/community-x86_64/set_wheel.diff

-+
 0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch |   76 ++--
 PKGBUILD|  174 
+-
 default-theme.patch |   50 +-
 set_wheel.diff  |  110 +++---
 4 files changed, 205 insertions(+), 205 deletions(-)

Deleted: 0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch
===
--- 0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch 
2021-06-04 22:19:19 UTC (rev 955952)
+++ 0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch 
2021-06-04 22:19:41 UTC (rev 955953)
@@ -1,38 +0,0 @@
-From ac4d2fc9fafb38ebb02615a41b23cceca304e73a Mon Sep 17 00:00:00 2001
-From: Eli Schwartz 
-Date: Tue, 20 Mar 2018 14:11:02 -0400
-Subject: [PATCH] cinnamon-settings: don't rely on the presence of
- cinnamon-control-center
-
-The existence of the cinnamon-control-center binary does not even tell
-us what control center libraries are available. So instead, do the same
-thing we did for cinnamon-settings modules, and check if the library
-exists.

- files/usr/bin/cinnamon-settings | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/files/usr/bin/cinnamon-settings b/files/usr/bin/cinnamon-settings
-index 9fbdbecd2..98ca454a5 100755
 a/files/usr/bin/cinnamon-settings
-+++ b/files/usr/bin/cinnamon-settings
-@@ -58,6 +58,7 @@ Available types of sort, and corresponding numbers:
- import getopt
- import os
- import sys
-+import sysconfig
- 
- def usage():
- print("""Usage:
-@@ -119,7 +120,7 @@ if len(sys.argv) > 1:
- 
os.execvp("/usr/share/cinnamon/cinnamon-settings/cinnamon-settings.py", (" ",) 
+ tuple(sys.argv[1:]))
- elif 
os.path.exists("/usr/share/cinnamon/cinnamon-settings/modules/cs_%s.py" % 
module):
- 
os.execvp("/usr/share/cinnamon/cinnamon-settings/cinnamon-settings.py", (" ",) 
+ tuple(sys.argv[1:]))
--elif os.path.exists("/usr/bin/cinnamon-control-center"):
-+elif os.path.exists(os.path.join(sysconfig.get_config_var("LIBDIR"), 
"cinnamon-control-center-1/panels/lib%s.so" % module)):
- 
os.execvp("/usr/share/cinnamon/cinnamon-settings/cinnamon-settings.py", (" ",) 
+ tuple(sys.argv[1:]))
- elif os.path.exists("/usr/bin/gnome-control-center"):
- print ("Unknown module %s, calling gnome-control-center" % module)
--- 
-2.22.0
-

Copied: 
cinnamon/repos/community-x86_64/0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch
 (from rev 955952, 
cinnamon/trunk/0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch)
===
--- 0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch 
(rev 0)
+++ 0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch 
2021-06-04 22:19:41 UTC (rev 955953)
@@ -0,0 +1,38 @@
+From ac4d2fc9fafb38ebb02615a41b23cceca304e73a Mon Sep 17 00:00:00 2001
+From: Eli Schwartz 
+Date: Tue, 20 Mar 2018 14:11:02 -0400
+Subject: [PATCH] cinnamon-settings: don't rely on the presence of
+ cinnamon-control-center
+
+The existence of the cinnamon-control-center binary does not even tell
+us what control center libraries are available. So instead, do the same
+thing we did for cinnamon-settings modules, and check if the library
+exists.
+---
+ files/usr/bin/cinnamon-settings | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/files/usr/bin/cinnamon-settings b/files/usr/bin/cinnamon-settings
+index 9fbdbecd2..98ca454a5 100755
+--- a/files/usr/bin/cinnamon-settings
 b/files/usr/bin/cinnamon-settings
+@@ -58,6 +58,7 @@ Available types of sort, and corresponding numbers:
+ import getopt
+ import os
+ import sys
++import sysconfig
+ 
+ def usage():
+ print("""Usage:
+@@ -119,7 +120,7 @@ if len(sys.argv) > 1:
+ 

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

2021-06-04 Thread Eli Schwartz via arch-commits
Date: Friday, June 4, 2021 @ 22:19:19
  Author: eschwartz
Revision: 955952

upgpkg: cinnamon 5.0.2-1: upstream release

Modified:
  cinnamon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-04 22:11:18 UTC (rev 955951)
+++ PKGBUILD2021-06-04 22:19:19 UTC (rev 955952)
@@ -5,7 +5,7 @@
 # Contributor: CReimer
 
 pkgname=cinnamon
-pkgver=5.0.1
+pkgver=5.0.2
 pkgrel=1
 pkgdesc="Linux desktop which provides advanced innovative features and a 
traditional user experience"
 arch=('x86_64')
@@ -28,11 +28,11 @@
 "0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch"
 "set_wheel.diff"
 "default-theme.patch")
-sha512sums=('7f10dbac4facb4b7c7924fdb7c95bb7dc22f17cd688145edba27ddae0862b2679a584a6b2160fd48e3128047618601d89acb182af880b68cabef5986f157aea8'
+sha512sums=('f75e9f8382b27b0b29d37274b8687f861c6b46a46b378ee297024069ad70e0e5b48089cd724210148d657d25bcce5d3f18b6ba4826b8ff582c0c1afb5fef9578'
 
'77c2229d350bb1445375d206af769f1dde9329ce3575e40e9c1d5fea3ec0f49c0a7ef36d78caf895d9224147947bd102bab924b5579dc8dc5f8d3269e0c76374'
 
'fd7e117054996ed1c3dfd0f968c2bf98ca4fcee9a100221f8839a232147745ec0140e1f68eeffba58a3c44f66f26e05d433648a7a28858ec669524f7266ba04c'
 
'ee7dedd59ea370cf81d75def49060f9a29b22e7b025ca7d5db87a0102d50f138c79aa562b0d36a748c4b1c59a37f600ba1f60ff6caf303cf5b6fc4d110d051b4')
-b2sums=('7bbe0937f1df9198b0143790130f45992b39ff8aa94d6fc66a66791010cb125a8cfd5b91442b1b6d3c072117e0f53fb86eb7bf3c8b2459dcaa49753b2b4d3d75'
+b2sums=('fe7962f4d6481a1584700b3ad5495d2cdc79c4f61aa01b7e330929ff83150ca9a024a00bece4df0fbd18dc68df164c5c27024320c8e46041ae1eaa7c36c8c620'
 
'1d873efa0d17e358f834c4374f39bbf3f74340849f9c28a0950c0a064772083798aba3435e564acdf43a94665389917788e295073d4a65cc18600d71b7a9f008'
 
'3becf1f40068fc629109e6e7d464c3c484296afacc9ab6328b2ccbb3c9735bcbfa9550f9f73b430ede178ae668e37c660ce322b5b4d1873526de3d3d41185160'
 
'86c3a29acd132ca321f08fd81dd5a45707accdc035b2aeec95bf358b29072ff1eedb77b2566cf48d7253d1d791599f0f44938c4600761d711cb18b59019f1c62')


[arch-commits] Commit in cinnamon-control-center/repos/community-x86_64 (2 files)

2021-06-04 Thread Eli Schwartz via arch-commits
Date: Friday, June 4, 2021 @ 22:11:18
  Author: eschwartz
Revision: 955951

archrelease: copy trunk to community-x86_64

Added:
  cinnamon-control-center/repos/community-x86_64/PKGBUILD
(from rev 955950, cinnamon-control-center/trunk/PKGBUILD)
Deleted:
  cinnamon-control-center/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-04 22:11:03 UTC (rev 955950)
+++ PKGBUILD2021-06-04 22:11:18 UTC (rev 955951)
@@ -1,46 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Contributor: Alexandre Filgueira 
-# Based on gnome-control-center:
-# Jan Alexander Steffens (heftig) 
-# Jan de Groot 
-
-pkgname=cinnamon-control-center
-pkgver=5.0.0
-pkgrel=1
-pkgdesc="The Control Center for Cinnamon"
-arch=('x86_64')
-url="https://github.com/linuxmint/${pkgname};
-license=('GPL')
-depends=('cinnamon-settings-daemon' 'cinnamon-menus' 'colord'
- 'libgnomekbd' 'libmm-glib' 'nm-connection-editor')
-optdepends=('cinnamon-translations: i18n'
-'gnome-color-manager: for color management tasks'
-'gnome-online-accounts: for the online accounts module')
-makedepends=('meson' 'samurai' 'gnome-online-accounts')
-options=('!emptydirs')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('26b6984fd66f4fe8445e10b4f975e4162bc06197a0d438708daf4dce57d06a64')
-b2sums=('ab968760770de90b22c7848c6d98574a647697bef2f742f0e93a1603734a1d295f6819112557cb69274c109b00c018d79b1485a91798bc5171f48cd29f1fbd5c')
-
-build() {
-mkdir -p "${srcdir}"/${pkgname}-${pkgver}/builddir
-cd "${srcdir}"/${pkgname}-${pkgver}/builddir
-
-meson --prefix=/usr \
-  --buildtype=plain \
-..
-
-samu
-}
-
-package() {
-cd "${srcdir}"/${pkgname}-${pkgver}/builddir
-
-DESTDIR="${pkgdir}" samu install
-
-# https://github.com/linuxmint/Cinnamon/pull/7382#issuecomment-374894901
-# /usr/bin/cinnamon-control-center is not meant for users, it is a 
development troubleshooting tool.
-# Just install the shell libs/headers.
-rm "${pkgdir}"/usr/bin/cinnamon-control-center
-rm "${pkgdir}"/usr/share/cinnamon-control-center/ui/shell.ui
-}

Copied: cinnamon-control-center/repos/community-x86_64/PKGBUILD (from rev 
955950, cinnamon-control-center/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-04 22:11:18 UTC (rev 955951)
@@ -0,0 +1,46 @@
+# Maintainer: Eli Schwartz 
+# Contributor: Alexandre Filgueira 
+# Based on gnome-control-center:
+# Jan Alexander Steffens (heftig) 
+# Jan de Groot 
+
+pkgname=cinnamon-control-center
+pkgver=5.0.1
+pkgrel=1
+pkgdesc="The Control Center for Cinnamon"
+arch=('x86_64')
+url="https://github.com/linuxmint/${pkgname};
+license=('GPL')
+depends=('cinnamon-settings-daemon' 'cinnamon-menus' 'colord'
+ 'libgnomekbd' 'libmm-glib' 'nm-connection-editor')
+optdepends=('cinnamon-translations: i18n'
+'gnome-color-manager: for color management tasks'
+'gnome-online-accounts: for the online accounts module')
+makedepends=('meson' 'samurai' 'gnome-online-accounts')
+options=('!emptydirs')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha256sums=('170ac90d3a11ac10258b1fff20f4ee792078520e8eb4e18e13a2c4caf8de3ede')
+b2sums=('f9c88aa3ad585f9fd867055b247d3cbc7442fb1b4e205dbac7de889e8dd6faa3c2cdee9a6f98b877054ace9d3ff5694e469df3ca35481bd768e019bf6c611541')
+
+build() {
+mkdir -p "${srcdir}"/${pkgname}-${pkgver}/builddir
+cd "${srcdir}"/${pkgname}-${pkgver}/builddir
+
+meson --prefix=/usr \
+  --buildtype=plain \
+..
+
+samu
+}
+
+package() {
+cd "${srcdir}"/${pkgname}-${pkgver}/builddir
+
+DESTDIR="${pkgdir}" samu install
+
+# https://github.com/linuxmint/Cinnamon/pull/7382#issuecomment-374894901
+# /usr/bin/cinnamon-control-center is not meant for users, it is a 
development troubleshooting tool.
+# Just install the shell libs/headers.
+rm "${pkgdir}"/usr/bin/cinnamon-control-center
+rm "${pkgdir}"/usr/share/cinnamon-control-center/ui/shell.ui
+}


[arch-commits] Commit in cinnamon-control-center/trunk (PKGBUILD)

2021-06-04 Thread Eli Schwartz via arch-commits
Date: Friday, June 4, 2021 @ 22:11:03
  Author: eschwartz
Revision: 955950

upgpkg: cinnamon-control-center 5.0.1-1: upstream release

Modified:
  cinnamon-control-center/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-04 21:31:45 UTC (rev 955949)
+++ PKGBUILD2021-06-04 22:11:03 UTC (rev 955950)
@@ -5,7 +5,7 @@
 # Jan de Groot 
 
 pkgname=cinnamon-control-center
-pkgver=5.0.0
+pkgver=5.0.1
 pkgrel=1
 pkgdesc="The Control Center for Cinnamon"
 arch=('x86_64')
@@ -19,8 +19,8 @@
 makedepends=('meson' 'samurai' 'gnome-online-accounts')
 options=('!emptydirs')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha256sums=('26b6984fd66f4fe8445e10b4f975e4162bc06197a0d438708daf4dce57d06a64')
-b2sums=('ab968760770de90b22c7848c6d98574a647697bef2f742f0e93a1603734a1d295f6819112557cb69274c109b00c018d79b1485a91798bc5171f48cd29f1fbd5c')
+sha256sums=('170ac90d3a11ac10258b1fff20f4ee792078520e8eb4e18e13a2c4caf8de3ede')
+b2sums=('f9c88aa3ad585f9fd867055b247d3cbc7442fb1b4e205dbac7de889e8dd6faa3c2cdee9a6f98b877054ace9d3ff5694e469df3ca35481bd768e019bf6c611541')
 
 build() {
 mkdir -p "${srcdir}"/${pkgname}-${pkgver}/builddir


[arch-commits] Commit in cinnamon-screensaver/repos/community-x86_64 (2 files)

2021-06-04 Thread Eli Schwartz via arch-commits
Date: Friday, June 4, 2021 @ 21:31:45
  Author: eschwartz
Revision: 955949

archrelease: copy trunk to community-x86_64

Added:
  cinnamon-screensaver/repos/community-x86_64/PKGBUILD
(from rev 955948, cinnamon-screensaver/trunk/PKGBUILD)
Deleted:
  cinnamon-screensaver/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-04 21:31:27 UTC (rev 955948)
+++ PKGBUILD2021-06-04 21:31:45 UTC (rev 955949)
@@ -1,38 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Contributor: Alexandre Filgueira 
-# Based on gnome-screensaver package:
-# Jan Alexander Steffens (heftig) 
-# Jan de Groot 
-
-pkgname=cinnamon-screensaver
-pkgver=5.0.1
-pkgrel=1
-pkgdesc="Screensaver designed to integrate well with the Cinnamon desktop."
-arch=('x86_64')
-url="https://github.com/linuxmint/${pkgname};
-license=('GPL')
-depends=('accountsservice' 'cinnamon-desktop' 'libgnomekbd'
- 'python-cairo' 'python-gobject' 'python-setproctitle' 'python-xapp' 
'xapp')
-optdepends=('cinnamon-translations: i18n')
-makedepends=('gobject-introspection' 'meson' 'samurai')
-backup=('etc/pam.d/cinnamon-screensaver')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha512sums=('87172a2492cef6c0058c351f99dd6d775dd29b01d4c44b7d025933d18b01c62b79a6b866efefc0eecf076a22c3b52eda4c0c254b994fac112e569dec5d3b0416')
-b2sums=('1188487c0cc06c5a37ecf0b967b18aba4d1c521048ab73160764ec4a960461059df4677654692130d6e965a4178c0e0429091ed3e249a81f692fcabe1d44030e')
-
-build() {
-mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build
-cd "${srcdir}"/${pkgname}-${pkgver}/build
-
-meson --prefix=/usr \
-  --libexecdir=lib/cinnamon-screensaver \
-  --buildtype=plain \
-  ..
-samu
-}
-
-package() {
-cd "${srcdir}"/${pkgname}-${pkgver}/build
-
-DESTDIR="${pkgdir}" samu install
-}

Copied: cinnamon-screensaver/repos/community-x86_64/PKGBUILD (from rev 955948, 
cinnamon-screensaver/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-04 21:31:45 UTC (rev 955949)
@@ -0,0 +1,38 @@
+# Maintainer: Eli Schwartz 
+# Contributor: Alexandre Filgueira 
+# Based on gnome-screensaver package:
+# Jan Alexander Steffens (heftig) 
+# Jan de Groot 
+
+pkgname=cinnamon-screensaver
+pkgver=5.0.2
+pkgrel=1
+pkgdesc="Screensaver designed to integrate well with the Cinnamon desktop."
+arch=('x86_64')
+url="https://github.com/linuxmint/${pkgname};
+license=('GPL')
+depends=('accountsservice' 'cinnamon-desktop' 'libgnomekbd'
+ 'python-cairo' 'python-gobject' 'python-setproctitle' 'python-xapp' 
'xapp')
+optdepends=('cinnamon-translations: i18n')
+makedepends=('gobject-introspection' 'meson' 'samurai')
+backup=('etc/pam.d/cinnamon-screensaver')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha512sums=('ac7c6a57307e8ba41c34337b9c0bb57efa7ab49fcb5cc6aa8eb81cd839de3c17c852e4677c35eac022638fe50966871c245510319b8fa64ed48ba56ed818e681')
+b2sums=('cb09de296deed91b2669c008d1d266ae3a77ed3eb894d19fd1586043a568c9c48babc7518f3c0ab4c42384ee8cfd5705e99b9291b0887fc47546ffaa3893a615')
+
+build() {
+mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build
+cd "${srcdir}"/${pkgname}-${pkgver}/build
+
+meson --prefix=/usr \
+  --libexecdir=lib/cinnamon-screensaver \
+  --buildtype=plain \
+  ..
+samu
+}
+
+package() {
+cd "${srcdir}"/${pkgname}-${pkgver}/build
+
+DESTDIR="${pkgdir}" samu install
+}


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

2021-06-04 Thread Eli Schwartz via arch-commits
Date: Friday, June 4, 2021 @ 21:31:27
  Author: eschwartz
Revision: 955948

upgpkg: cinnamon-screensaver 5.0.2-1: upstream release

Modified:
  cinnamon-screensaver/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-04 21:22:48 UTC (rev 955947)
+++ PKGBUILD2021-06-04 21:31:27 UTC (rev 955948)
@@ -5,7 +5,7 @@
 # Jan de Groot 
 
 pkgname=cinnamon-screensaver
-pkgver=5.0.1
+pkgver=5.0.2
 pkgrel=1
 pkgdesc="Screensaver designed to integrate well with the Cinnamon desktop."
 arch=('x86_64')
@@ -17,8 +17,8 @@
 makedepends=('gobject-introspection' 'meson' 'samurai')
 backup=('etc/pam.d/cinnamon-screensaver')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha512sums=('87172a2492cef6c0058c351f99dd6d775dd29b01d4c44b7d025933d18b01c62b79a6b866efefc0eecf076a22c3b52eda4c0c254b994fac112e569dec5d3b0416')
-b2sums=('1188487c0cc06c5a37ecf0b967b18aba4d1c521048ab73160764ec4a960461059df4677654692130d6e965a4178c0e0429091ed3e249a81f692fcabe1d44030e')
+sha512sums=('ac7c6a57307e8ba41c34337b9c0bb57efa7ab49fcb5cc6aa8eb81cd839de3c17c852e4677c35eac022638fe50966871c245510319b8fa64ed48ba56ed818e681')
+b2sums=('cb09de296deed91b2669c008d1d266ae3a77ed3eb894d19fd1586043a568c9c48babc7518f3c0ab4c42384ee8cfd5705e99b9291b0887fc47546ffaa3893a615')
 
 build() {
 mkdir -p "${srcdir}"/${pkgname}-${pkgver}/build


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

2021-06-04 Thread Eli Schwartz via arch-commits
Date: Friday, June 4, 2021 @ 21:22:48
  Author: eschwartz
Revision: 955947

archrelease: copy trunk to community-x86_64

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

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

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

Copied: calibre/repos/community-x86_64/PKGBUILD (from rev 955946, 
calibre/trunk/PKGBUILD)

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

2021-06-04 Thread Eli Schwartz via arch-commits
Date: Friday, June 4, 2021 @ 21:22:31
  Author: eschwartz
Revision: 955946

upgpkg: calibre 5.20.0-1: upstream release

Modified:
  calibre/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-04 21:18:08 UTC (rev 955945)
+++ PKGBUILD2021-06-04 21:22:31 UTC (rev 955946)
@@ -8,7 +8,7 @@
 
 pkgbase=calibre
 pkgname=calibre
-pkgver=5.19.0
+pkgver=5.20.0
 pkgrel=1
 pkgdesc="Ebook management application"
 arch=('x86_64')
@@ -29,9 +29,9 @@
 replaces=('calibre-common' 'calibre-python3')
 source=("https://download.calibre-ebook.com/${pkgver}/calibre-${pkgver}.tar.xz;
 "https://calibre-ebook.com/signatures/${pkgbase}-${pkgver}.tar.xz.sig;)
-sha256sums=('98a20fb37bb85a61db7c500cc879f92944527c74480898887028fe38239af23d'
+sha256sums=('b692a2fbc8333b4ea4665e43969c97e2fb7417231ae88a26683e9770065e545a'
 'SKIP')
-b2sums=('baadd6eea7ac633358c7aad218fe38c534d2d799048e148568a071e31facf377a7e507dbb99576c855896970855d016d0178c04c1428604a5236a581ec1c89ca'
+b2sums=('5b825eaac957c959383e3556dce22fa412b6cc32e4edf14d30c0782f60cf07005fe39b83c9bd79734542e572b6417086960f1e697447b931ad43a13f4aa5c828'
 'SKIP')
 validpgpkeys=('3CE1780F78DD88DF45194FD706BC317B515ACE7C') # Kovid Goyal (New 
longer key) 
 


[arch-commits] Commit in fcitx5-pinyin-zhwiki/repos (2 files)

2021-06-04 Thread Felix Yan via arch-commits
Date: Friday, June 4, 2021 @ 21:18:08
  Author: felixonmars
Revision: 955945

archrelease: copy trunk to community-any

Added:
  fcitx5-pinyin-zhwiki/repos/community-any/
  fcitx5-pinyin-zhwiki/repos/community-any/PKGBUILD
(from rev 955944, fcitx5-pinyin-zhwiki/trunk/PKGBUILD)

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

Copied: fcitx5-pinyin-zhwiki/repos/community-any/PKGBUILD (from rev 955944, 
fcitx5-pinyin-zhwiki/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2021-06-04 21:18:08 UTC (rev 955945)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+
+pkgbase=fcitx5-pinyin-zhwiki
+pkgname=(fcitx5-pinyin-zhwiki rime-pinyin-zhwiki)
+_converterver=0.2.3
+_zhwikiver=20210601
+_webslangver=20210605
+pkgver=$_converterver.$_webslangver
+pkgrel=1
+epoch=1
+pkgdesc="Fcitx 5 Pinyin Dictionary from zh.wikipedia.org"
+arch=('any')
+url="https://github.com/felixonmars/fcitx5-pinyin-zhwiki;
+license=('CCPL:by-sa' 'custom:GFDL')
+makedepends=('libime' 'opencc' 'pypinyin')
+source=(https://github.com/felixonmars/fcitx5-pinyin-zhwiki/archive/$_converterver/$pkgbase-$_converterver.tar.gz
+
https://github.com/felixonmars/fcitx5-pinyin-zhwiki/releases/download/$_converterver/web-slang-$_webslangver.source
+
https://dumps.wikimedia.org/zhwiki/$_zhwikiver/zhwiki-$_zhwikiver-all-titles-in-ns0.gz
+https://www.gnu.org/licenses/fdl-1.3.txt)
+sha512sums=('b09e4e29e4c3e5e9007f28d56e2ac07663ad56eb1e4004dad647de7f4b41522054a65c40f952bb3752ea6015b3b1adc30f95922749cd5653ea60b9d151dd4013'
+
'e49d318b36ef0f4d3466feccb3b736ae2e57074d6199339812aa707998fc117fbce4bf88eb348140122520ad56ded1f18e760267d5f2a5c1f774450e1dfb8ed3'
+
'ad873c977659e321e2cc714a0c2f74877ba3bd970ce14bfcb00907f3b577cc884725248ce5c568187c57a76e676b5b0786e2ddb568a321f170ba517d873f9182'
+
'bea1788b2bdc84f470e459114b871cf4ee991718964a63e18adde65116806d7676484cb30857cf74dece5eef5f96a015ee4a21900e019623e5d3484868b28b7f')
+
+_make="make -L VERSION=$_zhwikiver WEB_SLANG_VERSION=$_webslangver"
+
+prepare() {
+  cd $pkgbase-$_converterver
+  # Workaround pacman decompression
+  touch zhwiki-$_zhwikiver-all-titles-in-ns0.gz
+  ln -s ../zhwiki-$_zhwikiver-all-titles-in-ns0
+  ln -s ../web-slang-$_webslangver.source
+}
+
+build() {
+  cd $pkgbase-$_converterver
+  $_make zhwiki.dict zhwiki.dict.yaml
+}
+
+package_fcitx5-pinyin-zhwiki() {
+  cd $pkgbase-$_converterver
+  $_make DESTDIR="$pkgdir" install
+  install -Dm644 ../fdl-1.3.txt -t "$pkgdir"/usr/share/licenses/$pkgname/
+}
+
+package_rime-pinyin-zhwiki() {
+  cd $pkgbase-$_converterver
+  $_make DESTDIR="$pkgdir" install_rime_dict
+  install -Dm644 ../fdl-1.3.txt -t "$pkgdir"/usr/share/licenses/$pkgname/
+}


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

2021-06-04 Thread Felix Yan via arch-commits
Date: Friday, June 4, 2021 @ 21:17:56
  Author: felixonmars
Revision: 955944

upgpkg: fcitx5-pinyin-zhwiki 1:0.2.3.20210605-1

Added:
  fcitx5-pinyin-zhwiki/trunk/PKGBUILD

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

Added: PKGBUILD
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-04 21:17:56 UTC (rev 955944)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+
+pkgbase=fcitx5-pinyin-zhwiki
+pkgname=(fcitx5-pinyin-zhwiki rime-pinyin-zhwiki)
+_converterver=0.2.3
+_zhwikiver=20210601
+_webslangver=20210605
+pkgver=$_converterver.$_webslangver
+pkgrel=1
+epoch=1
+pkgdesc="Fcitx 5 Pinyin Dictionary from zh.wikipedia.org"
+arch=('any')
+url="https://github.com/felixonmars/fcitx5-pinyin-zhwiki;
+license=('CCPL:by-sa' 'custom:GFDL')
+makedepends=('libime' 'opencc' 'pypinyin')
+source=(https://github.com/felixonmars/fcitx5-pinyin-zhwiki/archive/$_converterver/$pkgbase-$_converterver.tar.gz
+
https://github.com/felixonmars/fcitx5-pinyin-zhwiki/releases/download/$_converterver/web-slang-$_webslangver.source
+
https://dumps.wikimedia.org/zhwiki/$_zhwikiver/zhwiki-$_zhwikiver-all-titles-in-ns0.gz
+https://www.gnu.org/licenses/fdl-1.3.txt)
+sha512sums=('b09e4e29e4c3e5e9007f28d56e2ac07663ad56eb1e4004dad647de7f4b41522054a65c40f952bb3752ea6015b3b1adc30f95922749cd5653ea60b9d151dd4013'
+
'e49d318b36ef0f4d3466feccb3b736ae2e57074d6199339812aa707998fc117fbce4bf88eb348140122520ad56ded1f18e760267d5f2a5c1f774450e1dfb8ed3'
+
'ad873c977659e321e2cc714a0c2f74877ba3bd970ce14bfcb00907f3b577cc884725248ce5c568187c57a76e676b5b0786e2ddb568a321f170ba517d873f9182'
+
'bea1788b2bdc84f470e459114b871cf4ee991718964a63e18adde65116806d7676484cb30857cf74dece5eef5f96a015ee4a21900e019623e5d3484868b28b7f')
+
+_make="make -L VERSION=$_zhwikiver WEB_SLANG_VERSION=$_webslangver"
+
+prepare() {
+  cd $pkgbase-$_converterver
+  # Workaround pacman decompression
+  touch zhwiki-$_zhwikiver-all-titles-in-ns0.gz
+  ln -s ../zhwiki-$_zhwikiver-all-titles-in-ns0
+  ln -s ../web-slang-$_webslangver.source
+}
+
+build() {
+  cd $pkgbase-$_converterver
+  $_make zhwiki.dict zhwiki.dict.yaml
+}
+
+package_fcitx5-pinyin-zhwiki() {
+  cd $pkgbase-$_converterver
+  $_make DESTDIR="$pkgdir" install
+  install -Dm644 ../fdl-1.3.txt -t "$pkgdir"/usr/share/licenses/$pkgname/
+}
+
+package_rime-pinyin-zhwiki() {
+  cd $pkgbase-$_converterver
+  $_make DESTDIR="$pkgdir" install_rime_dict
+  install -Dm644 ../fdl-1.3.txt -t "$pkgdir"/usr/share/licenses/$pkgname/
+}


[arch-commits] Commit in (3 files)

2021-06-04 Thread Felix Yan via arch-commits
Date: Friday, June 4, 2021 @ 21:17:49
  Author: felixonmars
Revision: 955943

addpkg: fcitx5-pinyin-zhwiki 1:0.2.3.20210605-1

Added:
  fcitx5-pinyin-zhwiki/
  fcitx5-pinyin-zhwiki/repos/
  fcitx5-pinyin-zhwiki/trunk/


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

2021-06-04 Thread Felix Yan via arch-commits
Date: Friday, June 4, 2021 @ 20:49:51
  Author: felixonmars
Revision: 955942

archrelease: copy trunk to community-any

Added:
  pypinyin/repos/community-any/
  pypinyin/repos/community-any/PKGBUILD
(from rev 955941, pypinyin/trunk/PKGBUILD)

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

Copied: pypinyin/repos/community-any/PKGBUILD (from rev 955941, 
pypinyin/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2021-06-04 20:49:51 UTC (rev 955942)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Štěpán Němec 
+
+pkgname=pypinyin
+pkgver=0.41.0
+pkgrel=1
+pkgdesc='Chinese characters transliteration module and tool'
+arch=('any')
+url='https://github.com/mozillazg/python-pinyin'
+license=('MIT')
+depends=('python')
+makedepends=('python-setuptools' 'phrase-pinyin-data' 'pinyin-data')
+checkdepends=('python-pytest-cov')
+source=("https://github.com/mozillazg/python-pinyin/archive/v$pkgver/python-pinyin-$pkgver.tar.gz;)
+sha256sums=('a72e889fb7a8a9c15aff7f1751d39ea59e454f86bfbaeecb3fecbb1c60bf8c35')
+
+prepare() {
+  cd python-pinyin-$pkgver
+  ln -s /usr/share/pinyin-data/pinyin.txt pinyin-data/
+  ln -s /usr/share/phrase-pinyin-data/pinyin.txt phrase-pinyin-data/
+}
+
+build() {
+  cd python-pinyin-$pkgver
+  make gen_data
+  python setup.py build
+}
+
+check() {
+  cd python-pinyin-$pkgver
+  pytest pypinyin tests
+}
+
+package() {
+  cd python-pinyin-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE.txt -t "$pkgdir"/usr/share/licenses/$pkgname/
+}


[arch-commits] Commit in (4 files)

2021-06-04 Thread Felix Yan via arch-commits
Date: Friday, June 4, 2021 @ 20:49:40
  Author: felixonmars
Revision: 955941

addpkg: pypinyin 0.41.0-1

Added:
  pypinyin/
  pypinyin/repos/
  pypinyin/trunk/
  pypinyin/trunk/PKGBUILD

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

Added: pypinyin/trunk/PKGBUILD
===
--- pypinyin/trunk/PKGBUILD (rev 0)
+++ pypinyin/trunk/PKGBUILD 2021-06-04 20:49:40 UTC (rev 955941)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Štěpán Němec 
+
+pkgname=pypinyin
+pkgver=0.41.0
+pkgrel=1
+pkgdesc='Chinese characters transliteration module and tool'
+arch=('any')
+url='https://github.com/mozillazg/python-pinyin'
+license=('MIT')
+depends=('python')
+makedepends=('python-setuptools' 'phrase-pinyin-data' 'pinyin-data')
+checkdepends=('python-pytest-cov')
+source=("https://github.com/mozillazg/python-pinyin/archive/v$pkgver/python-pinyin-$pkgver.tar.gz;)
+sha256sums=('a72e889fb7a8a9c15aff7f1751d39ea59e454f86bfbaeecb3fecbb1c60bf8c35')
+
+prepare() {
+  cd python-pinyin-$pkgver
+  ln -s /usr/share/pinyin-data/pinyin.txt pinyin-data/
+  ln -s /usr/share/phrase-pinyin-data/pinyin.txt phrase-pinyin-data/
+}
+
+build() {
+  cd python-pinyin-$pkgver
+  make gen_data
+  python setup.py build
+}
+
+check() {
+  cd python-pinyin-$pkgver
+  pytest pypinyin tests
+}
+
+package() {
+  cd python-pinyin-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE.txt -t "$pkgdir"/usr/share/licenses/$pkgname/
+}


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

2021-06-04 Thread Felix Yan via arch-commits
Date: Friday, June 4, 2021 @ 20:45:07
  Author: felixonmars
Revision: 955940

archrelease: copy trunk to community-any

Added:
  pinyin-data/repos/community-any/
  pinyin-data/repos/community-any/PKGBUILD
(from rev 955939, pinyin-data/trunk/PKGBUILD)

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

Copied: pinyin-data/repos/community-any/PKGBUILD (from rev 955939, 
pinyin-data/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2021-06-04 20:45:07 UTC (rev 955940)
@@ -0,0 +1,18 @@
+# Maintainer: Felix Yan 
+
+pkgname=pinyin-data
+pkgver=0.10.2
+pkgrel=1
+pkgdesc="Pinyin Data for Hanzi"
+arch=('any')
+license=('MIT')
+url="https://github.com/mozillazg/pinyin-data;
+depends=()
+source=("https://github.com/mozillazg/pinyin-data/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('2f0cb59d4d1261a4a37964b16b73081837027b6966af8a8d51d740401ef41657835c8241e4346ee0642b699797d1c398d2d5ceae6ea0559b157ccdc172b97dd2')
+
+package() {
+  cd $pkgname-$pkgver
+  install -Dm644 pinyin.txt -t "$pkgdir"/usr/share/$pkgname/
+  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+}


[arch-commits] Commit in (4 files)

2021-06-04 Thread Felix Yan via arch-commits
Date: Friday, June 4, 2021 @ 20:43:44
  Author: felixonmars
Revision: 955939

addpkg: pinyin-data 0.10.2-1

Added:
  pinyin-data/
  pinyin-data/repos/
  pinyin-data/trunk/
  pinyin-data/trunk/PKGBUILD

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

Added: pinyin-data/trunk/PKGBUILD
===
--- pinyin-data/trunk/PKGBUILD  (rev 0)
+++ pinyin-data/trunk/PKGBUILD  2021-06-04 20:43:44 UTC (rev 955939)
@@ -0,0 +1,18 @@
+# Maintainer: Felix Yan 
+
+pkgname=pinyin-data
+pkgver=0.10.2
+pkgrel=1
+pkgdesc="Pinyin Data for Hanzi"
+arch=('any')
+license=('MIT')
+url="https://github.com/mozillazg/pinyin-data;
+depends=()
+source=("https://github.com/mozillazg/pinyin-data/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('2f0cb59d4d1261a4a37964b16b73081837027b6966af8a8d51d740401ef41657835c8241e4346ee0642b699797d1c398d2d5ceae6ea0559b157ccdc172b97dd2')
+
+package() {
+  cd $pkgname-$pkgver
+  install -Dm644 pinyin.txt -t "$pkgdir"/usr/share/$pkgname/
+  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+}


[arch-commits] Commit in phrase-pinyin-data/repos (2 files)

2021-06-04 Thread Felix Yan via arch-commits
Date: Friday, June 4, 2021 @ 20:41:07
  Author: felixonmars
Revision: 955938

archrelease: copy trunk to community-any

Added:
  phrase-pinyin-data/repos/community-any/
  phrase-pinyin-data/repos/community-any/PKGBUILD
(from rev 955937, phrase-pinyin-data/trunk/PKGBUILD)

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

Copied: phrase-pinyin-data/repos/community-any/PKGBUILD (from rev 955937, 
phrase-pinyin-data/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2021-06-04 20:41:07 UTC (rev 955938)
@@ -0,0 +1,18 @@
+# Maintainer: Felix Yan 
+
+pkgname=phrase-pinyin-data
+pkgver=0.10.5
+pkgrel=1
+pkgdesc="Pinyin Data for Phrases"
+arch=('any')
+license=('MIT')
+url="https://github.com/mozillazg/phrase-pinyin-data;
+depends=()
+source=("https://github.com/mozillazg/phrase-pinyin-data/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('c7ac12dea3f43aff0428490c08acad94bce06a5fd354746eaefb580849aee3b75c9ec988ef5fd21782c6138da310ea7d1c52f1a49f79a7a0e0120794e06593c5')
+
+package() {
+  cd $pkgname-$pkgver
+  install -Dm644 pinyin.txt -t "$pkgdir"/usr/share/$pkgname/
+  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+}


[arch-commits] Commit in (4 files)

2021-06-04 Thread Felix Yan via arch-commits
Date: Friday, June 4, 2021 @ 20:40:55
  Author: felixonmars
Revision: 955937

addpkg: phrase-pinyin-data 0.10.5-1

Added:
  phrase-pinyin-data/
  phrase-pinyin-data/repos/
  phrase-pinyin-data/trunk/
  phrase-pinyin-data/trunk/PKGBUILD

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

Added: phrase-pinyin-data/trunk/PKGBUILD
===
--- phrase-pinyin-data/trunk/PKGBUILD   (rev 0)
+++ phrase-pinyin-data/trunk/PKGBUILD   2021-06-04 20:40:55 UTC (rev 955937)
@@ -0,0 +1,18 @@
+# Maintainer: Felix Yan 
+
+pkgname=phrase-pinyin-data
+pkgver=0.10.5
+pkgrel=1
+pkgdesc="Pinyin Data for Phrases"
+arch=('any')
+license=('MIT')
+url="https://github.com/mozillazg/phrase-pinyin-data;
+depends=()
+source=("https://github.com/mozillazg/phrase-pinyin-data/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('c7ac12dea3f43aff0428490c08acad94bce06a5fd354746eaefb580849aee3b75c9ec988ef5fd21782c6138da310ea7d1c52f1a49f79a7a0e0120794e06593c5')
+
+package() {
+  cd $pkgname-$pkgver
+  install -Dm644 pinyin.txt -t "$pkgdir"/usr/share/$pkgname/
+  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+}


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

2021-06-04 Thread Balló György via arch-commits
Date: Friday, June 4, 2021 @ 20:01:51
  Author: bgyorgy
Revision: 955936

Minor changes

Modified:
  marker/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-04 19:55:28 UTC (rev 955935)
+++ PKGBUILD2021-06-04 20:01:51 UTC (rev 955936)
@@ -5,22 +5,22 @@
 pkgver=2020.04.04.2
 pkgrel=3
 pkgdesc='Simple yet robust Markdown editor made with GTK'
-arch=(x86_64)
+arch=('x86_64')
 url='https://fabiocolacio.github.io/Marker/'
-license=(GPL3)
-depends=(gtksourceview3 gtkspell3 webkit2gtk)
-makedepends=(git meson)
+license=('GPL3')
+depends=('gtksourceview3' 'gtkspell3' 'webkit2gtk')
+makedepends=('git' 'meson')
 optdepends=('mathjax2: alternative backend for rendering formulas'
 'pandoc: export to RTF, ODT, DOCX')
 _commit=90f2667611a5017840dced736fd1ea801930a45f  # tags/2020.04.04.2^0
-source=(git+https://github.com/fabiocolacio/Marker.git#commit=$_commit
-git+https://github.com/Mandarancio/scidown.git
-git+https://github.com/Mandarancio/charter.git
-git+https://github.com/codeplea/tinyexpr.git
-mathjax.patch
-elf_files_in_lib.patch
-pdf-export.patch
-optional-pandoc.patch)
+source=("git+https://github.com/fabiocolacio/Marker.git#commit=$_commit;
+'git+https://github.com/Mandarancio/scidown.git'
+'git+https://github.com/Mandarancio/charter.git'
+'git+https://github.com/codeplea/tinyexpr.git'
+'mathjax.patch'
+'elf_files_in_lib.patch'
+'pdf-export.patch'
+'optional-pandoc.patch')
 sha256sums=('SKIP'
 'SKIP'
 'SKIP'
@@ -68,7 +68,7 @@
 
 build() {
   arch-meson Marker build
-  ninja -C build
+  meson compile -C build
 }
 
 package() {


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

2021-06-04 Thread Balló György via arch-commits
Date: Friday, June 4, 2021 @ 19:55:28
  Author: bgyorgy
Revision: 955935

archrelease: copy trunk to community-x86_64

Added:
  ghostwriter/repos/community-x86_64/PKGBUILD
(from rev 955934, ghostwriter/trunk/PKGBUILD)
Deleted:
  ghostwriter/repos/community-x86_64/PKGBUILD
  ghostwriter/repos/community-x86_64/qt-5.15.patch

---+
 PKGBUILD  |   83 ++--
 qt-5.15.patch |   11 ---
 2 files changed, 39 insertions(+), 55 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-04 19:55:22 UTC (rev 955934)
+++ PKGBUILD2021-06-04 19:55:28 UTC (rev 955935)
@@ -1,44 +0,0 @@
-# Maintainer: Balló György 
-# Contributor: Jakob Gahde 
-# Contributor: Bastien "neitsab" Traverse 
-# Contributor: Icaro Perseo 
-# Contributor: Philipp 'TamCore' B. 
-
-pkgname=ghostwriter
-pkgver=1.8.1
-pkgrel=4
-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'
-'cmark-gfm: processing and rendering GitHub Flavored Markdown'
-'discount: processing and rendering Markdown'
-'mathjax: formula rendering in live preview'
-'pandoc: Pandoc supported Markdown flavors and export to various 
formats')
-source=("https://github.com/wereturtle/ghostwriter/archive/v$pkgver/$pkgname-$pkgver.tar.gz;
-"qt-5.15.patch")
-sha256sums=('2b73fed6a95ebcd45333fe4b12acb491eb4171fca8a11eea1af9bbdc73ed4b69'
-'f97077cb0137f034c26f30996c6bc6b6835eeeaa55f96b57155434562cb1830c')
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch -Np1 -i ../qt-5.15.patch
-  sed -i 's/typeof window.MathJax.typeset !==/typeof window.MathJax !==/' 
resources/gw.js
-  sed -i 
's|https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js|file:///usr/share/mathjax/tex-mml-chtml.js|'
 src/HtmlPreview.cpp
-  sed -i 's|DATADIR/appdata|DATADIR/metainfo|
-  /INSTALLS +=/ s/ pixmap//' ghostwriter.pro
-}
-
-build() {
-  cd $pkgname-$pkgver
-  qmake PREFIX=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: ghostwriter/repos/community-x86_64/PKGBUILD (from rev 955934, 
ghostwriter/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-04 19:55:28 UTC (rev 955935)
@@ -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.0.1
+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=('c0d3130a4ee97dc4e74c6b0723f1125fdf75e3e52326c9c6c7dcf7c1a6d1ea36')
+
+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
+}

Deleted: qt-5.15.patch
===
--- qt-5.15.patch   2021-06-04 19:55:22 UTC (rev 955934)
+++ qt-5.15.patch   2021-06-04 19:55:28 UTC (rev 955935)
@@ -1,11 +0,0 @@
-diff -aur package.pristine/src/MarkdownEditor.cpp 
package.new/src/MarkdownEditor.cpp
 package.pristine/src/MarkdownEditor.cpp2020-02-23 01:49:46.0 
+0100
-+++ package.new/src/MarkdownEditor.cpp 2020-06-09 10:45:40.380449821 +0200
-@@ -34,6 +34,7 @@
- #include 
- #include 
- #include 
-+#include 
- #include 
- #include 
- 


[arch-commits] Commit in ghostwriter/trunk (PKGBUILD qt-5.15.patch)

2021-06-04 Thread Balló György via arch-commits
Date: Friday, June 4, 2021 @ 19:55:22
  Author: bgyorgy
Revision: 955934

upgpkg: ghostwriter 2.0.1-1: Update to version 2.0.1

Modified:
  ghostwriter/trunk/PKGBUILD
Deleted:
  ghostwriter/trunk/qt-5.15.patch

---+
 PKGBUILD  |   33 ++---
 qt-5.15.patch |   11 ---
 2 files changed, 14 insertions(+), 30 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-06-04 19:51:06 UTC (rev 955933)
+++ PKGBUILD2021-06-04 19:55:22 UTC (rev 955934)
@@ -5,31 +5,26 @@
 # Contributor: Philipp 'TamCore' B. 
 
 pkgname=ghostwriter
-pkgver=1.8.1
-pkgrel=4
-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)
+pkgver=2.0.1
+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'
-'cmark-gfm: processing and rendering GitHub Flavored Markdown'
-'discount: processing and rendering Markdown'
 'mathjax: formula rendering in live preview'
 'pandoc: Pandoc supported Markdown flavors and export to various 
formats')
-source=("https://github.com/wereturtle/ghostwriter/archive/v$pkgver/$pkgname-$pkgver.tar.gz;
-"qt-5.15.patch")
-sha256sums=('2b73fed6a95ebcd45333fe4b12acb491eb4171fca8a11eea1af9bbdc73ed4b69'
-'f97077cb0137f034c26f30996c6bc6b6835eeeaa55f96b57155434562cb1830c')
+source=("https://github.com/wereturtle/ghostwriter/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha256sums=('c0d3130a4ee97dc4e74c6b0723f1125fdf75e3e52326c9c6c7dcf7c1a6d1ea36')
 
 prepare() {
   cd $pkgname-$pkgver
-  patch -Np1 -i ../qt-5.15.patch
-  sed -i 's/typeof window.MathJax.typeset !==/typeof window.MathJax !==/' 
resources/gw.js
-  sed -i 
's|https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js|file:///usr/share/mathjax/tex-mml-chtml.js|'
 src/HtmlPreview.cpp
-  sed -i 's|DATADIR/appdata|DATADIR/metainfo|
-  /INSTALLS +=/ s/ pixmap//' ghostwriter.pro
+  # 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() {

Deleted: qt-5.15.patch
===
--- qt-5.15.patch   2021-06-04 19:51:06 UTC (rev 955933)
+++ qt-5.15.patch   2021-06-04 19:55:22 UTC (rev 955934)
@@ -1,11 +0,0 @@
-diff -aur package.pristine/src/MarkdownEditor.cpp 
package.new/src/MarkdownEditor.cpp
 package.pristine/src/MarkdownEditor.cpp2020-02-23 01:49:46.0 
+0100
-+++ package.new/src/MarkdownEditor.cpp 2020-06-09 10:45:40.380449821 +0200
-@@ -34,6 +34,7 @@
- #include 
- #include 
- #include 
-+#include 
- #include 
- #include 
- 


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

2021-06-04 Thread Felix Yan via arch-commits
Date: Friday, June 4, 2021 @ 19:51:06
  Author: felixonmars
Revision: 955933

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-04 19:50:40 UTC (rev 955932)
+++ PKGBUILD2021-06-04 19:51:06 UTC (rev 955933)
@@ -1,53 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-hypothesis
-pkgver=6.13.11
-pkgrel=1
-pkgdesc="Advanced Quickcheck style testing library for Python"
-arch=('any')
-license=('MPL')
-url="https://hypothesis.readthedocs.org;
-depends=('python-attrs' 'python-sortedcontainers')
-optdepends=('python-pytz: for datetime and django module'
-'python-faker: for fakefactory and django module'
-'python-django: for django module'
-'python-numpy: for numpy module'
-'python-pytest: for pytest module'
-'python-lark-parser: for lark module'
-'python-libcst: for codemods module')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest' 'flake8' 'python-pytz' 'python-numpy' 
'python-faker'
-  'python-flaky' 'python-django' 'python-mock' 'python-pandas' 
'python-dpcontracts'
-  'python-pytest-xdist' 'python-lark-parser' 'python-pexpect' 
'python-coverage'
-  'python-typing_extensions' 'python-black' 'python-fakeredis' 
'python-libcst')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz;)
-sha512sums=('9cb8ce31a7062ab98db829300c1f68e1e24bf02a39ebf4ffbbf47554741dd0bdb96edd69aa7a360570405ca85b1fd7956eb26c5b9a6898f6f8f6f79177522bf6')
-
-prepare() {
-  mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver
-}
-
-build() {
-  cd hypothesis-$pkgver/hypothesis-python
-  python setup.py build
-}
-
-check() {
-  # tests/numpy/test_lazy_import.py: 
https://github.com/HypothesisWorks/hypothesis/issues/2411
-
-  cd hypothesis-$pkgver/hypothesis-python
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  python examples/example_hypothesis_entrypoint/setup.py install 
--root="$PWD/tmp_install" --optimize=1
-
-  
PYTHONPATH="$PWD/tmp_install/usr/lib/python3.9/site-packages:$PWD/examples/example_hypothesis_entrypoint"
 \
-  PATH="$PWD/tmp_install/usr/bin:$PATH" \
-pytest --ignore tests/numpy/test_lazy_import.py --ignore tmp_install
-}
-
-package() {
-  cd hypothesis-$pkgver/hypothesis-python
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  # It's only present when tests are enabled, so adding -f
-  rm -rf "$pkgdir"/usr/lib/python3.9/site-packages/tests
-}

Copied: python-hypothesis/repos/community-any/PKGBUILD (from rev 955932, 
python-hypothesis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-04 19:51:06 UTC (rev 955933)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-hypothesis
+pkgver=6.13.12
+pkgrel=1
+pkgdesc="Advanced Quickcheck style testing library for Python"
+arch=('any')
+license=('MPL')
+url="https://hypothesis.readthedocs.org;
+depends=('python-attrs' 'python-sortedcontainers')
+optdepends=('python-pytz: for datetime and django module'
+'python-faker: for fakefactory and django module'
+'python-django: for django module'
+'python-numpy: for numpy module'
+'python-pytest: for pytest module'
+'python-lark-parser: for lark module'
+'python-libcst: for codemods module')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest' 'flake8' 'python-pytz' 'python-numpy' 
'python-faker'
+  'python-flaky' 'python-django' 'python-mock' 'python-pandas' 
'python-dpcontracts'
+  'python-pytest-xdist' 'python-lark-parser' 'python-pexpect' 
'python-coverage'
+  'python-typing_extensions' 'python-black' 'python-fakeredis' 
'python-libcst')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz;)
+sha512sums=('e58d9a676b9f6592134f4f4997d7585001c28980697e77f8f3216c5bba65256c15784e7eec5458f58684b61cc5a0d9ef2465748412a601a867a70e5b72fde91d')
+
+prepare() {
+  mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver
+}
+
+build() {
+  cd hypothesis-$pkgver/hypothesis-python
+  python setup.py build
+}
+
+check() {
+  # tests/numpy/test_lazy_import.py: 
https://github.com/HypothesisWorks/hypothesis/issues/2411
+
+  cd hypothesis-$pkgver/hypothesis-python
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  python examples/example_hypothesis_entrypoint/setup.py install 

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

2021-06-04 Thread Felix Yan via arch-commits
Date: Friday, June 4, 2021 @ 19:50:40
  Author: felixonmars
Revision: 955932

upgpkg: python-hypothesis 6.13.12-1

Modified:
  python-hypothesis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-04 19:36:24 UTC (rev 955931)
+++ PKGBUILD2021-06-04 19:50:40 UTC (rev 955932)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-hypothesis
-pkgver=6.13.11
+pkgver=6.13.12
 pkgrel=1
 pkgdesc="Advanced Quickcheck style testing library for Python"
 arch=('any')
@@ -21,7 +21,7 @@
   'python-pytest-xdist' 'python-lark-parser' 'python-pexpect' 
'python-coverage'
   'python-typing_extensions' 'python-black' 'python-fakeredis' 
'python-libcst')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz;)
-sha512sums=('9cb8ce31a7062ab98db829300c1f68e1e24bf02a39ebf4ffbbf47554741dd0bdb96edd69aa7a360570405ca85b1fd7956eb26c5b9a6898f6f8f6f79177522bf6')
+sha512sums=('e58d9a676b9f6592134f4f4997d7585001c28980697e77f8f3216c5bba65256c15784e7eec5458f58684b61cc5a0d9ef2465748412a601a867a70e5b72fde91d')
 
 prepare() {
   mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver


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

2021-06-04 Thread Christian Rebischke via arch-commits
Date: Friday, June 4, 2021 @ 19:36:24
  Author: shibumi
Revision: 955931

archrelease: copy trunk to community-x86_64

Added:
  eksctl/repos/community-x86_64/PKGBUILD
(from rev 955930, eksctl/trunk/PKGBUILD)
Deleted:
  eksctl/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-04 19:36:17 UTC (rev 955930)
+++ PKGBUILD2021-06-04 19:36:24 UTC (rev 955931)
@@ -1,42 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: David Birks 
-# Contributor: Mike Williamson 
-
-pkgname=eksctl
-pkgver=0.48.0
-pkgrel=1
-pkgdesc='Command line tool for creating clusters on Amazon EKS'
-url='https://github.com/weaveworks/eksctl'
-arch=('x86_64')
-license=('Apache')
-depends=('kubectl' 'glibc')
-makedepends=('go')
-source=("${url}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz")
-sha256sums=('655e6b43324d62385d934375fd8456f005ee5124cb84d7efcc177dc49168b489')
-b2sums=('df313e60c942f4c453a8f46e36b8456a4efcd9aab8b31d04559f691ef57569f6e936bd874bfef1ad8c6f3c5701951f6c9c164ad200d6554e881eef49a591f87d')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export GOFLAGS="-buildmode=pie -ldflags=-linkmode=external -trimpath 
-mod=readonly -modcacherw"
-  go build -v \
--ldflags "-linkmode=external -extldflags '${LDFLAGS}' -X 
github.com/weaveworks/eksctl/pkg/version.gitTag=${pkgver}" \
-./cmd/eksctl
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  install -Dm 755 ${pkgname} -t "$pkgdir/usr/bin"
-
-  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-
-  # completions
-  "${pkgdir}/usr/bin/${pkgname}" completion bash | install -Dm 644 /dev/stdin 
"${pkgdir}/usr/share/bash-completion/completions/${pkgname}"
-  "${pkgdir}/usr/bin/${pkgname}" completion zsh | install -Dm 644 /dev/stdin 
"${pkgdir}/usr/share/zsh/site-functions/_${pkgname}"
-  "${pkgdir}/usr/bin/${pkgname}" completion fish | install -Dm 644 /dev/stdin 
"${pkgdir}/usr/share/fish/completions/${pkgname}.fish"
-}
-
-# vim: ts=2 sw=2 et:

Copied: eksctl/repos/community-x86_64/PKGBUILD (from rev 955930, 
eksctl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-04 19:36:24 UTC (rev 955931)
@@ -0,0 +1,42 @@
+# Maintainer: Levente Polyak 
+# Contributor: David Birks 
+# Contributor: Mike Williamson 
+
+pkgname=eksctl
+pkgver=0.52.0
+pkgrel=1
+pkgdesc='Command line tool for creating clusters on Amazon EKS'
+url='https://github.com/weaveworks/eksctl'
+arch=('x86_64')
+license=('Apache')
+depends=('kubectl' 'glibc')
+makedepends=('go')
+source=("${url}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz")
+sha256sums=('786e1668d96c69e3d330202a162a09fe7d2a2a4ca4ef999d5ec760f5000cb5e6')
+b2sums=('7425d027b9212bb4e5aa81978270e50551567c056d395c656a60d34fa6c6c420a0662c846bfd679a79bf01540703ce99a10df63456530d4c0ed33db8a57262f7')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -ldflags=-linkmode=external -trimpath 
-mod=readonly -modcacherw"
+  go build -v \
+-ldflags "-linkmode=external -extldflags '${LDFLAGS}' -X 
github.com/weaveworks/eksctl/pkg/version.gitTag=${pkgver}" \
+./cmd/eksctl
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -Dm 755 ${pkgname} -t "$pkgdir/usr/bin"
+
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+
+  # completions
+  "${pkgdir}/usr/bin/${pkgname}" completion bash | install -Dm 644 /dev/stdin 
"${pkgdir}/usr/share/bash-completion/completions/${pkgname}"
+  "${pkgdir}/usr/bin/${pkgname}" completion zsh | install -Dm 644 /dev/stdin 
"${pkgdir}/usr/share/zsh/site-functions/_${pkgname}"
+  "${pkgdir}/usr/bin/${pkgname}" completion fish | install -Dm 644 /dev/stdin 
"${pkgdir}/usr/share/fish/completions/${pkgname}.fish"
+}
+
+# vim: ts=2 sw=2 et:


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

2021-06-04 Thread Christian Rebischke via arch-commits
Date: Friday, June 4, 2021 @ 19:36:17
  Author: shibumi
Revision: 955930

upgpkg: eksctl 0.52.0-1

Modified:
  eksctl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-04 19:10:15 UTC (rev 955929)
+++ PKGBUILD2021-06-04 19:36:17 UTC (rev 955930)
@@ -3,7 +3,7 @@
 # Contributor: Mike Williamson 
 
 pkgname=eksctl
-pkgver=0.48.0
+pkgver=0.52.0
 pkgrel=1
 pkgdesc='Command line tool for creating clusters on Amazon EKS'
 url='https://github.com/weaveworks/eksctl'
@@ -12,8 +12,8 @@
 depends=('kubectl' 'glibc')
 makedepends=('go')
 source=("${url}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz")
-sha256sums=('655e6b43324d62385d934375fd8456f005ee5124cb84d7efcc177dc49168b489')
-b2sums=('df313e60c942f4c453a8f46e36b8456a4efcd9aab8b31d04559f691ef57569f6e936bd874bfef1ad8c6f3c5701951f6c9c164ad200d6554e881eef49a591f87d')
+sha256sums=('786e1668d96c69e3d330202a162a09fe7d2a2a4ca4ef999d5ec760f5000cb5e6')
+b2sums=('7425d027b9212bb4e5aa81978270e50551567c056d395c656a60d34fa6c6c420a0662c846bfd679a79bf01540703ce99a10df63456530d4c0ed33db8a57262f7')
 
 build() {
   cd ${pkgname}-${pkgver}


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

2021-06-04 Thread Jelle van der Waa via arch-commits
Date: Friday, June 4, 2021 @ 19:17:25
  Author: jelle
Revision: 417122

archrelease: copy trunk to extra-x86_64

Added:
  pyalpm/repos/extra-x86_64/PKGBUILD
(from rev 417121, pyalpm/trunk/PKGBUILD)
Deleted:
  pyalpm/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-04 19:17:20 UTC (rev 417121)
+++ PKGBUILD2021-06-04 19:17:25 UTC (rev 417122)
@@ -1,33 +0,0 @@
-# Maintainer : Rémy Oudompheng 
-
-pkgname=pyalpm
-pkgver=0.10.2
-pkgrel=1
-pkgdesc="Python 3 bindings for libalpm"
-arch=('x86_64')
-url="https://gitlab.archlinux.org/archlinux/pyalpm;
-license=('GPL')
-makedepends=('git' 'python-setuptools' 'python-pytest' 'python-pkgconfig' 
'python-pytest-pacman')
-depends=('python' 'pacman')
-source=("git+https://gitlab.archlinux.org/archlinux/pyalpm.git#tag=$pkgver;)
-validpgpkeys=('E499C79F53C96A54E572FEE1C06086337C50773E')
-sha512sums=('SKIP')
-
-prepare() {
-  cd "${pkgname}"
-}
-
-build() {
-  cd "${pkgname}"
-  python setup.py build
-}
-
-check() {
-  cd "${pkgname}"
-  PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.9" pytest
-}
-
-package() {
-  cd "${pkgname}"
-  python setup.py install --root=${pkgdir}
-}

Copied: pyalpm/repos/extra-x86_64/PKGBUILD (from rev 417121, 
pyalpm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-04 19:17:25 UTC (rev 417122)
@@ -0,0 +1,33 @@
+# Maintainer : Rémy Oudompheng 
+
+pkgname=pyalpm
+pkgver=0.10.3
+pkgrel=1
+pkgdesc="Python 3 bindings for libalpm"
+arch=('x86_64')
+url="https://gitlab.archlinux.org/archlinux/pyalpm;
+license=('GPL')
+makedepends=('git' 'python-setuptools' 'python-pytest' 'python-pkgconfig' 
'python-pytest-pacman')
+depends=('python' 'pacman')
+source=("git+https://gitlab.archlinux.org/archlinux/pyalpm.git#tag=$pkgver;)
+validpgpkeys=('E499C79F53C96A54E572FEE1C06086337C50773E')
+sha512sums=('SKIP')
+
+prepare() {
+  cd "${pkgname}"
+}
+
+build() {
+  cd "${pkgname}"
+  python setup.py build
+}
+
+check() {
+  cd "${pkgname}"
+  PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.9" pytest
+}
+
+package() {
+  cd "${pkgname}"
+  python setup.py install --root=${pkgdir}
+}


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

2021-06-04 Thread Jelle van der Waa via arch-commits
Date: Friday, June 4, 2021 @ 19:17:20
  Author: jelle
Revision: 417121

upgpkg: pyalpm 0.10.3-1

Modified:
  pyalpm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-04 19:07:38 UTC (rev 417120)
+++ PKGBUILD2021-06-04 19:17:20 UTC (rev 417121)
@@ -1,7 +1,7 @@
 # Maintainer : Rémy Oudompheng 
 
 pkgname=pyalpm
-pkgver=0.10.2
+pkgver=0.10.3
 pkgrel=1
 pkgdesc="Python 3 bindings for libalpm"
 arch=('x86_64')


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

2021-06-04 Thread Balló György via arch-commits
Date: Friday, June 4, 2021 @ 19:10:15
  Author: bgyorgy
Revision: 955929

archrelease: copy trunk to community-x86_64

Added:
  scite/repos/community-x86_64/PKGBUILD
(from rev 955928, scite/trunk/PKGBUILD)
  scite/repos/community-x86_64/SciTE.appdata.xml
(from rev 955928, scite/trunk/SciTE.appdata.xml)
Deleted:
  scite/repos/community-x86_64/PKGBUILD
  scite/repos/community-x86_64/SciTE.appdata.xml

---+
 PKGBUILD  |   80 ++--
 SciTE.appdata.xml |   49 ++-
 2 files changed, 69 insertions(+), 60 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-04 19:10:07 UTC (rev 955928)
+++ PKGBUILD2021-06-04 19:10:15 UTC (rev 955929)
@@ -1,39 +0,0 @@
-# Maintainer: Balló György 
-# Contributor: Lex Black 
-# Contributor: Alexander F Rødseth 
-# Contributor: Thomas S Hatch 
-# Contributor: Corrado 'bardo' Primier 
-# Contributor: Jochem Kossen 
-# Contributor: Daniel J Griffiths 
-
-pkgname=scite
-pkgver=4.4.6
-pkgrel=1
-pkgdesc='Editor with facilities for building and running programs'
-arch=(x86_64)
-url='https://www.scintilla.org/SciTE.html'
-license=('custom:HPND')
-depends=(gtk3)
-backup=(usr/share/scite/SciTEGlobal.properties)
-source=(https://www.scintilla.org/${pkgname}${pkgver//./}.tgz
-SciTE.appdata.xml)
-sha256sums=('1c2e6eee6c8aa2e52983d9713a4b1c97d06c376324a3ec8932adfcb9e55d16d1'
-'04a33885833024a450c295d384f833bbc60894d57615de2a6f89db32d3ba942d')
-
-prepare() {
-  sed -i 
's|pixmapdir=$(datadir)/pixmaps|pixmapdir=$(datadir)/icons/hicolor/48x48/apps|
-  s|pixmapdir)/Sci48M.png|pixmapdir)/SciTE.png|' scite/gtk/makefile
-  sed -i 's/Sci48M/SciTE/' scite/gtk/{SciTEGTK.cxx,SciTE.desktop}
-}
-
-build() {
-  GTK3=1 make -C scintilla/gtk
-  GTK3=1 make -C scite/gtk
-}
-
-package() {
-  GTK3=1 make -C scite/gtk DESTDIR="$pkgdir" install
-  install -Dm644 scite/License.txt 
"$pkgdir/usr/share/licenses/$pkgname/License.txt"
-  install -Dm644 SciTE.appdata.xml 
"$pkgdir/usr/share/metainfo/SciTE.appdata.xml"
-  ln -sf /usr/bin/SciTE "$pkgdir/usr/bin/scite"
-}

Copied: scite/repos/community-x86_64/PKGBUILD (from rev 955928, 
scite/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-04 19:10:15 UTC (rev 955929)
@@ -0,0 +1,41 @@
+# Maintainer: Balló György 
+# Contributor: Lex Black 
+# Contributor: Alexander F Rødseth 
+# Contributor: Thomas S Hatch 
+# Contributor: Corrado 'bardo' Primier 
+# Contributor: Jochem Kossen 
+# Contributor: Daniel J Griffiths 
+
+pkgname=scite
+pkgver=5.0.3
+pkgrel=1
+pkgdesc='Editor with facilities for building and running programs'
+arch=('x86_64')
+url='https://www.scintilla.org/SciTE.html'
+license=('custom:HPND')
+depends=('gtk3')
+backup=('usr/share/scite/SciTEGlobal.properties')
+source=("https://www.scintilla.org/${pkgname}${pkgver//./}.tgz;
+'SciTE.appdata.xml')
+sha256sums=('82cda5a373bc1ac8e3bcac9c8b3a457f6762b7266ec0c35e93c6813776f48757'
+'cecf3f2f86cd05541e4c87064244f098904d5aed535f77244977e22cede7c842')
+
+prepare() {
+  sed -i 's/xdg-open/gio open/' scite/src/*.properties
+  sed -i 
's|pixmapdir=$(datadir)/pixmaps|pixmapdir=$(datadir)/icons/hicolor/48x48/apps|
+  s|pixmapdir)/Sci48M.png|pixmapdir)/SciTE.png|' scite/gtk/makefile
+  sed -i 's/Sci48M/SciTE/' scite/gtk/{SciTEGTK.cxx,SciTE.desktop}
+}
+
+build() {
+  make -C lexilla/src
+  make -C scintilla/gtk GTK3=1
+  make -C scite/gtk GTK3=1
+}
+
+package() {
+  make -C scite/gtk DESTDIR="$pkgdir" GTK3=1 install
+  install -Dm644 scite/License.txt 
"$pkgdir/usr/share/licenses/$pkgname/License.txt"
+  install -Dm644 SciTE.appdata.xml 
"$pkgdir/usr/share/metainfo/SciTE.appdata.xml"
+  ln -sf /usr/bin/SciTE "$pkgdir/usr/bin/scite"
+}

Deleted: SciTE.appdata.xml
===
--- SciTE.appdata.xml   2021-06-04 19:10:07 UTC (rev 955928)
+++ SciTE.appdata.xml   2021-06-04 19:10:15 UTC (rev 955929)
@@ -1,21 +0,0 @@
-
-
-  org.scintilla.SciTE
-  SciTE.desktop
-  SciTE
-  Edit your source files
-  CC0-1.0
-  HPND
-  
-
-  SciTE is a SCIntilla based Text Editor. Originally built to demonstrate 
Scintilla, it has grown to be a generally useful editor with facilities for 
building and running programs. It is best used for jobs with simple 
configurations.
-
-  
-  
-
-  https://www.scintilla.org/SciTE224.png
-
-  
-  https://sourceforge.net/p/scintilla/bugs/
-  https://scintilla.org/SciTE.html
-

Copied: scite/repos/community-x86_64/SciTE.appdata.xml (from rev 955928, 
scite/trunk/SciTE.appdata.xml)
===
--- SciTE.appdata.xml   (rev 0)
+++ SciTE.appdata.xml   2021-06-04 19:10:15 UTC (rev 955929)
@@ -0,0 +1,28 @@
+
+
+  

[arch-commits] Commit in scite/trunk (PKGBUILD SciTE.appdata.xml)

2021-06-04 Thread Balló György via arch-commits
Date: Friday, June 4, 2021 @ 19:10:07
  Author: bgyorgy
Revision: 955928

upgpkg: scite 5.0.3-1: Update to version 5.0.3

Modified:
  scite/trunk/PKGBUILD
  scite/trunk/SciTE.appdata.xml

---+
 PKGBUILD  |   24 +---
 SciTE.appdata.xml |   15 +++
 2 files changed, 24 insertions(+), 15 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-06-04 18:18:57 UTC (rev 955927)
+++ PKGBUILD2021-06-04 19:10:07 UTC (rev 955928)
@@ -7,20 +7,21 @@
 # Contributor: Daniel J Griffiths 
 
 pkgname=scite
-pkgver=4.4.6
+pkgver=5.0.3
 pkgrel=1
 pkgdesc='Editor with facilities for building and running programs'
-arch=(x86_64)
+arch=('x86_64')
 url='https://www.scintilla.org/SciTE.html'
 license=('custom:HPND')
-depends=(gtk3)
-backup=(usr/share/scite/SciTEGlobal.properties)
-source=(https://www.scintilla.org/${pkgname}${pkgver//./}.tgz
-SciTE.appdata.xml)
-sha256sums=('1c2e6eee6c8aa2e52983d9713a4b1c97d06c376324a3ec8932adfcb9e55d16d1'
-'04a33885833024a450c295d384f833bbc60894d57615de2a6f89db32d3ba942d')
+depends=('gtk3')
+backup=('usr/share/scite/SciTEGlobal.properties')
+source=("https://www.scintilla.org/${pkgname}${pkgver//./}.tgz;
+'SciTE.appdata.xml')
+sha256sums=('82cda5a373bc1ac8e3bcac9c8b3a457f6762b7266ec0c35e93c6813776f48757'
+'cecf3f2f86cd05541e4c87064244f098904d5aed535f77244977e22cede7c842')
 
 prepare() {
+  sed -i 's/xdg-open/gio open/' scite/src/*.properties
   sed -i 
's|pixmapdir=$(datadir)/pixmaps|pixmapdir=$(datadir)/icons/hicolor/48x48/apps|
   s|pixmapdir)/Sci48M.png|pixmapdir)/SciTE.png|' scite/gtk/makefile
   sed -i 's/Sci48M/SciTE/' scite/gtk/{SciTEGTK.cxx,SciTE.desktop}
@@ -27,12 +28,13 @@
 }
 
 build() {
-  GTK3=1 make -C scintilla/gtk
-  GTK3=1 make -C scite/gtk
+  make -C lexilla/src
+  make -C scintilla/gtk GTK3=1
+  make -C scite/gtk GTK3=1
 }
 
 package() {
-  GTK3=1 make -C scite/gtk DESTDIR="$pkgdir" install
+  make -C scite/gtk DESTDIR="$pkgdir" GTK3=1 install
   install -Dm644 scite/License.txt 
"$pkgdir/usr/share/licenses/$pkgname/License.txt"
   install -Dm644 SciTE.appdata.xml 
"$pkgdir/usr/share/metainfo/SciTE.appdata.xml"
   ln -sf /usr/bin/SciTE "$pkgdir/usr/bin/scite"

Modified: SciTE.appdata.xml
===
--- SciTE.appdata.xml   2021-06-04 18:18:57 UTC (rev 955927)
+++ SciTE.appdata.xml   2021-06-04 19:10:07 UTC (rev 955928)
@@ -3,13 +3,20 @@
   org.scintilla.SciTE
   SciTE.desktop
   SciTE
-  Edit your source files
+  A SCIntilla based Text Editor
   CC0-1.0
   HPND
   
-
-  SciTE is a SCIntilla based Text Editor. Originally built to demonstrate 
Scintilla, it has grown to be a generally useful editor with facilities for 
building and running programs. It is best used for jobs with simple 
configurations.
-
+SciTE is a SCIntilla based Text Editor. Originally built to demonstrate 
Scintilla, it has grown to be a generally useful editor with facilities for 
building and running programs. 
+SciTE includes the following features:
+
+  Syntax highlighting
+  Run code in Terminal, C, C++, vala, go
+  Code completion
+  Code folding
+  Many supported filetypes like C, Java, PHP, HTML, Python, Perl, 
Pascal
+  Exporting file to HTML, RTF, PDF, LATEX, XML
+
   
   
 


[arch-commits] Commit in evolution-data-server/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2021-06-04 Thread Jan Steffens via arch-commits
Date: Friday, June 4, 2021 @ 19:07:38
  Author: heftig
Revision: 417120

archrelease: copy trunk to extra-x86_64

Added:
  evolution-data-server/repos/extra-x86_64/PKGBUILD
(from rev 417117, evolution-data-server/trunk/PKGBUILD)
Deleted:
  evolution-data-server/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-04 19:07:38 UTC (rev 417119)
+++ PKGBUILD2021-06-04 19:07:38 UTC (rev 417120)
@@ -1,52 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgname=evolution-data-server
-pkgver=3.40.1
-pkgrel=1
-pkgdesc="Centralized access to appointments and contacts"
-url="https://wiki.gnome.org/Apps/Evolution;
-arch=(x86_64)
-depends=(gnome-online-accounts nss krb5 libgweather libical db libgdata 
libphonenumber)
-makedepends=(intltool gperf gobject-introspection vala gtk-doc boost git cmake 
ninja)
-provides=(libcamel-1.2.so libebackend-1.2.so libebook-1.2.so 
libebook-contacts-1.2.so
-  libecal-2.0.so libedata-book-1.2.so libedata-cal-2.0.so 
libedataserver-1.2.so
-  libedataserverui-1.2.so)
-license=(GPL)
-_commit=21e252ce25067818ffd534bcab3409693a83eb47  # tags/3.40.1^0
-source=("git+https://gitlab.gnome.org/GNOME/evolution-data-server.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^EVOLUTION_DATA_SERVER_//;s/_/./g;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-
-  # PrintableOptions.cmake: Correct variable name comparison
-  git cherry-pick -n c95a70bfeae25ba11fbe50fe759a6cdb29388e44
-}
-
-build() {
-  cmake -S $pkgname -B build -G Ninja \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIBEXEC_INSTALL_DIR=/usr/lib \
--DSYSCONF_INSTALL_DIR=/etc \
--DENABLE_INTROSPECTION=ON \
--DENABLE_VALA_BINDINGS=ON \
--DENABLE_GTK_DOC=ON \
--DWITH_PHONENUMBER=ON
-  cmake --build build
-}
-
-check() {
-  # libedata-book tests fail because they try to
-  # mkdir /usr/lib/evolution-data-server/camel-providers
-  cmake --build build --target test || :
-}
-
-package() {
-  DESTDIR="$pkgdir" cmake --install build
-}

Copied: evolution-data-server/repos/extra-x86_64/PKGBUILD (from rev 417117, 
evolution-data-server/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-04 19:07:38 UTC (rev 417120)
@@ -0,0 +1,52 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=evolution-data-server
+pkgver=3.40.2
+pkgrel=1
+pkgdesc="Centralized access to appointments and contacts"
+url="https://wiki.gnome.org/Apps/Evolution;
+arch=(x86_64)
+depends=(gnome-online-accounts nss krb5 libgweather libical db libgdata 
libphonenumber)
+makedepends=(intltool gperf gobject-introspection vala gtk-doc boost git cmake 
ninja)
+provides=(libcamel-1.2.so libebackend-1.2.so libebook-1.2.so 
libebook-contacts-1.2.so
+  libecal-2.0.so libedata-book-1.2.so libedata-cal-2.0.so 
libedataserver-1.2.so
+  libedataserverui-1.2.so)
+license=(GPL)
+_commit=f8f1acf0cb5d8fc2ac998d84a89f6ea18dc38f10  # tags/3.40.2^0
+source=("git+https://gitlab.gnome.org/GNOME/evolution-data-server.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^EVOLUTION_DATA_SERVER_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+
+  # PrintableOptions.cmake: Correct variable name comparison
+  git cherry-pick -n c95a70bfeae25ba11fbe50fe759a6cdb29388e44
+}
+
+build() {
+  cmake -S $pkgname -B build -G Ninja \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIBEXEC_INSTALL_DIR=/usr/lib \
+-DSYSCONF_INSTALL_DIR=/etc \
+-DENABLE_INTROSPECTION=ON \
+-DENABLE_VALA_BINDINGS=ON \
+-DENABLE_GTK_DOC=ON \
+-DWITH_PHONENUMBER=ON
+  cmake --build build
+}
+
+check() {
+  # libedata-book tests fail because they try to
+  # mkdir /usr/lib/evolution-data-server/camel-providers
+  cmake --build build --target test || :
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}


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

2021-06-04 Thread Jan Steffens via arch-commits
Date: Friday, June 4, 2021 @ 19:07:37
  Author: heftig
Revision: 417118

archrelease: copy trunk to extra-x86_64

Added:
  evolution-ews/repos/extra-x86_64/PKGBUILD
(from rev 417117, evolution-ews/trunk/PKGBUILD)
Deleted:
  evolution-ews/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-04 19:03:44 UTC (rev 417117)
+++ PKGBUILD2021-06-04 19:07:37 UTC (rev 417118)
@@ -1,36 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Ionut Biru 
-
-pkgname=evolution-ews
-pkgver=3.40.1
-pkgrel=1
-pkgdesc="MS Exchange integration through Exchange Web Services"
-url="https://wiki.gnome.org/Apps/Evolution/EWS;
-arch=(x86_64)
-license=(LGPL2.1)
-depends=(libmspack evolution)
-makedepends=(git intltool python cmake ninja)
-_commit=853f2a0f04d31be042e8d43cb93b65e083a86db1  # tags/3.40.1^0
-source=("git+https://gitlab.gnome.org/GNOME/evolution-ews.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^EVOLUTION_EWS_//;s/_/./g;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-}
-
-build() {
-  cmake -S $pkgname -B build -G Ninja \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIBEXEC_INSTALL_DIR=/usr/lib \
--DSYSCONF_INSTALL_DIR=/etc
-  cmake --build build
-}
-
-package() {
-  DESTDIR="$pkgdir" cmake --install build
-}

Copied: evolution-ews/repos/extra-x86_64/PKGBUILD (from rev 417117, 
evolution-ews/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-04 19:07:37 UTC (rev 417118)
@@ -0,0 +1,36 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
+
+pkgname=evolution-ews
+pkgver=3.40.2
+pkgrel=1
+pkgdesc="MS Exchange integration through Exchange Web Services"
+url="https://wiki.gnome.org/Apps/Evolution/EWS;
+arch=(x86_64)
+license=(LGPL2.1)
+depends=(libmspack evolution)
+makedepends=(git intltool python cmake ninja systemd)
+_commit=07bd56f2a5d1fcacc1f66d0fffe670831ebe0d49  # tags/3.40.2^0
+source=("git+https://gitlab.gnome.org/GNOME/evolution-ews.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^EVOLUTION_EWS_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+}
+
+build() {
+  cmake -S $pkgname -B build -G Ninja \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIBEXEC_INSTALL_DIR=/usr/lib \
+-DSYSCONF_INSTALL_DIR=/etc
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}


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

2021-06-04 Thread Jan Steffens via arch-commits
Date: Friday, June 4, 2021 @ 19:07:38
  Author: heftig
Revision: 417119

archrelease: copy trunk to extra-x86_64

Added:
  evolution/repos/extra-x86_64/PKGBUILD
(from rev 417117, evolution/trunk/PKGBUILD)
Deleted:
  evolution/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-04 19:07:37 UTC (rev 417118)
+++ PKGBUILD2021-06-04 19:07:38 UTC (rev 417119)
@@ -1,72 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgbase=evolution
-pkgname=(evolution evolution-bogofilter evolution-spamassassin)
-pkgver=3.40.1
-pkgrel=1
-pkgdesc="Manage your email, contacts and schedule"
-url="https://wiki.gnome.org/Apps/Evolution;
-arch=(x86_64)
-license=(GPL)
-depends=(gnome-desktop evolution-data-server libcanberra libpst libytnef
- dconf gspell libcryptui gnome-autoar)
-makedepends=(intltool itstool docbook-xsl networkmanager bogofilter
- spamassassin highlight gtk-doc yelp-tools git cmake ninja)
-options=(!emptydirs)
-_commit=67ad0cb11cfe910204267a6e718e873b1a817e0a  # tags/3.40.1^0
-source=("git+https://gitlab.gnome.org/GNOME/evolution.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgbase
-  git describe --tags | sed 's/^EVOLUTION_//;s/_/./g;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgbase
-}
-
-build() {
-  cmake -S $pkgbase -B build -G Ninja \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIBEXEC_INSTALL_DIR=/usr/lib \
--DSYSCONF_INSTALL_DIR=/etc \
--DENABLE_SMIME=ON \
--DENABLE_GTK_DOC=ON
-  cmake --build build
-}
-
-package_evolution() {
-  depends+=(libcamel-1.2.so libebook-1.2.so libebook-contacts-1.2.so
-libecal-2.0.so libedataserver-1.2.so libedataserverui-1.2.so)
-  optdepends=('highlight: text highlight plugin'
-  'evolution-spamassassin: Spamassassin spam check plugin'
-  'evolution-bogofilter: Bogofilter spam check plugin')
-  groups=(gnome-extra)
-
-  DESTDIR="$pkgdir" cmake --install build
-
-### Split
-  local x
-  for x in bogofilter spamassassin; do
-mkdir -p $x/usr/{lib/evolution/modules,share/metainfo}
-mv {"$pkgdir",$x}/usr/lib/evolution/modules/module-$x.so
-mv {"$pkgdir",$x}/usr/share/metainfo/org.gnome.Evolution-$x.metainfo.xml
-  done
-}
-
-
-package_evolution-bogofilter() {
-  pkgdesc="Spam filtering for Evolution, using Bogofilter"
-  depends=("evolution=$pkgver" bogofilter)
-
-  mv bogofilter/usr "$pkgdir"
-}
-
-package_evolution-spamassassin() {
-  pkgdesc="Spam filtering for Evolution, using SpamAssassin"
-  depends=("evolution=$pkgver" spamassassin)
-
-  mv spamassassin/usr "$pkgdir"
-}

Copied: evolution/repos/extra-x86_64/PKGBUILD (from rev 417117, 
evolution/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-04 19:07:38 UTC (rev 417119)
@@ -0,0 +1,72 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgbase=evolution
+pkgname=(evolution evolution-bogofilter evolution-spamassassin)
+pkgver=3.40.2
+pkgrel=1
+pkgdesc="Manage your email, contacts and schedule"
+url="https://wiki.gnome.org/Apps/Evolution;
+arch=(x86_64)
+license=(GPL)
+depends=(gnome-desktop evolution-data-server libcanberra libpst libytnef
+ dconf gspell libcryptui gnome-autoar)
+makedepends=(intltool itstool docbook-xsl networkmanager bogofilter
+ spamassassin highlight gtk-doc yelp-tools git cmake ninja)
+options=(!emptydirs)
+_commit=48495ce0143f585def8cb8f0d9fc69bf8cd2c7c6  # tags/3.40.2^0
+source=("git+https://gitlab.gnome.org/GNOME/evolution.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgbase
+  git describe --tags | sed 's/^EVOLUTION_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgbase
+}
+
+build() {
+  cmake -S $pkgbase -B build -G Ninja \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIBEXEC_INSTALL_DIR=/usr/lib \
+-DSYSCONF_INSTALL_DIR=/etc \
+-DENABLE_SMIME=ON \
+-DENABLE_GTK_DOC=ON
+  cmake --build build
+}
+
+package_evolution() {
+  depends+=(libcamel-1.2.so libebook-1.2.so libebook-contacts-1.2.so
+libecal-2.0.so libedataserver-1.2.so libedataserverui-1.2.so)
+  optdepends=('highlight: text highlight plugin'
+  'evolution-spamassassin: Spamassassin spam check plugin'
+  'evolution-bogofilter: Bogofilter spam check plugin')
+  groups=(gnome-extra)
+
+  DESTDIR="$pkgdir" cmake --install build
+
+### Split
+  local x
+  for x in bogofilter spamassassin; do
+mkdir -p $x/usr/{lib/evolution/modules,share/metainfo}
+mv {"$pkgdir",$x}/usr/lib/evolution/modules/module-$x.so
+mv {"$pkgdir",$x}/usr/share/metainfo/org.gnome.Evolution-$x.metainfo.xml
+  done
+}
+
+
+package_evolution-bogofilter() {
+  pkgdesc="Spam filtering for 

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

2021-06-04 Thread Jan Steffens via arch-commits
Date: Friday, June 4, 2021 @ 19:03:44
  Author: heftig
Revision: 417117

3.40.2-1

Modified:
  evolution-ews/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-04 18:22:00 UTC (rev 417116)
+++ PKGBUILD2021-06-04 19:03:44 UTC (rev 417117)
@@ -2,7 +2,7 @@
 # Contributor: Ionut Biru 
 
 pkgname=evolution-ews
-pkgver=3.40.1
+pkgver=3.40.2
 pkgrel=1
 pkgdesc="MS Exchange integration through Exchange Web Services"
 url="https://wiki.gnome.org/Apps/Evolution/EWS;
@@ -9,8 +9,8 @@
 arch=(x86_64)
 license=(LGPL2.1)
 depends=(libmspack evolution)
-makedepends=(git intltool python cmake ninja)
-_commit=853f2a0f04d31be042e8d43cb93b65e083a86db1  # tags/3.40.1^0
+makedepends=(git intltool python cmake ninja systemd)
+_commit=07bd56f2a5d1fcacc1f66d0fffe670831ebe0d49  # tags/3.40.2^0
 source=("git+https://gitlab.gnome.org/GNOME/evolution-ews.git#commit=$_commit;)
 sha256sums=('SKIP')
 


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

2021-06-04 Thread Jan Steffens via arch-commits
Date: Friday, June 4, 2021 @ 18:22:00
  Author: heftig
Revision: 417116

archrelease: copy trunk to extra-x86_64

Added:
  epiphany/repos/extra-x86_64/PKGBUILD
(from rev 417115, epiphany/trunk/PKGBUILD)
Deleted:
  epiphany/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-04 18:21:52 UTC (rev 417115)
+++ PKGBUILD2021-06-04 18:22:00 UTC (rev 417116)
@@ -1,42 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgname=epiphany
-pkgver=40.1
-pkgrel=1
-pkgdesc="A GNOME web browser based on the WebKit rendering engine"
-url="https://wiki.gnome.org/Apps/Web;
-arch=(x86_64)
-license=(GPL)
-depends=(webkit2gtk gcr icu libdazzle libhandy libportal libarchive)
-makedepends=(docbook-xml startup-notification lsb-release gobject-introspection
- yelp-tools git meson)
-checkdepends=(xorg-server-xvfb aspell hspell hunspell nuspell libvoikko)
-groups=(gnome)
-_commit=f0f1e57df86432de5d45ccf5e7aec04ee7bc617b  # tags/40.1^0
-source=("git+https://gitlab.gnome.org/GNOME/epiphany.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-}
-
-build() {
-  arch-meson $pkgname build
-  meson compile -C build
-}
-
-check() {
-  dbus-run-session xvfb-run \
--s '-screen 0 1920x1080x24 -nolisten local' \
-meson test -C build --print-errorlogs
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-}

Copied: epiphany/repos/extra-x86_64/PKGBUILD (from rev 417115, 
epiphany/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-04 18:22:00 UTC (rev 417116)
@@ -0,0 +1,42 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=epiphany
+pkgver=40.2
+pkgrel=1
+pkgdesc="A GNOME web browser based on the WebKit rendering engine"
+url="https://wiki.gnome.org/Apps/Web;
+arch=(x86_64)
+license=(GPL)
+depends=(webkit2gtk gcr icu libdazzle libhandy libportal libarchive)
+makedepends=(docbook-xml startup-notification lsb-release gobject-introspection
+ yelp-tools git meson)
+checkdepends=(xorg-server-xvfb aspell hspell hunspell nuspell libvoikko)
+groups=(gnome)
+_commit=95552d19b3fc8c7e1c014db301390a0a517dc3e6  # tags/40.2^0
+source=("git+https://gitlab.gnome.org/GNOME/epiphany.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+}
+
+build() {
+  arch-meson $pkgname build
+  meson compile -C build
+}
+
+check() {
+  dbus-run-session xvfb-run \
+-s '-screen 0 1920x1080x24 -nolisten local' \
+meson test -C build --print-errorlogs
+}
+
+package() {
+  meson install -C build --destdir "$pkgdir"
+}


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

2021-06-04 Thread Jan Steffens via arch-commits
Date: Friday, June 4, 2021 @ 18:21:52
  Author: heftig
Revision: 417115

40.2-1

Modified:
  epiphany/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-04 18:20:31 UTC (rev 417114)
+++ PKGBUILD2021-06-04 18:21:52 UTC (rev 417115)
@@ -2,7 +2,7 @@
 # Contributor: Jan de Groot 
 
 pkgname=epiphany
-pkgver=40.1
+pkgver=40.2
 pkgrel=1
 pkgdesc="A GNOME web browser based on the WebKit rendering engine"
 url="https://wiki.gnome.org/Apps/Web;
@@ -13,7 +13,7 @@
  yelp-tools git meson)
 checkdepends=(xorg-server-xvfb aspell hspell hunspell nuspell libvoikko)
 groups=(gnome)
-_commit=f0f1e57df86432de5d45ccf5e7aec04ee7bc617b  # tags/40.1^0
+_commit=95552d19b3fc8c7e1c014db301390a0a517dc3e6  # tags/40.2^0
 source=("git+https://gitlab.gnome.org/GNOME/epiphany.git#commit=$_commit;)
 sha256sums=('SKIP')
 
@@ -38,5 +38,5 @@
 }
 
 package() {
-  DESTDIR="$pkgdir" meson install -C build
+  meson install -C build --destdir "$pkgdir"
 }


[arch-commits] Commit in nautilus/repos/extra-x86_64 (3 files)

2021-06-04 Thread Jan Steffens via arch-commits
Date: Friday, June 4, 2021 @ 18:20:31
  Author: heftig
Revision: 417114

archrelease: copy trunk to extra-x86_64

Added:
  
nautilus/repos/extra-x86_64/0001-test-Fix-declaration-of-test-environment.patch
(from rev 417113, 
nautilus/trunk/0001-test-Fix-declaration-of-test-environment.patch)
  nautilus/repos/extra-x86_64/PKGBUILD
(from rev 417113, nautilus/trunk/PKGBUILD)
Deleted:
  nautilus/repos/extra-x86_64/PKGBUILD

-+
 0001-test-Fix-declaration-of-test-environment.patch |   76 
 PKGBUILD|  158 +-
 2 files changed, 157 insertions(+), 77 deletions(-)

Copied: 
nautilus/repos/extra-x86_64/0001-test-Fix-declaration-of-test-environment.patch 
(from rev 417113, 
nautilus/trunk/0001-test-Fix-declaration-of-test-environment.patch)
===
--- 0001-test-Fix-declaration-of-test-environment.patch 
(rev 0)
+++ 0001-test-Fix-declaration-of-test-environment.patch 2021-06-04 18:20:31 UTC 
(rev 417114)
@@ -0,0 +1,76 @@
+From  Mon Sep 17 00:00:00 2001
+From: "Jan Alexander Steffens (heftig)" 
+Date: Fri, 4 Jun 2021 18:14:17 +
+Subject: [PATCH] test: Fix declaration of test environment
+
+meson 0.58.0 fails with:
+
+ERROR: List item must be one of , not 
+---
+ test/automated/display/meson.build | 3 +--
+ test/automated/displayless/meson.build | 6 ++
+ test/meson.build   | 3 +--
+ 3 files changed, 4 insertions(+), 8 deletions(-)
+
+diff --git a/test/automated/display/meson.build 
b/test/automated/display/meson.build
+index a7e2e0be2..ce0276ad9 100644
+--- a/test/automated/display/meson.build
 b/test/automated/display/meson.build
+@@ -13,8 +13,7 @@ foreach t: tests
+   test(
+ t[0],
+ executable(t[0], t[1], dependencies: libnautilus_dep),
+-env: [
+-  test_env,
++env: test_env + [
+   'G_TEST_BUILDDIR=@0@'.format(meson.current_build_dir()),
+   'G_TEST_SRCDIR=@0@'.format(meson.current_source_dir())
+ ],
+diff --git a/test/automated/displayless/meson.build 
b/test/automated/displayless/meson.build
+index 64b23bd2a..02f4f3309 100644
+--- a/test/automated/displayless/meson.build
 b/test/automated/displayless/meson.build
+@@ -45,27 +45,25 @@ foreach t: tests
+   test(
+ t[0],
+ executable(t[0], t[1], files('test-utilities.c'), dependencies: 
libnautilus_dep),
+-env: [
+-  test_env,
++env: test_env + [
+   'G_TEST_BUILDDIR=@0@'.format(meson.current_build_dir()),
+   'G_TEST_SRCDIR=@0@'.format(meson.current_source_dir())
+ ],
+ timeout: 480
+   )
+ endforeach
+ 
+ 
+ 
+ # Tests that read and write from the Tracker index are run using 
'tracker-sandbox'
+ # script to use a temporary instance of tracker-miner-fs instead of the 
session one.
+ foreach t: tracker_tests
+   test_exe = executable(t[0], t[1], files('test-utilities.c'), dependencies: 
libnautilus_dep)
+   test(
+ t[0],
+ tracker_sandbox,
+ args: ['--store-tmpdir', '--index-recursive-tmpdir', test_exe],
+-env: [
+-  test_env,
++env: test_env + [
+   'G_TEST_BUILDDIR=@0@'.format(meson.current_build_dir()),
+   'G_TEST_SRCDIR=@0@'.format(meson.current_source_dir())
+ ],
+diff --git a/test/meson.build b/test/meson.build
+index ab588efd3..9f238aaad 100644
+--- a/test/meson.build
 b/test/meson.build
+@@ -4,8 +4,7 @@
+ # test(
+ #   name,
+ #   executable,
+-#   env: [
+-# test_env,
++#   env: test_env + [
+ # 'G_TEST_BUILDDIR=@0@'.format(meson.current_build_dir()),
+ # 'G_TEST_SRCDIR=@0@'.format(meson.current_source_dir())
+ #   ]

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-04 18:20:24 UTC (rev 417113)
+++ PKGBUILD2021-06-04 18:20:31 UTC (rev 417114)
@@ -1,77 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgbase=nautilus
-pkgname=(nautilus libnautilus-extension)
-pkgver=40.1
-pkgrel=1
-pkgdesc="Default file manager for GNOME"
-url="https://wiki.gnome.org/Apps/Files;
-arch=(x86_64)
-license=(GPL)
-depends=(libgexiv2 gnome-desktop gvfs dconf tracker3 tracker3-miners
- gnome-autoar gst-plugins-base-libs libhandy libportal)
-makedepends=(gobject-introspection git gtk-doc meson appstream-glib)
-checkdepends=(python-gobject)
-_commit=4f9ddd632f555bdfe06abd6a339aa2bd7781b2bc  # tags/40.1^0
-source=("git+https://gitlab.gnome.org/GNOME/nautilus.git#commit=$_commit;
-"git+https://gitlab.gnome.org/GNOME/libgd.git;)
-sha256sums=('SKIP'
-'SKIP')
-
-prepare() {
-  cd $pkgbase
-
-  git submodule init
-  git submodule set-url subprojects/libgd "$srcdir/libgd"
-  git submodule update
-}
-
-pkgver() {
-  cd $pkgbase
-  git describe --tags | sed 's/-/+/g'
-}
-
-build() {
-  arch-meson $pkgbase build \
--D docs=true \
--D 

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

2021-06-04 Thread Jan Steffens via arch-commits
Date: Friday, June 4, 2021 @ 18:20:24
  Author: heftig
Revision: 417113

40.2-1

Added:
  nautilus/trunk/0001-test-Fix-declaration-of-test-environment.patch
Modified:
  nautilus/trunk/PKGBUILD

-+
 0001-test-Fix-declaration-of-test-environment.patch |   76 ++
 PKGBUILD|   14 ++-
 2 files changed, 85 insertions(+), 5 deletions(-)

Added: 0001-test-Fix-declaration-of-test-environment.patch
===
--- 0001-test-Fix-declaration-of-test-environment.patch 
(rev 0)
+++ 0001-test-Fix-declaration-of-test-environment.patch 2021-06-04 18:20:24 UTC 
(rev 417113)
@@ -0,0 +1,76 @@
+From  Mon Sep 17 00:00:00 2001
+From: "Jan Alexander Steffens (heftig)" 
+Date: Fri, 4 Jun 2021 18:14:17 +
+Subject: [PATCH] test: Fix declaration of test environment
+
+meson 0.58.0 fails with:
+
+ERROR: List item must be one of , not 
+---
+ test/automated/display/meson.build | 3 +--
+ test/automated/displayless/meson.build | 6 ++
+ test/meson.build   | 3 +--
+ 3 files changed, 4 insertions(+), 8 deletions(-)
+
+diff --git a/test/automated/display/meson.build 
b/test/automated/display/meson.build
+index a7e2e0be2..ce0276ad9 100644
+--- a/test/automated/display/meson.build
 b/test/automated/display/meson.build
+@@ -13,8 +13,7 @@ foreach t: tests
+   test(
+ t[0],
+ executable(t[0], t[1], dependencies: libnautilus_dep),
+-env: [
+-  test_env,
++env: test_env + [
+   'G_TEST_BUILDDIR=@0@'.format(meson.current_build_dir()),
+   'G_TEST_SRCDIR=@0@'.format(meson.current_source_dir())
+ ],
+diff --git a/test/automated/displayless/meson.build 
b/test/automated/displayless/meson.build
+index 64b23bd2a..02f4f3309 100644
+--- a/test/automated/displayless/meson.build
 b/test/automated/displayless/meson.build
+@@ -45,27 +45,25 @@ foreach t: tests
+   test(
+ t[0],
+ executable(t[0], t[1], files('test-utilities.c'), dependencies: 
libnautilus_dep),
+-env: [
+-  test_env,
++env: test_env + [
+   'G_TEST_BUILDDIR=@0@'.format(meson.current_build_dir()),
+   'G_TEST_SRCDIR=@0@'.format(meson.current_source_dir())
+ ],
+ timeout: 480
+   )
+ endforeach
+ 
+ 
+ 
+ # Tests that read and write from the Tracker index are run using 
'tracker-sandbox'
+ # script to use a temporary instance of tracker-miner-fs instead of the 
session one.
+ foreach t: tracker_tests
+   test_exe = executable(t[0], t[1], files('test-utilities.c'), dependencies: 
libnautilus_dep)
+   test(
+ t[0],
+ tracker_sandbox,
+ args: ['--store-tmpdir', '--index-recursive-tmpdir', test_exe],
+-env: [
+-  test_env,
++env: test_env + [
+   'G_TEST_BUILDDIR=@0@'.format(meson.current_build_dir()),
+   'G_TEST_SRCDIR=@0@'.format(meson.current_source_dir())
+ ],
+diff --git a/test/meson.build b/test/meson.build
+index ab588efd3..9f238aaad 100644
+--- a/test/meson.build
 b/test/meson.build
+@@ -4,8 +4,7 @@
+ # test(
+ #   name,
+ #   executable,
+-#   env: [
+-# test_env,
++#   env: test_env + [
+ # 'G_TEST_BUILDDIR=@0@'.format(meson.current_build_dir()),
+ # 'G_TEST_SRCDIR=@0@'.format(meson.current_source_dir())
+ #   ]

Modified: PKGBUILD
===
--- PKGBUILD2021-06-04 18:12:20 UTC (rev 417112)
+++ PKGBUILD2021-06-04 18:20:24 UTC (rev 417113)
@@ -3,7 +3,7 @@
 
 pkgbase=nautilus
 pkgname=(nautilus libnautilus-extension)
-pkgver=40.1
+pkgver=40.2
 pkgrel=1
 pkgdesc="Default file manager for GNOME"
 url="https://wiki.gnome.org/Apps/Files;
@@ -13,15 +13,19 @@
  gnome-autoar gst-plugins-base-libs libhandy libportal)
 makedepends=(gobject-introspection git gtk-doc meson appstream-glib)
 checkdepends=(python-gobject)
-_commit=4f9ddd632f555bdfe06abd6a339aa2bd7781b2bc  # tags/40.1^0
+_commit=acd0ceee27495a2e4c552490aed49146cb2476e6  # tags/40.2^0
 source=("git+https://gitlab.gnome.org/GNOME/nautilus.git#commit=$_commit;
-"git+https://gitlab.gnome.org/GNOME/libgd.git;)
+"git+https://gitlab.gnome.org/GNOME/libgd.git;
+0001-test-Fix-declaration-of-test-environment.patch)
 sha256sums=('SKIP'
-'SKIP')
+'SKIP'
+'cac844c1bc565f7d1c7f83bd5b688e9b6a8b680fdd7c0566c3434d808c7121a3')
 
 prepare() {
   cd $pkgbase
 
+  git apply -3 ../0001-test-Fix-declaration-of-test-environment.patch
+
   git submodule init
   git submodule set-url subprojects/libgd "$srcdir/libgd"
   git submodule update
@@ -58,7 +62,7 @@
   optdepends=('nautilus-sendto: Send files via mail extension')
   groups=(gnome)
 
-  DESTDIR="$pkgdir" meson install -C build
+  meson install -C build --destdir "$pkgdir"
 
 ### Split libnautilus-extension
 


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

2021-06-04 Thread Balló György via arch-commits
Date: Friday, June 4, 2021 @ 18:18:57
  Author: bgyorgy
Revision: 955927

archrelease: copy trunk to community-x86_64

Added:
  notepadqq/repos/community-x86_64/PKGBUILD
(from rev 955926, notepadqq/trunk/PKGBUILD)
Deleted:
  notepadqq/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-04 18:18:51 UTC (rev 955926)
+++ PKGBUILD2021-06-04 18:18:57 UTC (rev 955927)
@@ -1,45 +0,0 @@
-# Maintainer: Balló György 
-# Contributor: Doug Newgard 
-
-pkgname=notepadqq
-pkgver=1.4.8
-pkgrel=3
-pkgdesc='Notepad++-like text editor for Linux'
-arch=('x86_64')
-url='https://notepadqq.com/'
-license=('GPL3')
-depends=('desktop-file-utils' 'hicolor-icon-theme' 'qt5-svg' 'qt5-webkit')
-makedepends=('git' 'qt5-tools')
-options=('!emptydirs')
-_commit=b371c5686e483b93e97c1b4dc5b8a9bb5604c760  # tags/v1.4.8^0
-source=("git+https://github.com/notepadqq/notepadqq.git#commit=$_commit;
-"git+https://github.com/notepadqq/CodeMirror.git;)
-sha256sums=('SKIP'
-'SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  git config submodule.src/editor/libs/codemirror.url "$srcdir/CodeMirror"
-  git submodule update --init
-
-  # Fixes to the appdata file
-  git cherry-pick -n b8394792a002debd85574aeb79800d6ba46a6b20
-  git cherry-pick -n 6b80d126341243f84eb02a1863320d1bc4b9bd53
-  git cherry-pick -n 3c16a4134855639ff23b3275a0ceac3dcc30a2da
-}
-
-build() {
-  cd $pkgname
-  qmake-qt5 PREFIX=/usr LRELEASE=/usr/bin/lrelease notepadqq.pro
-  make
-}
-
-package() {
-  cd $pkgname
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: notepadqq/repos/community-x86_64/PKGBUILD (from rev 955926, 
notepadqq/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-04 18:18:57 UTC (rev 955927)
@@ -0,0 +1,50 @@
+# Maintainer: Balló György 
+# Contributor: Doug Newgard 
+
+pkgname=notepadqq
+pkgver=1.4.8
+pkgrel=4
+pkgdesc='Notepad++-like text editor for Linux'
+arch=('x86_64')
+url='https://notepadqq.com/'
+license=('GPL3')
+depends=('desktop-file-utils' 'hicolor-icon-theme' 'qt5-svg' 'qt5-webkit')
+makedepends=('git' 'qt5-tools')
+optdepends=('mathjax2: Math rendering')
+options=('!emptydirs')
+_commit=b371c5686e483b93e97c1b4dc5b8a9bb5604c760  # tags/v1.4.8^0
+source=("git+https://github.com/notepadqq/notepadqq.git#commit=$_commit;
+"git+https://github.com/notepadqq/CodeMirror.git;)
+sha256sums=('SKIP'
+'SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  git config submodule.src/editor/libs/codemirror.url "$srcdir/CodeMirror"
+  git submodule update --init
+
+  # Fixes to the appdata file
+  git cherry-pick -n b8394792a002debd85574aeb79800d6ba46a6b20
+  git cherry-pick -n 6b80d126341243f84eb02a1863320d1bc4b9bd53
+  git cherry-pick -n 3c16a4134855639ff23b3275a0ceac3dcc30a2da
+
+  # Unbundle MathJax
+  sed -i 's|libs/MathJax/MathJax|../../mathjax2/MathJax|' 
src/editor/features/latex/latex.js
+  sed -i '/MathJax/d' src/editor/Makefile
+}
+
+build() {
+  cd $pkgname
+  qmake-qt5 PREFIX=/usr LRELEASE=/usr/bin/lrelease notepadqq.pro
+  make
+}
+
+package() {
+  cd $pkgname
+  make INSTALL_ROOT="$pkgdir" install
+}


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

2021-06-04 Thread Balló György via arch-commits
Date: Friday, June 4, 2021 @ 18:18:51
  Author: bgyorgy
Revision: 955926

upgpkg: notepadqq 1.4.8-4: Unbundle MathJax

Modified:
  notepadqq/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-04 16:56:14 UTC (rev 955925)
+++ PKGBUILD2021-06-04 18:18:51 UTC (rev 955926)
@@ -3,7 +3,7 @@
 
 pkgname=notepadqq
 pkgver=1.4.8
-pkgrel=3
+pkgrel=4
 pkgdesc='Notepad++-like text editor for Linux'
 arch=('x86_64')
 url='https://notepadqq.com/'
@@ -10,6 +10,7 @@
 license=('GPL3')
 depends=('desktop-file-utils' 'hicolor-icon-theme' 'qt5-svg' 'qt5-webkit')
 makedepends=('git' 'qt5-tools')
+optdepends=('mathjax2: Math rendering')
 options=('!emptydirs')
 _commit=b371c5686e483b93e97c1b4dc5b8a9bb5604c760  # tags/v1.4.8^0
 source=("git+https://github.com/notepadqq/notepadqq.git#commit=$_commit;
@@ -31,6 +32,10 @@
   git cherry-pick -n b8394792a002debd85574aeb79800d6ba46a6b20
   git cherry-pick -n 6b80d126341243f84eb02a1863320d1bc4b9bd53
   git cherry-pick -n 3c16a4134855639ff23b3275a0ceac3dcc30a2da
+
+  # Unbundle MathJax
+  sed -i 's|libs/MathJax/MathJax|../../mathjax2/MathJax|' 
src/editor/features/latex/latex.js
+  sed -i '/MathJax/d' src/editor/Makefile
 }
 
 build() {


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

2021-06-04 Thread Jan Steffens via arch-commits
Date: Friday, June 4, 2021 @ 18:12:20
  Author: heftig
Revision: 417112

3.40.2-1

Modified:
  evolution/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-04 18:07:40 UTC (rev 417111)
+++ PKGBUILD2021-06-04 18:12:20 UTC (rev 417112)
@@ -3,7 +3,7 @@
 
 pkgbase=evolution
 pkgname=(evolution evolution-bogofilter evolution-spamassassin)
-pkgver=3.40.1
+pkgver=3.40.2
 pkgrel=1
 pkgdesc="Manage your email, contacts and schedule"
 url="https://wiki.gnome.org/Apps/Evolution;
@@ -14,7 +14,7 @@
 makedepends=(intltool itstool docbook-xsl networkmanager bogofilter
  spamassassin highlight gtk-doc yelp-tools git cmake ninja)
 options=(!emptydirs)
-_commit=67ad0cb11cfe910204267a6e718e873b1a817e0a  # tags/3.40.1^0
+_commit=48495ce0143f585def8cb8f0d9fc69bf8cd2c7c6  # tags/3.40.2^0
 source=("git+https://gitlab.gnome.org/GNOME/evolution.git#commit=$_commit;)
 sha256sums=('SKIP')
 


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

2021-06-04 Thread Jan Steffens via arch-commits
Date: Friday, June 4, 2021 @ 18:07:40
  Author: heftig
Revision: 417111

archrelease: copy trunk to extra-x86_64

Added:
  gnome-software/repos/extra-x86_64/PKGBUILD
(from rev 417109, gnome-software/trunk/PKGBUILD)
Deleted:
  gnome-software/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-04 18:07:40 UTC (rev 417110)
+++ PKGBUILD2021-06-04 18:07:40 UTC (rev 417111)
@@ -1,72 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-# Contributor: Yosef Or Boczko 
-
-pkgbase=gnome-software
-pkgname=(gnome-software gnome-software-packagekit-plugin)
-pkgver=40.1
-pkgrel=1
-pkgdesc="GNOME Software Tools"
-url="https://wiki.gnome.org/Apps/Software/;
-arch=(x86_64)
-license=(GPL2)
-makedepends=(appstream gsettings-desktop-schemas libpackagekit-glib flatpak
- fwupd docbook-xsl git gobject-introspection gspell gtk-doc meson
- valgrind gnome-online-accounts libxmlb malcontent libhandy)
-_commit=ded20bb8ae7db8c39666e5982abbd5e0f203690f  # tags/40.1^0
-source=("git+https://gitlab.gnome.org/GNOME/gnome-software.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgbase
-  git describe --tags | sed 's/^GNOME_SOFTWARE_//;s/_/./g;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgbase
-}
-
-build() {
-  # Ensure static library is non-LTO compatible
-  CFLAGS+=" -ffat-lto-objects"
-
-  arch-meson $pkgbase build -D sysprof=disabled
-  meson compile -C build
-}
-
-check() {
-  # build container troubles
-  meson test -C build --print-errorlogs || :
-}
-
-_pick() {
-  local p="$1" f d; shift
-  for f; do
-d="$srcdir/$p/${f#$pkgdir/}"
-mkdir -p "$(dirname "$d")"
-mv "$f" "$d"
-rmdir -p --ignore-fail-on-non-empty "$(dirname "$f")"
-  done
-}
-
-package_gnome-software() {
-  groups=(gnome)
-  depends=(libxmlb gsettings-desktop-schemas gspell libpackagekit-glib
-   gnome-online-accounts appstream libhandy)
-  optdepends=('flatpak: Flatpak support plugin'
-  'fwupd: fwupd support plugin'
-  'malcontent: Parental control plugin')
-
-  DESTDIR="$pkgdir" meson install -C build
-
-### Split gnome-software-packagekit-plugin
-  local pkglibdir="$pkgdir/usr/lib/gnome-software"
-  _pick packagekit-plugin "$pkglibdir"/plugins-*/libgs_plugin_packagekit*.so
-  _pick packagekit-plugin 
"$pkglibdir"/plugins-*/libgs_plugin_systemd-updates.so
-}
-
-package_gnome-software-packagekit-plugin() {
-  pkgdesc="PackageKit support plugin for GNOME Software"
-  depends=(archlinux-appstream-data gnome-software packagekit)
-  mv packagekit-plugin/* "$pkgdir"
-}

Copied: gnome-software/repos/extra-x86_64/PKGBUILD (from rev 417109, 
gnome-software/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-04 18:07:40 UTC (rev 417111)
@@ -0,0 +1,72 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+# Contributor: Yosef Or Boczko 
+
+pkgbase=gnome-software
+pkgname=(gnome-software gnome-software-packagekit-plugin)
+pkgver=40.2
+pkgrel=1
+pkgdesc="GNOME Software Tools"
+url="https://wiki.gnome.org/Apps/Software/;
+arch=(x86_64)
+license=(GPL2)
+makedepends=(appstream gsettings-desktop-schemas libpackagekit-glib flatpak
+ fwupd docbook-xsl git gobject-introspection gspell gtk-doc meson
+ valgrind gnome-online-accounts libxmlb malcontent libhandy)
+_commit=11b5e9663a7ee9fe0e5c9f97c864b804cf5271d5  # tags/40.2^0
+source=("git+https://gitlab.gnome.org/GNOME/gnome-software.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgbase
+  git describe --tags | sed 's/^GNOME_SOFTWARE_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgbase
+}
+
+build() {
+  # Ensure static library is non-LTO compatible
+  CFLAGS+=" -ffat-lto-objects"
+
+  arch-meson $pkgbase build -D sysprof=disabled
+  meson compile -C build
+}
+
+check() {
+  # build container troubles
+  meson test -C build --print-errorlogs || :
+}
+
+_pick() {
+  local p="$1" f d; shift
+  for f; do
+d="$srcdir/$p/${f#$pkgdir/}"
+mkdir -p "$(dirname "$d")"
+mv "$f" "$d"
+rmdir -p --ignore-fail-on-non-empty "$(dirname "$f")"
+  done
+}
+
+package_gnome-software() {
+  groups=(gnome)
+  depends=(libxmlb gsettings-desktop-schemas gspell libpackagekit-glib
+   gnome-online-accounts appstream libhandy)
+  optdepends=('flatpak: Flatpak support plugin'
+  'fwupd: fwupd support plugin'
+  'malcontent: Parental control plugin')
+
+  meson install -C build --destdir="$pkgdir"
+
+### Split gnome-software-packagekit-plugin
+  local pkglibdir="$pkgdir/usr/lib/gnome-software"
+  _pick packagekit-plugin "$pkglibdir"/plugins-*/libgs_plugin_packagekit*.so
+  _pick packagekit-plugin 

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

2021-06-04 Thread Jan Steffens via arch-commits
Date: Friday, June 4, 2021 @ 18:07:40
  Author: heftig
Revision: 417110

archrelease: copy trunk to extra-x86_64

Added:
  sushi/repos/extra-x86_64/PKGBUILD
(from rev 417109, sushi/trunk/PKGBUILD)
Deleted:
  sushi/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-04 18:07:30 UTC (rev 417109)
+++ PKGBUILD2021-06-04 18:07:40 UTC (rev 417110)
@@ -1,42 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Ionut Biru 
-
-pkgname=sushi
-pkgver=3.38.0
-pkgrel=1
-pkgdesc="A quick previewer for Nautilus"
-url="https://gitlab.gnome.org/GNOME/sushi;
-arch=(x86_64)
-license=(GPL2)
-groups=(gnome)
-depends=(gtk3 gjs libmusicbrainz5 webkit2gtk gtksourceview4 evince
- gst-plugins-base-libs gst-plugin-gtk)
-makedepends=(gobject-introspection git meson)
-optdepends=('unoconv: OpenDocument formats')
-_commit=f763d41b31f59a726d26e721df4f6e0fe00adf50  # tags/v3.38.0^0
-source=("git+https://gitlab.gnome.org/GNOME/sushi.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-}
-
-build() {
-  arch-meson $pkgname build
-  meson compile -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-}
-
-# vim:set ts=2 sw=2 et:

Copied: sushi/repos/extra-x86_64/PKGBUILD (from rev 417109, 
sushi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-04 18:07:40 UTC (rev 417110)
@@ -0,0 +1,42 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
+
+pkgname=sushi
+pkgver=3.38.1
+pkgrel=1
+pkgdesc="A quick previewer for Nautilus"
+url="https://gitlab.gnome.org/GNOME/sushi;
+arch=(x86_64)
+license=(GPL2)
+groups=(gnome)
+depends=(gtk3 gjs libmusicbrainz5 webkit2gtk gtksourceview4 evince
+ gst-plugins-base-libs gst-plugin-gtk)
+makedepends=(gobject-introspection git meson)
+optdepends=('unoconv: OpenDocument formats')
+_commit=545dead8bd108b22a7dc09cbb08148adc45fd1a4  # tags/3.38.1^0
+source=("git+https://gitlab.gnome.org/GNOME/sushi.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+}
+
+build() {
+  arch-meson $pkgname build
+  meson compile -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  meson install -C build --destdir "$pkgdir"
+}
+
+# vim:set sw=2 et:


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

2021-06-04 Thread Jan Steffens via arch-commits
Date: Friday, June 4, 2021 @ 18:07:30
  Author: heftig
Revision: 417109

40.2-1

Modified:
  gnome-software/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-04 18:07:28 UTC (rev 417108)
+++ PKGBUILD2021-06-04 18:07:30 UTC (rev 417109)
@@ -4,7 +4,7 @@
 
 pkgbase=gnome-software
 pkgname=(gnome-software gnome-software-packagekit-plugin)
-pkgver=40.1
+pkgver=40.2
 pkgrel=1
 pkgdesc="GNOME Software Tools"
 url="https://wiki.gnome.org/Apps/Software/;
@@ -13,7 +13,7 @@
 makedepends=(appstream gsettings-desktop-schemas libpackagekit-glib flatpak
  fwupd docbook-xsl git gobject-introspection gspell gtk-doc meson
  valgrind gnome-online-accounts libxmlb malcontent libhandy)
-_commit=ded20bb8ae7db8c39666e5982abbd5e0f203690f  # tags/40.1^0
+_commit=11b5e9663a7ee9fe0e5c9f97c864b804cf5271d5  # tags/40.2^0
 
source=("git+https://gitlab.gnome.org/GNOME/gnome-software.git#commit=$_commit;)
 sha256sums=('SKIP')
 
@@ -57,7 +57,7 @@
   'fwupd: fwupd support plugin'
   'malcontent: Parental control plugin')
 
-  DESTDIR="$pkgdir" meson install -C build
+  meson install -C build --destdir="$pkgdir"
 
 ### Split gnome-software-packagekit-plugin
   local pkglibdir="$pkgdir/usr/lib/gnome-software"


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

2021-06-04 Thread Jan Steffens via arch-commits
Date: Friday, June 4, 2021 @ 18:07:28
  Author: heftig
Revision: 417108

3.38.1-1

Modified:
  sushi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-04 18:07:05 UTC (rev 417107)
+++ PKGBUILD2021-06-04 18:07:28 UTC (rev 417108)
@@ -2,7 +2,7 @@
 # Contributor: Ionut Biru 
 
 pkgname=sushi
-pkgver=3.38.0
+pkgver=3.38.1
 pkgrel=1
 pkgdesc="A quick previewer for Nautilus"
 url="https://gitlab.gnome.org/GNOME/sushi;
@@ -13,7 +13,7 @@
  gst-plugins-base-libs gst-plugin-gtk)
 makedepends=(gobject-introspection git meson)
 optdepends=('unoconv: OpenDocument formats')
-_commit=f763d41b31f59a726d26e721df4f6e0fe00adf50  # tags/v3.38.0^0
+_commit=545dead8bd108b22a7dc09cbb08148adc45fd1a4  # tags/3.38.1^0
 source=("git+https://gitlab.gnome.org/GNOME/sushi.git#commit=$_commit;)
 sha256sums=('SKIP')
 
@@ -36,7 +36,7 @@
 }
 
 package() {
-  DESTDIR="$pkgdir" meson install -C build
+  meson install -C build --destdir "$pkgdir"
 }
 
-# vim:set ts=2 sw=2 et:
+# vim:set sw=2 et:


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

2021-06-04 Thread Jan Steffens via arch-commits
Date: Friday, June 4, 2021 @ 18:07:05
  Author: heftig
Revision: 417107

3.40.2-1

Modified:
  evolution-data-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-04 18:06:37 UTC (rev 417106)
+++ PKGBUILD2021-06-04 18:07:05 UTC (rev 417107)
@@ -2,7 +2,7 @@
 # Contributor: Jan de Groot 
 
 pkgname=evolution-data-server
-pkgver=3.40.1
+pkgver=3.40.2
 pkgrel=1
 pkgdesc="Centralized access to appointments and contacts"
 url="https://wiki.gnome.org/Apps/Evolution;
@@ -13,7 +13,7 @@
   libecal-2.0.so libedata-book-1.2.so libedata-cal-2.0.so 
libedataserver-1.2.so
   libedataserverui-1.2.so)
 license=(GPL)
-_commit=21e252ce25067818ffd534bcab3409693a83eb47  # tags/3.40.1^0
+_commit=f8f1acf0cb5d8fc2ac998d84a89f6ea18dc38f10  # tags/3.40.2^0
 
source=("git+https://gitlab.gnome.org/GNOME/evolution-data-server.git#commit=$_commit;)
 sha256sums=('SKIP')
 


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

2021-06-04 Thread Jan Steffens via arch-commits
Date: Friday, June 4, 2021 @ 18:06:37
  Author: heftig
Revision: 417106

archrelease: copy trunk to extra-x86_64

Added:
  gnome-autoar/repos/extra-x86_64/PKGBUILD
(from rev 417105, gnome-autoar/trunk/PKGBUILD)
Deleted:
  gnome-autoar/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-04 18:05:21 UTC (rev 417105)
+++ PKGBUILD2021-06-04 18:06:37 UTC (rev 417106)
@@ -1,37 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgname=gnome-autoar
-pkgver=0.3.2
-pkgrel=1
-pkgdesc="Automatic archives creating and extracting library"
-url="https://wiki.gnome.org/TingweiLan/GSoC2013Final;
-arch=(x86_64)
-license=(LGPL)
-depends=(glib2 libarchive gtk3)
-makedepends=(git gobject-introspection gtk-doc vala autoconf-archive)
-_commit=fa60e89c7af84fade3ea525780b54c61df1f9647  # tags/0.3.2^0
-source=("git+https://gitlab.gnome.org/GNOME/gnome-autoar.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --enable-gtk-doc
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: gnome-autoar/repos/extra-x86_64/PKGBUILD (from rev 417105, 
gnome-autoar/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-04 18:06:37 UTC (rev 417106)
@@ -0,0 +1,37 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=gnome-autoar
+pkgver=0.3.3
+pkgrel=1
+pkgdesc="Automatic archives creating and extracting library"
+url="https://wiki.gnome.org/TingweiLan/GSoC2013Final;
+arch=(x86_64)
+license=(LGPL)
+depends=(glib2 libarchive gtk3)
+makedepends=(git gobject-introspection gtk-doc vala autoconf-archive)
+_commit=87e278ef077b4952595cf9d6e973e6d8246f20b3  # tags/0.3.3^0
+source=("git+https://gitlab.gnome.org/GNOME/gnome-autoar.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --enable-gtk-doc
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}


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

2021-06-04 Thread Jan Steffens via arch-commits
Date: Friday, June 4, 2021 @ 18:05:21
  Author: heftig
Revision: 417105

0.3.3-1

Modified:
  gnome-autoar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-04 18:04:29 UTC (rev 417104)
+++ PKGBUILD2021-06-04 18:05:21 UTC (rev 417105)
@@ -2,7 +2,7 @@
 # Contributor: Jan de Groot 
 
 pkgname=gnome-autoar
-pkgver=0.3.2
+pkgver=0.3.3
 pkgrel=1
 pkgdesc="Automatic archives creating and extracting library"
 url="https://wiki.gnome.org/TingweiLan/GSoC2013Final;
@@ -10,7 +10,7 @@
 license=(LGPL)
 depends=(glib2 libarchive gtk3)
 makedepends=(git gobject-introspection gtk-doc vala autoconf-archive)
-_commit=fa60e89c7af84fade3ea525780b54c61df1f9647  # tags/0.3.2^0
+_commit=87e278ef077b4952595cf9d6e973e6d8246f20b3  # tags/0.3.3^0
 source=("git+https://gitlab.gnome.org/GNOME/gnome-autoar.git#commit=$_commit;)
 sha256sums=('SKIP')
 


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

2021-06-04 Thread Jan Steffens via arch-commits
Date: Friday, June 4, 2021 @ 18:04:29
  Author: heftig
Revision: 417103

archrelease: copy trunk to extra-x86_64

Added:
  vala/repos/extra-x86_64/PKGBUILD
(from rev 417102, vala/trunk/PKGBUILD)
Deleted:
  vala/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-04 18:04:23 UTC (rev 417102)
+++ PKGBUILD2021-06-04 18:04:29 UTC (rev 417103)
@@ -1,50 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Ionut Biru 
-# Contributor: Timm Preetz 
-
-pkgname=vala
-pkgver=0.52.3
-pkgrel=1
-pkgdesc='Compiler for the GObject type system'
-url='https://wiki.gnome.org/Projects/Vala'
-arch=(x86_64)
-license=(LGPL)
-depends=(glib2 gtk-doc graphviz ttf-font pkg-config gcc)
-makedepends=(libxslt vala git help2man autoconf-archive)
-checkdepends=(dbus libx11 gobject-introspection)
-provides=(valadoc libvala-${pkgver%.*}.so libvaladoc-${pkgver%.*}.so)
-conflicts=(valadoc)
-replaces=(valadoc)
-_commit=1cccfb73ab48ea43475e828e158d6556bbd4efd4  # tags/0.52.3^0
-source=("git+https://gitlab.gnome.org/GNOME/vala.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() {
-  cd $pkgname
-  make check
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: vala/repos/extra-x86_64/PKGBUILD (from rev 417102, vala/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-04 18:04:29 UTC (rev 417103)
@@ -0,0 +1,50 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
+# Contributor: Timm Preetz 
+
+pkgname=vala
+pkgver=0.52.4
+pkgrel=1
+pkgdesc='Compiler for the GObject type system'
+url='https://wiki.gnome.org/Projects/Vala'
+arch=(x86_64)
+license=(LGPL)
+depends=(glib2 gtk-doc graphviz ttf-font pkg-config gcc)
+makedepends=(libxslt vala git help2man autoconf-archive)
+checkdepends=(dbus libx11 gobject-introspection)
+provides=(valadoc libvala-${pkgver%.*}.so libvaladoc-${pkgver%.*}.so)
+conflicts=(valadoc)
+replaces=(valadoc)
+_commit=bf729240fe600c0b20b814a015efd773cc3d06b3  # tags/0.52.4^0
+source=("git+https://gitlab.gnome.org/GNOME/vala.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+check() {
+  cd $pkgname
+  make check
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}
+
+# vim: ts=2 sw=2 et:


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

2021-06-04 Thread Jan Steffens via arch-commits
Date: Friday, June 4, 2021 @ 18:04:29
  Author: heftig
Revision: 417104

archrelease: copy trunk to extra-x86_64

Added:
  gnome-maps/repos/extra-x86_64/PKGBUILD
(from rev 417102, gnome-maps/trunk/PKGBUILD)
Deleted:
  gnome-maps/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-04 18:04:29 UTC (rev 417103)
+++ PKGBUILD2021-06-04 18:04:29 UTC (rev 417104)
@@ -1,38 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgname=gnome-maps
-pkgver=40.1
-pkgrel=1
-pkgdesc="A simple GNOME 3 maps application"
-url="https://wiki.gnome.org/Apps/Maps;
-arch=(x86_64)
-license=(GPL)
-depends=(geocode-glib geoclue gjs libchamplain libgee folks gfbgraph libhandy)
-makedepends=(gobject-introspection git meson yelp-tools)
-groups=(gnome)
-_commit=2296fd638d41b791dc1a64f74c64b1ea36c4abc5  # tags/v40.1^0
-source=("git+https://gitlab.gnome.org/GNOME/gnome-maps.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-}
-
-build() {
-  arch-meson $pkgname build
-  meson compile -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-}

Copied: gnome-maps/repos/extra-x86_64/PKGBUILD (from rev 417102, 
gnome-maps/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-04 18:04:29 UTC (rev 417104)
@@ -0,0 +1,38 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=gnome-maps
+pkgver=40.2
+pkgrel=1
+pkgdesc="A simple GNOME 3 maps application"
+url="https://wiki.gnome.org/Apps/Maps;
+arch=(x86_64)
+license=(GPL)
+depends=(geocode-glib geoclue gjs libchamplain libgee folks gfbgraph libhandy)
+makedepends=(gobject-introspection git meson yelp-tools)
+groups=(gnome)
+_commit=b59196dfa3a7998a714cec8351c13078ac742fb9  # tags/v40.2^0
+source=("git+https://gitlab.gnome.org/GNOME/gnome-maps.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+}
+
+build() {
+  arch-meson $pkgname build
+  meson compile -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  meson install -C build --destdir "$pkgdir"
+}


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

2021-06-04 Thread Jan Steffens via arch-commits
Date: Friday, June 4, 2021 @ 18:04:23
  Author: heftig
Revision: 417102

40.2-1

Modified:
  gnome-maps/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-04 18:04:16 UTC (rev 417101)
+++ PKGBUILD2021-06-04 18:04:23 UTC (rev 417102)
@@ -2,7 +2,7 @@
 # Contributor: Jan de Groot 
 
 pkgname=gnome-maps
-pkgver=40.1
+pkgver=40.2
 pkgrel=1
 pkgdesc="A simple GNOME 3 maps application"
 url="https://wiki.gnome.org/Apps/Maps;
@@ -11,7 +11,7 @@
 depends=(geocode-glib geoclue gjs libchamplain libgee folks gfbgraph libhandy)
 makedepends=(gobject-introspection git meson yelp-tools)
 groups=(gnome)
-_commit=2296fd638d41b791dc1a64f74c64b1ea36c4abc5  # tags/v40.1^0
+_commit=b59196dfa3a7998a714cec8351c13078ac742fb9  # tags/v40.2^0
 source=("git+https://gitlab.gnome.org/GNOME/gnome-maps.git#commit=$_commit;)
 sha256sums=('SKIP')
 
@@ -34,5 +34,5 @@
 }
 
 package() {
-  DESTDIR="$pkgdir" meson install -C build
+  meson install -C build --destdir "$pkgdir"
 }


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

2021-06-04 Thread Jan Steffens via arch-commits
Date: Friday, June 4, 2021 @ 18:04:16
  Author: heftig
Revision: 417101

0.52.4-1

Modified:
  vala/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-04 16:51:13 UTC (rev 417100)
+++ PKGBUILD2021-06-04 18:04:16 UTC (rev 417101)
@@ -4,7 +4,7 @@
 # Contributor: Timm Preetz 
 
 pkgname=vala
-pkgver=0.52.3
+pkgver=0.52.4
 pkgrel=1
 pkgdesc='Compiler for the GObject type system'
 url='https://wiki.gnome.org/Projects/Vala'
@@ -16,7 +16,7 @@
 provides=(valadoc libvala-${pkgver%.*}.so libvaladoc-${pkgver%.*}.so)
 conflicts=(valadoc)
 replaces=(valadoc)
-_commit=1cccfb73ab48ea43475e828e158d6556bbd4efd4  # tags/0.52.3^0
+_commit=bf729240fe600c0b20b814a015efd773cc3d06b3  # tags/0.52.4^0
 source=("git+https://gitlab.gnome.org/GNOME/vala.git#commit=$_commit;)
 sha256sums=('SKIP')
 


[arch-commits] Commit in lib32-alsa-lib/repos/multilib-testing-x86_64 (2 files)

2021-06-04 Thread David Runge via arch-commits
Date: Friday, June 4, 2021 @ 16:56:14
  Author: dvzrv
Revision: 955925

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-alsa-lib/repos/multilib-testing-x86_64/PKGBUILD
(from rev 955924, lib32-alsa-lib/trunk/PKGBUILD)
Deleted:
  lib32-alsa-lib/repos/multilib-testing-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-04 16:56:05 UTC (rev 955924)
+++ PKGBUILD2021-06-04 16:56:14 UTC (rev 955925)
@@ -1,49 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: Jan Alexander Steffens (heftig) 
-
-_name=alsa-lib
-pkgname=lib32-alsa-lib
-pkgver=1.2.5
-pkgrel=1
-pkgdesc="An alternative implementation of Linux sound support (32 bit)"
-arch=('x86_64')
-url="https://www.alsa-project.org;
-license=('LGPL2.1')
-depends=('lib32-glibc' "alsa-lib=${pkgver}")
-provides=('libasound.so' 'libatopology.so')
-source=("https://www.alsa-project.org/files/pub/lib/${_name}-${pkgver}.tar.bz2"{,.sig})
-sha512sums=('d9b53484737a3684aac7e08b4b18400aac10fec1a78a8bf9101944bea2c50710bc7355e9bb0012541b067e2d5ee7b1b818bf1bdbffbb2b2d7ad0eb15efe49725'
-'SKIP')
-b2sums=('84fe4e22d4316bfc84f15f2493f40f113eb3db7722f230550586533e80daf214140164e8ddc1a399b82a3fd0fb21125ff225cfeb45eaa19320c2e2aa3997c662'
-'SKIP')
-validpgpkeys=('F04DF50737AC1A884C4B3D718380596DA6E59C91') # ALSA Release Team 
(Package Signing Key v1) 
-
-prepare() {
-  cd "${_name}-$pkgver"
-  autoreconf -vfi
-}
-
-build() {
-  cd "${_name}-$pkgver"
-
-  export CC='gcc -m32'
-  export PKG_CONFIG=i686-pc-linux-gnu-pkg-config
-
-  ./configure --prefix=/usr \
-  --libdir=/usr/lib32 \
-  --without-debug \
-  --disable-python
-  make
-}
-
-check() {
-  cd "${_name}-$pkgver"
-  export LD_LIBRARY_PATH="${PWD}/src/.libs/:${LD_LIBRARY_PATH}"
-  make -k check
-}
-
-package() {
-  cd "${_name}-$pkgver"
-  make DESTDIR="$pkgdir" install
-  rm -r "$pkgdir"/usr/{bin,include,share}
-}

Copied: lib32-alsa-lib/repos/multilib-testing-x86_64/PKGBUILD (from rev 955924, 
lib32-alsa-lib/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-04 16:56:14 UTC (rev 955925)
@@ -0,0 +1,65 @@
+# Maintainer: David Runge 
+# Contributor: Jan Alexander Steffens (heftig) 
+
+_name=alsa-lib
+pkgname=lib32-alsa-lib
+pkgver=1.2.5
+pkgrel=2
+pkgdesc="An alternative implementation of Linux sound support (32 bit)"
+arch=('x86_64')
+url="https://www.alsa-project.org;
+license=('LGPL2.1')
+depends=('lib32-glibc' "alsa-lib=${pkgver}")
+provides=('libasound.so' 'libatopology.so')
+source=("https://www.alsa-project.org/files/pub/lib/${_name}-${pkgver}.tar.bz2"{,.sig}
+
"${pkgname}-1.2.5-load_all_cards.patch::https://github.com/alsa-project/alsa-lib/commit/ddfc32abf5697de1618b9e7ffdf57a0f97013090.patch;
+
"${pkgname}-1.2.5-private_device_prefix1.patch::https://github.com/alsa-project/alsa-lib/commit/0e4ba2ea8c0402f12a645032a14693eb9b1278e6.patch;
+
"${pkgname}-1.2.5-private_device_prefix2.patch::https://github.com/alsa-project/alsa-lib/commit/9621d0bff2e60b43e329ffa5059ab19f2914ec14.patch;)
+sha512sums=('d9b53484737a3684aac7e08b4b18400aac10fec1a78a8bf9101944bea2c50710bc7355e9bb0012541b067e2d5ee7b1b818bf1bdbffbb2b2d7ad0eb15efe49725'
+'SKIP'
+
'c5ee4d27001c31772c24595051424869961e1b39b45565256650b63471e2be1236b17cdec5e66e182f1894ef8b09b5f6f959b8f8c6e46a2a0131a8512a9d2516'
+
'dfe42b349bfc73682158dfeebe97c3f43d28cdccad307a239b2ed1e30d289cfe9b1577799c34917b07ac98f48b28939aba9c6e8b0db322fc6dd36bdb96d56208'
+
'294b79947cbbb00208495ada2baffdaef5e7aa4ea6b49d94733b86bcde59eef7589b87d2d856991405bcb5df8ca48f13c4e89c0a0c163f1abff98aad2c52cd88')
+b2sums=('84fe4e22d4316bfc84f15f2493f40f113eb3db7722f230550586533e80daf214140164e8ddc1a399b82a3fd0fb21125ff225cfeb45eaa19320c2e2aa3997c662'
+'SKIP'
+
'b43d5cb0efbe0c7c440e31fceb6c6b6a4f8b234ee4b12e74382ad83b16d67778a3d72838554c8813fec2a6200ce2cadac360cb78de275cf73a9c9010f3ba0287'
+
'2b6062724be3bfd224a3e615d0a1d557a847f628bd01bd9eb155782f3926f7734b63ea1e10369e7294af9d82ad80ad23bb269dbc7a3659a9273758248d08c487'
+
'7b1a251d4d6fe7f47cc7ec6dc5f20536fca8f455cb321bcbd6f32544e3ecedce4f5fed3191fbbfd9ef79ad74b2ca71dbe12faafe231ac3bd53301a91bcf9934f')
+validpgpkeys=('F04DF50737AC1A884C4B3D718380596DA6E59C91') # ALSA Release Team 
(Package Signing Key v1) 
+
+prepare() {
+  cd "${_name}-$pkgver"
+  # fix loading of multiple cards
+  # https://github.com/alsa-project/alsa-lib/issues/143
+  patch -Np1 -i ../"${pkgname}-1.2.5-load_all_cards.patch"
+  # probably fix issues with pipewire:
+  # https://github.com/alsa-project/alsa-lib/issues/142
+  patch -Np1 -i ../"${pkgname}-1.2.5-private_device_prefix1.patch"
+  

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

2021-06-04 Thread David Runge via arch-commits
Date: Friday, June 4, 2021 @ 16:56:05
  Author: dvzrv
Revision: 955924

upgpkg: lib32-alsa-lib 1.2.5-2: Rebuild to add patches.

Add patches for card discovery and fixing issues with pulseaudio/pipewire.

Modified:
  lib32-alsa-lib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-04 16:51:16 UTC (rev 955923)
+++ PKGBUILD2021-06-04 16:56:05 UTC (rev 955924)
@@ -4,7 +4,7 @@
 _name=alsa-lib
 pkgname=lib32-alsa-lib
 pkgver=1.2.5
-pkgrel=1
+pkgrel=2
 pkgdesc="An alternative implementation of Linux sound support (32 bit)"
 arch=('x86_64')
 url="https://www.alsa-project.org;
@@ -11,15 +11,31 @@
 license=('LGPL2.1')
 depends=('lib32-glibc' "alsa-lib=${pkgver}")
 provides=('libasound.so' 'libatopology.so')
-source=("https://www.alsa-project.org/files/pub/lib/${_name}-${pkgver}.tar.bz2"{,.sig})
+source=("https://www.alsa-project.org/files/pub/lib/${_name}-${pkgver}.tar.bz2"{,.sig}
+
"${pkgname}-1.2.5-load_all_cards.patch::https://github.com/alsa-project/alsa-lib/commit/ddfc32abf5697de1618b9e7ffdf57a0f97013090.patch;
+
"${pkgname}-1.2.5-private_device_prefix1.patch::https://github.com/alsa-project/alsa-lib/commit/0e4ba2ea8c0402f12a645032a14693eb9b1278e6.patch;
+
"${pkgname}-1.2.5-private_device_prefix2.patch::https://github.com/alsa-project/alsa-lib/commit/9621d0bff2e60b43e329ffa5059ab19f2914ec14.patch;)
 
sha512sums=('d9b53484737a3684aac7e08b4b18400aac10fec1a78a8bf9101944bea2c50710bc7355e9bb0012541b067e2d5ee7b1b818bf1bdbffbb2b2d7ad0eb15efe49725'
-'SKIP')
+'SKIP'
+
'c5ee4d27001c31772c24595051424869961e1b39b45565256650b63471e2be1236b17cdec5e66e182f1894ef8b09b5f6f959b8f8c6e46a2a0131a8512a9d2516'
+
'dfe42b349bfc73682158dfeebe97c3f43d28cdccad307a239b2ed1e30d289cfe9b1577799c34917b07ac98f48b28939aba9c6e8b0db322fc6dd36bdb96d56208'
+
'294b79947cbbb00208495ada2baffdaef5e7aa4ea6b49d94733b86bcde59eef7589b87d2d856991405bcb5df8ca48f13c4e89c0a0c163f1abff98aad2c52cd88')
 
b2sums=('84fe4e22d4316bfc84f15f2493f40f113eb3db7722f230550586533e80daf214140164e8ddc1a399b82a3fd0fb21125ff225cfeb45eaa19320c2e2aa3997c662'
-'SKIP')
+'SKIP'
+
'b43d5cb0efbe0c7c440e31fceb6c6b6a4f8b234ee4b12e74382ad83b16d67778a3d72838554c8813fec2a6200ce2cadac360cb78de275cf73a9c9010f3ba0287'
+
'2b6062724be3bfd224a3e615d0a1d557a847f628bd01bd9eb155782f3926f7734b63ea1e10369e7294af9d82ad80ad23bb269dbc7a3659a9273758248d08c487'
+
'7b1a251d4d6fe7f47cc7ec6dc5f20536fca8f455cb321bcbd6f32544e3ecedce4f5fed3191fbbfd9ef79ad74b2ca71dbe12faafe231ac3bd53301a91bcf9934f')
 validpgpkeys=('F04DF50737AC1A884C4B3D718380596DA6E59C91') # ALSA Release Team 
(Package Signing Key v1) 
 
 prepare() {
   cd "${_name}-$pkgver"
+  # fix loading of multiple cards
+  # https://github.com/alsa-project/alsa-lib/issues/143
+  patch -Np1 -i ../"${pkgname}-1.2.5-load_all_cards.patch"
+  # probably fix issues with pipewire:
+  # https://github.com/alsa-project/alsa-lib/issues/142
+  patch -Np1 -i ../"${pkgname}-1.2.5-private_device_prefix1.patch"
+  patch -Np1 -i ../"${pkgname}-1.2.5-private_device_prefix2.patch"
   autoreconf -vfi
 }
 


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

2021-06-04 Thread Alexander Rødseth via arch-commits
Date: Friday, June 4, 2021 @ 16:43:09
  Author: arodseth
Revision: 955922

archrelease: copy trunk to community-x86_64

Added:
  xmlrpc-c/repos/community-x86_64/PKGBUILD
(from rev 955921, xmlrpc-c/trunk/PKGBUILD)
Deleted:
  xmlrpc-c/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-04 16:43:02 UTC (rev 955921)
+++ PKGBUILD2021-06-04 16:43:09 UTC (rev 955922)
@@ -1,55 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Daenyth 
-# Contributor: Pierre Schmitz 
-# Contributor: Vitaliy Berdinskikh 
-
-pkgname=xmlrpc-c
-# Using the "super stable" version. The alternative is to download with svn.
-pkgver=1.51.06
-pkgrel=1
-epoch=1
-pkgdesc='XML-RPC for C and C++'
-arch=(x86_64)
-# https is not available
-url='http://xmlrpc-c.sourceforge.net/'
-license=(custom)
-depends=(curl)
-makedepends=(libtool setconf)
-options=(!emptydirs)
-source=("https://sourceforge.net/projects/xmlrpc-c/files/Xmlrpc-c%20Super%20Stable/1.51.06/xmlrpc-c-${pkgver/./-}.tgz;)
-sha256sums=('2ec92444d386440a4e276425c23a7a89dd9768f2c993c71f965e38c8e2101e92')
-
-build() {
-  cd "$pkgname-${pkgver/./-}"
-
-  ./configure \
---prefix=/usr \
---mandir=/usr/share/man \
---disable-libxml2-backend \
---disable-cgi-server \
---disable-libwww-client \
---disable-wininet-client \
---enable-cplusplus
-
-  mkdir -p include/curl
-  touch include/curl/types.h
-
-  make CFLAGS_PERSONAL="$CFLAGS -fPIC -w" CXXFLAGS_PERSONAL="$CXXFLAGS -fPIC 
-w"
-  make -C tools CFLAGS_PERSONAL="$CFLAGS -fPIC -w" 
CXXFLAGS_PERSONAL="$CXXFLAGS -fPIC -w"
-}
-
-package() {
-  cd "$pkgname-${pkgver/./-}"
-
-  make DESTDIR="$pkgdir" install
-  make DESTDIR="$pkgdir" -C tools install
-
-  # Remove references to build directory
-  setconf "$pkgdir/usr/bin/xmlrpc-c-config" BLDDIR ''
-  setconf "$pkgdir/usr/bin/xmlrpc-c-config" ABS_SRCDIR ''
-
-  # Custom license
-  install -Dm644 doc/COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim: ts=2 sw=2 et:

Copied: xmlrpc-c/repos/community-x86_64/PKGBUILD (from rev 955921, 
xmlrpc-c/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-04 16:43:09 UTC (rev 955922)
@@ -0,0 +1,52 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Daenyth 
+# Contributor: Pierre Schmitz 
+# Contributor: Vitaliy Berdinskikh 
+
+pkgname=xmlrpc-c
+# Using the "super stable" version
+pkgver=1.51.07
+pkgrel=1
+epoch=1
+pkgdesc='XML-RPC for C and C++'
+arch=(x86_64)
+url='https://xmlrpc-c.sourceforge.net/'
+license=(custom)
+depends=(curl)
+makedepends=(libtool setconf)
+options=(!emptydirs)
+source=("https://sourceforge.net/projects/xmlrpc-c/files/Xmlrpc-c%20Super%20Stable/$pkgver/xmlrpc-c-$pkgver.tgz;)
+b2sums=('ff91051f11370131bae1c8af3ba73e22b8758f7e05f1d46a6d0609ecca6e241ac218d587f66045c1d1e492776d07e0de1c305b92b207273b23baafd938709286')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--mandir=/usr/share/man \
+--disable-libxml2-backend \
+--disable-cgi-server \
+--disable-libwww-client \
+--disable-wininet-client \
+--enable-cplusplus
+
+  mkdir -p include/curl
+  touch include/curl/types.h
+
+  make CFLAGS_PERSONAL="$CFLAGS -fPIC -w" CXXFLAGS_PERSONAL="$CXXFLAGS -fPIC 
-w"
+  make -C tools CFLAGS_PERSONAL="$CFLAGS -fPIC -w" 
CXXFLAGS_PERSONAL="$CXXFLAGS -fPIC -w"
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="$pkgdir" install
+  make DESTDIR="$pkgdir" -C tools install
+
+  # Remove references to build directory
+  setconf "$pkgdir/usr/bin/xmlrpc-c-config" BLDDIR ''
+  setconf "$pkgdir/usr/bin/xmlrpc-c-config" ABS_SRCDIR ''
+
+  # Custom license
+  install -Dm644 doc/COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2021-06-04 Thread Alexander Rødseth via arch-commits
Date: Friday, June 4, 2021 @ 16:43:02
  Author: arodseth
Revision: 955921

upgpkg: xmlrpc-c 1:1.51.07-1

Modified:
  xmlrpc-c/trunk/PKGBUILD

--+
 PKGBUILD |   17 +++--
 1 file changed, 7 insertions(+), 10 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-06-04 16:06:59 UTC (rev 955920)
+++ PKGBUILD2021-06-04 16:43:02 UTC (rev 955921)
@@ -4,23 +4,22 @@
 # Contributor: Vitaliy Berdinskikh 
 
 pkgname=xmlrpc-c
-# Using the "super stable" version. The alternative is to download with svn.
-pkgver=1.51.06
+# Using the "super stable" version
+pkgver=1.51.07
 pkgrel=1
 epoch=1
 pkgdesc='XML-RPC for C and C++'
 arch=(x86_64)
-# https is not available
-url='http://xmlrpc-c.sourceforge.net/'
+url='https://xmlrpc-c.sourceforge.net/'
 license=(custom)
 depends=(curl)
 makedepends=(libtool setconf)
 options=(!emptydirs)
-source=("https://sourceforge.net/projects/xmlrpc-c/files/Xmlrpc-c%20Super%20Stable/1.51.06/xmlrpc-c-${pkgver/./-}.tgz;)
-sha256sums=('2ec92444d386440a4e276425c23a7a89dd9768f2c993c71f965e38c8e2101e92')
+source=("https://sourceforge.net/projects/xmlrpc-c/files/Xmlrpc-c%20Super%20Stable/$pkgver/xmlrpc-c-$pkgver.tgz;)
+b2sums=('ff91051f11370131bae1c8af3ba73e22b8758f7e05f1d46a6d0609ecca6e241ac218d587f66045c1d1e492776d07e0de1c305b92b207273b23baafd938709286')
 
 build() {
-  cd "$pkgname-${pkgver/./-}"
+  cd $pkgname-$pkgver
 
   ./configure \
 --prefix=/usr \
@@ -39,7 +38,7 @@
 }
 
 package() {
-  cd "$pkgname-${pkgver/./-}"
+  cd $pkgname-$pkgver
 
   make DESTDIR="$pkgdir" install
   make DESTDIR="$pkgdir" -C tools install
@@ -51,5 +50,3 @@
   # Custom license
   install -Dm644 doc/COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 }
-
-# vim: ts=2 sw=2 et:


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

2021-06-04 Thread Felix Yan via arch-commits
Date: Friday, June 4, 2021 @ 16:06:59
  Author: felixonmars
Revision: 955920

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-04 16:06:41 UTC (rev 955919)
+++ PKGBUILD2021-06-04 16:06:59 UTC (rev 955920)
@@ -1,42 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: Felix Yan 
-
-_name=identify
-pkgname=python-identify
-pkgver=2.2.7
-pkgrel=1
-pkgdesc="File identification library for Python"
-arch=('any')
-url="https://github.com/chriskuehl/identify;
-license=('MIT')
-depends=('python')
-makedepends=('python-setuptools')
-checkdepends=('python-editdistance-s' 'python-pytest')
-optdepends=('python-editdistance-s: for returning license identifiers')
-source=("${_name}-${pkgver}.tar.gz::https://github.com/chriskuehl/${_name}/archive/v${pkgver}.tar.gz;)
-sha512sums=('f3c4073a9018ba595c8535447c7ccb20ca1f8d8bb006b4662db19b3356afc33d810b2073810b86d7dec4572b151c53301feca09bf0662d4d683febbdf7735e06')
-b2sums=('988aecb3f32b1d1416984ad7cb5937f85600e222a1053d2800dda1c498fea2660f86ee42208611c71e29b9827e212992fed35697a3d24f02814cc6ea8a560615')
-
-prepare() {
-  mv -v "${_name}-${pkgver}" "$pkgname-$pkgver"
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  python setup.py build
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  export PYTHONPATH="build:${PYTHONPATH}"
-  pytest -v
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  python setup.py install --skip-build \
---optimize=1 \
---root="${pkgdir}"
-  install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -vDm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: python-identify/repos/community-any/PKGBUILD (from rev 955919, 
python-identify/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-04 16:06:59 UTC (rev 955920)
@@ -0,0 +1,42 @@
+# Maintainer: David Runge 
+# Contributor: Felix Yan 
+
+_name=identify
+pkgname=python-identify
+pkgver=2.2.8
+pkgrel=1
+pkgdesc="File identification library for Python"
+arch=('any')
+url="https://github.com/chriskuehl/identify;
+license=('MIT')
+depends=('python')
+makedepends=('python-setuptools')
+checkdepends=('python-editdistance-s' 'python-pytest')
+optdepends=('python-editdistance-s: for returning license identifiers')
+source=("${_name}-${pkgver}.tar.gz::https://github.com/chriskuehl/${_name}/archive/v${pkgver}.tar.gz;)
+sha512sums=('d166f37fa60cafc0fb624cac9626115adaecd8ec88f42ce71b81794b6aa8301e42f459bfbc1da3d81709ee5681184e927e9111a906a22ec8c977b24f1e9dc17f')
+b2sums=('46bf6631c6006ad2326f175257ee2cb4324ac463419cb50df0919768b2787afcc135dc1982ee1feb4a5efef6990f3224f63fb2dea19dc6795a3fe736e6b8555e')
+
+prepare() {
+  mv -v "${_name}-${pkgver}" "$pkgname-$pkgver"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  python setup.py build
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  export PYTHONPATH="build:${PYTHONPATH}"
+  pytest -v
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  python setup.py install --skip-build \
+--optimize=1 \
+--root="${pkgdir}"
+  install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -vDm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+}


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

2021-06-04 Thread Felix Yan via arch-commits
Date: Friday, June 4, 2021 @ 16:06:41
  Author: felixonmars
Revision: 955919

upgpkg: python-identify 2.2.8-1

Modified:
  python-identify/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-04 15:00:11 UTC (rev 955918)
+++ PKGBUILD2021-06-04 16:06:41 UTC (rev 955919)
@@ -3,7 +3,7 @@
 
 _name=identify
 pkgname=python-identify
-pkgver=2.2.7
+pkgver=2.2.8
 pkgrel=1
 pkgdesc="File identification library for Python"
 arch=('any')
@@ -14,8 +14,8 @@
 checkdepends=('python-editdistance-s' 'python-pytest')
 optdepends=('python-editdistance-s: for returning license identifiers')
 
source=("${_name}-${pkgver}.tar.gz::https://github.com/chriskuehl/${_name}/archive/v${pkgver}.tar.gz;)
-sha512sums=('f3c4073a9018ba595c8535447c7ccb20ca1f8d8bb006b4662db19b3356afc33d810b2073810b86d7dec4572b151c53301feca09bf0662d4d683febbdf7735e06')
-b2sums=('988aecb3f32b1d1416984ad7cb5937f85600e222a1053d2800dda1c498fea2660f86ee42208611c71e29b9827e212992fed35697a3d24f02814cc6ea8a560615')
+sha512sums=('d166f37fa60cafc0fb624cac9626115adaecd8ec88f42ce71b81794b6aa8301e42f459bfbc1da3d81709ee5681184e927e9111a906a22ec8c977b24f1e9dc17f')
+b2sums=('46bf6631c6006ad2326f175257ee2cb4324ac463419cb50df0919768b2787afcc135dc1982ee1feb4a5efef6990f3224f63fb2dea19dc6795a3fe736e6b8555e')
 
 prepare() {
   mv -v "${_name}-${pkgver}" "$pkgname-$pkgver"


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

2021-06-04 Thread Evangelos Foutras via arch-commits
Date: Friday, June 4, 2021 @ 11:08:54
  Author: foutrelis
Revision: 955914

archrelease: copy trunk to multilib-staging-x86_64

Added:
  lib32-mesa/repos/multilib-staging-x86_64/LICENSE
(from rev 955913, lib32-mesa/trunk/LICENSE)
  lib32-mesa/repos/multilib-staging-x86_64/PKGBUILD
(from rev 955913, lib32-mesa/trunk/PKGBUILD)
Deleted:
  lib32-mesa/repos/multilib-staging-x86_64/LICENSE
  lib32-mesa/repos/multilib-staging-x86_64/PKGBUILD

--+
 LICENSE  |  166 
 PKGBUILD |  418 ++---
 2 files changed, 292 insertions(+), 292 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2021-06-04 11:08:47 UTC (rev 955913)
+++ LICENSE 2021-06-04 11:08:54 UTC (rev 955914)
@@ -1,83 +0,0 @@
-The Mesa 3D Graphics Library
-
-Disclaimer
-
-   Mesa is a 3-D graphics library with an API which is very similar to
-   that of [1]OpenGL.* To the extent that Mesa utilizes the OpenGL command
-   syntax or state machine, it is being used with authorization from
-   [2]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 [3]Silicon Graphics Incorporated.
-
-License / Copyright Information
-
-   The Mesa distribution consists of several components. Different
-   copyrights and licenses apply to different components. For example, the
-   GLX client code uses the SGI Free Software License B, and 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
-THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
-
-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   License
---
-Main Mesa codesrc/mesa/  MIT
-
-Device driverssrc/mesa/drivers/* MIT, generally
-
-Gallium code  src/gallium/   MIT
-
-Ext headers   include/GL/glext.h Khronos
-  include/GL/glxext.h
-
-GLX client code   src/glx/   SGI Free Software License B
-
-C11 threadinclude/c11/threads*.h Boost (permissive) emulation
-
-   In general, consult the source files for license terms.
-
-References
-
-   1. https://www.opengl.org/
-   2. https://www.sgi.com/
-   3. https://www.sgi.com/

Copied: lib32-mesa/repos/multilib-staging-x86_64/LICENSE (from rev 955913, 
lib32-mesa/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2021-06-04 11:08:54 UTC (rev 955914)
@@ -0,0 +1,83 @@
+The Mesa 3D Graphics Library
+
+Disclaimer
+
+   Mesa is a 3-D graphics library with an API which is very similar to
+   that of [1]OpenGL.* To the extent that Mesa utilizes the OpenGL command
+   syntax or state machine, it is being used with authorization from
+   [2]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
+   

[arch-commits] Commit in alsa-lib/repos/testing-x86_64 (3 files)

2021-06-04 Thread David Runge via arch-commits
Date: Friday, June 4, 2021 @ 11:28:58
  Author: dvzrv
Revision: 417099

archrelease: copy trunk to testing-x86_64

Added:
  alsa-lib/repos/testing-x86_64/PKGBUILD
(from rev 417098, alsa-lib/trunk/PKGBUILD)
  alsa-lib/repos/testing-x86_64/alsa-lib.install
(from rev 417098, alsa-lib/trunk/alsa-lib.install)
Deleted:
  alsa-lib/repos/testing-x86_64/PKGBUILD

--+
 PKGBUILD |  105 ++---
 alsa-lib.install |7 +++
 2 files changed, 68 insertions(+), 44 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-04 11:28:50 UTC (rev 417098)
+++ PKGBUILD2021-06-04 11:28:58 UTC (rev 417099)
@@ -1,44 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: judd 
-
-pkgname=alsa-lib
-pkgver=1.2.5
-pkgrel=1
-pkgdesc="An alternative implementation of Linux sound support"
-arch=('x86_64')
-url="https://www.alsa-project.org;
-license=('LGPL2.1')
-depends=('glibc' 'alsa-topology-conf' 'alsa-ucm-conf')
-provides=('libasound.so' 'libatopology.so')
-source=("https://www.alsa-project.org/files/pub/lib/${pkgname}-${pkgver}.tar.bz2"{,.sig})
-sha512sums=('d9b53484737a3684aac7e08b4b18400aac10fec1a78a8bf9101944bea2c50710bc7355e9bb0012541b067e2d5ee7b1b818bf1bdbffbb2b2d7ad0eb15efe49725'
-'SKIP')
-b2sums=('84fe4e22d4316bfc84f15f2493f40f113eb3db7722f230550586533e80daf214140164e8ddc1a399b82a3fd0fb21125ff225cfeb45eaa19320c2e2aa3997c662'
-'SKIP')
-validpgpkeys=('F04DF50737AC1A884C4B3D718380596DA6E59C91') # ALSA Release Team 
(Package Signing Key v1) 
-
-prepare() {
-  cd "$pkgname-$pkgver"
-  autoreconf -vfi
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  ./configure --prefix=/usr \
-  --without-debug
-  make
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  export LD_LIBRARY_PATH="${PWD}/src/.libs/:${LD_LIBRARY_PATH}"
-  make -k check
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-  make DESTDIR="$pkgdir" install -C doc
-  install -vDm 644 {MEMORY-LEAK,TODO,NOTES,ChangeLog,doc/asoundrc.txt} \
--t "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: alsa-lib/repos/testing-x86_64/PKGBUILD (from rev 417098, 
alsa-lib/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-04 11:28:58 UTC (rev 417099)
@@ -0,0 +1,61 @@
+# Maintainer: David Runge 
+# Contributor: judd 
+
+pkgname=alsa-lib
+pkgver=1.2.5
+pkgrel=2
+pkgdesc="An alternative implementation of Linux sound support"
+arch=('x86_64')
+url="https://www.alsa-project.org;
+license=('LGPL2.1')
+depends=('glibc' 'alsa-topology-conf' 'alsa-ucm-conf')
+provides=('libasound.so' 'libatopology.so')
+install="${pkgname}.install"
+source=("https://www.alsa-project.org/files/pub/lib/${pkgname}-${pkgver}.tar.bz2"{,.sig}
+
"${pkgname}-1.2.5-load_all_cards.patch::https://github.com/alsa-project/alsa-lib/commit/ddfc32abf5697de1618b9e7ffdf57a0f97013090.patch;
+
"${pkgname}-1.2.5-private_device_prefix1.patch::https://github.com/alsa-project/alsa-lib/commit/0e4ba2ea8c0402f12a645032a14693eb9b1278e6.patch;
+
"${pkgname}-1.2.5-private_device_prefix2.patch::https://github.com/alsa-project/alsa-lib/commit/9621d0bff2e60b43e329ffa5059ab19f2914ec14.patch;)
+sha512sums=('d9b53484737a3684aac7e08b4b18400aac10fec1a78a8bf9101944bea2c50710bc7355e9bb0012541b067e2d5ee7b1b818bf1bdbffbb2b2d7ad0eb15efe49725'
+'SKIP'
+
'c5ee4d27001c31772c24595051424869961e1b39b45565256650b63471e2be1236b17cdec5e66e182f1894ef8b09b5f6f959b8f8c6e46a2a0131a8512a9d2516'
+
'dfe42b349bfc73682158dfeebe97c3f43d28cdccad307a239b2ed1e30d289cfe9b1577799c34917b07ac98f48b28939aba9c6e8b0db322fc6dd36bdb96d56208'
+
'294b79947cbbb00208495ada2baffdaef5e7aa4ea6b49d94733b86bcde59eef7589b87d2d856991405bcb5df8ca48f13c4e89c0a0c163f1abff98aad2c52cd88')
+b2sums=('84fe4e22d4316bfc84f15f2493f40f113eb3db7722f230550586533e80daf214140164e8ddc1a399b82a3fd0fb21125ff225cfeb45eaa19320c2e2aa3997c662'
+'SKIP'
+
'b43d5cb0efbe0c7c440e31fceb6c6b6a4f8b234ee4b12e74382ad83b16d67778a3d72838554c8813fec2a6200ce2cadac360cb78de275cf73a9c9010f3ba0287'
+
'2b6062724be3bfd224a3e615d0a1d557a847f628bd01bd9eb155782f3926f7734b63ea1e10369e7294af9d82ad80ad23bb269dbc7a3659a9273758248d08c487'
+
'7b1a251d4d6fe7f47cc7ec6dc5f20536fca8f455cb321bcbd6f32544e3ecedce4f5fed3191fbbfd9ef79ad74b2ca71dbe12faafe231ac3bd53301a91bcf9934f')
+validpgpkeys=('F04DF50737AC1A884C4B3D718380596DA6E59C91') # ALSA Release Team 
(Package Signing Key v1) 
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  # fix loading of multiple cards
+  # https://github.com/alsa-project/alsa-lib/issues/143
+  patch -Np1 -i ../"${pkgname}-1.2.5-load_all_cards.patch"
+  # probably fix issues with pipewire:
+  # https://github.com/alsa-project/alsa-lib/issues/142
+  patch -Np1 -i ../"${pkgname}-1.2.5-private_device_prefix1.patch"
+  patch -Np1 -i 

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

2021-06-04 Thread Jelle van der Waa via arch-commits
Date: Friday, June 4, 2021 @ 10:48:17
  Author: jelle
Revision: 955912

archrelease: copy trunk to community-x86_64

Added:
  diffoscope/repos/community-x86_64/PKGBUILD
(from rev 955911, diffoscope/trunk/PKGBUILD)
Deleted:
  diffoscope/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-04 10:48:12 UTC (rev 955911)
+++ PKGBUILD2021-06-04 10:48:17 UTC (rev 955912)
@@ -1,105 +0,0 @@
-# Maintainer: Levente Polyak 
-
-pkgname=diffoscope
-pkgver=176
-pkgrel=1
-pkgdesc='Tool for in-depth comparison of files, archives, and directories'
-url='https://diffoscope.org/'
-arch=('x86_64')
-license=('GPL3')
-depends=('python-magic' 'python-libarchive-c' 'python-distro' 
'python-defusedxml'
- 'python-tlsh')
-optdepends=(
-  'acl: access control list utilities support'
-  'binutils: binary utilities support'
-  'binwalk: binwalk support'
-  'bzip2: bzip2 utilities support'
-  'cdrtools: ISO utilities support'
-  'colord: ICC profiles support'
-  'cpio: cpio archive support'
-  'diffutils: diff utilities support'
-  'docx2txt: docx comparing support'
-  'dtc: device tree comparing support'
-  'e2fsprogs: Ext2/3/4 filesystem utilities support'
-  'enjarify: Android dex file support'
-  'hdf5: Hierarchical Data Format support'
-  'imagemagick: ImageMagick identify support'
-  'fpc: Free Pascal utilities support'
-  'java-environment: java utilities support'
-  'libcaca: image compare support'
-  'llvm: LLVM bitcode files support'
-  'lz4: lz4 compression support'
-  'odt2txt: odt comparing support'
-  'fontforge: bitmap font utilities support'
-  'gettext: GNU internationalization utilities support'
-  'ghc: haskell utilities support'
-  'giflib: gifbuild utilities support'
-  'gnupg: GNU privacy guard support'
-  'gnumeric: GNOME Spreadsheet support'
-  'mono: mono support'
-  'openssh: OpenSSH key comparing support'
-  'openssl: .p7c and .p7b certificates. support'
-  'pgpdump: PGP files support'
-  'poppler: PDF utilities support'
-  'r: R language support'
-  'radare2: decompiler for executables'
-  'sqlite: SQLite support'
-  'squashfs-tools: squashfs filesystem support'
-  #'python-guestfs: guestfs filesystem support'
-  'python-argcomplete: completion support'
-  'python-jsbeautifier: javascript beautifier support'
-  'python-progressbar: show progressbar support'
-  'tcpdump: pcap matching support'
-  'uboot-tools: FIT image support'
-  'unzip: zip utilities support'
-  'gzip: gzip utilities support'
-  'tar: tar utilities support'
-# 'wabt: webassembly support' unittest fails
-  'xxd: xxd utilities support'
-  'xz: XZ and LZMA utilities support'
-  'zstd: zst compression'
-)
-makedepends=('help2man' 'python-docutils' 'git')
-checkdepends=(
-  'python-pytest' 'python-jsbeautifier' 'python-h5py' 'acl' 'binutils' 'bzip2' 
'cdrtools' 'cpio' 'diffutils' 'e2fsprogs' 'enjarify'
-  'hdf5' 'imagemagick' 'java-environment=11' 'fontforge' 'gettext' 'ghc' 
'gnupg' 'mono' 'pgpdump' 'poppler' 'sqlite' 'squashfs-tools'
-  'lz4' 'unzip' 'gzip' 'tar' 'tcpdump' 'vim' 'xz' 'llvm' 'colord' 'fpc' 
'openssh' 'openssl' 'odt2txt' 'docx2txt' 'r' 'dtc' 'giflib'
-  'gnumeric' 'python-progressbar' 'binwalk' 'python-argcomplete' 'zstd' 
'uboot-tools')
-source=(https://diffoscope.org/archive/diffoscope-${pkgver}.tar.bz2{,.asc})
-sha512sums=('b359217eca13ae6f35a58c8e174483d30c6dcf490d5b3038c00e8b33685c3598d1bb542accb2e7239dbc1a970e4859d03f0de4efb74d58e8336727c3ca92e3e8'
-'SKIP')
-b2sums=('60227d4861d0381a4c339103d0cc759a701d1ed75b11fe4b428298b37244d5fff74338263ae8c49f11a20eb0ec5f20f924ad6d541a26cac0a4eaa1f8b3780259'
-'SKIP')
-validpgpkeys=("C2FE4BD271C139B86C533E461E953E27D4311E58") # "Chris Lamb 
"
-
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  sed '/python-magic/d' -i setup.py
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  python setup.py build
-  make -C doc
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  PYTHONPATH=".:${PYTHONPATH}" PYTHONDONTWRITEBYTECODE=1 py.test \
--k 'not test_ppu and not test_superblock and not test_wasm and not 
test_text_proper_indentation and not test_different and not test_equal'
-# file upstream bug, see 2cd654b450ce82fb86f55223cc01ba1abdac58a8 in 
diffoscope.git
-# bug introduced by revert in https://bugs.archlinux.org/task/70261
-# unsquashfs output differs from fixture.
-# ppu bug https://salsa.debian.org/reproducible-builds/diffoscope/issues/9
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  export PYTHONHASHSEED=0
-  python setup.py install --skip-build -O1 --root="${pkgdir}"
-  install -Dm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 doc/diffoscope.1 -t "${pkgdir}/usr/share/man/man1"
-}
-
-# vim: ts=2 sw=2 et:

Copied: diffoscope/repos/community-x86_64/PKGBUILD (from rev 955911, 

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

2021-06-04 Thread David Runge via arch-commits
Date: Friday, June 4, 2021 @ 10:55:44
  Author: dvzrv
Revision: 417097

archrelease: copy trunk to testing-x86_64

Added:
  alsa-utils/repos/testing-x86_64/PKGBUILD
(from rev 417096, alsa-utils/trunk/PKGBUILD)
Deleted:
  alsa-utils/repos/testing-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-04 10:54:54 UTC (rev 417096)
+++ PKGBUILD2021-06-04 10:55:44 UTC (rev 417097)
@@ -1,48 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: Tobias Powalowski 
-# Contributor: judd 
-
-pkgname=alsa-utils
-pkgver=1.2.5
-pkgrel=1
-pkgdesc="Advanced Linux Sound Architecture - Utilities"
-arch=('x86_64')
-url="https://www.alsa-project.org;
-license=('GPL2')
-depends=('glibc' 'pciutils' 'psmisc')
-makedepends=('alsa-lib' 'docbook-xsl' 'fftw' 'libsamplerate' 'ncurses'
-'python-docutils' 'systemd' 'xmlto')
-optdepends=('fftw: for alsabat')
-# we require /var/lib/alsa for state file
-options=(emptydirs)
-source=("https://www.alsa-project.org/files/pub/utils/${pkgname}-${pkgver}.tar.bz2"{,.sig})
-sha512sums=('0e319e553c9c209a46f5c83c50007bd82acf1c9cf78649978b3ab6fbb4349f51c1c7c6a975a8c24d25ba07ad5325e74d2c34dc5c89180998a0f63d1326fde8b1'
-'SKIP')
-b2sums=('52cbe978390e1b5600bf7422e67ece1d24a946d99acddbc059bf6eb3a0b8dfe37cc573167013296e923bf1597973eb55b2580eaf849e088822ba7b2afc14279f'
-'SKIP')
-validpgpkeys=('F04DF50737AC1A884C4B3D718380596DA6E59C91') # ALSA Release Team 
(Package Signing Key v1) 
-
-prepare() {
-  cd "${pkgname}-${pkgver}"
-  autoreconf -vfi
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  ./configure --prefix=/usr \
-  --disable-alsaconf \
-  --sbindir=/usr/bin \
-  --with-udev-rules-dir=/usr/lib/udev/rules.d \
-  --with-systemdsystemunitdir=/usr/lib/systemd/system
-  make
-}
-
-package() {
-  depends+=('libasound.so' 'libatopology.so' 'libformw.so' 'libmenuw.so'
-  'libncursesw.so' 'libpanelw.so' 'libsamplerate.so')
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -vDm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-  # dir where to save ALSA state
-  install -d "${pkgdir}/var/lib/alsa"
-}

Copied: alsa-utils/repos/testing-x86_64/PKGBUILD (from rev 417096, 
alsa-utils/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-04 10:55:44 UTC (rev 417097)
@@ -0,0 +1,54 @@
+# Maintainer: David Runge 
+# Contributor: Tobias Powalowski 
+# Contributor: judd 
+
+pkgname=alsa-utils
+pkgver=1.2.5
+pkgrel=2
+pkgdesc="Advanced Linux Sound Architecture - Utilities"
+arch=('x86_64')
+url="https://www.alsa-project.org;
+license=('GPL2')
+depends=('glibc' 'pciutils' 'psmisc')
+makedepends=('alsa-lib' 'docbook-xsl' 'fftw' 'libsamplerate' 'ncurses'
+'python-docutils' 'systemd' 'xmlto')
+optdepends=('fftw: for alsabat')
+# we require /var/lib/alsa for state file
+options=(emptydirs)
+source=("https://www.alsa-project.org/files/pub/utils/${pkgname}-${pkgver}.tar.bz2"{,.sig}
+
"${pkgname}-1.2.5-nested_iteration.patch::https://github.com/alsa-project/alsa-utils/commit/78212445de4c8e07873cbc7dff2abcacd031f151.patch;)
+sha512sums=('0e319e553c9c209a46f5c83c50007bd82acf1c9cf78649978b3ab6fbb4349f51c1c7c6a975a8c24d25ba07ad5325e74d2c34dc5c89180998a0f63d1326fde8b1'
+'SKIP'
+
'0cdc8c41b70be714515f355a630fc28b68b95cb7b5a5cbb58c1b288ee0edf3128eb8f80bb874844cf11268c89bb04e82f1fe8c4c1ebb7cd7334d28f2896d5a85')
+b2sums=('52cbe978390e1b5600bf7422e67ece1d24a946d99acddbc059bf6eb3a0b8dfe37cc573167013296e923bf1597973eb55b2580eaf849e088822ba7b2afc14279f'
+'SKIP'
+
'5f5956c72a0e9605011b953f98ae29803f50e0c427c794331d1b99e7c1a4dc81379a074a1403ba71737cf8de03c0d749e4544a22a8e2f39984ed9dd6482b40dd')
+validpgpkeys=('F04DF50737AC1A884C4B3D718380596DA6E59C91') # ALSA Release Team 
(Package Signing Key v1) 
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  # fix alsactl soundcard detection:
+  # https://github.com/alsa-project/alsa-lib/issues/142
+  patch -Np1 -i ../"${pkgname}-1.2.5-nested_iteration.patch"
+  autoreconf -vfi
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  ./configure --prefix=/usr \
+  --disable-alsaconf \
+  --sbindir=/usr/bin \
+  --with-udev-rules-dir=/usr/lib/udev/rules.d \
+  --with-systemdsystemunitdir=/usr/lib/systemd/system
+  make
+}
+
+package() {
+  depends+=('libasound.so' 'libatopology.so' 'libformw.so' 'libmenuw.so'
+  'libncursesw.so' 'libpanelw.so' 'libsamplerate.so')
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -vDm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  # dir where to save ALSA state
+  install -d "${pkgdir}/var/lib/alsa"
+}


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

2021-06-04 Thread Evangelos Foutras via arch-commits
Date: Friday, June 4, 2021 @ 11:08:47
  Author: foutrelis
Revision: 955913

upgpkg: lib32-mesa 21.1.2-1: new upstream release

Modified:
  lib32-mesa/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-04 10:48:17 UTC (rev 955912)
+++ PKGBUILD2021-06-04 11:08:47 UTC (rev 955913)
@@ -6,8 +6,8 @@
 pkgbase=lib32-mesa
 pkgname=('lib32-vulkan-mesa-layers' 'lib32-opencl-mesa' 'lib32-vulkan-intel' 
'lib32-vulkan-radeon' 'lib32-libva-mesa-driver' 'lib32-mesa-vdpau' 'lib32-mesa')
 pkgdesc="An open-source implementation of the OpenGL specification (32-bit)"
-pkgver=21.1.1
-pkgrel=2
+pkgver=21.1.2
+pkgrel=1
 arch=('x86_64')
 makedepends=('python-mako' 'lib32-libxml2' 'lib32-expat' 'lib32-libx11' 
'xorgproto' 'lib32-libdrm'
  'lib32-libxshmfence' 'lib32-libxxf86vm' 'lib32-libxdamage' 
'lib32-libvdpau'
@@ -18,7 +18,7 @@
 license=('custom')
 source=(https://mesa.freedesktop.org/archive/mesa-${pkgver}.tar.xz{,.sig}
 LICENSE)
-sha512sums=('79d0e2b0e1e590e7f36a082df3584010a553af0b3060bd2d3a7ace700ac7a8d1b7734ba67f2e193dd441434eeec74a16e0dbcbf8c15061b5dd5d6a1feca73d62'
+sha512sums=('a7907fa29fdb4e137015ee5405b9c8c0769ef9354bbe963c1af80318b398c05c79db6129b583106d620c42a5e9b625611b648fd5207334eb9b588d7963defc70'
 'SKIP'
 
'f9f0d0ccf166fe6cb684478b6f1e1ab1f2850431c06aa041738563eb1808a004e52cdec823c103c9e180f03ffc083e95974d291353f0220fe52ae6d4897fecc7')
 validpgpkeys=('8703B6700E7EE06D7A39B8D6EDAE37B02CEB490D'  # Emil Velikov 



[arch-commits] Commit in lrs/repos/community-x86_64 (5 files)

2021-06-04 Thread Antonio Rojas via arch-commits
Date: Friday, June 4, 2021 @ 15:00:11
  Author: arojas
Revision: 955918

archrelease: copy trunk to community-x86_64

Added:
  lrs/repos/community-x86_64/PKGBUILD
(from rev 955917, lrs/trunk/PKGBUILD)
  lrs/repos/community-x86_64/lrs-system-cflags.patch
(from rev 955917, lrs/trunk/lrs-system-cflags.patch)
Deleted:
  lrs/repos/community-x86_64/PKGBUILD
  lrs/repos/community-x86_64/lrs-missing-include.patch
  lrs/repos/community-x86_64/lrs-system-cflags.patch

---+
 PKGBUILD  |   63 +
 lrs-missing-include.patch |   34 
 lrs-system-cflags.patch   |   74 +---
 3 files changed, 66 insertions(+), 105 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-04 15:00:00 UTC (rev 955917)
+++ PKGBUILD2021-06-04 15:00:11 UTC (rev 955918)
@@ -1,33 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=lrs
-pkgver=071.a
-_pkgver=${pkgver/./}
-pkgrel=1
-pkgdesc="C implementation of the reverse search algorithm for vertex 
enumeration/convex hull problems"
-arch=(x86_64)
-url="http://cgm.cs.mcgill.ca/~avis/C/lrs.html;
-license=(GPL)
-depends=(gmp)
-source=("http://cgm.cs.mcgill.ca/~avis/C/lrslib/archive/lrslib-$_pkgver.tar.gz;
-lrs-system-cflags.patch
-lrs-missing-include.patch)
-sha256sums=('926636ea68de46625f141f6e025dce967cc7e68cf4bf4a597375c063f5c11673'
-'8e43f9f6c583c653e28b75907f27f616f45f36d6fc677a4aae6a7004d60424c0'
-'61da0543e92ab242df1d5adcb6bb842a3c489c011c858705278de1c6cf580649')
-
-prepare() {
-  cd lrslib-$_pkgver
-  patch -p1 -i ../lrs-system-cflags.patch # Use system CFLAGS/LDFLAGS
-  patch -p1 -i ../lrs-missing-include.patch # Install missing header
-}
-
-build() {
-  cd lrslib-$_pkgver
-  make
-}
-
-package() {
-  cd lrslib-$_pkgver
-  make DESTDIR="$pkgdir" prefix=/usr install
-}

Copied: lrs/repos/community-x86_64/PKGBUILD (from rev 955917, 
lrs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-04 15:00:11 UTC (rev 955918)
@@ -0,0 +1,30 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=lrs
+pkgver=071.b
+_pkgver=${pkgver/./}
+pkgrel=1
+pkgdesc='C implementation of the reverse search algorithm for vertex 
enumeration/convex hull problems'
+arch=(x86_64)
+url='http://cgm.cs.mcgill.ca/~avis/C/lrs.html'
+license=(GPL)
+depends=(gmp)
+source=(http://cgm.cs.mcgill.ca/~avis/C/lrslib/archive/lrslib-$_pkgver.tar.gz
+lrs-system-cflags.patch)
+sha256sums=('df22682cd742315fe04f866cfe4804d5950f7dc7f514d5b5f36f5b7f5aff9188'
+'617ed06ae2584ef3349a3b1f6ab1a4acd11f18211394458498e1223a65bb0e73')
+
+prepare() {
+  cd lrslib-$_pkgver
+  patch -p1 -i ../lrs-system-cflags.patch # Use system CFLAGS/LDFLAGS
+}
+
+build() {
+  cd lrslib-$_pkgver
+  make
+}
+
+package() {
+  cd lrslib-$_pkgver
+  make DESTDIR="$pkgdir" prefix=/usr install
+}

Deleted: lrs-missing-include.patch
===
--- lrs-missing-include.patch   2021-06-04 15:00:00 UTC (rev 955917)
+++ lrs-missing-include.patch   2021-06-04 15:00:11 UTC (rev 955918)
@@ -1,34 +0,0 @@
 lrslib-071/makefile.orig   2020-06-04 09:58:02.217703517 +
-+++ lrslib-071/makefile2020-06-04 09:59:20.505523290 +
-@@ -239,7 +239,7 @@
- # install targets
- # where to install binaries, libraries, include files
- prefix ?= /usr/local
--INSTALL_INCLUDES=lrslib.h lrsdriver.h lrsgmp.h lrslong.h lrsmp.h
-+INSTALL_INCLUDES=lrslib.h lrsdriver.h lrsgmp.h lrslong.h lrsmp.h lrsrestart.h
- 
- install: all-shared install-common
-   mkdir -p $(DESTDIR)${prefix}/bin
-diff --git a/lrslib-071/lrslib.h.orig b/lrslib-071/lrslib.h
-index a2eb4b5..ee48475 100644
 lrslib-071/lrslib.h.orig
-+++ lrslib-071/lrslib.h
-@@ -148,6 +148,8 @@
- 
- #include ARITH
- 
-+#include "lrsdriver.h"
-+
- #ifndef SIGNALS
- #include 
- #include 
 lrslib-071/lrslib.c.orig2020-06-04 10:43:56.790948185 +
-+++ lrslib-071/lrslib.c 2020-06-04 10:44:05.641075898 +
-@@ -27,7 +27,6 @@
- #include 
- #include 
- #include 
--#include "lrsrestart.h"
- #include "lrslib.h"
- 
- static unsigned long dict_count, dict_limit, cache_tries, cache_misses;

Deleted: lrs-system-cflags.patch
===
--- lrs-system-cflags.patch 2021-06-04 15:00:00 UTC (rev 955917)
+++ lrs-system-cflags.patch 2021-06-04 15:00:11 UTC (rev 955918)
@@ -1,38 +0,0 @@
 lrslib-071/makefile.orig   2020-06-04 09:58:02.217703517 +
-+++ lrslib-071/makefile2020-06-04 09:59:20.505523290 +
-@@ -32,10 +32,9 @@
- #LIBDIR = /usr/lib
- 
- #Kyoto machines usage
--INCLUDEDIR = /usr/local/include
--LIBDIR = /usr/local/lib
-+INCLUDEDIR = /usr/include
-+LIBDIR = /usr/lib
- 
--CFLAGS = -O3 -Wall 
- #CFLAGS = -g -Wall 
- 
- 

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

2021-06-04 Thread Antonio Rojas via arch-commits
Date: Friday, June 4, 2021 @ 15:00:00
  Author: arojas
Revision: 955917

Update to 071b

Modified:
  lrs/trunk/PKGBUILD
  lrs/trunk/lrs-system-cflags.patch
Deleted:
  lrs/trunk/lrs-missing-include.patch

---+
 PKGBUILD  |   17 +++--
 lrs-missing-include.patch |   34 --
 lrs-system-cflags.patch   |   22 ++
 3 files changed, 17 insertions(+), 56 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-06-04 11:39:12 UTC (rev 955916)
+++ PKGBUILD2021-06-04 15:00:00 UTC (rev 955917)
@@ -1,25 +1,22 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=lrs
-pkgver=071.a
+pkgver=071.b
 _pkgver=${pkgver/./}
 pkgrel=1
-pkgdesc="C implementation of the reverse search algorithm for vertex 
enumeration/convex hull problems"
+pkgdesc='C implementation of the reverse search algorithm for vertex 
enumeration/convex hull problems'
 arch=(x86_64)
-url="http://cgm.cs.mcgill.ca/~avis/C/lrs.html;
+url='http://cgm.cs.mcgill.ca/~avis/C/lrs.html'
 license=(GPL)
 depends=(gmp)
-source=("http://cgm.cs.mcgill.ca/~avis/C/lrslib/archive/lrslib-$_pkgver.tar.gz;
-lrs-system-cflags.patch
-lrs-missing-include.patch)
-sha256sums=('926636ea68de46625f141f6e025dce967cc7e68cf4bf4a597375c063f5c11673'
-'8e43f9f6c583c653e28b75907f27f616f45f36d6fc677a4aae6a7004d60424c0'
-'61da0543e92ab242df1d5adcb6bb842a3c489c011c858705278de1c6cf580649')
+source=(http://cgm.cs.mcgill.ca/~avis/C/lrslib/archive/lrslib-$_pkgver.tar.gz
+lrs-system-cflags.patch)
+sha256sums=('df22682cd742315fe04f866cfe4804d5950f7dc7f514d5b5f36f5b7f5aff9188'
+'617ed06ae2584ef3349a3b1f6ab1a4acd11f18211394458498e1223a65bb0e73')
 
 prepare() {
   cd lrslib-$_pkgver
   patch -p1 -i ../lrs-system-cflags.patch # Use system CFLAGS/LDFLAGS
-  patch -p1 -i ../lrs-missing-include.patch # Install missing header
 }
 
 build() {

Deleted: lrs-missing-include.patch
===
--- lrs-missing-include.patch   2021-06-04 11:39:12 UTC (rev 955916)
+++ lrs-missing-include.patch   2021-06-04 15:00:00 UTC (rev 955917)
@@ -1,34 +0,0 @@
 lrslib-071/makefile.orig   2020-06-04 09:58:02.217703517 +
-+++ lrslib-071/makefile2020-06-04 09:59:20.505523290 +
-@@ -239,7 +239,7 @@
- # install targets
- # where to install binaries, libraries, include files
- prefix ?= /usr/local
--INSTALL_INCLUDES=lrslib.h lrsdriver.h lrsgmp.h lrslong.h lrsmp.h
-+INSTALL_INCLUDES=lrslib.h lrsdriver.h lrsgmp.h lrslong.h lrsmp.h lrsrestart.h
- 
- install: all-shared install-common
-   mkdir -p $(DESTDIR)${prefix}/bin
-diff --git a/lrslib-071/lrslib.h.orig b/lrslib-071/lrslib.h
-index a2eb4b5..ee48475 100644
 lrslib-071/lrslib.h.orig
-+++ lrslib-071/lrslib.h
-@@ -148,6 +148,8 @@
- 
- #include ARITH
- 
-+#include "lrsdriver.h"
-+
- #ifndef SIGNALS
- #include 
- #include 
 lrslib-071/lrslib.c.orig2020-06-04 10:43:56.790948185 +
-+++ lrslib-071/lrslib.c 2020-06-04 10:44:05.641075898 +
-@@ -27,7 +27,6 @@
- #include 
- #include 
- #include 
--#include "lrsrestart.h"
- #include "lrslib.h"
- 
- static unsigned long dict_count, dict_limit, cache_tries, cache_misses;

Modified: lrs-system-cflags.patch
===
--- lrs-system-cflags.patch 2021-06-04 11:39:12 UTC (rev 955916)
+++ lrs-system-cflags.patch 2021-06-04 15:00:00 UTC (rev 955917)
@@ -1,6 +1,6 @@
 --- lrslib-071/makefile.orig   2020-06-04 09:58:02.217703517 +
 +++ lrslib-071/makefile2020-06-04 09:59:20.505523290 +
-@@ -32,10 +32,9 @@
+@@ -32,8 +32,8 @@
  #LIBDIR = /usr/lib
  
  #Kyoto machines usage
@@ -9,11 +9,9 @@
 +INCLUDEDIR = /usr/include
 +LIBDIR = /usr/lib
  
--CFLAGS = -O3 -Wall 
+ CFLAGS ?= -O3 -Wall
  #CFLAGS = -g -Wall 
- 
- #use this if you want only output file contain data between begin/end lines
-@@ -194,7 +193,7 @@
+@@ -228,7 +228,7 @@
  # Building (linking) the shared library, and relevant symlinks.
  
  ${SHLIB}: ${SHLIBOBJ}
@@ -22,17 +20,17 @@
  
  ${SONAME}: ${SHLIB}
ln -sf ${SHLIB} ${SONAME}
-@@ -207,11 +206,11 @@
+@@ -241,11 +240,11 @@
  all-shared: ${SHLIBBIN}
  
- lrs-shared: ${SHLINK} lrs.o
--  $(CC) lrs.o -o $@ -L . -llrs
-+  $(CC) lrs.o -o $@ -L . -llrs ${LDFLAGS}
+ lrs-shared: ${SHLINK} lrs-shared.o
+-  $(CC) $^ -o $@ -L . -llrs
++  $(CC) $^ -o $@ -L . -llrs ${LDFLAGS}
  
  
  lrsnash-shared: ${SHLINK}  lrsnash.c
--  $(CC) -DGMP -DMA lrsnash.c  lrsnashlib.c -I${INCLUDEDIR} -o $@ -L . 
-llrs -lgmp
-+  $(CC) -DGMP -DMA lrsnash.c  lrsnashlib.c -I${INCLUDEDIR} -o $@ -L . 
-llrs -lgmp ${LDFLAGS}
+-  $(CC) ${CFLAGS} -DGMP -DMA lrsnash.c  lrsnashlib.c -I${INCLUDEDIR} -o 
$@ -L . -llrs -lgmp
++  $(CC) ${CFLAGS} -DGMP -DMA lrsnash.c  lrsnashlib.c -I${INCLUDEDIR} -o 
$@ -L . -llrs -lgmp ${LDFLAGS}
  
- # build 

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

2021-06-04 Thread Frederik Schwan via arch-commits
Date: Friday, June 4, 2021 @ 11:39:12
  Author: freswa
Revision: 955916

archrelease: copy trunk to community-any

Added:
  ansible-lint/repos/community-any/PKGBUILD
(from rev 955915, ansible-lint/trunk/PKGBUILD)
  ansible-lint/repos/community-any/disable_use_scm_version.patch
(from rev 955915, ansible-lint/trunk/disable_use_scm_version.patch)
Deleted:
  ansible-lint/repos/community-any/PKGBUILD
  ansible-lint/repos/community-any/disable_use_scm_version.patch

---+
 PKGBUILD  |   76 
 disable_use_scm_version.patch |   62 
 2 files changed, 69 insertions(+), 69 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-04 11:39:09 UTC (rev 955915)
+++ PKGBUILD2021-06-04 11:39:12 UTC (rev 955916)
@@ -1,38 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Maintainer: Frederik Schwan 
-# Contributor: Sander Boom 
-
-pkgname=ansible-lint
-pkgver=5.0.11
-pkgrel=1
-pkgdesc="Checks playbooks for practices and behaviour that could potentially 
be improved."
-arch=('any')
-url="https://github.com/ansible/ansible-lint;
-license=('MIT')
-depends=('python' 'ansible-base' 'python-ruamel-yaml' 'python-pyaml' 
'python-rich' 'python-packaging'
-  'python-wcmatch' 'python-enrich' 'python-tenacity')
-checkdepends=('python-pytest')
-optdepends=('yamllint: check for yaml syntax mistakes'
-'ansible: check official ansible collections')
-source=(https://github.com/ansible/ansible-lint/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz
-disable_use_scm_version.patch)
-b2sums=('a2b3df9a3dddc6b038afcbd26377dd3e27e91e9ed4b9492b0d681df6f5f857fa947d48fd6d657c3c95eb6ed89f03b19d162c7042c2c62f5c1837d569854874e0'
-
'a090862e657bfc29c89b23b2ecc8c585e15f098310b997e39600b6bdf0cd433e1045e2da348ce27dc2d3c0f9ef01950cf0ec5e7b071bc43d85161faabd8a1f60')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  # stop setuptools from using the scm version which doesn't exist in this 
context
-  patch -Np1 < "${srcdir}"/disable_use_scm_version.patch
-  sed -i "/^\[metadata\]/a version = ${pkgver}" setup.cfg
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  python setup.py build
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  PYTHONHASHSEED=0 python setup.py install --root="${pkgdir}" --optimize=1
-  install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}
-}

Copied: ansible-lint/repos/community-any/PKGBUILD (from rev 955915, 
ansible-lint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-04 11:39:12 UTC (rev 955916)
@@ -0,0 +1,38 @@
+# Maintainer: Jelle van der Waa 
+# Maintainer: Frederik Schwan 
+# Contributor: Sander Boom 
+
+pkgname=ansible-lint
+pkgver=5.0.12
+pkgrel=1
+pkgdesc="Checks playbooks for practices and behaviour that could potentially 
be improved."
+arch=('any')
+url="https://github.com/ansible/ansible-lint;
+license=('MIT')
+depends=('python' 'ansible-base' 'python-ruamel-yaml' 'python-pyaml' 
'python-rich' 'python-packaging'
+  'python-wcmatch' 'python-enrich' 'python-tenacity')
+checkdepends=('python-pytest')
+optdepends=('yamllint: check for yaml syntax mistakes'
+'ansible: check official ansible collections')
+source=(https://github.com/ansible/ansible-lint/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz
+disable_use_scm_version.patch)
+b2sums=('b3a79edd1a77be80cee690b02ef1679af3bf332bb8ba18f98b5a016f0ce4b35289c5b19a9a4fa247bd3210e170a661a6605b3efa011b0934df902c5e4650679a'
+
'a090862e657bfc29c89b23b2ecc8c585e15f098310b997e39600b6bdf0cd433e1045e2da348ce27dc2d3c0f9ef01950cf0ec5e7b071bc43d85161faabd8a1f60')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  # stop setuptools from using the scm version which doesn't exist in this 
context
+  patch -Np1 < "${srcdir}"/disable_use_scm_version.patch
+  sed -i "/^\[metadata\]/a version = ${pkgver}" setup.cfg
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  python setup.py build
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  PYTHONHASHSEED=0 python setup.py install --root="${pkgdir}" --optimize=1
+  install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}
+}

Deleted: disable_use_scm_version.patch
===
--- disable_use_scm_version.patch   2021-06-04 11:39:09 UTC (rev 955915)
+++ disable_use_scm_version.patch   2021-06-04 11:39:12 UTC (rev 955916)
@@ -1,31 +0,0 @@
-diff -aur origsrc/ansible-lint-5.0.0/setup.cfg src/ansible-lint-5.0.0/setup.cfg
 aaa/setup.cfg  2021-02-09 19:19:11.689518714 +0100
-+++ bbb/setup.cfg  2021-02-09 19:19:30.538804812 +0100
-@@ -54,18 +54,12 @@
-   lint
- 
- [options]
--use_scm_version = True
- python_requires = >=3.6
- package_dir =
-   = src
- packages = find:
- zip_safe = False
- 
--# These are required during 

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

2021-06-04 Thread Jelle van der Waa via arch-commits
Date: Friday, June 4, 2021 @ 10:48:12
  Author: jelle
Revision: 955911

upgpkg: diffoscope 177-1

Modified:
  diffoscope/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-04 09:19:00 UTC (rev 955910)
+++ PKGBUILD2021-06-04 10:48:12 UTC (rev 955911)
@@ -1,7 +1,7 @@
 # Maintainer: Levente Polyak 
 
 pkgname=diffoscope
-pkgver=176
+pkgver=177
 pkgrel=1
 pkgdesc='Tool for in-depth comparison of files, archives, and directories'
 url='https://diffoscope.org/'
@@ -66,9 +66,9 @@
   'lz4' 'unzip' 'gzip' 'tar' 'tcpdump' 'vim' 'xz' 'llvm' 'colord' 'fpc' 
'openssh' 'openssl' 'odt2txt' 'docx2txt' 'r' 'dtc' 'giflib'
   'gnumeric' 'python-progressbar' 'binwalk' 'python-argcomplete' 'zstd' 
'uboot-tools')
 source=(https://diffoscope.org/archive/diffoscope-${pkgver}.tar.bz2{,.asc})
-sha512sums=('b359217eca13ae6f35a58c8e174483d30c6dcf490d5b3038c00e8b33685c3598d1bb542accb2e7239dbc1a970e4859d03f0de4efb74d58e8336727c3ca92e3e8'
+sha512sums=('d303bbadac7f48bb6cd40b5610255abc80e4f33f7a79e05f5b5c562ef704b65034a9e85271dba4a52e3b965880928d5ee57df51f7e1e8f8fb1d35aa7069517db'
 'SKIP')
-b2sums=('60227d4861d0381a4c339103d0cc759a701d1ed75b11fe4b428298b37244d5fff74338263ae8c49f11a20eb0ec5f20f924ad6d541a26cac0a4eaa1f8b3780259'
+b2sums=('6cd6003cc91a529b8ab18413d2099cc0e93144d278d949976286f39d7e5d2bf02cb5d1477e1e492e8f40d8fcfc341253d0bc313f533cf419fd3522b82d7091c1'
 'SKIP')
 validpgpkeys=("C2FE4BD271C139B86C533E461E953E27D4311E58") # "Chris Lamb 
"
 


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

2021-06-04 Thread Frederik Schwan via arch-commits
Date: Friday, June 4, 2021 @ 11:39:09
  Author: freswa
Revision: 955915

upgpkg: ansible-lint 5.0.12-1

Modified:
  ansible-lint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-04 11:08:54 UTC (rev 955914)
+++ PKGBUILD2021-06-04 11:39:09 UTC (rev 955915)
@@ -3,7 +3,7 @@
 # Contributor: Sander Boom 
 
 pkgname=ansible-lint
-pkgver=5.0.11
+pkgver=5.0.12
 pkgrel=1
 pkgdesc="Checks playbooks for practices and behaviour that could potentially 
be improved."
 arch=('any')
@@ -16,7 +16,7 @@
 'ansible: check official ansible collections')
 
source=(https://github.com/ansible/ansible-lint/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz
 disable_use_scm_version.patch)
-b2sums=('a2b3df9a3dddc6b038afcbd26377dd3e27e91e9ed4b9492b0d681df6f5f857fa947d48fd6d657c3c95eb6ed89f03b19d162c7042c2c62f5c1837d569854874e0'
+b2sums=('b3a79edd1a77be80cee690b02ef1679af3bf332bb8ba18f98b5a016f0ce4b35289c5b19a9a4fa247bd3210e170a661a6605b3efa011b0934df902c5e4650679a'
 
'a090862e657bfc29c89b23b2ecc8c585e15f098310b997e39600b6bdf0cd433e1045e2da348ce27dc2d3c0f9ef01950cf0ec5e7b071bc43d85161faabd8a1f60')
 
 prepare() {


[arch-commits] Commit in alsa-lib/trunk (PKGBUILD alsa-lib.install)

2021-06-04 Thread David Runge via arch-commits
Date: Friday, June 4, 2021 @ 11:28:50
  Author: dvzrv
Revision: 417098

upgpkg: alsa-lib 1.2.5-2: Rebuild to apply patches for card loading and 
pipewire.

Attempt to fix https://bugs.archlinux.org/task/71077 using upstream patches.
Add .install file to notify users about the need to restart audio daemons (e.g. 
pulseaudio or pipewire).

Added:
  alsa-lib/trunk/alsa-lib.install
Modified:
  alsa-lib/trunk/PKGBUILD

--+
 PKGBUILD |   25 +
 alsa-lib.install |7 +++
 2 files changed, 28 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-06-04 10:55:44 UTC (rev 417097)
+++ PKGBUILD2021-06-04 11:28:50 UTC (rev 417098)
@@ -3,7 +3,7 @@
 
 pkgname=alsa-lib
 pkgver=1.2.5
-pkgrel=1
+pkgrel=2
 pkgdesc="An alternative implementation of Linux sound support"
 arch=('x86_64')
 url="https://www.alsa-project.org;
@@ -10,15 +10,32 @@
 license=('LGPL2.1')
 depends=('glibc' 'alsa-topology-conf' 'alsa-ucm-conf')
 provides=('libasound.so' 'libatopology.so')
-source=("https://www.alsa-project.org/files/pub/lib/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+install="${pkgname}.install"
+source=("https://www.alsa-project.org/files/pub/lib/${pkgname}-${pkgver}.tar.bz2"{,.sig}
+
"${pkgname}-1.2.5-load_all_cards.patch::https://github.com/alsa-project/alsa-lib/commit/ddfc32abf5697de1618b9e7ffdf57a0f97013090.patch;
+
"${pkgname}-1.2.5-private_device_prefix1.patch::https://github.com/alsa-project/alsa-lib/commit/0e4ba2ea8c0402f12a645032a14693eb9b1278e6.patch;
+
"${pkgname}-1.2.5-private_device_prefix2.patch::https://github.com/alsa-project/alsa-lib/commit/9621d0bff2e60b43e329ffa5059ab19f2914ec14.patch;)
 
sha512sums=('d9b53484737a3684aac7e08b4b18400aac10fec1a78a8bf9101944bea2c50710bc7355e9bb0012541b067e2d5ee7b1b818bf1bdbffbb2b2d7ad0eb15efe49725'
-'SKIP')
+'SKIP'
+
'c5ee4d27001c31772c24595051424869961e1b39b45565256650b63471e2be1236b17cdec5e66e182f1894ef8b09b5f6f959b8f8c6e46a2a0131a8512a9d2516'
+
'dfe42b349bfc73682158dfeebe97c3f43d28cdccad307a239b2ed1e30d289cfe9b1577799c34917b07ac98f48b28939aba9c6e8b0db322fc6dd36bdb96d56208'
+
'294b79947cbbb00208495ada2baffdaef5e7aa4ea6b49d94733b86bcde59eef7589b87d2d856991405bcb5df8ca48f13c4e89c0a0c163f1abff98aad2c52cd88')
 
b2sums=('84fe4e22d4316bfc84f15f2493f40f113eb3db7722f230550586533e80daf214140164e8ddc1a399b82a3fd0fb21125ff225cfeb45eaa19320c2e2aa3997c662'
-'SKIP')
+'SKIP'
+
'b43d5cb0efbe0c7c440e31fceb6c6b6a4f8b234ee4b12e74382ad83b16d67778a3d72838554c8813fec2a6200ce2cadac360cb78de275cf73a9c9010f3ba0287'
+
'2b6062724be3bfd224a3e615d0a1d557a847f628bd01bd9eb155782f3926f7734b63ea1e10369e7294af9d82ad80ad23bb269dbc7a3659a9273758248d08c487'
+
'7b1a251d4d6fe7f47cc7ec6dc5f20536fca8f455cb321bcbd6f32544e3ecedce4f5fed3191fbbfd9ef79ad74b2ca71dbe12faafe231ac3bd53301a91bcf9934f')
 validpgpkeys=('F04DF50737AC1A884C4B3D718380596DA6E59C91') # ALSA Release Team 
(Package Signing Key v1) 
 
 prepare() {
   cd "$pkgname-$pkgver"
+  # fix loading of multiple cards
+  # https://github.com/alsa-project/alsa-lib/issues/143
+  patch -Np1 -i ../"${pkgname}-1.2.5-load_all_cards.patch"
+  # probably fix issues with pipewire:
+  # https://github.com/alsa-project/alsa-lib/issues/142
+  patch -Np1 -i ../"${pkgname}-1.2.5-private_device_prefix1.patch"
+  patch -Np1 -i ../"${pkgname}-1.2.5-private_device_prefix2.patch"
   autoreconf -vfi
 }
 

Added: alsa-lib.install
===
--- alsa-lib.install(rev 0)
+++ alsa-lib.install2021-06-04 11:28:50 UTC (rev 417098)
@@ -0,0 +1,7 @@
+# arg 1:  the new package version
+# arg 2:  the old package version
+post_upgrade() {
+  if (( $(vercmp "$2" '1.2.5-1') < 0 )); then
+printf "WARNING: Non-backwards compatible changes to ALSA require 
restarting of audio engines (e.g. pulseaudio or pipewire) using it.\n"
+  fi
+}


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

2021-06-04 Thread David Runge via arch-commits
Date: Friday, June 4, 2021 @ 10:54:54
  Author: dvzrv
Revision: 417096

upgpkg: alsa-utils 1.2.5-2: Rebuild to apply patch for device detection.

Apply patch that fixes alsactl device detection.

Modified:
  alsa-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-04 10:34:00 UTC (rev 417095)
+++ PKGBUILD2021-06-04 10:54:54 UTC (rev 417096)
@@ -4,7 +4,7 @@
 
 pkgname=alsa-utils
 pkgver=1.2.5
-pkgrel=1
+pkgrel=2
 pkgdesc="Advanced Linux Sound Architecture - Utilities"
 arch=('x86_64')
 url="https://www.alsa-project.org;
@@ -15,15 +15,21 @@
 optdepends=('fftw: for alsabat')
 # we require /var/lib/alsa for state file
 options=(emptydirs)
-source=("https://www.alsa-project.org/files/pub/utils/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+source=("https://www.alsa-project.org/files/pub/utils/${pkgname}-${pkgver}.tar.bz2"{,.sig}
+
"${pkgname}-1.2.5-nested_iteration.patch::https://github.com/alsa-project/alsa-utils/commit/78212445de4c8e07873cbc7dff2abcacd031f151.patch;)
 
sha512sums=('0e319e553c9c209a46f5c83c50007bd82acf1c9cf78649978b3ab6fbb4349f51c1c7c6a975a8c24d25ba07ad5325e74d2c34dc5c89180998a0f63d1326fde8b1'
-'SKIP')
+'SKIP'
+
'0cdc8c41b70be714515f355a630fc28b68b95cb7b5a5cbb58c1b288ee0edf3128eb8f80bb874844cf11268c89bb04e82f1fe8c4c1ebb7cd7334d28f2896d5a85')
 
b2sums=('52cbe978390e1b5600bf7422e67ece1d24a946d99acddbc059bf6eb3a0b8dfe37cc573167013296e923bf1597973eb55b2580eaf849e088822ba7b2afc14279f'
-'SKIP')
+'SKIP'
+
'5f5956c72a0e9605011b953f98ae29803f50e0c427c794331d1b99e7c1a4dc81379a074a1403ba71737cf8de03c0d749e4544a22a8e2f39984ed9dd6482b40dd')
 validpgpkeys=('F04DF50737AC1A884C4B3D718380596DA6E59C91') # ALSA Release Team 
(Package Signing Key v1) 
 
 prepare() {
   cd "${pkgname}-${pkgver}"
+  # fix alsactl soundcard detection:
+  # https://github.com/alsa-project/alsa-lib/issues/142
+  patch -Np1 -i ../"${pkgname}-1.2.5-nested_iteration.patch"
   autoreconf -vfi
 }
 


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

2021-06-04 Thread Evangelos Foutras via arch-commits
Date: Friday, June 4, 2021 @ 10:34:00
  Author: foutrelis
Revision: 417095

archrelease: copy trunk to staging-x86_64

Added:
  mesa/repos/staging-x86_64/LICENSE
(from rev 417094, mesa/trunk/LICENSE)
  mesa/repos/staging-x86_64/PKGBUILD
(from rev 417094, mesa/trunk/PKGBUILD)
Deleted:
  mesa/repos/staging-x86_64/LICENSE
  mesa/repos/staging-x86_64/PKGBUILD

--+
 LICENSE  |  166 
 PKGBUILD |  416 ++---
 2 files changed, 291 insertions(+), 291 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2021-06-04 10:33:53 UTC (rev 417094)
+++ LICENSE 2021-06-04 10:34:00 UTC (rev 417095)
@@ -1,83 +0,0 @@
-The Mesa 3D Graphics Library
-
-Disclaimer
-
-   Mesa is a 3-D graphics library with an API which is very similar to
-   that of [1]OpenGL.* To the extent that Mesa utilizes the OpenGL command
-   syntax or state machine, it is being used with authorization from
-   [2]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 [3]Silicon Graphics Incorporated.
-
-License / Copyright Information
-
-   The Mesa distribution consists of several components. Different
-   copyrights and licenses apply to different components. For example, the
-   GLX client code uses the SGI Free Software License B, and 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
-THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
-
-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   License
---
-Main Mesa codesrc/mesa/  MIT
-
-Device driverssrc/mesa/drivers/* MIT, generally
-
-Gallium code  src/gallium/   MIT
-
-Ext headers   include/GL/glext.h Khronos
-  include/GL/glxext.h
-
-GLX client code   src/glx/   SGI Free Software License B
-
-C11 threadinclude/c11/threads*.h Boost (permissive) emulation
-
-   In general, consult the source files for license terms.
-
-References
-
-   1. https://www.opengl.org/
-   2. https://www.sgi.com/
-   3. https://www.sgi.com/

Copied: mesa/repos/staging-x86_64/LICENSE (from rev 417094, mesa/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2021-06-04 10:34:00 UTC (rev 417095)
@@ -0,0 +1,83 @@
+The Mesa 3D Graphics Library
+
+Disclaimer
+
+   Mesa is a 3-D graphics library with an API which is very similar to
+   that of [1]OpenGL.* To the extent that Mesa utilizes the OpenGL command
+   syntax or state machine, it is being used with authorization from
+   [2]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 

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

2021-06-04 Thread Evangelos Foutras via arch-commits
Date: Friday, June 4, 2021 @ 10:33:53
  Author: foutrelis
Revision: 417094

upgpkg: mesa 21.1.2-1: new upstream release

Modified:
  mesa/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-04 07:53:09 UTC (rev 417093)
+++ PKGBUILD2021-06-04 10:33:53 UTC (rev 417094)
@@ -6,8 +6,8 @@
 pkgbase=mesa
 pkgname=('vulkan-mesa-layers' 'opencl-mesa' 'vulkan-intel' 'vulkan-radeon' 
'vulkan-swrast' 'libva-mesa-driver' 'mesa-vdpau' 'mesa')
 pkgdesc="An open-source implementation of the OpenGL specification"
-pkgver=21.1.1
-pkgrel=2
+pkgver=21.1.2
+pkgrel=1
 arch=('x86_64')
 makedepends=('python-mako' 'libxml2' 'libx11' 'xorgproto' 'libdrm' 
'libxshmfence' 'libxxf86vm'
  'libxdamage' 'libvdpau' 'libva' 'wayland' 'wayland-protocols' 
'zstd' 'elfutils' 'llvm'
@@ -17,7 +17,7 @@
 license=('custom')
 source=(https://mesa.freedesktop.org/archive/mesa-${pkgver}.tar.xz{,.sig}
 LICENSE)
-sha512sums=('79d0e2b0e1e590e7f36a082df3584010a553af0b3060bd2d3a7ace700ac7a8d1b7734ba67f2e193dd441434eeec74a16e0dbcbf8c15061b5dd5d6a1feca73d62'
+sha512sums=('a7907fa29fdb4e137015ee5405b9c8c0769ef9354bbe963c1af80318b398c05c79db6129b583106d620c42a5e9b625611b648fd5207334eb9b588d7963defc70'
 'SKIP'
 
'f9f0d0ccf166fe6cb684478b6f1e1ab1f2850431c06aa041738563eb1808a004e52cdec823c103c9e180f03ffc083e95974d291353f0220fe52ae6d4897fecc7')
 validpgpkeys=('8703B6700E7EE06D7A39B8D6EDAE37B02CEB490D'  # Emil Velikov 



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

2021-06-04 Thread Sébastien Luttringer via arch-commits
Date: Friday, June 4, 2021 @ 09:19:00
  Author: seblu
Revision: 955910

archrelease: copy trunk to community-x86_64

Added:
  docker/repos/community-x86_64/PKGBUILD
(from rev 955909, docker/trunk/PKGBUILD)
  docker/repos/community-x86_64/docker.sysusers
(from rev 955909, docker/trunk/docker.sysusers)
Deleted:
  docker/repos/community-x86_64/PKGBUILD
  docker/repos/community-x86_64/docker.sysusers

-+
 PKGBUILD|  324 +++---
 docker.sysusers |2 
 2 files changed, 163 insertions(+), 163 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-04 09:18:53 UTC (rev 955909)
+++ PKGBUILD2021-06-04 09:19:00 UTC (rev 955910)
@@ -1,162 +0,0 @@
-# Maintainer: Sébastien "Seblu" Luttringer
-# Maintainer: Morten Linderud 
-
-pkgname=docker
-pkgver=20.10.6
-pkgrel=1
-epoch=1
-pkgdesc='Pack, ship and run any application as a lightweight container'
-arch=('x86_64')
-url='https://www.docker.com/'
-license=('Apache')
-depends=('glibc' 'bridge-utils' 'iproute2' 'device-mapper' 'sqlite' 
'systemd-libs'
- 'libseccomp' 'libtool' 'runc' 'containerd')
-makedepends=('git' 'go' 'btrfs-progs' 'cmake' 'systemd' 'go-md2man' 'sed')
-optdepends=('btrfs-progs: btrfs backend support'
-'pigz: parallel gzip compressor support')
-# https://github.com/moby/moby/tree/v20.10.0/hack/dockerfile/install
-_TINI_COMMIT=de40ad007797e0dcd8b7126f27bb87401d224240
-_LIBNETWORK_COMMIT=b3507428be5b458cb0e2b4086b13531fb0706e46
-_BUILDX_COMMIT=11057da37336192bfc57d81e02359ba7ba848e4a
-_APP_COMMIT=9d2c67f87b7338eb1a0fa2f18eb81af3d2aac0e1
-source=("git+https://github.com/docker/cli.git#tag=v$pkgver;
-"git+https://github.com/moby/moby.git#tag=v$pkgver;
-
"git+https://github.com/docker/libnetwork.git#commit=$_LIBNETWORK_COMMIT;
-"git+https://github.com/krallin/tini.git#commit=$_TINI_COMMIT;
-"git+https://github.com/docker/buildx.git#commit=$_BUILDX_COMMIT;
-"git+https://github.com/docker/app.git#commit=$_APP_COMMIT;
-"$pkgname.sysusers")
-sha256sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'541826011a9836d05a2f42293d5f1beadf2ca8d89fb604487d61a013505678eb')
-
-# create a fake go path directory and pushd into it
-# $1 real directory
-# $2 gopath directory
-_fake_gopath_pushd() {
-  mkdir -p "$GOPATH/src/${2%/*}"
-  rm -f "$GOPATH/src/$2"
-  ln -rsT "$1" "$GOPATH/src/$2"
-  pushd  "$GOPATH/src/$2" >/dev/null
-}
-
-_fake_gopath_popd() {
-  popd >/dev/null
-}
-
-build() {
-  ### check my mistakes on commit version
-  echo 'Checking commit mismatch'
-  (
-  local _cfile
-  for _cfile in tini proxy; do
-. "moby/hack/dockerfile/install/$_cfile.installer"
-  done
-  local _commit _pkgbuild _dockerfile
-  err=0
-  for _commit in LIBNETWORK TINI; do
-_pkgbuild=_${_commit}_COMMIT
-_dockerfile=${_commit}_COMMIT
-if [[ ${!_pkgbuild} != ${!_dockerfile} ]]; then
-  echo "Invalid $_commit commit, should be ${!_dockerfile}" >&2
-  err=$(($err + 1))
-fi
-  done
-  return $err
-  )
-
-  ### globals
-  export GOPATH="$srcdir"
-  export PATH="$GOPATH/bin:$PATH"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export LDFLAGS=''
-  export GOFLAGS='-buildmode=pie -trimpath -mod=readonly -modcacherw 
-ldflags=-linkmode=external'
-  export GO111MODULE=off
-
-  ### cli
-  echo 'Building cli'
-  _fake_gopath_pushd cli github.com/docker/cli
-  DISABLE_WARN_OUTSIDE_CONTAINER=1 make VERSION=$pkgver dynbinary
-  make manpages
-  _fake_gopath_popd
-
-  ### daemon
-  echo 'Building daemon'
-  _fake_gopath_pushd moby github.com/docker/docker
-  DOCKER_GITCOMMIT=$(cd "$srcdir"/moby && git rev-parse --short HEAD) \
-DOCKER_BUILDTAGS='seccomp journald apparmor' \
-VERSION=$pkgver \
-hack/make.sh dynbinary
-  _fake_gopath_popd
-
-  ### docker proxy
-  echo 'Building docker-proxy'
-  _fake_gopath_pushd libnetwork github.com/docker/libnetwork
-  go build github.com/docker/libnetwork/cmd/proxy
-  _fake_gopath_popd
-
-  ### docker-init
-  echo 'Building docker-init'
-  _fake_gopath_pushd tini github.com/krallin/tini
-  cmake .
-  # we must use the static binary because it's started in a foreign os
-  make tini-static
-  _fake_gopath_popd
-
-  ### app cli plugin
-  echo 'Building app cli plugin'
-  _fake_gopath_pushd app github.com/docker/app
-  make dynamic
-  _fake_gopath_popd
-
-  ### buildx cli plugin
-  echo 'Building buildx cli plugin'
-  _fake_gopath_pushd buildx github.com/docker/buildx
-  go build -o docker-buildx -ldflags "\
--X github.com/docker/buildx/version.Version=$(git describe --match 
'v[0-9]*' --always --tags)-tp-docker \
--X github.com/docker/buildx/version.Revision=$(git rev-parse HEAD) \
--X 

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

2021-06-04 Thread Sébastien Luttringer via arch-commits
Date: Friday, June 4, 2021 @ 09:18:53
  Author: seblu
Revision: 955909

upgpkg: docker 1:20.10.7-1

Modified:
  docker/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-04 09:04:53 UTC (rev 955908)
+++ PKGBUILD2021-06-04 09:18:53 UTC (rev 955909)
@@ -2,7 +2,7 @@
 # Maintainer: Morten Linderud 
 
 pkgname=docker
-pkgver=20.10.6
+pkgver=20.10.7
 pkgrel=1
 epoch=1
 pkgdesc='Pack, ship and run any application as a lightweight container'
@@ -16,7 +16,7 @@
 'pigz: parallel gzip compressor support')
 # https://github.com/moby/moby/tree/v20.10.0/hack/dockerfile/install
 _TINI_COMMIT=de40ad007797e0dcd8b7126f27bb87401d224240
-_LIBNETWORK_COMMIT=b3507428be5b458cb0e2b4086b13531fb0706e46
+_LIBNETWORK_COMMIT=64b7a4574d1426139437d20e81c0b6d391130ec8
 _BUILDX_COMMIT=11057da37336192bfc57d81e02359ba7ba848e4a
 _APP_COMMIT=9d2c67f87b7338eb1a0fa2f18eb81af3d2aac0e1
 source=("git+https://github.com/docker/cli.git#tag=v$pkgver;


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

2021-06-04 Thread Chih-Hsuan Yen via arch-commits
Date: Friday, June 4, 2021 @ 09:04:53
  Author: yan12125
Revision: 955908

archrelease: copy trunk to community-any

Added:
  python-cfn-lint/repos/community-any/PKGBUILD
(from rev 955907, python-cfn-lint/trunk/PKGBUILD)
Deleted:
  python-cfn-lint/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-04 09:04:41 UTC (rev 955907)
+++ PKGBUILD2021-06-04 09:04:53 UTC (rev 955908)
@@ -1,44 +0,0 @@
-# Maintainer: Chih-Hsuan Yen 
-
-pkgname=python-cfn-lint
-pkgver=0.49.2
-pkgrel=1
-pkgdesc='CloudFormation Linter'
-arch=(any)
-url='https://github.com/aws-cloudformation/cfn-lint'
-license=('custom:MIT No Attribution')
-depends=(python python-yaml python-six python-aws-sam-translator
- python-jsonpatch python-jsonschema python-networkx
- python-junit-xml)
-makedepends=(python-setuptools)
-checkdepends=(python-pytest python-mock python-pydot)
-optdepends=(
-  'python-pydot: for building graphs from templates'
-)
-source=("https://github.com/aws-cloudformation/cfn-lint/archive/v$pkgver/cfn-lint-$pkgver.tar.gz;)
-sha256sums=('b8285df2fdfae4d7b7f1b44f8611dcf066af7c66997949554f6c2aa1b59b9b95')
-
-build() {
-  cd cfn-lint-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd cfn-lint-$pkgver
-
-  # Tests in test/integration need the cfn-lint binary
-  python setup.py install_scripts --install-dir="$srcdir"/tmp_install
-
-  export PYTHONPATH="$PWD/src"
-  export PATH="$PATH:$srcdir/tmp_install"
-  # test_update_docs requires cfn-lint as a git repo
-  pytest test -k 'not test_update_docs'
-}
-
-package() {
-  cd cfn-lint-$pkgver
-  # use PYTHONHASHSEED=0 to work around https://bugs.python.org/issue34033
-  PYTHONHASHSEED=0 python setup.py install --root="$pkgdir" --optimize=1 
--skip-build
-
-  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname
-}

Copied: python-cfn-lint/repos/community-any/PKGBUILD (from rev 955907, 
python-cfn-lint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-04 09:04:53 UTC (rev 955908)
@@ -0,0 +1,44 @@
+# Maintainer: Chih-Hsuan Yen 
+
+pkgname=python-cfn-lint
+pkgver=0.50.0
+pkgrel=1
+pkgdesc='CloudFormation Linter'
+arch=(any)
+url='https://github.com/aws-cloudformation/cfn-lint'
+license=('custom:MIT No Attribution')
+depends=(python python-yaml python-six python-aws-sam-translator
+ python-jsonpatch python-jsonschema python-networkx
+ python-junit-xml)
+makedepends=(python-setuptools)
+checkdepends=(python-pytest python-mock python-pydot)
+optdepends=(
+  'python-pydot: for building graphs from templates'
+)
+source=("https://github.com/aws-cloudformation/cfn-lint/archive/v$pkgver/cfn-lint-$pkgver.tar.gz;)
+sha256sums=('5e5f1e6c3b5a443e07425cc30012c2eda7d999fd4d4491c414fbbf9aa2896718')
+
+build() {
+  cd cfn-lint-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd cfn-lint-$pkgver
+
+  # Tests in test/integration need the cfn-lint binary
+  python setup.py install_scripts --install-dir="$srcdir"/tmp_install
+
+  export PYTHONPATH="$PWD/src"
+  export PATH="$PATH:$srcdir/tmp_install"
+  # test_update_docs requires cfn-lint as a git repo
+  pytest test -k 'not test_update_docs'
+}
+
+package() {
+  cd cfn-lint-$pkgver
+  # use PYTHONHASHSEED=0 to work around https://bugs.python.org/issue34033
+  PYTHONHASHSEED=0 python setup.py install --root="$pkgdir" --optimize=1 
--skip-build
+
+  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname
+}


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

2021-06-04 Thread Chih-Hsuan Yen via arch-commits
Date: Friday, June 4, 2021 @ 09:04:41
  Author: yan12125
Revision: 955907

upgpkg: python-cfn-lint 0.50.0-1

Modified:
  python-cfn-lint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-04 08:48:23 UTC (rev 955906)
+++ PKGBUILD2021-06-04 09:04:41 UTC (rev 955907)
@@ -1,7 +1,7 @@
 # Maintainer: Chih-Hsuan Yen 
 
 pkgname=python-cfn-lint
-pkgver=0.49.2
+pkgver=0.50.0
 pkgrel=1
 pkgdesc='CloudFormation Linter'
 arch=(any)
@@ -16,7 +16,7 @@
   'python-pydot: for building graphs from templates'
 )
 
source=("https://github.com/aws-cloudformation/cfn-lint/archive/v$pkgver/cfn-lint-$pkgver.tar.gz;)
-sha256sums=('b8285df2fdfae4d7b7f1b44f8611dcf066af7c66997949554f6c2aa1b59b9b95')
+sha256sums=('5e5f1e6c3b5a443e07425cc30012c2eda7d999fd4d4491c414fbbf9aa2896718')
 
 build() {
   cd cfn-lint-$pkgver


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

2021-06-04 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, June 4, 2021 @ 08:48:23
  Author: svenstaro
Revision: 955906

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-04 08:48:14 UTC (rev 955905)
+++ PKGBUILD2021-06-04 08:48:23 UTC (rev 955906)
@@ -1,39 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Adam Fontenot 
-# Contributor: Daniel M. Capella 
-
-pkgname=broot
-pkgver=1.5.0
-pkgrel=1
-pkgdesc='Fuzzy Search + tree + cd'
-arch=('x86_64')
-url=https://github.com/Canop/broot
-license=('MIT')
-depends=('gcc-libs' 'zlib')
-makedepends=('rust')
-source=("https://github.com/Canop/broot/archive/v$pkgver/$pkgname-v$pkgver.tar.gz;)
-sha256sums=('c952f63dc81eeaeab776fcb85789bad65bba65d1cecadbf38112a69cd68216db')
-
-build() {
-  cd $pkgname-$pkgver
-  cargo build --release --locked
-}
-
-check() {
-  cd $pkgname-$pkgver
-  cargo test --release --locked
-}
-
-package() {
-  cd $pkgname-$pkgver
-  install -Dt "$pkgdir"/usr/bin target/release/$pkgname
-  sed -i "s/#version/$pkgver/" man/page
-  # Theoretically we could get the date from the CHANGELOG.md but it seems 
that the
-  # CHANGELOG.md entry for the current version isn't actually in the current 
release.
-  # changelog_date=$(sed -n "s/.*v$pkgver - \(.*\)$/\1/p" CHANGELOG.md)
-  sed -i "s/#date//" man/page
-  install -Dm644 man/page "$pkgdir/usr/share/man/man1/$pkgname.1"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: broot/repos/community-x86_64/PKGBUILD (from rev 955905, 
broot/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-04 08:48:23 UTC (rev 955906)
@@ -0,0 +1,39 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Adam Fontenot 
+# Contributor: Daniel M. Capella 
+
+pkgname=broot
+pkgver=1.5.1
+pkgrel=1
+pkgdesc='Fuzzy Search + tree + cd'
+arch=('x86_64')
+url=https://github.com/Canop/broot
+license=('MIT')
+depends=('gcc-libs' 'zlib')
+makedepends=('rust')
+source=("https://github.com/Canop/broot/archive/v$pkgver/$pkgname-v$pkgver.tar.gz;)
+sha256sums=('af7467aa4331dab9a556ff1b6c265eaa6b526a85ebc1f499d091cb719e1db364')
+
+build() {
+  cd $pkgname-$pkgver
+  cargo build --release --locked
+}
+
+check() {
+  cd $pkgname-$pkgver
+  cargo test --release --locked
+}
+
+package() {
+  cd $pkgname-$pkgver
+  install -Dt "$pkgdir"/usr/bin target/release/$pkgname
+  sed -i "s/#version/$pkgver/" man/page
+  # Theoretically we could get the date from the CHANGELOG.md but it seems 
that the
+  # CHANGELOG.md entry for the current version isn't actually in the current 
release.
+  # changelog_date=$(sed -n "s/.*v$pkgver - \(.*\)$/\1/p" CHANGELOG.md)
+  sed -i "s/#date//" man/page
+  install -Dm644 man/page "$pkgdir/usr/share/man/man1/$pkgname.1"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


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

2021-06-04 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, June 4, 2021 @ 08:48:14
  Author: svenstaro
Revision: 955905

upgpkg: broot 1.5.1-1

Modified:
  broot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-04 06:29:04 UTC (rev 955904)
+++ PKGBUILD2021-06-04 08:48:14 UTC (rev 955905)
@@ -3,7 +3,7 @@
 # Contributor: Daniel M. Capella 
 
 pkgname=broot
-pkgver=1.5.0
+pkgver=1.5.1
 pkgrel=1
 pkgdesc='Fuzzy Search + tree + cd'
 arch=('x86_64')
@@ -12,7 +12,7 @@
 depends=('gcc-libs' 'zlib')
 makedepends=('rust')
 
source=("https://github.com/Canop/broot/archive/v$pkgver/$pkgname-v$pkgver.tar.gz;)
-sha256sums=('c952f63dc81eeaeab776fcb85789bad65bba65d1cecadbf38112a69cd68216db')
+sha256sums=('af7467aa4331dab9a556ff1b6c265eaa6b526a85ebc1f499d091cb719e1db364')
 
 build() {
   cd $pkgname-$pkgver


[arch-commits] Commit in (llvm11)

2021-06-04 Thread Evangelos Foutras via arch-commits
Date: Friday, June 4, 2021 @ 07:53:09
  Author: foutrelis
Revision: 417093

Remove llvm11 as rust/ldc have been bootstrapped

Deleted:
  llvm11/


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

2021-06-04 Thread Pierre Schmitz via arch-commits
Date: Friday, June 4, 2021 @ 07:09:31
  Author: pierre
Revision: 417091

archrelease: copy trunk to extra-any

Added:
  composer/repos/extra-any/PKGBUILD
(from rev 417090, composer/trunk/PKGBUILD)
Deleted:
  composer/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-04 07:09:20 UTC (rev 417090)
+++ PKGBUILD2021-06-04 07:09:31 UTC (rev 417091)
@@ -1,51 +0,0 @@
-# Maintainer: Pierre Schmitz 
-
-pkgname=composer
-pkgver=2.1.0
-pkgrel=1
-pkgdesc="Dependency Manager for PHP"
-arch=('any')
-license=('MIT')
-url='https://getcomposer.org/'
-depends=('php' 'unzip')
-makedepends=('git')
-source=("${pkgname}::git+https://github.com/composer/composer.git#tag=${pkgver};
-   
"${pkgname}-${pkgver}.phar::https://getcomposer.org/download/${pkgver}/composer.phar;)
-sha256sums=('SKIP'
-'2f8e8f684db5d6bd36a549629f3676e48f008624f499b13dfc7afa2f9cbde16e')
-
-prepare() {
-   cd "${srcdir}/${pkgname}"
-
-   php "${srcdir}/${pkgname}-${pkgver}.phar" install --no-interaction 
--no-dev --no-progress --prefer-dist
-}
-
-build() {
-   cd "${srcdir}/${pkgname}"
-
-   php -d phar.readonly=Off bin/compile
-}
-
-check() {
-   cd "${srcdir}"
-
-   mkdir integration-test
-   cd integration-test
-
-   php "${srcdir}/${pkgname}/composer.phar" init \
-   --no-interaction \
-   --type=project \
-   --name='archlinux/test' \
-   --description='Composer Test Project' \
-   --license='GPL-3.0-or-later' \
-   --require='symfony/console:*'
-   php "${srcdir}/${pkgname}/composer.phar" update --no-interaction 
--no-progress --prefer-dist
-   php "${srcdir}/${pkgname}/composer.phar" validate --no-interaction
-}
-
-package() {
-   cd "${srcdir}/${pkgname}"
-
-   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-   install -Dm755 composer.phar "${pkgdir}/usr/bin/composer"
-}

Copied: composer/repos/extra-any/PKGBUILD (from rev 417090, 
composer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-04 07:09:31 UTC (rev 417091)
@@ -0,0 +1,51 @@
+# Maintainer: Pierre Schmitz 
+
+pkgname=composer
+pkgver=2.1.1
+pkgrel=1
+pkgdesc="Dependency Manager for PHP"
+arch=('any')
+license=('MIT')
+url='https://getcomposer.org/'
+depends=('php' 'unzip')
+makedepends=('git')
+source=("${pkgname}::git+https://github.com/composer/composer.git#tag=${pkgver};
+   
"${pkgname}-${pkgver}.phar::https://getcomposer.org/download/${pkgver}/composer.phar;)
+sha256sums=('SKIP'
+'445a577f3d7966ed2327182380047a38179068ad1292f6b88de4e071920121ce')
+
+prepare() {
+   cd "${srcdir}/${pkgname}"
+
+   php "${srcdir}/${pkgname}-${pkgver}.phar" install --no-interaction 
--no-dev --no-progress --prefer-dist
+}
+
+build() {
+   cd "${srcdir}/${pkgname}"
+
+   php -d phar.readonly=Off bin/compile
+}
+
+check() {
+   cd "${srcdir}"
+
+   mkdir integration-test
+   cd integration-test
+
+   php "${srcdir}/${pkgname}/composer.phar" init \
+   --no-interaction \
+   --type=project \
+   --name='archlinux/test' \
+   --description='Composer Test Project' \
+   --license='GPL-3.0-or-later' \
+   --require='symfony/console:*'
+   php "${srcdir}/${pkgname}/composer.phar" update --no-interaction 
--no-progress --prefer-dist
+   php "${srcdir}/${pkgname}/composer.phar" validate --no-interaction
+}
+
+package() {
+   cd "${srcdir}/${pkgname}"
+
+   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+   install -Dm755 composer.phar "${pkgdir}/usr/bin/composer"
+}


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

2021-06-04 Thread Pierre Schmitz via arch-commits
Date: Friday, June 4, 2021 @ 07:09:20
  Author: pierre
Revision: 417090

upgpkg: composer 2.1.1-1

Modified:
  composer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-04 07:04:15 UTC (rev 417089)
+++ PKGBUILD2021-06-04 07:09:20 UTC (rev 417090)
@@ -1,7 +1,7 @@
 # Maintainer: Pierre Schmitz 
 
 pkgname=composer
-pkgver=2.1.0
+pkgver=2.1.1
 pkgrel=1
 pkgdesc="Dependency Manager for PHP"
 arch=('any')
@@ -12,7 +12,7 @@
 
source=("${pkgname}::git+https://github.com/composer/composer.git#tag=${pkgver};

"${pkgname}-${pkgver}.phar::https://getcomposer.org/download/${pkgver}/composer.phar;)
 sha256sums=('SKIP'
-'2f8e8f684db5d6bd36a549629f3676e48f008624f499b13dfc7afa2f9cbde16e')
+'445a577f3d7966ed2327182380047a38179068ad1292f6b88de4e071920121ce')
 
 prepare() {
cd "${srcdir}/${pkgname}"


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

2021-06-04 Thread Evangelos Foutras via arch-commits
Date: Friday, June 4, 2021 @ 07:00:17
  Author: foutrelis
Revision: 417088

archrelease: copy trunk to extra-x86_64

Added:
  pidgin/repos/extra-x86_64/PKGBUILD
(from rev 417087, pidgin/trunk/PKGBUILD)
Deleted:
  pidgin/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-04 07:00:12 UTC (rev 417087)
+++ PKGBUILD2021-06-04 07:00:17 UTC (rev 417088)
@@ -1,106 +0,0 @@
-# Maintainer: Evangelos Foutras 
-# Contributor: Ionut Biru 
-# Contributor: Andrea Scarpino 
-# Contributor: Alexander Fehr 
-# Contributor: Lucien Immink 
-
-pkgname=('pidgin' 'libpurple' 'finch')
-pkgver=2.14.4
-pkgrel=2
-arch=('x86_64')
-url="https://pidgin.im/;
-license=('GPL')
-makedepends=('startup-notification' 'gtkspell' 'libxss' 'nss' 'libsasl' 'libsm'
- 'libidn' 'libgadu' 'python' 'hicolor-icon-theme' 'farstream' 'tk'
- 'libnsl' 'avahi' 'ca-certificates' 'intltool' 'libnm' 'dbus-glib'
- 'libgnt' 'libxcrypt')
-options=('!emptydirs')
-source=(https://downloads.sourceforge.net/project/pidgin/Pidgin/$pkgver/$pkgname-$pkgver.tar.bz2{,.asc})
-sha256sums=('67c1a0104b0624a50100c6d73cd5504d53c9d221922b1b28fa86020531a9904e'
-'SKIP')
-validpgpkeys=('40DE1DC7288FE3F50AB938C548F66AFFD9BDB729') # Gary Kramlich 

-
-prepare() {
-  cd $pkgbase-$pkgver
-}
-
-build() {
-  cd $pkgbase-$pkgver
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---disable-schemas-install \
---disable-gevolution \
---disable-meanwhile \
---disable-gnutls \
---enable-cyrus-sasl \
---disable-doxygen \
---enable-nm \
---with-system-ssl-certs=/etc/ssl/certs
-make
-}
-
-package_pidgin(){
-  pkgdesc="Multi-protocol instant messaging client"
-  depends=('libpurple' 'startup-notification' 'gtkspell' 'libxss' 'libsm'
-   'gst-plugins-base' 'gst-plugins-good' 'hicolor-icon-theme')
-  optdepends=('aspell: for spelling correction')
-
-  cd $pkgbase-$pkgver
-
-  # For linking
-  make -C libpurple DESTDIR="$pkgdir" install-libLTLIBRARIES
-
-  make -C pidgin DESTDIR="$pkgdir" install
-  make -C doc DESTDIR="$pkgdir" install
-
-  # Remove files that are packaged in libpurle
-  make -C libpurple DESTDIR="$pkgdir" uninstall-libLTLIBRARIES
-
-  rm "$pkgdir/usr/share/man/man1/finch.1"
-
-  # https://bugs.archlinux.org/task/53770
-  # https://bugs.archlinux.org/task/69026
-  find "$pkgdir/usr/lib/perl5" -name perllocal.pod -delete
-}
-
-package_libpurple(){
-  pkgdesc="IM library extracted from Pidgin"
-  depends=('farstream' 'libsasl' 'libidn' 'libnsl' 'libgadu' 'dbus-glib' 'nss'
-   'libnm' 'libxcrypt')
-  optdepends=('avahi: Bonjour protocol support'
-  'ca-certificates: SSL CA certificates'
-  'python-dbus: for purple-remote and purple-url-handler'
-  'tk: Tcl/Tk scripting support')
-
-  cd $pkgbase-$pkgver
-
-  for _dir in libpurple share/sounds share/ca-certs m4macros po; do
-make -C "$_dir" DESTDIR="$pkgdir" install
-  done
-
-  # https://bugs.archlinux.org/task/53770
-  # https://bugs.archlinux.org/task/69026
-  find "$pkgdir/usr/lib/perl5" -name perllocal.pod -delete
-}
-
-package_finch(){
-  pkgdesc="A ncurses-based messaging client"
-  depends=('libpurple' 'libgnt' 'libx11')
-
-  cd $pkgbase-$pkgver
-
-  # For linking
-  make -C libpurple DESTDIR="$pkgdir" install-libLTLIBRARIES
-
-  make -C finch DESTDIR="$pkgdir" install
-  make -C doc DESTDIR="$pkgdir" install
-
-  # Remove files that are packaged in libpurle
-  make -C libpurple DESTDIR="$pkgdir" uninstall-libLTLIBRARIES
-
-  rm "$pkgdir"/usr/share/man/man1/pidgin.1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: pidgin/repos/extra-x86_64/PKGBUILD (from rev 417087, 
pidgin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-06-04 07:00:17 UTC (rev 417088)
@@ -0,0 +1,106 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: Ionut Biru 
+# Contributor: Andrea Scarpino 
+# Contributor: Alexander Fehr 
+# Contributor: Lucien Immink 
+
+pkgname=('pidgin' 'libpurple' 'finch')
+pkgver=2.14.5
+pkgrel=1
+arch=('x86_64')
+url="https://pidgin.im/;
+license=('GPL')
+makedepends=('startup-notification' 'gtkspell' 'libxss' 'nss' 'libsasl' 'libsm'
+ 'libidn' 'libgadu' 'python' 'hicolor-icon-theme' 'farstream' 'tk'
+ 'libnsl' 'avahi' 'ca-certificates' 'intltool' 'libnm' 'dbus-glib'
+ 'libgnt' 'libxcrypt')
+options=('!emptydirs')
+source=(https://downloads.sourceforge.net/project/pidgin/Pidgin/$pkgver/$pkgname-$pkgver.tar.bz2{,.asc})
+sha256sums=('26db80d2a3c1e740952757bd53c15b8fc8dd780dc8819a74b53b2ef3bfaf041f'
+'SKIP')
+validpgpkeys=('40DE1DC7288FE3F50AB938C548F66AFFD9BDB729') # Gary Kramlich 

+
+prepare() {
+  cd 

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

2021-06-04 Thread Evangelos Foutras via arch-commits
Date: Friday, June 4, 2021 @ 07:00:12
  Author: foutrelis
Revision: 417087

upgpkg: pidgin 2.14.5-1: new upstream release

Modified:
  pidgin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-04 06:07:31 UTC (rev 417086)
+++ PKGBUILD2021-06-04 07:00:12 UTC (rev 417087)
@@ -5,8 +5,8 @@
 # Contributor: Lucien Immink 
 
 pkgname=('pidgin' 'libpurple' 'finch')
-pkgver=2.14.4
-pkgrel=2
+pkgver=2.14.5
+pkgrel=1
 arch=('x86_64')
 url="https://pidgin.im/;
 license=('GPL')
@@ -16,7 +16,7 @@
  'libgnt' 'libxcrypt')
 options=('!emptydirs')
 
source=(https://downloads.sourceforge.net/project/pidgin/Pidgin/$pkgver/$pkgname-$pkgver.tar.bz2{,.asc})
-sha256sums=('67c1a0104b0624a50100c6d73cd5504d53c9d221922b1b28fa86020531a9904e'
+sha256sums=('26db80d2a3c1e740952757bd53c15b8fc8dd780dc8819a74b53b2ef3bfaf041f'
 'SKIP')
 validpgpkeys=('40DE1DC7288FE3F50AB938C548F66AFFD9BDB729') # Gary Kramlich 

 


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

2021-06-04 Thread Antonio Rojas via arch-commits
Date: Friday, June 4, 2021 @ 06:29:04
  Author: arojas
Revision: 955904

archrelease: copy trunk to community-x86_64

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

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

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

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


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

2021-06-04 Thread Antonio Rojas via arch-commits
Date: Friday, June 4, 2021 @ 06:28:55
  Author: arojas
Revision: 955903

Update to 3.4.5

Modified:
  python-rpy2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-06-04 05:51:05 UTC (rev 955902)
+++ PKGBUILD2021-06-04 06:28:55 UTC (rev 955903)
@@ -4,17 +4,17 @@
 # Contributor: David Pretty  
 
 pkgname=python-rpy2
-pkgver=3.4.4
+pkgver=3.4.5
 pkgrel=1
-pkgdesc="A very simple, yet robust, Python interface to the R Programming 
Language."
+pkgdesc='A very simple, yet robust, Python interface to the R Programming 
Language'
 arch=(x86_64)
-url="https://rpy2.github.io/;
+url='https://rpy2.github.io/'
 license=(MPL GPL LGPL)
 depends=(python-cffi python-numpy python-tzlocal r)
 makedepends=(python-setuptools)
 optdepends=('python-pandas: conversion between rpy and pandas')
-source=("https://pypi.io/packages/source/r/rpy2/rpy2-$pkgver.tar.gz;)
-sha256sums=('e198862701bfc6d3da4a2fcf18910d71521b385283abdb2121e07b874add8e50')
+source=(https://pypi.io/packages/source/r/rpy2/rpy2-$pkgver.tar.gz)
+sha256sums=('5d31a5ea43f5a59f6dec30faca87edb01fc9b8affa0beae96a99be923bd7dab3')
 
 package() {
   cd rpy2-$pkgver


[arch-commits] Commit in poppler/repos/extra-x86_64 (3 files)

2021-06-04 Thread Andreas Radke via arch-commits
Date: Friday, June 4, 2021 @ 06:07:31
  Author: andyrtr
Revision: 417086

archrelease: copy trunk to extra-x86_64

Added:
  poppler/repos/extra-x86_64/PKGBUILD
(from rev 417085, poppler/trunk/PKGBUILD)
Deleted:
  poppler/repos/extra-x86_64/0001-glib-Fix-type-in-poppler_rectangle_free.patch
  poppler/repos/extra-x86_64/PKGBUILD

+
 0001-glib-Fix-type-in-poppler_rectangle_free.patch |   28 --
 PKGBUILD   |  194 +--
 2 files changed, 94 insertions(+), 128 deletions(-)

Deleted: 0001-glib-Fix-type-in-poppler_rectangle_free.patch
===
--- 0001-glib-Fix-type-in-poppler_rectangle_free.patch  2021-06-04 06:07:16 UTC 
(rev 417085)
+++ 0001-glib-Fix-type-in-poppler_rectangle_free.patch  2021-06-04 06:07:31 UTC 
(rev 417086)
@@ -1,28 +0,0 @@
-From  Mon Sep 17 00:00:00 2001
-From: "Jan Alexander Steffens (heftig)" 
-Date: Tue, 1 Jun 2021 22:00:00 +
-Subject: [PATCH] glib: Fix type in poppler_rectangle_free
-
-e3fed321f230 changed the allocation to use PopplerRectangleExtended. We
-need to change the free to match, otherwise the slice allocator can get
-confused.
-
-Fixes https://gitlab.freedesktop.org/poppler/poppler/-/issues/1087

- glib/poppler-page.cc | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/glib/poppler-page.cc b/glib/poppler-page.cc
-index 7536cfcb..e81c1e12 100644
 a/glib/poppler-page.cc
-+++ b/glib/poppler-page.cc
-@@ -1663,7 +1663,8 @@ PopplerRectangle 
*poppler_rectangle_copy(PopplerRectangle *rectangle)
-  */
- void poppler_rectangle_free(PopplerRectangle *rectangle)
- {
--g_slice_free(PopplerRectangle, rectangle);
-+auto ext_rectangle = reinterpret_cast(rectangle);
-+g_slice_free(PopplerRectangleExtended, ext_rectangle);
- }
- 
- /**

Deleted: PKGBUILD
===
--- PKGBUILD2021-06-04 06:07:16 UTC (rev 417085)
+++ PKGBUILD2021-06-04 06:07:31 UTC (rev 417086)
@@ -1,100 +0,0 @@
-# Maintainer: AndyRTR 
-# Maintainer: Jan de Groot 
-
-pkgbase=poppler
-pkgname=('poppler' 'poppler-glib' 'poppler-qt5' 'poppler-qt6')
-pkgver=21.06.0
-pkgrel=1
-arch=(x86_64)
-license=('GPL')
-makedepends=('libjpeg' 'gcc-libs' 'cairo' 'fontconfig' 'openjpeg2' 'gtk3' 
'pkgconfig' 'lcms2' 
- 'gobject-introspection' 'icu' 'qt5-base' 'qt6-base' 'git' 'nss' 
'gtk-doc' 'curl' 'poppler-data'
- 'cmake' 'python' 'boost')
-options=('!emptydirs')
-url="https://poppler.freedesktop.org/;
-# https://gitlab.freedesktop.org/poppler/poppler
-source=(https://poppler.freedesktop.org/${pkgbase}-${pkgver}.tar.xz{,.sig}
-0001-glib-Fix-type-in-poppler_rectangle_free.patch
-
test::git+https://anongit.freedesktop.org/git/poppler/test/#commit=03a4b9eb854a06a83c465e82de601796c458bbe9)
-sha256sums=('4b440708eafdf07a1405e06744c66ac54a5af51a0e38ab17a46fbaff47278342'
-'SKIP'
-'9b7059cf64fb8562ceb27f16c0fd40d33c65db3341a0d6eb45facfaa6647c98f'
-'SKIP')
-validpgpkeys=('CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7') # "Albert Astals Cid 
"
-
-prepare() {
-  mkdir build
-  cd ${pkgbase}-${pkgver}
-
-  # https://bugs.archlinux.org/task/70909
-  patch -Np1 -i ../0001-glib-Fix-type-in-poppler_rectangle_free.patch
-}
-
-build() {
-  cd build
-  cmake ../${pkgbase}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX:PATH=/usr \
--DCMAKE_INSTALL_LIBDIR=/usr/lib \
--DENABLE_UNSTABLE_API_ABI_HEADERS=ON \
--DENABLE_GTK_DOC=ON
-  make
-}
-
-check() {
-  cd build
-  LANG=en_US.UTF8 make test
-}
-
-package_poppler() {
-  pkgdesc="PDF rendering library based on xpdf 3.0"
-  depends=('libjpeg' 'gcc-libs' 'cairo' 'fontconfig' 'openjpeg2' 'lcms2' 'nss' 
'curl')
-  optdepends=('poppler-data: highly recommended encoding data to display PDF 
documents with certain encodings and characters')
-  provides=('libpoppler.so' 'libpoppler-cpp.so')
-  conflicts=("poppler-qt3<${pkgver}" "poppler-qt4<${pkgver}")
-
-  cd build
-  make DESTDIR="${pkgdir}" install
-
-  # cleanup for splitted build
-  rm -vrf "${pkgdir}"/usr/include/poppler/{glib,qt5,qt6}
-  rm -vf "${pkgdir}"//usr/lib/libpoppler-{glib,qt5,qt6}.*
-  rm -vf "${pkgdir}"/usr/lib/pkgconfig/poppler-{glib,qt5}.pc
-  rm -vrf "${pkgdir}"/usr/{lib,share}/gir*
-  rm -vrf "${pkgdir}"/usr/share/gtk-doc
-}
-
-package_poppler-glib() {
-  pkgdesc="Poppler glib bindings"
-  depends=("poppler=${pkgver}" 'glib2')
-  provides=('libpoppler-glib.so')
-
-  cd build
-
-  make -C glib DESTDIR="${pkgdir}" install
-  install -m755 -d "${pkgdir}/usr/lib/pkgconfig"
-  install -m644 poppler-glib.pc "${pkgdir}/usr/lib/pkgconfig/"
-  rm -vf "${pkgdir}"/usr/lib/libpoppler.*
-  rm -vf "${pkgdir}/usr/bin/poppler-glib-demo"
-}
-
-package_poppler-qt5() {
-  pkgdesc="Poppler Qt5 bindings"
-  depends=("poppler=${pkgver}" 'qt5-base')

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

2021-06-04 Thread Andreas Radke via arch-commits
Date: Friday, June 4, 2021 @ 06:07:16
  Author: andyrtr
Revision: 417085

upgpkg: poppler 21.06.1-1: upstream update 21.06.1

Modified:
  poppler/trunk/PKGBUILD
Deleted:
  poppler/trunk/0001-glib-Fix-type-in-poppler_rectangle_free.patch

+
 0001-glib-Fix-type-in-poppler_rectangle_free.patch |   28 ---
 PKGBUILD   |   10 +-
 2 files changed, 2 insertions(+), 36 deletions(-)

Deleted: 0001-glib-Fix-type-in-poppler_rectangle_free.patch
===
--- 0001-glib-Fix-type-in-poppler_rectangle_free.patch  2021-06-04 05:48:42 UTC 
(rev 417084)
+++ 0001-glib-Fix-type-in-poppler_rectangle_free.patch  2021-06-04 06:07:16 UTC 
(rev 417085)
@@ -1,28 +0,0 @@
-From  Mon Sep 17 00:00:00 2001
-From: "Jan Alexander Steffens (heftig)" 
-Date: Tue, 1 Jun 2021 22:00:00 +
-Subject: [PATCH] glib: Fix type in poppler_rectangle_free
-
-e3fed321f230 changed the allocation to use PopplerRectangleExtended. We
-need to change the free to match, otherwise the slice allocator can get
-confused.
-
-Fixes https://gitlab.freedesktop.org/poppler/poppler/-/issues/1087

- glib/poppler-page.cc | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/glib/poppler-page.cc b/glib/poppler-page.cc
-index 7536cfcb..e81c1e12 100644
 a/glib/poppler-page.cc
-+++ b/glib/poppler-page.cc
-@@ -1663,7 +1663,8 @@ PopplerRectangle 
*poppler_rectangle_copy(PopplerRectangle *rectangle)
-  */
- void poppler_rectangle_free(PopplerRectangle *rectangle)
- {
--g_slice_free(PopplerRectangle, rectangle);
-+auto ext_rectangle = reinterpret_cast(rectangle);
-+g_slice_free(PopplerRectangleExtended, ext_rectangle);
- }
- 
- /**

Modified: PKGBUILD
===
--- PKGBUILD2021-06-04 05:48:42 UTC (rev 417084)
+++ PKGBUILD2021-06-04 06:07:16 UTC (rev 417085)
@@ -3,7 +3,7 @@
 
 pkgbase=poppler
 pkgname=('poppler' 'poppler-glib' 'poppler-qt5' 'poppler-qt6')
-pkgver=21.06.0
+pkgver=21.06.1
 pkgrel=1
 arch=(x86_64)
 license=('GPL')
@@ -14,20 +14,14 @@
 url="https://poppler.freedesktop.org/;
 # https://gitlab.freedesktop.org/poppler/poppler
 source=(https://poppler.freedesktop.org/${pkgbase}-${pkgver}.tar.xz{,.sig}
-0001-glib-Fix-type-in-poppler_rectangle_free.patch
 
test::git+https://anongit.freedesktop.org/git/poppler/test/#commit=03a4b9eb854a06a83c465e82de601796c458bbe9)
-sha256sums=('4b440708eafdf07a1405e06744c66ac54a5af51a0e38ab17a46fbaff47278342'
+sha256sums=('86b09e5a02de40081a3916ef8711c5128eaf4b1fc59d5f87d0ec66f04f595db4'
 'SKIP'
-'9b7059cf64fb8562ceb27f16c0fd40d33c65db3341a0d6eb45facfaa6647c98f'
 'SKIP')
 validpgpkeys=('CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7') # "Albert Astals Cid 
"
 
 prepare() {
   mkdir build
-  cd ${pkgbase}-${pkgver}
-
-  # https://bugs.archlinux.org/task/70909
-  patch -Np1 -i ../0001-glib-Fix-type-in-poppler_rectangle_free.patch
 }
 
 build() {