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-fs/mtd-utils: mtd-utils-1.4.8.ebuild ChangeLog
Date: Sat, 19 Nov 2011 22:06:28
Message-Id: 20111119211001.A7F962004B@flycatcher.gentoo.org
1 vapier 11/11/19 21:10:01
2
3 Modified: ChangeLog
4 Added: mtd-utils-1.4.8.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha75/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.49 sys-fs/mtd-utils/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtd-utils/ChangeLog?rev=1.49&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtd-utils/ChangeLog?rev=1.49&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtd-utils/ChangeLog?r1=1.48&r2=1.49
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/ChangeLog,v
20 retrieving revision 1.48
21 retrieving revision 1.49
22 diff -u -r1.48 -r1.49
23 --- ChangeLog 19 Nov 2011 21:09:02 -0000 1.48
24 +++ ChangeLog 19 Nov 2011 21:10:01 -0000 1.49
25 @@ -1,6 +1,12 @@
26 # ChangeLog for sys-fs/mtd-utils
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/ChangeLog,v 1.48 2011/11/19 21:09:02 vapier Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/ChangeLog,v 1.49 2011/11/19 21:10:01 vapier Exp $
30 +
31 +*mtd-utils-1.4.8 (19 Nov 2011)
32 +
33 + 19 Nov 2011; Mike Frysinger <vapier@g.o> +mtd-utils-1.4.8.ebuild,
34 + +files/mtd-utils-1.4.8-install.patch:
35 + Version bump.
36
37 07 Nov 2011; Mike Frysinger <vapier@g.o> -mtd-utils-1.4.4.ebuild,
38 -mtd-utils-20100718.ebuild, -files/mtd-utils-20100718-ubi-parallel.patch:
39
40
41
42 1.1 sys-fs/mtd-utils/mtd-utils-1.4.8.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtd-utils/mtd-utils-1.4.8.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/mtd-utils/mtd-utils-1.4.8.ebuild?rev=1.1&content-type=text/plain
46
47 Index: mtd-utils-1.4.8.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sys-fs/mtd-utils/mtd-utils-1.4.8.ebuild,v 1.1 2011/11/19 21:10:01 vapier Exp $
52
53 EAPI="3"
54
55 inherit eutils
56
57 if [[ ${PV} == "99999999" ]] ; then
58 EGIT_REPO_URI="git://git.infradead.org/mtd-utils.git"
59
60 inherit git
61 SRC_URI=""
62 #KEYWORDS=""
63 else
64 if [[ ${PV} == *.*.* ]] ; then
65 MY_PV="${PV}-*"
66 SRC_URI="http://git.infradead.org/mtd-utils.git/snapshot/v${PV}.tar.gz -> ${P}.tar.gz"
67 else
68 MY_PV="${PV}-02ae0aac87576d07202a62d11294ea55b56f450b"
69 SRC_URI="mirror://gentoo/${PN}-snapshot-${MY_PV}.tar.xz"
70 fi
71 KEYWORDS="~amd64 ~arm ~mips ~ppc ~x86 ~x86-linux"
72 fi
73
74 DESCRIPTION="MTD userspace tools (NFTL, JFFS2, NAND, FTL, UBI)"
75 HOMEPAGE="http://git.infradead.org/?p=mtd-utils.git;a=summary"
76
77 LICENSE="GPL-2"
78 SLOT="0"
79 IUSE="xattr"
80
81 # We need libuuid
82 RDEPEND="!sys-fs/mtd
83 dev-libs/lzo
84 sys-libs/zlib
85 >=sys-apps/util-linux-2.16"
86 # ACL is only required for the <sys/acl.h> header file to build mkfs.jffs2
87 # And ACL brings in Attr as well.
88 DEPEND="${RDEPEND}
89 xattr? ( sys-apps/acl )"
90
91 # Diff snapshots have diff versions encoded into their dirnames
92 S=${WORKDIR}/${PN}
93
94 src_prepare() {
95 cd "${S}"*
96 epatch "${FILESDIR}"/${P}-install.patch
97 }
98
99 makeopts() {
100 echo CROSS=${CHOST}-
101 use xattr || echo WITHOUT_XATTR=1
102 }
103
104 src_compile() {
105 cd "${S}"*
106 emake $(makeopts) || die
107 }
108
109 src_install() {
110 cd "${S}"*
111 emake $(makeopts) install DESTDIR="${ED}" || die
112 dodoc *.txt
113 newdoc mkfs.ubifs/README README.mkfs.ubifs
114 # TODO: check ubi-utils for docs+scripts
115 }