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.
app-misc/rundeck-cli-bin: new package
Package-Manager: portage-2.2.28
- Loading branch information
Showing
3 changed files
with
44 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 rundeck-cli-0.1.8-all.jar 3420534 SHA256 885b45ec829fedfece5001038aa353759d081e1f6e571a9f4f138ff40045d9b3 SHA512 c7fff34c1a1091daf54e0ab89a832ab16e775704a6543af31745541419e3fc49d8b5fd47b404bda46dc1434945e652221825af553aff87b764623da4fe3bfdb6 WHIRLPOOL 5ed32cbfccd9650caeaec0bf32ecc0a2947fbb1156421dca4bfecc730fbcb6f447c3a7cdf9e9b4b50b082029762a881ea2dbf895bc1985f955abad6e5fe2103b |
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,16 @@ | ||
<?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>William Hubbs</name> | ||
</maintainer> | ||
<maintainer type="project"> | ||
<email>[email protected]</email> | ||
<name>Gentoo Java team</name> | ||
</maintainer> | ||
<longdescription lang="en"> | ||
This is a command line interface for | ||
<pkg>app-misc/rundeck-cli-bin</pkg>. | ||
</longdescription> | ||
</pkgmetadata> |
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,27 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=5 | ||
|
||
MY_PN="rundeck-cli" | ||
MY_P="rundeck-cli-${PV}" | ||
|
||
inherit java-pkg-2 | ||
|
||
DESCRIPTION="Command line tool for rundeck" | ||
HOMEPAGE="http://rundeck.org" | ||
SRC_URI="https://github.com/rundeck/${MY_PN}/releases/download/v${PV}/${MY_P}-all.jar" | ||
|
||
LICENSE="Apache-2.0" | ||
SLOT="0" | ||
KEYWORDS="~amd64" | ||
|
||
RDEPEND=">=virtual/jre-1.8" | ||
|
||
S="${WORKDIR}" | ||
|
||
src_install() { | ||
java-pkg_newjar "${DISTDIR}"/${MY_P}-all.jar ${MY_PN}.jar | ||
java-pkg_dolauncher rd | ||
} |