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: app-arch/lz4/
Date: Fri, 19 Oct 2018 09:57:43
Message-Id: 1539942443.dc6c1f59673f69369a98a030dfe184645f7494b5.mgorny@gentoo
1 commit: dc6c1f59673f69369a98a030dfe184645f7494b5
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 19 09:47:23 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 19 09:47:23 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc6c1f59
7
8 app-arch/lz4: Drop old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 app-arch/lz4/Manifest | 1 -
13 app-arch/lz4/lz4-1.8.0.ebuild | 37 -------------------------------------
14 2 files changed, 38 deletions(-)
15
16 diff --git a/app-arch/lz4/Manifest b/app-arch/lz4/Manifest
17 index b74f8732ee1..a082ac4cdcd 100644
18 --- a/app-arch/lz4/Manifest
19 +++ b/app-arch/lz4/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST lz4-1.8.0.tar.gz 222840 BLAKE2B 0b33f920f59a5ec9576051baa9ba887b320d424f8f64e1a752124371797d3f8bf2dbf13ee2e7268ef363d70697b8358e7ad627489c6843c61bdba004df80c5ec SHA512 aea46d4a900a3ede7dd7b498ee938ecd98397d3277c5b3a85b4236a44777cba85cd68a2f32c993b872afda96c5dafe0cb3dd391101fe8181e17c9f48884c1535
22 DIST lz4-1.8.2.tar.gz 320742 BLAKE2B cd97b6a31a1f45d410d598af0b0b696b3ccc3ffdc4fd523316576ebc68e24e545b8ce359889b0dca1968b1c296cb69951617b91b49cbe8eb98cfdb9ce400803c SHA512 5fadc79334d37739c947d6dfc24f48ce82989fc5ee4f2bb8201ccf7ee3230b9e6e7c8488beb64050a035369f4247161d258bdb539578bec224ccebfef1b8a763
23 DIST lz4-1.8.3.tar.gz 327897 BLAKE2B e2be80be14c67cf1a07cc6a2e6f6777a87abdd15499b9c32b8096e09284aea19620adf930e28454ce105e325cff684d2625e0a38211705f3c105a80b72f56be5 SHA512 5d284f75a0c4ad11ebc4abb4394d98c863436da0718d62f648ef2e2cda8e5adf47617a4b43594375f7b0b673541a9ccfaf73880a55fd240986594558214dbf9f
24
25 diff --git a/app-arch/lz4/lz4-1.8.0.ebuild b/app-arch/lz4/lz4-1.8.0.ebuild
26 deleted file mode 100644
27 index 80f2cb6525f..00000000000
28 --- a/app-arch/lz4/lz4-1.8.0.ebuild
29 +++ /dev/null
30 @@ -1,37 +0,0 @@
31 -# Copyright 1999-2018 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -inherit cmake-multilib
37 -
38 -if [[ ${PV} == 9999 ]]; then
39 - inherit git-r3
40 - EGIT_REPO_URI="https://github.com/lz4/lz4.git"
41 - EGIT_BRANCH=dev
42 -else
43 - SRC_URI="https://github.com/Cyan4973/lz4/archive/v${PV}.tar.gz -> ${P}.tar.gz"
44 - KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-macos"
45 -fi
46 -
47 -DESCRIPTION="Extremely Fast Compression algorithm"
48 -HOMEPAGE="https://github.com/lz4/lz4"
49 -
50 -LICENSE="BSD-2 GPL-2"
51 -# https://abi-laboratory.pro/tracker/timeline/lz4/
52 -# 1.7.5->1.8.0 has some minor changes; the only really incompatible
53 -# would be removing 'const' from LZ4F_freeDecompressionContext() arg
54 -# however, it is extremely unlikely that this 'const' would actually
55 -# be relied on
56 -SLOT="0/r131"
57 -IUSE="static-libs"
58 -
59 -CMAKE_USE_DIR=${S}/contrib/cmake_unofficial
60 -
61 -multilib_src_configure() {
62 - local mycmakeargs=(
63 - -DBUILD_STATIC_LIBS=$(usex static-libs)
64 - )
65 -
66 - cmake-utils_src_configure
67 -}