diff options
author | Matt Turner <mattst88@gentoo.org> | 2022-03-18 12:17:14 -0700 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2022-03-18 12:22:39 -0700 |
commit | 6dddfec5fb953232af038d38ac5de59fc70193af (patch) | |
tree | 0877f4d6f8fb5acbfda27e24176aed6521378166 /app-crypt/libsecret | |
parent | app-arch/gnome-autoar: Drop old versions (diff) | |
download | gentoo-6dddfec5fb953232af038d38ac5de59fc70193af.tar.gz gentoo-6dddfec5fb953232af038d38ac5de59fc70193af.tar.bz2 gentoo-6dddfec5fb953232af038d38ac5de59fc70193af.zip |
app-crypt/libsecret: Drop old versions
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'app-crypt/libsecret')
-rw-r--r-- | app-crypt/libsecret/Manifest | 1 | ||||
-rw-r--r-- | app-crypt/libsecret/libsecret-0.20.4-r1.ebuild | 95 |
2 files changed, 0 insertions, 96 deletions
diff --git a/app-crypt/libsecret/Manifest b/app-crypt/libsecret/Manifest index 3eda7428e115..0c168c61d169 100644 --- a/app-crypt/libsecret/Manifest +++ b/app-crypt/libsecret/Manifest @@ -1,2 +1 @@ -DIST libsecret-0.20.4.tar.xz 529916 BLAKE2B d5922dcb1eb27e4cc6bc7770926fc3191c9f4634867ff9682fd33f9373d6fa2d334c9c1b995bd208bbf178af008ec7b224bd5388427617fbd7e48d05d2e35823 SHA512 599482796af001703c25d181a710c5a3207f44d4d0036ef2001cc541bde9ef453172b71df9bb214d27d1fbd2f28c1b5a5efdbd5faca3561188c07dccdc7d7c15 DIST libsecret-0.20.5.tar.xz 187340 BLAKE2B cde5094eaaf54f251c19afb015c39cc88435dafe6ee682ca8f9d1917dd5b3dc8cc1609cdbf2a3a42d2592c2a149bec5fe28b2f4ec179b92c0d0f07d2f14c1792 SHA512 61ca248aafd265e1f31d56c9084c68d880ebf03660ace3d4a6c6622ab306b56e921ac24647b6a60633bfa99c8a0407d4ae1aa6148511f289bf5ce2025b72692a diff --git a/app-crypt/libsecret/libsecret-0.20.4-r1.ebuild b/app-crypt/libsecret/libsecret-0.20.4-r1.ebuild deleted file mode 100644 index 37666f544f15..000000000000 --- a/app-crypt/libsecret/libsecret-0.20.4-r1.ebuild +++ /dev/null @@ -1,95 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python3_{8..10} ) -VALA_USE_DEPEND=vapigen - -inherit gnome2 meson-multilib python-any-r1 vala virtualx - -DESCRIPTION="GObject library for accessing the freedesktop.org Secret Service API" -HOMEPAGE="https://wiki.gnome.org/Projects/Libsecret" - -LICENSE="LGPL-2.1+ Apache-2.0" # Apache-2.0 license is used for tests only -SLOT="0" - -IUSE="+crypt gtk-doc +introspection test +vala" -RESTRICT="!test? ( test )" -REQUIRED_USE=" - vala? ( introspection ) - gtk-doc? ( crypt ) -" - -KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~mips ppc ppc64 ~riscv sparc x86" - -DEPEND=" - >=dev-libs/glib-2.44:2[${MULTILIB_USEDEP}] - crypt? ( >=dev-libs/libgcrypt-1.2.2:0=[${MULTILIB_USEDEP}] ) - introspection? ( >=dev-libs/gobject-introspection-1.54:= ) -" -RDEPEND="${DEPEND} - virtual/secret-service" -BDEPEND=" - app-text/docbook-xml-dtd:4.2 - dev-libs/libxslt - dev-util/gdbus-codegen - dev-util/glib-utils - >=sys-devel/gettext-0.19.8 - virtual/pkgconfig - gtk-doc? ( - app-text/docbook-xml-dtd:4.1.2 - dev-util/gtk-doc - ) - test? ( - $(python_gen_any_dep ' - dev-python/mock[${PYTHON_USEDEP}] - dev-python/dbus-python[${PYTHON_USEDEP}] - introspection? ( dev-python/pygobject:3[${PYTHON_USEDEP}] )') - introspection? ( >=dev-libs/gjs-1.32 ) - ) - vala? ( $(vala_depend) ) -" - -PATCHES=( - "${FILESDIR}"/${P}-meson-build-test-vala-unstable-with-DSECRET_WITH_UNS.patch -) - -python_check_deps() { - if use introspection; then - has_version -b "dev-python/pygobject:3[${PYTHON_USEDEP}]" || return - fi - has_version -b "dev-python/mock[${PYTHON_USEDEP}]" && - has_version -b "dev-python/dbus-python[${PYTHON_USEDEP}]" -} - -pkg_setup() { - use test && python-any-r1_pkg_setup -} - -src_prepare() { - use vala && vala_src_prepare - default - - # Remove @filename@ from the header template that would otherwise cause - # differences dependent on the ABI - sed -e '/enumerations from "@filename@"/d' \ - -i libsecret/secret-enum-types.h.template || die -} - -multilib_src_configure() { - local emesonargs=( - $(meson_use crypt gcrypt) - - # Don't build docs multiple times - $(meson_native_true manpage) - $(meson_native_use_bool gtk-doc gtk_doc) - - $(meson_native_use_bool introspection) - $(meson_native_use_bool vala vapi) - ) - meson_src_configure -} - -multilib_src_test() { - virtx meson_src_test -} |