-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9868348
commit 306802e
Showing
4 changed files
with
540 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
DIST doppler-3.69.1-deps.tar.xz 30313360 BLAKE2B 14996e86f6e3ed86d482d60595fc366b48c82a26ad1e3a38945a3cb7643063874149db890b444e878803bf616baeed7c49db409cb50d5be81021f480b2228f74 SHA512 7ab147018a5358fe86dbb1531f3a4080c9c0a00300a1bc08d0b24c05de1fced8e74ba325153aec1cf7c5f7fa16fec20bf92dc78aaff48ae4a9143f131e1b3a1d | ||
DIST doppler-3.69.1.tar.gz 133920 BLAKE2B dabb835408686c176cc793c031faf14fac23a482e7dc2a333c10f055d846bef52da706519cddc613ff6cb046f42d2bf5af757cbc9caa6a1a574a8247ea50cbf3 SHA512 c5347ef1b714f369fa51dce31acbf53fb068a395da9b2335e9c224f83aaa6d2f6a8a603a6e4ba95a37d265ed6b2dd1c7a4a2d4b8dd4f1ccad12c02365508c9bb | ||
DIST doppler-3.69.2-deps.tar.xz 30285468 BLAKE2B cf1f46b5ef34e94f70dfca074c628160c888f1eb97179e98a2f5fd5a3f0a1ec9608fb2b1096e769d5b6c3c304802d555ec69b6ccaa4bbff8b66e0bd153ce5966 SHA512 c254adab89a515f12842d0603d4872b8611b7e0b3b6a2f8b15be0741180414eb8795694ad2648b0940edbcff2c561b5e7dc992ccbe00fe035186e134f3cd0b0d | ||
DIST doppler-3.69.2.tar.gz 133922 BLAKE2B a01d038111d17aefbc90038b7bee08cd334ddb4e387e7bd89dd5f388a48b5c31bf1a79975f6a160567eff7ca79b281f062496e72a698adb71c4f5f4b66be8fdc SHA512 f94aecdbcae698a6b5b746441a2975d00f36cd30b6101f622504fd06f0b145f14fc8a615e38906eae19f25e45a6c15bffc9edbf489b6686b10d62913e19abd55 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Copyright 2020-2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
inherit go-module tmpfiles | ||
|
||
DESCRIPTION="The official CLI for interacting with your Doppler secrets and configuration" | ||
HOMEPAGE="https://gitlab.com/gitlab-org/cli" | ||
SRC_URI="https://github.com/DopplerHQ/cli/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" | ||
SRC_URI+=" https://gentoo.rgst.io/updater_artifacts/${CATEGORY}/${PN}/${PV}/deps.tar.xz -> ${P}-deps.tar.xz" | ||
|
||
LICENSE="Apache-2.0" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~arm arm64 ~riscv ~x86" | ||
|
||
BDEPEND=">=dev-lang/go-1.21" | ||
|
||
RESTRICT="test" | ||
|
||
src_unpack() { | ||
default | ||
mv "cli-${PV}" "${P}" | ||
} | ||
|
||
src_compile() { | ||
ego build -o bin/doppler -ldflags "-s -w -X github.com/DopplerHQ/cli/pkg/version.ProgramVersion=v${PV}" . | ||
} | ||
|
||
src_install() { | ||
dobin "${S}/bin/${PN}" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.