Gentoo Archives: gentoo-commits

From: "Lars Wendler (polynomial-c)" <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-libs/e2fsprogs-libs: e2fsprogs-libs-1.42.10.ebuild ChangeLog e2fsprogs-libs-1.42.8.ebuild
Date: Wed, 28 May 2014 10:37:26
Message-Id: 20140528103722.B01242004E@flycatcher.gentoo.org
1 polynomial-c 14/05/28 10:37:22
2
3 Modified: ChangeLog
4 Added: e2fsprogs-libs-1.42.10.ebuild
5 Removed: e2fsprogs-libs-1.42.8.ebuild
6 Log:
7 Version bump. Removed old
8
9 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0x981CA6FC)
10
11 Revision Changes Path
12 1.114 sys-libs/e2fsprogs-libs/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/e2fsprogs-libs/ChangeLog?rev=1.114&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/e2fsprogs-libs/ChangeLog?rev=1.114&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/e2fsprogs-libs/ChangeLog?r1=1.113&r2=1.114
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sys-libs/e2fsprogs-libs/ChangeLog,v
21 retrieving revision 1.113
22 retrieving revision 1.114
23 diff -u -r1.113 -r1.114
24 --- ChangeLog 18 Jan 2014 02:37:17 -0000 1.113
25 +++ ChangeLog 28 May 2014 10:37:22 -0000 1.114
26 @@ -1,6 +1,12 @@
27 # ChangeLog for sys-libs/e2fsprogs-libs
28 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/e2fsprogs-libs/ChangeLog,v 1.113 2014/01/18 02:37:17 vapier Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/e2fsprogs-libs/ChangeLog,v 1.114 2014/05/28 10:37:22 polynomial-c Exp $
31 +
32 +*e2fsprogs-libs-1.42.10 (28 May 2014)
33 +
34 + 28 May 2014; Lars Wendler <polynomial-c@g.o>
35 + -e2fsprogs-libs-1.42.8.ebuild, +e2fsprogs-libs-1.42.10.ebuild:
36 + Version bump. Removed old.
37
38 18 Jan 2014; Mike Frysinger <vapier@g.o> e2fsprogs-libs-1.42.7.ebuild,
39 e2fsprogs-libs-1.42.8.ebuild, e2fsprogs-libs-1.42.9.ebuild:
40
41
42
43 1.1 sys-libs/e2fsprogs-libs/e2fsprogs-libs-1.42.10.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/e2fsprogs-libs/e2fsprogs-libs-1.42.10.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/e2fsprogs-libs/e2fsprogs-libs-1.42.10.ebuild?rev=1.1&content-type=text/plain
47
48 Index: e2fsprogs-libs-1.42.10.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sys-libs/e2fsprogs-libs/e2fsprogs-libs-1.42.10.ebuild,v 1.1 2014/05/28 10:37:22 polynomial-c Exp $
53
54 EAPI="4"
55
56 case ${PV} in
57 *_pre*) UP_PV="${PV%_pre*}-WIP-${PV#*_pre}" ;;
58 *) UP_PV=${PV} ;;
59 esac
60
61 inherit toolchain-funcs eutils multilib-minimal
62
63 DESCRIPTION="e2fsprogs libraries (common error and subsystem)"
64 HOMEPAGE="http://e2fsprogs.sourceforge.net/"
65 SRC_URI="mirror://sourceforge/e2fsprogs/${PN}-${UP_PV}.tar.gz"
66
67 LICENSE="GPL-2"
68 SLOT="0"
69 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux ~m68k-mint ~x86-solaris"
70 IUSE="nls static-libs"
71
72 RDEPEND="!sys-libs/com_err
73 !sys-libs/ss
74 !<sys-fs/e2fsprogs-1.41.8
75 abi_x86_32? (
76 !<=app-emulation/emul-linux-x86-baselibs-20130224-r12
77 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)]
78 )"
79 DEPEND="nls? ( sys-devel/gettext )
80 virtual/pkgconfig"
81
82 S=${WORKDIR}/${P%_pre*}
83
84 src_prepare() {
85 printf 'all:\n%%:;@:\n' > doc/Makefile.in # don't bother with docs #305613
86 epatch "${FILESDIR}"/${PN}-1.42.9-no-quota.patch
87 }
88
89 multilib_src_configure() {
90 # we use blkid/uuid from util-linux now
91 ac_cv_lib_uuid_uuid_generate=yes \
92 ac_cv_lib_blkid_blkid_get_cache=yes \
93 ac_cv_path_LDCONFIG=: \
94 ECONF_SOURCE="${S}" \
95 econf \
96 --disable-lib{blkid,uuid} \
97 --disable-quota \
98 $(tc-is-static-only || echo --enable-elf-shlibs) \
99 $(tc-has-tls || echo --disable-tls) \
100 $(use_enable nls)
101 }
102
103 multilib_src_install() {
104 emake STRIP=: DESTDIR="${D}" install || die
105 multilib_is_native_abi && gen_usr_ldscript -a com_err ss
106 # configure doesn't have an option to disable static libs :/
107 use static-libs || find "${ED}" -name '*.a' -delete
108 }