commit: cad8cce71540720cb986c4e0e216ac0f3db7b7da Author: Hans de Graaff <graaff <AT> gentoo <DOT> org> AuthorDate: Wed Apr 12 05:57:47 2023 +0000 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org> CommitDate: Wed Apr 12 06:16:14 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cad8cce7
dev-ruby/activeldap: update EAPI 7 -> 8, add ruby31 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org> dev-ruby/activeldap/activeldap-6.1.0-r1.ebuild | 38 ++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/dev-ruby/activeldap/activeldap-6.1.0-r1.ebuild b/dev-ruby/activeldap/activeldap-6.1.0-r1.ebuild new file mode 100644 index 000000000000..4d95f65c56e9 --- /dev/null +++ b/dev-ruby/activeldap/activeldap-6.1.0-r1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +USE_RUBY="ruby27 ruby30 ruby31" + +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_EXTRADOC="TODO doc/text/*" +RUBY_FAKEGEM_EXTRAINSTALL="po" + +inherit ruby-fakegem + +MY_P="${P/ruby-/}" +DESCRIPTION="ActiveLDAP provides an activerecord inspired object oriented interface to LDAP" +HOMEPAGE="https://github.com/activeldap/activeldap" + +LICENSE="GPL-2" +SLOT="$(ver_cut 1)" +KEYWORDS="~amd64" +IUSE="" + +# Most tests require a live LDAP server to run. +RESTRICT="test" + +ruby_add_rdepend " + >=dev-ruby/activemodel-5.2.0:* + dev-ruby/builder + dev-ruby/locale + dev-ruby/ruby-gettext + dev-ruby/gettext_i18n_rails + || ( dev-ruby/ruby-net-ldap >=dev-ruby/ruby-ldap-0.8.2 )" + +all_ruby_install() { + all_fakegem_install + + dodoc doc/text/* + dodoc -r examples +}