Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/lzo/
Date: Sun, 27 May 2018 08:41:21
Message-Id: 1527410469.6747c0d6ff814cbeeec8127b387b53a00cf70d71.mgorny@gentoo
1 commit: 6747c0d6ff814cbeeec8127b387b53a00cf70d71
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 27 08:40:41 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun May 27 08:41:09 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6747c0d6
7
8 dev-libs/lzo: Drop old
9
10 dev-libs/lzo/Manifest | 1 -
11 dev-libs/lzo/lzo-2.09.ebuild | 44 --------------------------------------------
12 2 files changed, 45 deletions(-)
13
14 diff --git a/dev-libs/lzo/Manifest b/dev-libs/lzo/Manifest
15 index ae9d6c37127..1272fd3c558 100644
16 --- a/dev-libs/lzo/Manifest
17 +++ b/dev-libs/lzo/Manifest
18 @@ -1,2 +1 @@
19 -DIST lzo-2.09.tar.gz 594855 BLAKE2B e2a3f3582ce8290f4c66e80e5703af7074a4f097f8b8dd953d8ebcfeea42bad13bbc724c268ef09f5344ff9857ed60cb5092085b225a1b33f0d1252369516cd4 SHA512 7c64e5e7d2050d75ac8c59d613f6f7230b74746b1d207666755b07450053c8b73980f12f8a1ec59d2af0bada02beec126aaacb675b8088b5fe65e97ff7e6bfc7
20 DIST lzo-2.10.tar.gz 600622 BLAKE2B 124b6645a2cb7f01f153c9fa6e1976378bdfb224841a7b45ab19c584c6ef704c20719ae87640b8d83f3f9269a57d9cc2e870a914124dac03a2ef1336e9feb9c9 SHA512 a3dae5e4a6b93b1f5bf7435e8ab114a9be57252e9efc5dd444947d7a2d031b0819f34bcaeb35f60b5629a01b1238d738735a64db8f672be9690d3c80094511a4
21
22 diff --git a/dev-libs/lzo/lzo-2.09.ebuild b/dev-libs/lzo/lzo-2.09.ebuild
23 deleted file mode 100644
24 index 2d7312f7d5d..00000000000
25 --- a/dev-libs/lzo/lzo-2.09.ebuild
26 +++ /dev/null
27 @@ -1,44 +0,0 @@
28 -# Copyright 1999-2018 Gentoo Foundation
29 -# Distributed under the terms of the GNU General Public License v2
30 -
31 -EAPI=5
32 -
33 -inherit eutils multilib-minimal toolchain-funcs
34 -
35 -DESCRIPTION="An extremely fast compression and decompression library"
36 -HOMEPAGE="http://www.oberhumer.com/opensource/lzo/"
37 -SRC_URI="http://www.oberhumer.com/opensource/lzo/download/${P}.tar.gz"
38 -
39 -LICENSE="GPL-2"
40 -SLOT="2"
41 -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
42 -IUSE="examples static-libs"
43 -
44 -RDEPEND=""
45 -
46 -DOCS="BUGS ChangeLog README THANKS doc/*"
47 -
48 -multilib_src_configure() {
49 - ECONF_SOURCE=${S} \
50 - econf \
51 - --docdir="${EPREFIX}"/usr/share/doc/${PF} \
52 - --enable-shared \
53 - $(use_enable static-libs static)
54 -}
55 -
56 -multilib_src_install() {
57 - emake DESTDIR="${D}" install
58 - gen_usr_ldscript -a lzo2
59 -}
60 -
61 -multilib_src_install_all() {
62 - einstalldocs
63 - rm -f "${ED}"/usr/share/doc/${PF}/COPYING
64 -
65 - if use examples; then
66 - docinto examples
67 - dodoc examples/*.{c,h}
68 - fi
69 -
70 - prune_libtool_files
71 -}