git: a95dab961496 - main - security/linux-bitwarden-cli: Add a new port

From: Mateusz Piotrowski <0mp_at_FreeBSD.org>
Date: Thu, 07 Oct 2021 11:31:49 UTC
The branch main has been updated by 0mp:

URL: https://cgit.FreeBSD.org/ports/commit/?id=a95dab961496b5a1b771916b4ffddacbb5c0ff80

commit a95dab961496b5a1b771916b4ffddacbb5c0ff80
Author:     Mateusz Piotrowski <0mp@FreeBSD.org>
AuthorDate: 2021-10-07 11:24:53 +0000
Commit:     Mateusz Piotrowski <0mp@FreeBSD.org>
CommitDate: 2021-10-07 11:31:37 +0000

    security/linux-bitwarden-cli: Add a new port
    
    The Bitwarden CLI is a powerful, full-featured command-line interface
    (CLI) tool to access and manage a Bitwarden vault. The CLI is written
    with TypeScript and Node.js and can be run on Windows, macOS, and Linux
    distributions. This port is using the Linux binary thanks to the Linux
    binary compatibility provided by FreeBSD.
    
    WWW: https://github.com/bitwarden/cli
---
 security/Makefile                      |  1 +
 security/linux-bitwarden-cli/Makefile  | 34 ++++++++++++++++++++++++++++++++++
 security/linux-bitwarden-cli/distinfo  |  3 +++
 security/linux-bitwarden-cli/pkg-descr |  7 +++++++
 4 files changed, 45 insertions(+)

diff --git a/security/Makefile b/security/Makefile
index ca6e5b123dbc..dc3776f75379 100644
--- a/security/Makefile
+++ b/security/Makefile
@@ -338,6 +338,7 @@
     SUBDIR += libwhisker
     SUBDIR += libyubikey
     SUBDIR += libzrtpcppcore
+    SUBDIR += linux-bitwarden-cli
     SUBDIR += linux-c7-cyrus-sasl2
     SUBDIR += linux-c7-gnutls
     SUBDIR += linux-c7-libgcrypt
diff --git a/security/linux-bitwarden-cli/Makefile b/security/linux-bitwarden-cli/Makefile
new file mode 100644
index 000000000000..05e2252b843b
--- /dev/null
+++ b/security/linux-bitwarden-cli/Makefile
@@ -0,0 +1,34 @@
+PORTNAME=	bitwarden
+DISTVERSIONPREFIX=	v
+DISTVERSION=	1.18.1
+CATEGORIES=	security linux
+MASTER_SITES=	https://github.com/bitwarden/cli/releases/download/${DISTVERSIONFULL}/
+PKGNAMEPREFIX=	linux-
+PKGNAMESUFFIX=	-cli
+DISTNAME=	bw-linux-${DISTVERSION}
+
+MAINTAINER=	0mp@FreeBSD.org
+COMMENT=	Bitwarden CLI
+
+LICENSE=	GPLv3
+
+USES=		linux zip
+
+# install(1) fails with the following messages when stripping:
+# strip: elf_update() failed: Layout constraint violation
+# strip: elf_update() failed: Layout constraint violation
+STRIP=
+
+NO_WRKSUBDIR=	yes
+PLIST_FILES=	bin/bw
+
+do-build:
+	${BRANDELF} -t Linux ${WRKSRC}/bw
+
+do-install:
+	${INSTALL_PROGRAM} ${WRKSRC}/bw ${STAGEDIR}${PREFIX}/bin/
+
+do-test:
+	${SETENV} ${TEST_ENV} ${STAGEDIR}${PREFIX}/bin/bw help >/dev/null
+
+.include <bsd.port.mk>
diff --git a/security/linux-bitwarden-cli/distinfo b/security/linux-bitwarden-cli/distinfo
new file mode 100644
index 000000000000..fdd330831719
--- /dev/null
+++ b/security/linux-bitwarden-cli/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1633604286
+SHA256 (bw-linux-1.18.1.zip) = e8713b1d0d75f41c5077bbbcb81fbc6536d95cdf919f702fe23a66ecdae979dd
+SIZE (bw-linux-1.18.1.zip) = 21351588
diff --git a/security/linux-bitwarden-cli/pkg-descr b/security/linux-bitwarden-cli/pkg-descr
new file mode 100644
index 000000000000..a1a99882456d
--- /dev/null
+++ b/security/linux-bitwarden-cli/pkg-descr
@@ -0,0 +1,7 @@
+The Bitwarden CLI is a powerful, full-featured command-line interface
+(CLI) tool to access and manage a Bitwarden vault. The CLI is written
+with TypeScript and Node.js and can be run on Windows, macOS, and Linux
+distributions. This port is using the Linux binary thanks to the Linux
+binary compatibility provided by FreeBSD.
+
+WWW: https://github.com/bitwarden/cli