forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-go/go-gitlab-client: Initial version
Package-Manager: portage-2.2.27
- Loading branch information
Showing
3 changed files
with
33 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
DIST go-gitlab-client-0_pre20160305.tar.gz 20796 SHA256 fdc3878e098c298e5802cf0c8803f672ac22357a51b32d8e6c9bf1b075f9a633 SHA512 98e8ea278671c53e815fed3adb6691625ad3b4c4952b5789352d8966d7c505e264c6a3f5ee779de573f48a8ef6e40a8a9e9426544c47e070ad8a903613b21a2e WHIRLPOOL 84c87809744e25eebb2cc93e4ebf054dfb160c3dd8669fa1ac402faaa9ee3beaff02a8da360c179cdce123329b26a506e302ff6db58433442922c240f7e7fd63 |
21 changes: 21 additions & 0 deletions
21
dev-go/go-gitlab-client/go-gitlab-client-0_pre20160305.ebuild
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,21 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=5 | ||
inherit golang-build golang-vcs-snapshot | ||
|
||
EGO_PN="github.com/plouc/go-gitlab-client/..." | ||
EGIT_COMMIT="a526ef09e9e03f673a43ecd4a687abf6c25343ca" | ||
ARCHIVE_URI="https://${EGO_PN%/*}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz" | ||
KEYWORDS="~amd64" | ||
|
||
DESCRIPTION="A simple gitlab api client written in Go" | ||
HOMEPAGE="https://github.com/plouc/go-gitlab-client" | ||
SRC_URI="${ARCHIVE_URI}" | ||
LICENSE="MIT" | ||
SLOT="0/${PVR}" | ||
IUSE="" | ||
|
||
# Requires dev-go/testify to be packaged | ||
RESTRICT="test" |
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,11 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> | ||
<pkgmetadata> | ||
<maintainer type="person"> | ||
<email>[email protected]</email> | ||
<name>Manuel Rüger</name> | ||
</maintainer> | ||
<upstream> | ||
<remote-id type="github">plouc/go-gitlab-client</remote-id> | ||
</upstream> | ||
</pkgmetadata> |