From 428f7f0c8f19ad11a0344426b001890073022435 Mon Sep 17 00:00:00 2001 From: Julien Roy Date: Mon, 11 Mar 2024 18:59:00 -0400 Subject: [PATCH] net-news/gfeeds: drop debug USE flag Caused compilation failure Signed-off-by: Julien Roy --- net-news/gfeeds/gfeeds-2.2.0.ebuild | 66 ++++++++++++++--------------- 1 file changed, 32 insertions(+), 34 deletions(-) diff --git a/net-news/gfeeds/gfeeds-2.2.0.ebuild b/net-news/gfeeds/gfeeds-2.2.0.ebuild index da62fc5498..77182f7617 100644 --- a/net-news/gfeeds/gfeeds-2.2.0.ebuild +++ b/net-news/gfeeds/gfeeds-2.2.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 2023 Gentoo Authors +# Copyright 2023-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -17,57 +17,55 @@ PATCHES="${FILESDIR}/${P}-blueprint-0.80-fix.patch" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64" -IUSE="debug" REQUIRED_USE="${PYTHON_REQUIRED_USE}" DEPEND=" - ${PYTHON_DEPS} - $(python_gen_cond_dep ' - dev-python/beautifulsoup4[${PYTHON_USEDEP}] - dev-python/html5lib[${PYTHON_USEDEP}] - dev-python/humanize[${PYTHON_USEDEP}] - dev-python/pillow[${PYTHON_USEDEP}] - dev-python/pygments[${PYTHON_USEDEP}] - dev-python/python-dateutil[${PYTHON_USEDEP}] - dev-python/python-magic[${PYTHON_USEDEP}] - dev-python/pytz[${PYTHON_USEDEP}] - dev-python/readability-lxml[${PYTHON_USEDEP}] - dev-python/requests[${PYTHON_USEDEP}] - ') - dev-util/blueprint-compiler - gui-libs/gtk:4 - gui-libs/libadwaita - net-libs/syndication-domination[python] - net-libs/webkit-gtk:6 + ${PYTHON_DEPS} + $(python_gen_cond_dep ' + dev-python/beautifulsoup4[${PYTHON_USEDEP}] + dev-python/html5lib[${PYTHON_USEDEP}] + dev-python/humanize[${PYTHON_USEDEP}] + dev-python/pillow[${PYTHON_USEDEP}] + dev-python/pygments[${PYTHON_USEDEP}] + dev-python/python-dateutil[${PYTHON_USEDEP}] + dev-python/python-magic[${PYTHON_USEDEP}] + dev-python/pytz[${PYTHON_USEDEP}] + dev-python/readability-lxml[${PYTHON_USEDEP}] + dev-python/requests[${PYTHON_USEDEP}] + ') + dev-util/blueprint-compiler + gui-libs/gtk:4 + gui-libs/libadwaita + net-libs/syndication-domination[python] + net-libs/webkit-gtk:6 " RDEPEND="${DEPEND}" BDEPEND=">=dev-build/meson-0.58" src_configure() { - local emesonargs=( - --buildtype $(usex debug debug release) - --prefix=/usr - ) - meson_src_configure + local emesonargs=( + --prefix=/usr + ) + meson_src_configure } src_compile() { - meson_src_compile + meson_src_compile } src_install() { - meson_src_install - python_fix_shebang "${D}"/usr/bin/gfeeds + meson_src_install + python_fix_shebang "${D}"/usr/bin/gfeeds } pkg_postinst() { - gnome2_schemas_update - xdg_icon_cache_update - xdg_desktop_database_update + gnome2_schemas_update + xdg_icon_cache_update + xdg_desktop_database_update } pkg_postrm() { - gnome2_schemas_update - xdg_icon_cache_update - xdg_desktop_database_update + gnome2_schemas_update + xdg_icon_cache_update + xdg_desktop_database_update }