From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A5ED715ACFB for ; Wed, 12 Apr 2023 06:16:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EA677E0886; Wed, 12 Apr 2023 06:16:20 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D1190E0885 for ; Wed, 12 Apr 2023 06:16:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 10BE233BEAE for ; Wed, 12 Apr 2023 06:16:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6DF7BA1E for ; Wed, 12 Apr 2023 06:16:18 +0000 (UTC) From: "Hans de Graaff" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hans de Graaff" Message-ID: <1681280174.cad8cce71540720cb986c4e0e216ac0f3db7b7da.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/activeldap/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/activeldap/activeldap-6.1.0-r1.ebuild X-VCS-Directories: dev-ruby/activeldap/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: cad8cce71540720cb986c4e0e216ac0f3db7b7da X-VCS-Branch: master Date: Wed, 12 Apr 2023 06:16:18 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 40a1a716-7787-4665-9e37-9a2f22a4b7a6 X-Archives-Hash: 3f24254ab023999850092fc776b3018c commit: cad8cce71540720cb986c4e0e216ac0f3db7b7da Author: Hans de Graaff gentoo org> AuthorDate: Wed Apr 12 05:57:47 2023 +0000 Commit: Hans de Graaff gentoo 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 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 +}