dev-lang/sassc: version bump to 3.4.8

Package-Manager: Portage-2.3.20, Repoman-2.3.6
This commit is contained in:
Alexandre Rostovtsev
2018-01-28 22:17:12 -05:00
parent 002f07d42f
commit 9915b3d364
2 changed files with 37 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST sassc-3.4.7.tar.gz 25834 BLAKE2B 7eaeed2f3e454420c82e0f0b8b3877a3256835297d33e35b34517a8981d96e708de5e94364db97ffc6b702e4c136bc37db6e6d11347388b8dbecb75373bf1593 SHA512 f515241260557f17932ed2fc205375169c40d5b83c7a24577487426e33be607a5a8a90e58512a4e6d4ed3796f391b09ef6e148f9b293a76c73cea267dcf9440b
DIST sassc-3.4.8.tar.gz 25840 BLAKE2B 6292202cf9ec361e65cc6c9505bd7cd800880b7c9dd4b28eece7550c215144ba5a4bec3e06376cb056b827d9920cde2386ab3d622b218913c87c43f21316eceb SHA512 ea62f1e0e9c03683a45522cfca0efdc25308f8dca56b86de0733c802268a9b9017ab7df7dbde8b3916b04ca662a96fc4a4984e02baa3b612dcfe4007743bc868

View File

@@ -0,0 +1,36 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit autotools
if [[ ${PV} = *9999 ]]; then
EGIT_REPO_URI="https://github.com/sass/sassc.git"
inherit git-r3
KEYWORDS=
else
SRC_URI="https://github.com/sass/sassc/archive/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~x86 ~amd64-linux"
fi
DESCRIPTION="A libsass command line driver"
HOMEPAGE="https://github.com/sass/sassc"
LICENSE="MIT"
SLOT="0"
IUSE=""
RDEPEND=">=dev-libs/libsass-3.4:="
DEPEND="${RDEPEND}"
DOCS=( Readme.md )
src_prepare() {
default
if [[ ${PV} != *9999 ]]; then
[[ -f VERSION ]] || echo "${PV}" > VERSION
fi
eautoreconf
}