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

2022-03-05 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, March 6, 2022 @ 03:16:13
  Author: svenstaro
Revision: 1142269

archrelease: copy trunk to community-staging-x86_64

Added:
  blender/repos/community-staging-x86_64/
  blender/repos/community-staging-x86_64/PKGBUILD
(from rev 1142268, blender/trunk/PKGBUILD)
  blender/repos/community-staging-x86_64/force-draco1.patch
(from rev 1142268, blender/trunk/force-draco1.patch)
  blender/repos/community-staging-x86_64/force-draco2.patch
(from rev 1142268, blender/trunk/force-draco2.patch)

+
 PKGBUILD   |  101 +++
 force-draco1.patch |   15 +++
 force-draco2.patch |   21 ++
 3 files changed, 137 insertions(+)

Copied: blender/repos/community-staging-x86_64/PKGBUILD (from rev 1142268, 
blender/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-03-06 03:16:13 UTC (rev 1142269)
@@ -0,0 +1,101 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: John Sowiak 
+# Contributor: tobias 
+
+# For legal reasons, we can't separately package the Optix headers so we'll
+# just build the package against them. I checked with NVIDIA and this way is
+# fine with them.
+
+pkgname=blender
+pkgver=3.0.1
+pkgrel=6
+epoch=17
+pkgdesc="A fully integrated 3D graphics creation suite"
+arch=('x86_64')
+license=('GPL')
+url="https://www.blender.org;
+depends=('libpng' 'libtiff' 'openexr' 'python' 'desktop-file-utils' 
'python-requests' 'potrace'
+ 'shared-mime-info' 'hicolor-icon-theme' 'xdg-utils' 'glew' 
'openjpeg2' 'python-numpy'
+ 'freetype2' 'openal' 'ffmpeg4.4' 'fftw' 'boost-libs' 'opencollada' 
'alembic' 'openxr'
+ 'openimageio' 'libsndfile' 'jack' 'opencolorio' 'openshadinglanguage' 
'openimagedenoise'
+ 'jemalloc' 'libspnav' 'ptex' 'opensubdiv' 'openvdb' 'log4cplus' 
'sdl2' 'embree' 'libharu'
+ 'draco')
+makedepends=('cmake' 'boost' 'mesa' 'git' 'llvm' 'cuda' 'ninja')
+optdepends=('cuda: cycles renderer cuda support')
+options=(!strip)
+source=("git+https://git.blender.org/blender.git#tag=v$pkgver;
+"git+https://git.blender.org/blender-addons.git;
+"git+https://git.blender.org/blender-addons-contrib.git;
+"git+https://git.blender.org/blender-translations.git;
+"git+https://git.blender.org/blender-dev-tools.git;
+
https://developer.download.nvidia.com/redist/optix/v7.3/OptiX-7.3.0-Include.zip
+
https://dev-files.blender.org/file/data/tcfvs2kikz4ygt3ijgrj/PHID-FILE-oiqrsdika6wadprdqxfz/D14128.diff
+force-draco1.patch
+force-draco2.patch)
+sha512sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+
'd842e989bf86f4ae932f8708f6340861de4ea33b21435cceeb9a5e3135ef2ddb671e19fe11c397bddbf85894ba312194eac5acc21cbec70607120c0bda0100ef'
+
'62a92e849fb2d58092c147e517dd5d85ca488bc6a0bb8943a65f0fd110f14d4fc33e1d83b307aa5d0927f7af9be9018476c3fd1cbb5102adf7f756db0ee4a94c'
+
'e239da4f3906f1b54265435181cf770bae3d269c8d915df9a73861e6ee71ec70bf2339426e7c81a91e5a567273b3b3742d7a99feefd3398d821b26e1ff3a56d0'
+
'527ab66e5eace777de0043c1ca5787a488f6471450ce67fd6d08137ad0ef56177bc0c17696f30a5fca23fa55d8ca9c3f30cb7b17550dba2dbd8e89ca0b361990')
+
+prepare() {
+  cd "$pkgname"
+
+  git submodule init
+  git config submodule."release/scripts/addons".url "${srcdir}/blender-addons"
+  git config submodule."release/scripts/addons_contrib".url 
"${srcdir}/blender-addons-contrib"
+  git config submodule."release/datafiles/locale".url 
"${srcdir}/blender-translations"
+  git config submodule."source/tools".url "${srcdir}/blender-dev-tools"
+  git submodule update
+  git submodule foreach git checkout v${pkgver}
+
+  patch -p1 -i "$srcdir"/D14128.diff # Fix build with OpenEXR 3 and 
OpenImageIO 2.3
+  patch -p1 -i "$srcdir"/force-draco1.patch
+  patch -p1 -d release/scripts/addons -i "$srcdir"/force-draco2.patch
+}
+
+build() {
+  cd "$pkgname"
+
+  local PYTHON_VER=3.10
+
+  cmake \
+-Bbuild \
+-GNinja \
+-Cbuild_files/cmake/config/blender_release.cmake \
+-DOPTIX_ROOT_DIR="$srcdir"/include \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DWITH_INSTALL_PORTABLE=OFF \
+-DWITH_PYTHON_INSTALL=OFF \
+-DPYTHON_VERSION=$PYTHON_VER \
+-DPYTHON_LIBPATH=/usr/lib \
+-DPYTHON_LIBRARY=python$PYTHON_VER \
+-DPYTHON_INCLUDE_DIRS=/usr/include/python$PYTHON_VER \
+-DCMAKE_C_FLAGS="-I /usr/include/ffmpeg4.4" \
+-DCMAKE_CXX_FLAGS="-I /usr/include/python$PYTHON_VER -I 
/usr/include/ffmpeg4.4 -L /usr/lib/ffmpeg4.4"
+  ninja -C build
+}
+
+package() {
+  cd "$pkgname"
+
+  DESTDIR="${pkgdir}" ninja -C build install
+  install -Dm755 release/bin/blender-softwaregl 
"${pkgdir}/usr/bin/blender-softwaregl"
+  python -m compileall "${pkgdir}/usr/share/blender"
+  python 

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

2022-03-05 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, March 6, 2022 @ 03:16:01
  Author: svenstaro
Revision: 1142268

upgpkg: blender 17:3.0.1-6: openimageio 2.3 rebuild

Modified:
  blender/trunk/PKGBUILD
Deleted:
  blender/trunk/blender-openexr3.patch

+
 PKGBUILD   |8 
 blender-openexr3.patch |   42 --
 2 files changed, 4 insertions(+), 46 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-03-06 02:17:43 UTC (rev 1142267)
+++ PKGBUILD2022-03-06 03:16:01 UTC (rev 1142268)
@@ -8,7 +8,7 @@
 
 pkgname=blender
 pkgver=3.0.1
-pkgrel=5
+pkgrel=6
 epoch=17
 pkgdesc="A fully integrated 3D graphics creation suite"
 arch=('x86_64')
@@ -29,7 +29,7 @@
 "git+https://git.blender.org/blender-translations.git;
 "git+https://git.blender.org/blender-dev-tools.git;
 
https://developer.download.nvidia.com/redist/optix/v7.3/OptiX-7.3.0-Include.zip
-blender-openexr3.patch
+
https://dev-files.blender.org/file/data/tcfvs2kikz4ygt3ijgrj/PHID-FILE-oiqrsdika6wadprdqxfz/D14128.diff
 force-draco1.patch
 force-draco2.patch)
 sha512sums=('SKIP'
@@ -38,7 +38,7 @@
 'SKIP'
 'SKIP'
 
'd842e989bf86f4ae932f8708f6340861de4ea33b21435cceeb9a5e3135ef2ddb671e19fe11c397bddbf85894ba312194eac5acc21cbec70607120c0bda0100ef'
-
'e2dd7210d26b70445e9ae8e33dea35111ad0b0aca9d3b4ded3df560d0fcc8dc044868f729e0f090a04b6f316f083b5505a7056ce088e8702065add87b9b457e5'
+
'62a92e849fb2d58092c147e517dd5d85ca488bc6a0bb8943a65f0fd110f14d4fc33e1d83b307aa5d0927f7af9be9018476c3fd1cbb5102adf7f756db0ee4a94c'
 
'e239da4f3906f1b54265435181cf770bae3d269c8d915df9a73861e6ee71ec70bf2339426e7c81a91e5a567273b3b3742d7a99feefd3398d821b26e1ff3a56d0'
 
'527ab66e5eace777de0043c1ca5787a488f6471450ce67fd6d08137ad0ef56177bc0c17696f30a5fca23fa55d8ca9c3f30cb7b17550dba2dbd8e89ca0b361990')
 
@@ -53,7 +53,7 @@
   git submodule update
   git submodule foreach git checkout v${pkgver}
 
-  patch -p1 -i "$srcdir"/blender-openexr3.patch # Fix build with OpenEXR 3
+  patch -p1 -i "$srcdir"/D14128.diff # Fix build with OpenEXR 3 and 
OpenImageIO 2.3
   patch -p1 -i "$srcdir"/force-draco1.patch
   patch -p1 -d release/scripts/addons -i "$srcdir"/force-draco2.patch
 }

Deleted: blender-openexr3.patch
===
--- blender-openexr3.patch  2022-03-06 02:17:43 UTC (rev 1142267)
+++ blender-openexr3.patch  2022-03-06 03:16:01 UTC (rev 1142268)
@@ -1,42 +0,0 @@
-diff --git a/build_files/cmake/Modules/FindOpenEXR.cmake 
b/build_files/cmake/Modules/FindOpenEXR.cmake
-index 090f80b8df7..a2f7b4c622b 100644
 a/build_files/cmake/Modules/FindOpenEXR.cmake
-+++ b/build_files/cmake/Modules/FindOpenEXR.cmake
-@@ -34,11 +34,10 @@ ENDIF()
- SET(_openexr_libs_ver_init "2.0")
- 
- SET(_openexr_FIND_COMPONENTS
--  Half
-   Iex
--  IlmImf
--  IlmThread
-   Imath
-+  OpenEXR
-+  IlmThread
- )
- 
- SET(_openexr_SEARCH_DIRS
-@@ -120,7 +119,7 @@ FIND_PACKAGE_HANDLE_STANDARD_ARGS(OpenEXR  DEFAULT_MSG
- IF(OPENEXR_FOUND)
-   SET(OPENEXR_LIBRARIES ${_openexr_LIBRARIES})
-   # Both include paths are needed because of dummy OSL headers mixing 
#include  and #include  :(
--  SET(OPENEXR_INCLUDE_DIRS ${OPENEXR_INCLUDE_DIR} 
${OPENEXR_INCLUDE_DIR}/OpenEXR)
-+  SET(OPENEXR_INCLUDE_DIRS ${OPENEXR_INCLUDE_DIR} 
${OPENEXR_INCLUDE_DIR}/OpenEXR ${OPENEXR_INCLUDE_DIR}/Imath)
- ENDIF()
- 
- MARK_AS_ADVANCED(
-diff --git a/source/blender/imbuf/intern/openexr/openexr_api.cpp 
b/source/blender/imbuf/intern/openexr/openexr_api.cpp
-index 382d86f2645..eff50b19c31 100644
 a/source/blender/imbuf/intern/openexr/openexr_api.cpp
-+++ b/source/blender/imbuf/intern/openexr/openexr_api.cpp
-@@ -38,8 +38,10 @@
- #include 
- #include 
- #include 
-+#include 
- #include 
- #include 
-+#include 
- #include 
- #include 
- #include 



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

2022-03-05 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, March 6, 2022 @ 02:17:43
  Author: svenstaro
Revision: 1142267

archrelease: copy trunk to community-staging-x86_64

Added:
  openshadinglanguage/repos/community-staging-x86_64/
  openshadinglanguage/repos/community-staging-x86_64/PKGBUILD
(from rev 1142266, openshadinglanguage/trunk/PKGBUILD)
  openshadinglanguage/repos/community-staging-x86_64/llvm13.patch
(from rev 1142266, openshadinglanguage/trunk/llvm13.patch)

--+
 PKGBUILD |   38 ++
 llvm13.patch |   48 
 2 files changed, 86 insertions(+)

Copied: openshadinglanguage/repos/community-staging-x86_64/PKGBUILD (from rev 
1142266, openshadinglanguage/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-03-06 02:17:43 UTC (rev 1142267)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=openshadinglanguage
+pkgver=1.11.17.0
+pkgrel=2
+pkgdesc="Advanced shading language for production GI renderers"
+arch=(x86_64)
+url="https://github.com/imageworks/OpenShadingLanguage;
+license=('custom')
+depends=('boost-libs' 'openimageio' 'imath' 'freetype2' 'libpng'
+ 'libtiff' 'zlib' 'ncurses' 'clang')
+makedepends=('boost' 'cmake' 'python' 'llvm' 'ninja')
+optdepends=('python: the Python module')
+source=($pkgname-$pkgver.tar.gz::https://github.com/imageworks/OpenShadingLanguage/archive/Release-${pkgver}.tar.gz)
+sha512sums=('14cb25b10f4644551b906344a289e2a4c421f4c85beaa120bb1a1e532c9be3ec235622516c4700fb23d258c5dcd1ece18b84491b0973b3162098843a9059b1d2')
+
+build() {
+  cd OpenShadingLanguage-Release-$pkgver
+
+  cmake \
+-B build \
+-GNinja \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DCMAKE_CXX_STANDARD=14 \
+-DLLVM_STATIC=0 \
+-DSTOP_ON_WARNING=OFF
+  ninja -C build
+}
+
+package() {
+  cd OpenShadingLanguage-Release-$pkgver
+
+  DESTDIR="$pkgdir/" ninja -C build install
+
+  install -Dm644 LICENSE.md "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.md
+}
+
+# vim:set ts=2 sw=2 et:

Copied: openshadinglanguage/repos/community-staging-x86_64/llvm13.patch (from 
rev 1142266, openshadinglanguage/trunk/llvm13.patch)
===
--- community-staging-x86_64/llvm13.patch   (rev 0)
+++ community-staging-x86_64/llvm13.patch   2022-03-06 02:17:43 UTC (rev 
1142267)
@@ -0,0 +1,48 @@
+From 8682211d0bfe5c4be63a4a003d06037ff9721e66 Mon Sep 17 00:00:00 2001
+From: Luya Tshimbalanga 
+Date: Tue, 28 Sep 2021 10:08:01 -0700
+Subject: [PATCH] Fix compatibility with LLVM 12 and up (#1412)
+
+Upstream LLVM stopped using the compatibility
+spellings of OF_{None,Text,Append} from version 12 and up.
+
+https://reviews.llvm.org/D101650
+
+Signed-off-by: Luya Tshimbalanga 
+---
+ src/liboslexec/llvm_util.cpp | 6 +-
+ 1 file changed, 5 insertions(+), 1 deletion(-)
+
+diff --git a/src/liboslexec/llvm_util.cpp b/src/liboslexec/llvm_util.cpp
+index 4bd0dca35..4d0e1752d 100644
+--- a/src/liboslexec/llvm_util.cpp
 b/src/liboslexec/llvm_util.cpp
+@@ -1407,7 +1407,9 @@ LLVM_Util::make_jit_execengine (std::string *err,
+ 
+ options.NoZerosInBSS = false;
+ options.GuaranteedTailCallOpt = false;
++#if OSL_LLVM_VERSION < 120
+ options.StackAlignmentOverride = 0;
++#endif
+ options.FunctionSections = true;
+ options.UseInitArray = false;
+ options.FloatABIType = llvm::FloatABI::Default;
+@@ -5385,7 +5387,7 @@ void
+ LLVM_Util::write_bitcode_file (const char *filename, std::string *err)
+ {
+ std::error_code local_error;
+-llvm::raw_fd_ostream out (filename, local_error, llvm::sys::fs::F_None);
++llvm::raw_fd_ostream out (filename, local_error, llvm::sys::fs::OF_None);
+ if (! out.has_error()) {
+ llvm::WriteBitcodeToFile (*module(), out);
+ if (err && local_error)
+@@ -5447,7 +5449,9 @@ LLVM_Util::ptx_compile_group (llvm::Module* lib_module, 
const std::string& name,
+ options.AllowFPOpFusion= llvm::FPOpFusion::Fast;
+ options.NoZerosInBSS   = 0;
+ options.GuaranteedTailCallOpt  = 0;
++#if OSL_LLVM_VERSION < 120
+ options.StackAlignmentOverride = 0;
++#endif
+ options.UseInitArray   = 0;
+ 
+ llvm::TargetMachine* target_machine = llvm_target->createTargetMachine(



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

2022-03-05 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, March 6, 2022 @ 02:17:32
  Author: svenstaro
Revision: 1142266

upgpkg: openshadinglanguage 1.11.17.0-2: openimageio 2.3 rebuild

Modified:
  openshadinglanguage/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-06 02:10:43 UTC (rev 1142265)
+++ PKGBUILD2022-03-06 02:17:32 UTC (rev 1142266)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 pkgname=openshadinglanguage
 pkgver=1.11.17.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Advanced shading language for production GI renderers"
 arch=(x86_64)
 url="https://github.com/imageworks/OpenShadingLanguage;



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

2022-03-05 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, March 6, 2022 @ 02:10:43
  Author: svenstaro
Revision: 1142265

archrelease: copy trunk to community-staging-x86_64

Added:
  openimageio/repos/community-staging-x86_64/
  openimageio/repos/community-staging-x86_64/PKGBUILD
(from rev 1142264, openimageio/trunk/PKGBUILD)

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

Copied: openimageio/repos/community-staging-x86_64/PKGBUILD (from rev 1142264, 
openimageio/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-03-06 02:10:43 UTC (rev 1142265)
@@ -0,0 +1,47 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: SpepS 
+
+pkgname=openimageio
+pkgver=2.3.13.0
+pkgrel=1
+pkgdesc="A library for reading and writing images, including classes, 
utilities, and applications"
+arch=(x86_64)
+url="http://www.openimageio.org/;
+license=('custom')
+depends=('openexr' 'boost-libs' 'openjpeg2' 'glew' 'libtiff' 'opencolorio' 
'libpng' 'libraw' 'libwebp'
+ 'fmt' 'pugixml' 'pybind11' 'libheif' 'hdf5' 'freetype2')
+# TODO: Consider adding these deps: 'openvdb' 'ffmpeg' 'ptex' 'opencv'
+makedepends=('cmake' 'qt5-base' 'python' 'boost' 'mesa' 'fontconfig' 
'libxrender' 'ninja' 'robin-map')
+optdepends=('qt5-base: iv image viewer'
+'python: bindings support')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/OpenImageIO/oiio/archive/refs/tags/v$pkgver.tar.gz;)
+sha512sums=('fbefa341a11fd502ec9313ca48a0fe433c5822699e4934f6a14089f670314cbe1c9c0b9a491b1d1927bda0223e38a62192c6ddeec6c4c5e6215a8b3fb6900dd8')
+
+build() {
+  cd oiio-$pkgver
+
+  cmake \
+-Bbuild \
+-GNinja \
+-DUSE_PYTHON=ON \
+-DPYTHON_VERSION=3.10 \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DOIIO_BUILD_TESTS=ON \
+-DOIIO_BUILD_TOOLS=ON \
+-DBUILD_MISSING_FMT=OFF \
+-DUSE_EXTERNAL_PUGIXML=ON \
+-DSTOP_ON_WARNING=OFF
+  ninja -C build
+}
+
+package() {
+  cd oiio-$pkgver
+
+  DESTDIR="$pkgdir" ninja -C build install
+
+  # Remove vendored fonts
+  rm -r "$pkgdir"/usr/share/fonts
+
+  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE".md
+}



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

2022-03-05 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, March 6, 2022 @ 02:10:33
  Author: svenstaro
Revision: 1142264

upgpkg: openimageio 2.3.13.0-1

Modified:
  openimageio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-06 01:46:24 UTC (rev 1142263)
+++ PKGBUILD2022-03-06 02:10:33 UTC (rev 1142264)
@@ -1,9 +1,9 @@
-# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Sven-Hendrik Haase 
 # Contributor: SpepS 
 
 pkgname=openimageio
-pkgver=2.2.18.0
-pkgrel=4
+pkgver=2.3.13.0
+pkgrel=1
 pkgdesc="A library for reading and writing images, including classes, 
utilities, and applications"
 arch=(x86_64)
 url="http://www.openimageio.org/;
@@ -14,29 +14,29 @@
 makedepends=('cmake' 'qt5-base' 'python' 'boost' 'mesa' 'fontconfig' 
'libxrender' 'ninja' 'robin-map')
 optdepends=('qt5-base: iv image viewer'
 'python: bindings support')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/OpenImageIO/oiio/archive/Release-$pkgver.tar.gz;)
-sha512sums=('22a61e8b1ca098c2293e972372d02f0ac8ce54b46eb957b1ffcacb9e0ca4ff13f560d67804e0db0a898d8bec2fdb73f3cdcd1ee1867f92f97f84c1c111e535be')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/OpenImageIO/oiio/archive/refs/tags/v$pkgver.tar.gz;)
+sha512sums=('fbefa341a11fd502ec9313ca48a0fe433c5822699e4934f6a14089f670314cbe1c9c0b9a491b1d1927bda0223e38a62192c6ddeec6c4c5e6215a8b3fb6900dd8')
 
 build() {
-  cd oiio-Release-$pkgver
+  cd oiio-$pkgver
 
   cmake \
-  -Bbuild \
-  -GNinja \
-  -DUSE_PYTHON=ON \
-  -DPYTHON_VERSION=3.10 \
-  -DCMAKE_INSTALL_PREFIX=/usr \
-  -DCMAKE_INSTALL_LIBDIR=lib \
-  -DOIIO_BUILD_TESTS=ON \
-  -DOIIO_BUILD_TOOLS=ON \
-  -DBUILD_MISSING_FMT=OFF \
-  -DUSE_EXTERNAL_PUGIXML=ON \
-  -DSTOP_ON_WARNING=OFF
+-Bbuild \
+-GNinja \
+-DUSE_PYTHON=ON \
+-DPYTHON_VERSION=3.10 \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DOIIO_BUILD_TESTS=ON \
+-DOIIO_BUILD_TOOLS=ON \
+-DBUILD_MISSING_FMT=OFF \
+-DUSE_EXTERNAL_PUGIXML=ON \
+-DSTOP_ON_WARNING=OFF
   ninja -C build
 }
 
 package() {
-  cd oiio-Release-$pkgver
+  cd oiio-$pkgver
 
   DESTDIR="$pkgdir" ninja -C build install
 



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

2022-03-05 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, March 6, 2022 @ 01:46:24
  Author: svenstaro
Revision: 1142263

archrelease: copy trunk to community-x86_64

Added:
  openimagedenoise/repos/community-x86_64/PKGBUILD
(from rev 1142262, openimagedenoise/trunk/PKGBUILD)
Deleted:
  openimagedenoise/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-03-06 01:46:14 UTC (rev 1142262)
+++ PKGBUILD2022-03-06 01:46:24 UTC (rev 1142263)
@@ -1,30 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Maintainer: Sven-Hendrik Haase 
-
-pkgname=openimagedenoise
-pkgver=1.4.2
-pkgrel=1
-pkgdesc='Intel(R) Open Image Denoise library'
-arch=('x86_64')
-url='https://openimagedenoise.github.io'
-license=('Apache')
-depends=('intel-tbb')
-makedepends=('cmake' 'ninja' 'ispc' 'python')
-source=("https://github.com/OpenImageDenoise/oidn/releases/download/v${pkgver}/oidn-${pkgver}.src.tar.gz;)
-sha512sums=('8b464cedc91ef7a88cfc97c3fde80275b12058cdd26b352718d90f8f20b3462c4ac65b2b1ad5548a520590fbd015fcc8ab9f964633bc8b89d72901fe8a13e352')
-
-build() {
-cd oidn-$pkgver
-
-cmake \
--B build \
--G Ninja \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-ninja -C build
-}
-
-package() {
-cd oidn-$pkgver
-DESTDIR="$pkgdir" ninja -C build install
-}

Copied: openimagedenoise/repos/community-x86_64/PKGBUILD (from rev 1142262, 
openimagedenoise/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-03-06 01:46:24 UTC (rev 1142263)
@@ -0,0 +1,30 @@
+# Maintainer: Filipe Laíns (FFY00) 
+# Maintainer: Sven-Hendrik Haase 
+
+pkgname=openimagedenoise
+pkgver=1.4.3
+pkgrel=1
+pkgdesc='Intel(R) Open Image Denoise library'
+arch=('x86_64')
+url='https://openimagedenoise.github.io'
+license=('Apache')
+depends=('intel-tbb')
+makedepends=('cmake' 'ninja' 'ispc' 'python')
+source=("https://github.com/OpenImageDenoise/oidn/releases/download/v${pkgver}/oidn-${pkgver}.src.tar.gz;)
+sha512sums=('6fbdf347763c0734140195a523cf0878b1dbd91d4943c9ce4928f6991549f8b3d5ab4d57b90e20a8d04a87d00e3a1554ce73a3a3c1e64fcb016a3c1f8aa07982')
+
+build() {
+cd oidn-$pkgver
+
+cmake \
+-B build \
+-G Ninja \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+ninja -C build
+}
+
+package() {
+cd oidn-$pkgver
+DESTDIR="$pkgdir" ninja -C build install
+}



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

2022-03-05 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, March 6, 2022 @ 01:46:14
  Author: svenstaro
Revision: 1142262

upgpkg: openimagedenoise 1.4.3-1

Modified:
  openimagedenoise/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-06 00:49:05 UTC (rev 1142261)
+++ PKGBUILD2022-03-06 01:46:14 UTC (rev 1142262)
@@ -2,7 +2,7 @@
 # Maintainer: Sven-Hendrik Haase 
 
 pkgname=openimagedenoise
-pkgver=1.4.2
+pkgver=1.4.3
 pkgrel=1
 pkgdesc='Intel(R) Open Image Denoise library'
 arch=('x86_64')
@@ -11,7 +11,7 @@
 depends=('intel-tbb')
 makedepends=('cmake' 'ninja' 'ispc' 'python')
 
source=("https://github.com/OpenImageDenoise/oidn/releases/download/v${pkgver}/oidn-${pkgver}.src.tar.gz;)
-sha512sums=('8b464cedc91ef7a88cfc97c3fde80275b12058cdd26b352718d90f8f20b3462c4ac65b2b1ad5548a520590fbd015fcc8ab9f964633bc8b89d72901fe8a13e352')
+sha512sums=('6fbdf347763c0734140195a523cf0878b1dbd91d4943c9ce4928f6991549f8b3d5ab4d57b90e20a8d04a87d00e3a1554ce73a3a3c1e64fcb016a3c1f8aa07982')
 
 build() {
 cd oidn-$pkgver



[arch-commits] Commit in python-pytorch/repos/community-x86_64 (20 files)

2022-03-05 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, March 6, 2022 @ 00:49:05
  Author: svenstaro
Revision: 1142261

archrelease: copy trunk to community-x86_64

Added:
  python-pytorch/repos/community-x86_64/66219.patch
(from rev 1142260, python-pytorch/trunk/66219.patch)
  python-pytorch/repos/community-x86_64/PKGBUILD
(from rev 1142260, python-pytorch/trunk/PKGBUILD)
  python-pytorch/repos/community-x86_64/ffmpeg4.4.patch
(from rev 1142260, python-pytorch/trunk/ffmpeg4.4.patch)
  python-pytorch/repos/community-x86_64/fix-building-for-torchvision.patch
(from rev 1142260, python-pytorch/trunk/fix-building-for-torchvision.patch)
  python-pytorch/repos/community-x86_64/fix-jit-frontend-nullptr-deref.patch
(from rev 1142260, 
python-pytorch/trunk/fix-jit-frontend-nullptr-deref.patch)
  python-pytorch/repos/community-x86_64/fix_c10.patch
(from rev 1142260, python-pytorch/trunk/fix_c10.patch)
  python-pytorch/repos/community-x86_64/fix_include_system.patch
(from rev 1142260, python-pytorch/trunk/fix_include_system.patch)
  
python-pytorch/repos/community-x86_64/fix_old_nnapi_lite_interpreter_config.patch
(from rev 1142260, 
python-pytorch/trunk/fix_old_nnapi_lite_interpreter_config.patch)
  python-pytorch/repos/community-x86_64/test.py
(from rev 1142260, python-pytorch/trunk/test.py)
  python-pytorch/repos/community-x86_64/use-system-libuv.patch
(from rev 1142260, python-pytorch/trunk/use-system-libuv.patch)
Deleted:
  python-pytorch/repos/community-x86_64/66219.patch
  python-pytorch/repos/community-x86_64/PKGBUILD
  python-pytorch/repos/community-x86_64/ffmpeg4.4.patch
  python-pytorch/repos/community-x86_64/fix-building-for-torchvision.patch
  python-pytorch/repos/community-x86_64/fix-jit-frontend-nullptr-deref.patch
  python-pytorch/repos/community-x86_64/fix_c10.patch
  python-pytorch/repos/community-x86_64/fix_include_system.patch
  
python-pytorch/repos/community-x86_64/fix_old_nnapi_lite_interpreter_config.patch
  python-pytorch/repos/community-x86_64/test.py
  python-pytorch/repos/community-x86_64/use-system-libuv.patch

-+
 66219.patch | 6004 +-
 PKGBUILD|  644 +-
 ffmpeg4.4.patch |  102 
 fix-building-for-torchvision.patch  |   50 
 fix-jit-frontend-nullptr-deref.patch|   24 
 fix_c10.patch   |   24 
 fix_include_system.patch|   26 
 fix_old_nnapi_lite_interpreter_config.patch |   66 
 test.py |   14 
 use-system-libuv.patch  |   26 
 10 files changed, 3490 insertions(+), 3490 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 1142260:1142261 to see the changes.


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

2022-03-05 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, March 6, 2022 @ 00:48:39
  Author: svenstaro
Revision: 1142260

upgpkg: python-pytorch 1.11.0rc5-1

Modified:
  python-pytorch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-06 00:29:10 UTC (rev 1142259)
+++ PKGBUILD2022-03-06 00:48:39 UTC (rev 1142260)
@@ -4,8 +4,8 @@
 pkgbase=python-pytorch
 pkgname=("python-pytorch" "python-pytorch-cuda")
 _pkgname="pytorch"
-pkgver=1.11.0rc3
-_pkgver=1.11.0-rc3
+pkgver=1.11.0rc5
+_pkgver=1.11.0-rc5
 pkgrel=1
 _pkgdesc='Tensors and Dynamic neural networks in Python with strong GPU 
acceleration'
 pkgdesc="${_pkgdesc}"



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

2022-03-05 Thread Daniel M. Capella via arch-commits
Date: Sunday, March 6, 2022 @ 00:29:10
  Author: polyzen
Revision: 1142259

Fix url

Modified:
  python-asttokens/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-06 00:18:53 UTC (rev 1142258)
+++ PKGBUILD2022-03-06 00:29:10 UTC (rev 1142259)
@@ -6,7 +6,7 @@
 pkgrel=2
 pkgdesc='Get the currently executing AST node of a frame, and other 
information'
 arch=('any')
-url=https://github.com/alexmojaki/executing
+url=https://github.com/gristlabs/asttokens
 license=('Apache')
 depends=('python-six')
 makedepends=('python-build' 'python-installer' 'python-setuptools-scm'



[arch-commits] Commit in cuda/repos/community-x86_64 (64 files)

2022-03-05 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, March 6, 2022 @ 00:18:53
  Author: svenstaro
Revision: 1142258

archrelease: copy trunk to community-x86_64

Added:
  cuda/repos/community-x86_64/PKGBUILD
(from rev 1142257, cuda/trunk/PKGBUILD)
  cuda/repos/community-x86_64/accinj64.pc
(from rev 1142257, cuda/trunk/accinj64.pc)
  cuda/repos/community-x86_64/cublas.pc
(from rev 1142257, cuda/trunk/cublas.pc)
  cuda/repos/community-x86_64/cuda.conf
(from rev 1142257, cuda/trunk/cuda.conf)
  cuda/repos/community-x86_64/cuda.install
(from rev 1142257, cuda/trunk/cuda.install)
  cuda/repos/community-x86_64/cuda.pc
(from rev 1142257, cuda/trunk/cuda.pc)
  cuda/repos/community-x86_64/cuda.sh
(from rev 1142257, cuda/trunk/cuda.sh)
  cuda/repos/community-x86_64/cudart.pc
(from rev 1142257, cuda/trunk/cudart.pc)
  cuda/repos/community-x86_64/cufft.pc
(from rev 1142257, cuda/trunk/cufft.pc)
  cuda/repos/community-x86_64/cufftw.pc
(from rev 1142257, cuda/trunk/cufftw.pc)
  cuda/repos/community-x86_64/cuinj64.pc
(from rev 1142257, cuda/trunk/cuinj64.pc)
  cuda/repos/community-x86_64/curand.pc
(from rev 1142257, cuda/trunk/curand.pc)
  cuda/repos/community-x86_64/cusolver.pc
(from rev 1142257, cuda/trunk/cusolver.pc)
  cuda/repos/community-x86_64/cusparse.pc
(from rev 1142257, cuda/trunk/cusparse.pc)
  cuda/repos/community-x86_64/nppc.pc
(from rev 1142257, cuda/trunk/nppc.pc)
  cuda/repos/community-x86_64/nppi.pc
(from rev 1142257, cuda/trunk/nppi.pc)
  cuda/repos/community-x86_64/nppial.pc
(from rev 1142257, cuda/trunk/nppial.pc)
  cuda/repos/community-x86_64/nppicc.pc
(from rev 1142257, cuda/trunk/nppicc.pc)
  cuda/repos/community-x86_64/nppicom.pc
(from rev 1142257, cuda/trunk/nppicom.pc)
  cuda/repos/community-x86_64/nppidei.pc
(from rev 1142257, cuda/trunk/nppidei.pc)
  cuda/repos/community-x86_64/nppif.pc
(from rev 1142257, cuda/trunk/nppif.pc)
  cuda/repos/community-x86_64/nppig.pc
(from rev 1142257, cuda/trunk/nppig.pc)
  cuda/repos/community-x86_64/nppim.pc
(from rev 1142257, cuda/trunk/nppim.pc)
  cuda/repos/community-x86_64/nppist.pc
(from rev 1142257, cuda/trunk/nppist.pc)
  cuda/repos/community-x86_64/nppisu.pc
(from rev 1142257, cuda/trunk/nppisu.pc)
  cuda/repos/community-x86_64/nppitc.pc
(from rev 1142257, cuda/trunk/nppitc.pc)
  cuda/repos/community-x86_64/npps.pc
(from rev 1142257, cuda/trunk/npps.pc)
  cuda/repos/community-x86_64/nvToolsExt.pc
(from rev 1142257, cuda/trunk/nvToolsExt.pc)
  cuda/repos/community-x86_64/nvgraph.pc
(from rev 1142257, cuda/trunk/nvgraph.pc)
  cuda/repos/community-x86_64/nvidia-ml.pc
(from rev 1142257, cuda/trunk/nvidia-ml.pc)
  cuda/repos/community-x86_64/nvjpeg.pc
(from rev 1142257, cuda/trunk/nvjpeg.pc)
  cuda/repos/community-x86_64/nvrtc.pc
(from rev 1142257, cuda/trunk/nvrtc.pc)
Deleted:
  cuda/repos/community-x86_64/PKGBUILD
  cuda/repos/community-x86_64/accinj64.pc
  cuda/repos/community-x86_64/cublas.pc
  cuda/repos/community-x86_64/cuda.conf
  cuda/repos/community-x86_64/cuda.install
  cuda/repos/community-x86_64/cuda.pc
  cuda/repos/community-x86_64/cuda.sh
  cuda/repos/community-x86_64/cudart.pc
  cuda/repos/community-x86_64/cufft.pc
  cuda/repos/community-x86_64/cufftw.pc
  cuda/repos/community-x86_64/cuinj64.pc
  cuda/repos/community-x86_64/curand.pc
  cuda/repos/community-x86_64/cusolver.pc
  cuda/repos/community-x86_64/cusparse.pc
  cuda/repos/community-x86_64/nppc.pc
  cuda/repos/community-x86_64/nppi.pc
  cuda/repos/community-x86_64/nppial.pc
  cuda/repos/community-x86_64/nppicc.pc
  cuda/repos/community-x86_64/nppicom.pc
  cuda/repos/community-x86_64/nppidei.pc
  cuda/repos/community-x86_64/nppif.pc
  cuda/repos/community-x86_64/nppig.pc
  cuda/repos/community-x86_64/nppim.pc
  cuda/repos/community-x86_64/nppist.pc
  cuda/repos/community-x86_64/nppisu.pc
  cuda/repos/community-x86_64/nppitc.pc
  cuda/repos/community-x86_64/npps.pc
  cuda/repos/community-x86_64/nvToolsExt.pc
  cuda/repos/community-x86_64/nvgraph.pc
  cuda/repos/community-x86_64/nvidia-ml.pc
  cuda/repos/community-x86_64/nvjpeg.pc
  cuda/repos/community-x86_64/nvrtc.pc

---+
 PKGBUILD  |  334 
 accinj64.pc   |   18 +--
 cublas.pc |   18 +--
 cuda.conf |6 -
 cuda.install  |   22 +--
 cuda.pc   |   18 +--
 cuda.sh   |4 
 cudart.pc |   18 +--
 cufft.pc  |   18 +--
 cufftw.pc |   18 +--
 cuinj64.pc|   18 +--
 curand.pc |   18 +--
 cusolver.pc   |   18 +--
 cusparse.pc   |   18 +--
 nppc.pc   |   18 +--
 nppi.pc   |   18 +--
 nppial.pc |   18 +--
 nppicc.pc |   18 +--
 nppicom.pc|   18 +--
 nppidei.pc|   18 +--
 nppif.pc  |   18 +--
 nppig.pc  |   18 +--
 nppim.pc  |   18 +--
 nppist.pc |   18 +--
 nppisu.pc |   18 +--
 nppitc.pc |   18 +--
 npps.pc   |   18 +--
 nvToolsExt.pc |   18 +--
 nvgraph.pc|   18 +--
 nvidia-ml.pc  |   18 

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

2022-03-05 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, March 6, 2022 @ 00:18:03
  Author: svenstaro
Revision: 1142257

upgpkg: cuda 11.6.1-1

Modified:
  cuda/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-05 23:55:49 UTC (rev 1142256)
+++ PKGBUILD2022-03-06 00:18:03 UTC (rev 1142257)
@@ -2,8 +2,8 @@
 # Maintainer: Konstantin Gizdov 
 pkgname=(cuda cuda-tools)
 pkgbase=cuda
-pkgver=11.6.0
-_driverver=510.39.01
+pkgver=11.6.1
+_driverver=510.47.03
 pkgrel=1
 pkgdesc="NVIDIA's GPU programming toolkit"
 arch=('x86_64')
@@ -43,7 +43,7 @@
 nvjpeg.pc
 nvrtc.pc
 nvToolsExt.pc)
-sha512sums=('257b7b0bce1fa93cc442d8f335aec78681a3e4d457e31f04fb1cd01b91208aa35833f3793d8e2ef6d5db15e86c4d7659adb6ad127c57cbdabaa8dd14ef36a931'
+sha512sums=('75c8f28bcd3de638f780b4d8c5e80cea3023fb0e57b4075bd6905071da273e9d09281d947d660f2e4ab6d71f47c12cc021f12656fd8fbf56d11cf7e520e90a9e'
 
'35f1f56411eecb2d978553f5606a0d6e70ad363cfaa9f37b9e6f12a799b041caa4aeca183341055d4789425dc4d62bee0aac68cc9d864155084b1ea571ee998f'
 
'714d973bc79446f73bebe85306b3566fe25b554bcbcba2fcbe76709a3eca71fb5d183ab4da2d3b5e9326cb9cd8d13a93f6d4a005ea5a41f7ef8e6c6e81e06b5e'
 
'a4b3b03682801a98a1d8c1d14c084fd35efd384d92d497e230e3a28e0bd97b1fa48a93ccb2150f892f0b4154ca4ea2d66f5484a6a59b5c9b49963de42ecf1736'



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

2022-03-05 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, March 5, 2022 @ 23:55:49
  Author: svenstaro
Revision: 1142256

archrelease: copy trunk to community-x86_64

Added:
  hyperfine/repos/community-x86_64/PKGBUILD
(from rev 1142255, hyperfine/trunk/PKGBUILD)
Deleted:
  hyperfine/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-03-05 23:55:38 UTC (rev 1142255)
+++ PKGBUILD2022-03-05 23:55:49 UTC (rev 1142256)
@@ -1,37 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: cauebs 
-pkgname=hyperfine
-pkgver=1.12.0
-pkgrel=1
-pkgdesc="A command-line benchmarking tool"
-url="https://github.com/sharkdp/hyperfine;
-arch=("x86_64")
-license=("APACHE" "MIT")
-depends=(gcc-libs)
-makedepends=(cargo)
-source=("$pkgname-$pkgver.tar.gz::https://github.com/sharkdp/$pkgname/archive/v$pkgver.tar.gz;)
-options=(zipman)
-sha256sums=('2120870a97e68fa3426eac5646a071c9646e96d2309220e3c258bf588e496454')
-
-build() {
-cd "$srcdir/$pkgname-$pkgver"
-cargo build --release --locked
-}
-
-check() {
-cd "$srcdir/$pkgname-$pkgver"
-cargo test --release --locked
-}
-
-package() {
-cd "$srcdir/$pkgname-$pkgver"
-install -Dm644 "LICENSE-APACHE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE"
-install -Dm644 "LICENSE-MIT" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT"
-install -Dm755 "target/release/$pkgname" "$pkgdir/usr/bin/$pkgname"
-
-install -Dm644 target/release/build/hyperfine-*/out/hyperfine.bash 
"$pkgdir/usr/share/bash-completion/completions/hyperfine"
-install -Dm644 target/release/build/hyperfine-*/out/hyperfine.fish 
"$pkgdir/usr/share/fish/vendor_completions.d/hyperfine.fish"
-install -Dm644 target/release/build/hyperfine-*/out/_hyperfine 
"$pkgdir/usr/share/zsh/site-functions/_hyperfine"
-
-install -Dm644 doc/hyperfine.1 "$pkgdir/usr/share/man/man1/hyperfine.1"
-}

Copied: hyperfine/repos/community-x86_64/PKGBUILD (from rev 1142255, 
hyperfine/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-03-05 23:55:49 UTC (rev 1142256)
@@ -0,0 +1,37 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: cauebs 
+pkgname=hyperfine
+pkgver=1.13.0
+pkgrel=1
+pkgdesc="A command-line benchmarking tool"
+url="https://github.com/sharkdp/hyperfine;
+arch=("x86_64")
+license=("APACHE" "MIT")
+depends=(gcc-libs)
+makedepends=(cargo)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/sharkdp/$pkgname/archive/v$pkgver.tar.gz;)
+options=(zipman)
+sha256sums=('6e57c8e51962dd24a283ab46dde6fe306da772f4ef9bad86f8c89ac3a499c87e')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  cargo build --release --locked
+}
+
+check() {
+  cd "$srcdir/$pkgname-$pkgver"
+  cargo test --release --locked
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  install -Dm644 "LICENSE-APACHE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE"
+  install -Dm644 "LICENSE-MIT" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT"
+  install -Dm755 "target/release/$pkgname" "$pkgdir/usr/bin/$pkgname"
+
+  install -Dm644 target/release/build/hyperfine-*/out/hyperfine.bash 
"$pkgdir/usr/share/bash-completion/completions/hyperfine"
+  install -Dm644 target/release/build/hyperfine-*/out/hyperfine.fish 
"$pkgdir/usr/share/fish/vendor_completions.d/hyperfine.fish"
+  install -Dm644 target/release/build/hyperfine-*/out/_hyperfine 
"$pkgdir/usr/share/zsh/site-functions/_hyperfine"
+
+  install -Dm644 doc/hyperfine.1 "$pkgdir/usr/share/man/man1/hyperfine.1"
+}



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

2022-03-05 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, March 5, 2022 @ 23:55:38
  Author: svenstaro
Revision: 1142255

upgpkg: hyperfine 1.13.0-1

Modified:
  hyperfine/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-05 23:43:28 UTC (rev 1142254)
+++ PKGBUILD2022-03-05 23:55:38 UTC (rev 1142255)
@@ -1,7 +1,7 @@
-# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Sven-Hendrik Haase 
 # Contributor: cauebs 
 pkgname=hyperfine
-pkgver=1.12.0
+pkgver=1.13.0
 pkgrel=1
 pkgdesc="A command-line benchmarking tool"
 url="https://github.com/sharkdp/hyperfine;
@@ -11,27 +11,27 @@
 makedepends=(cargo)
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/sharkdp/$pkgname/archive/v$pkgver.tar.gz;)
 options=(zipman)
-sha256sums=('2120870a97e68fa3426eac5646a071c9646e96d2309220e3c258bf588e496454')
+sha256sums=('6e57c8e51962dd24a283ab46dde6fe306da772f4ef9bad86f8c89ac3a499c87e')
 
 build() {
-cd "$srcdir/$pkgname-$pkgver"
-cargo build --release --locked
+  cd "$srcdir/$pkgname-$pkgver"
+  cargo build --release --locked
 }
 
 check() {
-cd "$srcdir/$pkgname-$pkgver"
-cargo test --release --locked
+  cd "$srcdir/$pkgname-$pkgver"
+  cargo test --release --locked
 }
 
 package() {
-cd "$srcdir/$pkgname-$pkgver"
-install -Dm644 "LICENSE-APACHE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE"
-install -Dm644 "LICENSE-MIT" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT"
-install -Dm755 "target/release/$pkgname" "$pkgdir/usr/bin/$pkgname"
+  cd "$srcdir/$pkgname-$pkgver"
+  install -Dm644 "LICENSE-APACHE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE"
+  install -Dm644 "LICENSE-MIT" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT"
+  install -Dm755 "target/release/$pkgname" "$pkgdir/usr/bin/$pkgname"
 
-install -Dm644 target/release/build/hyperfine-*/out/hyperfine.bash 
"$pkgdir/usr/share/bash-completion/completions/hyperfine"
-install -Dm644 target/release/build/hyperfine-*/out/hyperfine.fish 
"$pkgdir/usr/share/fish/vendor_completions.d/hyperfine.fish"
-install -Dm644 target/release/build/hyperfine-*/out/_hyperfine 
"$pkgdir/usr/share/zsh/site-functions/_hyperfine"
+  install -Dm644 target/release/build/hyperfine-*/out/hyperfine.bash 
"$pkgdir/usr/share/bash-completion/completions/hyperfine"
+  install -Dm644 target/release/build/hyperfine-*/out/hyperfine.fish 
"$pkgdir/usr/share/fish/vendor_completions.d/hyperfine.fish"
+  install -Dm644 target/release/build/hyperfine-*/out/_hyperfine 
"$pkgdir/usr/share/zsh/site-functions/_hyperfine"
 
-install -Dm644 doc/hyperfine.1 "$pkgdir/usr/share/man/man1/hyperfine.1"
+  install -Dm644 doc/hyperfine.1 "$pkgdir/usr/share/man/man1/hyperfine.1"
 }



[arch-commits] Commit in fetchmail/repos/community-x86_64 (10 files)

2022-03-05 Thread Frederik Schwan via arch-commits
Date: Saturday, March 5, 2022 @ 21:46:52
  Author: freswa
Revision: 1142251

archrelease: copy trunk to community-x86_64

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

+
 PKGBUILD   |   82 +--
 fetchmail.service  |   22 ++---
 fetchmail.sysusers |4 +-
 fetchmail.tmpfiles |4 +-
 fetchmail@.service |   22 ++---
 5 files changed, 67 insertions(+), 67 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-03-05 21:46:48 UTC (rev 1142250)
+++ PKGBUILD2022-03-05 21:46:52 UTC (rev 1142251)
@@ -1,41 +0,0 @@
-# Maintainer: Frederik Schwan 
-# Contributor: Amish 
-# Contributor: Victor3D 
-
-pkgname=fetchmail
-pkgver=6.4.27
-pkgrel=1
-pkgdesc='A remote-mail retrieval utility'
-arch=('x86_64')
-url='https://www.fetchmail.info'
-license=('GPL')
-depends=('openssl')
-makedepends=('python')
-optdepends=('tk: for using fetchmailconf'
-'python-future: for using fetchmailconf')
-source=("https://sourceforge.net/projects/fetchmail/files/branch_${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;
-'fetchmail.tmpfiles'
-'fetchmail.sysusers'
-'fetchmail@.service'
-'fetchmail.service')
-b2sums=('fb349f8e4b17929d8ab5ec144e2d6e4227b56143112eb3745830c339f8dfdaa80fb47060ad3671258563198ed1283a903fcd5a82564b7320a829ceb4c5826642'
-
'b4ffb99efe4ab24a5a9ed3a27ad5a4645ef8611d66ca380e6acd36e81b34d2619142d62854fa7bd7716b8013d3ccf75ea3e1e18151ae95ff6c37c839631a5733'
-
'5000d2daa40cf36e46bd602d8c1ba45840587d289d19254187f92bced1b557a948e72417bbeaa3efd85e7d19f7f257effc310a96359b85eee6ed96d97d44c1b2'
-
'b8740cab8a59cc6c3082973e60d3eb262e3a76aa2b0517336d8f95fd4214a5ccbb2e292301d9112ede0747335f7f8d2815eb38b958085f702c01be30aa107f72'
-
'a86822f27f5f4c7b97f24baebcd383b5cc2a4fa7810226139e2c588368637417dbfa52f884a8fcc04b904fc1ac865189feb2070a215a8abf9c0192584c2dbbef')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --with-ssl=/usr
-  make
-}
-
-package() {
-  install -D -m644 fetchmail.tmpfiles 
"${pkgdir}"/usr/lib/tmpfiles.d/fetchmail.conf
-  install -D -m644 fetchmail.sysusers 
"${pkgdir}"/usr/lib/sysusers.d/fetchmail.conf
-  install -D -m644 fetchmail.service 
"${pkgdir}"/usr/lib/systemd/system/fetchmail.service
-  install -D -m644 fetchmail@.service 
"${pkgdir}"/usr/lib/systemd/system/fetchmail@.service
-  
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}

Copied: fetchmail/repos/community-x86_64/PKGBUILD (from rev 1142250, 
fetchmail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-03-05 21:46:52 UTC (rev 1142251)
@@ -0,0 +1,41 @@
+# Maintainer: Frederik Schwan 
+# Contributor: Amish 
+# Contributor: Victor3D 
+
+pkgname=fetchmail
+pkgver=6.4.28
+pkgrel=1
+pkgdesc='A remote-mail retrieval utility'
+arch=('x86_64')
+url='https://www.fetchmail.info'
+license=('GPL')
+depends=('openssl')
+makedepends=('python')
+optdepends=('tk: for using fetchmailconf'
+'python-future: for using fetchmailconf')
+source=("https://sourceforge.net/projects/fetchmail/files/branch_${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;
+'fetchmail.tmpfiles'
+'fetchmail.sysusers'
+'fetchmail@.service'
+'fetchmail.service')
+b2sums=('e550d3d7c4ab347c382bfc0c2205e827b03e6793c9a1e6f70c65d96012b78e8ff782df12fcb71c1be965eb06d16048947c1093a90db83a23cba6ffc43f6fd0cb'
+
'b4ffb99efe4ab24a5a9ed3a27ad5a4645ef8611d66ca380e6acd36e81b34d2619142d62854fa7bd7716b8013d3ccf75ea3e1e18151ae95ff6c37c839631a5733'
+
'5000d2daa40cf36e46bd602d8c1ba45840587d289d19254187f92bced1b557a948e72417bbeaa3efd85e7d19f7f257effc310a96359b85eee6ed96d97d44c1b2'
+
'b8740cab8a59cc6c3082973e60d3eb262e3a76aa2b0517336d8f95fd4214a5ccbb2e292301d9112ede0747335f7f8d2815eb38b958085f702c01be30aa107f72'
+
'a86822f27f5f4c7b97f24baebcd383b5cc2a4fa7810226139e2c588368637417dbfa52f884a8fcc04b904fc1ac865189feb2070a215a8abf9c0192584c2dbbef')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --with-ssl=/usr
+  make
+}

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

2022-03-05 Thread Frederik Schwan via arch-commits
Date: Saturday, March 5, 2022 @ 21:46:48
  Author: freswa
Revision: 1142250

upgpkg: fetchmail 6.4.28-1

Modified:
  fetchmail/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-05 21:32:44 UTC (rev 1142249)
+++ PKGBUILD2022-03-05 21:46:48 UTC (rev 1142250)
@@ -3,7 +3,7 @@
 # Contributor: Victor3D 
 
 pkgname=fetchmail
-pkgver=6.4.27
+pkgver=6.4.28
 pkgrel=1
 pkgdesc='A remote-mail retrieval utility'
 arch=('x86_64')
@@ -18,7 +18,7 @@
 'fetchmail.sysusers'
 'fetchmail@.service'
 'fetchmail.service')
-b2sums=('fb349f8e4b17929d8ab5ec144e2d6e4227b56143112eb3745830c339f8dfdaa80fb47060ad3671258563198ed1283a903fcd5a82564b7320a829ceb4c5826642'
+b2sums=('e550d3d7c4ab347c382bfc0c2205e827b03e6793c9a1e6f70c65d96012b78e8ff782df12fcb71c1be965eb06d16048947c1093a90db83a23cba6ffc43f6fd0cb'
 
'b4ffb99efe4ab24a5a9ed3a27ad5a4645ef8611d66ca380e6acd36e81b34d2619142d62854fa7bd7716b8013d3ccf75ea3e1e18151ae95ff6c37c839631a5733'
 
'5000d2daa40cf36e46bd602d8c1ba45840587d289d19254187f92bced1b557a948e72417bbeaa3efd85e7d19f7f257effc310a96359b85eee6ed96d97d44c1b2'
 
'b8740cab8a59cc6c3082973e60d3eb262e3a76aa2b0517336d8f95fd4214a5ccbb2e292301d9112ede0747335f7f8d2815eb38b958085f702c01be30aa107f72'



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

2022-03-05 Thread George Rawlinson via arch-commits
Date: Saturday, March 5, 2022 @ 21:32:44
  Author: grawlinson
Revision: 1142249

archrelease: copy trunk to community-x86_64

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

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

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

Copied: dovecot-fts-xapian/repos/community-x86_64/PKGBUILD (from rev 1142248, 
dovecot-fts-xapian/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-03-05 21:32:44 UTC (rev 1142249)
@@ -0,0 +1,53 @@
+# Maintainer: George Rawlinson 
+# Maintainer: Thore Bödecker 
+
+# This must be built against the version of dovecot being used,
+# otherwise it will fail to load and thus work.
+# Specify the version of dovecot to be used here:
+_dcpkgver=2.3.18
+# Make sure to bump pkgrel if changing this.
+
+pkgname=dovecot-fts-xapian
+_pkgname="${pkgname#dovecot-}"
+_pkgver=1.5.4b # pacman's vercmp does not like alphabet characters without a 
dot prefix
+pkgver=1.5.4.b
+pkgrel=1
+pkgdesc="Dovecot FTS plugin based on Xapian"
+arch=('x86_64')
+url="https://github.com/grosjo/fts-xapian;
+license=('LGPL2.1')
+depends=("dovecot=${_dcpkgver}" 'icu' 'xapian-core')
+install="$pkgname.install"
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$_pkgver.tar.gz")
+sha512sums=('a943d8bbfd027c5b6c249d9424e9ef61dd6928239733515f2583c7480318f18ef172d9910e9b55289e4c7bcaa6bcfc5255ba1bb871aad9de4c42bd089c2e02c9')
+b2sums=('be9785db7cc107d2c1ad9d9bd1fb70a2e6fa28f8dfdf5badb466aa9874f22008ffa1e72e2d9bb63d82a6e350235499606eb91ea7b987fcdda93a0cff276749d8')
+
+build() {
+  cd "$_pkgname-$_pkgver"
+  autoreconf -vi
+  ./configure \
+--prefix=/usr \
+--with-dovecot=/usr/lib/dovecot
+
+  make
+
+  # generate systemd unit files
+  mkdir build
+  sed "s:@@prefix@@:/usr/bin:" contrib/systemd/dovecot-fts-optimize.service.in 
\
+> build/dovecot-fts-optimize.service
+  sed "s:@@index_frequency@@:daily:" 
contrib/systemd/dovecot-fts-optimize.timer.in \
+> build/dovecot-fts-optimize.timer
+}
+
+package() {
+  cd "$_pkgname-$_pkgver"
+
+  make DESTDIR="$pkgdir" install
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
+
+  # systemd integration
+  install -vDm644 -t "$pkgdir/usr/lib/systemd/system" \
+build/dovecot-fts-optimize.{service,timer}
+}

Deleted: dovecot-fts-xapian.install
===
--- dovecot-fts-xapian.install  2022-03-05 21:31:53 UTC (rev 1142248)
+++ dovecot-fts-xapian.install  2022-03-05 21:32:44 UTC (rev 1142249)
@@ -1,12 +0,0 @@
-post_install() {

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

2022-03-05 Thread George Rawlinson via arch-commits
Date: Saturday, March 5, 2022 @ 21:31:53
  Author: grawlinson
Revision: 1142248

upgpkg: dovecot-fts-xapian 1.5.4.b-1

* New upstream release.
* Fix version string due to vercmp interpretation of alpha characters.

Modified:
  dovecot-fts-xapian/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-05 21:27:04 UTC (rev 1142247)
+++ PKGBUILD2022-03-05 21:31:53 UTC (rev 1142248)
@@ -9,7 +9,8 @@
 
 pkgname=dovecot-fts-xapian
 _pkgname="${pkgname#dovecot-}"
-pkgver=1.5.3
+_pkgver=1.5.4b # pacman's vercmp does not like alphabet characters without a 
dot prefix
+pkgver=1.5.4.b
 pkgrel=1
 pkgdesc="Dovecot FTS plugin based on Xapian"
 arch=('x86_64')
@@ -17,12 +18,12 @@
 license=('LGPL2.1')
 depends=("dovecot=${_dcpkgver}" 'icu' 'xapian-core')
 install="$pkgname.install"
-source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha512sums=('b1fe46a4440dd3736e17f3f65131f4e7dc9326e5bb555bde640809b4add04efd076abffaae37af9104037a9dade3ac23d14dc32d19c38442c46a2cb617514a77')
-b2sums=('c4ba14e85f616a8536a5c2fa94267df362e11974ff12d187cea63d7904b6e8ce3e0144133e602f49e607901ecf2321205d58e761dc374c0bf09ab6a2f2289e4e')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$_pkgver.tar.gz")
+sha512sums=('a943d8bbfd027c5b6c249d9424e9ef61dd6928239733515f2583c7480318f18ef172d9910e9b55289e4c7bcaa6bcfc5255ba1bb871aad9de4c42bd089c2e02c9')
+b2sums=('be9785db7cc107d2c1ad9d9bd1fb70a2e6fa28f8dfdf5badb466aa9874f22008ffa1e72e2d9bb63d82a6e350235499606eb91ea7b987fcdda93a0cff276749d8')
 
 build() {
-  cd "$_pkgname-$pkgver"
+  cd "$_pkgname-$_pkgver"
   autoreconf -vi
   ./configure \
 --prefix=/usr \
@@ -39,7 +40,7 @@
 }
 
 package() {
-  cd "$_pkgname-$pkgver"
+  cd "$_pkgname-$_pkgver"
 
   make DESTDIR="$pkgdir" install
 



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

2022-03-05 Thread Daniel M. Capella via arch-commits
Date: Saturday, March 5, 2022 @ 21:27:04
  Author: polyzen
Revision: 1142247

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-03-05 21:26:44 UTC (rev 1142246)
+++ PKGBUILD2022-03-05 21:27:04 UTC (rev 1142247)
@@ -1,41 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Timothée Ravier 
-
-_name=dulwich
-pkgname=python-dulwich
-pkgver=0.20.32
-pkgrel=1
-pkgdesc='Pure-Python implementation of the Git file formats and protocols'
-arch=('x86_64')
-url=https://www.dulwich.io
-license=('GPL')
-depends=('python-certifi' 'python-urllib3')
-makedepends=('python-setuptools')
-checkdepends=('python-gpgme')
-optdepends=('python-fastimport: for fast-import support'
-'python-gpgme: for PGP signature support'
-'python-idna: for HTTPS support via urllib3'
-'python-pyopenssl: for HTTPS support via urllib3'
-'python-pyinotify: to watch for changes to refs')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
-sha256sums=('dc5498b072bdc12c1effef4b6202cd2a4542bb1c6dbb4ddcfc8c6d53e08b488c')
-b2sums=('21d41a7b1e491848a11ab3e3b1b63bfbe1798b38ef331136b07609f004e780672477e91a637dd3b1ccd3b26e359461e1a16d759ac2cb98d1091fbdb1968c00a9')
-
-build() {
-  cd $_name-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd $_name-$pkgver
-  python -m venv --system-site-packages test-env
-  test-env/bin/python setup.py install --optimize=1 --skip-build
-  test-env/bin/python -m unittest dulwich.tests.test_suite
-}
-
-package() {
-  cd $_name-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-dulwich/repos/community-x86_64/PKGBUILD (from rev 1142246, 
python-dulwich/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-03-05 21:27:04 UTC (rev 1142247)
@@ -0,0 +1,41 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Timothée Ravier 
+
+_name=dulwich
+pkgname=python-dulwich
+pkgver=0.20.33
+pkgrel=1
+pkgdesc='Pure-Python implementation of the Git file formats and protocols'
+arch=('x86_64')
+url=https://www.dulwich.io
+license=('GPL')
+depends=('python-certifi' 'python-urllib3')
+makedepends=('python-setuptools')
+checkdepends=('python-gpgme')
+optdepends=('python-fastimport: for fast-import support'
+'python-gpgme: for PGP signature support'
+'python-idna: for HTTPS support via urllib3'
+'python-pyopenssl: for HTTPS support via urllib3'
+'python-pyinotify: to watch for changes to refs')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
+sha256sums=('9537abef8cabee96b0c09af950661b883057879a788d98f1187b79e32fee9650')
+b2sums=('57b7a05f7a23745ba63e2faba9cd3772637a61cf9f2077eaf7ec799f5e3d25de7245aabbebf22cb58f5cb45318b653335251fc46b136b108770aaa6c2b09e099')
+
+build() {
+  cd $_name-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd $_name-$pkgver
+  python -m venv --system-site-packages test-env
+  test-env/bin/python setup.py install --optimize=1 --skip-build
+  test-env/bin/python -m unittest dulwich.tests.test_suite
+}
+
+package() {
+  cd $_name-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-03-05 Thread Daniel M. Capella via arch-commits
Date: Saturday, March 5, 2022 @ 21:26:44
  Author: polyzen
Revision: 1142246

upgpkg: python-dulwich 0.20.33-1

Modified:
  python-dulwich/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-05 20:52:16 UTC (rev 1142245)
+++ PKGBUILD2022-03-05 21:26:44 UTC (rev 1142246)
@@ -3,7 +3,7 @@
 
 _name=dulwich
 pkgname=python-dulwich
-pkgver=0.20.32
+pkgver=0.20.33
 pkgrel=1
 pkgdesc='Pure-Python implementation of the Git file formats and protocols'
 arch=('x86_64')
@@ -18,8 +18,8 @@
 'python-pyopenssl: for HTTPS support via urllib3'
 'python-pyinotify: to watch for changes to refs')
 
source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
-sha256sums=('dc5498b072bdc12c1effef4b6202cd2a4542bb1c6dbb4ddcfc8c6d53e08b488c')
-b2sums=('21d41a7b1e491848a11ab3e3b1b63bfbe1798b38ef331136b07609f004e780672477e91a637dd3b1ccd3b26e359461e1a16d759ac2cb98d1091fbdb1968c00a9')
+sha256sums=('9537abef8cabee96b0c09af950661b883057879a788d98f1187b79e32fee9650')
+b2sums=('57b7a05f7a23745ba63e2faba9cd3772637a61cf9f2077eaf7ec799f5e3d25de7245aabbebf22cb58f5cb45318b653335251fc46b136b108770aaa6c2b09e099')
 
 build() {
   cd $_name-$pkgver



[arch-commits] Commit in freeplane/repos/community-any (7 files)

2022-03-05 Thread Leonidas Spyropoulos via arch-commits
Date: Saturday, March 5, 2022 @ 20:52:16
  Author: artafinde
Revision: 1142245

archrelease: copy trunk to community-any

Added:
  freeplane/repos/community-any/PKGBUILD
(from rev 1142244, freeplane/trunk/PKGBUILD)
  freeplane/repos/community-any/freeplane.desktop
(from rev 1142244, freeplane/trunk/freeplane.desktop)
  freeplane/repos/community-any/freeplane.run
(from rev 1142244, freeplane/trunk/freeplane.run)
Deleted:
  
freeplane/repos/community-any/0001-feat-add-support-for-reproducible-builds.patch
  freeplane/repos/community-any/PKGBUILD
  freeplane/repos/community-any/freeplane.desktop
  freeplane/repos/community-any/freeplane.run

-+
 0001-feat-add-support-for-reproducible-builds.patch |   33 ---
 PKGBUILD|  159 --
 freeplane.desktop   |   54 +++---
 freeplane.run   |6 
 4 files changed, 106 insertions(+), 146 deletions(-)

Deleted: 0001-feat-add-support-for-reproducible-builds.patch
===
--- 0001-feat-add-support-for-reproducible-builds.patch 2022-03-05 20:51:59 UTC 
(rev 1142244)
+++ 0001-feat-add-support-for-reproducible-builds.patch 2022-03-05 20:52:16 UTC 
(rev 1142245)
@@ -1,33 +0,0 @@
-From d27bab4d8d5fc4cbcbd22d9d476ca75970cc5c9a Mon Sep 17 00:00:00 2001
-From: Leonidas Spyropoulos 
-Date: Thu, 27 Jan 2022 12:19:41 +
-Subject: [PATCH] feat: add support for reproducible builds
-
-As per gradle [docs] add support to remove timestamps and package with same 
order which is required from [reproducible] builds
-
-[docs]: 
https://docs.gradle.org/current/userguide/working_with_files.html#sec:archives
-[reproducible]: https://reproducible-builds.org/
-
-Signed-off-by: Leonidas Spyropoulos 

- build.gradle | 4 
- 1 file changed, 4 insertions(+)
-
-diff --git a/build.gradle b/build.gradle
-index d97b7ac09..9c49b8dbe 100644
 a/build.gradle
-+++ b/build.gradle
-@@ -86,6 +86,10 @@ subprojects {
- tasks.withType(JavaCompile) {
-   options.encoding = "UTF-8"
- }
-+tasks.withType(AbstractArchiveTask).configureEach {
-+  preserveFileTimestamps = false
-+  reproducibleFileOrder = true
-+}
- javadoc {
-   options.encoding = "UTF-8"
-   options.docEncoding = "UTF-8"
--- 
-2.35.1
-

Deleted: PKGBUILD
===
--- PKGBUILD2022-03-05 20:51:59 UTC (rev 1142244)
+++ PKGBUILD2022-03-05 20:52:16 UTC (rev 1142245)
@@ -1,83 +0,0 @@
-# Maintainer: Leonidas Spyropoulos (artafi...@archlinux.org)
-# Contributor: scraw...@gmail.com
-
-pkgname=freeplane
-pkgver=1.9.12
-pkgrel=2
-pkgdesc="A Java mindmapping tool"
-arch=('any')
-url="http://freeplane.sourceforge.net;
-license=('GPL2')
-_jrever=8
-_jdkver=11
-makedepends=('gradle' "jdk${_jdkver}-openjdk" 'gnu-free-fonts' 'fontconfig')
-depends=("java-runtime>${_jrever}")
-source=("https://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}_src-${pkgver}.tar.gz;
-"freeplane.desktop" "freeplane.run"
-"0001-feat-add-support-for-reproducible-builds.patch")
-b2sums=('f04980e46ffd1641b26f1269a0b020b11776142f9d14bfe619fa420dd94ab32d5efa54872d678776b60ab77257798423c72a810eef0d3403101310e40bfcea96'
-
'87c25331e01823e38668e4b394a51a279c05b24b088f4ffc1482d3783e24018da8f9e51b3ad1a62c5a863f85a6ccb30bbe8999cb861dc1b93d5483019644cfa5'
-
'24ca56b7c7894b9bb38600b4d37973769243e1bdb221f33125b60bf4f878a3b630775710fab9dee97fa45a69319455037e294860ba7fbd608529982c6b0b1538'
-
'99405ae2ff6b01c5c655214b1553bb346ccdc8d2df6bf29900fcebdb9525d860a425a4918b7fa1434967ef29c11c4f51d988ea2f53a76459b07c2b63f74857b0')
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  patch -Np1 < "${srcdir}/0001-feat-add-support-for-reproducible-builds.patch"
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  export JAVA_HOME="/usr/lib/jvm/java-${_jdkver}-openjdk"
-  export PATH="/usr/lib/jvm/java-${_jdkver}-openjdk/bin:$PATH"
-  gradle -Dorg.gradle.daemon=false build
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}/BIN"
-  # Copy plugins
-  find plugins -type f | while read file ; do
-install -Dm644 "${file}" "${pkgdir}/usr/share/freeplane/${file}"
-  done
-  # Copy docs (excluding API JavaDocs)
-  find doc -type f ! -path "*api*"| while read file; do
-install -Dm644 "${file}" "${pkgdir}/usr/share/freeplane/${file}"
-  done
-  # Copy various
-  install -Dm644 "${srcdir}/${pkgname}-${pkgver}/BIN"/framework.jar 
"${pkgdir}"/usr/share/freeplane/framework.jar
-  install -Dm644 "${srcdir}/${pkgname}-${pkgver}/BIN"/freeplane.l4j.ini 
"${pkgdir}"/usr/share/freeplane/freeplane.l4j.ini
-  install -Dm755 "${srcdir}/${pkgname}-${pkgver}/BIN"/freeplane.policy 
"${pkgdir}"/usr/share/freeplane/freeplane.policy
-  install -Dm755 "${srcdir}/${pkgname}-${pkgver}/BIN"/freeplane.sh 

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

2022-03-05 Thread Leonidas Spyropoulos via arch-commits
Date: Saturday, March 5, 2022 @ 20:51:59
  Author: artafinde
Revision: 1142244

freeplane: upstream release 1.9.13

Modified:
  freeplane/trunk/PKGBUILD
Deleted:
  freeplane/trunk/0001-feat-add-support-for-reproducible-builds.patch

-+
 0001-feat-add-support-for-reproducible-builds.patch |   33 --
 PKGBUILD|   17 ++---
 2 files changed, 5 insertions(+), 45 deletions(-)

Deleted: 0001-feat-add-support-for-reproducible-builds.patch
===
--- 0001-feat-add-support-for-reproducible-builds.patch 2022-03-05 20:16:13 UTC 
(rev 1142243)
+++ 0001-feat-add-support-for-reproducible-builds.patch 2022-03-05 20:51:59 UTC 
(rev 1142244)
@@ -1,33 +0,0 @@
-From d27bab4d8d5fc4cbcbd22d9d476ca75970cc5c9a Mon Sep 17 00:00:00 2001
-From: Leonidas Spyropoulos 
-Date: Thu, 27 Jan 2022 12:19:41 +
-Subject: [PATCH] feat: add support for reproducible builds
-
-As per gradle [docs] add support to remove timestamps and package with same 
order which is required from [reproducible] builds
-
-[docs]: 
https://docs.gradle.org/current/userguide/working_with_files.html#sec:archives
-[reproducible]: https://reproducible-builds.org/
-
-Signed-off-by: Leonidas Spyropoulos 

- build.gradle | 4 
- 1 file changed, 4 insertions(+)
-
-diff --git a/build.gradle b/build.gradle
-index d97b7ac09..9c49b8dbe 100644
 a/build.gradle
-+++ b/build.gradle
-@@ -86,6 +86,10 @@ subprojects {
- tasks.withType(JavaCompile) {
-   options.encoding = "UTF-8"
- }
-+tasks.withType(AbstractArchiveTask).configureEach {
-+  preserveFileTimestamps = false
-+  reproducibleFileOrder = true
-+}
- javadoc {
-   options.encoding = "UTF-8"
-   options.docEncoding = "UTF-8"
--- 
-2.35.1
-

Modified: PKGBUILD
===
--- PKGBUILD2022-03-05 20:16:13 UTC (rev 1142243)
+++ PKGBUILD2022-03-05 20:51:59 UTC (rev 1142244)
@@ -2,8 +2,8 @@
 # Contributor: scraw...@gmail.com
 
 pkgname=freeplane
-pkgver=1.9.12
-pkgrel=2
+pkgver=1.9.13
+pkgrel=1
 pkgdesc="A Java mindmapping tool"
 arch=('any')
 url="http://freeplane.sourceforge.net;
@@ -13,18 +13,11 @@
 makedepends=('gradle' "jdk${_jdkver}-openjdk" 'gnu-free-fonts' 'fontconfig')
 depends=("java-runtime>${_jrever}")
 
source=("https://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}_src-${pkgver}.tar.gz;
-"freeplane.desktop" "freeplane.run"
-"0001-feat-add-support-for-reproducible-builds.patch")
-b2sums=('f04980e46ffd1641b26f1269a0b020b11776142f9d14bfe619fa420dd94ab32d5efa54872d678776b60ab77257798423c72a810eef0d3403101310e40bfcea96'
+"freeplane.desktop" "freeplane.run")
+b2sums=('5f4c5cb5d9af851de858fc2216be8c1bfb56d161067e9aa5504690ca32ee949556f532cadf886955e2ee5b23d61ef4c3f3f6be2acd7362e821f9d3ab3322166c'
 
'87c25331e01823e38668e4b394a51a279c05b24b088f4ffc1482d3783e24018da8f9e51b3ad1a62c5a863f85a6ccb30bbe8999cb861dc1b93d5483019644cfa5'
-
'24ca56b7c7894b9bb38600b4d37973769243e1bdb221f33125b60bf4f878a3b630775710fab9dee97fa45a69319455037e294860ba7fbd608529982c6b0b1538'
-
'99405ae2ff6b01c5c655214b1553bb346ccdc8d2df6bf29900fcebdb9525d860a425a4918b7fa1434967ef29c11c4f51d988ea2f53a76459b07c2b63f74857b0')
+
'24ca56b7c7894b9bb38600b4d37973769243e1bdb221f33125b60bf4f878a3b630775710fab9dee97fa45a69319455037e294860ba7fbd608529982c6b0b1538')
 
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  patch -Np1 < "${srcdir}/0001-feat-add-support-for-reproducible-builds.patch"
-}
-
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"
   export JAVA_HOME="/usr/lib/jvm/java-${_jdkver}-openjdk"



[arch-commits] Commit in open-vm-tools/repos (4 files)

2022-03-05 Thread Christian Hesse via arch-commits
Date: Saturday, March 5, 2022 @ 20:16:13
  Author: eworm
Revision: 1142243

archrelease: copy trunk to community-testing-x86_64

Added:
  open-vm-tools/repos/community-testing-x86_64/
  open-vm-tools/repos/community-testing-x86_64/PKGBUILD
(from rev 1142242, open-vm-tools/trunk/PKGBUILD)
  open-vm-tools/repos/community-testing-x86_64/vmtoolsd.service
(from rev 1142242, open-vm-tools/trunk/vmtoolsd.service)
  open-vm-tools/repos/community-testing-x86_64/vmware-vmblock-fuse.service
(from rev 1142242, open-vm-tools/trunk/vmware-vmblock-fuse.service)

-+
 PKGBUILD|   67 ++
 vmtoolsd.service|   10 ++
 vmware-vmblock-fuse.service |   12 +++
 3 files changed, 89 insertions(+)

Copied: open-vm-tools/repos/community-testing-x86_64/PKGBUILD (from rev 
1142242, open-vm-tools/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2022-03-05 20:16:13 UTC (rev 1142243)
@@ -0,0 +1,67 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: Krzysztof Raczkowski 
+
+pkgname=open-vm-tools
+epoch=6
+pkgver=12.0.0
+pkgrel=1
+pkgdesc='The Open Virtual Machine Tools (open-vm-tools) are the open source 
implementation of VMware Tools'
+arch=('x86_64')
+url='https://github.com/vmware/open-vm-tools'
+license=('LGPL')
+depends=('fuse2' 'icu' 'iproute2' 'libdnet' 'libmspack' 'libsigc++'
+ 'libxcrypt' 'libcrypt.so' 'libxss' 'lsb-release' 'procps-ng'
+ 'uriparser' 'gdk-pixbuf-xlib')
+makedepends=('chrpath' 'doxygen' 'gtkmm3' 'libxtst' 'python' 'rpcsvc-proto')
+checkdepends=('cunit')
+optdepends=('gtkmm3: DnD/CP plugin'
+'libxtst: DnD/CP, resolution set plugins'
+'netctl: suspend-resume network state'
+'networkmanager: suspend-resume network state')
+backup=('etc/xdg/autostart/vmware-user.desktop')
+options=('docs')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/vmware/open-vm-tools/archive/stable-${pkgver/_/-}.tar.gz;
+'vmtoolsd.service'
+'vmware-vmblock-fuse.service')
+sha256sums=('244d224dc503f2c9350899a61fef418f23dc0520e8e30dce10863ea2dc81f047'
+'0626cc86232f75a7286c24c52d6b44260bba55e2e96c17fa22ed36decb61a4d9'
+'99e3cc1da20a751049144cc02dec77174a55109b5b5960e1facd78709da7724f')
+
+prepare() {
+  cd "$srcdir/$pkgname-stable-${pkgver}/open-vm-tools/"
+
+  autoreconf -vi
+}
+
+build() {
+  cd "$srcdir/$pkgname-stable-${pkgver}/open-vm-tools/"
+
+  sh ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc \
+--with-udev-rules-dir=/usr/lib/udev/rules.d \
+--without-xmlsecurity \
+--without-kernel-modules
+  make
+}
+
+check() {
+  cd "$srcdir/$pkgname-stable-${pkgver}/open-vm-tools/"
+
+  make check
+}
+
+package() {
+  cd "$srcdir/$pkgname-stable-${pkgver}/open-vm-tools/"
+
+  make install DESTDIR="$pkgdir"
+  chmod 7755 "$pkgdir"/usr/bin/vmware-user-suid-wrapper
+
+  # install vmware-xdg-detect-de
+  install -D -m0755 scripts/common/vmware-xdg-detect-de 
"$pkgdir"/usr/bin/vmware-xdg-detect-de
+
+  # install systemd files
+  install -D -m0644 "$srcdir"/vmtoolsd.service 
"$pkgdir"/usr/lib/systemd/system/vmtoolsd.service
+  install -D -m0644 "$srcdir"/vmware-vmblock-fuse.service 
"$pkgdir"/usr/lib/systemd/system/vmware-vmblock-fuse.service
+}

Copied: open-vm-tools/repos/community-testing-x86_64/vmtoolsd.service (from rev 
1142242, open-vm-tools/trunk/vmtoolsd.service)
===
--- community-testing-x86_64/vmtoolsd.service   (rev 0)
+++ community-testing-x86_64/vmtoolsd.service   2022-03-05 20:16:13 UTC (rev 
1142243)
@@ -0,0 +1,10 @@
+[Unit]
+Description=Open Virtual Machine Tools (VMware Tools)
+ConditionVirtualization=vmware
+After=display-manager.service
+
+[Service]
+ExecStart=/usr/bin/vmtoolsd
+
+[Install]
+WantedBy=multi-user.target

Copied: 
open-vm-tools/repos/community-testing-x86_64/vmware-vmblock-fuse.service (from 
rev 1142242, open-vm-tools/trunk/vmware-vmblock-fuse.service)
===
--- community-testing-x86_64/vmware-vmblock-fuse.service
(rev 0)
+++ community-testing-x86_64/vmware-vmblock-fuse.service2022-03-05 
20:16:13 UTC (rev 1142243)
@@ -0,0 +1,12 @@
+[Unit]
+Description=Open Virtual Machine Tools (vmware-vmblock-fuse)
+ConditionVirtualization=vmware
+
+[Service]
+Type=simple
+RuntimeDirectory=vmblock-fuse
+RuntimeDirectoryMode=755
+ExecStart=/usr/bin/vmware-vmblock-fuse -d -f -o 
subtype=vmware-vmblock,default_permissions,allow_other /run/vmblock-fuse
+
+[Install]
+WantedBy=multi-user.target



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

2022-03-05 Thread Christian Hesse via arch-commits
Date: Saturday, March 5, 2022 @ 20:16:09
  Author: eworm
Revision: 1142242

upgpkg: open-vm-tools 6:12.0.0-1: new upstream release

Modified:
  open-vm-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-05 20:11:27 UTC (rev 1142241)
+++ PKGBUILD2022-03-05 20:16:09 UTC (rev 1142242)
@@ -3,7 +3,7 @@
 
 pkgname=open-vm-tools
 epoch=6
-pkgver=11.3.5
+pkgver=12.0.0
 pkgrel=1
 pkgdesc='The Open Virtual Machine Tools (open-vm-tools) are the open source 
implementation of VMware Tools'
 arch=('x86_64')
@@ -23,7 +23,7 @@
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/vmware/open-vm-tools/archive/stable-${pkgver/_/-}.tar.gz;
 'vmtoolsd.service'
 'vmware-vmblock-fuse.service')
-sha256sums=('26053a93d8aa5387e49a974ed3d0c89a1efd7e0911d694cd9b9f4306bd74b885'
+sha256sums=('244d224dc503f2c9350899a61fef418f23dc0520e8e30dce10863ea2dc81f047'
 '0626cc86232f75a7286c24c52d6b44260bba55e2e96c17fa22ed36decb61a4d9'
 '99e3cc1da20a751049144cc02dec77174a55109b5b5960e1facd78709da7724f')
 



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

2022-03-05 Thread Christian Hesse via arch-commits
Date: Saturday, March 5, 2022 @ 20:11:38
  Author: eworm
Revision: 439002

archrelease: copy trunk to testing-x86_64

Added:
  curl/repos/testing-x86_64/
  curl/repos/testing-x86_64/PKGBUILD
(from rev 439001, curl/trunk/PKGBUILD)

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

Copied: curl/repos/testing-x86_64/PKGBUILD (from rev 439001, 
curl/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2022-03-05 20:11:38 UTC (rev 439002)
@@ -0,0 +1,119 @@
+# Maintainer: Dave Reisner 
+# Contributor: Angel Velasquez 
+# Contributor: Eric Belanger 
+# Contributor: Lucien Immink 
+# Contributor: Daniel J Griffiths 
+
+pkgbase=curl
+pkgname=(curl libcurl-compat libcurl-gnutls)
+pkgver=7.82.0
+pkgrel=1
+pkgdesc='An URL retrieval utility and library'
+arch=('x86_64')
+url='https://curl.haxx.se'
+license=('MIT')
+options=('debug')
+depends=('ca-certificates' 'brotli' 'libbrotlidec.so' 'krb5' 
'libgssapi_krb5.so'
+ 'libidn2' 'libidn2.so' 'libnghttp2' 'libpsl' 'libpsl.so' 'libssh2' 
'libssh2.so'
+ 'openssl' 'zlib' 'zstd' 'libzstd.so')
+provides=('libcurl.so')
+source=("https://curl.haxx.se/download/${pkgname}-${pkgver}.tar.gz"{,.asc})
+sha512sums=('d4c4a785876e0d1ba1c1adbe65528d56a8b81fc03ff724e87819cfe51aca60f8a7bf2ac9384f30c3a6bbd28669b2bd3e9a6794737243c836c4902d085a72c474'
+'SKIP')
+validpgpkeys=('27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2') # Daniel Stenberg
+
+_configure_options=(
+  --prefix='/usr'
+  --mandir='/usr/share/man'
+  --disable-ldap
+  --disable-ldaps
+  --disable-manual
+  --enable-ipv6
+  --enable-threaded-resolver
+  --with-gssapi
+  --with-libssh2
+  --with-openssl
+  --with-random='/dev/urandom'
+  --with-ca-bundle='/etc/ssl/certs/ca-certificates.crt'
+)
+
+build() {
+  mkdir build-curl{,-compat,-gnutls}
+
+  # build curl
+  cd "${srcdir}"/build-curl
+
+  "${srcdir}/${pkgbase}-${pkgver}"/configure \
+"${_configure_options[@]}" \
+--enable-versioned-symbols
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+
+  # build libcurl-compat
+  cd "${srcdir}"/build-curl-compat
+
+  "${srcdir}/${pkgbase}-${pkgver}"/configure \
+"${_configure_options[@]}" \
+--disable-versioned-symbols
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make -C lib
+
+  # build libcurl-gnutls
+  cd "${srcdir}"/build-curl-gnutls
+
+  "${srcdir}/${pkgbase}-${pkgver}"/configure \
+"${_configure_options[@]}" \
+--disable-versioned-symbols \
+--without-ssl \
+--with-gnutls='/usr'
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make -C lib
+}
+
+package_curl() {
+  cd build-curl
+
+  make DESTDIR="${pkgdir}" install
+  make DESTDIR="${pkgdir}" install -C scripts
+
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  # license
+  install -Dt "${pkgdir}/usr/share/licenses/$pkgname" -m0644 COPYING
+}
+
+package_libcurl-compat() {
+  pkgdesc='An URL retrieval library (without versioned symbols)'
+  depends=('curl' 'openssl')
+
+  cd "${srcdir}"/build-curl-compat
+
+  make -C lib DESTDIR="${pkgdir}" install
+
+  mv "${pkgdir}"/usr/lib/libcurl{,-compat}.so.4.7.0
+  rm "${pkgdir}"/usr/lib/libcurl.{a,so}*
+  for version in 3 4.0.0 4.1.0 4.2.0 4.3.0 4.4.0 4.5.0 4.6.0; do
+ln -s libcurl-compat.so.4.7.0 "${pkgdir}"/usr/lib/libcurl.so.${version}
+  done
+
+  install -dm 0755 "${pkgdir}"/usr/share/licenses
+  ln -s curl "${pkgdir}"/usr/share/licenses/libcurl-compat
+}
+
+package_libcurl-gnutls() {
+  pkgdesc='An URL retrieval library (without versioned symbols and linked 
against gnutls)'
+  depends=('curl' 'gnutls')
+
+  cd "${srcdir}"/build-curl-gnutls
+
+  make -C lib DESTDIR="${pkgdir}" install
+
+  mv "${pkgdir}"/usr/lib/libcurl{,-gnutls}.so.4.7.0
+  rm "${pkgdir}"/usr/lib/libcurl.{a,so}*
+  for version in 3 4 4.0.0 4.1.0 4.2.0 4.3.0 4.4.0 4.5.0 4.6.0; do
+ln -s libcurl-gnutls.so.4.7.0 
"${pkgdir}"/usr/lib/libcurl-gnutls.so.${version}
+  done
+
+  install -dm 0755 "${pkgdir}"/usr/share/licenses
+  ln -s curl "${pkgdir}"/usr/share/licenses/libcurl-gnutls
+}



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

2022-03-05 Thread Christian Hesse via arch-commits
Date: Saturday, March 5, 2022 @ 20:11:34
  Author: eworm
Revision: 439001

upgpkg: curl 7.82.0-1: new upstream release

Modified:
  curl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-05 20:09:03 UTC (rev 439000)
+++ PKGBUILD2022-03-05 20:11:34 UTC (rev 439001)
@@ -6,8 +6,8 @@
 
 pkgbase=curl
 pkgname=(curl libcurl-compat libcurl-gnutls)
-pkgver=7.81.0
-pkgrel=3
+pkgver=7.82.0
+pkgrel=1
 pkgdesc='An URL retrieval utility and library'
 arch=('x86_64')
 url='https://curl.haxx.se'
@@ -18,7 +18,7 @@
  'openssl' 'zlib' 'zstd' 'libzstd.so')
 provides=('libcurl.so')
 source=("https://curl.haxx.se/download/${pkgname}-${pkgver}.tar.gz"{,.asc})
-sha512sums=('e3084f0fa083f7f93eac923edbfdddb5fd0a372b94673ba9d4427a2b95508898c15ecdf63b99a1c1f6cf3215e27b06cbaa2b7073df038d43b362e586f92495d3'
+sha512sums=('d4c4a785876e0d1ba1c1adbe65528d56a8b81fc03ff724e87819cfe51aca60f8a7bf2ac9384f30c3a6bbd28669b2bd3e9a6794737243c836c4902d085a72c474'
 'SKIP')
 validpgpkeys=('27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2') # Daniel Stenberg
 



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

2022-03-05 Thread Christian Hesse via arch-commits
Date: Saturday, March 5, 2022 @ 20:11:27
  Author: eworm
Revision: 1142241

archrelease: copy trunk to community-testing-x86_64

Added:
  lib32-curl/repos/community-testing-x86_64/
  lib32-curl/repos/community-testing-x86_64/PKGBUILD
(from rev 1142240, lib32-curl/trunk/PKGBUILD)

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

Copied: lib32-curl/repos/community-testing-x86_64/PKGBUILD (from rev 1142240, 
lib32-curl/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2022-03-05 20:11:27 UTC (rev 1142241)
@@ -0,0 +1,127 @@
+# Maintainer: Daniel Wallace 
+# Contributor: Dave Reisner 
+# Contributor: Angel Velasquez 
+# Contributor: Eric Belanger 
+# Contributor: Lucien Immink 
+# Contributor: Daniel J Griffiths 
+
+pkgbase=lib32-curl
+pkgname=(lib32-curl lib32-libcurl-compat lib32-libcurl-gnutls)
+pkgver=7.82.0
+pkgrel=1
+pkgdesc='An URL retrieval utility and library (32-bit)'
+arch=('x86_64')
+url='https://curl.haxx.se'
+license=('MIT')
+depends=('curl' 'lib32-brotli' 'lib32-libidn2' 'lib32-libssh2' 'lib32-krb5'
+ 'lib32-libpsl' 'lib32-zlib' 'lib32-zstd')
+makedepends=('lib32-gnutls' 'lib32-openssl')
+source=("https://curl.haxx.se/download/curl-${pkgver}.tar.gz"{,.asc})
+sha512sums=('d4c4a785876e0d1ba1c1adbe65528d56a8b81fc03ff724e87819cfe51aca60f8a7bf2ac9384f30c3a6bbd28669b2bd3e9a6794737243c836c4902d085a72c474'
+'SKIP')
+validpgpkeys=('27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2') # Daniel Stenberg
+
+_configure_options=(
+--prefix='/usr'
+--disable-dependency-tracking
+--disable-ldap
+--disable-ldaps
+--enable-ipv6
+--enable-manual
+--enable-threaded-resolver
+--with-gssapi
+--with-libssh2
+--with-openssl
+--with-random='/dev/urandom'
+--with-ca-bundle='/etc/ssl/certs/ca-certificates.crt'
+--libdir='/usr/lib32'
+)
+
+build() {
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+  mkdir build-curl{,-compat,-gnutls}
+
+  # build lib32-curl
+  cd "${srcdir}"/build-curl
+
+  "${srcdir}/curl-${pkgver}"/configure \
+"${_configure_options[@]}" \
+--enable-versioned-symbols
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make -C lib
+  make libcurl.pc
+
+  # build lib32-libcurl-compat
+  cd "${srcdir}"/build-curl-compat
+
+  "${srcdir}/curl-${pkgver}"/configure \
+"${_configure_options[@]}" \
+--disable-versioned-symbols
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make -C lib
+
+  # build lib32-libcurl-gnutls
+  cd "${srcdir}"/build-curl-gnutls
+
+  "${srcdir}/curl-${pkgver}"/configure \
+"${_configure_options[@]}" \
+--disable-versioned-symbols \
+--without-ssl \
+--with-gnutls='/usr'
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make -C lib
+}
+
+package_lib32-curl() {
+  depends+=('lib32-openssl')
+
+  cd "${srcdir}"/build-curl
+
+  make -C lib DESTDIR="${pkgdir}" install
+  make DESTDIR="${pkgdir}" install-pkgconfigDATA
+
+  # license
+  install -d "${pkgdir}/usr/share/licenses"
+  ln -s curl "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+package_lib32-libcurl-compat() {
+  pkgdesc='An URL retrieval utility and library (32-bit, without versioned 
symbols)'
+  depends+=('lib32-openssl')
+
+  cd "${srcdir}"/build-curl-compat
+
+  make -C lib DESTDIR="${pkgdir}" install
+
+  mv "${pkgdir}"/usr/lib32/libcurl{,-compat}.so.4.7.0
+  rm "${pkgdir}"/usr/lib32/libcurl.{a,so}*
+  for version in 3 4.0.0 4.1.0 4.2.0 4.3.0 4.4.0 4.5.0 4.6.0; do
+ln -s libcurl-compat.so.4.7.0 "${pkgdir}"/usr/lib32/libcurl.so.${version}
+  done
+
+  # license
+  install -d "${pkgdir}/usr/share/licenses"
+  ln -s curl "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+package_lib32-libcurl-gnutls() {
+  pkgdesc='An URL retrieval utility and library (32-bit, without versioned 
symbols and linked against gnutls)'
+  depends+=('lib32-gnutls')
+
+  cd "${srcdir}"/build-curl-gnutls
+
+  make -C lib DESTDIR="${pkgdir}" install
+
+  mv "${pkgdir}"/usr/lib32/libcurl{,-gnutls}.so.4.7.0
+  rm "${pkgdir}"/usr/lib32/libcurl.{a,so}*
+  for version in 3 4 4.0.0 4.1.0 4.2.0 4.3.0 4.4.0 4.5.0 4.6.0; do
+ln -s libcurl-gnutls.so.4.7.0 
"${pkgdir}"/usr/lib32/libcurl-gnutls.so.${version}
+  done
+
+  # license
+  install -d "${pkgdir}/usr/share/licenses"
+  ln -s curl "${pkgdir}/usr/share/licenses/${pkgname}"
+}



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

2022-03-05 Thread Christian Hesse via arch-commits
Date: Saturday, March 5, 2022 @ 20:11:24
  Author: eworm
Revision: 1142240

upgpkg: lib32-curl 7.82.0-1: new upstream release

Modified:
  lib32-curl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-05 19:24:48 UTC (rev 1142239)
+++ PKGBUILD2022-03-05 20:11:24 UTC (rev 1142240)
@@ -7,7 +7,7 @@
 
 pkgbase=lib32-curl
 pkgname=(lib32-curl lib32-libcurl-compat lib32-libcurl-gnutls)
-pkgver=7.81.0
+pkgver=7.82.0
 pkgrel=1
 pkgdesc='An URL retrieval utility and library (32-bit)'
 arch=('x86_64')
@@ -17,7 +17,7 @@
  'lib32-libpsl' 'lib32-zlib' 'lib32-zstd')
 makedepends=('lib32-gnutls' 'lib32-openssl')
 source=("https://curl.haxx.se/download/curl-${pkgver}.tar.gz"{,.asc})
-sha512sums=('e3084f0fa083f7f93eac923edbfdddb5fd0a372b94673ba9d4427a2b95508898c15ecdf63b99a1c1f6cf3215e27b06cbaa2b7073df038d43b362e586f92495d3'
+sha512sums=('d4c4a785876e0d1ba1c1adbe65528d56a8b81fc03ff724e87819cfe51aca60f8a7bf2ac9384f30c3a6bbd28669b2bd3e9a6794737243c836c4902d085a72c474'
 'SKIP')
 validpgpkeys=('27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2') # Daniel Stenberg
 



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

2022-03-05 Thread Christian Hesse via arch-commits
Date: Saturday, March 5, 2022 @ 20:09:03
  Author: eworm
Revision: 439000

archrelease: copy trunk to testing-x86_64

Added:
  fakeroot/repos/testing-x86_64/
  fakeroot/repos/testing-x86_64/PKGBUILD
(from rev 438999, fakeroot/trunk/PKGBUILD)
  fakeroot/repos/testing-x86_64/fakeroot.install
(from rev 438999, fakeroot/trunk/fakeroot.install)

--+
 PKGBUILD |   48 
 fakeroot.install |   13 +
 2 files changed, 61 insertions(+)

Copied: fakeroot/repos/testing-x86_64/PKGBUILD (from rev 438999, 
fakeroot/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2022-03-05 20:09:03 UTC (rev 439000)
@@ -0,0 +1,48 @@
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Allan McRae 
+# Contributor: Jochem Kossen 
+
+pkgname=fakeroot
+pkgver=1.28
+pkgrel=1
+pkgdesc='Tool for simulating superuser privileges'
+arch=('x86_64')
+license=('GPL')
+url='https://tracker.debian.org/pkg/fakeroot'
+groups=('base-devel')
+install=fakeroot.install
+depends=('glibc' 'filesystem' 'sed' 'util-linux' 'sh')
+makedepends=('systemd' 'po4a')
+checkdepends=('sharutils')
+source=("https://deb.debian.org/debian/pool/main/f/$pkgname/${pkgname}_${pkgver}.orig.tar.gz;)
+sha256sums=('56d405e36ff685f83879be08fdd654255ab9aa38632b4605a98e896ad63990c2')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr \
+--libdir=/usr/lib/libfakeroot \
+--disable-static \
+--with-ipc=sysv
+
+  make
+
+  cd doc
+  po4a -k 0 --rm-backups --variable 'srcdir=../doc/' po4a/po4a.cfg
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  install -dm0755 "$pkgdir/etc/ld.so.conf.d/"
+  echo '/usr/lib/libfakeroot' > "$pkgdir/etc/ld.so.conf.d/fakeroot.conf"
+
+  # install README for sysv/tcp usage
+  install -Dm0644 README "$pkgdir/usr/share/doc/$pkgname/README"
+}

Copied: fakeroot/repos/testing-x86_64/fakeroot.install (from rev 438999, 
fakeroot/trunk/fakeroot.install)
===
--- testing-x86_64/fakeroot.install (rev 0)
+++ testing-x86_64/fakeroot.install 2022-03-05 20:09:03 UTC (rev 439000)
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+post_install() {
+  usr/bin/ldconfig -r .
+}
+
+post_upgrade() {
+  usr/bin/ldconfig -r .
+}
+
+pre_remove() {
+  usr/bin/ldconfig -r .
+}



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

2022-03-05 Thread Christian Hesse via arch-commits
Date: Saturday, March 5, 2022 @ 20:08:56
  Author: eworm
Revision: 438999

upgpkg: fakeroot 1.28-1: new upstream release

Modified:
  fakeroot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-05 19:46:09 UTC (rev 438998)
+++ PKGBUILD2022-03-05 20:08:56 UTC (rev 438999)
@@ -3,7 +3,7 @@
 # Contributor: Jochem Kossen 
 
 pkgname=fakeroot
-pkgver=1.27
+pkgver=1.28
 pkgrel=1
 pkgdesc='Tool for simulating superuser privileges'
 arch=('x86_64')
@@ -15,7 +15,7 @@
 makedepends=('systemd' 'po4a')
 checkdepends=('sharutils')
 
source=("https://deb.debian.org/debian/pool/main/f/$pkgname/${pkgname}_${pkgver}.orig.tar.gz;)
-sha256sums=('3c45eb2d1802a2762069e2e9d21bdd6fb533592bc0cda74c9aff066ab01caddc')
+sha256sums=('56d405e36ff685f83879be08fdd654255ab9aa38632b4605a98e896ad63990c2')
 
 build() {
   cd $pkgname-$pkgver



[arch-commits] Commit in seabios/repos (15 files)

2022-03-05 Thread Anatol Pomozov via arch-commits
Date: Saturday, March 5, 2022 @ 19:46:09
  Author: anatolik
Revision: 438998

archrelease: copy trunk to testing-any

Added:
  seabios/repos/testing-any/
  seabios/repos/testing-any/PKGBUILD
(from rev 438997, seabios/trunk/PKGBUILD)
  seabios/repos/testing-any/config.coreboot
(from rev 438997, seabios/trunk/config.coreboot)
  seabios/repos/testing-any/config.csm
(from rev 438997, seabios/trunk/config.csm)
  seabios/repos/testing-any/config.seabios-128k
(from rev 438997, seabios/trunk/config.seabios-128k)
  seabios/repos/testing-any/config.seabios-256k
(from rev 438997, seabios/trunk/config.seabios-256k)
  seabios/repos/testing-any/config.vga.bochs-display
(from rev 438997, seabios/trunk/config.vga.bochs-display)
  seabios/repos/testing-any/config.vga.cirrus
(from rev 438997, seabios/trunk/config.vga.cirrus)
  seabios/repos/testing-any/config.vga.isavga
(from rev 438997, seabios/trunk/config.vga.isavga)
  seabios/repos/testing-any/config.vga.qxl
(from rev 438997, seabios/trunk/config.vga.qxl)
  seabios/repos/testing-any/config.vga.ramfb
(from rev 438997, seabios/trunk/config.vga.ramfb)
  seabios/repos/testing-any/config.vga.stdvga
(from rev 438997, seabios/trunk/config.vga.stdvga)
  seabios/repos/testing-any/config.vga.virtio
(from rev 438997, seabios/trunk/config.vga.virtio)
  seabios/repos/testing-any/config.vga.vmware
(from rev 438997, seabios/trunk/config.vga.vmware)
  seabios/repos/testing-any/reproducible-version.patch
(from rev 438997, seabios/trunk/reproducible-version.patch)

+
 PKGBUILD   |   81 +++
 config.coreboot|2 +
 config.csm |2 +
 config.seabios-128k|   14 +++
 config.seabios-256k|3 +
 config.vga.bochs-display   |3 +
 config.vga.cirrus  |3 +
 config.vga.isavga  |3 +
 config.vga.qxl |6 +++
 config.vga.ramfb   |3 +
 config.vga.stdvga  |3 +
 config.vga.virtio  |6 +++
 config.vga.vmware  |6 +++
 reproducible-version.patch |   15 +++
 14 files changed, 150 insertions(+)

Copied: seabios/repos/testing-any/PKGBUILD (from rev 438997, 
seabios/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2022-03-05 19:46:09 UTC (rev 438998)
@@ -0,0 +1,81 @@
+# Maintainer: Tobias Powalowski 
+
+pkgname=seabios
+pkgver=1.16.0
+pkgrel=1
+pkgdesc="A 16-bit x86 bios"
+arch=('any')
+url="https://www.coreboot.org/SeaBIOS;
+license=('GPL3' 'LGPL3')
+makedepends=('iasl' 'python' 'inetutils')
+options=('!makeflags' '!strip')
+_tag=rel-$pkgver
+source=(seabios-$pkgver.zip::https://github.com/coreboot/seabios/archive/$_tag.zip
+config.coreboot
+config.seabios-128k
+config.seabios-256k
+config.vga.isavga
+config.vga.stdvga
+config.csm
+config.vga.cirrus
+config.vga.qxl
+config.vga.vmware
+config.vga.bochs-display
+config.vga.ramfb
+config.vga.virtio
+reproducible-version.patch)
+sha1sums=('9e04be81849d52c230e5461f1a2ecacb651a730f'
+  '5f2adb09c9006def1719b8cbd4792f14a7c7f7c9'
+  '7a4ec70237476c7cdd78589b069d0d39dfeaa8eb'
+  '05b912a291994226049103cbe6754976cc03532d'
+  'd56482f6ee0bf9633c551b10e99e24c74d9ece1e'
+  '54d4edf6eccf30883aedca348b9d2f125502fcdb'
+  '590739c1d5dc6cb63bdf311ee1cfbcde6c0ccc0f'
+  '84a44c04e74a09affae0d1a6e50800d10997108f'
+  '5a1316a0081f91acc300f57372de18fa9c67415e'
+  '5b017b16aec445df873618aaebd154aa97107148'
+  'c7c730ade7a63e1efc7de81c7536632e0617e808'
+  'c2f4a7708befd6a0763dd4a5a4f8b5168db30340'
+  'a2b3d09f944e3d6857ceee272b733075a7edc52e'
+  '352aa180d17642d1230391e5a1a26389a9629c47')
+
+# build routine from fedora
+build_bios() {
+  make clean distclean
+  cp $1 .config
+  make oldnoconfig V=1
+
+  make V=1 $4
+
+  cp out/$2 binaries/$3
+}
+
+prepare() {
+  cd seabios-$_tag
+
+  patch -p1 < ../reproducible-version.patch # FS#67178
+
+  rm -rf binaries
+  mkdir binaries
+
+  echo "ArchLinux ${pkgver}-${pkgrel}" > .version
+}
+
+build() {
+  cd seabios-$_tag
+  # seabios
+  build_bios "${srcdir}"/config.csm Csm16.bin bios-csm.bin
+  build_bios "${srcdir}"/config.coreboot bios.bin.elf bios-coreboot.bin
+  build_bios "${srcdir}"/config.seabios-128k bios.bin bios.bin
+  build_bios "${srcdir}"/config.seabios-256k bios.bin bios-256k.bin
+  # seavgabios
+  for config in 
"${srcdir}"/{config.vga.isavga,config.vga.stdvga,config.vga.cirrus,config.vga.qxl,config.vga.vmware,config.vga.ramfb,config.vga.virtio,config.vga.bochs-display};
 do
+name=${config#*config.vga.}
+build_bios ${config} vgabios.bin vgabios-${name}.bin out/vgabios.bin
+  done
+}
+
+package() {
+  cd 

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

2022-03-05 Thread Anatol Pomozov via arch-commits
Date: Saturday, March 5, 2022 @ 19:45:05
  Author: anatolik
Revision: 438997

upgpkg: seabios 1.16.0-1

Modified:
  seabios/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-05 19:16:31 UTC (rev 438996)
+++ PKGBUILD2022-03-05 19:45:05 UTC (rev 438997)
@@ -1,7 +1,7 @@
 # Maintainer: Tobias Powalowski 
 
 pkgname=seabios
-pkgver=1.15.0
+pkgver=1.16.0
 pkgrel=1
 pkgdesc="A 16-bit x86 bios"
 arch=('any')
@@ -24,7 +24,7 @@
 config.vga.ramfb
 config.vga.virtio
 reproducible-version.patch)
-sha1sums=('ee850120fcc4a617c838f63b036a93d603c7531b'
+sha1sums=('9e04be81849d52c230e5461f1a2ecacb651a730f'
   '5f2adb09c9006def1719b8cbd4792f14a7c7f7c9'
   '7a4ec70237476c7cdd78589b069d0d39dfeaa8eb'
   '05b912a291994226049103cbe6754976cc03532d'



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

2022-03-05 Thread Jan Steffens via arch-commits
Date: Saturday, March 5, 2022 @ 19:24:48
  Author: heftig
Revision: 1142239

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-03-05 19:24:37 UTC (rev 1142238)
+++ PKGBUILD2022-03-05 19:24:48 UTC (rev 1142239)
@@ -1,45 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-pkgname=yubioath-desktop
-pkgdesc='Yubico Authenticator for Desktop'
-pkgver=5.1.0
-pkgrel=2
-arch=('x86_64')
-url='https://github.com/Yubico/yubioath-desktop'
-license=('BSD')
-depends=('qt5-base' 'qt5-declarative' 'qt5-quickcontrols' 'qt5-quickcontrols2'
- 'python-pyotherside' 'qt5-graphicaleffects' 'qt5-multimedia'
- 'ccid' 'pcsclite' 'yubikey-manager')
-makedepends=('git' 'python')
-source=("git+$url.git#tag=$pkgname-$pkgver?signed")
-validpgpkeys=('8D0B4EBA9345254BCEC0E843514F078FF4AB24C3'  # Dag Heyman 

-  '57A9DEED4C6D962A923BB691816F3ED99921835E'  # Emil Lundberg 

-  '9E885C0302F9BB9167529C2D5CBA11E6ADC7BCD1') # Dennis Fokin 

-sha512sums=('SKIP')
-
-build() {
-  cd $pkgname
-
-  qmake . \
-PREFIX=/usr \
-QMAKE_CFLAGS_RELEASE="$CFLAGS" \
-QMAKE_CXXFLAGS_RELEASE="$CXXFLAGS"
-
-  make
-}
-
-package() {
-cd $pkgname
-
-make INSTALL_ROOT="$pkgdir" install
-
-mkdir "$pkgdir"/usr/bin
-mv "$pkgdir"/usr/{lib,bin}/yubioath-desktop
-
-install -Dm 644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-install -Dm 644 resources/icons/com.yubico.yubioath.svg 
"$pkgdir"/usr/share/pixmaps/com.yubico.yubioath.svg
-install -Dm 755 resources/com.yubico.yubioath.desktop 
"$pkgdir"/usr/share/applications/com.yubico.yubioath.desktop
-install -Dm 755 resources/com.yubico.yubioath.appdata.xml 
"$pkgdir"/usr/share/metainfo/com.yubico.yubioath.appdata.xml
-}
-

Copied: yubioath-desktop/repos/community-x86_64/PKGBUILD (from rev 1142238, 
yubioath-desktop/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-03-05 19:24:48 UTC (rev 1142239)
@@ -0,0 +1,45 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=yubioath-desktop
+pkgdesc='Yubico Authenticator for Desktop'
+pkgver=5.1.0
+pkgrel=3
+arch=('x86_64')
+url='https://github.com/Yubico/yubioath-desktop'
+license=('BSD')
+depends=('qt5-base' 'qt5-declarative' 'qt5-quickcontrols' 'qt5-quickcontrols2'
+ 'python-pyotherside' 'qt5-graphicaleffects' 'qt5-multimedia'
+ 'ccid' 'pcsclite' 'yubikey-manager')
+makedepends=('git' 'python')
+source=("git+$url.git#tag=$pkgname-$pkgver?signed")
+validpgpkeys=('8D0B4EBA9345254BCEC0E843514F078FF4AB24C3'  # Dag Heyman 

+  '57A9DEED4C6D962A923BB691816F3ED99921835E'  # Emil Lundberg 

+  '9E885C0302F9BB9167529C2D5CBA11E6ADC7BCD1') # Dennis Fokin 

+sha512sums=('SKIP')
+
+build() {
+  cd $pkgname
+
+  qmake . \
+PREFIX=/usr \
+QMAKE_CFLAGS_RELEASE="$CFLAGS" \
+QMAKE_CXXFLAGS_RELEASE="$CXXFLAGS"
+
+  make
+}
+
+package() {
+cd $pkgname
+
+make INSTALL_ROOT="$pkgdir" install
+
+mkdir "$pkgdir"/usr/bin
+mv "$pkgdir"/usr/{lib,bin}/yubioath-desktop
+
+install -Dm 644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+install -Dm 644 resources/icons/com.yubico.yubioath.svg 
"$pkgdir"/usr/share/pixmaps/com.yubico.yubioath.svg
+install -Dm 644 resources/com.yubico.yubioath.desktop 
"$pkgdir"/usr/share/applications/com.yubico.yubioath.desktop
+install -Dm 644 resources/com.yubico.yubioath.appdata.xml 
"$pkgdir"/usr/share/metainfo/com.yubico.yubioath.appdata.xml
+}
+



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

2022-03-05 Thread Jan Steffens via arch-commits
Date: Saturday, March 5, 2022 @ 19:24:37
  Author: heftig
Revision: 1142238

5.1.0-3: remove executability from share files

Modified:
  yubioath-desktop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-05 19:16:32 UTC (rev 1142237)
+++ PKGBUILD2022-03-05 19:24:37 UTC (rev 1142238)
@@ -3,7 +3,7 @@
 pkgname=yubioath-desktop
 pkgdesc='Yubico Authenticator for Desktop'
 pkgver=5.1.0
-pkgrel=2
+pkgrel=3
 arch=('x86_64')
 url='https://github.com/Yubico/yubioath-desktop'
 license=('BSD')
@@ -39,7 +39,7 @@
 install -Dm 644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 
 install -Dm 644 resources/icons/com.yubico.yubioath.svg 
"$pkgdir"/usr/share/pixmaps/com.yubico.yubioath.svg
-install -Dm 755 resources/com.yubico.yubioath.desktop 
"$pkgdir"/usr/share/applications/com.yubico.yubioath.desktop
-install -Dm 755 resources/com.yubico.yubioath.appdata.xml 
"$pkgdir"/usr/share/metainfo/com.yubico.yubioath.appdata.xml
+install -Dm 644 resources/com.yubico.yubioath.desktop 
"$pkgdir"/usr/share/applications/com.yubico.yubioath.desktop
+install -Dm 644 resources/com.yubico.yubioath.appdata.xml 
"$pkgdir"/usr/share/metainfo/com.yubico.yubioath.appdata.xml
 }
 



[arch-commits] Commit in gitlab-runner/repos/community-x86_64 (13 files)

2022-03-05 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, March 5, 2022 @ 19:03:58
  Author: svenstaro
Revision: 1142233

archrelease: copy trunk to community-x86_64

Added:
  gitlab-runner/repos/community-x86_64/PKGBUILD
(from rev 1142231, gitlab-runner/trunk/PKGBUILD)
  gitlab-runner/repos/community-x86_64/config.toml
(from rev 1142231, gitlab-runner/trunk/config.toml)
  gitlab-runner/repos/community-x86_64/gitlab-runner.install
(from rev 1142232, gitlab-runner/trunk/gitlab-runner.install)
  gitlab-runner/repos/community-x86_64/gitlab-runner.service
(from rev 1142232, gitlab-runner/trunk/gitlab-runner.service)
  gitlab-runner/repos/community-x86_64/gitlab-runner.sysusers
(from rev 1142232, gitlab-runner/trunk/gitlab-runner.sysusers)
  gitlab-runner/repos/community-x86_64/gitlab-runner.tmpfiles
(from rev 1142232, gitlab-runner/trunk/gitlab-runner.tmpfiles)
Deleted:
  gitlab-runner/repos/community-x86_64/PKGBUILD
  gitlab-runner/repos/community-x86_64/config.toml
  gitlab-runner/repos/community-x86_64/gitlab-runner.install
  gitlab-runner/repos/community-x86_64/gitlab-runner.service
  gitlab-runner/repos/community-x86_64/gitlab-runner.sysusers
  gitlab-runner/repos/community-x86_64/gitlab-runner.tmpfiles
  gitlab-runner/repos/community-x86_64/remove-syscall-test.patch

---+
 PKGBUILD  |  190 +---
 config.toml   |2 
 gitlab-runner.install |   12 +-
 gitlab-runner.service |   30 +++---
 gitlab-runner.sysusers|2 
 gitlab-runner.tmpfiles|2 
 remove-syscall-test.patch |   21 
 7 files changed, 118 insertions(+), 141 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-03-05 19:03:52 UTC (rev 1142232)
+++ PKGBUILD2022-03-05 19:03:58 UTC (rev 1142233)
@@ -1,96 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Lubomir 'Kuci' Kucera 
-
-pkgname=gitlab-runner
-pkgver=14.8.1
-_commit=6a42249e
-pkgrel=1
-pkgdesc="The official GitLab CI runner written in Go"
-arch=('x86_64')
-url='https://gitlab.com/gitlab-org/gitlab-runner'
-license=('GPL3')
-depends=('ca-certificates' 'curl' 'git' 'glibc' 'tar')
-makedepends=('git' 'go' 'git' 'mercurial' 'gox')
-install=gitlab-runner.install
-replaces=('gitlab-ci-multi-runner')
-backup=('etc/gitlab-runner/config.toml')
-noextract=("prebuilt-alpine-arm-${pkgver}.tar.xz"
-   "prebuilt-alpine-arm64-${pkgver}.tar.xz"
-   "prebuilt-alpine-s390x-${pkgver}.tar.xz"
-   "prebuilt-alpine-x86_64-pwsh-${pkgver}.tar.xz"
-   "prebuilt-alpine-x86_64-${pkgver}.tar.xz"
-   "prebuilt-ubuntu-arm-${pkgver}.tar.xz"
-   "prebuilt-ubuntu-arm64-${pkgver}.tar.xz"
-   "prebuilt-ubuntu-s390x-${pkgver}.tar.xz"
-   "prebuilt-ubuntu-x86_64-pwsh-${pkgver}.tar.xz"
-   "prebuilt-ubuntu-x86_64-${pkgver}.tar.xz")
-source=("git+https://gitlab.com/gitlab-org/gitlab-runner.git#tag=${_commit};
-
"prebuilt-alpine-arm-${pkgver}.tar.xz::https://gitlab-runner-downloads.s3.amazonaws.com/v${pkgver}/helper-images/prebuilt-alpine-arm.tar.xz;
-
"prebuilt-alpine-arm64-${pkgver}.tar.xz::https://gitlab-runner-downloads.s3.amazonaws.com/v${pkgver}/helper-images/prebuilt-alpine-arm64.tar.xz;
-
"prebuilt-alpine-s390x-${pkgver}.tar.xz::https://gitlab-runner-downloads.s3.amazonaws.com/v${pkgver}/helper-images/prebuilt-alpine-s390x.tar.xz;
-
"prebuilt-alpine-x86_64-pwsh-${pkgver}.tar.xz::https://gitlab-runner-downloads.s3.amazonaws.com/v${pkgver}/helper-images/prebuilt-alpine-x86_64-pwsh.tar.xz;
-
"prebuilt-alpine-x86_64-${pkgver}.tar.xz::https://gitlab-runner-downloads.s3.amazonaws.com/v${pkgver}/helper-images/prebuilt-alpine-x86_64.tar.xz;
-
"prebuilt-ubuntu-arm-${pkgver}.tar.xz::https://gitlab-runner-downloads.s3.amazonaws.com/v${pkgver}/helper-images/prebuilt-ubuntu-arm.tar.xz;
-
"prebuilt-ubuntu-arm64-${pkgver}.tar.xz::https://gitlab-runner-downloads.s3.amazonaws.com/v${pkgver}/helper-images/prebuilt-ubuntu-arm64.tar.xz;
-
"prebuilt-ubuntu-s390x-${pkgver}.tar.xz::https://gitlab-runner-downloads.s3.amazonaws.com/v${pkgver}/helper-images/prebuilt-ubuntu-s390x.tar.xz;
-
"prebuilt-ubuntu-x86_64-pwsh-${pkgver}.tar.xz::https://gitlab-runner-downloads.s3.amazonaws.com/v${pkgver}/helper-images/prebuilt-ubuntu-x86_64-pwsh.tar.xz;
-
"prebuilt-ubuntu-x86_64-${pkgver}.tar.xz::https://gitlab-runner-downloads.s3.amazonaws.com/v${pkgver}/helper-images/prebuilt-ubuntu-x86_64.tar.xz;
-"gitlab-runner.service"
-"gitlab-runner.sysusers"
-"gitlab-runner.tmpfiles"
-"remove-syscall-test.patch"
-"config.toml")
-sha512sums=('SKIP'
-
'3f5772d0a7909f33d05b7784c8ab72a8a04b34890089d59b9c2ab908a4baa7464d9bf9e0237d94ba68aeb630739f598901476029903af6317bb1c0d63376bfc7'
-

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

2022-03-05 Thread Caleb Maclennan via arch-commits
Date: Saturday, March 5, 2022 @ 19:03:52
  Author: alerque
Revision: 1142232

archrelease: copy trunk to community-x86_64

Added:
  zettlr/repos/community-x86_64/PKGBUILD
(from rev 1142231, zettlr/trunk/PKGBUILD)
  zettlr/repos/community-x86_64/zettlr.sh
(from rev 1142231, zettlr/trunk/zettlr.sh)
  zettlr/repos/community-x86_64/zettlr.xml
(from rev 1142231, zettlr/trunk/zettlr.xml)
Deleted:
  zettlr/repos/community-x86_64/PKGBUILD
  zettlr/repos/community-x86_64/zettlr.sh
  zettlr/repos/community-x86_64/zettlr.xml

+
 PKGBUILD   |  144 +--
 zettlr.sh  |6 +-
 zettlr.xml |   36 +++---
 3 files changed, 93 insertions(+), 93 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-03-05 19:03:41 UTC (rev 1142231)
+++ PKGBUILD2022-03-05 19:03:52 UTC (rev 1142232)
@@ -1,72 +0,0 @@
-# Maintainer: Caleb Maclennan 
-# Contributor: BrLi 
-
-pkgname=zettlr
-_pkgname=${pkgname^}
-pkgver=2.2.3
-pkgrel=2
-pkgdesc='A Markdown Editor for the 21st century'
-arch=(x86_64)
-url=https://www.zettlr.com
-_url="https://github.com/$_pkgname/$_pkgname;
-license=(GPL)
-_electron=electron16
-depends=(crimson-font
- $_electron
- pandoc
- ttf-inconsolata
- ttf-liberation)
-makedepends=(gendesk
- git
- nodejs-lts-gallium # grep NODE_VERSION .github/workflows/build.yml
- yarn)
-optdepends=('texlive-bin: For Latex support')
-_archive="$_pkgname-$pkgver"
-source=("$_url/archive/v$pkgver/$_archive.tar.gz"
-"$pkgname.sh"
-"$pkgname.xml")
-sha256sums=('9527d5aaf7b00f2d4d57f46142a7643bff7c21265c146c4ab0502a96379b5677'
-'e300f2cac217f98ab5c365dccc7581410bc296f2842d52f7f1520dd6679d20cf'
-'c3ecbb490a1d4fa5bc42f7166cc375e5629a452d25bb1d4facb5541938681292')
-
-_yarnargs="--cache-folder '$srcdir/cache' --link-folder '$srcdir/link'"
-
-prepare() {
-   local _electronVersion=$($_electron --version | sed -e 's/^v//')
-   gendesk -q -f -n \
-   --pkgname "$pkgname" \
-   --pkgdesc "$pkgdesc" \
-   --name "$_pkgname" \
-   --categories 'Office;' \
-   --mimetypes 'text-markdown;' \
-   --custom StartupWMClass="$_pkgname"
-   cd "$_archive"
-   echo -ne '#!/usr/bin/env bash\n\nexit 0' > scripts/get-pandoc.sh
-   sed -i -e '/"electron"/d' package.json
-   sed -e "s/@ELECTRON@/$_electron/" "../${source[1]}" > $pkgname.sh
-   yarn $_yarnargs install --frozen-lockfile --ignore-scripts
-   yarn $_yarnargs add --dev --no-lockfile electron@$_electronVersion
-   yarn $_yarnargs install --pure-lockfile # postinstall script installs 
electron-builder deps
-   ln -sf /usr/bin/pandoc resources/pandoc-linux-x64
-}
-
-build() {
-   cd "$_archive"
-   local NODE_ENV=''
-   yarn $_yarnargs reveal:build
-   yarn $_yarnargs package:linux-x64
-}
-
-package() {
-   install -Dm0644 -t "$pkgdir/usr/share/applications/" "$pkgname.desktop"
-   cd "$_archive"
-   install -Dm0755 "$pkgname.sh" "$pkgdir/usr/bin/$pkgname"
-   local _destdir="usr/lib/$pkgname"
-   install -Dm0644 -t "$pkgdir/$_destdir/" \
-   "out/$_pkgname-linux-x64/resources/"{app.asar,icon.code.icns}
-   for px in 16 24 32 48 64 96 128 256 512 1024; do
-   install -Dm0644 "resources/icons/png/${px}x${px}.png" \
-   
"$pkgdir/usr/share/icons/hicolor/${px}x${px}/apps/$pkgname.png"
-   done
-   install -Dm0644 -t "$pkgdir/usr/share/mime/packages/" "../${source[2]}"
-}

Copied: zettlr/repos/community-x86_64/PKGBUILD (from rev 1142231, 
zettlr/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-03-05 19:03:52 UTC (rev 1142232)
@@ -0,0 +1,72 @@
+# Maintainer: Caleb Maclennan 
+# Contributor: BrLi 
+
+pkgname=zettlr
+_pkgname=${pkgname^}
+pkgver=2.2.4
+pkgrel=1
+pkgdesc='A Markdown Editor for the 21st century'
+arch=(x86_64)
+url=https://www.zettlr.com
+_url="https://github.com/$_pkgname/$_pkgname;
+license=(GPL)
+_electron=electron17
+depends=(crimson-font
+ $_electron
+ pandoc
+ ttf-inconsolata
+ ttf-liberation)
+makedepends=(gendesk
+ git
+ nodejs-lts-gallium # grep NODE_VERSION .github/workflows/build.yml
+ yarn)
+optdepends=('texlive-bin: For Latex support')
+_archive="$_pkgname-$pkgver"
+source=("$_url/archive/v$pkgver/$_archive.tar.gz"
+"$pkgname.sh"
+"$pkgname.xml")
+sha256sums=('5011caff4d2854e0989af9aa1f45e5bbb1fbc76e2d4a2534a6501164d675738d'
+'e300f2cac217f98ab5c365dccc7581410bc296f2842d52f7f1520dd6679d20cf'
+'c3ecbb490a1d4fa5bc42f7166cc375e5629a452d25bb1d4facb5541938681292')
+
+_yarnargs="--cache-folder '$srcdir/cache' --link-folder 

[arch-commits] Commit in gitlab-runner/trunk (PKGBUILD remove-syscall-test.patch)

2022-03-05 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, March 5, 2022 @ 19:03:37
  Author: svenstaro
Revision: 1142230

upgpkg: gitlab-runner 14.8.2-1

Modified:
  gitlab-runner/trunk/PKGBUILD
Deleted:
  gitlab-runner/trunk/remove-syscall-test.patch

---+
 PKGBUILD  |   26 --
 remove-syscall-test.patch |   21 -
 2 files changed, 12 insertions(+), 35 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-03-05 18:47:44 UTC (rev 1142229)
+++ PKGBUILD2022-03-05 19:03:37 UTC (rev 1142230)
@@ -2,8 +2,8 @@
 # Contributor: Lubomir 'Kuci' Kucera 
 
 pkgname=gitlab-runner
-pkgver=14.8.1
-_commit=6a42249e
+pkgver=14.8.2
+_commit=c6e7e194
 pkgrel=1
 pkgdesc="The official GitLab CI runner written in Go"
 arch=('x86_64')
@@ -38,23 +38,21 @@
 "gitlab-runner.service"
 "gitlab-runner.sysusers"
 "gitlab-runner.tmpfiles"
-"remove-syscall-test.patch"
 "config.toml")
 sha512sums=('SKIP'
-
'3f5772d0a7909f33d05b7784c8ab72a8a04b34890089d59b9c2ab908a4baa7464d9bf9e0237d94ba68aeb630739f598901476029903af6317bb1c0d63376bfc7'
-
'123725c7389a40240a09a1cd3dbdb68f8012c7033bd002d20b08afe6578edaf20ab95293c8dadc6bd84e673f0216c600bb11a0ae0d5b8ff929ad7ade7a89ef98'
-
'341ca655527ee16a4bd942f87f9ef2cc3f86a9dccf4902d7dcf194fd77ca40127727a1552a3a0224b86170494c5b45672e9dd8c9e1b7d226dbcc7f20a4ea48a7'
-
'789392b16047c8b26fb5402b30293759f9a127e558a57a2f31358fa43a74ab03455016874ced7e10238fff8bb632ff9c60bf433b5fe3a910eec4229ae773fb32'
-
'dcb30e95e32fecb04da5009c3a74d3d36816f91c70380af9c1337de3d63c56d414fec9a2b86ee61e10cd57b1ee23a12378e10b3cf3f5702dd2a64ffdd4766446'
-
'6094cbc96bb2997446815a3bca757459479177993deed0e6f4f08fc5ae5890f548825a92ff1cdb14da0dad93f0c05fd20405c438649528c3990f414f995f61d1'
-
'65220b257d809b61647212b5d9bc7ca1d62546d0546c2fd94b5c8cfdaed1ded077e3a501fd365f84c927364c196964b9af668d73bb6d7a077448ef85b5b3a56d'
-
'a75b3d84f4539a75ac34cbd95e0cbc2a4995965dc95d6cec2fb60ff25c37454fcaaed81951c9d489f95d8a7adf3b36fdbd9a3894c115d001c20f806cef918656'
-
'78fc8204e53261aa5c0009a65338131427e4563137d01fa515dc4e5637800c08b6ffd9f300b99e168b71b0afc415d84d3f8a10ca227607c6f172d8898a11b46f'
-
'527fa4028cbd2a85d1738a2f30ec829e94b95754e23a8adf4a0cbb9b635f61f1eac22774139883388d9c2bbd4695bf6cdfb227789e50e0a775cec2be66825972'
+
'2c1a337920faab32546e9ecfdbd1781e08a038167fa6fad8aba4b390ed6100ae0c40b6e0c3b6a71880db0a86bc93890b35e6a2b8ec030032c6c2938065c19a8e'
+
'205f53bf35c692825cbf07613a21c4ed2bb7f42f410471e771de48f1e59b537dbfe26f4cb4fc4b51d35f652941d493184fe3cc94e01f2e0d2f59c116fae5272e'
+
'3b55921a4492e4e90c4119b2323d9ee59466b519e58dd26d402775547462ba457f0f85b3e4e48769671184078b48639d18d1b86ea7080f4f6389ba18ca37ef0f'
+
'c88f055c6c7ca8b9f558bf67ddc4aa7a11c685bdfb57b43765ee5780bea563fdf9d8480de7e2564f158cdc29e0fdb91c4a2c6ca956a93bf45bb72958383b2997'
+
'aaef69f162214aa2e21cae483a252b39eae3d23fc285d26bfb52764f9dfb96341ca20e02ececb185d63ecbf5f6733e37d9179628e07d11032c8f6dea8b2e4e92'
+
'c38854fa489a1e3f36e82dc39e115092b17bf68e1cd6ec623ce5681ae1b637a9198b1d870b88f1a1fbbdda0ac38417234b73af6d814c365e4f045523d75f6ff7'
+
'073bee40e352dd0e8df65ff1cd0dd45ab6af656df055119127055e5fc250ab67233c3de2e2327168a70bc56852f1a8e4ceefcc4140e9e37addb76024eb04bd00'
+
'7dd7ef361743a1daee66b238eb9db9f4854de193d227a9074de196b7500922792f1fc570e5b7a0556c4f45f125f78b18e102e6c8db2de15d10c0801190f7d014'
+
'95a8c0a9db34fbbd9fae9d0ae73b4a7d900336ec796fa92c2f6dcc1fe6437595e7e9bcc4db8a40ec5a9b1bc46ab20de421070475e27e549c52cdc9356f40a3a8'
+
'1b5dae4876cfc821918594ca7494714e36ac881ed3535d68b729db511ecb3607ddfd4aa7fa4749cadd5063aae19d916fb0da6cdab84c9edb97d73bcba0c8249b'
 
'c0af374b9986895aedcfaee6c67cfad68f0f7289f87e4611358adaff59a2f349f55764fe28b2b1f61f8bfeb61126d4f90d433c626fdf9b826a2de6217f86574f'
 
'8aa7f08702e99053c696fcc2aaba83beb9e9cd6f31973d82862db9350ac46df3a095377625d31fe909677525290d2de922d7a97930ed235774cb8f0da8944d40'
 
'6751d9fa0b27172d1b419c4138f5ac15cbc7c9147653a7258cf1470216142c637210bb60608c7ed0974e0e4057e5ddeae32225df1bb36e7dd1f20fec71e33cc3'
-
'dc66f8c841c6b73ab031a5e4b891d6eb25a237647d179d792c73b645de99d7a2619788677e80d487b710eeef039242118b64abec9e32c7ce096f130732bcae43'
 
'9718b94bd0ddb09095ffb8c1e60ca1e9649dabb1747e7fc95e58e404b2f9effdeb4cfd759f5b904443dc53a4e18c02003c38f85584713deb49f6a6d1007503de')
 
 prepare() {

Deleted: remove-syscall-test.patch
===
--- remove-syscall-test.patch   2022-03-05 18:47:44 UTC (rev 1142229)
+++ remove-syscall-test.patch   2022-03-05 19:03:37 UTC (rev 1142230)
@@ -1,21 +0,0 @@
-diff --git a/main.go b/main.go
-index 

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

2022-03-05 Thread Caleb Maclennan via arch-commits
Date: Saturday, March 5, 2022 @ 19:03:41
  Author: alerque
Revision: 1142231

upgpkg: zettlr 2.2.4-1

Modified:
  zettlr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-05 19:03:37 UTC (rev 1142230)
+++ PKGBUILD2022-03-05 19:03:41 UTC (rev 1142231)
@@ -3,14 +3,14 @@
 
 pkgname=zettlr
 _pkgname=${pkgname^}
-pkgver=2.2.3
-pkgrel=2
+pkgver=2.2.4
+pkgrel=1
 pkgdesc='A Markdown Editor for the 21st century'
 arch=(x86_64)
 url=https://www.zettlr.com
 _url="https://github.com/$_pkgname/$_pkgname;
 license=(GPL)
-_electron=electron16
+_electron=electron17
 depends=(crimson-font
  $_electron
  pandoc
@@ -25,7 +25,7 @@
 source=("$_url/archive/v$pkgver/$_archive.tar.gz"
 "$pkgname.sh"
 "$pkgname.xml")
-sha256sums=('9527d5aaf7b00f2d4d57f46142a7643bff7c21265c146c4ab0502a96379b5677'
+sha256sums=('5011caff4d2854e0989af9aa1f45e5bbb1fbc76e2d4a2534a6501164d675738d'
 'e300f2cac217f98ab5c365dccc7581410bc296f2842d52f7f1520dd6679d20cf'
 'c3ecbb490a1d4fa5bc42f7166cc375e5629a452d25bb1d4facb5541938681292')
 



[arch-commits] Commit in lib32-pango/repos/multilib-x86_64 (PKGBUILD PKGBUILD)

2022-03-05 Thread Jan Steffens via arch-commits
Date: Saturday, March 5, 2022 @ 18:47:44
  Author: heftig
Revision: 1142229

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-pango/repos/multilib-x86_64/PKGBUILD
(from rev 1142228, lib32-pango/trunk/PKGBUILD)
Deleted:
  lib32-pango/repos/multilib-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-03-05 18:47:12 UTC (rev 1142228)
+++ PKGBUILD2022-03-05 18:47:44 UTC (rev 1142229)
@@ -1,51 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Biru Ionut 
-# Contributor: Pierre Schmitz 
-# Contributor: Mikko Seppälä 
-
-pkgname=lib32-pango
-pkgver=1.50.4
-pkgrel=1
-epoch=1
-pkgdesc="A library for layout and rendering of text (32-bit)"
-url="https://www.pango.org/;
-arch=(x86_64)
-license=(LGPL)
-depends=(lib32-libthai lib32-cairo lib32-libxft lib32-harfbuzz lib32-fribidi 
pango)
-makedepends=(git meson)
-checkdepends=(ttf-dejavu cantarell-fonts)
-provides=(libpango{,cairo,ft2,xft}-1.0.so)
-_commit=bcf61fc3a0c30da173c8629d1458fe3440288878  # tags/1.50.4^0
-source=("git+https://gitlab.gnome.org/GNOME/pango.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd pango
-  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
-}
-
-prepare() {
-  cd pango
-}
-
-build() {
-  export CC="gcc -m32"
-  export CXX="g++ -m32"
-  export PKG_CONFIG="i686-pc-linux-gnu-pkg-config"
-
-  arch-meson pango build \
---libdir=/usr/lib32 \
--D introspection=disabled
-  meson compile -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-package() {
-  meson install -C build --destdir "$pkgdir"
-  rm -r "$pkgdir"/usr/{bin,include}
-}
-
-# vim:set sw=2 et:

Copied: lib32-pango/repos/multilib-x86_64/PKGBUILD (from rev 1142228, 
lib32-pango/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-03-05 18:47:44 UTC (rev 1142229)
@@ -0,0 +1,49 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Biru Ionut 
+# Contributor: Pierre Schmitz 
+# Contributor: Mikko Seppälä 
+
+pkgname=lib32-pango
+pkgver=1.50.5
+pkgrel=1
+epoch=1
+pkgdesc="A library for layout and rendering of text (32-bit)"
+url="https://www.pango.org/;
+arch=(x86_64)
+license=(LGPL)
+depends=(lib32-libthai lib32-cairo lib32-libxft lib32-harfbuzz lib32-fribidi 
pango)
+makedepends=(git meson)
+provides=(libpango{,cairo,ft2,xft}-1.0.so)
+_commit=4851f23d6205e9e34ccacb48d02eae5e0f3b2f27  # tags/1.50.5^0
+source=("git+https://gitlab.gnome.org/GNOME/pango.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd pango
+  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+  cd pango
+}
+
+build() {
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG="i686-pc-linux-gnu-pkg-config"
+
+  arch-meson pango build \
+--libdir=/usr/lib32 \
+-D introspection=disabled
+  meson compile -C build
+}
+
+# not running checks: validation breaks when deps
+# (especially harfbuzz) don't match upstream CI
+
+package() {
+  meson install -C build --destdir "$pkgdir"
+  rm -r "$pkgdir"/usr/{bin,include}
+}
+
+# vim:set sw=2 et:



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

2022-03-05 Thread Jan Steffens via arch-commits
Date: Saturday, March 5, 2022 @ 18:47:44
  Author: heftig
Revision: 438988

archrelease: copy trunk to extra-x86_64

Added:
  pango/repos/extra-x86_64/PKGBUILD
(from rev 438987, pango/trunk/PKGBUILD)
Deleted:
  pango/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-03-05 18:47:28 UTC (rev 438987)
+++ PKGBUILD2022-03-05 18:47:44 UTC (rev 438988)
@@ -1,54 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgbase=pango
-pkgname=(pango pango-docs)
-pkgver=1.50.4
-pkgrel=1
-epoch=1
-pkgdesc="A library for layout and rendering of text"
-url="https://www.pango.org/;
-arch=(x86_64)
-license=(LGPL)
-depends=(libthai cairo libxft harfbuzz fribidi)
-makedepends=(gobject-introspection help2man git meson gi-docgen)
-checkdepends=(ttf-dejavu cantarell-fonts)
-_commit=bcf61fc3a0c30da173c8629d1458fe3440288878  # tags/1.50.4^0
-source=("git+https://gitlab.gnome.org/GNOME/pango.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd pango
-  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
-}
-
-prepare() {
-  cd pango
-}
-
-build() {
-  arch-meson pango build -D gtk_doc=true
-  meson compile -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-package_pango() {
-  provides=(libpango{,cairo,ft2,xft}-1.0.so)
-
-  meson install -C build --destdir "$pkgdir"
-
-  mkdir -p doc/usr/share
-  mv {"$pkgdir",doc}/usr/share/doc
-}
-
-package_pango-docs() {
-  pkgdesc+=" (documentation)"
-  depends=()
-
-  mv doc/* "$pkgdir"
-}
-
-# vim:set sw=2 et:

Copied: pango/repos/extra-x86_64/PKGBUILD (from rev 438987, 
pango/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-03-05 18:47:44 UTC (rev 438988)
@@ -0,0 +1,52 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgbase=pango
+pkgname=(pango pango-docs)
+pkgver=1.50.5
+pkgrel=1
+epoch=1
+pkgdesc="A library for layout and rendering of text"
+url="https://www.pango.org/;
+arch=(x86_64)
+license=(LGPL)
+depends=(libthai cairo libxft harfbuzz fribidi)
+makedepends=(gobject-introspection help2man git meson gi-docgen)
+_commit=4851f23d6205e9e34ccacb48d02eae5e0f3b2f27  # tags/1.50.5^0
+source=("git+https://gitlab.gnome.org/GNOME/pango.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd pango
+  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+  cd pango
+}
+
+build() {
+  arch-meson pango build -D gtk_doc=true
+  meson compile -C build
+}
+
+# not running checks: validation breaks when deps
+# (especially harfbuzz) don't match upstream CI
+
+package_pango() {
+  provides=(libpango{,cairo,ft2,xft}-1.0.so)
+
+  meson install -C build --destdir "$pkgdir"
+
+  mkdir -p doc/usr/share
+  mv {"$pkgdir",doc}/usr/share/doc
+}
+
+package_pango-docs() {
+  pkgdesc+=" (documentation)"
+  depends=()
+
+  mv doc/* "$pkgdir"
+}
+
+# vim:set sw=2 et:



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

2022-03-05 Thread Jan Steffens via arch-commits
Date: Saturday, March 5, 2022 @ 18:47:28
  Author: heftig
Revision: 438987

1.50.5-1

Modified:
  pango/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-05 18:46:14 UTC (rev 438986)
+++ PKGBUILD2022-03-05 18:47:28 UTC (rev 438987)
@@ -3,7 +3,7 @@
 
 pkgbase=pango
 pkgname=(pango pango-docs)
-pkgver=1.50.4
+pkgver=1.50.5
 pkgrel=1
 epoch=1
 pkgdesc="A library for layout and rendering of text"
@@ -12,8 +12,7 @@
 license=(LGPL)
 depends=(libthai cairo libxft harfbuzz fribidi)
 makedepends=(gobject-introspection help2man git meson gi-docgen)
-checkdepends=(ttf-dejavu cantarell-fonts)
-_commit=bcf61fc3a0c30da173c8629d1458fe3440288878  # tags/1.50.4^0
+_commit=4851f23d6205e9e34ccacb48d02eae5e0f3b2f27  # tags/1.50.5^0
 source=("git+https://gitlab.gnome.org/GNOME/pango.git#commit=$_commit;)
 sha256sums=('SKIP')
 
@@ -31,9 +30,8 @@
   meson compile -C build
 }
 
-check() {
-  meson test -C build --print-errorlogs
-}
+# not running checks: validation breaks when deps
+# (especially harfbuzz) don't match upstream CI
 
 package_pango() {
   provides=(libpango{,cairo,ft2,xft}-1.0.so)



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

2022-03-05 Thread Jan Steffens via arch-commits
Date: Saturday, March 5, 2022 @ 18:47:12
  Author: heftig
Revision: 1142228

1.50.5-1

Modified:
  lib32-pango/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-05 16:53:14 UTC (rev 1142227)
+++ PKGBUILD2022-03-05 18:47:12 UTC (rev 1142228)
@@ -4,7 +4,7 @@
 # Contributor: Mikko Seppälä 
 
 pkgname=lib32-pango
-pkgver=1.50.4
+pkgver=1.50.5
 pkgrel=1
 epoch=1
 pkgdesc="A library for layout and rendering of text (32-bit)"
@@ -13,9 +13,8 @@
 license=(LGPL)
 depends=(lib32-libthai lib32-cairo lib32-libxft lib32-harfbuzz lib32-fribidi 
pango)
 makedepends=(git meson)
-checkdepends=(ttf-dejavu cantarell-fonts)
 provides=(libpango{,cairo,ft2,xft}-1.0.so)
-_commit=bcf61fc3a0c30da173c8629d1458fe3440288878  # tags/1.50.4^0
+_commit=4851f23d6205e9e34ccacb48d02eae5e0f3b2f27  # tags/1.50.5^0
 source=("git+https://gitlab.gnome.org/GNOME/pango.git#commit=$_commit;)
 sha256sums=('SKIP')
 
@@ -39,9 +38,8 @@
   meson compile -C build
 }
 
-check() {
-  meson test -C build --print-errorlogs
-}
+# not running checks: validation breaks when deps
+# (especially harfbuzz) don't match upstream CI
 
 package() {
   meson install -C build --destdir "$pkgdir"



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

2022-03-05 Thread Jan Steffens via arch-commits
Date: Saturday, March 5, 2022 @ 18:46:14
  Author: heftig
Revision: 438986

archrelease: copy trunk to extra-x86_64

Added:
  libgphoto2/repos/extra-x86_64/PKGBUILD
(from rev 438985, libgphoto2/trunk/PKGBUILD)
Deleted:
  libgphoto2/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-03-05 18:40:02 UTC (rev 438985)
+++ PKGBUILD2022-03-05 18:46:14 UTC (rev 438986)
@@ -1,61 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-# Contributor: Tom Gundersen 
-# Contributor: Eduardo Romero 
-# Contributor: Damir Perisa 
-
-pkgname=libgphoto2
-pkgver=2.5.28
-pkgrel=1
-pkgdesc="Digital camera access library"
-url="http://www.gphoto.org/;
-arch=(x86_64)
-license=(LGPL)
-depends=(libexif libjpeg gd libltdl libusb libxml2 curl)
-makedepends=(autoconf-archive git)
-provides=(libgphoto2.so)
-_commit=7ac02fa09a92fce2eeb43f8e821ab171644835ac  # 
tags/libgphoto2-2_5_28-release
-source=("git+https://github.com/gphoto/libgphoto2#commit=$_commit;)
-sha256sums=('SKIP')
-validpgpkeys=('7C4AFD61D8AAE7570796A5172209D6902F969C95') # Marcus Meissner
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 
's/^libgphoto2-//;s/-release//;s/^v//;s/_/./g;s/[^-]*-g/r&/;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  autoreconf -fvi
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --disable-rpath
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/if test 
"$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then/  
func_append compile_command " -Wl,-O1,--as-needed"\n  func_append 
finalize_command " -Wl,-O1,--as-needed"\n\0/' libtool
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-
-  # Remove unused udev helper
-  rm -r "$pkgdir/usr/lib/udev"
-
-  _genudev
-}
-
-_genudev() (
-  cd "$pkgdir/usr/lib/libgphoto2"
-
-  export LD_LIBRARY_PATH="$pkgdir/usr/lib${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH"
-  export CAMLIBS="$PWD/$pkgver"
-
-  ./print-camera-list hwdb \
-| install -Dm644 /dev/stdin "$pkgdir/usr/lib/udev/hwdb.d/20-gphoto.hwdb"
-  ./print-camera-list udev-rules version 201 \
-| install -Dm644 /dev/stdin "$pkgdir/usr/lib/udev/rules.d/40-gphoto.rules"
-)
-
-# vim:set sw=2 et:

Copied: libgphoto2/repos/extra-x86_64/PKGBUILD (from rev 438985, 
libgphoto2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-03-05 18:46:14 UTC (rev 438986)
@@ -0,0 +1,61 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+# Contributor: Tom Gundersen 
+# Contributor: Eduardo Romero 
+# Contributor: Damir Perisa 
+
+pkgname=libgphoto2
+pkgver=2.5.29
+pkgrel=1
+pkgdesc="Digital camera access library"
+url="http://www.gphoto.org/;
+arch=(x86_64)
+license=(LGPL)
+depends=(libexif libjpeg gd libltdl libusb libxml2 curl)
+makedepends=(autoconf-archive git)
+provides=(libgphoto2.so)
+_commit=1691f4705cc08b08c7569ae3e83001ba8c3f28c2  # 
tags/libgphoto2-2_5_29-release
+source=("git+https://github.com/gphoto/libgphoto2#commit=$_commit;)
+sha256sums=('SKIP')
+validpgpkeys=('7C4AFD61D8AAE7570796A5172209D6902F969C95') # Marcus Meissner
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 
's/^libgphoto2-//;s/-release//;s/^v//;s/_/./g;s/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  autoreconf -fvi
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --disable-rpath
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/if test 
"$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then/  
func_append compile_command " -Wl,-O1,--as-needed"\n  func_append 
finalize_command " -Wl,-O1,--as-needed"\n\0/' libtool
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+
+  # Remove unused udev helper
+  rm -r "$pkgdir/usr/lib/udev"
+
+  _genudev
+}
+
+_genudev() (
+  cd "$pkgdir/usr/lib/libgphoto2"
+
+  export LD_LIBRARY_PATH="$pkgdir/usr/lib${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH"
+  export CAMLIBS="$PWD/$pkgver"
+
+  ./print-camera-list hwdb \
+| install -Dm644 /dev/stdin "$pkgdir/usr/lib/udev/hwdb.d/20-gphoto.hwdb"
+  ./print-camera-list udev-rules version 201 \
+| install -Dm644 /dev/stdin "$pkgdir/usr/lib/udev/rules.d/40-gphoto.rules"
+)
+
+# vim:set sw=2 et:



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

2022-03-05 Thread Jan Steffens via arch-commits
Date: Saturday, March 5, 2022 @ 18:40:02
  Author: heftig
Revision: 438985

2.5.29-1

Modified:
  libgphoto2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-05 18:38:35 UTC (rev 438984)
+++ PKGBUILD2022-03-05 18:40:02 UTC (rev 438985)
@@ -5,7 +5,7 @@
 # Contributor: Damir Perisa 
 
 pkgname=libgphoto2
-pkgver=2.5.28
+pkgver=2.5.29
 pkgrel=1
 pkgdesc="Digital camera access library"
 url="http://www.gphoto.org/;
@@ -14,7 +14,7 @@
 depends=(libexif libjpeg gd libltdl libusb libxml2 curl)
 makedepends=(autoconf-archive git)
 provides=(libgphoto2.so)
-_commit=7ac02fa09a92fce2eeb43f8e821ab171644835ac  # 
tags/libgphoto2-2_5_28-release
+_commit=1691f4705cc08b08c7569ae3e83001ba8c3f28c2  # 
tags/libgphoto2-2_5_29-release
 source=("git+https://github.com/gphoto/libgphoto2#commit=$_commit;)
 sha256sums=('SKIP')
 validpgpkeys=('7C4AFD61D8AAE7570796A5172209D6902F969C95') # Marcus Meissner



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

2022-03-05 Thread Jan Steffens via arch-commits
Date: Saturday, March 5, 2022 @ 18:38:35
  Author: heftig
Revision: 438984

conflict with pipewire-pulse

Modified:
  paprefs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-05 15:10:33 UTC (rev 438983)
+++ PKGBUILD2022-03-05 18:38:35 UTC (rev 438984)
@@ -10,8 +10,9 @@
 url="https://freedesktop.org/software/pulseaudio/paprefs/;
 license=(GPL2)
 arch=(x86_64)
-depends=(gtkmm3 libsigc++ pulseaudio)
+depends=(gtkmm3 libsigc++ 'pulseaudio>=12.0')
 makedepends=(meson lynx tidy git)
+conflicts=(pipewire-pulse)
 _commit=d70f061e1703c53aa327d3e836222e47dde86204  # tags/v1.2^0
 
source=("git+https://gitlab.freedesktop.org/pulseaudio/paprefs.git#commit=$_commit;)
 sha512sums=('SKIP')



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

2022-03-05 Thread Kyle Keen via arch-commits
Date: Saturday, March 5, 2022 @ 16:02:47
  Author: kkeen
Revision: 1142226

archrelease: copy trunk to community-any

Added:
  ipython/repos/community-any/PKGBUILD
(from rev 1142225, ipython/trunk/PKGBUILD)
Deleted:
  ipython/repos/community-any/PKGBUILD

--+
 PKGBUILD |  126 ++---
 1 file changed, 63 insertions(+), 63 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-03-05 16:02:30 UTC (rev 1142225)
+++ PKGBUILD2022-03-05 16:02:47 UTC (rev 1142226)
@@ -1,63 +0,0 @@
-# Maintainer: Kyle Keen 
-# Maintainer: Daniel M. Capella 
-# Contributor: PepeSmith
-# Contributor: Aron Asor 
-# Contributor: Chris Brannon 
-# Contributor: Douglas Soares de Andrade 
-
-pkgname=ipython
-pkgver=8.1.0
-pkgrel=1
-pkgdesc="An enhanced Interactive Python shell."
-arch=('any')
-url="https://ipython.org;
-license=('BSD')
-depends=('python' 'python-traitlets' 'python-pexpect' 'sqlite'
- 'python-pickleshare' 'python-prompt_toolkit'
- 'python-jedi' 'python-pygments' 'python-backcall'
- 'python-matplotlib-inline' 'python-stack-data')
-makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
-# texlive-bin checkdep excluded due to test_latex_to_png_color failure
-checkdepends=('python-pytest' 'python-pytest-asyncio' 'python-testpath'
-  'jupyter-nbformat' 'python-ipykernel' 'python-numpy' 
'python-trio'
-  'python-matplotlib' 'python-curio' 'python-pandas' 'tcsh')
-optdepends=('python-black: to auto format with Black'
-'yapf: to auto format with YAPF')
-source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz;
-
"IPython-icon.png::https://www.packal.org/sites/default/files/public/styles/icon_large/public/workflow-files/nkeimipynbworkflow/icon/icon.png;)
-sha256sums=('42c23e90b2deaae631266885de1656a517a1673d7e1db57e8eb3a4bb6cd5ce1b'
-'3c44a6fa1e3a8afc24754c90469404770b639cb960361988999a4cdd677699d8')
-b2sums=('9a44555dcb91655c5d483a7ba5d99074b9c2c4af3ec272d0adabc345352359b061ea4fd92198c3910945139edb80c8837afe1ae3c34b0bddb517d226584f28a1'
-
'd445e2bc7a037db8715ea103611720e965987e155c32e445b0ef783e519fca8a0301b16c5763fd9a5d8d169c3b0d7b4db6c0bd0f9772842258b135dcb1d6d5a2')
-
-# confirm that an update does not break sage?
-
-build() {
-  cd $pkgname-$pkgver
-  python -m build --wheel --skip-dependency-check --no-isolation
-}
-
-check() {
-  cd $pkgname-$pkgver
-  python -m venv --system-site-packages test-env
-  test-env/bin/python -m installer dist/*.whl
-  test-env/bin/python -m pytest
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python -m installer --destdir="$pkgdir" dist/*.whl
-
-  cd "examples/IPython Kernel"
-  # FS#45120
-  sed -i 's/gnome-netstatus-idle/ipython/' ipython.desktop
-  install -Dm644 -t "$pkgdir/usr/share/applications" ipython.desktop
-  # FS#47046
-  install -Dm644 "$srcdir/IPython-icon.png" 
"$pkgdir/usr/share/pixmaps/ipython.png"
-
-  # Symlink license file
-  local site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
-  install -d "$pkgdir"/usr/share/licenses/$pkgname
-  ln -s "$site_packages"/$pkgname-$pkgver.dist-info/LICENSE \
-"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: ipython/repos/community-any/PKGBUILD (from rev 1142225, 
ipython/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-03-05 16:02:47 UTC (rev 1142226)
@@ -0,0 +1,63 @@
+# Maintainer: Kyle Keen 
+# Maintainer: Daniel M. Capella 
+# Contributor: PepeSmith
+# Contributor: Aron Asor 
+# Contributor: Chris Brannon 
+# Contributor: Douglas Soares de Andrade 
+
+pkgname=ipython
+pkgver=8.1.1
+pkgrel=1
+pkgdesc="An enhanced Interactive Python shell."
+arch=('any')
+url="https://ipython.org;
+license=('BSD')
+depends=('python' 'python-traitlets' 'python-pexpect' 'sqlite'
+ 'python-pickleshare' 'python-prompt_toolkit'
+ 'python-jedi' 'python-pygments' 'python-backcall'
+ 'python-matplotlib-inline' 'python-stack-data')
+makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
+# texlive-bin checkdep excluded due to test_latex_to_png_color failure
+checkdepends=('python-pytest' 'python-pytest-asyncio' 'python-testpath'
+  'jupyter-nbformat' 'python-ipykernel' 'python-numpy' 
'python-trio'
+  'python-matplotlib' 'python-curio' 'python-pandas' 'tcsh')
+optdepends=('python-black: to auto format with Black'
+'yapf: to auto format with YAPF')
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz;
+
"IPython-icon.png::https://www.packal.org/sites/default/files/public/styles/icon_large/public/workflow-files/nkeimipynbworkflow/icon/icon.png;)

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

2022-03-05 Thread Kyle Keen via arch-commits
Date: Saturday, March 5, 2022 @ 16:02:30
  Author: kkeen
Revision: 1142225

upgpkg: ipython 8.1.1-1

Modified:
  ipython/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-05 15:41:41 UTC (rev 1142224)
+++ PKGBUILD2022-03-05 16:02:30 UTC (rev 1142225)
@@ -6,7 +6,7 @@
 # Contributor: Douglas Soares de Andrade 
 
 pkgname=ipython
-pkgver=8.1.0
+pkgver=8.1.1
 pkgrel=1
 pkgdesc="An enhanced Interactive Python shell."
 arch=('any')
@@ -25,9 +25,9 @@
 'yapf: to auto format with YAPF')
 
source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz;
 
"IPython-icon.png::https://www.packal.org/sites/default/files/public/styles/icon_large/public/workflow-files/nkeimipynbworkflow/icon/icon.png;)
-sha256sums=('42c23e90b2deaae631266885de1656a517a1673d7e1db57e8eb3a4bb6cd5ce1b'
+sha256sums=('8138762243c9b3a3ffcf70b37151a2a35c23d3a29f9743878c33624f4207be3d'
 '3c44a6fa1e3a8afc24754c90469404770b639cb960361988999a4cdd677699d8')
-b2sums=('9a44555dcb91655c5d483a7ba5d99074b9c2c4af3ec272d0adabc345352359b061ea4fd92198c3910945139edb80c8837afe1ae3c34b0bddb517d226584f28a1'
+b2sums=('0972b2f4a8072c5775f5cc4637aeb8e684b342d097d77e2d9d0a3e659d7a10f94f741bafc7f33595cbb205d8dbbc72e88b820e5407cb9ab506189d44e8c19cf0'
 
'd445e2bc7a037db8715ea103611720e965987e155c32e445b0ef783e519fca8a0301b16c5763fd9a5d8d169c3b0d7b4db6c0bd0f9772842258b135dcb1d6d5a2')
 
 # confirm that an update does not break sage?



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

2022-03-05 Thread Morten Linderud via arch-commits
Date: Saturday, March 5, 2022 @ 15:41:41
  Author: foxboron
Revision: 1142224

archrelease: copy trunk to community-any

Added:
  python-formencode/repos/community-any/
  python-formencode/repos/community-any/PKGBUILD
(from rev 1142223, python-formencode/trunk/PKGBUILD)

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

Copied: python-formencode/repos/community-any/PKGBUILD (from rev 1142223, 
python-formencode/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2022-03-05 15:41:41 UTC (rev 1142224)
@@ -0,0 +1,33 @@
+# Maintainer: Morten Linderud 
+
+pkgname=python-formencode
+_pkgname=formencode
+_pypi=FormEncode
+pkgver=2.0.1
+pkgrel=1
+pkgdesc="A validation library for Python."
+arch=("any")
+url="http://www.formencode.org/en/latest/;
+license=("MIT")
+depends=("python")
+checkdepends=("python-pytest" "python-dnspython" "python-pycountry")
+makedepends=("python-setuptools" "python-setuptools-scm-git-archive")
+source=("$pkgname-$pkgver.tar.gz::https://github.com/formencode/formencode/archive/$pkgver.tar.gz;)
+source=("https://files.pythonhosted.org/packages/source/${_pkgname::1}/${_pkgname}/${_pypi}-${pkgver}.tar.gz;)
+sha256sums=('8f2974112c2557839d5bae8b76490104c03830785d923abbdef148bf3f710035')
+
+build() {
+  cd "${_pypi}-${pkgver}"
+  python setup.py build
+}
+
+check(){
+  cd "${_pypi}-${pkgver}"
+  python -m unittest
+}
+
+package() {
+  cd "${_pypi}-${pkgver}"
+  python setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
+  install -Dm0644 LICENSE.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt"
+}



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

2022-03-05 Thread Morten Linderud via arch-commits
Date: Saturday, March 5, 2022 @ 15:41:36
  Author: foxboron
Revision: 1142223

upgpkg: python-formencode 2.0.1-1: addpkg: python-formencode 2.0.1-1

Added:
  python-formencode/trunk/PKGBUILD

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

Added: PKGBUILD
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-03-05 15:41:36 UTC (rev 1142223)
@@ -0,0 +1,33 @@
+# Maintainer: Morten Linderud 
+
+pkgname=python-formencode
+_pkgname=formencode
+_pypi=FormEncode
+pkgver=2.0.1
+pkgrel=1
+pkgdesc="A validation library for Python."
+arch=("any")
+url="http://www.formencode.org/en/latest/;
+license=("MIT")
+depends=("python")
+checkdepends=("python-pytest" "python-dnspython" "python-pycountry")
+makedepends=("python-setuptools" "python-setuptools-scm-git-archive")
+source=("$pkgname-$pkgver.tar.gz::https://github.com/formencode/formencode/archive/$pkgver.tar.gz;)
+source=("https://files.pythonhosted.org/packages/source/${_pkgname::1}/${_pkgname}/${_pypi}-${pkgver}.tar.gz;)
+sha256sums=('8f2974112c2557839d5bae8b76490104c03830785d923abbdef148bf3f710035')
+
+build() {
+  cd "${_pypi}-${pkgver}"
+  python setup.py build
+}
+
+check(){
+  cd "${_pypi}-${pkgver}"
+  python -m unittest
+}
+
+package() {
+  cd "${_pypi}-${pkgver}"
+  python setup.py install --root="${pkgdir}/" --optimize=1 --skip-build
+  install -Dm0644 LICENSE.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt"
+}



[arch-commits] Commit in (3 files)

2022-03-05 Thread Morten Linderud via arch-commits
Date: Saturday, March 5, 2022 @ 15:41:31
  Author: foxboron
Revision: 114

addpkg: python-formencode 2.0.1-1

Added:
  python-formencode/
  python-formencode/repos/
  python-formencode/trunk/



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

2022-03-05 Thread Morten Linderud via arch-commits
Date: Saturday, March 5, 2022 @ 15:25:20
  Author: foxboron
Revision: 1142220

upgpkg: python-rope 0.23.0-1: upgpkg: python-rope 0.23.0-1

Modified:
  python-rope/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-05 15:24:22 UTC (rev 1142219)
+++ PKGBUILD2022-03-05 15:25:20 UTC (rev 1142220)
@@ -6,8 +6,8 @@
 # Contributor: Jens Maucher 
 
 pkgname=python-rope
-pkgver=0.22.0
-pkgrel=3
+pkgver=0.23.0
+pkgrel=1
 pkgdesc='Refactoring library'
 arch=('any')
 url='https://github.com/python-rope/rope'
@@ -14,7 +14,7 @@
 license=('GPL')
 makedepends=('python' 'python-setuptools')
 source=("https://pypi.io/packages/source/r/rope/rope-$pkgver.tar.gz;)
-sha256sums=('b00fbc064a26fc62d7220578a27fd639b2fad57213663cc396c137e92d73f10f')
+sha256sums=('f87662c565086d660fc855cc07f37820267876634c3e9e51bddb32ff51547268')
 
 build(){
   cd "rope-$pkgver"



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

2022-03-05 Thread Morten Linderud via arch-commits
Date: Saturday, March 5, 2022 @ 15:24:22
  Author: foxboron
Revision: 1142219

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-03-05 15:24:15 UTC (rev 1142218)
+++ PKGBUILD2022-03-05 15:24:22 UTC (rev 1142219)
@@ -1,46 +0,0 @@
-# Maintainer: Morten Linderud 
-
-pkgname=python-adblock
-pkgver=0.5.2
-pkgrel=1
-pkgdesc="Brave's adblock library in Python"
-arch=("x86_64")
-url="https://github.com/ArniDagur/python-adblock;
-license=("MIT")
-depends=()
-makedepends=("python-setuptools" "python-dephell" "rust" "maturin")
-checkdepends=("python-pytest")
-options=('strip' 'debug')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/ArniDagur/${pkgname}/archive/refs/tags/${pkgver}.tar.gz;)
-sha256sums=('ac2fc8646e544c1354e5863a39fe749e3e89c27b4c3d71354b65f45e00ffc421')
-
-build() {
-cd $pkgname-$pkgver
-maturin build --release --strip
-cargo build --release --locked --all-features --target-dir=target
-}
-
-check() {
-  local python_version=$(python -c 'import sys; print(".".join(map(str, 
sys.version_info[:2])))')
-  cd "$pkgname-$pkgver"
-  mkdir -vp testdir
-  export PIP_CONFIG_FILE=/dev/null
-  pip install --isolated \
-  --root="testdir" \
-  --ignore-installed \
-  --no-deps target/wheels/*.whl
-  export 
PYTHONPATH="testdir/usr/lib/python${python_version}/site-packages:${PYTHONPATH}"
-  pytest -v -k 'not test_version_numbers_all_same'
-}
-
-package() {
-cd $pkgname-$pkgver
-install -Dm755 target/release/libadblock.so -t "$pkgdir/usr/lib"
-export PIP_CONFIG_FILE='/dev/null'
-pip install --isolated \
-  --root="$pkgdir" \
-  --ignore-installed \
-  --no-deps target/wheels/*.whl
-install -Dm0644 LICENSE-MIT 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE-MIT"
-}
-

Copied: python-adblock/repos/community-x86_64/PKGBUILD (from rev 1142218, 
python-adblock/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-03-05 15:24:22 UTC (rev 1142219)
@@ -0,0 +1,45 @@
+# Maintainer: Morten Linderud 
+
+pkgname=python-adblock
+pkgver=0.5.2
+pkgrel=1
+pkgdesc="Brave's adblock library in Python"
+arch=("x86_64")
+url="https://github.com/ArniDagur/python-adblock;
+license=("MIT")
+depends=()
+makedepends=("python-setuptools" "python-dephell" "rust" "maturin")
+checkdepends=("python-pytest")
+source=("$pkgname-$pkgver.tar.gz::https://github.com/ArniDagur/${pkgname}/archive/refs/tags/${pkgver}.tar.gz;)
+sha256sums=('ac2fc8646e544c1354e5863a39fe749e3e89c27b4c3d71354b65f45e00ffc421')
+
+build() {
+cd $pkgname-$pkgver
+maturin build --release --strip
+cargo build --release --locked --all-features --target-dir=target
+}
+
+check() {
+  local python_version=$(python -c 'import sys; print(".".join(map(str, 
sys.version_info[:2])))')
+  cd "$pkgname-$pkgver"
+  mkdir -vp testdir
+  export PIP_CONFIG_FILE=/dev/null
+  pip install --isolated \
+  --root="testdir" \
+  --ignore-installed \
+  --no-deps target/wheels/*.whl
+  export 
PYTHONPATH="testdir/usr/lib/python${python_version}/site-packages:${PYTHONPATH}"
+  pytest -v -k 'not test_version_numbers_all_same'
+}
+
+package() {
+cd $pkgname-$pkgver
+install -Dm755 target/release/libadblock.so -t "$pkgdir/usr/lib"
+export PIP_CONFIG_FILE='/dev/null'
+pip install --isolated \
+  --root="$pkgdir" \
+  --ignore-installed \
+  --no-deps target/wheels/*.whl
+install -Dm0644 LICENSE-MIT 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE-MIT"
+}
+



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

2022-03-05 Thread Morten Linderud via arch-commits
Date: Saturday, March 5, 2022 @ 15:24:15
  Author: foxboron
Revision: 1142218

upgpkg: python-adblock 0.5.2-1: upgpkg: python-adblock 0.5.2-1

Modified:
  python-adblock/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-05 15:17:42 UTC (rev 1142217)
+++ PKGBUILD2022-03-05 15:24:15 UTC (rev 1142218)
@@ -10,7 +10,6 @@
 depends=()
 makedepends=("python-setuptools" "python-dephell" "rust" "maturin")
 checkdepends=("python-pytest")
-options=('strip' 'debug')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/ArniDagur/${pkgname}/archive/refs/tags/${pkgver}.tar.gz;)
 sha256sums=('ac2fc8646e544c1354e5863a39fe749e3e89c27b4c3d71354b65f45e00ffc421')
 



[arch-commits] Commit in element.io/repos/community-x86_64 (9 files)

2022-03-05 Thread Bruno Pagani via arch-commits
Date: Saturday, March 5, 2022 @ 15:17:42
  Author: archange
Revision: 1142217

archrelease: copy trunk to community-x86_64

Added:
  element.io/repos/community-x86_64/PKGBUILD
(from rev 1142216, element.io/trunk/PKGBUILD)
  element.io/repos/community-x86_64/autolaunch.patch
(from rev 1142216, element.io/trunk/autolaunch.patch)
  element.io/repos/community-x86_64/element-desktop.sh
(from rev 1142216, element.io/trunk/element-desktop.sh)
  element.io/repos/community-x86_64/encapsulate-sqlcipher.diff
(from rev 1142216, element.io/trunk/encapsulate-sqlcipher.diff)
  element.io/repos/community-x86_64/io.element.Element.desktop
(from rev 1142216, element.io/trunk/io.element.Element.desktop)
Deleted:
  element.io/repos/community-x86_64/PKGBUILD
  element.io/repos/community-x86_64/autolaunch.patch
  element.io/repos/community-x86_64/element-desktop.sh
  element.io/repos/community-x86_64/io.element.Element.desktop

+
 PKGBUILD   |  197 +--
 autolaunch.patch   |   22 ++--
 element-desktop.sh |6 -
 encapsulate-sqlcipher.diff |  105 ++
 io.element.Element.desktop |   20 ++--
 5 files changed, 229 insertions(+), 121 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-03-05 15:16:57 UTC (rev 1142216)
+++ PKGBUILD2022-03-05 15:17:42 UTC (rev 1142217)
@@ -1,97 +0,0 @@
-# Maintainer: Bruno Pagani 
-# Contributor: Steef Hegeman 
-# Contributor: Luca Weiss 
-# Contributor: Julian Schacher 
-
-_electron=electron17
-pkgbase=element.io
-pkgname=(element-web element-desktop)
-pkgver=1.10.6
-pkgrel=1
-pkgdesc="Glossy Matrix collaboration client — "
-arch=(x86_64)
-url="https://element.io;
-license=(Apache)
-makedepends=(npm git yarn python rust sqlcipher ${_electron} 
nodejs-lts-gallium)
-_url="https://github.com/vector-im/element;
-source=(element-web-${pkgver}.tar.gz::${_url}-web/archive/v${pkgver}.tar.gz
-
element-web-${pkgver}.tar.gz.asc::${_url}-web/releases/download/v${pkgver}/v${pkgver}-src.tar.gz.asc
-
element-desktop-${pkgver}.tar.gz::${_url}-desktop/archive/v${pkgver}.tar.gz
-
element-desktop-${pkgver}.tar.gz.asc::${_url}-desktop/releases/download/v${pkgver}/v${pkgver}-src.tar.gz.asc
-autolaunch.patch
-io.element.Element.desktop
-element-desktop.sh)
-sha256sums=('0afbddbaf9215b6aa6e566a9456a1186262245d472d457954febb7b4e12d345f'
-'SKIP'
-'388931f2de254f66499ac79d047e4402cba9fc7b289de60e27720bfdca012000'
-'SKIP'
-'aaae4ffa41590361dac0c159aecc1166f69e459e89faa9d5cab1202f0277e06f'
-'0103f28a32fe31f698836516783c1c70a76a0117b5df7fd0af5c422c224220f9'
-'4c931121009985e7d3f73928c9db88508eedd974a7741e635bb290e3a2cd75db')
-validpgpkeys=(712BFBEE92DCA45252DB17D7C7BE97EFA179B100) # Element Releases 

-
-prepare() {
-  # Specify electron version in launcher
-  sed -i "s|@ELECTRON@|${_electron}|" element-desktop.sh
-
-  cd element-web-${pkgver}
-  yarn install --no-fund
-
-  cd ../element-desktop-${pkgver}
-  patch -p1 < ../autolaunch.patch
-  sed -i 's|"target": "deb"|"target": "dir"|' package.json
-  sed -i 's|"https://packages.element.io/desktop/update/;|null|' 
element.io/release/config.json
-  yarn install --no-fund
-}
-
-build() {
-  cd element-web-${pkgver}
-  VERSION=${pkgver} yarn build --offline
-
-  cd ../element-desktop-${pkgver}
-  yarn run build:native
-  yarn run build
-}
-
-package_element-web() {
-  pkgdesc+="web version."
-  replaces=(riot-web vector-web)
-
-  cd element-web-${pkgver}
-
-  install -d "${pkgdir}"/{usr/share/webapps,etc/webapps}/element
-
-  cp -r webapp/* "${pkgdir}"/usr/share/webapps/element/
-  install -Dm644 config.sample.json -t "${pkgdir}"/etc/webapps/element/
-  ln -s /etc/webapps/element/config.json "${pkgdir}"/usr/share/webapps/element/
-  echo "${pkgver}" > "${pkgdir}"/usr/share/webapps/element/version
-}
-
-package_element-desktop() {
-  pkgdesc+="desktop version."
-  replaces=(riot-desktop)
-  depends=("element-web=${pkgver}" ${_electron} sqlcipher)
-  backup=('etc/element/config.json')
-
-  cd element-desktop-${pkgver}
-
-  install -d "${pkgdir}"{/usr/lib/element/,/etc/webapps/element}
-
-  # Install the app content, replace the webapp with a symlink to the system 
package
-  cp -r dist/linux-unpacked/resources/* "${pkgdir}"/usr/lib/element/
-  ln -s /usr/share/webapps/element "${pkgdir}"/usr/lib/element/webapp
-
-  # Config file
-  ln -s /etc/element/config.json "${pkgdir}"/etc/webapps/element/config.json
-  install -Dm644 element.io/release/config.json -t "${pkgdir}"/etc/element
-
-  # Required extras
-  install -Dm644 ../io.element.Element.desktop -t 
"${pkgdir}"/usr/share/applications/
-  install -Dm755 ../${pkgname}.sh "${pkgdir}"/usr/bin/${pkgname}
-
-  # Icons
-  install -Dm644 

[arch-commits] Commit in element.io/trunk (3 files)

2022-03-05 Thread Bruno Pagani via arch-commits
Date: Saturday, March 5, 2022 @ 15:16:57
  Author: archange
Revision: 1142216

Fix crashes by building a statically linked sqlcipher.

This remove the need to preload one to avoid conflicts with gtk linkings.

Thanks go to heftig for the actual patch for this.

Added:
  element.io/trunk/encapsulate-sqlcipher.diff
Modified:
  element.io/trunk/PKGBUILD
  element.io/trunk/element-desktop.sh

+
 PKGBUILD   |   11 ++--
 element-desktop.sh |2 
 encapsulate-sqlcipher.diff |  105 +++
 3 files changed, 113 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-03-05 14:51:54 UTC (rev 1142215)
+++ PKGBUILD2022-03-05 15:16:57 UTC (rev 1142216)
@@ -7,12 +7,12 @@
 pkgbase=element.io
 pkgname=(element-web element-desktop)
 pkgver=1.10.6
-pkgrel=1
+pkgrel=2
 pkgdesc="Glossy Matrix collaboration client — "
 arch=(x86_64)
 url="https://element.io;
 license=(Apache)
-makedepends=(npm git yarn python rust sqlcipher ${_electron} 
nodejs-lts-gallium)
+makedepends=(npm git yarn python rust tcl ${_electron} nodejs-lts-gallium)
 _url="https://github.com/vector-im/element;
 source=(element-web-${pkgver}.tar.gz::${_url}-web/archive/v${pkgver}.tar.gz
 
element-web-${pkgver}.tar.gz.asc::${_url}-web/releases/download/v${pkgver}/v${pkgver}-src.tar.gz.asc
@@ -19,6 +19,7 @@
 
element-desktop-${pkgver}.tar.gz::${_url}-desktop/archive/v${pkgver}.tar.gz
 
element-desktop-${pkgver}.tar.gz.asc::${_url}-desktop/releases/download/v${pkgver}/v${pkgver}-src.tar.gz.asc
 autolaunch.patch
+encapsulate-sqlcipher.diff
 io.element.Element.desktop
 element-desktop.sh)
 sha256sums=('0afbddbaf9215b6aa6e566a9456a1186262245d472d457954febb7b4e12d345f'
@@ -26,8 +27,9 @@
 '388931f2de254f66499ac79d047e4402cba9fc7b289de60e27720bfdca012000'
 'SKIP'
 'aaae4ffa41590361dac0c159aecc1166f69e459e89faa9d5cab1202f0277e06f'
+'3b2112d25b258b67d18b9329faeb9e5c5b218732c9c020ee01911347a90a1cb8'
 '0103f28a32fe31f698836516783c1c70a76a0117b5df7fd0af5c422c224220f9'
-'4c931121009985e7d3f73928c9db88508eedd974a7741e635bb290e3a2cd75db')
+'c1bd9ace215e3ec9af14d7f28b163fc8c8b42e23a2cf04ce6f4ce2fcc465feba')
 validpgpkeys=(712BFBEE92DCA45252DB17D7C7BE97EFA179B100) # Element Releases 

 
 prepare() {
@@ -39,6 +41,7 @@
 
   cd ../element-desktop-${pkgver}
   patch -p1 < ../autolaunch.patch
+  patch -p1 < ../encapsulate-sqlcipher.diff
   sed -i 's|"target": "deb"|"target": "dir"|' package.json
   sed -i 's|"https://packages.element.io/desktop/update/;|null|' 
element.io/release/config.json
   yarn install --no-fund
@@ -70,7 +73,7 @@
 package_element-desktop() {
   pkgdesc+="desktop version."
   replaces=(riot-desktop)
-  depends=("element-web=${pkgver}" ${_electron} sqlcipher)
+  depends=("element-web=${pkgver}" ${_electron})
   backup=('etc/element/config.json')
 
   cd element-desktop-${pkgver}

Modified: element-desktop.sh
===
--- element-desktop.sh  2022-03-05 14:51:54 UTC (rev 1142215)
+++ element-desktop.sh  2022-03-05 15:16:57 UTC (rev 1142216)
@@ -1,3 +1,3 @@
 #!/bin/sh
 
-LD_PRELOAD=/usr/lib/libsqlcipher.so exec @ELECTRON@ /usr/lib/element/app.asar 
--disable-dev-mode "$@"
+exec @ELECTRON@ /usr/lib/element/app.asar --disable-dev-mode "$@"

Added: encapsulate-sqlcipher.diff
===
--- encapsulate-sqlcipher.diff  (rev 0)
+++ encapsulate-sqlcipher.diff  2022-03-05 15:16:57 UTC (rev 1142216)
@@ -0,0 +1,105 @@
+diff --git i/hak/matrix-seshat/build.ts w/hak/matrix-seshat/build.ts
+index 8d50bb1..33ad8d5 100644
+--- i/hak/matrix-seshat/build.ts
 w/hak/matrix-seshat/build.ts
+@@ -26,7 +26,7 @@ export default async function(hakEnv: HakEnv, moduleInfo: 
DependencyInfo): Promi
+ if (hakEnv.isWin()) {
+ await buildOpenSslWin(hakEnv, moduleInfo);
+ await buildSqlCipherWin(hakEnv, moduleInfo);
+-} else if (hakEnv.isMac()) {
++} else {
+ await buildSqlCipherUnix(hakEnv, moduleInfo);
+ }
+ await buildMatrixSeshat(hakEnv, moduleInfo);
+@@ -179,12 +179,17 @@ async function buildSqlCipherUnix(hakEnv, moduleInfo) {
+ '--prefix=' + moduleInfo.depPrefix + '',
+ '--enable-tempstore=yes',
+ '--enable-shared=no',
++'--enable-tcl=no',
+ ];
+ 
+ if (hakEnv.isMac()) {
+ args.push('--with-crypto-lib=commoncrypto');
+ }
+ 
++if (hakEnv.isLinux()) {
++args.push('--with-pic=yes');
++}
++
+ if (!hakEnv.isHost()) {
+ // In the nonsense world of `configure`, it is assumed you are 
building
+ // a compiler like `gcc`, so the `host` option actually means the 
target
+@@ -265,12 +270,14 @@ async function 

[arch-commits] Commit in imagemagick/repos/extra-x86_64 (4 files)

2022-03-05 Thread Antonio Rojas via arch-commits
Date: Saturday, March 5, 2022 @ 15:10:33
  Author: arojas
Revision: 438983

archrelease: copy trunk to extra-x86_64

Added:
  imagemagick/repos/extra-x86_64/PKGBUILD
(from rev 438982, imagemagick/trunk/PKGBUILD)
  imagemagick/repos/extra-x86_64/arch-fonts.diff
(from rev 438982, imagemagick/trunk/arch-fonts.diff)
Deleted:
  imagemagick/repos/extra-x86_64/PKGBUILD
  imagemagick/repos/extra-x86_64/arch-fonts.diff

-+
 PKGBUILD|  244 +++---
 arch-fonts.diff |  214 +++
 2 files changed, 229 insertions(+), 229 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-03-05 15:07:27 UTC (rev 438982)
+++ PKGBUILD2022-03-05 15:10:33 UTC (rev 438983)
@@ -1,122 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Eric Bélanger 
-
-pkgbase=imagemagick
-pkgname=(imagemagick imagemagick-doc)
-pkgver=7.1.0.26
-pkgrel=1
-pkgdesc='An image viewing/manipulation program'
-url='https://www.imagemagick.org/'
-arch=(x86_64)
-license=(custom)
-makedepends=(ghostscript openexr libwmf librsvg libxml2 openjpeg2 libraw 
opencl-headers libwebp libzip libjxl highway
- chrpath ocl-icd glu ghostpcl ghostxps libheif jbigkit lcms2 
libxext liblqr libraqm libpng djvulibre)
-checkdepends=(gsfonts ttf-dejavu)
-_relname=ImageMagick-${pkgver%%.*}
-_tarname=ImageMagick-${pkgver%.*}-${pkgver##*.}
-source=(https://download.imagemagick.org/ImageMagick/download/releases/$_tarname.tar.xz{,.asc}
-arch-fonts.diff)
-sha256sums=('5eb5e48b5785f2e8042563019694f70f09c33e81672a0570375ca0d56e07e752'
-'SKIP'
-'a85b744c61b1b563743ecb7c7adad999d7ed9a8af816650e3ab9321b2b102e73')
-validpgpkeys=(D8272EF51DA223E4D05B466989AB63D48277377A)  # Lexie Parsimoniae
-options=(debug)
-
-shopt -s extglob
-
-prepare() {
-  mkdir -p docpkg/usr/share
-
-  cd $_tarname
-
-  # Fix up typemaps to match our packages, where possible
-  patch -p1 -i ../arch-fonts.diff
-}
-
-build() {
-  cd $_tarname
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---enable-shared \
---disable-static \
---with-dejavu-font-dir=/usr/share/fonts/TTF \
---with-gs-font-dir=/usr/share/fonts/gsfonts \
-PSDelegate=/usr/bin/gs \
-XPSDelegate=/usr/bin/gxps \
-PCLDelegate=/usr/bin/gpcl6 \
---enable-hdri \
---enable-opencl \
---without-gslib \
---with-djvu \
---with-jxl \
---with-lqr \
---with-modules \
---with-openexr \
---with-openjp2 \
---with-perl \
---with-perl-options=INSTALLDIRS=vendor \
---with-rsvg \
---with-webp \
---with-wmf \
---with-xml \
---without-autotrace \
---without-dps \
---without-fftw \
---without-fpx \
---without-gcc-arch \
---without-gvc
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() (
-  cd $_tarname
-  ulimit -n 4096
-  make check
-)
-
-package_imagemagick() {
-  depends=(libltdl lcms2 fontconfig libxext liblqr libraqm libpng libxml2)
-  optdepends=('ghostscript: PS/PDF support'
-  'libheif: HEIF support'
-  'libjxl: JPEG XL support'
-  'libraw: DNG support'
-  'librsvg: SVG support'
-  'libwebp: WEBP support'
-  'libwmf: WMF support'
-  'libxml2: Magick Scripting Language'
-  'libzip: OpenRaster support'
-  'ocl-icd: OpenCL support'
-  'openexr: OpenEXR support'
-  'openjpeg2: JPEG2000 support'
-  'djvulibre: DJVU support'
-  'pango: Text rendering'
-  'imagemagick-doc: manual and API docs')
-  options+=(!emptydirs libtool)
-  
backup=(etc/$_relname/{colors,delegates,log,mime,policy,quantization-table,thresholds,type,type-{dejavu,ghostscript}}.xml)
-  conflicts=(imagemagick6)
-  provides=(libmagick)
-  replaces=(imagemagick6 libmagick)
-
-  cd $_tarname
-  make DESTDIR="$pkgdir" install
-
-  find "$pkgdir/usr/lib/perl5" -name '*.so' -exec chrpath -d {} +
-  rm "$pkgdir"/etc/$_relname/type-{apple,urw-base35,windows}.xml
-  rm "$pkgdir"/usr/lib/*.la
-
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENSE NOTICE
-
-# Split docs
-  mv "$pkgdir/usr/share/doc" "$srcdir/docpkg/usr/share/"
-}
-
-package_imagemagick-doc() {
-  pkgdesc+=" (manual and API docs)"
-
-  mv docpkg/* "$pkgdir"
-
-  cd $_tarname
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENSE NOTICE
-}

Copied: imagemagick/repos/extra-x86_64/PKGBUILD (from rev 438982, 
imagemagick/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-03-05 15:10:33 UTC (rev 438983)
@@ -0,0 +1,122 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Eric Bélanger 
+
+pkgbase=imagemagick
+pkgname=(imagemagick imagemagick-doc)
+pkgver=7.1.0.27
+pkgrel=1
+pkgdesc='An image 

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

2022-03-05 Thread Antonio Rojas via arch-commits
Date: Saturday, March 5, 2022 @ 15:07:27
  Author: arojas
Revision: 438982

Update to 7.1.0.27

Modified:
  imagemagick/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-05 14:00:36 UTC (rev 438981)
+++ PKGBUILD2022-03-05 15:07:27 UTC (rev 438982)
@@ -3,7 +3,7 @@
 
 pkgbase=imagemagick
 pkgname=(imagemagick imagemagick-doc)
-pkgver=7.1.0.26
+pkgver=7.1.0.27
 pkgrel=1
 pkgdesc='An image viewing/manipulation program'
 url='https://www.imagemagick.org/'
@@ -16,7 +16,7 @@
 _tarname=ImageMagick-${pkgver%.*}-${pkgver##*.}
 
source=(https://download.imagemagick.org/ImageMagick/download/releases/$_tarname.tar.xz{,.asc}
 arch-fonts.diff)
-sha256sums=('5eb5e48b5785f2e8042563019694f70f09c33e81672a0570375ca0d56e07e752'
+sha256sums=('df00f208a3733cc99e0685df839c2e9c60f207d132d5cab3a0b98a946e829b1a'
 'SKIP'
 'a85b744c61b1b563743ecb7c7adad999d7ed9a8af816650e3ab9321b2b102e73')
 validpgpkeys=(D8272EF51DA223E4D05B466989AB63D48277377A)  # Lexie Parsimoniae



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

2022-03-05 Thread Ike Devolder via arch-commits
Date: Saturday, March 5, 2022 @ 14:51:54
  Author: idevolder
Revision: 1142215

archrelease: copy trunk to community-x86_64

Added:
  copyq/repos/community-x86_64/PKGBUILD
(from rev 1142214, copyq/trunk/PKGBUILD)
Deleted:
  copyq/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-03-05 14:51:50 UTC (rev 1142214)
+++ PKGBUILD2022-03-05 14:51:54 UTC (rev 1142215)
@@ -1,26 +0,0 @@
-# Maintainer: BlackIkeEagle < ike DOT devolder AT gmail DOT com >
-# Contributor: Maxim Baz <$pkgname at maximbaz dot com>
-# Contributor: Batou 
-# Contributor: Karol "Kenji Takahashi" Woźniak 
-
-pkgname=copyq
-pkgver=6.0.1
-pkgrel=2
-pkgdesc="Clipboard manager with searchable and editable history"
-url="https://github.com/hluk/${pkgname};
-depends=('hicolor-icon-theme' 'qt5-svg' 'qt5-wayland' 'knotifications')
-makedepends=('extra-cmake-modules' 'qt5-tools')
-license=('GPL3')
-arch=('x86_64')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
-sha256sums=('8d0b0fa840993fa100e888a5a1098e2769e3c234cd44236d75039e5c6e517645')
-
-build() {
-cmake -B build -S CopyQ-$pkgver \
-  -DCMAKE_INSTALL_PREFIX=/usr
-cmake --build build
-}
-
-package() {
-DESTDIR="${pkgdir}" cmake --install build
-}

Copied: copyq/repos/community-x86_64/PKGBUILD (from rev 1142214, 
copyq/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-03-05 14:51:54 UTC (rev 1142215)
@@ -0,0 +1,26 @@
+# Maintainer: BlackIkeEagle < ike DOT devolder AT gmail DOT com >
+# Contributor: Maxim Baz <$pkgname at maximbaz dot com>
+# Contributor: Batou 
+# Contributor: Karol "Kenji Takahashi" Woźniak 
+
+pkgname=copyq
+pkgver=6.1.0
+pkgrel=1
+pkgdesc="Clipboard manager with searchable and editable history"
+url="https://github.com/hluk/${pkgname};
+depends=('hicolor-icon-theme' 'qt5-svg' 'qt5-wayland' 'knotifications')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+license=('GPL3')
+arch=('x86_64')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
+sha256sums=('d235b31224264e7fa463020f1a934143aa287a4d9cb9bbb6883563ad66e84099')
+
+build() {
+cmake -B build -S CopyQ-$pkgver \
+  -DCMAKE_INSTALL_PREFIX=/usr
+cmake --build build
+}
+
+package() {
+DESTDIR="${pkgdir}" cmake --install build
+}



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

2022-03-05 Thread Ike Devolder via arch-commits
Date: Saturday, March 5, 2022 @ 14:51:50
  Author: idevolder
Revision: 1142214

upgpkg: copyq 6.1.0-1

Modified:
  copyq/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-05 14:33:49 UTC (rev 1142213)
+++ PKGBUILD2022-03-05 14:51:50 UTC (rev 1142214)
@@ -4,8 +4,8 @@
 # Contributor: Karol "Kenji Takahashi" Woźniak 
 
 pkgname=copyq
-pkgver=6.0.1
-pkgrel=2
+pkgver=6.1.0
+pkgrel=1
 pkgdesc="Clipboard manager with searchable and editable history"
 url="https://github.com/hluk/${pkgname};
 depends=('hicolor-icon-theme' 'qt5-svg' 'qt5-wayland' 'knotifications')
@@ -13,7 +13,7 @@
 license=('GPL3')
 arch=('x86_64')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
-sha256sums=('8d0b0fa840993fa100e888a5a1098e2769e3c234cd44236d75039e5c6e517645')
+sha256sums=('d235b31224264e7fa463020f1a934143aa287a4d9cb9bbb6883563ad66e84099')
 
 build() {
 cmake -B build -S CopyQ-$pkgver \



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

2022-03-05 Thread Morten Linderud via arch-commits
Date: Saturday, March 5, 2022 @ 14:33:49
  Author: foxboron
Revision: 1142213

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-03-05 14:33:43 UTC (rev 1142212)
+++ PKGBUILD2022-03-05 14:33:49 UTC (rev 1142213)
@@ -1,45 +0,0 @@
-# Maintainer: Morten Linderud 
-
-pkgname=python-adblock
-pkgver=0.5.1
-pkgrel=1
-pkgdesc="Brave's adblock library in Python"
-arch=("x86_64")
-url="https://github.com/ArniDagur/python-adblock;
-license=("MIT")
-depends=()
-makedepends=("python-setuptools" "python-dephell" "rust" "maturin")
-checkdepends=("python-pytest")
-source=("$pkgname-$pkgver.tar.gz::https://github.com/ArniDagur/${pkgname}/archive/${pkgver}.tar.gz;)
-sha256sums=('d24ef42c8532cab2970d1c3af116ee4d0fa595e23fbeabb3ba0f5dfa0a67eae1')
-
-build() {
-cd $pkgname-$pkgver
-maturin build --release --strip
-cargo build --release --locked --all-features --target-dir=target
-}
-
-check() {
-  local python_version=$(python -c 'import sys; print(".".join(map(str, 
sys.version_info[:2])))')
-  cd "$pkgname-$pkgver"
-  mkdir -vp testdir
-  export PIP_CONFIG_FILE=/dev/null
-  pip install --isolated \
-  --root="testdir" \
-  --ignore-installed \
-  --no-deps target/wheels/*.whl
-  export 
PYTHONPATH="testdir/usr/lib/python${python_version}/site-packages:${PYTHONPATH}"
-  pytest -v -k 'not test_version_numbers_all_same'
-}
-
-package() {
-cd $pkgname-$pkgver
-install -Dm755 target/release/libadblock.so -t "$pkgdir/usr/lib"
-export PIP_CONFIG_FILE='/dev/null'
-pip install --isolated \
-  --root="$pkgdir" \
-  --ignore-installed \
-  --no-deps target/wheels/*.whl
-install -Dm0644 LICENSE-MIT 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE-MIT"
-}
-

Copied: python-adblock/repos/community-x86_64/PKGBUILD (from rev 1142212, 
python-adblock/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-03-05 14:33:49 UTC (rev 1142213)
@@ -0,0 +1,46 @@
+# Maintainer: Morten Linderud 
+
+pkgname=python-adblock
+pkgver=0.5.2
+pkgrel=1
+pkgdesc="Brave's adblock library in Python"
+arch=("x86_64")
+url="https://github.com/ArniDagur/python-adblock;
+license=("MIT")
+depends=()
+makedepends=("python-setuptools" "python-dephell" "rust" "maturin")
+checkdepends=("python-pytest")
+options=('strip' 'debug')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/ArniDagur/${pkgname}/archive/refs/tags/${pkgver}.tar.gz;)
+sha256sums=('ac2fc8646e544c1354e5863a39fe749e3e89c27b4c3d71354b65f45e00ffc421')
+
+build() {
+cd $pkgname-$pkgver
+maturin build --release --strip
+cargo build --release --locked --all-features --target-dir=target
+}
+
+check() {
+  local python_version=$(python -c 'import sys; print(".".join(map(str, 
sys.version_info[:2])))')
+  cd "$pkgname-$pkgver"
+  mkdir -vp testdir
+  export PIP_CONFIG_FILE=/dev/null
+  pip install --isolated \
+  --root="testdir" \
+  --ignore-installed \
+  --no-deps target/wheels/*.whl
+  export 
PYTHONPATH="testdir/usr/lib/python${python_version}/site-packages:${PYTHONPATH}"
+  pytest -v -k 'not test_version_numbers_all_same'
+}
+
+package() {
+cd $pkgname-$pkgver
+install -Dm755 target/release/libadblock.so -t "$pkgdir/usr/lib"
+export PIP_CONFIG_FILE='/dev/null'
+pip install --isolated \
+  --root="$pkgdir" \
+  --ignore-installed \
+  --no-deps target/wheels/*.whl
+install -Dm0644 LICENSE-MIT 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE-MIT"
+}
+



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

2022-03-05 Thread Morten Linderud via arch-commits
Date: Saturday, March 5, 2022 @ 14:33:43
  Author: foxboron
Revision: 1142212

upgpkg: python-adblock 0.5.2-1: upgpkg: python-adblock 0.5.2-1

Modified:
  python-adblock/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-05 14:08:47 UTC (rev 1142211)
+++ PKGBUILD2022-03-05 14:33:43 UTC (rev 1142212)
@@ -1,7 +1,7 @@
 # Maintainer: Morten Linderud 
 
 pkgname=python-adblock
-pkgver=0.5.1
+pkgver=0.5.2
 pkgrel=1
 pkgdesc="Brave's adblock library in Python"
 arch=("x86_64")
@@ -10,8 +10,9 @@
 depends=()
 makedepends=("python-setuptools" "python-dephell" "rust" "maturin")
 checkdepends=("python-pytest")
-source=("$pkgname-$pkgver.tar.gz::https://github.com/ArniDagur/${pkgname}/archive/${pkgver}.tar.gz;)
-sha256sums=('d24ef42c8532cab2970d1c3af116ee4d0fa595e23fbeabb3ba0f5dfa0a67eae1')
+options=('strip' 'debug')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/ArniDagur/${pkgname}/archive/refs/tags/${pkgver}.tar.gz;)
+sha256sums=('ac2fc8646e544c1354e5863a39fe749e3e89c27b4c3d71354b65f45e00ffc421')
 
 build() {
 cd $pkgname-$pkgver



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

2022-03-05 Thread Morten Linderud via arch-commits
Date: Saturday, March 5, 2022 @ 14:08:47
  Author: foxboron
Revision: 1142211

archrelease: copy trunk to community-x86_64

Added:
  docker-compose/repos/community-x86_64/PKGBUILD
(from rev 1142210, docker-compose/trunk/PKGBUILD)
Deleted:
  docker-compose/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-03-05 14:08:41 UTC (rev 1142210)
+++ PKGBUILD2022-03-05 14:08:47 UTC (rev 1142211)
@@ -1,41 +0,0 @@
-# Maintainer: Andrew Crerar 
-# Maintainer: Morten Linderud 
-# Contributor: Felix Yan 
-# Contributor: Iwan Timmer 
-# Contributor: Vincent Demeester 
-# Contributor: Josh VanderLinden 
-
-pkgname=docker-compose
-pkgver=2.2.3
-pkgrel=2
-pkgdesc="Fast, isolated development environments using Docker"
-arch=('x86_64')
-url="https://www.docker.com/;
-license=("Apache")
-makedepends=('go')
-checkdepends=('docker')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/docker/compose/archive/v$pkgver.tar.gz;)
-sha512sums=('7ef35247655276ec40b061d92df5dc90eb3ff40aefee09b087f01bc2d3311a36ed0bc91db00607f5b9dcb4883999f2041901d16b87a913e4b6aab081d2d73007')
-
-build() {
-  cd "compose-$pkgver"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-ldflags=-X=github.com/docker/compose/v2/internal.Version=${pkgver} 
-mod=readonly -modcacherw"
-  CGO_ENABLED=0 go build -trimpath -tags "e2e,kube" -o compose ./cmd
-}
-
-check(){
-  cd "compose-$pkgver"
-  CGO_ENABLED=0 go test -tags "e2e,kube" -v $(go list -tags "e2e,kube" ./... | 
grep -vE 'e2e')
-}
-
-package() {
-  cd "compose-$pkgver"
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-  install -Dm755 compose "$pkgdir"/usr/lib/docker/cli-plugins/docker-compose
-  install -d "$pkgdir/usr/bin"
-  ln -sf /usr/lib/docker/cli-plugins/docker-compose 
"$pkgdir/usr/bin/docker-compose"
-}

Copied: docker-compose/repos/community-x86_64/PKGBUILD (from rev 1142210, 
docker-compose/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-03-05 14:08:47 UTC (rev 1142211)
@@ -0,0 +1,41 @@
+# Maintainer: Andrew Crerar 
+# Maintainer: Morten Linderud 
+# Contributor: Felix Yan 
+# Contributor: Iwan Timmer 
+# Contributor: Vincent Demeester 
+# Contributor: Josh VanderLinden 
+
+pkgname=docker-compose
+pkgver=2.3.0
+pkgrel=1
+pkgdesc="Fast, isolated development environments using Docker"
+arch=('x86_64')
+url="https://www.docker.com/;
+license=("Apache")
+makedepends=('go')
+checkdepends=('docker')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/docker/compose/archive/v$pkgver.tar.gz;)
+sha512sums=('07824915e8ec1d3153f6a208687a1944007e9ff743fcba6be9007f27b143dcd39807b33f132674c36f32a8993defc389290fa241aafdab44d6061596ca398b51')
+
+build() {
+  cd "compose-$pkgver"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-ldflags=-X=github.com/docker/compose/v2/internal.Version=${pkgver} 
-mod=readonly -modcacherw"
+  CGO_ENABLED=0 go build -trimpath -tags "e2e,kube" -o compose ./cmd
+}
+
+check(){
+  cd "compose-$pkgver"
+  CGO_ENABLED=0 go test -tags "e2e,kube" -v $(go list -tags "e2e,kube" ./... | 
grep -vE 'e2e')
+}
+
+package() {
+  cd "compose-$pkgver"
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  install -Dm755 compose "$pkgdir"/usr/lib/docker/cli-plugins/docker-compose
+  install -d "$pkgdir/usr/bin"
+  ln -sf /usr/lib/docker/cli-plugins/docker-compose 
"$pkgdir/usr/bin/docker-compose"
+}



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

2022-03-05 Thread Morten Linderud via arch-commits
Date: Saturday, March 5, 2022 @ 14:08:41
  Author: foxboron
Revision: 1142210

upgpkg: docker-compose 2.3.0-1: upgpkg: docker-compose 2.3.0-1

Modified:
  docker-compose/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-05 14:02:11 UTC (rev 1142209)
+++ PKGBUILD2022-03-05 14:08:41 UTC (rev 1142210)
@@ -6,8 +6,8 @@
 # Contributor: Josh VanderLinden 
 
 pkgname=docker-compose
-pkgver=2.2.3
-pkgrel=2
+pkgver=2.3.0
+pkgrel=1
 pkgdesc="Fast, isolated development environments using Docker"
 arch=('x86_64')
 url="https://www.docker.com/;
@@ -15,7 +15,7 @@
 makedepends=('go')
 checkdepends=('docker')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/docker/compose/archive/v$pkgver.tar.gz;)
-sha512sums=('7ef35247655276ec40b061d92df5dc90eb3ff40aefee09b087f01bc2d3311a36ed0bc91db00607f5b9dcb4883999f2041901d16b87a913e4b6aab081d2d73007')
+sha512sums=('07824915e8ec1d3153f6a208687a1944007e9ff743fcba6be9007f27b143dcd39807b33f132674c36f32a8993defc389290fa241aafdab44d6061596ca398b51')
 
 build() {
   cd "compose-$pkgver"



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

2022-03-05 Thread Morten Linderud via arch-commits
Date: Saturday, March 5, 2022 @ 14:02:11
  Author: foxboron
Revision: 1142209

archrelease: copy trunk to community-x86_64

Added:
  gopls/repos/community-x86_64/PKGBUILD
(from rev 1142208, gopls/trunk/PKGBUILD)
Deleted:
  gopls/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-03-05 14:02:05 UTC (rev 1142208)
+++ PKGBUILD2022-03-05 14:02:11 UTC (rev 1142209)
@@ -1,33 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: Chad Kunde 
-
-pkgname=gopls
-pkgver=0.7.5
-pkgrel=1
-pkgdesc='Language server for Go programming language'
-arch=(x86_64 aarch64 armv7h armv7l)
-url='https://github.com/golang/tools/tree/master/gopls'
-license=(BSD)
-depends=(glibc)
-makedepends=('git' 'go')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/golang/tools/archive/gopls/v${pkgver}.tar.gz;)
-sha256sums=('b5f5881dc6b73aed1023634f6f524bde0301bff22d183d97682adcb0ce94c575')
-
-build() {
-  cd "tools-${pkgname}-v${pkgver}/${pkgname}"
-
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-mod=readonly -modcacherw"
-  go build -o "${pkgname}"
-}
-
-package() {
-  cd "tools-${pkgname}-v${pkgver}"
-  install -Dm755 "${pkgname}/${pkgname}" -t "${pkgdir}"/usr/bin/
-  install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}/"
-}
-
-# vim: ts=2 sw=2 et:

Copied: gopls/repos/community-x86_64/PKGBUILD (from rev 1142208, 
gopls/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-03-05 14:02:11 UTC (rev 1142209)
@@ -0,0 +1,33 @@
+# Maintainer: Morten Linderud 
+# Contributor: Chad Kunde 
+
+pkgname=gopls
+pkgver=0.8.0
+pkgrel=1
+pkgdesc='Language server for Go programming language'
+arch=(x86_64 aarch64 armv7h armv7l)
+url='https://github.com/golang/tools/tree/master/gopls'
+license=(BSD)
+depends=(glibc)
+makedepends=('git' 'go')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/golang/tools/archive/gopls/v${pkgver}.tar.gz;)
+sha256sums=('ea3bbf20965a414908fa060d1496036a6070e57cce92b1371cb2c692d896b286')
+
+build() {
+  cd "tools-${pkgname}-v${pkgver}/${pkgname}"
+
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-mod=readonly -modcacherw"
+  go build -o "${pkgname}"
+}
+
+package() {
+  cd "tools-${pkgname}-v${pkgver}"
+  install -Dm755 "${pkgname}/${pkgname}" -t "${pkgdir}"/usr/bin/
+  install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}/"
+}
+
+# vim: ts=2 sw=2 et:



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

2022-03-05 Thread Morten Linderud via arch-commits
Date: Saturday, March 5, 2022 @ 14:02:05
  Author: foxboron
Revision: 1142208

upgpkg: gopls 0.8.0-1: upgpkg: gopls 0.8.0-1

Modified:
  gopls/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-05 13:58:56 UTC (rev 1142207)
+++ PKGBUILD2022-03-05 14:02:05 UTC (rev 1142208)
@@ -2,7 +2,7 @@
 # Contributor: Chad Kunde 
 
 pkgname=gopls
-pkgver=0.7.5
+pkgver=0.8.0
 pkgrel=1
 pkgdesc='Language server for Go programming language'
 arch=(x86_64 aarch64 armv7h armv7l)
@@ -11,7 +11,7 @@
 depends=(glibc)
 makedepends=('git' 'go')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/golang/tools/archive/gopls/v${pkgver}.tar.gz;)
-sha256sums=('b5f5881dc6b73aed1023634f6f524bde0301bff22d183d97682adcb0ce94c575')
+sha256sums=('ea3bbf20965a414908fa060d1496036a6070e57cce92b1371cb2c692d896b286')
 
 build() {
   cd "tools-${pkgname}-v${pkgver}/${pkgname}"



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

2022-03-05 Thread Jan Steffens via arch-commits
Date: Saturday, March 5, 2022 @ 14:00:36
  Author: heftig
Revision: 438981

archrelease: copy trunk to extra-any

Added:
  firefox-i18n/repos/extra-any/PKGBUILD
(from rev 438980, firefox-i18n/trunk/PKGBUILD)
Deleted:
  firefox-i18n/repos/extra-any/PKGBUILD

--+
 PKGBUILD |  468 ++---
 1 file changed, 234 insertions(+), 234 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-03-05 14:00:22 UTC (rev 438980)
+++ PKGBUILD2022-03-05 14:00:36 UTC (rev 438981)
@@ -1,234 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Thomas Baechler 
-# Contributor: Jaroslaw Swierczynski 
-# Contributor: Michal Hybner 
-# Contributor: Andrea Scarpino 
-
-pkgbase=firefox-i18n
-pkgver=97.0.1
-pkgrel=1
-pkgdesc="Language pack for Firefox"
-arch=(any)
-license=(MPL GPL LGPL)
-url="https://www.mozilla.org/firefox/;
-
-_languages=(
-  'ach"Acholi"'
-  'af "Afrikaans"'
-  'an "Aragonese"'
-  'ar "Arabic"'
-  'ast"Asturian"'
-  'az "Azerbaijani"'
-  'be "Belarusian"'
-  'bg "Bulgarian"'
-  'bn "Bengali"'
-  'br "Breton"'
-  'bs "Bosnian"'
-  'ca-valencia "Catalan (Valencian)"'
-  'ca "Catalan"'
-  'cak"Maya Kaqchikel"'
-  'cs "Czech"'
-  'cy "Welsh"'
-  'da "Danish"'
-  'de "German"'
-  'dsb"Lower Sorbian"'
-  'el "Greek"'
-  'en-CA  "English (Canadian)"'
-  'en-GB  "English (British)"'
-  'en-US  "English (US)"'
-  'eo "Esperanto"'
-  'es-AR  "Spanish (Argentina)"'
-  'es-CL  "Spanish (Chile)"'
-  'es-ES  "Spanish (Spain)"'
-  'es-MX  "Spanish (Mexico)"'
-  'et "Estonian"'
-  'eu "Basque"'
-  'fa "Persian"'
-  'ff "Fulah"'
-  'fi "Finnish"'
-  'fr "French"'
-  'fy-NL  "Frisian"'
-  'ga-IE  "Irish"'
-  'gd "Gaelic (Scotland)"'
-  'gl "Galician"'
-  'gn "Guarani"'
-  'gu-IN  "Gujarati (India)"'
-  'he "Hebrew"'
-  'hi-IN  "Hindi (India)"'
-  'hr "Croatian"'
-  'hsb"Upper Sorbian"'
-  'hu "Hungarian"'
-  'hy-AM  "Armenian"'
-  'ia "Interlingua"'
-  'id "Indonesian"'
-  'is "Icelandic"'
-  'it "Italian"'
-  'ja "Japanese"'
-  'ka "Georgian"'
-  'kab"Kabyle"'
-  'kk "Kazakh"'
-  'km "Khmer"'
-  'kn "Kannada"'
-  'ko "Korean"'
-  'lij"Ligurian"'
-  'lt "Lithuanian"'
-  'lv "Latvian"'
-  'mk "Macedonian"'
-  'mr "Marathi"'
-  'ms "Malay"'
-  'my "Burmese"'
-  'nb-NO  "Norwegian (Bokmål)"'
-  'ne-NP  "Nepali"'
-  'nl "Dutch"'
-  'nn-NO  "Norwegian (Nynorsk)"'
-  'oc "Occitan"'
-  'pa-IN  "Punjabi (India)"'
-  'pl "Polish"'
-  'pt-BR  "Portuguese (Brazilian)"'
-  'pt-PT  "Portuguese (Portugal)"'
-  'rm "Romansh"'
-  'ro "Romanian"'
-  'ru "Russian"'
-  'si "Sinhala"'
-  'sk "Slovak"'
-  'sl "Slovenian"'
-  'son"Songhai"'
-  'sq "Albanian"'
-  'sr "Serbian"'
-  'sv-SE  "Swedish"'
-  'ta "Tamil"'
-  'te "Telugu"'
-  'th "Thai"'
-  'tl "Tagalog"'
-  'tr "Turkish"'
-  'trs"Chicahuaxtla Triqui"'
-  'uk "Ukrainian"'
-  'ur "Urdu"'
-  'uz "Uzbek"'
-  'vi "Vietnamese"'
-  'xh "Xhosa"'
-  'zh-CN  "Chinese (Simplified)"'
-  'zh-TW  "Chinese (Traditional)"'
-)
-
-pkgname=()
-source=()
-_url=https://ftp.mozilla.org/pub/firefox/releases/$pkgver/linux-x86_64/xpi
-
-for _lang in "${_languages[@]}"; do
-  _locale=${_lang%% *}
-  _pkgname=firefox-i18n-${_locale,,}
-
-  pkgname+=($_pkgname)
-  source+=("firefox-i18n-$pkgver-$_locale.xpi::$_url/$_locale.xpi")
-  eval "package_$_pkgname() {
-_package $_lang
-  }"
-done
-
-# Don't extract anything
-noextract=(${source[@]%%::*})
-
-_package() {
-  pkgdesc="$2 language pack for Firefox"
-  depends=("firefox>=$pkgver")
-  install -Dm644 firefox-i18n-$pkgver-$1.xpi \
-
"$pkgdir/usr/lib/firefox/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi"
-}
-
-sha256sums=('05490e464505b4ad1bb17bc21b74894a42f46d42b5a18037fc2c94483f218f6a'
-'da7741d0409efaefc2f19ec157b4190ad6f30de11b5d845b7e030c47fffe170d'
-'af9521af902ae7fb2dc281e4dfb2220dbdfdda7d54f8992c9a52c0b37d301e2a'
-'c206d13874059949e26efab51519b59c3d88849c6ad9aaeb7a34c0f506fd6ed5'
-'b816ac357a91747ed3f79bef9c4eebf981cb13338e45b830867e9a5aeb65c173'
-'499191ca0fa87160541126292edb1757bd9b391a78375d4f1dc9e353b4c42245'
-'59915518dfd7de82b0f7405898ec0afebe50c431ffbe1c23217eb83061ae0291'
-'b33d7b09d85e05521a85bd4cbdee77d8c086e4c0b58a6db5e3371e81dd99311a'
-'da3cdbb0d16b8d836245f1e8eef37d389e1beeda55b61b05f170bdd046a2431c'
-'400aa283102e0d2b638997497eab8dcc1c70b09653a60b6dfc27c3ba4b3e1bb0'
-'c4ada2a1f0a171e9c624c263e3fbd715160ecd3071e3d033da2218fd08e0f364'
-'f9783e82340373c7d3cdd6f5668574ba5cf598fb35491a6eb8c68701b535741d'
-

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

2022-03-05 Thread Jan Steffens via arch-commits
Date: Saturday, March 5, 2022 @ 13:59:50
  Author: heftig
Revision: 438979

97.0.2-1

Modified:
  firefox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-05 13:45:51 UTC (rev 438978)
+++ PKGBUILD2022-03-05 13:59:50 UTC (rev 438979)
@@ -3,7 +3,7 @@
 # Contributor: Jakub Schmidtke 
 
 pkgname=firefox
-pkgver=97.0.1
+pkgver=97.0.2
 pkgrel=1
 pkgdesc="Standalone web browser from mozilla.org"
 arch=(x86_64)
@@ -24,7 +24,7 @@
 
source=(https://archive.mozilla.org/pub/firefox/releases/$pkgver/source/firefox-$pkgver.source.tar.xz{,.asc}
 0001-Use-remoting-name-for-GDK-application-names.patch
 $pkgname.desktop identity-icons-brand.svg)
-sha256sums=('3f2c87cf28645130777e875ddc9c67e8994c8d5c859f425f3ddced6fecb78d45'
+sha256sums=('c9f127741beabde78b021dc95b1740259d01677d461400682cb30e072126f075'
 'SKIP'
 '8de6c0ecc70d2763936be6df4b91a3d2e806765bf510f987d6f2ffa2377c3f01'
 '298eae9de76ec53182f38d5c549d0379569916eebf62149f9d7f4a7edef36abf'



[arch-commits] Commit in qt5-quickcontrols-nemo/repos/community-x86_64 (2 files)

2022-03-05 Thread Felix Yan via arch-commits
Date: Saturday, March 5, 2022 @ 13:58:56
  Author: felixonmars
Revision: 1142207

archrelease: copy trunk to community-x86_64

Added:
  qt5-quickcontrols-nemo/repos/community-x86_64/PKGBUILD
(from rev 1142206, qt5-quickcontrols-nemo/trunk/PKGBUILD)
Deleted:
  qt5-quickcontrols-nemo/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-03-05 13:58:45 UTC (rev 1142206)
+++ PKGBUILD2022-03-05 13:58:56 UTC (rev 1142207)
@@ -1,23 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=qt5-quickcontrols-nemo
-pkgver=5.6.5
-pkgrel=1
-pkgdesc="QML components for Nemomobile, based on QtQuickControls"
-arch=('x86_64')
-url="https://github.com/nemomobile-ux/qtquickcontrols-nemo;
-license=('LGPL' 'Apache')
-depends=('libglacierapp' 'qt5-graphicaleffects' 'qt5-quickcontrols' 
'qt5-virtualkeyboard')
-source=("https://github.com/nemomobile-ux/qtquickcontrols-nemo/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('70e09f576549025ad881ae271aae501520df6017ba0d9aeb36430887c9df96ff01f0656c82e60e8fc73aaf2f20d8c1b82c6f297f595f4d20b36b8d709d1c455a')
-
-build() {
-  cd qtquickcontrols-nemo-$pkgver
-  qmake-qt5
-  make
-}
-
-package() {
-  cd qtquickcontrols-nemo-$pkgver
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: qt5-quickcontrols-nemo/repos/community-x86_64/PKGBUILD (from rev 
1142206, qt5-quickcontrols-nemo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-03-05 13:58:56 UTC (rev 1142207)
@@ -0,0 +1,24 @@
+# Maintainer: Felix Yan 
+
+pkgname=qt5-quickcontrols-nemo
+pkgver=5.6.5
+pkgrel=2
+pkgdesc="QML components for Nemomobile, based on QtQuickControls"
+arch=('x86_64')
+url="https://github.com/nemomobile-ux/qtquickcontrols-nemo;
+license=('LGPL' 'Apache')
+depends=('libglacierapp' 'nemo-qml-plugin-configuration' 
'nemo-qml-plugin-notifications'
+ 'nemo-theme-glacier' 'qt5-graphicaleffects' 'qt5-quickcontrols' 
'qt5-virtualkeyboard')
+source=("https://github.com/nemomobile-ux/qtquickcontrols-nemo/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('70e09f576549025ad881ae271aae501520df6017ba0d9aeb36430887c9df96ff01f0656c82e60e8fc73aaf2f20d8c1b82c6f297f595f4d20b36b8d709d1c455a')
+
+build() {
+  cd qtquickcontrols-nemo-$pkgver
+  qmake-qt5
+  make
+}
+
+package() {
+  cd qtquickcontrols-nemo-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+}



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

2022-03-05 Thread Felix Yan via arch-commits
Date: Saturday, March 5, 2022 @ 13:58:45
  Author: felixonmars
Revision: 1142206

upgpkg: qt5-quickcontrols-nemo 5.6.5-2

Modified:
  qt5-quickcontrols-nemo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-05 13:45:46 UTC (rev 1142205)
+++ PKGBUILD2022-03-05 13:58:45 UTC (rev 1142206)
@@ -2,12 +2,13 @@
 
 pkgname=qt5-quickcontrols-nemo
 pkgver=5.6.5
-pkgrel=1
+pkgrel=2
 pkgdesc="QML components for Nemomobile, based on QtQuickControls"
 arch=('x86_64')
 url="https://github.com/nemomobile-ux/qtquickcontrols-nemo;
 license=('LGPL' 'Apache')
-depends=('libglacierapp' 'qt5-graphicaleffects' 'qt5-quickcontrols' 
'qt5-virtualkeyboard')
+depends=('libglacierapp' 'nemo-qml-plugin-configuration' 
'nemo-qml-plugin-notifications'
+ 'nemo-theme-glacier' 'qt5-graphicaleffects' 'qt5-quickcontrols' 
'qt5-virtualkeyboard')
 
source=("https://github.com/nemomobile-ux/qtquickcontrols-nemo/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
 
sha512sums=('70e09f576549025ad881ae271aae501520df6017ba0d9aeb36430887c9df96ff01f0656c82e60e8fc73aaf2f20d8c1b82c6f297f595f4d20b36b8d709d1c455a')
 



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

2022-03-05 Thread David Runge via arch-commits
Date: Saturday, March 5, 2022 @ 13:45:51
  Author: dvzrv
Revision: 438978

archrelease: copy trunk to extra-x86_64

Added:
  ostree/repos/extra-x86_64/PKGBUILD
(from rev 438977, ostree/trunk/PKGBUILD)
Deleted:
  ostree/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |  154 +
 1 file changed, 75 insertions(+), 79 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-03-05 13:45:42 UTC (rev 438977)
+++ PKGBUILD2022-03-05 13:45:51 UTC (rev 438978)
@@ -1,79 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: Jan Alexander Steffens (heftig) 
-# Contributor: Mirco Tischler 
-
-_name=libostree
-pkgname=ostree
-pkgver=2022.1
-_commit='6c903ab0b66e0542685108e837a23a9e29845949'  # 2022.1^{}
-pkgrel=1
-pkgdesc="Operating system and container binary deployment and upgrades"
-arch=(x86_64)
-url="https://ostree.readthedocs.org/en/latest/;
-license=(GPL2)
-depends=(fuse2 glibc libgpg-error libsodium util-linux openssl xz zlib)
-makedepends=(avahi e2fsprogs git glib2 gobject-introspection gpgme gtk-doc
-libarchive libsoup libxslt mkinitcpio python systemd)
-checkdepends=(cpio elfutils gjs parallel python-yaml syslinux)
-provides=(libostree-1.so)
-source=("git+https://github.com/ostreedev/ostree#commit=${_commit};
-"git+https://github.com/mendsley/bsdiff;
-"git+https://gitlab.gnome.org/GNOME/libglnx.git;)
-sha512sums=('SKIP'
-'SKIP'
-'SKIP')
-b2sums=('SKIP'
-'SKIP'
-'SKIP')
-# upstream ticket about chain of trust:
-# https://github.com/ostreedev/ostree/issues/2349
-validpgpkeys=('1CEC7A9DF7DA85ABEF843DC0A866D7CCAE087291') # Colin Walters 

-
-prepare() {
-  cd "$pkgname"
-
-  git submodule init
-  git config --local submodule.bsdiff.url "$srcdir/bsdiff"
-  git config --local submodule.libglnx.url "$srcdir/libglnx"
-  git submodule update
-
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd "$pkgname"
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---sbindir=/usr/bin \
---libexecdir=/usr/lib \
---with-builtin-grub2-mkconfig \
---with-ed25519-libsodium \
---with-dracut \
---with-mkinitcpio \
---with-openssl \
---enable-experimental-api \
---disable-static \
---enable-gtk-doc
-
-  # circumvent overlinking
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-check() {
-  cd "$pkgname"
-  make check -k || echo "Known to fail: 
https://github.com/ostreedev/ostree/issues/2313;
-}
-
-package() {
-  depends+=(libarchive.so libavahi-client.so libavahi-common.so
-  libavahi-glib.so libgio-2.0.so libglib-2.0.so libgobject-2.0.so libgpgme.so
-  libsoup-2.4.so libsystemd.so)
-
-  cd "$pkgname"
-  make DESTDIR="$pkgdir" install
-}

Copied: ostree/repos/extra-x86_64/PKGBUILD (from rev 438977, 
ostree/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-03-05 13:45:51 UTC (rev 438978)
@@ -0,0 +1,75 @@
+# Maintainer: David Runge 
+# Contributor: Jan Alexander Steffens (heftig) 
+# Contributor: Mirco Tischler 
+
+_name=libostree
+pkgname=ostree
+pkgver=2022.2
+_commit=fbc6d21c2f71099fbab44cbdd74222b91f61c667  # tags/v2022.2^{}
+pkgrel=1
+pkgdesc="Operating system and container binary deployment and upgrades"
+url="https://ostreedev.github.io/ostree/;
+arch=(x86_64)
+license=(GPL)
+depends=(fuse2 glibc libgpg-error libsodium util-linux openssl xz zlib)
+makedepends=(avahi e2fsprogs git glib2 gobject-introspection gpgme gtk-doc
+ libarchive libsoup libxslt mkinitcpio python systemd)
+checkdepends=(cpio elfutils gjs parallel python-yaml syslinux)
+source=("git+https://github.com/ostreedev/ostree#commit=${_commit};
+"git+https://github.com/mendsley/bsdiff;
+"git+https://gitlab.gnome.org/GNOME/libglnx.git;)
+b2sums=('SKIP'
+'SKIP'
+'SKIP')
+
+# upstream ticket about chain of trust:
+# https://github.com/ostreedev/ostree/issues/2349
+validpgpkeys=('1CEC7A9DF7DA85ABEF843DC0A866D7CCAE087291') # Colin Walters 

+
+prepare() {
+  cd $pkgname
+
+  git submodule init
+  git submodule set-url bsdiff "$srcdir/bsdiff"
+  git submodule set-url libglnx "$srcdir/libglnx"
+  git submodule update
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--sbindir=/usr/bin \
+--libexecdir=/usr/lib \
+--with-builtin-grub2-mkconfig \
+--with-ed25519-libsodium \
+--with-dracut \
+--with-mkinitcpio \
+--with-openssl \
+--enable-experimental-api \
+--disable-static \
+--enable-gtk-doc
+
+  # circumvent overlinking
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  make check -k -C $pkgname || echo "Known to fail: 

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

2022-03-05 Thread David Runge via arch-commits
Date: Saturday, March 5, 2022 @ 13:45:42
  Author: dvzrv
Revision: 438977

upgpkg: ostree 2022.2-1: Upgrade to 2022.2.

Remove unneeded quotes and curly braces.

Modified:
  ostree/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-05 13:39:10 UTC (rev 438976)
+++ PKGBUILD2022-03-05 13:45:42 UTC (rev 438977)
@@ -4,8 +4,8 @@
 
 _name=libostree
 pkgname=ostree
-pkgver=2022.1
-_commit=6c903ab0b66e0542685108e837a23a9e29845949  # tags/v2022.1^0
+pkgver=2022.2
+_commit=fbc6d21c2f71099fbab44cbdd74222b91f61c667  # tags/v2022.2^{}
 pkgrel=1
 pkgdesc="Operating system and container binary deployment and upgrades"
 url="https://ostreedev.github.io/ostree/;
@@ -27,7 +27,7 @@
 validpgpkeys=('1CEC7A9DF7DA85ABEF843DC0A866D7CCAE087291') # Colin Walters 

 
 prepare() {
-  cd "$pkgname"
+  cd $pkgname
 
   git submodule init
   git submodule set-url bsdiff "$srcdir/bsdiff"
@@ -38,7 +38,7 @@
 }
 
 build() {
-  cd "$pkgname"
+  cd $pkgname
 
   ./configure \
 --prefix=/usr \
@@ -62,8 +62,7 @@
 }
 
 check() {
-  cd "$pkgname"
-  make check -k || echo "Known to fail: 
https://github.com/ostreedev/ostree/issues/2313;
+  make check -k -C $pkgname || echo "Known to fail: 
https://github.com/ostreedev/ostree/issues/2313;
 }
 
 package() {
@@ -72,6 +71,5 @@
 libgpgme.so libsoup-2.4.so libsystemd.so)
   provides+=(libostree-1.so)
 
-  cd "$pkgname"
-  make DESTDIR="$pkgdir" install
+  make DESTDIR="$pkgdir" install -C $pkgname
 }



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

2022-03-05 Thread Morten Linderud via arch-commits
Date: Saturday, March 5, 2022 @ 13:45:39
  Author: foxboron
Revision: 1142204

upgpkg: go 2:1.17.8-1: upgpkg: go 2:1.17.8-1

Modified:
  go/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-05 13:34:14 UTC (rev 1142203)
+++ PKGBUILD2022-03-05 13:45:39 UTC (rev 1142204)
@@ -14,7 +14,7 @@
 
 pkgname=go
 epoch=2
-pkgver=1.17.7
+pkgver=1.17.8
 pkgrel=1
 pkgdesc='Core compiler tools for the Go programming language'
 arch=(x86_64)
@@ -26,7 +26,7 @@
 options=(!strip staticlibs)
 source=(https://storage.googleapis.com/golang/go$pkgver.src.tar.gz{,.asc})
 validpgpkeys=('EB4C1BFD4F042F6DDDCCEC917721F63BD38B4796')
-sha256sums=('c108cd33b73b1911a02b697741df3dea43e01a5c4e08e409e8b3a0e3745d2b4d'
+sha256sums=('2effcd898140da79a061f3784ca4f8d8b13d811fb2abe9dad2404442dabbdf7a'
 'SKIP')
 
 build() {



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

2022-03-05 Thread David Runge via arch-commits
Date: Saturday, March 5, 2022 @ 13:39:10
  Author: dvzrv
Revision: 438976

archrelease: copy trunk to extra-x86_64

Added:
  mtools/repos/extra-x86_64/PKGBUILD
(from rev 438975, mtools/trunk/PKGBUILD)
Deleted:
  mtools/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-03-05 13:39:01 UTC (rev 438975)
+++ PKGBUILD2022-03-05 13:39:10 UTC (rev 438976)
@@ -1,45 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: Giovanni Scafora 
-# Contributor: Tom Newsom 
-
-pkgname=mtools
-pkgver=4.0.37
-pkgrel=1
-epoch=1
-pkgdesc="A collection of utilities to access MS-DOS disks"
-arch=(x86_64)
-url="https://www.gnu.org/software/mtools/;
-license=(GPL3)
-depends=(bash glibc)
-makedepends=(libx11 texinfo)
-optdepends=('libx11: required by floppyd'
-'libxau: required by floppyd')
-backup=("etc/${pkgname}.conf")
-source=("https://ftp.gnu.org/gnu/mtools/${pkgname}-${pkgver}.tar.bz2"{,.sig})
-sha512sums=('5ff4da9050dd5d5c0929dd9977866086085bd8fef577f3c6ce2ed6fb958eec2304db612c0766e6be1a048819e29f62023cb0f0a9464a84ed7cc21de9561fadce'
-'SKIP')
-b2sums=('a84ff9e532a1896706589dfe7e62b1e400baf0ab9b86cc3d4a09bd4a0a24d1e86f504b9005c98765f62d735d227d0a1d5ab78354c587c88e2d42a4146d127dc1'
-'SKIP')
-validpgpkeys=('51A23D9D7C4DF41AA48FA893E99CF5537790B839') # Alain KNAFF 

-
-prepare() {
-  cd "${pkgname}-${pkgver}"
-  # comment entry in default config
-  sed -e '/^SAMPLE FILE$/s:^:# :' -i mtools.conf
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  ./configure --prefix=/usr \
-  --mandir=/usr/share/man \
-  --infodir=/usr/share/info \
-  --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -vDm 644 mtools.conf -t "${pkgdir}/etc/"
-  install -vDm 644 {README,NEWS} -t "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: mtools/repos/extra-x86_64/PKGBUILD (from rev 438975, 
mtools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-03-05 13:39:10 UTC (rev 438976)
@@ -0,0 +1,47 @@
+# Maintainer: David Runge 
+# Contributor: Giovanni Scafora 
+# Contributor: Tom Newsom 
+
+pkgname=mtools
+pkgver=4.0.38
+pkgrel=1
+epoch=1
+pkgdesc="A collection of utilities to access MS-DOS disks"
+arch=(x86_64)
+url="https://www.gnu.org/software/mtools/;
+license=(GPL3)
+depends=(bash glibc)
+makedepends=(libx11 texinfo)
+optdepends=(
+  'libx11: required by floppyd'
+  'libxau: required by floppyd'
+)
+backup=(etc/$pkgname.conf)
+source=(https://ftp.gnu.org/gnu/mtools/$pkgname-$pkgver.tar.bz2{,.sig})
+sha512sums=('045e7dba159699c53abefd69e2065c116e2e360e7ec537df1e4d38309fb03587c600bb930363ecffef48cef1c8c118146691cf9a35c36abbb40e4546e532ce4a'
+'SKIP')
+b2sums=('4d486b9bcbf31c9056ed6460d3d7ccb160f2d3d68e2b9a87590821251513a299ab321df825821722c41e13f608250eecad52e828c901ab956e471cd56871a50c'
+'SKIP')
+validpgpkeys=('51A23D9D7C4DF41AA48FA893E99CF5537790B839') # Alain KNAFF 

+
+prepare() {
+  cd $pkgname-$pkgver
+  # comment entry in default config
+  sed -e '/^SAMPLE FILE$/s:^:# :' -i mtools.conf
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr \
+  --mandir=/usr/share/man \
+  --infodir=/usr/share/info \
+  --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -vDm 644 mtools.conf -t "$pkgdir/etc/"
+  install -vDm 644 {README,NEWS} -t "$pkgdir/usr/share/doc/$pkgname"
+}



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

2022-03-05 Thread David Runge via arch-commits
Date: Saturday, March 5, 2022 @ 13:39:01
  Author: dvzrv
Revision: 438975

upgpkg: mtools 1:4.0.38-1: Upgrade to 4.0.38.

Remove Unneeded quotes and curly braces.

Modified:
  mtools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-05 13:34:41 UTC (rev 438974)
+++ PKGBUILD2022-03-05 13:39:01 UTC (rev 438975)
@@ -3,7 +3,7 @@
 # Contributor: Tom Newsom 
 
 pkgname=mtools
-pkgver=4.0.37
+pkgver=4.0.38
 pkgrel=1
 epoch=1
 pkgdesc="A collection of utilities to access MS-DOS disks"
@@ -12,24 +12,26 @@
 license=(GPL3)
 depends=(bash glibc)
 makedepends=(libx11 texinfo)
-optdepends=('libx11: required by floppyd'
-'libxau: required by floppyd')
-backup=("etc/${pkgname}.conf")
-source=("https://ftp.gnu.org/gnu/mtools/${pkgname}-${pkgver}.tar.bz2"{,.sig})
-sha512sums=('5ff4da9050dd5d5c0929dd9977866086085bd8fef577f3c6ce2ed6fb958eec2304db612c0766e6be1a048819e29f62023cb0f0a9464a84ed7cc21de9561fadce'
+optdepends=(
+  'libx11: required by floppyd'
+  'libxau: required by floppyd'
+)
+backup=(etc/$pkgname.conf)
+source=(https://ftp.gnu.org/gnu/mtools/$pkgname-$pkgver.tar.bz2{,.sig})
+sha512sums=('045e7dba159699c53abefd69e2065c116e2e360e7ec537df1e4d38309fb03587c600bb930363ecffef48cef1c8c118146691cf9a35c36abbb40e4546e532ce4a'
 'SKIP')
-b2sums=('a84ff9e532a1896706589dfe7e62b1e400baf0ab9b86cc3d4a09bd4a0a24d1e86f504b9005c98765f62d735d227d0a1d5ab78354c587c88e2d42a4146d127dc1'
+b2sums=('4d486b9bcbf31c9056ed6460d3d7ccb160f2d3d68e2b9a87590821251513a299ab321df825821722c41e13f608250eecad52e828c901ab956e471cd56871a50c'
 'SKIP')
 validpgpkeys=('51A23D9D7C4DF41AA48FA893E99CF5537790B839') # Alain KNAFF 

 
 prepare() {
-  cd "${pkgname}-${pkgver}"
+  cd $pkgname-$pkgver
   # comment entry in default config
   sed -e '/^SAMPLE FILE$/s:^:# :' -i mtools.conf
 }
 
 build() {
-  cd "${pkgname}-${pkgver}"
+  cd $pkgname-$pkgver
   ./configure --prefix=/usr \
   --mandir=/usr/share/man \
   --infodir=/usr/share/info \
@@ -38,8 +40,8 @@
 }
 
 package() {
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -vDm 644 mtools.conf -t "${pkgdir}/etc/"
-  install -vDm 644 {README,NEWS} -t "${pkgdir}/usr/share/doc/${pkgname}"
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -vDm 644 mtools.conf -t "$pkgdir/etc/"
+  install -vDm 644 {README,NEWS} -t "$pkgdir/usr/share/doc/$pkgname"
 }



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

2022-03-05 Thread Jan Steffens via arch-commits
Date: Saturday, March 5, 2022 @ 13:34:41
  Author: heftig
Revision: 438974

97.0.2-1

Modified:
  firefox-i18n/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-05 13:34:12 UTC (rev 438973)
+++ PKGBUILD2022-03-05 13:34:41 UTC (rev 438974)
@@ -5,7 +5,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgbase=firefox-i18n
-pkgver=97.0.1
+pkgver=97.0.2
 pkgrel=1
 pkgdesc="Language pack for Firefox"
 arch=(any)
@@ -136,99 +136,99 @@
 
"$pkgdir/usr/lib/firefox/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi"
 }
 
-sha256sums=('05490e464505b4ad1bb17bc21b74894a42f46d42b5a18037fc2c94483f218f6a'
-'da7741d0409efaefc2f19ec157b4190ad6f30de11b5d845b7e030c47fffe170d'
-'af9521af902ae7fb2dc281e4dfb2220dbdfdda7d54f8992c9a52c0b37d301e2a'
-'c206d13874059949e26efab51519b59c3d88849c6ad9aaeb7a34c0f506fd6ed5'
-'b816ac357a91747ed3f79bef9c4eebf981cb13338e45b830867e9a5aeb65c173'
-'499191ca0fa87160541126292edb1757bd9b391a78375d4f1dc9e353b4c42245'
-'59915518dfd7de82b0f7405898ec0afebe50c431ffbe1c23217eb83061ae0291'
-'b33d7b09d85e05521a85bd4cbdee77d8c086e4c0b58a6db5e3371e81dd99311a'
-'da3cdbb0d16b8d836245f1e8eef37d389e1beeda55b61b05f170bdd046a2431c'
-'400aa283102e0d2b638997497eab8dcc1c70b09653a60b6dfc27c3ba4b3e1bb0'
-'c4ada2a1f0a171e9c624c263e3fbd715160ecd3071e3d033da2218fd08e0f364'
-'f9783e82340373c7d3cdd6f5668574ba5cf598fb35491a6eb8c68701b535741d'
-'ff928b25816e97314b6605e00e042d476e59efc716612b8d0ed49e1cc418719d'
-'5f34d1e38ea8f7232291b642321e7ea02cae78d566c920652056b88d72e3be3c'
-'4b0ebee695c1eb5d6702c9fdd48001b659d7029242726afa4acdb5b0a3583c4b'
-'aa09767ffc6f51c00c26cb084e46da039ee0c9446d051394104cc10bb04046b2'
-'f50a6951fd230daea221bc5f610f574cf02e85a9c1be214e2471eedd4e01c213'
-'2b49e92bd5512e75d1e6e6c472ef52628c73181cef862c64abf67ced0952dd10'
-'866fe843e10c43518e3cfd35b6c49c99c94dc2571b54a0177533852ae410c6c7'
-'4826b68cf6b08a0b5c52ab4799843ce44824ada9cd0df9429445bb749bb23c28'
-'f5e84931a5cd777cc9a477c3a2d06e5fd14273c83e6ec4d2f24499a8d2cf9fd3'
-'06fad3f2c29d0d6fddaa3944be01c553aef4abdbafa321f8728ac7cb88ceb105'
-'95f1299701891321b16290da0830448aff2bf6b441fb9844a7f81872ef0d'
-'88f5ea500b592e0a702940c009f4cf09a745a4f2a5d46a7206082dfe65b7a9e8'
-'a7fde6a004c271f5d54ae2e9224264f491af868f5d2276efb133b5cad4a3c771'
-'92cfd9f08837ac0b25e8fc6ccd89bf09c155335feecfb469dcf8a5426cd1b61a'
-'f96bb7e66ec1e68fe4b82bddc05480ab98f9b1815f34949a38613c88bcba88c1'
-'37a01d68883be7edacaea9a51f2c00df7af465a59fba0a6347414566b356d8ff'
-'35558e8d930a9e2b86e244ca1406600765c9691e938eda0bcefd46e4c724bea5'
-'7634df3bb8b3cc7a2c39280eff9f3ade8c124213fa28ea480f4fd5cfb41ab67b'
-'d8eac95fa892f08288ab3cdf43bf1ff29a557caa8a2f8edc36c997b373bbb87b'
-'904b0f39bfce71a728901d166a6fac48a8f0d83f3c36ce31151294669ab82f82'
-'7b91be19e8a25b34903610f0fec7db0ecc5db046e1c43b94c0086d245978812a'
-'91bfaa52cf92dd0b0be3d4d93f6478ff5c5b543b3325868346a3531c9d2ca650'
-'c133c6e8f52b7f17d6f4d1421909b95a8fcc74af3e0052397229ce491abf96a2'
-'b348c68d37e8e7fcf250f5d27d8a9d5666d215a70273f874f287ce9ce3198f64'
-'13bdea8f872bd2366aeff131e0916a6ab98f769c2e8807bb0f065eb0b3a27db5'
-'2edfeae785d497fd98482295eb26acec93c716f0656eec400ecf3d2b726d8c9f'
-'6ac4bdbbee815ea96cbaa22a028c00ed1a5dac51be26702a8301ab8c47dba7c7'
-'8d401304c209f801e0ee4059b44e420c385349f5210ee966053a16fc28880e59'
-'bb3adb27821b5d32aedd900614c104190fb82abcfdcf20538df5ac5b27d3e81d'
-'189b6f5dd2d294e2172583ae0f924c66cd0249e14de19ba52f4466919dddf34c'
-'48b71d93983e33f8a077f49749c854ebbc890d749b5e2d307c9fc300aec5e37f'
-'897d642856de61cf9b528228a1bd2d33be0b6c97d5a0c538a211807722511de9'
-'dff311ec9dcff9e9fa77e815f1281baf9a05e9f480ef85d6af91b3cf20414bed'
-'78a35eeac12c0bca53ad2abe10d40e59313a13d100780908bf85dd752f9f1e05'
-'a5524b2a800ba2ba52ce5730e075239fceaeadf4d1ff1828ae386ece76f11f6d'
-'2ebc793d95a8095b96fcbc8ab6978fe66849c1a4dd4409a51d0c12029a1b39c3'
-'7c32ba89a4cf9cd67beec00f4143303d380f958f56bf37bb12c17cefbd313b88'
-'c8427157200c0b873ec2449132cd40497dab0fe90585d1d6cd9e0ad630695e81'
-'55bd2d5eba4d1e8ada9f039e5889a5b7c5298901787f58804e6ada36efc92229'
-'1cdc24d4a164fe095a705a3f0bd04a46543683bff40fad44c5c3e74b82d33d08'
-'f4bb25b5944bf11f59d270b0b2b560da184b17e5984a626ce34fd6456048ff14'
-

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

2022-03-05 Thread Jan Steffens via arch-commits
Date: Saturday, March 5, 2022 @ 13:05:35
  Author: heftig
Revision: 438972

archrelease: copy trunk to extra-x86_64

Added:
  gtk3/repos/extra-x86_64/PKGBUILD
(from rev 438971, gtk3/trunk/PKGBUILD)
  gtk3/repos/extra-x86_64/gtk-query-immodules-3.0.hook
(from rev 438971, gtk3/trunk/gtk-query-immodules-3.0.hook)
  gtk3/repos/extra-x86_64/gtk3.install
(from rev 438971, gtk3/trunk/gtk3.install)
Deleted:
  gtk3/repos/extra-x86_64/PKGBUILD
  gtk3/repos/extra-x86_64/gtk-query-immodules-3.0.hook
  gtk3/repos/extra-x86_64/gtk3.install

--+
 PKGBUILD |  208 -
 gtk-query-immodules-3.0.hook |   22 ++--
 gtk3.install |6 -
 3 files changed, 118 insertions(+), 118 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-03-05 13:05:25 UTC (rev 438971)
+++ PKGBUILD2022-03-05 13:05:35 UTC (rev 438972)
@@ -1,104 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Ionut Biru 
-
-pkgbase=gtk3
-pkgname=(gtk3 gtk3-docs gtk3-demos)
-pkgver=3.24.32
-pkgrel=1
-epoch=1
-pkgdesc="GObject-based multi-platform GUI toolkit"
-arch=(x86_64)
-url="https://www.gtk.org/;
-depends=(atk cairo libxcursor libxinerama libxrandr libxi libepoxy gdk-pixbuf2
- dconf libxcomposite libxdamage pango shared-mime-info at-spi2-atk
- wayland libxkbcommon adwaita-icon-theme json-glib librsvg
- desktop-file-utils mesa cantarell-fonts libcolord rest libcups
- fribidi iso-codes libcloudproviders tracker3 gtk-update-icon-cache)
-makedepends=(gobject-introspection gtk-doc git glib2-docs sassc meson
- wayland-protocols)
-license=(LGPL)
-_commit=30f9ce09b10059d8f872dd50b5a950d654f84f88  # tags/3.24.32^0
-source=("git+https://gitlab.gnome.org/GNOME/gtk.git#commit=$_commit;
-gtk-query-immodules-3.0.hook)
-sha256sums=('SKIP'
-'a0319b6795410f06d38de1e8695a9bf9636ff2169f40701671580e60a108e229')
-
-pkgver() {
-  cd gtk
-  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
-}
-
-prepare() {
-  cd gtk
-}
-
-build() {
-  CFLAGS+=" -DG_DISABLE_CAST_CHECKS"
-  local meson_options=(
--D broadway_backend=true
--D cloudproviders=true
--D tracker3=true
--D colord=yes
--D gtk_doc=true
--D man=true
-  )
-
-  arch-meson gtk build "${meson_options[@]}"
-  meson compile -C build
-}
-
-_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_gtk3() {
-  optdepends=('evince: Default print preview command')
-  provides=(gtk3-print-backends libgtk-3.so libgdk-3.so libgailutil-3.so)
-  conflicts=(gtk3-print-backends)
-  replaces=("gtk3-print-backends<=3.22.26-1")
-  install=gtk3.install
-
-  meson install -C build --destdir "$pkgdir"
-
-  install -Dm644 /dev/stdin "$pkgdir/usr/share/gtk-3.0/settings.ini" <
+# Contributor: Ionut Biru 
+
+pkgbase=gtk3
+pkgname=(gtk3 gtk3-docs gtk3-demos)
+pkgver=3.24.33
+pkgrel=1
+epoch=1
+pkgdesc="GObject-based multi-platform GUI toolkit"
+arch=(x86_64)
+url="https://www.gtk.org/;
+depends=(atk cairo libxcursor libxinerama libxrandr libxi libepoxy gdk-pixbuf2
+ dconf libxcomposite libxdamage pango shared-mime-info at-spi2-atk
+ wayland libxkbcommon adwaita-icon-theme json-glib librsvg
+ desktop-file-utils mesa cantarell-fonts libcolord rest libcups
+ fribidi iso-codes libcloudproviders tracker3 gtk-update-icon-cache)
+makedepends=(gobject-introspection gtk-doc git glib2-docs sassc meson
+ wayland-protocols)
+license=(LGPL)
+_commit=8ff9b2f83ff491cbfcbf9b30c706bd917679e7cc  # tags/3.24.33^0
+source=("git+https://gitlab.gnome.org/GNOME/gtk.git#commit=$_commit;
+gtk-query-immodules-3.0.hook)
+sha256sums=('SKIP'
+'a0319b6795410f06d38de1e8695a9bf9636ff2169f40701671580e60a108e229')
+
+pkgver() {
+  cd gtk
+  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+  cd gtk
+}
+
+build() {
+  CFLAGS+=" -DG_DISABLE_CAST_CHECKS"
+  local meson_options=(
+-D broadway_backend=true
+-D cloudproviders=true
+-D tracker3=true
+-D colord=yes
+-D gtk_doc=true
+-D man=true
+  )
+
+  arch-meson gtk build "${meson_options[@]}"
+  meson compile -C build
+}
+
+_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_gtk3() {
+  optdepends=('evince: Default print preview command')
+  provides=(gtk3-print-backends libgtk-3.so libgdk-3.so libgailutil-3.so)
+  conflicts=(gtk3-print-backends)
+  replaces=("gtk3-print-backends<=3.22.26-1")
+  install=gtk3.install
+
+  meson install -C build --destdir "$pkgdir"
+
+  install -Dm644 /dev/stdin "$pkgdir/usr/share/gtk-3.0/settings.ini" 

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

2022-03-05 Thread Jan Steffens via arch-commits
Date: Saturday, March 5, 2022 @ 13:05:25
  Author: heftig
Revision: 438971

3.24.33-1

Modified:
  gtk3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-05 12:57:26 UTC (rev 438970)
+++ PKGBUILD2022-03-05 13:05:25 UTC (rev 438971)
@@ -3,7 +3,7 @@
 
 pkgbase=gtk3
 pkgname=(gtk3 gtk3-docs gtk3-demos)
-pkgver=3.24.32
+pkgver=3.24.33
 pkgrel=1
 epoch=1
 pkgdesc="GObject-based multi-platform GUI toolkit"
@@ -17,7 +17,7 @@
 makedepends=(gobject-introspection gtk-doc git glib2-docs sassc meson
  wayland-protocols)
 license=(LGPL)
-_commit=30f9ce09b10059d8f872dd50b5a950d654f84f88  # tags/3.24.32^0
+_commit=8ff9b2f83ff491cbfcbf9b30c706bd917679e7cc  # tags/3.24.33^0
 source=("git+https://gitlab.gnome.org/GNOME/gtk.git#commit=$_commit;
 gtk-query-immodules-3.0.hook)
 sha256sums=('SKIP'



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

2022-03-05 Thread Jan Steffens via arch-commits
Date: Saturday, March 5, 2022 @ 12:57:26
  Author: heftig
Revision: 438970

archrelease: copy trunk to extra-any

Added:
  gnome-tweaks/repos/extra-any/PKGBUILD
(from rev 438969, gnome-tweaks/trunk/PKGBUILD)
Deleted:
  gnome-tweaks/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-03-05 12:57:18 UTC (rev 438969)
+++ PKGBUILD2022-03-05 12:57:26 UTC (rev 438970)
@@ -1,37 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Ionut Biru 
-
-pkgname=gnome-tweaks
-pkgver=40.0
-pkgrel=2
-pkgdesc="Graphical interface for advanced GNOME 3 settings (Tweak Tool)"
-url="https://wiki.gnome.org/Apps/Tweaks;
-arch=(any)
-license=(GPL)
-depends=(gnome-settings-daemon python-gobject libhandy)
-makedepends=(git meson)
-groups=(gnome-extra)
-provides=("gnome-tweak-tool=$pkgver")
-conflicts=(gnome-tweak-tool)
-replaces=(gnome-tweak-tool)
-_commit=7a16849f498c8a57d525eb9184a8b0163e2ddcbb  # tags/40.0^0
-source=("git+https://gitlab.gnome.org/GNOME/gnome-tweaks.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-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-tweaks/repos/extra-any/PKGBUILD (from rev 438969, 
gnome-tweaks/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-03-05 12:57:26 UTC (rev 438970)
@@ -0,0 +1,37 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
+
+pkgname=gnome-tweaks
+pkgver=40.10
+pkgrel=1
+pkgdesc="Graphical interface for advanced GNOME 3 settings (Tweak Tool)"
+url="https://wiki.gnome.org/Apps/Tweaks;
+arch=(any)
+license=(GPL)
+depends=(gnome-settings-daemon python-gobject libhandy)
+makedepends=(git meson)
+groups=(gnome-extra)
+provides=("gnome-tweak-tool=$pkgver")
+conflicts=(gnome-tweak-tool)
+replaces=(gnome-tweak-tool)
+_commit=e434c2857b3805c7d41229836ef2d24d445409a6  # tags/40.10^0
+source=("git+https://gitlab.gnome.org/GNOME/gnome-tweaks.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
+}
+
+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-tweaks/trunk (PKGBUILD)

2022-03-05 Thread Jan Steffens via arch-commits
Date: Saturday, March 5, 2022 @ 12:57:18
  Author: heftig
Revision: 438969

40.10-1

Modified:
  gnome-tweaks/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-05 12:56:14 UTC (rev 438968)
+++ PKGBUILD2022-03-05 12:57:18 UTC (rev 438969)
@@ -2,8 +2,8 @@
 # Contributor: Ionut Biru 
 
 pkgname=gnome-tweaks
-pkgver=40.0
-pkgrel=2
+pkgver=40.10
+pkgrel=1
 pkgdesc="Graphical interface for advanced GNOME 3 settings (Tweak Tool)"
 url="https://wiki.gnome.org/Apps/Tweaks;
 arch=(any)
@@ -14,13 +14,13 @@
 provides=("gnome-tweak-tool=$pkgver")
 conflicts=(gnome-tweak-tool)
 replaces=(gnome-tweak-tool)
-_commit=7a16849f498c8a57d525eb9184a8b0163e2ddcbb  # tags/40.0^0
+_commit=e434c2857b3805c7d41229836ef2d24d445409a6  # tags/40.10^0
 source=("git+https://gitlab.gnome.org/GNOME/gnome-tweaks.git#commit=$_commit;)
 sha256sums=('SKIP')
 
 pkgver() {
   cd $pkgname
-  git describe --tags | sed 's/-/+/g'
+  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
 }
 
 build() {
@@ -33,5 +33,5 @@
 }
 
 package() {
-  DESTDIR="$pkgdir" meson install -C build
+  meson install -C build --destdir "$pkgdir"
 }



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

2022-03-05 Thread Antonio Rojas via arch-commits
Date: Saturday, March 5, 2022 @ 12:55:52
  Author: arojas
Revision: 438967

Revert, there's no 5.15.3 tag

Modified:
  qt5-mqtt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-05 12:55:27 UTC (rev 438966)
+++ PKGBUILD2022-03-05 12:55:52 UTC (rev 438967)
@@ -4,8 +4,7 @@
 
 pkgname=qt5-mqtt
 _qtver=5.15.2
-_basever=5.15.3
-pkgver=0
+pkgver=${_qtver/-/}
 pkgrel=2
 pkgdesc="Module to implement MQTT protocol v3.1/3.1.1/5.0"
 arch=(x86_64)



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

2022-03-05 Thread Antonio Rojas via arch-commits
Date: Saturday, March 5, 2022 @ 12:49:24
  Author: arojas
Revision: 1142200

archrelease: copy trunk to community-x86_64

Added:
  libsemigroups/repos/community-x86_64/PKGBUILD
(from rev 1142199, libsemigroups/trunk/PKGBUILD)
Deleted:
  libsemigroups/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-03-05 12:49:12 UTC (rev 1142199)
+++ PKGBUILD2022-03-05 12:49:24 UTC (rev 1142200)
@@ -1,27 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=libsemigroups
-pkgver=2.1.3
-pkgrel=1
-pkgdesc='C++ library for semigroups and monoids'
-url='https://libsemigroups.github.io/libsemigroups'
-arch=(x86_64)
-license=(GPL3)
-depends=(fmt)
-makedepends=(eigen)
-source=(https://github.com/libsemigroups/libsemigroups/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('e4ec4b1c650aa5fc85416ac2835105009b018e05655158074bd4fa6787cc9cbe')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr \
-  --enable-fmt \
-  --with-external-fmt \
-  --with-external-eigen
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: libsemigroups/repos/community-x86_64/PKGBUILD (from rev 1142199, 
libsemigroups/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-03-05 12:49:24 UTC (rev 1142200)
@@ -0,0 +1,27 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=libsemigroups
+pkgver=2.1.4
+pkgrel=1
+pkgdesc='C++ library for semigroups and monoids'
+url='https://libsemigroups.github.io/libsemigroups'
+arch=(x86_64)
+license=(GPL3)
+depends=(fmt)
+makedepends=(eigen)
+source=(https://github.com/libsemigroups/libsemigroups/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('721571faf8cca13678ec7350c88468f76086f9942c90820bf390ea0b76120125')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr \
+  --enable-fmt \
+  --with-external-fmt \
+  --with-external-eigen
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}



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

2022-03-05 Thread Antonio Rojas via arch-commits
Date: Saturday, March 5, 2022 @ 12:49:12
  Author: arojas
Revision: 1142199

Update to 2.1.4

Modified:
  libsemigroups/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-05 12:18:27 UTC (rev 1142198)
+++ PKGBUILD2022-03-05 12:49:12 UTC (rev 1142199)
@@ -1,7 +1,7 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=libsemigroups
-pkgver=2.1.3
+pkgver=2.1.4
 pkgrel=1
 pkgdesc='C++ library for semigroups and monoids'
 url='https://libsemigroups.github.io/libsemigroups'
@@ -10,7 +10,7 @@
 depends=(fmt)
 makedepends=(eigen)
 
source=(https://github.com/libsemigroups/libsemigroups/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('e4ec4b1c650aa5fc85416ac2835105009b018e05655158074bd4fa6787cc9cbe')
+sha256sums=('721571faf8cca13678ec7350c88468f76086f9942c90820bf390ea0b76120125')
 
 build() {
   cd $pkgname-$pkgver



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

2022-03-05 Thread Jan Steffens via arch-commits
Date: Saturday, March 5, 2022 @ 12:47:42
  Author: heftig
Revision: 438963

archrelease: copy trunk to staging-x86_64

Added:
  gstreamer/repos/staging-x86_64/
  gstreamer/repos/staging-x86_64/0001-openaptx-Support-libfreeaptx.patch
(from rev 438962, gstreamer/trunk/0001-openaptx-Support-libfreeaptx.patch)
  gstreamer/repos/staging-x86_64/0002-wpe-Clean-up-build-script.patch
(from rev 438962, gstreamer/trunk/0002-wpe-Clean-up-build-script.patch)
  gstreamer/repos/staging-x86_64/PKGBUILD
(from rev 438962, gstreamer/trunk/PKGBUILD)
  gstreamer/repos/staging-x86_64/gstreamer.install
(from rev 438962, gstreamer/trunk/gstreamer.install)

-+
 0001-openaptx-Support-libfreeaptx.patch |   76 +++
 0002-wpe-Clean-up-build-script.patch|   69 ++
 PKGBUILD|  740 ++
 gstreamer.install   |7 
 4 files changed, 892 insertions(+)

Copied: gstreamer/repos/staging-x86_64/0001-openaptx-Support-libfreeaptx.patch 
(from rev 438962, gstreamer/trunk/0001-openaptx-Support-libfreeaptx.patch)
===
--- staging-x86_64/0001-openaptx-Support-libfreeaptx.patch  
(rev 0)
+++ staging-x86_64/0001-openaptx-Support-libfreeaptx.patch  2022-03-05 
12:47:42 UTC (rev 438963)
@@ -0,0 +1,76 @@
+From  Mon Sep 17 00:00:00 2001
+From: "Jan Alexander Steffens (heftig)" 
+Date: Mon, 7 Feb 2022 22:44:30 +0100
+Subject: [PATCH] openaptx: Support libfreeaptx
+
+[libfreeaptx][1] is a fork of libopenapt 0.2.0, used by pipewire.
+
+[1]: https://github.com/iamthehorker/libfreeaptx
+---
+ .../gst-plugins-bad/ext/openaptx/gstopenaptxdec.h |  4 
+ .../gst-plugins-bad/ext/openaptx/gstopenaptxenc.h |  4 
+ .../gst-plugins-bad/ext/openaptx/meson.build  | 15 +--
+ 3 files changed, 21 insertions(+), 2 deletions(-)
+
+diff --git a/subprojects/gst-plugins-bad/ext/openaptx/gstopenaptxdec.h 
b/subprojects/gst-plugins-bad/ext/openaptx/gstopenaptxdec.h
+index 95b126c57ecb..081b194fb542 100644
+--- a/subprojects/gst-plugins-bad/ext/openaptx/gstopenaptxdec.h
 b/subprojects/gst-plugins-bad/ext/openaptx/gstopenaptxdec.h
+@@ -24,7 +24,11 @@
+ #include 
+ #include 
+ 
++#ifdef USE_FREEAPTX
++#include 
++#else
+ #include 
++#endif
+ 
+ G_BEGIN_DECLS
+ 
+diff --git a/subprojects/gst-plugins-bad/ext/openaptx/gstopenaptxenc.h 
b/subprojects/gst-plugins-bad/ext/openaptx/gstopenaptxenc.h
+index ab80b61b7c94..4cf7e17b93af 100644
+--- a/subprojects/gst-plugins-bad/ext/openaptx/gstopenaptxenc.h
 b/subprojects/gst-plugins-bad/ext/openaptx/gstopenaptxenc.h
+@@ -24,7 +24,11 @@
+ #include 
+ #include 
+ 
++#ifdef USE_FREEAPTX
++#include 
++#else
+ #include 
++#endif
+ 
+ G_BEGIN_DECLS
+ 
+diff --git a/subprojects/gst-plugins-bad/ext/openaptx/meson.build 
b/subprojects/gst-plugins-bad/ext/openaptx/meson.build
+index e361ef3b6c59..4db8fdbb1564 100644
+--- a/subprojects/gst-plugins-bad/ext/openaptx/meson.build
 b/subprojects/gst-plugins-bad/ext/openaptx/meson.build
+@@ -4,12 +4,23 @@ openaptx_sources = [
+   'gstopenaptxenc.c',
+ ]
+ 
+-openaptx_dep = dependency('libopenaptx', version : '== 0.2.0', required : 
get_option('openaptx'))
++if not get_option('openaptx').allowed()
++  subdir_done()
++endif
++
++openaptx_defines = []
++
++openaptx_dep = dependency('libfreeaptx', version : '>= 0.1.1', required : 
false)
++if openaptx_dep.found()
++  openaptx_defines += ['-DUSE_FREEAPTX']
++else
++  openaptx_dep = dependency('libopenaptx', version : '== 0.2.0', required : 
get_option('openaptx'))
++endif
+ 
+ if openaptx_dep.found()
+   gstopenaptx = library('gstopenaptx',
+ openaptx_sources,
+-c_args : gst_plugins_bad_args,
++c_args : gst_plugins_bad_args + openaptx_defines,
+ include_directories : [configinc],
+ dependencies : [gstaudio_dep, openaptx_dep],
+ install : true,

Copied: gstreamer/repos/staging-x86_64/0002-wpe-Clean-up-build-script.patch 
(from rev 438962, gstreamer/trunk/0002-wpe-Clean-up-build-script.patch)
===
--- staging-x86_64/0002-wpe-Clean-up-build-script.patch 
(rev 0)
+++ staging-x86_64/0002-wpe-Clean-up-build-script.patch 2022-03-05 12:47:42 UTC 
(rev 438963)
@@ -0,0 +1,69 @@
+From  Mon Sep 17 00:00:00 2001
+From: "Jan Alexander Steffens (heftig)" 
+Date: Mon, 7 Feb 2022 22:48:29 +0100
+Subject: [PATCH] wpe: Clean up build script
+
+Use feature.require to check for gstgl and exit early if 'wpe' is
+disabled (don't even check for wpe-webkit-1.1).
+---
+ .../gst-plugins-bad/ext/wpe/meson.build   | 29 ++-
+ 1 file changed, 16 insertions(+), 13 deletions(-)
+
+diff --git a/subprojects/gst-plugins-bad/ext/wpe/meson.build 
b/subprojects/gst-plugins-bad/ext/wpe/meson.build
+index 7637cb29f318..7d7edcfdf4a9 

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

2022-03-05 Thread Jan Steffens via arch-commits
Date: Saturday, March 5, 2022 @ 12:47:23
  Author: heftig
Revision: 438962

1.20.0-3: shaderc and glslang rebuild

Modified:
  gstreamer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-05 12:47:13 UTC (rev 438961)
+++ PKGBUILD2022-03-05 12:47:23 UTC (rev 438962)
@@ -24,7 +24,7 @@
   gstreamer-docs
 )
 pkgver=1.20.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Multimedia graph framework"
 url="https://gstreamer.freedesktop.org/;
 arch=(x86_64)



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

2022-03-05 Thread Antonio Rojas via arch-commits
Date: Saturday, March 5, 2022 @ 12:47:13
  Author: arojas
Revision: 438961

archrelease: copy trunk to testing-x86_64

Added:
  qt5-base/repos/testing-x86_64/PKGBUILD
(from rev 438960, qt5-base/trunk/PKGBUILD)
  qt5-base/repos/testing-x86_64/qmake-cflags.patch
(from rev 438960, qt5-base/trunk/qmake-cflags.patch)
  qt5-base/repos/testing-x86_64/qmake-config.patch
(from rev 438960, qt5-base/trunk/qmake-config.patch)
Deleted:
  qt5-base/repos/testing-x86_64/PKGBUILD
  qt5-base/repos/testing-x86_64/qmake-cflags.patch
  qt5-base/repos/testing-x86_64/qmake-config.patch

+
 PKGBUILD   |  228 +--
 qmake-cflags.patch |   92 ++--
 qmake-config.patch |   26 ++---
 3 files changed, 173 insertions(+), 173 deletions(-)

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

Copied: qt5-base/repos/testing-x86_64/PKGBUILD (from rev 438960, 
qt5-base/trunk/PKGBUILD)

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

2022-03-05 Thread Antonio Rojas via arch-commits
Date: Saturday, March 5, 2022 @ 12:46:54
  Author: arojas
Revision: 438960

Bump revision

Modified:
  qt5-base/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-05 12:46:01 UTC (rev 438959)
+++ PKGBUILD2022-03-05 12:46:54 UTC (rev 438960)
@@ -4,9 +4,9 @@
 pkgbase=qt5-base
 pkgname=(qt5-base qt5-xcb-private-headers)
 _basever=5.15.3
-pkgver=5.15.3+kde+r120
+pkgver=5.15.3+kde+r132
 pkgrel=1
-_commit=6c11375ecad82026c029d6118ee84cf75e1d833c
+_commit=e6c19422a25890b5e9a728f4acb9166a6a11527e
 arch=('x86_64')
 url='https://www.qt.io'
 license=('GPL3' 'LGPL3' 'FDL' 'custom')



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

2022-03-05 Thread Antonio Rojas via arch-commits
Date: Saturday, March 5, 2022 @ 12:46:01
  Author: arojas
Revision: 438959

archrelease: copy trunk to extra-x86_64

Added:
  unrar/repos/extra-x86_64/PKGBUILD
(from rev 438958, unrar/trunk/PKGBUILD)
Deleted:
  unrar/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-03-05 12:45:35 UTC (rev 438958)
+++ PKGBUILD2022-03-05 12:46:01 UTC (rev 438959)
@@ -1,44 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Giovanni Scafora 
-# Contributor: dorphell 
-
-pkgbase=unrar
-pkgname=(unrar libunrar)
-pkgver=6.1.5
-pkgrel=1
-epoch=1
-arch=(x86_64)
-url='https://www.rarlab.com/rar_add.htm'
-license=(custom)
-source=(https://www.rarlab.com/rar/unrarsrc-$pkgver.tar.gz)
-sha256sums=('4e56717d867cdff7a0008b7f1da6aa79ac7a8f974cf134d49a8c16b577bced4a')
-
-prepare() {
-  sed -e '/CXXFLAGS=/d' -e '/LDFLAGS=/d' -i unrar/makefile # Use system build 
flags
-}
-
-build() {
-  cp -a unrar libunrar
-  export LDFLAGS+=' -pthread'
-  make -C libunrar lib
-  make -C unrar -j1
-}
-
-package_unrar() {
-  pkgdesc='The RAR uncompression program'
-  depends=(gcc-libs)
-  cd unrar
-  install -Dm755 unrar -t "$pkgdir"/usr/bin/
-  # install license
-  install -Dm644 license.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_libunrar() {
-  pkgdesc='Library and header file for applications that use libunrar'
-  depends=(gcc-libs)
-  cd libunrar
-  install -Dm755 libunrar.so -t "$pkgdir"/usr/lib/
-  install -Dm644 dll.hpp -t "$pkgdir"/usr/include/unrar/
-  # install license
-  install -Dm644 license.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: unrar/repos/extra-x86_64/PKGBUILD (from rev 438958, 
unrar/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-03-05 12:46:01 UTC (rev 438959)
@@ -0,0 +1,44 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Giovanni Scafora 
+# Contributor: dorphell 
+
+pkgbase=unrar
+pkgname=(unrar libunrar)
+pkgver=6.1.6
+pkgrel=1
+epoch=1
+arch=(x86_64)
+url='https://www.rarlab.com/rar_add.htm'
+license=(custom)
+source=(https://www.rarlab.com/rar/unrarsrc-$pkgver.tar.gz)
+sha256sums=('67f4ab891c062218c2badfaac9c8cab5c8bfd5e96dabfca56c8faa3d209a801d')
+
+prepare() {
+  sed -e '/CXXFLAGS=/d' -e '/LDFLAGS=/d' -i unrar/makefile # Use system build 
flags
+}
+
+build() {
+  cp -a unrar libunrar
+  export LDFLAGS+=' -pthread'
+  make -C libunrar lib
+  make -C unrar -j1
+}
+
+package_unrar() {
+  pkgdesc='The RAR uncompression program'
+  depends=(gcc-libs)
+  cd unrar
+  install -Dm755 unrar -t "$pkgdir"/usr/bin/
+  # install license
+  install -Dm644 license.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_libunrar() {
+  pkgdesc='Library and header file for applications that use libunrar'
+  depends=(gcc-libs)
+  cd libunrar
+  install -Dm755 libunrar.so -t "$pkgdir"/usr/lib/
+  install -Dm644 dll.hpp -t "$pkgdir"/usr/include/unrar/
+  # install license
+  install -Dm644 license.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}



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

2022-03-05 Thread Antonio Rojas via arch-commits
Date: Saturday, March 5, 2022 @ 12:45:35
  Author: arojas
Revision: 438958

Update to 6.1.6

Modified:
  unrar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-05 12:38:48 UTC (rev 438957)
+++ PKGBUILD2022-03-05 12:45:35 UTC (rev 438958)
@@ -4,7 +4,7 @@
 
 pkgbase=unrar
 pkgname=(unrar libunrar)
-pkgver=6.1.5
+pkgver=6.1.6
 pkgrel=1
 epoch=1
 arch=(x86_64)
@@ -11,7 +11,7 @@
 url='https://www.rarlab.com/rar_add.htm'
 license=(custom)
 source=(https://www.rarlab.com/rar/unrarsrc-$pkgver.tar.gz)
-sha256sums=('4e56717d867cdff7a0008b7f1da6aa79ac7a8f974cf134d49a8c16b577bced4a')
+sha256sums=('67f4ab891c062218c2badfaac9c8cab5c8bfd5e96dabfca56c8faa3d209a801d')
 
 prepare() {
   sed -e '/CXXFLAGS=/d' -e '/LDFLAGS=/d' -i unrar/makefile # Use system build 
flags



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

2022-03-05 Thread Antonio Rojas via arch-commits
Date: Saturday, March 5, 2022 @ 12:38:48
  Author: arojas
Revision: 438957

archrelease: copy trunk to testing-x86_64

Added:
  pyside2/repos/testing-x86_64/
  pyside2/repos/testing-x86_64/PKGBUILD
(from rev 438956, pyside2/trunk/PKGBUILD)
  pyside2/repos/testing-x86_64/python310.patch
(from rev 438956, pyside2/trunk/python310.patch)

-+
 PKGBUILD|   62 ++
 python310.patch |   34 +
 2 files changed, 96 insertions(+)

Copied: pyside2/repos/testing-x86_64/PKGBUILD (from rev 438956, 
pyside2/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2022-03-05 12:38:48 UTC (rev 438957)
@@ -0,0 +1,62 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=pyside2
+_qtver=5.15.3
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(x86_64)
+url='https://www.qt.io'
+license=(LGPL)
+pkgdesc='Enables the use of Qt5 APIs in Python applications'
+depends=(python-shiboken2 qt5-declarative)
+makedepends=(shiboken2 cmake python-setuptools
+ qt5-multimedia qt5-tools qt5-sensors qt5-charts qt5-webengine 
qt5-datavis3d
+ qt5-websockets qt5-speech qt5-3d qt5-svg qt5-script qt5-scxml 
qt5-x11extras
+ qt5-quickcontrols2 qt5-serialport qt5-remoteobjects)
+optdepends=('qt5-svg: QtSvg bindings'
+'qt5-script: QtScript bindings'
+'qt5-speech: QtTextToSpeech bindings'
+'qt5-websockets: QtWebSockets bindings'
+'qt5-webengine: QtWebEngine bindings'
+'qt5-datavis3d: QtDataVisualization bindings'
+'qt5-scxml: QtScxml bindings'
+'qt5-sensors: QtSensors bindings'
+'qt5-3d: Qt3D bindings'
+'qt5-x11extras: QtX11Extras bindings'
+'qt5-charts: QtCharts bindings'
+'qt5-tools: QtHelp bindings'
+'qt5-remoteobjects: QtRemoteObjects bindings'
+'qt5-serialport: QtSerialPort bindings'
+'qt5-quickcontrols2: QtQuickControls2 bindings')
+groups=(qt qt5)
+conflicts=(python-pyside2)
+provides=(python-pyside2 qt5-python-bindings)
+replaces=(python-pyside2)
+_pkgfqn=pyside-setup-opensource-src-$_qtver
+source=(https://download.qt.io/official_releases/QtForPython/pyside2/PySide2-$pkgver-src/${_pkgfqn}.tar.xz
+python310.patch)
+sha256sums=('69481d137d80ed42461cbdb06cee06477f0a8cbe235d61b56472a66ed7982093'
+'4c23df7c69e3c258261b8648ca3ce0eb054282b9da4dd79f707d97772aa4b459')
+
+prepare() {
+  patch -d $_pkgfqn -p1 -i ../python310.patch # Fix build with Python 3.10
+}
+
+build() {
+  cmake -B build -S $_pkgfqn/sources/pyside2 \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DBUILD_TESTS=OFF \
+-DPYTHON_EXECUTABLE=/usr/bin/python
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+
+# Install egg-info
+  cd $_pkgfqn
+  python setup.py egg_info --build-type=pyside2
+  _pythonpath=`python -c "from sysconfig import get_path; 
print(get_path('platlib'))"`
+  cp -r PySide2.egg-info "$pkgdir"/$_pythonpath
+}

Copied: pyside2/repos/testing-x86_64/python310.patch (from rev 438956, 
pyside2/trunk/python310.patch)
===
--- testing-x86_64/python310.patch  (rev 0)
+++ testing-x86_64/python310.patch  2022-03-05 12:38:48 UTC (rev 438957)
@@ -0,0 +1,34 @@
+diff --git a/build_scripts/config.py b/build_scripts/config.py
+index b1b32068d..00cbd3fc9 100644
+--- a/build_scripts/config.py
 b/build_scripts/config.py
+@@ -93,6 +93,7 @@ class Config(object):
+ 'Programming Language :: Python :: 3.7',
+ 'Programming Language :: Python :: 3.8',
+ 'Programming Language :: Python :: 3.9',
++'Programming Language :: Python :: 3.10',
+ ]
+ 
+ self.setup_script_dir = None
+@@ -135,7 +136,7 @@ class Config(object):
+ setup_kwargs['zip_safe'] = False
+ setup_kwargs['cmdclass'] = cmd_class_dict
+ setup_kwargs['version'] = package_version
+-setup_kwargs['python_requires'] = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, 
!=3.3.*, !=3.4.*, <3.10"
++setup_kwargs['python_requires'] = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, 
!=3.3.*, !=3.4.*, <3.11"
+ 
+ if quiet:
+ # Tells distutils / setuptools to be quiet, and only print 
warnings or errors.
+diff --git a/build_scripts/wheel_override.py b/build_scripts/wheel_override.py
+index 66141763b..3f3c12a2e 100644
+--- a/build_scripts/wheel_override.py
 b/build_scripts/wheel_override.py
+@@ -90,7 +90,7 @@ class PysideBuildWheel(_bdist_wheel, DistUtilsCommandMixin):
+ limited_api_enabled = (OPTION["LIMITED_API"] == 'yes'
+and sys.version_info[0] >= 3)
+ if limited_api_enabled:
+-self.py_limited_api = 

[arch-commits] Commit in pyside2/trunk (PKGBUILD python310.patch)

2022-03-05 Thread Antonio Rojas via arch-commits
Date: Saturday, March 5, 2022 @ 12:38:36
  Author: arojas
Revision: 438956

Update to 5.15.3

Added:
  pyside2/trunk/python310.patch
Modified:
  pyside2/trunk/PKGBUILD

-+
 PKGBUILD|   16 +++-
 python310.patch |   34 ++
 2 files changed, 45 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-03-05 12:23:33 UTC (rev 438955)
+++ PKGBUILD2022-03-05 12:38:36 UTC (rev 438956)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=pyside2
-_qtver=5.15.2.1
+_qtver=5.15.3
 pkgver=${_qtver/-/}
 pkgrel=1
 arch=(x86_64)
@@ -34,11 +34,17 @@
 provides=(python-pyside2 qt5-python-bindings)
 replaces=(python-pyside2)
 _pkgfqn=pyside-setup-opensource-src-$_qtver
-source=(https://download.qt.io/official_releases/QtForPython/pyside2/PySide2-$pkgver-src/${_pkgfqn}.tar.gz)
-sha256sums=('91e78e4e3b31ebb0053c2e4f1029703e578615695450c0dd03072248d713b391')
+source=(https://download.qt.io/official_releases/QtForPython/pyside2/PySide2-$pkgver-src/${_pkgfqn}.tar.xz
+python310.patch)
+sha256sums=('69481d137d80ed42461cbdb06cee06477f0a8cbe235d61b56472a66ed7982093'
+'4c23df7c69e3c258261b8648ca3ce0eb054282b9da4dd79f707d97772aa4b459')
 
+prepare() {
+  patch -d $_pkgfqn -p1 -i ../python310.patch # Fix build with Python 3.10
+}
+
 build() {
-  cmake -B build -S ${_pkgfqn%.*}/sources/pyside2 \
+  cmake -B build -S $_pkgfqn/sources/pyside2 \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DBUILD_TESTS=OFF \
 -DPYTHON_EXECUTABLE=/usr/bin/python
@@ -49,7 +55,7 @@
   DESTDIR="$pkgdir" cmake --install build
 
 # Install egg-info
-  cd ${_pkgfqn%.*}
+  cd $_pkgfqn
   python setup.py egg_info --build-type=pyside2
   _pythonpath=`python -c "from sysconfig import get_path; 
print(get_path('platlib'))"`
   cp -r PySide2.egg-info "$pkgdir"/$_pythonpath

Added: python310.patch
===
--- python310.patch (rev 0)
+++ python310.patch 2022-03-05 12:38:36 UTC (rev 438956)
@@ -0,0 +1,34 @@
+diff --git a/build_scripts/config.py b/build_scripts/config.py
+index b1b32068d..00cbd3fc9 100644
+--- a/build_scripts/config.py
 b/build_scripts/config.py
+@@ -93,6 +93,7 @@ class Config(object):
+ 'Programming Language :: Python :: 3.7',
+ 'Programming Language :: Python :: 3.8',
+ 'Programming Language :: Python :: 3.9',
++'Programming Language :: Python :: 3.10',
+ ]
+ 
+ self.setup_script_dir = None
+@@ -135,7 +136,7 @@ class Config(object):
+ setup_kwargs['zip_safe'] = False
+ setup_kwargs['cmdclass'] = cmd_class_dict
+ setup_kwargs['version'] = package_version
+-setup_kwargs['python_requires'] = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, 
!=3.3.*, !=3.4.*, <3.10"
++setup_kwargs['python_requires'] = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, 
!=3.3.*, !=3.4.*, <3.11"
+ 
+ if quiet:
+ # Tells distutils / setuptools to be quiet, and only print 
warnings or errors.
+diff --git a/build_scripts/wheel_override.py b/build_scripts/wheel_override.py
+index 66141763b..3f3c12a2e 100644
+--- a/build_scripts/wheel_override.py
 b/build_scripts/wheel_override.py
+@@ -90,7 +90,7 @@ class PysideBuildWheel(_bdist_wheel, DistUtilsCommandMixin):
+ limited_api_enabled = (OPTION["LIMITED_API"] == 'yes'
+and sys.version_info[0] >= 3)
+ if limited_api_enabled:
+-self.py_limited_api = "cp35.cp36.cp37.cp38.cp39"
++self.py_limited_api = "cp35.cp36.cp37.cp38.cp39.cp310"
+ 
+ self._package_version = get_package_version()
+ 



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

2022-03-05 Thread Antonio Rojas via arch-commits
Date: Saturday, March 5, 2022 @ 12:23:33
  Author: arojas
Revision: 438955

archrelease: copy trunk to testing-x86_64

Added:
  shiboken2/repos/testing-x86_64/
  shiboken2/repos/testing-x86_64/PKGBUILD
(from rev 438954, shiboken2/trunk/PKGBUILD)
  shiboken2/repos/testing-x86_64/python310.patch
(from rev 438954, shiboken2/trunk/python310.patch)

-+
 PKGBUILD|   55 +++
 python310.patch |  260 ++
 2 files changed, 315 insertions(+)

Copied: shiboken2/repos/testing-x86_64/PKGBUILD (from rev 438954, 
shiboken2/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2022-03-05 12:23:33 UTC (rev 438955)
@@ -0,0 +1,55 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgbase=shiboken2
+pkgname=(shiboken2 python-shiboken2)
+_qtver=5.15.3
+_clangver=13.0.1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL2 LGPL)
+pkgdesc='Generates bindings for C++ libraries using CPython source code'
+makedepends=(clang llvm cmake libxslt qt5-xmlpatterns python-sphinx 
python-wheel)
+_pkgfqn=pyside-setup-opensource-src-$_qtver
+source=(https://download.qt.io/official_releases/QtForPython/pyside2/PySide2-$pkgver-src/${_pkgfqn}.tar.xz
+python310.patch)
+sha256sums=('69481d137d80ed42461cbdb06cee06477f0a8cbe235d61b56472a66ed7982093'
+'2b45d0707cfe2c60103d0d2679f21100bc5e9a6069cf9fbb2676eda7c5642c29')
+
+prepare() {
+  patch -d $_pkgfqn -p1 -i ../python310.patch # Fix build with Python 3.10
+}
+
+build() {
+  cmake -B build -S $_pkgfqn/sources/shiboken2 \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DBUILD_TESTS=OFF \
+-DUSE_PYTHON_VERSION=3
+  cmake --build build
+}
+
+package_shiboken2() {
+  depends=(clang=$_clangver llvm libxslt qt5-xmlpatterns)
+
+  DESTDIR="$pkgdir" cmake --install build
+# Provided in python-shiboken2
+  rm -r "$pkgdir"/usr/lib/{python*,libshiboken*}
+# Conflicts with shiboken6 and doesn't work anyway
+  rm "$pkgdir"/usr/bin/shiboken_tool.py
+}
+
+package_python-shiboken2() {
+  depends=(python)
+
+  DESTDIR="$pkgdir" cmake --install build
+# Provided in shiboken2
+  rm -r "$pkgdir"/usr/{bin,include,lib/{cmake,pkgconfig}}
+
+# Install egg-info
+  cd $_pkgfqn
+  python setup.py egg_info --build-type=shiboken2
+  _pythonpath=`python -c "from sysconfig import get_path; 
print(get_path('platlib'))"`
+  cp -r shiboken2.egg-info "$pkgdir"/$_pythonpath
+}

Copied: shiboken2/repos/testing-x86_64/python310.patch (from rev 438954, 
shiboken2/trunk/python310.patch)
===
--- testing-x86_64/python310.patch  (rev 0)
+++ testing-x86_64/python310.patch  2022-03-05 12:23:33 UTC (rev 438955)
@@ -0,0 +1,260 @@
+diff --git a/build_scripts/config.py b/build_scripts/config.py
+index b1b32068d..00cbd3fc9 100644
+--- a/build_scripts/config.py
 b/build_scripts/config.py
+@@ -93,6 +93,7 @@ class Config(object):
+ 'Programming Language :: Python :: 3.7',
+ 'Programming Language :: Python :: 3.8',
+ 'Programming Language :: Python :: 3.9',
++'Programming Language :: Python :: 3.10',
+ ]
+ 
+ self.setup_script_dir = None
+@@ -135,7 +136,7 @@ class Config(object):
+ setup_kwargs['zip_safe'] = False
+ setup_kwargs['cmdclass'] = cmd_class_dict
+ setup_kwargs['version'] = package_version
+-setup_kwargs['python_requires'] = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, 
!=3.3.*, !=3.4.*, <3.10"
++setup_kwargs['python_requires'] = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, 
!=3.3.*, !=3.4.*, <3.11"
+ 
+ if quiet:
+ # Tells distutils / setuptools to be quiet, and only print 
warnings or errors.
+diff --git a/build_scripts/wheel_override.py b/build_scripts/wheel_override.py
+index 66141763b..3f3c12a2e 100644
+--- a/build_scripts/wheel_override.py
 b/build_scripts/wheel_override.py
+@@ -90,7 +90,7 @@ class PysideBuildWheel(_bdist_wheel, DistUtilsCommandMixin):
+ limited_api_enabled = (OPTION["LIMITED_API"] == 'yes'
+and sys.version_info[0] >= 3)
+ if limited_api_enabled:
+-self.py_limited_api = "cp35.cp36.cp37.cp38.cp39"
++self.py_limited_api = "cp35.cp36.cp37.cp38.cp39.cp310"
+ 
+ self._package_version = get_package_version()
+ 
+diff --git a/sources/pyside2/libpyside/feature_select.cpp 
b/sources/pyside2/libpyside/feature_select.cpp
+index 6a21d168d..3da7dde38 100644
+--- a/sources/pyside2/libpyside/feature_select.cpp
 b/sources/pyside2/libpyside/feature_select.cpp
+@@ -405,6 +405,8 @@ static inline PyObject *SelectFeatureSet(PyTypeObject 
*type)
+ if (!SelectFeatureSetSubtype(sub_type, select_id))
+ break;
+ }
++// PYSIDE-1436: Clear 

[arch-commits] Commit in shiboken2/trunk (PKGBUILD python310.patch)

2022-03-05 Thread Antonio Rojas via arch-commits
Date: Saturday, March 5, 2022 @ 12:23:18
  Author: arojas
Revision: 438954

Update to 5.15.3

Modified:
  shiboken2/trunk/PKGBUILD
  shiboken2/trunk/python310.patch

-+
 PKGBUILD|   22 ++--
 python310.patch |  247 ++
 2 files changed, 258 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-03-05 12:10:30 UTC (rev 438953)
+++ PKGBUILD2022-03-05 12:23:18 UTC (rev 438954)
@@ -3,10 +3,10 @@
 
 pkgbase=shiboken2
 pkgname=(shiboken2 python-shiboken2)
-_qtver=5.15.2.1
+_qtver=5.15.3
 _clangver=13.0.1
 pkgver=${_qtver/-/}
-pkgrel=2
+pkgrel=1
 arch=(x86_64)
 url='https://www.qt.io'
 license=(GPL2 LGPL)
@@ -13,13 +13,17 @@
 pkgdesc='Generates bindings for C++ libraries using CPython source code'
 makedepends=(clang llvm cmake libxslt qt5-xmlpatterns python-sphinx 
python-wheel)
 _pkgfqn=pyside-setup-opensource-src-$_qtver
-source=(https://download.qt.io/official_releases/QtForPython/pyside2/PySide2-$pkgver-src/${_pkgfqn}.tar.gz
+source=(https://download.qt.io/official_releases/QtForPython/pyside2/PySide2-$pkgver-src/${_pkgfqn}.tar.xz
 python310.patch)
-sha256sums=('91e78e4e3b31ebb0053c2e4f1029703e578615695450c0dd03072248d713b391'
-'20da52cf2a17da606a2d3aa82eb5ff3ccdb2367b7415289e1e33ac071a73d35b')
+sha256sums=('69481d137d80ed42461cbdb06cee06477f0a8cbe235d61b56472a66ed7982093'
+'2b45d0707cfe2c60103d0d2679f21100bc5e9a6069cf9fbb2676eda7c5642c29')
 
+prepare() {
+  patch -d $_pkgfqn -p1 -i ../python310.patch # Fix build with Python 3.10
+}
+
 build() {
-  cmake -B build -S ${_pkgfqn%.*}/sources/shiboken2 \
+  cmake -B build -S $_pkgfqn/sources/shiboken2 \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DBUILD_TESTS=OFF \
 -DUSE_PYTHON_VERSION=3
@@ -26,10 +30,6 @@
   cmake --build build
 }
 
-prepare() {
-  patch -d ${_pkgfqn%.*} -p1 -i ../python310.patch # Fix build with Python 3.10
-}
-
 package_shiboken2() {
   depends=(clang=$_clangver llvm libxslt qt5-xmlpatterns)
 
@@ -48,7 +48,7 @@
   rm -r "$pkgdir"/usr/{bin,include,lib/{cmake,pkgconfig}}
 
 # Install egg-info
-  cd ${_pkgfqn%.*}
+  cd $_pkgfqn
   python setup.py egg_info --build-type=shiboken2
   _pythonpath=`python -c "from sysconfig import get_path; 
print(get_path('platlib'))"`
   cp -r shiboken2.egg-info "$pkgdir"/$_pythonpath

Modified: python310.patch
===
--- python310.patch 2022-03-05 12:10:30 UTC (rev 438953)
+++ python310.patch 2022-03-05 12:23:18 UTC (rev 438954)
@@ -1,3 +1,250 @@
+diff --git a/build_scripts/config.py b/build_scripts/config.py
+index b1b32068d..00cbd3fc9 100644
+--- a/build_scripts/config.py
 b/build_scripts/config.py
+@@ -93,6 +93,7 @@ class Config(object):
+ 'Programming Language :: Python :: 3.7',
+ 'Programming Language :: Python :: 3.8',
+ 'Programming Language :: Python :: 3.9',
++'Programming Language :: Python :: 3.10',
+ ]
+ 
+ self.setup_script_dir = None
+@@ -135,7 +136,7 @@ class Config(object):
+ setup_kwargs['zip_safe'] = False
+ setup_kwargs['cmdclass'] = cmd_class_dict
+ setup_kwargs['version'] = package_version
+-setup_kwargs['python_requires'] = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, 
!=3.3.*, !=3.4.*, <3.10"
++setup_kwargs['python_requires'] = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, 
!=3.3.*, !=3.4.*, <3.11"
+ 
+ if quiet:
+ # Tells distutils / setuptools to be quiet, and only print 
warnings or errors.
+diff --git a/build_scripts/wheel_override.py b/build_scripts/wheel_override.py
+index 66141763b..3f3c12a2e 100644
+--- a/build_scripts/wheel_override.py
 b/build_scripts/wheel_override.py
+@@ -90,7 +90,7 @@ class PysideBuildWheel(_bdist_wheel, DistUtilsCommandMixin):
+ limited_api_enabled = (OPTION["LIMITED_API"] == 'yes'
+and sys.version_info[0] >= 3)
+ if limited_api_enabled:
+-self.py_limited_api = "cp35.cp36.cp37.cp38.cp39"
++self.py_limited_api = "cp35.cp36.cp37.cp38.cp39.cp310"
+ 
+ self._package_version = get_package_version()
+ 
+diff --git a/sources/pyside2/libpyside/feature_select.cpp 
b/sources/pyside2/libpyside/feature_select.cpp
+index 6a21d168d..3da7dde38 100644
+--- a/sources/pyside2/libpyside/feature_select.cpp
 b/sources/pyside2/libpyside/feature_select.cpp
+@@ -405,6 +405,8 @@ static inline PyObject *SelectFeatureSet(PyTypeObject 
*type)
+ if (!SelectFeatureSetSubtype(sub_type, select_id))
+ break;
+ }
++// PYSIDE-1436: Clear all caches for the type and subtypes.
++PyType_Modified(type);
+ }
+ return type->tp_dict;
+ }
+diff --git a/sources/pyside2/tests/QtWidgets/signature_test.py 
b/sources/pyside2/tests/QtWidgets/signature_test.py
+index 57fcf3874..cacb576d7 100644

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

2022-03-05 Thread Antonio Rojas via arch-commits
Date: Saturday, March 5, 2022 @ 12:18:27
  Author: arojas
Revision: 1142198

archrelease: copy trunk to community-x86_64

Added:
  stellarsolver/repos/community-x86_64/PKGBUILD
(from rev 1142197, stellarsolver/trunk/PKGBUILD)
Deleted:
  stellarsolver/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-03-05 12:18:16 UTC (rev 1142197)
+++ PKGBUILD2022-03-05 12:18:27 UTC (rev 1142198)
@@ -1,30 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=stellarsolver
-pkgver=2.0
-pkgrel=2
-pkgdesc='The cross platform Sextractor and Astrometry.net-Based internal 
astrometric solver'
-arch=(x86_64)
-url='https://github.com/rlancaste/stellarsolver'
-license=(GPL3)
-depends=(qt5-base gsl wcslib)
-makedepends=(cmake)
-source=(https://github.com/rlancaste/stellarsolver/archive/$pkgver/$pkgname-$pkgver.tar.gz
-https://github.com/rlancaste/stellarsolver/commit/01da1add.patch)
-sha256sums=('6d384fffa0d4eced3bad8eec6691d2e05855760334d8a01fac18306427bbc5f0'
-'47c1aba29b7031267427ca5e8551fb8e015fafad79db60046154e978a531ab0e')
-
-prepare() {
-  patch -d $pkgname-$pkgver -p1 < 01da1add.patch # Add missing desktop file
-}
-
-build() {
-  cmake -B build -S $pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DBUILD_TESTER=ON
-  cmake --build build
-}
-
-package() {
-  DESTDIR="$pkgdir" cmake --install build
-}

Copied: stellarsolver/repos/community-x86_64/PKGBUILD (from rev 1142197, 
stellarsolver/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-03-05 12:18:27 UTC (rev 1142198)
@@ -0,0 +1,33 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=stellarsolver
+pkgver=2.0
+pkgrel=3
+pkgdesc='The cross platform Sextractor and Astrometry.net-Based internal 
astrometric solver'
+arch=(x86_64)
+url='https://github.com/rlancaste/stellarsolver'
+license=(GPL3)
+depends=(qt5-base gsl wcslib)
+makedepends=(cmake)
+source=(https://github.com/rlancaste/stellarsolver/archive/$pkgver/$pkgname-$pkgver.tar.gz
+https://github.com/rlancaste/stellarsolver/commit/01da1add.patch
+https://github.com/rlancaste/stellarsolver/commit/16802ac3.patch)
+sha256sums=('6d384fffa0d4eced3bad8eec6691d2e05855760334d8a01fac18306427bbc5f0'
+'47c1aba29b7031267427ca5e8551fb8e015fafad79db60046154e978a531ab0e'
+'9248e078bd7a85905c82b3e4f2fd5b3f8db3781cc6071de2c2e9b5610938a516')
+
+prepare() {
+  patch -d $pkgname-$pkgver -p1 < 01da1add.patch # Add missing desktop file
+  patch -d $pkgname-$pkgver -p1 < 16802ac3.patch # Fix icons path
+}
+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DBUILD_TESTER=ON
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}



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

2022-03-05 Thread Antonio Rojas via arch-commits
Date: Saturday, March 5, 2022 @ 12:18:16
  Author: arojas
Revision: 1142197

Fix icon path

Modified:
  stellarsolver/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-05 12:13:09 UTC (rev 1142196)
+++ PKGBUILD2022-03-05 12:18:16 UTC (rev 1142197)
@@ -2,7 +2,7 @@
 
 pkgname=stellarsolver
 pkgver=2.0
-pkgrel=2
+pkgrel=3
 pkgdesc='The cross platform Sextractor and Astrometry.net-Based internal 
astrometric solver'
 arch=(x86_64)
 url='https://github.com/rlancaste/stellarsolver'
@@ -10,12 +10,15 @@
 depends=(qt5-base gsl wcslib)
 makedepends=(cmake)
 
source=(https://github.com/rlancaste/stellarsolver/archive/$pkgver/$pkgname-$pkgver.tar.gz
-https://github.com/rlancaste/stellarsolver/commit/01da1add.patch)
+https://github.com/rlancaste/stellarsolver/commit/01da1add.patch
+https://github.com/rlancaste/stellarsolver/commit/16802ac3.patch)
 sha256sums=('6d384fffa0d4eced3bad8eec6691d2e05855760334d8a01fac18306427bbc5f0'
-'47c1aba29b7031267427ca5e8551fb8e015fafad79db60046154e978a531ab0e')
+'47c1aba29b7031267427ca5e8551fb8e015fafad79db60046154e978a531ab0e'
+'9248e078bd7a85905c82b3e4f2fd5b3f8db3781cc6071de2c2e9b5610938a516')
 
 prepare() {
   patch -d $pkgname-$pkgver -p1 < 01da1add.patch # Add missing desktop file
+  patch -d $pkgname-$pkgver -p1 < 16802ac3.patch # Fix icons path
 }
 
 build() {



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

2022-03-05 Thread David Runge via arch-commits
Date: Saturday, March 5, 2022 @ 12:13:09
  Author: dvzrv
Revision: 1142196

archrelease: copy trunk to multilib-staging-x86_64

Added:
  lib32-expat/repos/multilib-staging-x86_64/
  lib32-expat/repos/multilib-staging-x86_64/PKGBUILD
(from rev 1142195, lib32-expat/trunk/PKGBUILD)

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

Copied: lib32-expat/repos/multilib-staging-x86_64/PKGBUILD (from rev 1142195, 
lib32-expat/trunk/PKGBUILD)
===
--- multilib-staging-x86_64/PKGBUILD(rev 0)
+++ multilib-staging-x86_64/PKGBUILD2022-03-05 12:13:09 UTC (rev 1142196)
@@ -0,0 +1,49 @@
+# Maintainer: Maxime Gauduin 
+# Maintainer: David Runge 
+# Contributor: Felix Yan 
+
+_name=expat
+pkgname=lib32-expat
+pkgver=2.4.7
+pkgrel=1
+pkgdesc='An XML Parser library'
+arch=(x86_64)
+url=https://libexpat.github.io/
+license=(MIT)
+depends=(
+  "expat=${pkgver}"
+  lib32-glibc
+)
+makedepends=(cmake)
+options=(debug)
+source=("https://github.com/libexpat/libexpat/releases/download/R_${pkgver//./_}/${_name}-${pkgver}.tar.bz2"{,.asc})
+sha512sums=('313bbee4c941d56aa1a0c0d0f4a2c9f9ada8df734bc905fd9d616199ab980b460485870bf3c7fd1605334f782a0c16e9c2960a96cdceb444a7af9b2e3e748515'
+'SKIP')
+b2sums=('4c5d146a36b127cc43edc14f60e905a7f0ada1954d13e1991bea2df1e84a76481b455cddc3960bab8ce39fe07fb3373d9764b76d7bd33204ab8127824816d6b2'
+'SKIP')
+validpgpkeys=(3176EF7DB2367F1FCA4F306B1F9B0E909AF37285) # Sebastian Pipping
+
+build() {
+  export CC='gcc -m32'
+  export CXX='c++ -m32'
+  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib32 \
+-DCMAKE_BUILD_TYPE=None \
+-W no-dev \
+-B build \
+-S "${_name}-$pkgver"
+  make VERBOSE=1 -C build
+}
+
+check() {
+  make VERBOSE=1 -C build test
+}
+
+package() {
+  make VERBOSE=1 DESTDIR="$pkgdir" -C build install
+  install -vDm 644 "${_name}-$pkgver/COPYING" -t 
"${pkgdir}/usr/share/licenses/$pkgname/"
+  rm -rf "${pkgdir}"/usr/{bin,include,share/man,share/doc}
+}
+
+# vim: ts=2 sw=2 et:



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

2022-03-05 Thread David Runge via arch-commits
Date: Saturday, March 5, 2022 @ 12:12:57
  Author: dvzrv
Revision: 1142195

upgpkg: lib32-expat 2.4.7-1: Upgrade to 2.4.7.

Modified:
  lib32-expat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-05 12:06:06 UTC (rev 1142194)
+++ PKGBUILD2022-03-05 12:12:57 UTC (rev 1142195)
@@ -4,7 +4,7 @@
 
 _name=expat
 pkgname=lib32-expat
-pkgver=2.4.6
+pkgver=2.4.7
 pkgrel=1
 pkgdesc='An XML Parser library'
 arch=(x86_64)
@@ -17,9 +17,9 @@
 makedepends=(cmake)
 options=(debug)
 
source=("https://github.com/libexpat/libexpat/releases/download/R_${pkgver//./_}/${_name}-${pkgver}.tar.bz2"{,.asc})
-sha512sums=('87e9e9597867fc73352122b89ea3e1d0dba0d81640b1defd7633bb13108b89e1703b69358021b90f0af29854020ddbc07bf56ea6acc764e5bdecd51ee6050d99'
+sha512sums=('313bbee4c941d56aa1a0c0d0f4a2c9f9ada8df734bc905fd9d616199ab980b460485870bf3c7fd1605334f782a0c16e9c2960a96cdceb444a7af9b2e3e748515'
 'SKIP')
-b2sums=('4f41b019107f1dfc5d1b45fd5844069472e5ad2e5208ef5d7b9e4a9bdb020440d46c5ef1c7cc34fb846fc1f63b37b5ac57b692dfdcb59e52c94383945b0f456d'
+b2sums=('4c5d146a36b127cc43edc14f60e905a7f0ada1954d13e1991bea2df1e84a76481b455cddc3960bab8ce39fe07fb3373d9764b76d7bd33204ab8127824816d6b2'
 'SKIP')
 validpgpkeys=(3176EF7DB2367F1FCA4F306B1F9B0E909AF37285) # Sebastian Pipping
 



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

2022-03-05 Thread David Runge via arch-commits
Date: Saturday, March 5, 2022 @ 12:10:30
  Author: dvzrv
Revision: 438953

archrelease: copy trunk to staging-x86_64

Added:
  expat/repos/staging-x86_64/
  expat/repos/staging-x86_64/PKGBUILD
(from rev 438952, expat/trunk/PKGBUILD)

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

Copied: expat/repos/staging-x86_64/PKGBUILD (from rev 438952, 
expat/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2022-03-05 12:10:30 UTC (rev 438953)
@@ -0,0 +1,41 @@
+# Maintainer: David Runge 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Allan McRae 
+# Contributor: Judd Vinet 
+
+pkgname=expat
+pkgver=2.4.7
+pkgrel=1
+pkgdesc="An XML parser library"
+arch=(x86_64)
+url="https://libexpat.github.io/;
+license=(MIT)
+depends=(glibc)
+makedepends=(cmake)
+provides=(libexpat.so)
+options=(debug)
+source=("https://github.com/libexpat/libexpat/releases/download/R_${pkgver//./_}/${pkgname}-${pkgver}.tar.bz2"{,.asc})
+sha512sums=('313bbee4c941d56aa1a0c0d0f4a2c9f9ada8df734bc905fd9d616199ab980b460485870bf3c7fd1605334f782a0c16e9c2960a96cdceb444a7af9b2e3e748515'
+'SKIP')
+b2sums=('4c5d146a36b127cc43edc14f60e905a7f0ada1954d13e1991bea2df1e84a76481b455cddc3960bab8ce39fe07fb3373d9764b76d7bd33204ab8127824816d6b2'
+'SKIP')
+validpgpkeys=(3176EF7DB2367F1FCA4F306B1F9B0E909AF37285) # Sebastian Pipping
+
+build() {
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=None \
+-W no-dev \
+-B build \
+-S "$pkgname-$pkgver"
+  make VERBOSE=1 -C build
+}
+
+check() {
+  make VERBOSE=1 -C build test
+}
+
+package() {
+  make VERBOSE=1 DESTDIR="$pkgdir" -C build install
+  install -vDm 644 "$pkgname-$pkgver/COPYING" -t 
"${pkgdir}/usr/share/licenses/$pkgname/"
+  install -vDm 644 "$pkgname-$pkgver/"{AUTHORS,Changes,README.md} -t 
"${pkgdir}/usr/share/doc/${pkgname}/"
+}



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

2022-03-05 Thread David Runge via arch-commits
Date: Saturday, March 5, 2022 @ 12:10:15
  Author: dvzrv
Revision: 438952

upgpkg: expat 2.4.7-1: Upgrade to 2.4.7.

Modified:
  expat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-03-05 11:46:49 UTC (rev 438951)
+++ PKGBUILD2022-03-05 12:10:15 UTC (rev 438952)
@@ -4,7 +4,7 @@
 # Contributor: Judd Vinet 
 
 pkgname=expat
-pkgver=2.4.6
+pkgver=2.4.7
 pkgrel=1
 pkgdesc="An XML parser library"
 arch=(x86_64)
@@ -15,9 +15,9 @@
 provides=(libexpat.so)
 options=(debug)
 
source=("https://github.com/libexpat/libexpat/releases/download/R_${pkgver//./_}/${pkgname}-${pkgver}.tar.bz2"{,.asc})
-sha512sums=('87e9e9597867fc73352122b89ea3e1d0dba0d81640b1defd7633bb13108b89e1703b69358021b90f0af29854020ddbc07bf56ea6acc764e5bdecd51ee6050d99'
+sha512sums=('313bbee4c941d56aa1a0c0d0f4a2c9f9ada8df734bc905fd9d616199ab980b460485870bf3c7fd1605334f782a0c16e9c2960a96cdceb444a7af9b2e3e748515'
 'SKIP')
-b2sums=('4f41b019107f1dfc5d1b45fd5844069472e5ad2e5208ef5d7b9e4a9bdb020440d46c5ef1c7cc34fb846fc1f63b37b5ac57b692dfdcb59e52c94383945b0f456d'
+b2sums=('4c5d146a36b127cc43edc14f60e905a7f0ada1954d13e1991bea2df1e84a76481b455cddc3960bab8ce39fe07fb3373d9764b76d7bd33204ab8127824816d6b2'
 'SKIP')
 validpgpkeys=(3176EF7DB2367F1FCA4F306B1F9B0E909AF37285) # Sebastian Pipping
 



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

2022-03-05 Thread Orhun Parmaksiz via arch-commits
Date: Saturday, March 5, 2022 @ 12:06:06
  Author: orhun
Revision: 1142194

archrelease: copy trunk to community-x86_64

Added:
  lfs/repos/community-x86_64/PKGBUILD
(from rev 1142193, lfs/trunk/PKGBUILD)
Deleted:
  lfs/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-03-05 12:05:53 UTC (rev 1142193)
+++ PKGBUILD2022-03-05 12:06:06 UTC (rev 1142194)
@@ -1,32 +0,0 @@
-# Maintainer: Orhun Parmaksız 
-
-pkgname=lfs
-pkgver=2.3.1
-pkgrel=1
-pkgdesc="Get information on your mounted filesystems"
-arch=('x86_64')
-url="https://github.com/Canop/lfs;
-license=('MIT')
-depends=('gcc-libs')
-makedepends=('cargo')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('c7e2dd30e4393c182040e940230609731a2048663115b5b023f59e3c47d6c806cf90d62945cdbc3f26a59a86938ea8083c28f2f453bb4b20b8c764211d620a29')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  cargo build --release --frozen
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  install -Dm 755 "target/release/$pkgname" -t "$pkgdir/usr/bin"
-  install -Dm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
-  install -Dm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
-}
-
-# vim: ts=2 sw=2 et:

Copied: lfs/repos/community-x86_64/PKGBUILD (from rev 1142193, 
lfs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-03-05 12:06:06 UTC (rev 1142194)
@@ -0,0 +1,32 @@
+# Maintainer: Orhun Parmaksız 
+
+pkgname=lfs
+pkgver=2.4.0
+pkgrel=1
+pkgdesc="Get information on your mounted filesystems"
+arch=('x86_64')
+url="https://github.com/Canop/lfs;
+license=('MIT')
+depends=('gcc-libs')
+makedepends=('cargo')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('181d8ae4604a5407ce4365abc6ecf89e74d12aebfff355a9a6fcd3930c5f193f8b4a38be980a2b8104f28fb6f328e27799319812286557f770c86a97bcd21902')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  cargo build --release --frozen
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  install -Dm 755 "target/release/$pkgname" -t "$pkgdir/usr/bin"
+  install -Dm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
+  install -Dm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
+}
+
+# vim: ts=2 sw=2 et:



  1   2   3   >