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 06EC315A7D9 for ; Mon, 20 Mar 2023 04:47:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1F4DCE0825; Mon, 20 Mar 2023 04:47:47 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0093BE0825 for ; Mon, 20 Mar 2023 04:47:46 +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 DF1C53412D7 for ; Mon, 20 Mar 2023 04:47:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8576F7F5 for ; Mon, 20 Mar 2023 04:47:43 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1679287640.a3a8d15530c40542d1f6f1d5423bb706fd516fc1.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/sqlite3/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/sqlite3/sqlite3-1.6.1.ebuild X-VCS-Directories: dev-ruby/sqlite3/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a3a8d15530c40542d1f6f1d5423bb706fd516fc1 X-VCS-Branch: master Date: Mon, 20 Mar 2023 04:47:43 +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: 505a4f8f-cb3e-4ca1-8131-218ef28a78e7 X-Archives-Hash: 0faa81f7e9930dcbf4fde40427e1d46b commit: a3a8d15530c40542d1f6f1d5423bb706fd516fc1 Author: Sam James gentoo org> AuthorDate: Mon Mar 20 04:47:20 2023 +0000 Commit: Sam James gentoo org> CommitDate: Mon Mar 20 04:47:20 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3a8d155 dev-ruby/sqlite3: restore mini_portile2 dep for now It's gone in the *next* release. Closes: https://bugs.gentoo.org/902113 Signed-off-by: Sam James gentoo.org> dev-ruby/sqlite3/sqlite3-1.6.1.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev-ruby/sqlite3/sqlite3-1.6.1.ebuild b/dev-ruby/sqlite3/sqlite3-1.6.1.ebuild index 26060aeac4fe..778eebd8854a 100644 --- a/dev-ruby/sqlite3/sqlite3-1.6.1.ebuild +++ b/dev-ruby/sqlite3/sqlite3-1.6.1.ebuild @@ -24,7 +24,9 @@ IUSE="" RDEPEND+=" >=dev-db/sqlite-3.39.4:3" DEPEND+=" >=dev-db/sqlite-3.39.4:3" +# TODO: drop the mini_portile2 dep after 1.6.1 ruby_add_bdepend " + dev-ruby/mini_portile2:2.8 doc? ( dev-ruby/rdoc dev-ruby/redcloth ) test? ( dev-ruby/minitest:5 )" @@ -36,7 +38,7 @@ all_ruby_compile() { all_fakegem_compile if use doc; then - rdoc --title "${P} Dcoumentation" -o doc --main README.rdoc lib *.rdoc ext/*/*.c || die + rdoc --title "${P} Documentation" -o doc --main README.rdoc lib *.rdoc ext/*/*.c || die rm -f doc/js/*.gz || die fi }