5e21b76903
ChangeLog:
This release includes security improvements, bug fixes for 1Password CLI commands, and introduces enhanced configuration options.
Improvements
The `OP_RUN_NO_MASKING` environment variable is now exposed to allow users to control the masking of the `op run` command output. {4089}
Fixed
For 1Password accounts that are managed by an MSP, 1Password CLI commands involving Service Accounts, Connect, or the Events API no longer occasionally return an error. {4033}
The `op read`, `op run` and `op inject` commands no longer query archived items. {3893}
Security
On Windows, the CLI now checks each signature of the 1Password desktop app before connecting to it. {4136}
44 lines
1.1 KiB
Makefile
44 lines
1.1 KiB
Makefile
PORTNAME= 1password-client2
|
|
DISTVERSION= 2.30.3
|
|
CATEGORIES= security
|
|
MASTER_SITES= https://cache.agilebits.com/dist/1P/op2/pkg/v${DISTVERSION}/
|
|
|
|
MAINTAINER= ler@FreeBSD.org
|
|
COMMENT= 1Password CLI client
|
|
WWW= https://developer.1password.com/docs/cli/upgrade
|
|
|
|
ONLY_FOR_ARCHS= aarch64 amd64 armv6 armv7 i386
|
|
|
|
USES= zip
|
|
|
|
NO_WRKSUBDIR= yes
|
|
NO_BUILD= yes
|
|
|
|
PLIST_FILES= bin/op
|
|
CONFLICTS_INSTALL= security/1password-client security/op security/1password-client2-beta
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/op \
|
|
${STAGEDIR}${PREFIX}/bin
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == amd64
|
|
DISTNAME= op_freebsd_amd64_v${DISTVERSION}
|
|
.elif ${ARCH} == armv6 || ${ARCH} == armv7
|
|
DISTNAME= op_freebsd_arm_v${DISTVERSION}
|
|
.elif ${ARCH} == aarch64
|
|
DISTNAME= op_freebsd_arm64_v${DISTVERSION}
|
|
.elif ${ARCH} == i386
|
|
DISTNAME= op_freebsd_386_v${DISTVERSION}
|
|
.endif
|
|
|
|
.if ${.TARGETS} == "makesum"
|
|
DISTFILES= op_freebsd_386_v${DISTVERSION}${EXTRACT_SUFX} \
|
|
op_freebsd_amd64_v${DISTVERSION}${EXTRACT_SUFX} \
|
|
op_freebsd_arm64_v${DISTVERSION}${EXTRACT_SUFX} \
|
|
op_freebsd_arm_v${DISTVERSION}${EXTRACT_SUFX}
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|