mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-19 13:31:28 +02:00
chore(*): remove systemd-rest and motd-http
these projects are old and no longer used.
This commit is contained in:
parent
b4a62b4f72
commit
0411c9b909
@ -1,5 +0,0 @@
|
|||||||
[Service]
|
|
||||||
ExecStart=/usr/sbin/systemd-rest
|
|
||||||
|
|
||||||
[Install]
|
|
||||||
WantedBy=multi-user.target
|
|
@ -1 +0,0 @@
|
|||||||
systemd-rest-0.0.1.ebuild
|
|
@ -1,38 +0,0 @@
|
|||||||
#
|
|
||||||
# Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
|
|
||||||
# Distributed under the terms of the GNU General Public License v2
|
|
||||||
# $Header:$
|
|
||||||
#
|
|
||||||
|
|
||||||
EAPI=2
|
|
||||||
CROS_WORKON_PROJECT="coreos/systemd-rest"
|
|
||||||
CROS_WORKON_LOCALNAME="systemd-rest"
|
|
||||||
CROS_WORKON_REPO="git://github.com"
|
|
||||||
CROS_WORKON_COMMIT="d1da3004cdbe19afcc7a81d274085efd0b73ba64"
|
|
||||||
inherit toolchain-funcs cros-workon systemd
|
|
||||||
|
|
||||||
DESCRIPTION="systemd over rest"
|
|
||||||
HOMEPAGE="https://github.com/coreos/systemd-rest"
|
|
||||||
SRC_URI=""
|
|
||||||
|
|
||||||
LICENSE="MIT"
|
|
||||||
SLOT="0"
|
|
||||||
KEYWORDS="amd64 arm x86"
|
|
||||||
IUSE=""
|
|
||||||
|
|
||||||
DEPEND=">=dev-lang/go-1.0.2"
|
|
||||||
GOROOT="${ED}usr/$(get_libdir)/go"
|
|
||||||
GOPKG="${PN}"
|
|
||||||
|
|
||||||
src_compile() {
|
|
||||||
export GOPATH="${S}"
|
|
||||||
go get
|
|
||||||
go build -o ${PN} || die
|
|
||||||
}
|
|
||||||
|
|
||||||
src_install() {
|
|
||||||
dosbin ${S}/systemd-rest
|
|
||||||
keepdir /var/lib/${PN}
|
|
||||||
systemd_dounit "${FILESDIR}"/${PN}.service
|
|
||||||
systemd_enable_service multi-user.target ${PN}.service
|
|
||||||
}
|
|
@ -1,37 +0,0 @@
|
|||||||
#
|
|
||||||
# Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
|
|
||||||
# Distributed under the terms of the GNU General Public License v2
|
|
||||||
# $Header:$
|
|
||||||
#
|
|
||||||
|
|
||||||
EAPI=2
|
|
||||||
CROS_WORKON_PROJECT="coreos/systemd-rest"
|
|
||||||
CROS_WORKON_LOCALNAME="systemd-rest"
|
|
||||||
CROS_WORKON_REPO="git://github.com"
|
|
||||||
inherit toolchain-funcs cros-workon systemd
|
|
||||||
|
|
||||||
DESCRIPTION="systemd over rest"
|
|
||||||
HOMEPAGE="https://github.com/coreos/systemd-rest"
|
|
||||||
SRC_URI=""
|
|
||||||
|
|
||||||
LICENSE="MIT"
|
|
||||||
SLOT="0"
|
|
||||||
KEYWORDS="~amd64 ~arm ~x86"
|
|
||||||
IUSE=""
|
|
||||||
|
|
||||||
DEPEND=">=dev-lang/go-1.0.2"
|
|
||||||
GOROOT="${ED}usr/$(get_libdir)/go"
|
|
||||||
GOPKG="${PN}"
|
|
||||||
|
|
||||||
src_compile() {
|
|
||||||
export GOPATH="${S}"
|
|
||||||
go get
|
|
||||||
go build -o ${PN} || die
|
|
||||||
}
|
|
||||||
|
|
||||||
src_install() {
|
|
||||||
dosbin ${S}/systemd-rest
|
|
||||||
keepdir /var/lib/${PN}
|
|
||||||
systemd_dounit "${FILESDIR}"/${PN}.service
|
|
||||||
systemd_enable_service multi-user.target ${PN}.service
|
|
||||||
}
|
|
@ -1,5 +0,0 @@
|
|||||||
[Service]
|
|
||||||
ExecStart=/usr/sbin/motd-http
|
|
||||||
|
|
||||||
[Install]
|
|
||||||
WantedBy=multi-user.target
|
|
@ -1,33 +0,0 @@
|
|||||||
#
|
|
||||||
# Copyright (c) 2013 Brandon Philips. All rights reserved.
|
|
||||||
# Distributed under the terms of the MIT License
|
|
||||||
# $Header:$
|
|
||||||
#
|
|
||||||
|
|
||||||
EAPI=2
|
|
||||||
CROS_WORKON_PROJECT="coreos/motd-http"
|
|
||||||
CROS_WORKON_LOCALNAME="motd-http"
|
|
||||||
inherit toolchain-funcs cros-workon systemd
|
|
||||||
|
|
||||||
DESCRIPTION="systemd over rest"
|
|
||||||
HOMEPAGE="https://bitbucket.org/coreos/motd-http"
|
|
||||||
SRC_URI=""
|
|
||||||
|
|
||||||
LICENSE="MIT"
|
|
||||||
SLOT="0"
|
|
||||||
KEYWORDS="~amd64 ~arm ~x86"
|
|
||||||
IUSE=""
|
|
||||||
|
|
||||||
DEPEND=">=dev-lang/go-1.0.2"
|
|
||||||
GOROOT="${ED}usr/$(get_libdir)/go"
|
|
||||||
GOPKG="${PN}"
|
|
||||||
|
|
||||||
src_compile() {
|
|
||||||
GOPATH="${S}" go build ${PN} || die
|
|
||||||
}
|
|
||||||
|
|
||||||
src_install() {
|
|
||||||
dosbin ${S}/${PN}
|
|
||||||
systemd_dounit "${FILESDIR}"/${PN}.service
|
|
||||||
systemd_enable_service multi-user.target ${PN}.service
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user