Gentoo Archives: gentoo-commits

From: Alexandre Rostovtsev <tetromino@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libsass/
Date: Thu, 28 Dec 2017 15:20:19
Message-Id: 1514474390.d19efc349394754fa68417c5c0cd0560075146ad.tetromino@gentoo
1 commit: d19efc349394754fa68417c5c0cd0560075146ad
2 Author: Alexandre Rostovtsev <tetromino <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 28 15:13:12 2017 +0000
4 Commit: Alexandre Rostovtsev <tetromino <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 28 15:19:50 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d19efc34
7
8 dev-libs/libsass: clean up old
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 dev-libs/libsass/Manifest | 1 -
13 dev-libs/libsass/libsass-3.4.6.ebuild | 54 -----------------------------------
14 2 files changed, 55 deletions(-)
15
16 diff --git a/dev-libs/libsass/Manifest b/dev-libs/libsass/Manifest
17 index 7627698dedd..09cff5a0af8 100644
18 --- a/dev-libs/libsass/Manifest
19 +++ b/dev-libs/libsass/Manifest
20 @@ -1,2 +1 @@
21 -DIST libsass-3.4.6.tar.gz 319190 BLAKE2B 78a46cd61a43881cea755af545a7e8eedba10dea4d6fecfc91adb26575fb75ddd6d5d17286a36d389b77923c633a948484994bce74883f8dfa8b36be9be4977d SHA512 2715a0f38709df2f4f60ff4f14106495521f3c7c5762c8590eee630cf769dc7571d38a3e944a90ab8463552d6434994a76a95e23e994e9123941db072aea66c1
22 DIST libsass-3.4.7.tar.gz 319824 BLAKE2B ca3e7091816474e318fb1eaefa01e5e361a66715b6267500a93f80dfc8b34bdc595e6ddc4b1872e4399093468d4ac06a9760685d8941d92f18e1834df7715b04 SHA512 5d743d4345b11e9e5315aa858637d3388d2b464150a46bc8a712e1e5d1b3df9c1e6b4dcac26f91827f1c38db24a5a084d04c0962a428f2994f42ad66a25b35a8
23
24 diff --git a/dev-libs/libsass/libsass-3.4.6.ebuild b/dev-libs/libsass/libsass-3.4.6.ebuild
25 deleted file mode 100644
26 index a220ac3e1e1..00000000000
27 --- a/dev-libs/libsass/libsass-3.4.6.ebuild
28 +++ /dev/null
29 @@ -1,54 +0,0 @@
30 -# Copyright 1999-2017 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -inherit autotools eutils ltprune multilib-minimal
36 -
37 -if [[ ${PV} = *9999 ]]; then
38 - EGIT_REPO_URI="https://github.com/sass/libsass.git"
39 - inherit git-r3
40 - KEYWORDS=
41 -else
42 - SRC_URI="https://github.com/sass/libsass/archive/${PV}.tar.gz -> ${P}.tar.gz"
43 - KEYWORDS="~amd64 ~x86 ~amd64-linux"
44 -fi
45 -
46 -DESCRIPTION="A C/C++ implementation of a Sass CSS compiler"
47 -HOMEPAGE="https://github.com/sass/libsass"
48 -LICENSE="MIT"
49 -SLOT="0/0" # libsass soname
50 -IUSE="static-libs"
51 -
52 -RDEPEND=""
53 -DEPEND="${RDEPEND}"
54 -
55 -DOCS=( Readme.md SECURITY.md )
56 -
57 -src_prepare() {
58 - default
59 -
60 - if [[ ${PV} != *9999 ]]; then
61 - [[ -f VERSION ]] || echo "${PV}" > VERSION
62 - fi
63 - eautoreconf
64 -
65 - # only sane way to deal with various version-related scripts, env variables etc.
66 - multilib_copy_sources
67 -}
68 -
69 -multilib_src_configure() {
70 - econf \
71 - $(use_enable static-libs static) \
72 - --enable-shared
73 -}
74 -
75 -multilib_src_install() {
76 - emake DESTDIR="${D}" install
77 - prune_libtool_files
78 -}
79 -
80 -multilib_src_install_all() {
81 - einstalldocs
82 - dodoc -r "${S}/docs"
83 -}