Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/sdparm: sdparm-1.08-r1.ebuild ChangeLog
Date: Thu, 02 Jan 2014 16:05:40
Message-Id: 20140102160535.E874A2004C@flycatcher.gentoo.org
1 vapier 14/01/02 16:05:35
2
3 Modified: ChangeLog
4 Added: sdparm-1.08-r1.ebuild
5 Log:
6 Fix depend on sg3_utils #479578 by Eric F. GARIOUD.
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
9
10 Revision Changes Path
11 1.76 sys-apps/sdparm/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/sdparm/ChangeLog?rev=1.76&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/sdparm/ChangeLog?rev=1.76&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/sdparm/ChangeLog?r1=1.75&r2=1.76
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-apps/sdparm/ChangeLog,v
20 retrieving revision 1.75
21 retrieving revision 1.76
22 diff -u -r1.75 -r1.76
23 --- ChangeLog 10 Jun 2013 03:32:16 -0000 1.75
24 +++ ChangeLog 2 Jan 2014 16:05:35 -0000 1.76
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-apps/sdparm
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/sdparm/ChangeLog,v 1.75 2013/06/10 03:32:16 radhermit Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/sdparm/ChangeLog,v 1.76 2014/01/02 16:05:35 vapier Exp $
31 +
32 +*sdparm-1.08-r1 (02 Jan 2014)
33 +
34 + 02 Jan 2014; Mike Frysinger <vapier@g.o> +sdparm-1.08-r1.ebuild:
35 + Fix depend on sg3_utils #479578 by Eric F. GARIOUD.
36
37 *sdparm-1.08 (10 Jun 2013)
38
39
40
41
42 1.1 sys-apps/sdparm/sdparm-1.08-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/sdparm/sdparm-1.08-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/sdparm/sdparm-1.08-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: sdparm-1.08-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sys-apps/sdparm/sdparm-1.08-r1.ebuild,v 1.1 2014/01/02 16:05:35 vapier Exp $
52
53 EAPI="4"
54
55 DESCRIPTION="Utility to output and modify parameters on a SCSI device, like hdparm"
56 HOMEPAGE="http://sg.danny.cz/sg/sdparm.html"
57 SRC_URI="http://sg.danny.cz/sg/p/${P}.tgz"
58
59 LICENSE="BSD"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux"
62 IUSE=""
63
64 # Older releases contain a conflicting sas_disk_blink
65 RDEPEND=">=sys-apps/sg3_utils-1.28"
66 DEPEND="${RDEPEND}"
67
68 DOCS=( AUTHORS ChangeLog CREDITS README notes.txt )
69
70 src_configure() {
71 # sdparm ships with a local copy of this lib, but will use the system copy if it
72 # detects it (see the README file). Force the use of the system lib. #479578
73 export ac_cv_lib_sgutils2_sg_ll_inquiry=yes
74 default
75 }
76
77 src_install() {
78 default
79 dosbin scripts/sas*
80
81 # These don't exist yet. Someone wanna copy hdparm's and make them work? :)
82 #newinitd ${FILESDIR}/sdparm-init-7 sdparm
83 #newconfd ${FILESDIR}/sdparm-conf.d.3 sdparm
84 }