Date: Friday, July 15, 2022 @ 22:01:49
  Author: alex19ep
Revision: 1253008

archrelease: copy trunk to community-testing-any

Added:
  bitwarden-cli/repos/community-testing-any/
  bitwarden-cli/repos/community-testing-any/PKGBUILD
    (from rev 1253007, bitwarden-cli/trunk/PKGBUILD)

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

Copied: bitwarden-cli/repos/community-testing-any/PKGBUILD (from rev 1253007, 
bitwarden-cli/trunk/PKGBUILD)
===================================================================
--- community-testing-any/PKGBUILD                              (rev 0)
+++ community-testing-any/PKGBUILD      2022-07-15 22:01:49 UTC (rev 1253008)
@@ -0,0 +1,52 @@
+# Maintainer: Alexander Epaneshnikov <[email protected]>
+# Contributor: libertylocked <[email protected]>
+
+pkgname=bitwarden-cli
+pkgver=2022.6.2 
+pkgrel=2
+pkgdesc="The command line vault"
+arch=('any')
+url="https://github.com/bitwarden/cli";
+license=('GPL3')
+depends=('nodejs-lts-gallium')
+makedepends=('git' 'npm' 'modclean')
+options=(!emptydirs)
+source=(bitwarden::git+https://github.com/bitwarden/clients.git#tag=cli-v${pkgver})
+sha512sums=('SKIP')
+
+prepare() {
+       cd bitwarden
+
+       export npm_config_build_from_source=true
+       export npm_config_cache="$srcdir/npm_cache"
+
+       npm ci
+}
+
+build() {
+       cd bitwarden/apps/cli
+       export npm_config_cache="$srcdir/npm_cache"
+       npm run dist:lin
+       npm run clean
+       node ./build/bw.js completion --shell zsh > _bw
+}
+
+package() {
+       cd bitwarden/apps/cli
+       npm install --production -g --prefix "$pkgdir"/usr $(npm pack . | tail 
-1)
+
+       # Non-deterministic race in npm gives 777 permissions to random 
directories.
+       # See https://github.com/npm/npm/issues/9359 for details.
+       chmod -R u=rwX,go=rX "$pkgdir"
+       # npm gives ownership of ALL FILES to build user
+       # https://bugs.archlinux.org/task/63396
+       chown -R root:root "${pkgdir}"
+
+       # package zsh completions
+       install -vDm644 _bw -t "${pkgdir}/usr/share/zsh/site-functions"
+
+       # cleanup
+       sed -e "s|${srcdir}|/|" -i 
"$pkgdir"/usr/lib/node_modules/@bitwarden/cli/package.json
+       find "$pkgdir"/usr/lib/node_modules -name 'package.json' -exec sed -e 
"s|${srcdir}||" -i {} \;
+       modclean --path "$pkgdir"/usr/lib -r -a 
"*.ts,.bin,.github,.vscode,bin.js" --ignore='license'
+}

Reply via email to