From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3464E138359 for ; Thu, 17 Sep 2020 23:27:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 280F5E0802; Thu, 17 Sep 2020 23:27:02 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 108F7E0802 for ; Thu, 17 Sep 2020 23:27:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1E0CF33BE0D for ; Thu, 17 Sep 2020 23:27:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B85A733A for ; Thu, 17 Sep 2020 23:26:56 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1600385207.47e175b2635de2e1eb7a48ccd06ee015f4aa397f.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/stb/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/stb/Manifest dev-libs/stb/stb-20180211.ebuild X-VCS-Directories: dev-libs/stb/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 47e175b2635de2e1eb7a48ccd06ee015f4aa397f X-VCS-Branch: master Date: Thu, 17 Sep 2020 23:26:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e5061ea0-f620-4fc3-92fd-feadb1c3bc7e X-Archives-Hash: 8dc4e40f1b2de6928145204faa9e264d commit: 47e175b2635de2e1eb7a48ccd06ee015f4aa397f Author: Sam James gentoo org> AuthorDate: Thu Sep 17 23:26:45 2020 +0000 Commit: Sam James gentoo org> CommitDate: Thu Sep 17 23:26:47 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47e175b2 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 gentoo.org> dev-libs/stb/Manifest | 1 - dev-libs/stb/stb-20180211.ebuild | 34 ---------------------------------- 2 files changed, 35 deletions(-) diff --git a/dev-libs/stb/Manifest b/dev-libs/stb/Manifest index 6e9db73a9c5..3634317ff74 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 6efc838e61b..00000000000 --- 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 -}