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.3.13, Repoman-2.3.3
- Loading branch information
Showing
2 changed files
with
32 additions
and
2 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,2 +1,3 @@ | ||
DIST adsf-1.2.1.tar.gz 162912 SHA256 247b5061f598d9271c05d59925ac9c4f04d879254570ffc0142a48c50e71615a SHA512 88cdc903f21bb3e86fbbfec88ae9650a4676d5d57c526befd1f483bb5281501f28e2ffb6fda8e2b06f891b8f4bbd15a3e6a1c90a96e3eef1c6b4a13a39f1b8cd WHIRLPOOL 335efd8f77ca5164f5b0e62428d737d6d7a4b590937c7aef765594cd7d3913a621bd757ad81234a2a303bf93a886d70eb8066f6c9c724042871bd4cf7c4a6109 | ||
DIST adsf-1.3.0.tar.gz 164989 SHA256 e086dc93ba0df19a8be8a88e98d6278639285c6b7e6a1193497dcf2acd1f864e SHA512 41f72c6bbcfee5ef9e803ca18e6746c9190e5d6c4e695b5939ce232b920a58bfcf608c619ac76c9c5a208ca473fb9ad9869636ef3c57079747b50b879b6db156 WHIRLPOOL a523fd85c5cb89dc81e2cd73e199c7337ff6585fc343a3b0aeb5d9e6dbdb8cf01e228f3194551efa0c9b6eb8058357a7c0a3dffc5114afd719e26f0a23b270bd | ||
DIST adsf-1.2.1.tar.gz 162912 BLAKE2B 2503f8e85940e417956e3fcd5b1c12030f1a76c8b12391bce4cfb4ac9c717e50516b825846b51c301a31c6bfb04341547df3c80fa607bb9785d3c150c92c5640 SHA512 88cdc903f21bb3e86fbbfec88ae9650a4676d5d57c526befd1f483bb5281501f28e2ffb6fda8e2b06f891b8f4bbd15a3e6a1c90a96e3eef1c6b4a13a39f1b8cd | ||
DIST adsf-1.3.0.tar.gz 164989 BLAKE2B fcfbe3f883f1e194fc69266d1a617cbd1a71d9c9f60f8997fb057602871dd3032d4fd69a460481e7e62dc4da9440da5a9e8509a021e9856fc72036573b9839b3 SHA512 41f72c6bbcfee5ef9e803ca18e6746c9190e5d6c4e695b5939ce232b920a58bfcf608c619ac76c9c5a208ca473fb9ad9869636ef3c57079747b50b879b6db156 | ||
DIST adsf-1.3.1.tar.gz 165956 BLAKE2B 08e449c39670ea4e09d69e244c346f0fe689130d83e8faf7806b65e1449d115305be1b45668ac5c27db772cab554c9eb2029b4a9d42bd25165532b2d67df09a1 SHA512 7e923a84d57eda40f0220fac84f0a259780504ce615361a962eda5d7c2dbfe335b57a91b70b7c84b9b30132398594da37c85b84379670cc5116607017bf6a85e |
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,29 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
USE_RUBY="ruby22 ruby23 ruby24" | ||
|
||
RUBY_FAKEGEM_EXTRADOC="NEWS.md README.md" | ||
|
||
RUBY_FAKEGEM_TASK_DOC="" | ||
|
||
inherit ruby-fakegem | ||
|
||
DESCRIPTION="A Dead Simple Fileserver is a static file server that can launch in a directory" | ||
HOMEPAGE="https://github.com/ddfreyne/adsf/" | ||
SRC_URI="https://github.com/ddfreyne/adsf/archive/${PV}.tar.gz -> ${P}.tar.gz" | ||
LICENSE="MIT" | ||
|
||
KEYWORDS="~amd64" | ||
SLOT="0" | ||
IUSE="" | ||
|
||
ruby_add_rdepend ">=dev-ruby/rack-1.0.0:*" | ||
|
||
ruby_add_bdepend "test? ( dev-ruby/rack-test )" | ||
|
||
all_ruby_prepare() { | ||
sed -i -e '/simplecov/,/^)/ s:^:#:' test/helper.rb || die | ||
sed -i -e '/rubocop/I s:^:#:' Rakefile || die | ||
} |