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 393621581D3 for ; Sat, 18 May 2024 18:56:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7D020E29F6; Sat, 18 May 2024 18:56:51 +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 61B71E29F6 for ; Sat, 18 May 2024 18:56:51 +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 97DE533BE93 for ; Sat, 18 May 2024 18:56:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F100598E for ; Sat, 18 May 2024 18:56:48 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1716058584.d24600a71dade13abf890f10ae29a2d39302b68c.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libunique/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libunique/libunique-3.0.2-r1.ebuild X-VCS-Directories: dev-libs/libunique/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: d24600a71dade13abf890f10ae29a2d39302b68c X-VCS-Branch: master Date: Sat, 18 May 2024 18:56:48 +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: 7b9138b3-4931-41b6-a0bb-a30c39a2ef49 X-Archives-Hash: 5483fdfbb856581e932dce0ecbef54e4 commit: d24600a71dade13abf890f10ae29a2d39302b68c Author: Arthur Zamarin gentoo org> AuthorDate: Sat May 18 18:56:24 2024 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Sat May 18 18:56:24 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d24600a7 dev-libs/libunique: drop 3.0.2-r1, EAPI6-- Signed-off-by: Arthur Zamarin gentoo.org> dev-libs/libunique/libunique-3.0.2-r1.ebuild | 46 ---------------------------- 1 file changed, 46 deletions(-) diff --git a/dev-libs/libunique/libunique-3.0.2-r1.ebuild b/dev-libs/libunique/libunique-3.0.2-r1.ebuild deleted file mode 100644 index 973d210fa476..000000000000 --- a/dev-libs/libunique/libunique-3.0.2-r1.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -GNOME2_LA_PUNT="yes" - -inherit gnome2 virtualx - -DESCRIPTION="A library for writing single instance application" -HOMEPAGE="https://wiki.gnome.org/Attic/LibUnique" - -LICENSE="LGPL-2.1" -SLOT="3" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux" -IUSE="debug +introspection" - -RDEPEND=" - >=dev-libs/glib-2.25.7:2 - sys-apps/dbus[X] - >=x11-libs/gtk+-2.90.0:3[introspection?] - x11-libs/libX11 - introspection? ( >=dev-libs/gobject-introspection-0.9.0:= ) -" -DEPEND="${RDEPEND} - dev-util/glib-utils - >=dev-build/gtk-doc-am-1.11 - virtual/pkgconfig -" -# For eautoreconf -# dev-build/gtk-doc-am - -src_configure() { - # --disable-dbus means gdbus is used instead of dbus-glib - gnome2_src_configure \ - --disable-static \ - --disable-maintainer-flags \ - --disable-dbus \ - $(usex debug --enable-debug=yes ' ') \ - $(use_enable introspection) -} - -src_test() { - cd "${S}/tests" - cp "${FILESDIR}/run-tests" . || die "Unable to cp \${FILESDIR}/run-tests" - virtx emake -f run-tests -}