[arch-commits] Commit in libssh/repos (3 files)
Christian Hesse
eworm at gemini.archlinux.org
Fri Aug 26 12:51:52 UTC 2022
Date: Friday, August 26, 2022 @ 12:51:51
Author: eworm
Revision: 454547
archrelease: copy trunk to testing-x86_64
Added:
libssh/repos/testing-x86_64/
libssh/repos/testing-x86_64/PKGBUILD
(from rev 454546, libssh/trunk/PKGBUILD)
libssh/repos/testing-x86_64/keys/
----------+
PKGBUILD | 61 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 61 insertions(+)
Copied: libssh/repos/testing-x86_64/PKGBUILD (from rev 454546, libssh/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2022-08-26 12:51:51 UTC (rev 454547)
@@ -0,0 +1,61 @@
+# Maintainer: Antonio Rojas <arojas at archlinux.org>
+# Contributor: Tom Gundersen <teg at jklm.no>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+# Contributor: ice-man <icemanf at gmail.com>
+# Contributor: sergeantspoon <sergeantspoon at archlinux.us>
+
+pkgbase=libssh
+pkgname=(libssh libssh-docs)
+pkgver=0.10.0
+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')
+source=("https://www.libssh.org/files/${pkgver%.*}/$pkgname-$pkgver.tar.xz"{,.asc})
+sha256sums=('0dc158c534cd838ad0b785a82dec586de40da7e096523ae6c08c9b7bd2af0b57'
+ '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 \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DWITH_GSSAPI=OFF \
+ -DUNIT_TESTING=ON
+ make
+ make docs
+}
+
+check() {
+ cd build
+ make test
+}
+
+package_libssh() {
+ cd build
+ make DESTDIR="$pkgdir" install
+}
+
+package_libssh-docs() {
+ pkgdesc="Documentation for libssh"
+ depends=()
+ provides=()
+
+ mkdir -p "$pkgdir"/usr/share/doc/libssh
+ cp -r build/doc/html "$pkgdir"/usr/share/doc/libssh
+# cp -r build/doc/man "$pkgdir"/usr/share
+# rm "$pkgdir"/usr/share/man/man3/{bug,deprecated}.*
+}
More information about the arch-commits
mailing list