public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Joonas Niilola" <juippis@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/doctl/
Date: Mon,  1 Feb 2021 13:22:58 +0000 (UTC)	[thread overview]
Message-ID: <1612185768.0cb85bc9eb54608aa28045ee1a45e02dc7041028.juippis@gentoo> (raw)

commit:     0cb85bc9eb54608aa28045ee1a45e02dc7041028
Author:     Vladimir Pavljuchenkov (SpiderX) <spiderx <AT> spiderx <DOT> dp <DOT> ua>
AuthorDate: Sat Mar 30 15:38:31 2019 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Mon Feb  1 13:22:48 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0cb85bc9

app-admin/doctl: new ebuild

A command line tool for DigitalOcean services

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Vladimir Pavljuchenkov <spiderx <AT> spiderx.dp.ua>
Closes: https://github.com/gentoo/gentoo/pull/11546
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 app-admin/doctl/Manifest            |  1 +
 app-admin/doctl/doctl-1.55.0.ebuild | 40 ++++++++++++++++++++++++++++++++
 app-admin/doctl/doctl-9999.ebuild   | 46 +++++++++++++++++++++++++++++++++++++
 app-admin/doctl/metadata.xml        | 20 ++++++++++++++++
 4 files changed, 107 insertions(+)

diff --git a/app-admin/doctl/Manifest b/app-admin/doctl/Manifest
new file mode 100644
index 00000000000..2b23d16cf2c
--- /dev/null
+++ b/app-admin/doctl/Manifest
@@ -0,0 +1 @@
+DIST doctl-1.55.0.tar.gz 5157504 BLAKE2B 1d3db2ee4ca71a459456e72f035648c5ba73c5372c3369b360e1ee3cc44ec1155295e5f425611c307371f902c7ffed7dbce2f959266f79ecb8f149144fc86596 SHA512 6cea86e184ea25d5a6740d4090148fbe053ce93ebe8f2344f5a2bf62283381ed2a9574862a5ba39f34a52bf85af550313b7dd316a321f31089673f898d37cf78

diff --git a/app-admin/doctl/doctl-1.55.0.ebuild b/app-admin/doctl/doctl-1.55.0.ebuild
new file mode 100644
index 00000000000..8241168248a
--- /dev/null
+++ b/app-admin/doctl/doctl-1.55.0.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit bash-completion-r1 go-module
+
+DESCRIPTION="A command line tool for DigitalOcean services"
+HOMEPAGE="https://github.com/digitalocean/doctl"
+SRC_URI="https://github.com/digitalocean/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0 MIT BSD BSD-2 ISC MPL-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+src_compile() {
+	GOFLAGS="-v -x -mod=vendor" \
+		go build ./cmd/... || die "build failed"
+
+	./doctl completion bash > doctl.bash || die "completion for bash failed"
+	./doctl completion zsh > doctl.zsh || die "completion for sh failed"
+	./doctl completion fish > doctl.fish || die "completion for fish failed"
+}
+
+src_test() {
+	GOFLAGS="-v -x -mod=vendor" \
+		go test -work ./do/... ./pkg/... . || die "test failed"
+}
+
+src_install() {
+	einstalldocs
+	dobin doctl
+
+	newbashcomp doctl.bash doctl
+	insinto /usr/share/zsh/site-functions
+	newins doctl.zsh _doctl
+	insinto /usr/share/fish/completion
+	newins doctl.fish doctl
+}

diff --git a/app-admin/doctl/doctl-9999.ebuild b/app-admin/doctl/doctl-9999.ebuild
new file mode 100644
index 00000000000..59e3c4d9aa3
--- /dev/null
+++ b/app-admin/doctl/doctl-9999.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+EGIT_REPO_URI="https://github.com/digitalocean/${PN}.git"
+
+inherit bash-completion-r1 git-r3 go-module
+
+DESCRIPTION="A command line tool for DigitalOcean services"
+HOMEPAGE="https://github.com/digitalocean/doctl"
+SRC_URI=""
+
+LICENSE="Apache-2.0 MIT BSD BSD-2 ISC MPL-2.0"
+SLOT="0"
+KEYWORDS=""
+IUSE=""
+
+src_unpack() {
+	git-r3_src_unpack
+}
+
+src_compile() {
+	GOFLAGS="-v -x -mod=vendor" \
+		go build ./cmd/... || die "build failed"
+
+	./doctl completion bash > doctl.bash || die "completion for bash failed"
+	./doctl completion zsh > doctl.zsh || die "completion for sh failed"
+	./doctl completion fish > doctl.fish || die "completion for fish failed"
+}
+
+src_test() {
+	GOFLAGS="-v -x -mod=vendor" \
+		go test -work ./do/... ./pkg/... . || die "test failed"
+}
+
+src_install() {
+	einstalldocs
+	dobin doctl
+
+	newbashcomp doctl.bash doctl
+	insinto /usr/share/zsh/site-functions
+	newins doctl.zsh _doctl
+	insinto /usr/share/fish/completion
+	newins doctl.fish doctl
+}

diff --git a/app-admin/doctl/metadata.xml b/app-admin/doctl/metadata.xml
new file mode 100644
index 00000000000..02d7430b53a
--- /dev/null
+++ b/app-admin/doctl/metadata.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>spiderx@spiderx.dp.ua</email>
+		<name>Vladimir Pavljuchenkov</name>
+	</maintainer>
+	<maintainer type="project">
+		<email>proxy-maint@gentoo.org</email>
+		<name>Proxy Maintainers</name>
+	</maintainer>
+	<longdescription lang="en">
+	The official DigitalOcean command-line client,
+	which leverages the DigitalOcean API to provide access
+	to DigitalOcean services.
+	</longdescription>
+	<upstream>
+		<remote-id type="github">digitalocean/doctl</remote-id>
+	</upstream>
+</pkgmetadata>


             reply	other threads:[~2021-02-01 13:23 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-02-01 13:22 Joonas Niilola [this message]
  -- strict thread matches above, loose matches on Subject: below --
2021-02-14 14:40 [gentoo-commits] repo/gentoo:master commit in: app-admin/doctl/ Joonas Niilola
2021-02-14 14:40 Joonas Niilola
2021-02-28  9:03 Joonas Niilola
2022-01-03 18:40 Florian Schmaus
2022-01-03 18:40 Florian Schmaus
2022-06-07 20:52 Sam James
2022-07-02 17:35 Joonas Niilola
2022-07-02 17:35 Joonas Niilola
2022-07-09 12:26 Matthew Smith
2022-08-31  8:42 Joonas Niilola
2022-08-31  8:42 Joonas Niilola
2025-04-21 12:22 Petr Vaněk
2025-04-21 12:22 Petr Vaněk
2025-04-21 12:22 Petr Vaněk

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1612185768.0cb85bc9eb54608aa28045ee1a45e02dc7041028.juippis@gentoo \
    --to=juippis@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox