From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/jq/
Date: Thu, 18 Apr 2024 05:34:43 +0000 (UTC) [thread overview]
Message-ID: <1713418315.8d64b3da3e2b4f45b6d9d41e68dd6013d1d5a14c.mgorny@gentoo> (raw)
commit: 8d64b3da3e2b4f45b6d9d41e68dd6013d1d5a14c
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 18 05:31:55 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Apr 18 05:31:55 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d64b3da
app-misc/jq: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
app-misc/jq/Manifest | 1 -
app-misc/jq/jq-1.7.ebuild | 84 -----------------------------------------------
2 files changed, 85 deletions(-)
diff --git a/app-misc/jq/Manifest b/app-misc/jq/Manifest
index 847492397362..cb0502875c76 100644
--- a/app-misc/jq/Manifest
+++ b/app-misc/jq/Manifest
@@ -1,2 +1 @@
DIST jq-1.7.1.gh.tar.gz 1323338 BLAKE2B 17e3b68e23f9a7f1aa8749ede6c0b8fe435990899886f0c96da36d130c17d13609ba7f910321316f0c3b35985360f8cb5e6a3b12caea5e9bc7792e128798f137 SHA512 af9c444e5306423182f467a53acdf45bb8aefa058a47f490ce16395f0aebfb7627e3843f65e96f41cd9d4b72b8ad274ab0bdb061abc6990b1158f86d2256d4ec
-DIST jq-1.7.gh.tar.gz 1267139 BLAKE2B b6a54f9beaabd7915d7a8f14cda9621573f1796af53fe1645561a7a199787a7e9b2b2df038208f23e63f339dec567851b70696ffb8194986250527333d36d44e SHA512 01676319fe98d5ab1e278430b2c58ec594191cc9485a20312d658c0e199ac7ea5f5e934817ce98da0864ec7e0a018aae9b87525260e8ab6a7bde918db483bd84
diff --git a/app-misc/jq/jq-1.7.ebuild b/app-misc/jq/jq-1.7.ebuild
deleted file mode 100644
index 81be3fadd8dc..000000000000
--- a/app-misc/jq/jq-1.7.ebuild
+++ /dev/null
@@ -1,84 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools
-
-MY_PV="${PV/_/}"
-MY_P="${PN}-${MY_PV}"
-DESCRIPTION="A lightweight and flexible command-line JSON processor"
-HOMEPAGE="https://stedolan.github.io/jq/"
-SRC_URI="https://github.com/jqlang/jq/archive/refs/tags/${MY_P}.tar.gz -> ${P}.gh.tar.gz"
-S="${WORKDIR}/${PN}-${MY_P}"
-
-LICENSE="MIT CC-BY-3.0"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~ia64 ~loong ~ppc ppc64 ~riscv ~sparc x86 ~amd64-linux ~arm64-macos ~x64-macos ~x64-solaris"
-IUSE="+oniguruma static-libs test"
-
-ONIGURUMA_MINPV='>=dev-libs/oniguruma-6.9.3' # Keep this in sync with bundled modules/oniguruma/
-DEPEND="
- >=sys-devel/bison-3.0
- app-alternatives/lex
- oniguruma? ( ${ONIGURUMA_MINPV}:=[static-libs?] )
-"
-RDEPEND="
- !static-libs? (
- oniguruma? ( ${ONIGURUMA_MINPV}[static-libs?] )
- )
-"
-PATCHES=(
- "${FILESDIR}"/jq-1.6-r3-never-bundle-oniguruma.patch
- "${FILESDIR}"/jq-1.7-runpath.patch
-)
-
-RESTRICT="!test? ( test )"
-REQUIRED_USE="test? ( oniguruma )"
-
-src_prepare() {
- sed -e '/^dist_doc_DATA/d; s:-Wextra ::' -i Makefile.am || die
- printf "#!/bin/sh\\nprintf '%s'\\n\n" "${MY_PV}" > scripts/version || die
-
- # jq-1.6-r3-never-bundle-oniguruma makes sure we build with the system oniguruma,
- # but the bundled copy of oniguruma still gets eautoreconf'd since it
- # exists; save the cycles by nuking it.
- sed -e '/modules\/oniguruma/d' -i Makefile.am || die
- rm -rf "${S}"/modules/oniguruma || die
-
- default
-
- sed -i "s/\[jq_version\]/[${MY_PV}]/" configure.ac || die
-
- eautoreconf
-}
-
-src_configure() {
- local econfargs=(
- # don't try to rebuild docs
- --disable-docs
- --disable-valgrind
- --disable-maintainer-mode
- --enable-rpathhack
- $(use_enable static-libs static)
- $(use_with oniguruma oniguruma yes)
- )
- econf "${econfargs[@]}"
-}
-
-src_test() {
- if ! LD_LIBRARY_PATH="${S}/.libs" nonfatal emake check; then
- if [[ -r "${S}/test-suite.log" ]]; then
- eerror "Tests failed, outputting testsuite log"
- cat "${S}/test-suite.log"
- fi
- die "Tests failed"
- fi
-}
-
-src_install() {
- local DOCS=( AUTHORS NEWS.md README.md SECURITY.md )
- default
-
- use static-libs || { find "${D}" -name '*.la' -delete || die; }
-}
next reply other threads:[~2024-04-18 5:34 UTC|newest]
Thread overview: 54+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-04-18 5:34 Michał Górny [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-12-09 5:27 [gentoo-commits] repo/gentoo:master commit in: app-misc/jq/ Sam James
2024-12-01 15:02 Sam James
2024-04-06 12:32 Arthur Zamarin
2024-04-06 12:32 Arthur Zamarin
2023-12-13 20:39 Patrick McLean
2023-10-06 17:05 Arthur Zamarin
2023-10-06 14:55 Sam James
2023-10-06 14:31 Sam James
2023-10-06 14:29 Sam James
2023-09-07 21:40 Patrick McLean
2023-08-30 1:57 Patrick McLean
2023-08-08 2:16 Patrick McLean
2023-06-22 11:14 Fabian Groffen
2023-06-22 8:31 Fabian Groffen
2023-02-28 18:30 Patrick McLean
2023-02-28 1:30 Sam James
2023-02-10 22:18 Patrick McLean
2022-08-25 7:07 WANG Xuerui
2021-08-23 22:59 Marek Szuba
2021-04-18 2:58 Sam James
2021-03-04 0:23 Sam James
2021-02-05 12:31 Sam James
2021-02-04 18:21 Patrick McLean
2020-03-17 18:13 Patrick McLean
2019-11-19 15:40 Agostino Sarubbo
2019-11-19 2:06 Patrick McLean
2019-11-19 1:46 Patrick McLean
2019-11-19 1:34 Patrick McLean
2019-11-19 1:28 Patrick McLean
2019-11-17 5:08 Tim Harder
2019-09-28 2:59 Tim Harder
2019-04-17 18:07 Aaron Bauman
2019-04-13 4:14 Robin H. Johnson
2019-04-13 4:07 Robin H. Johnson
2018-12-05 23:54 Patrick McLean
2018-10-16 9:18 Tobias Klausmann
2017-09-23 10:29 Tim Harder
2017-09-23 10:27 Tim Harder
2017-09-23 10:25 Tim Harder
2017-09-17 11:42 Sergei Trofimovich
2017-09-17 11:14 Sergei Trofimovich
2017-08-17 19:12 Tim Harder
2017-08-17 19:12 Tim Harder
2017-07-21 17:54 Thomas Deutschmann
2017-07-11 19:56 Sergei Trofimovich
2017-07-10 9:32 Sergei Trofimovich
2017-07-10 7:08 Sergei Trofimovich
2017-06-29 8:24 Fabian Groffen
2016-08-08 15:30 Tim Harder
2016-02-01 22:53 Patrick McLean
2016-02-01 22:53 Patrick McLean
2016-01-09 1:14 Patrick McLean
2015-12-22 13:51 Fabian Groffen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1713418315.8d64b3da3e2b4f45b6d9d41e68dd6013d1d5a14c.mgorny@gentoo \
--to=mgorny@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox