dev-libs/libsass: remove old 3.5.5
authorAndrew Ammerlaan <andrewammerlaan@riseup.net>
Fri, 6 Mar 2020 13:28:02 +0000 (14:28 +0100)
committerJoonas Niilola <juippis@gentoo.org>
Fri, 6 Mar 2020 15:55:35 +0000 (17:55 +0200)
3.5.5 has security issue, 3.6.1 is stable

Bug: https://bugs.gentoo.org/711680
Package-Manager: Portage-2.3.92, Repoman-2.3.20
Signed-off-by: Andrew Ammerlaan <andrewammerlaan@riseup.net>
Closes: https://github.com/gentoo/gentoo/pull/14847
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
dev-libs/libsass/Manifest
dev-libs/libsass/libsass-3.5.5.ebuild [deleted file]

index 3303bed9cee7df2bcb1899e7c118583b99d7161c..031f55851910ea8912efe43c481f3d6485e5f61b 100644 (file)
@@ -1,3 +1,2 @@
-DIST libsass-3.5.5.tar.gz 327298 BLAKE2B 4127722343394bca4ed054987eed6113788e10dc4d03a869778c10b56135406c1fcd72dc101bfe405c96267b628735e8ee74d3812ab392f097dc941b78bef882 SHA512 dcb73a5080c00023b60a19ea037ba5af481253a7b47492bd7114bf45ab78ed931c7b207fa8f12ed200a39760553d72ae92dbe4eb80b826b59a6201fb34008fe5
 DIST libsass-3.6.1.tar.gz 333609 BLAKE2B ea6cb0285a6d741614bb900ff0f3b74660c74ec9ed071abf2d980bfe3f55b02fa2873d3860e5b767ca82b5f202f3d2aef28b73357bf8d2b3117c925b4dc78791 SHA512 e9a3a30851e26145d049c4b20951c663a9d48c781a732acd3cc2cdb30df3449e445b57211f666b58afa137431fbdb149add48ff8a0dec92bd8abb514c90adebb
 DIST libsass-3.6.3.tar.gz 331301 BLAKE2B 9e25994d19bd93fb53be32f69cafa40204d5892bd676fd7e9a3fcfe4cb6e84d21e9c53043b4766b602f811617f4eeb8bc5719dd7977657ccefff088d418c4e5c SHA512 e290f2045784ba1cf84e87e5bd33129b5452fec1d25da657b084b3561ec76df195a75595248a493dbd85c6a1215ed600332477945922309c021d9e416ebb29ee
diff --git a/dev-libs/libsass/libsass-3.5.5.ebuild b/dev-libs/libsass/libsass-3.5.5.ebuild
deleted file mode 100644 (file)
index 1ece894..0000000
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools multilib-minimal
-
-if [[ ${PV} = *9999 ]]; then
-       EGIT_REPO_URI="https://github.com/sass/libsass.git"
-       inherit git-r3
-       KEYWORDS=
-else
-       SRC_URI="https://github.com/sass/libsass/archive/${PV}.tar.gz -> ${P}.tar.gz"
-       KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 x86 ~amd64-linux"
-fi
-
-DESCRIPTION="A C/C++ implementation of a Sass CSS compiler"
-HOMEPAGE="https://github.com/sass/libsass"
-LICENSE="MIT"
-SLOT="0/1" # libsass soname
-IUSE="static-libs"
-
-RDEPEND=""
-DEPEND="${RDEPEND}"
-
-DOCS=( Readme.md SECURITY.md )
-
-src_prepare() {
-       default
-
-       if [[ ${PV} != *9999 ]]; then
-               [[ -f VERSION ]] || echo "${PV}" > VERSION
-       fi
-       eautoreconf
-
-       # only sane way to deal with various version-related scripts, env variables etc.
-       multilib_copy_sources
-}
-
-multilib_src_configure() {
-       econf \
-               $(use_enable static-libs static) \
-               --enable-shared
-}
-
-multilib_src_install() {
-       emake DESTDIR="${D}" install
-       find "${D}" -name '*.la' -delete || die
-}
-
-multilib_src_install_all() {
-       einstalldocs
-       dodoc -r "${S}/docs"
-}