diff options
author | Hans de Graaff <graaff@gentoo.org> | 2023-04-12 07:57:47 +0200 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2023-04-12 08:16:14 +0200 |
commit | cad8cce71540720cb986c4e0e216ac0f3db7b7da (patch) | |
tree | b055c29f97407f2a8c47eee5fce4249d36d4d0f2 /dev-ruby/activeldap | |
parent | media-libs/openal: bump to 1.23.1 (diff) | |
download | gentoo-cad8cce71540720cb986c4e0e216ac0f3db7b7da.tar.gz gentoo-cad8cce71540720cb986c4e0e216ac0f3db7b7da.tar.bz2 gentoo-cad8cce71540720cb986c4e0e216ac0f3db7b7da.zip |
dev-ruby/activeldap: update EAPI 7 -> 8, add ruby31
Signed-off-by: Hans de Graaff <graaff@gentoo.org>
Diffstat (limited to 'dev-ruby/activeldap')
-rw-r--r-- | dev-ruby/activeldap/activeldap-6.1.0-r1.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
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 +} |