diff options
author | 2024-12-23 00:33:13 +0000 | |
---|---|---|
committer | 2024-12-23 00:33:13 +0000 | |
commit | a92621063c99152141709aa0460559dfbe1a2a77 (patch) | |
tree | 28854f5580c99988b3ce405fbe3030dbfad9134d /net-misc/obligator/obligator-0.3.0_p20240910-r1.ebuild | |
parent | app-text/plover: update pyqt5 dependency (diff) | |
download | ebuilds-a92621063c99152141709aa0460559dfbe1a2a77.tar.xz |
net-misc/obligator: add 0.3.0_p20241212, drop 0.3.0_p20240910-r1
Diffstat (limited to 'net-misc/obligator/obligator-0.3.0_p20240910-r1.ebuild')
-rw-r--r-- | net-misc/obligator/obligator-0.3.0_p20240910-r1.ebuild | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/net-misc/obligator/obligator-0.3.0_p20240910-r1.ebuild b/net-misc/obligator/obligator-0.3.0_p20240910-r1.ebuild deleted file mode 100644 index 9b97b1f..0000000 --- a/net-misc/obligator/obligator-0.3.0_p20240910-r1.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -inherit go-module - -DESCRIPTION="Simple and opinionated OpenID Connect server designed for self-hosters" -HOMEPAGE="https://github.com/lastlogin-net/obligator" -BDEPEND=">=dev-lang/go-1.20" -COMMIT="54bc6d226904adbbda6a2666a4b635a65e79c01f" -SRC_URI="https://github.com/lastlogin-net/obligator/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" -SRC_URI+=" https://share.terinstock.com/${P}-vendor.tar.xz" -S="${WORKDIR}/${PN}-${COMMIT}" - -LICENSE="MIT" -LICENSE+=" BSD" -SLOT="0" -KEYWORDS="~amd64" -IUSE="+sqlite" - -RDEPEND=" - sqlite? ( dev-db/sqlite:3 ) -" - -src_compile() { - if use sqlite; then - GOFLAGS+=" -tags=libsqlite3" - fi - ego build ./cmd/obligator/ -} - -src_test() { - ego test ./... -} - -src_install() { - dobin obligator -} |