Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/lzo: lzo-2.08.ebuild ChangeLog
Date: Mon, 30 Jun 2014 12:19:18
Message-Id: 20140630121914.B7ABD2004E@flycatcher.gentoo.org
1 ssuominen 14/06/30 12:19:14
2
3 Modified: ChangeLog
4 Added: lzo-2.08.ebuild
5 Log:
6 Version bump wrt security bug #515238; upstream fixed bug #374699 as well.
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
9
10 Revision Changes Path
11 1.79 dev-libs/lzo/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/lzo/ChangeLog?rev=1.79&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/lzo/ChangeLog?rev=1.79&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/lzo/ChangeLog?r1=1.78&r2=1.79
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/lzo/ChangeLog,v
20 retrieving revision 1.78
21 retrieving revision 1.79
22 diff -u -r1.78 -r1.79
23 --- ChangeLog 28 Feb 2014 20:37:12 -0000 1.78
24 +++ ChangeLog 30 Jun 2014 12:19:14 -0000 1.79
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/lzo
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/lzo/ChangeLog,v 1.78 2014/02/28 20:37:12 mgorny Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/lzo/ChangeLog,v 1.79 2014/06/30 12:19:14 ssuominen Exp $
30 +
31 +*lzo-2.08 (30 Jun 2014)
32 +
33 + 30 Jun 2014; Samuli Suominen <ssuominen@g.o> +lzo-2.08.ebuild:
34 + Version bump wrt security bug #515238; upstream fixed bug #374699 as well.
35
36 *lzo-2.06-r1 (28 Feb 2014)
37
38
39
40
41 1.1 dev-libs/lzo/lzo-2.08.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/lzo/lzo-2.08.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/lzo/lzo-2.08.ebuild?rev=1.1&content-type=text/plain
45
46 Index: lzo-2.08.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-libs/lzo/lzo-2.08.ebuild,v 1.1 2014/06/30 12:19:14 ssuominen Exp $
51
52 EAPI=5
53
54 inherit eutils multilib-minimal
55
56 DESCRIPTION="An extremely fast compression and decompression library"
57 HOMEPAGE="http://www.oberhumer.com/opensource/lzo/"
58 SRC_URI="http://www.oberhumer.com/opensource/lzo/download/${P}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="2"
62 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
63 IUSE="examples static-libs"
64
65 RDEPEND="abi_x86_32? (
66 !<=app-emulation/emul-linux-x86-baselibs-20131008-r19
67 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32]
68 )"
69
70 DOCS="BUGS ChangeLog README THANKS doc/*"
71
72 multilib_src_configure() {
73 ECONF_SOURCE=${S} \
74 econf \
75 --docdir="${EPREFIX}"/usr/share/doc/${PF} \
76 --enable-shared \
77 $(use_enable static-libs static)
78 }
79
80 multilib_src_install_all() {
81 einstalldocs
82 rm -f "${ED}"/usr/share/doc/${PF}/COPYING
83
84 if use examples; then
85 docinto examples
86 dodoc examples/*.{c,h}
87 fi
88
89 prune_libtool_files
90 }