annotate app-emulation/docker-compose-bin/docker-compose-bin-1.5.0.ebuild @ 409:cb454e927ad1

ebuild for vanilla-sources-4.1.15
author Dirk Olmes <dirk@xanthippe.ping.de>
date Mon, 11 Jan 2016 17:16:49 +0100
parents 1d67465feb67
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
402
1d67465feb67 add a ebuild for docker-compose-bin
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
1 # Copyright 1999-2014 Gentoo Foundation
1d67465feb67 add a ebuild for docker-compose-bin
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
2 # Distributed under the terms of the GNU General Public License v2
1d67465feb67 add a ebuild for docker-compose-bin
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
3 # $Header: $
1d67465feb67 add a ebuild for docker-compose-bin
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
4
1d67465feb67 add a ebuild for docker-compose-bin
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
5 EAPI=5
1d67465feb67 add a ebuild for docker-compose-bin
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
6
1d67465feb67 add a ebuild for docker-compose-bin
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
7 DESCRIPTION="Compose is a tool for defining and running complex applications with Docker"
1d67465feb67 add a ebuild for docker-compose-bin
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
8 HOMEPAGE="https://docs.docker.com/compose/"
1d67465feb67 add a ebuild for docker-compose-bin
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
9 MY_PN="${PN%-bin}"
1d67465feb67 add a ebuild for docker-compose-bin
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
10 MY_PV="${PV/_/}"
1d67465feb67 add a ebuild for docker-compose-bin
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
11 SRC_URI="
1d67465feb67 add a ebuild for docker-compose-bin
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
12 amd64? ( https://github.com/docker/compose/releases/download/${MY_PV}/${MY_PN}-Linux-x86_64 -> ${P}-Linux-x86_64 )
1d67465feb67 add a ebuild for docker-compose-bin
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
13 "
1d67465feb67 add a ebuild for docker-compose-bin
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
14
1d67465feb67 add a ebuild for docker-compose-bin
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
15 LICENSE="Apache-2.0"
1d67465feb67 add a ebuild for docker-compose-bin
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
16 SLOT="0"
1d67465feb67 add a ebuild for docker-compose-bin
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
17 KEYWORDS="~amd64"
1d67465feb67 add a ebuild for docker-compose-bin
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
18 IUSE=""
1d67465feb67 add a ebuild for docker-compose-bin
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
19
1d67465feb67 add a ebuild for docker-compose-bin
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
20 DEPEND=""
1d67465feb67 add a ebuild for docker-compose-bin
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
21 RDEPEND="${DEPEND}"
1d67465feb67 add a ebuild for docker-compose-bin
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
22
1d67465feb67 add a ebuild for docker-compose-bin
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
23 RESTRICT="installsources strip"
1d67465feb67 add a ebuild for docker-compose-bin
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
24
1d67465feb67 add a ebuild for docker-compose-bin
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
25 S="${DISTDIR}"
1d67465feb67 add a ebuild for docker-compose-bin
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
26
1d67465feb67 add a ebuild for docker-compose-bin
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
27 src_install() {
1d67465feb67 add a ebuild for docker-compose-bin
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
28 newbin ${P}-Linux-x86_64 ${MY_PN}
1d67465feb67 add a ebuild for docker-compose-bin
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
29 }