diff options
author | Hans de Graaff <graaff@gentoo.org> | 2024-09-24 06:36:47 +0200 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2024-09-24 07:09:03 +0200 |
commit | 0545a7caab7360553ed082f84afc54197358645d (patch) | |
tree | c8ddf4f5b7ad0510d64cb448d468bd2752d71562 /dev-ruby/activeldap | |
parent | net-im/discord: add 0.0.69, drop 0.0.68 (diff) | |
download | gentoo-0545a7caab7360553ed082f84afc54197358645d.tar.gz gentoo-0545a7caab7360553ed082f84afc54197358645d.tar.bz2 gentoo-0545a7caab7360553ed082f84afc54197358645d.zip |
dev-ruby/activeldap: add 7.2.0
Signed-off-by: Hans de Graaff <graaff@gentoo.org>
Diffstat (limited to 'dev-ruby/activeldap')
-rw-r--r-- | dev-ruby/activeldap/Manifest | 1 | ||||
-rw-r--r-- | dev-ruby/activeldap/activeldap-7.2.0.ebuild | 37 |
2 files changed, 38 insertions, 0 deletions
diff --git a/dev-ruby/activeldap/Manifest b/dev-ruby/activeldap/Manifest index 19f5ac1847d4..a6e0a1e6240f 100644 --- a/dev-ruby/activeldap/Manifest +++ b/dev-ruby/activeldap/Manifest @@ -1,2 +1,3 @@ DIST activeldap-6.1.0.gem 227328 BLAKE2B 48cd393a294b677b373461701773d3d0c18cbe9ee5124bcbafe392ee664a0e1045feb2d808734988bfceaaf7ae7b276ea12615ae30bb8109d63daf4b6a8cbed5 SHA512 b8a8d1346d75ae1ddd15b919f2a7afbec3e62b4248144ece3e1324892899735b05aa221ecec7c07f6273f35a6ffdacf4858d57326fb9b8c096f358652ef0b99d DIST activeldap-7.0.0.gem 227840 BLAKE2B 2bf720efa60f2233180cf73a79da61058398a7409319c468ee96938091fd3d4eeebc904e3d8c55f51d1ca9a22f1b22e27554b78910065022ce9ebb92a883c256 SHA512 b4df5307583fc29abb74cdfd1d3b62f4bf03525e4a81397b32522ce84ee49f58fae27a7e9ba62490cfe49daa27be67440ccbaca25ba15553845d9e4a6e693bda +DIST activeldap-7.2.0.gem 227840 BLAKE2B 1252507b9d6774b7a22128b48cad7cd7cf364527832e725524f1c09d99cff6ee974b41fdb4cbd53f9b19a93193729af9b3d176426658edb32108332ced407041 SHA512 2c0d093b0f46181205629346c9ce83e21192398eb9733765f142a0372b1e1239799dd56b966db3e0a0f3aaacc3d2852db57e1a629d7619480bca9f351ab608e5 diff --git a/dev-ruby/activeldap/activeldap-7.2.0.ebuild b/dev-ruby/activeldap/activeldap-7.2.0.ebuild new file mode 100644 index 000000000000..51c9bdc406b4 --- /dev/null +++ b/dev-ruby/activeldap/activeldap-7.2.0.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +USE_RUBY="ruby31 ruby32" + +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_EXTRADOC="TODO doc/text/*" +RUBY_FAKEGEM_EXTRAINSTALL="po" + +# Most tests require a running LDAP server +RUBY_FAKEGEM_RECIPE_TEST="none" + +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" + +ruby_add_rdepend " + || ( dev-ruby/activemodel:7.2 dev-ruby/activemodel:7.1 dev-ruby/activemodel:7.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 +} |