diff options
author | Sam James <sam@gentoo.org> | 2020-09-17 23:26:45 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2020-09-17 23:26:47 +0000 |
commit | 47e175b2635de2e1eb7a48ccd06ee015f4aa397f (patch) | |
tree | 45a7da63b679af15bcf66490a76ad1ff61895c91 /dev-libs | |
parent | app-crypt/trousers: security cleanup (diff) | |
download | gentoo-47e175b2635de2e1eb7a48ccd06ee015f4aa397f.tar.gz gentoo-47e175b2635de2e1eb7a48ccd06ee015f4aa397f.tar.bz2 gentoo-47e175b2635de2e1eb7a48ccd06ee015f4aa397f.zip |
dev-libs/stb: security cleanup
Bug: https://bugs.gentoo.org/711274
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/stb/Manifest | 1 | ||||
-rw-r--r-- | dev-libs/stb/stb-20180211.ebuild | 34 |
2 files changed, 0 insertions, 35 deletions
diff --git a/dev-libs/stb/Manifest b/dev-libs/stb/Manifest index 6e9db73a9c5d..3634317ff744 100644 --- a/dev-libs/stb/Manifest +++ b/dev-libs/stb/Manifest @@ -1,2 +1 @@ -DIST stb-20180211.tar.gz 1327803 BLAKE2B a910ac78c5e3760a3e4c74e033d15230c39abd89aeb083ba6c7cd23f8339926e8ab82fde1b6f4fe7a1a312023979a74b961abe263c40b18b3bb8239cbdfa204e SHA512 232ef301d4d6c82c7c5f0e4234b9160cc815f3b6bcc35d341cdf8738646f2f0887ee9838680699f4c9f4274b1390036b2c4fb3ebc2d663af8ff888114dc9f04b DIST stb-20200205.tar.gz 1375616 BLAKE2B 11acfb4b1938e75c388b426e4b568c2976566259469716514d0ac8c97ab23d45f51fed1dcf458ca8f07e51d88d90708b33d66d545ed1aa09cd96fea46b9eb738 SHA512 31f945de8b642a359363c81e67f09b71aa663eacd68f5ec602eed40987f2d953943871af3b408d1e948a9e5c953098fca34b9e971fdeed92b734bb0c79c79a42 diff --git a/dev-libs/stb/stb-20180211.ebuild b/dev-libs/stb/stb-20180211.ebuild deleted file mode 100644 index 6efc838e61bb..000000000000 --- a/dev-libs/stb/stb-20180211.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -# There are no offical releases -CHECKSUM="e6afb9cbae4064da8c3e69af3ff5c4629579c1d2" - -DESCRIPTION="single-file public domain (or MIT licensed) libraries for C/C++" -HOMEPAGE="https://github.com/nothings/stb" -SRC_URI="https://github.com/nothings/stb/archive/${CHECKSUM}.tar.gz -> ${P}.tar.gz" - -LICENSE="|| ( MIT Unlicense )" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -IUSE="" - -S="${WORKDIR}/${PN}-${CHECKSUM}" - -DEPEND="" -RDEPEND="" - -src_prepare() { - default - - # Move the header files in a folder so they don't pollute the include dir - mkdir stb || die - mv *.h stb/ || die -} - -src_install() { - doheader -r stb -} |