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: Sat, 11 May 2019 12:38:45
Message-Id: 1557578307.fd96dd90197b0b327358fe4459e47d26cad130d4.mgorny@gentoo
1 commit: fd96dd90197b0b327358fe4459e47d26cad130d4
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 11 12:26:29 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat May 11 12:38:27 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd96dd90
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.2.ebuild | 33 ---------------------------------
14 2 files changed, 34 deletions(-)
15
16 diff --git a/app-arch/lz4/Manifest b/app-arch/lz4/Manifest
17 index a082ac4cdcd..0ec9ca3d75c 100644
18 --- a/app-arch/lz4/Manifest
19 +++ b/app-arch/lz4/Manifest
20 @@ -1,2 +1 @@
21 -DIST lz4-1.8.2.tar.gz 320742 BLAKE2B cd97b6a31a1f45d410d598af0b0b696b3ccc3ffdc4fd523316576ebc68e24e545b8ce359889b0dca1968b1c296cb69951617b91b49cbe8eb98cfdb9ce400803c SHA512 5fadc79334d37739c947d6dfc24f48ce82989fc5ee4f2bb8201ccf7ee3230b9e6e7c8488beb64050a035369f4247161d258bdb539578bec224ccebfef1b8a763
22 DIST lz4-1.8.3.tar.gz 327897 BLAKE2B e2be80be14c67cf1a07cc6a2e6f6777a87abdd15499b9c32b8096e09284aea19620adf930e28454ce105e325cff684d2625e0a38211705f3c105a80b72f56be5 SHA512 5d284f75a0c4ad11ebc4abb4394d98c863436da0718d62f648ef2e2cda8e5adf47617a4b43594375f7b0b673541a9ccfaf73880a55fd240986594558214dbf9f
23
24 diff --git a/app-arch/lz4/lz4-1.8.2.ebuild b/app-arch/lz4/lz4-1.8.2.ebuild
25 deleted file mode 100644
26 index d81702967f3..00000000000
27 --- a/app-arch/lz4/lz4-1.8.2.ebuild
28 +++ /dev/null
29 @@ -1,33 +0,0 @@
30 -# Copyright 1999-2018 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -inherit cmake-multilib
36 -
37 -if [[ ${PV} == 9999 ]]; then
38 - inherit git-r3
39 - EGIT_REPO_URI="https://github.com/lz4/lz4.git"
40 - EGIT_BRANCH=dev
41 -else
42 - SRC_URI="https://github.com/Cyan4973/lz4/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 - KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-macos"
44 -fi
45 -
46 -DESCRIPTION="Extremely Fast Compression algorithm"
47 -HOMEPAGE="https://github.com/lz4/lz4"
48 -
49 -LICENSE="BSD-2 GPL-2"
50 -# https://abi-laboratory.pro/tracker/timeline/lz4/
51 -SLOT="0/r131"
52 -IUSE="static-libs"
53 -
54 -CMAKE_USE_DIR=${S}/contrib/cmake_unofficial
55 -
56 -multilib_src_configure() {
57 - local mycmakeargs=(
58 - -DBUILD_STATIC_LIBS=$(usex static-libs)
59 - )
60 -
61 - cmake-utils_src_configure
62 -}