Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-mobilephone/dfu-util: ChangeLog dfu-util-0.5.ebuild
Date: Wed, 02 Nov 2011 14:31:50
Message-Id: 20111102143141.530292004B@flycatcher.gentoo.org
1 vapier 11/11/02 14:31:41
2
3 Modified: ChangeLog
4 Added: dfu-util-0.5.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha71/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.7 app-mobilephone/dfu-util/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-mobilephone/dfu-util/ChangeLog?rev=1.7&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-mobilephone/dfu-util/ChangeLog?rev=1.7&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-mobilephone/dfu-util/ChangeLog?r1=1.6&r2=1.7
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-mobilephone/dfu-util/ChangeLog,v
20 retrieving revision 1.6
21 retrieving revision 1.7
22 diff -u -r1.6 -r1.7
23 --- ChangeLog 21 Sep 2011 07:52:31 -0000 1.6
24 +++ ChangeLog 2 Nov 2011 14:31:39 -0000 1.7
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-mobilephone/dfu-util
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/dfu-util/ChangeLog,v 1.6 2011/09/21 07:52:31 mgorny Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/dfu-util/ChangeLog,v 1.7 2011/11/02 14:31:39 vapier Exp $
30 +
31 +*dfu-util-0.5 (02 Nov 2011)
32 +
33 + 02 Nov 2011; Mike Frysinger <vapier@g.o> +dfu-util-0.5.ebuild:
34 + Version bump.
35
36 21 Sep 2011; Michał Górny <mgorny@g.o> dfu-util-9999.ebuild:
37 Migrate to git-2.
38
39
40
41 1.1 app-mobilephone/dfu-util/dfu-util-0.5.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-mobilephone/dfu-util/dfu-util-0.5.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-mobilephone/dfu-util/dfu-util-0.5.ebuild?rev=1.1&content-type=text/plain
45
46 Index: dfu-util-0.5.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-mobilephone/dfu-util/dfu-util-0.5.ebuild,v 1.1 2011/11/02 14:31:41 vapier Exp $
51
52 EAPI="2"
53
54 if [[ ${PV} == "9999" ]] ; then
55 EGIT_REPO_URI="git://git.openezx.org/dfu-util.git"
56 inherit autotools git
57 SRC_URI=""
58 #KEYWORDS=""
59 else
60 SRC_URI="http://dfu-util.gnumonks.org/releases/${P}.tar.gz"
61 KEYWORDS="~amd64 ~x86"
62 fi
63
64 DESCRIPTION="implements the Host (PC) side of the USB DFU (Device Firmware Upgrade) protocol"
65 HOMEPAGE="http://wiki.openmoko.org/wiki/Dfu-util"
66
67 LICENSE="GPL-2"
68 SLOT="0"
69 IUSE=""
70
71 DEPEND="virtual/libusb:1"
72 RDEPEND="${DEPEND}"
73
74 src_prepare() {
75 if [[ ${PV} == "9999" ]] ; then
76 git_src_prepare
77 eautoreconf
78 fi
79 sed -i '/^bin_PROGRAMS/s:dfu-util_static[^ ]*::' src/Makefile.in
80 }
81
82 src_install() {
83 emake DESTDIR="${D}" install || die
84 dodoc ChangeLog README TODO
85 }