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 B7BDA15802F for ; Sun, 2 Apr 2023 00:57:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 82F12E07E0; Sun, 2 Apr 2023 00:57:19 +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 B2DEFE07D3 for ; Sun, 2 Apr 2023 00:57:18 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 394F7340E3E for ; Sun, 2 Apr 2023 00:57:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E8CE5A19 for ; Sun, 2 Apr 2023 00:57:13 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1680397012.78b8ae45f7267ffb506f53f14d0e4c345e3d8b66.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/rest/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/rest/rest-0.9.1.ebuild X-VCS-Directories: net-libs/rest/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 78b8ae45f7267ffb506f53f14d0e4c345e3d8b66 X-VCS-Branch: master Date: Sun, 2 Apr 2023 00:57:13 +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: 888673a7-078c-4fa3-832d-d488a2e47377 X-Archives-Hash: b9a867dd0d81b06444ed12f24e21e38a commit: 78b8ae45f7267ffb506f53f14d0e4c345e3d8b66 Author: Matt Turner gentoo org> AuthorDate: Sun Apr 2 00:32:51 2023 +0000 Commit: Matt Turner gentoo org> CommitDate: Sun Apr 2 00:56:52 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78b8ae45 net-libs/rest: Drop old versions Signed-off-by: Matt Turner gentoo.org> net-libs/rest/rest-0.9.1.ebuild | 59 ----------------------------------------- 1 file changed, 59 deletions(-) diff --git a/net-libs/rest/rest-0.9.1.ebuild b/net-libs/rest/rest-0.9.1.ebuild deleted file mode 100644 index 545813a842ca..000000000000 --- a/net-libs/rest/rest-0.9.1.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit gnome.org meson vala - -DESCRIPTION="Helper library for RESTful services" -HOMEPAGE="https://wiki.gnome.org/Projects/Librest" - -LICENSE="LGPL-2.1" -SLOT="1.0" # librest_soversion -KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv sparc x86" -IUSE="gtk-doc +introspection test vala" -REQUIRED_USE=" - gtk-doc? ( introspection ) - vala? ( introspection ) -" -RESTRICT="!test? ( test )" - -RDEPEND=" - >=dev-libs/glib-2.44.0:2 - >=net-libs/libsoup-2.99.2:3.0 - dev-libs/json-glib:0[introspection?] - dev-libs/libxml2:2 - app-misc/ca-certificates - introspection? ( >=dev-libs/gobject-introspection-1.74.0:= ) -" -DEPEND="${RDEPEND}" -BDEPEND=" - dev-util/glib-utils - gtk-doc? ( >=dev-util/gi-docgen-2021.6 ) - vala? ( $(vala_depend) ) -" - -src_prepare() { - default - vala_setup - - # The only two tests from the rest-extras suite (flickr and lastfm) require - # network access - if has network-sandbox ${FEATURES}; then - sed -i -e '/flickr/d' -e '/lastfm/d' tests/meson.build - fi -} - -src_configure() { - local emesonargs=( - -Dca_certificates=true - -Dca_certificates_path="${EPREFIX}"/etc/ssl/certs/ca-certificates.crt - $(meson_use introspection) - $(meson_use vala vapi) - -Dexamples=false - $(meson_use gtk-doc gtk_doc) - -Dsoup2=false - $(meson_use test tests) - ) - meson_src_configure -}