Gentoo Archives: gentoo-commits

From: Dennis Lamm <expeditioneer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/stb/
Date: Sun, 07 Feb 2021 21:30:54
Message-Id: 1612733444.05846adf73452566d7488824555896ac6b42787f.expeditioneer@gentoo
1 commit: 05846adf73452566d7488824555896ac6b42787f
2 Author: Dennis Lamm <expeditioneer <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 7 19:29:15 2021 +0000
4 Commit: Dennis Lamm <expeditioneer <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 7 21:30:44 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05846adf
7
8 dev-libs/stb: drop old
9
10 Signed-off-by: Dennis Lamm <expeditioneer <AT> gentoo.org>
11 Closes: https://github.com/gentoo/gentoo/pull/19364
12 Signed-off-by: Dennis Lamm <expeditioneer <AT> gentoo.org>
13
14 dev-libs/stb/Manifest | 1 -
15 dev-libs/stb/stb-20200205.ebuild | 34 ----------------------------------
16 2 files changed, 35 deletions(-)
17
18 diff --git a/dev-libs/stb/Manifest b/dev-libs/stb/Manifest
19 index 78687f09eb6..4371b529fd5 100644
20 --- a/dev-libs/stb/Manifest
21 +++ b/dev-libs/stb/Manifest
22 @@ -1,2 +1 @@
23 -DIST stb-20200205.tar.gz 1375616 BLAKE2B 11acfb4b1938e75c388b426e4b568c2976566259469716514d0ac8c97ab23d45f51fed1dcf458ca8f07e51d88d90708b33d66d545ed1aa09cd96fea46b9eb738 SHA512 31f945de8b642a359363c81e67f09b71aa663eacd68f5ec602eed40987f2d953943871af3b408d1e948a9e5c953098fca34b9e971fdeed92b734bb0c79c79a42
24 DIST stb-20200713.tar.gz 1378579 BLAKE2B 13f2deecdc20c95fe3dfd1820346e9c8d1046004082a4b6044934efa7e20270b253953fb8e2d9eecf2a263ea342b740d87807e50da48178c0eb4c7028bd27488 SHA512 a9ba80d19dae4e527171bb02e1caa4d3eb0704cdf7f8fef1a7a09e6b05c65b829b0aa580f469f158a39bf13018289f40c1680ab5c22bfa5e932bff94eced475d
25
26 diff --git a/dev-libs/stb/stb-20200205.ebuild b/dev-libs/stb/stb-20200205.ebuild
27 deleted file mode 100644
28 index c89c8af062f..00000000000
29 --- a/dev-libs/stb/stb-20200205.ebuild
30 +++ /dev/null
31 @@ -1,34 +0,0 @@
32 -# Copyright 1999-2020 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=7
36 -
37 -# There are no official releases
38 -CHECKSUM="f54acd4e13430c5122cab4ca657705c84aa61b08"
39 -
40 -DESCRIPTION="single-file public domain (or MIT licensed) libraries for C/C++"
41 -HOMEPAGE="https://github.com/nothings/stb"
42 -SRC_URI="https://github.com/nothings/stb/archive/${CHECKSUM}.tar.gz -> ${P}.tar.gz"
43 -
44 -LICENSE="|| ( MIT Unlicense )"
45 -SLOT="0"
46 -KEYWORDS="~amd64 ~arm64 ~x86"
47 -
48 -IUSE=""
49 -
50 -S="${WORKDIR}/${PN}-${CHECKSUM}"
51 -
52 -BDEPEND=""
53 -RDEPEND=""
54 -
55 -src_prepare() {
56 - default
57 -
58 - # Move the header files in a folder so they don't pollute the include dir
59 - mkdir stb || die
60 - mv *.h stb/ || die
61 -}
62 -
63 -src_install() {
64 - doheader -r stb
65 -}