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

Antonio Rojas arojas at gemini.archlinux.org
Tue Aug 30 15:51:51 UTC 2022


    Date: Tuesday, August 30, 2022 @ 15:51:51
  Author: arojas
Revision: 454775

upgpkg: libssh 0.10.1-1: Update to 0.10.1

Modified:
  libssh/trunk/PKGBUILD

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

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2022-08-30 14:50:49 UTC (rev 454774)
+++ PKGBUILD	2022-08-30 15:51:51 UTC (rev 454775)
@@ -6,51 +6,39 @@
 
 pkgbase=libssh
 pkgname=(libssh libssh-docs)
-pkgver=0.10.0
+pkgver=0.10.1
 pkgrel=1
 pkgdesc='Library for accessing ssh client services through C libraries'
 url='https://www.libssh.org/'
-license=('LGPL')
-arch=('x86_64')
-depends=('zlib' 'openssl')
-makedepends=('cmake' 'cmocka' 'doxygen' 'python' 'openssh')
-provides=('libssh.so')
+license=(LGPL)
+arch=(x86_64)
+depends=(zlib openssl)
+makedepends=(cmake cmocka doxygen python openssh)
+provides=(libssh.so)
 source=("https://www.libssh.org/files/${pkgver%.*}/$pkgname-$pkgver.tar.xz"{,.asc})
-sha256sums=('0dc158c534cd838ad0b785a82dec586de40da7e096523ae6c08c9b7bd2af0b57'
+sha256sums=('da2b3337a0dd1d1e3788376ee471548520cad91a4f3f23ea3f50c5a73a7e69a5'
             'SKIP')
 validpgpkeys=('8DFF53E18F2ABC8D8F3C92237EE0FC4DCC014E3D') # Andreas Schneider <asn at cryptomilk.org>
 
-prepare() {
-  # disable the test. It is confused by our clean container setup.
-  # 'extra-x86-build' uses user 'nobody' that has a record in /etc/passwd file
-  # but $HOME envvar is set to '/build'. The test expects that $HOME corresponds to passwd file.
-  sed 's/cmocka_unit_test(torture_path_expand_tilde_unix),//' -i libssh-${pkgver}/tests/unittests/torture_misc.c
-
-  mkdir -p build
-}
-
 build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
+  cmake -B build -S $pkgname-$pkgver \
     -DCMAKE_INSTALL_PREFIX=/usr \
     -DWITH_GSSAPI=OFF \
     -DUNIT_TESTING=ON
-  make
-  make docs
+  cmake --build build
+  cmake --build build --target docs
 }
 
 check() {
-  cd build
-  make test
+  cmake --build build --target test
 }
 
 package_libssh() {
-  cd build
-  make DESTDIR="$pkgdir" install
+  DESTDIR="$pkgdir" cmake --install build
 }
 
 package_libssh-docs() {
-  pkgdesc="Documentation for libssh"
+  pkgdesc='Documentation for libssh'
   depends=()
   provides=()
 



More information about the arch-commits mailing list