mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 00:16:22 +01:00
33 lines
698 B
Bash
33 lines
698 B
Bash
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
USE_RUBY="ruby32 ruby33"
|
|
|
|
RUBY_FAKEGEM_TASK_DOC="yard"
|
|
RUBY_FAKEGEM_DOCDIR="doc"
|
|
|
|
RUBY_FAKEGEM_TASK_TEST="spec"
|
|
|
|
inherit ruby-fakegem
|
|
|
|
DESCRIPTION="Sqlite3 Adapter for DataMapper"
|
|
HOMEPAGE="https://github.com/datamapper/dm-sqlite-adapter"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
# Tests require dm-do-adapter's spec directory installed.
|
|
RESTRICT="test"
|
|
|
|
ruby_add_bdepend "test? ( >=dev-ruby/rspec-1.3.2 )"
|
|
|
|
ruby_add_rdepend ">=dev-ruby/do_sqlite3-0.10.6
|
|
>=dev-ruby/dm-do-adapter-1.2.0"
|
|
|
|
all_ruby_prepare() {
|
|
sed -i -e '/check_dependencies/d' tasks/spec.rake || die
|
|
}
|