forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Package-Manager: portage-2.2.28
- Loading branch information
Showing
2 changed files
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
DIST css_parser-1.3.6.tar.gz 24422 SHA256 1931ca0a02d14a0ae7863921a18f3475fa6beee58585e9949af70ceffed8fc80 SHA512 a9d09a95320b3a6853a5f079c17d2913868a3d97ee20d9df8076d9206721bf23442e793a722e67c87d4083d3734ba9eaf98b81d93e6257aaaa43ff32b8e6e65b WHIRLPOOL 13ca571034974d09bf4165f1ca8cc947d66aafdacbd098e25e1f16e312bcbe3bf850b2d1f62d404c0878641f0e9b60c5a00f2b24007295cc0881299f5eb4767f | ||
DIST css_parser-1.4.1.tar.gz 25122 SHA256 852178a304238f56e6ed3e19ecc373ab7d20d109c9f0a79858d476f59858d457 SHA512 f90e321e0c67ee860a9ad09e08abd6175c677e2733b3ed8dfcb5561e28beb9fbe740d0c9d9053c1cae5168b8cd2204b59574d58086057bbf4ada244d5d090888 WHIRLPOOL b22f0e5aa9a559af128bfbdd3ee9d44c9d0107fa7032ace9a56be4eda15986f5ba481761069bd5148634bd6411dc3959627632bfe4877fe815fb24b32536494e | ||
DIST css_parser-1.4.2.tar.gz 25135 SHA256 1913950cc1563a4cc09377ecb46047ee839fec22ce3753a4ca2496e87b4cdb41 SHA512 18e727f8eb0f0daef9e22f998e30f3c91d98ed3ee8d36e37cb411b0d41d9ec516bca7bf947112455108dce506cf1a2f3f0c7e2c360524e60f4ec174c646ac9b7 WHIRLPOOL 0860dff246eb434efef641af9abc8448c1e4ad952f3b805b3af1b100ff638bcbc277e7842ff8e6250beb75d438d80128e64e93dae52d79877e904e3cee9d80fa | ||
DIST css_parser-1.4.4.tar.gz 25711 SHA256 70845925bbc12c12303ec8ccddec7b7fe484810131c1918bed8445fd80b4999b SHA512 9e0a00540a3ee7cda3feb6bcd51a7a4d73c46e741f0c689492cb0e133209ed3119b2d29b3adfd2433fab4d337bb622aa1199ee05abaea15409a66112f1278295 WHIRLPOOL 66f155f76524b07f90d9c048c52f4afb26f5a35ee05f317baac258a65aec1900f4df7db3866f711d3523bfb5fd09599834824876dd64006d2bac1f7ed48f5c2d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=5 | ||
USE_RUBY="ruby20 ruby21 ruby22" | ||
|
||
RUBY_FAKEGEM_RECIPE_DOC="rdoc" | ||
RUBY_FAKEGEM_DOC_DIR="doc" | ||
RUBY_FAKEGEM_EXTRADOC="Readme.md" | ||
RUBY_FAKEGEM_TASK_TEST="" | ||
RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" | ||
|
||
GITHUB_USER="premailer" | ||
GITHUB_PROJECT="${PN}" | ||
inherit ruby-fakegem | ||
|
||
DESCRIPTION="Sass-based Stylesheet Framework" | ||
HOMEPAGE="http://compass-style.org/ https://github.com/premailer/css_parser/" | ||
LICENSE="MIT" | ||
|
||
SRC_URI="https://github.com/${GITHUB_USER}/${GITHUB_PROJECT}/archive/v${PV}.tar.gz -> ${GITHUB_PROJECT}-${PV}.tar.gz" | ||
|
||
SLOT="0" | ||
KEYWORDS="~amd64" | ||
IUSE="doc test" | ||
|
||
ruby_add_rdepend "dev-ruby/addressable | ||
virtual/ruby-ssl" | ||
|
||
ruby_add_bdepend "test? ( dev-ruby/maxitest )" | ||
|
||
all_ruby_prepare() { | ||
# get rid of bundler usage | ||
rm Gemfile || die | ||
sed -i -e '/bundler/d' -e '/bump/d' Rakefile || die | ||
sed -i -e '/bundler/d' test/test_helper.rb || die | ||
# Avoid tests using the network. | ||
sed -i -e '/test_loading_a_remote_file_over_ssl/,/end/ s:^:#:' test/test_css_parser_loading.rb || die | ||
|
||
} | ||
|
||
each_ruby_test() { | ||
${RUBY} -Ilib test/*.rb || die | ||
} |