dev-libs/libsass: clean up old
authorAlexandre Rostovtsev <tetromino@gentoo.org>
Thu, 28 Dec 2017 15:13:12 +0000 (10:13 -0500)
committerAlexandre Rostovtsev <tetromino@gentoo.org>
Thu, 28 Dec 2017 15:19:50 +0000 (10:19 -0500)
Package-Manager: Portage-2.3.19, Repoman-2.3.6

dev-libs/libsass/Manifest
dev-libs/libsass/libsass-3.4.6.ebuild [deleted file]

index 7627698dedd4d3ee4cb96659b2f68dacf0d173ab..09cff5a0af87680648a3a4c2af27a2526c7520d6 100644 (file)
@@ -1,2 +1 @@
-DIST libsass-3.4.6.tar.gz 319190 BLAKE2B 78a46cd61a43881cea755af545a7e8eedba10dea4d6fecfc91adb26575fb75ddd6d5d17286a36d389b77923c633a948484994bce74883f8dfa8b36be9be4977d SHA512 2715a0f38709df2f4f60ff4f14106495521f3c7c5762c8590eee630cf769dc7571d38a3e944a90ab8463552d6434994a76a95e23e994e9123941db072aea66c1
 DIST libsass-3.4.7.tar.gz 319824 BLAKE2B ca3e7091816474e318fb1eaefa01e5e361a66715b6267500a93f80dfc8b34bdc595e6ddc4b1872e4399093468d4ac06a9760685d8941d92f18e1834df7715b04 SHA512 5d743d4345b11e9e5315aa858637d3388d2b464150a46bc8a712e1e5d1b3df9c1e6b4dcac26f91827f1c38db24a5a084d04c0962a428f2994f42ad66a25b35a8
diff --git a/dev-libs/libsass/libsass-3.4.6.ebuild b/dev-libs/libsass/libsass-3.4.6.ebuild
deleted file mode 100644 (file)
index a220ac3..0000000
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools eutils ltprune 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 ~x86 ~amd64-linux"
-fi
-
-DESCRIPTION="A C/C++ implementation of a Sass CSS compiler"
-HOMEPAGE="https://github.com/sass/libsass"
-LICENSE="MIT"
-SLOT="0/0" # 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
-       prune_libtool_files
-}
-
-multilib_src_install_all() {
-       einstalldocs
-       dodoc -r "${S}/docs"
-}