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 A7F66158020 for ; Fri, 28 Oct 2022 15:06:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5BFD0E0817; Fri, 28 Oct 2022 15:06:46 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 42035E0817 for ; Fri, 28 Oct 2022 15:06: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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 33A5D3407E6 for ; Fri, 28 Oct 2022 15:06:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8A58162F for ; Fri, 28 Oct 2022 15:06:43 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1666969486.8d760b9ed13b320fe43e37ca6de3b3dd47902069.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libaccounts-glib/libaccounts-glib-1.26.ebuild X-VCS-Directories: net-libs/libaccounts-glib/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 8d760b9ed13b320fe43e37ca6de3b3dd47902069 X-VCS-Branch: master Date: Fri, 28 Oct 2022 15:06: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: b6cf827e-f64d-4d97-84c6-76acc12dac76 X-Archives-Hash: 5a3221523d19e5373eca9a80403e575b commit: 8d760b9ed13b320fe43e37ca6de3b3dd47902069 Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Oct 28 15:04:46 2022 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Oct 28 15:04:46 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d760b9e net-libs/libaccounts-glib: drop 1.26 Signed-off-by: Andreas Sturmlechner gentoo.org> .../libaccounts-glib/libaccounts-glib-1.26.ebuild | 63 ---------------------- 1 file changed, 63 deletions(-) diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.26.ebuild b/net-libs/libaccounts-glib/libaccounts-glib-1.26.ebuild deleted file mode 100644 index 04e4aa4fa062..000000000000 --- a/net-libs/libaccounts-glib/libaccounts-glib-1.26.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..11} ) -inherit meson python-r1 vala - -DESCRIPTION="Accounts SSO (Single Sign-On) management library for GLib applications" -HOMEPAGE="https://gitlab.com/accounts-sso/libaccounts-glib" -SRC_URI="https://gitlab.com/accounts-sso/${PN}/-/archive/VERSION_${PV}/${PN}-VERSION_${PV}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/${PN}-VERSION_${PV}" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv x86" -IUSE="doc" - -REQUIRED_USE="${PYTHON_REQUIRED_USE}" -# fails -RESTRICT="test" - -RDEPEND="${PYTHON_DEPS} - dev-db/sqlite:3 - dev-libs/glib:2 - dev-libs/gobject-introspection:= - dev-libs/libxml2 - dev-python/pygobject:3[${PYTHON_USEDEP}] -" -DEPEND="${RDEPEND}" -BDEPEND=" - $(vala_depend) - dev-libs/check - dev-util/gdbus-codegen - dev-util/glib-utils - doc? ( dev-util/gtk-doc ) -" - -PATCHES=( - "${FILESDIR}/${PN}-1.25-assert-failure.patch" - "${FILESDIR}/${P}-project-version.patch" -) - -src_prepare() { - default - vala_setup --ignore-use - - use doc || sed -e "/^subdir('docs')$/d" -i meson.build || die -} - -src_configure() { - python_foreach_impl run_in_build_dir meson_src_configure -} - -src_compile() { - python_foreach_impl run_in_build_dir meson_src_compile -} - -src_install() { - einstalldocs - python_foreach_impl run_in_build_dir meson_src_install - python_foreach_impl python_optimize -}