Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/ruby-ldap/
Date: Fri, 24 Jun 2022 07:25:37
Message-Id: 1656055529.34d8ed57bb7485e30d6cee4de55afad0f0d86bca.graaff@gentoo
1 commit: 34d8ed57bb7485e30d6cee4de55afad0f0d86bca
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jun 24 07:13:06 2022 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 24 07:25:29 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34d8ed57
7
8 dev-ruby/ruby-ldap: drop 0.9.20-r2
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11
12 dev-ruby/ruby-ldap/ruby-ldap-0.9.20-r2.ebuild | 41 ---------------------------
13 1 file changed, 41 deletions(-)
14
15 diff --git a/dev-ruby/ruby-ldap/ruby-ldap-0.9.20-r2.ebuild b/dev-ruby/ruby-ldap/ruby-ldap-0.9.20-r2.ebuild
16 deleted file mode 100644
17 index ee6c408713bb..000000000000
18 --- a/dev-ruby/ruby-ldap/ruby-ldap-0.9.20-r2.ebuild
19 +++ /dev/null
20 @@ -1,41 +0,0 @@
21 -# Copyright 1999-2022 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=6
25 -USE_RUBY="ruby24 ruby25 ruby26 ruby27"
26 -
27 -inherit multilib ruby-fakegem
28 -
29 -RUBY_FAKEGEM_RECIPE_DOC="rdoc"
30 -RUBY_FAKEGEM_TASK_TEST=""
31 -RUBY_FAKEGEM_EXTRADOC="ChangeLog FAQ NOTES README TODO"
32 -
33 -DESCRIPTION="A Ruby interface to some LDAP libraries"
34 -HOMEPAGE="https://github.com/bearded/ruby-ldap"
35 -LICENSE="BSD"
36 -SLOT="0"
37 -KEYWORDS="amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc x86"
38 -IUSE="ssl"
39 -DEPEND=">=net-nds/openldap-2:=
40 - dev-libs/cyrus-sasl
41 - ssl? ( dev-libs/openssl:0= )"
42 -RDEPEND="${DEPEND}"
43 -
44 -# Current test set is interactive due to certificate generation and requires
45 -# running LDAP daemon
46 -RESTRICT="test"
47 -
48 -each_ruby_configure() {
49 - local myconf="--with-openldap2"
50 - if ! use ssl ; then
51 - myconf="${myconf} --without-libcrypto --without-libssl"
52 - fi
53 - ${RUBY} extconf.rb ${myconf} || die "extconf.rb failed"
54 - sed -i -e 's:-Wl,--no-undefined::' \
55 - -e "s/^ldflags = /ldflags = $\(LDFLAGS\) /" Makefile || die
56 -}
57 -
58 -each_ruby_compile() {
59 - emake V=1
60 - cp ldap$(get_modname) lib/ || die
61 -}