summaryrefslogtreecommitdiff
path: root/dev-db/rqlite/rqlite-7.7.1.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-10-21 02:01:39 +0100
committerV3n3RiX <venerix@koprulu.sector>2022-10-21 02:01:39 +0100
commit3518f21ee7106f4268edf4404299dda157795e3c (patch)
tree66e26d8d7c87fe200d97584ffb8550404e22d665 /dev-db/rqlite/rqlite-7.7.1.ebuild
parentf48011012cdabc60f67e96296bc600f2c3f20ce8 (diff)
gentoo auto-resync : 21:10:2022 - 02:01:39
Diffstat (limited to 'dev-db/rqlite/rqlite-7.7.1.ebuild')
-rw-r--r--dev-db/rqlite/rqlite-7.7.1.ebuild36
1 files changed, 0 insertions, 36 deletions
diff --git a/dev-db/rqlite/rqlite-7.7.1.ebuild b/dev-db/rqlite/rqlite-7.7.1.ebuild
deleted file mode 100644
index c250417b35d1..000000000000
--- a/dev-db/rqlite/rqlite-7.7.1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit go-module
-EGIT_COMMIT=d4e8d7e67fde807e9fca178e56a386eca2ab5cf3
-
-DESCRIPTION="Replicated SQLite using the Raft consensus protocol"
-HOMEPAGE="https://github.com/rqlite/rqlite https://www.philipotoole.com/tag/rqlite/"
-SRC_URI="https://github.com/rqlite/rqlite/archive/v${PV}.tar.gz -> ${P}.tar.gz
- https://dev.gentoo.org/~zmedico/dist/rqlite-7.7.0-deps.tar.xz"
-
-LICENSE="MIT Apache-2.0 BSD CC0-1.0 MPL-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-src_compile() {
- GOBIN="${S}/bin" \
- go install \
- -ldflags="-X main.version=v${PV}
- -X main.branch=master
- -X main.commit=${EGIT_COMMIT}
- -X main.buildtime=$(date +%Y-%m-%dT%T%z)" \
- ./cmd/... || die
-}
-
-src_test() {
- GOBIN="${S}/bin" \
- go test ./... || die
-}
-
-src_install() {
- dobin bin/*
- dodoc -r *.md DOC
-}