Gentoo Archives: gentoo-commits

From: Austin English <wizardedit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-block/spindown/
Date: Fri, 29 Apr 2016 17:38:08
Message-Id: 1461951382.5e886cad550ddc1848d62c1c55a1b6e2ed094066.wizardedit@gentoo
1 commit: 5e886cad550ddc1848d62c1c55a1b6e2ed094066
2 Author: Austin English <wizardedit <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 29 17:36:22 2016 +0000
4 Commit: Austin English <wizardedit <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 29 17:36:22 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e886cad
7
8 sys-block/spindown: remove spindown-0.4.0-r4
9
10 Package-Manager: portage-2.2.26
11
12 sys-block/spindown/spindown-0.4.0-r4.ebuild | 46 -----------------------------
13 1 file changed, 46 deletions(-)
14
15 diff --git a/sys-block/spindown/spindown-0.4.0-r4.ebuild b/sys-block/spindown/spindown-0.4.0-r4.ebuild
16 deleted file mode 100644
17 index 7f73fcf..0000000
18 --- a/sys-block/spindown/spindown-0.4.0-r4.ebuild
19 +++ /dev/null
20 @@ -1,46 +0,0 @@
21 -# Copyright 1999-2012 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -inherit eutils
26 -
27 -DESCRIPTION="Spindown is a daemon that can spin down idle disks"
28 -HOMEPAGE="https://code.google.com/p/spindown"
29 -SRC_URI="https://spindown.googlecode.com/files/${P}.tar.gz"
30 -
31 -LICENSE="GPL-3"
32 -SLOT="0"
33 -KEYWORDS="~amd64 ~x86"
34 -IUSE=""
35 -
36 -DEPEND=""
37 -RDEPEND="${DEPEND}
38 - sys-apps/sg3_utils"
39 -
40 -src_unpack() {
41 - unpack ${A}
42 - cd "${S}"
43 - epatch "${FILESDIR}"/${P}-CFLAGS-LDFLAGS.patch
44 -}
45 -
46 -src_compile() {
47 - emake || die "emake failed"
48 -}
49 -
50 -src_install() {
51 - insinto /etc
52 - newins spindown.conf.example spindown.conf
53 - newinitd "${FILESDIR}"/spindownd.initd-r1 spindownd
54 - newconfd "${FILESDIR}"/spindownd.confd-r1 spindownd
55 - dosbin spindownd
56 - dodoc CHANGELOG README TODO spindown.conf.example
57 -}
58 -
59 -pkg_postinst() {
60 - elog "Before starting spindownd the first time"
61 - elog "you should modify /etc/spindown.conf"
62 - elog
63 - elog "To start spindownd by default"
64 - elog "you should add it to the default runlevel:"
65 - elog " rc-update add spindownd default"
66 -}