public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "David Roman" <davidroman96@gmail.com>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:master commit in: sys-apps/dnf5/
Date: Sun, 10 Aug 2025 23:12:08 +0000 (UTC)	[thread overview]
Message-ID: <1754834468.e72659e690f260aafb6d32df38cd49b15a1d7f73.davidroman@gentoo> (raw)

commit:     e72659e690f260aafb6d32df38cd49b15a1d7f73
Author:     Takuya Wakazono <pastalian46 <AT> gmail <DOT> com>
AuthorDate: Sun Aug 10 14:01:08 2025 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Sun Aug 10 14:01:08 2025 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e72659e6

sys-apps/dnf5: drop 5.2.13.1

Signed-off-by: Takuya Wakazono <pastalian46 <AT> gmail.com>

 sys-apps/dnf5/Manifest             |  1 -
 sys-apps/dnf5/dnf5-5.2.13.1.ebuild | 92 --------------------------------------
 2 files changed, 93 deletions(-)

diff --git a/sys-apps/dnf5/Manifest b/sys-apps/dnf5/Manifest
index a2b18c2e90..ffd9201821 100644
--- a/sys-apps/dnf5/Manifest
+++ b/sys-apps/dnf5/Manifest
@@ -1,3 +1,2 @@
-DIST dnf5-5.2.13.1.tar.gz 1778552 BLAKE2B 469f2304bd6398a964214ea4c2e8b01f0fadd512dfa515759b177ec2dc62409387b90ee9debd0681273ffe8c81e9bc9855c58e855b8f9d614a1164438ad05656 SHA512 40cf7ad76a5a28d9749452ff53e5c08a28f513c4d3238bb5d6ebe3f29dac9dd7365e247ed283f186428267696d88b4a2a51c41fe74f1b6ee2436e460764b22ee
 DIST dnf5-5.2.15.0.tar.gz 1909806 BLAKE2B 8b4a3074139339221add4fb7b21e10e77bfa30becb0bf09da3656772d042a67abeb97cb148046effe59f4733352943ee2703d50eeec88e1aaff1a0af5ccbdc95 SHA512 81328cef4bf1d371b275a50d82a7e641b1eb405a3584f263174be2b1b8db3fdc8225f77a59491e539d990725c54754ed42bae345000ebd306f12e75b1a75facf
 DIST dnf5-5.2.16.0.tar.gz 1943144 BLAKE2B 3c4cc9c822346b9137fd972308a18645362c40e7d7a39bcd80cf86cec1355a9c41646777fe3800f238b64514525bbd3e113f4599252f45cf726a0e9aa9e69a1c SHA512 0ff995e94d19d9f0854c138b892e1e9c7b62732316a0c068279e31db4d5d1870fc258515599c2ae43513fb02cf7dfadeb357311e3bc323bd13751a5d126be544

diff --git a/sys-apps/dnf5/dnf5-5.2.13.1.ebuild b/sys-apps/dnf5/dnf5-5.2.13.1.ebuild
deleted file mode 100644
index 19f0eb4e59..0000000000
--- a/sys-apps/dnf5/dnf5-5.2.13.1.ebuild
+++ /dev/null
@@ -1,92 +0,0 @@
-# Copyright 2024-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{12..14} )
-inherit cmake python-single-r1
-
-DESCRIPTION="Command-line package manager"
-HOMEPAGE="https://github.com/rpm-software-management/dnf5"
-SRC_URI="https://github.com/rpm-software-management/dnf5/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2+ LGPL-2.1+"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="appstream nls python systemd test"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-	>=app-arch/rpm-4.17.0
-	dev-cpp/sdbus-c++:0/2
-	dev-cpp/toml11
-	>=dev-db/sqlite-3.35.0:3
-	>=dev-libs/glib-2.46.0:2
-	dev-libs/json-c:=
-	dev-libs/libfmt:=
-	>=dev-libs/librepo-1.17.1
-	>=dev-libs/libsolv-0.7.25
-	dev-libs/libxml2
-	sys-apps/util-linux
-	>=sys-libs/libmodulemd-2.11.2
-	sys-libs/zlib
-	appstream? ( >=dev-libs/appstream-0.16:= )
-	python? ( ${PYTHON_DEPS} )
-	systemd? ( sys-apps/systemd:= )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
-	dev-python/sphinx
-	virtual/pkgconfig
-	python? ( dev-lang/swig )
-	test? (
-		app-arch/rpm
-		app-arch/createrepo_c
-		dev-util/cppunit
-	)
-"
-
-PATCHES=(
-	# Prevent test suite from writing to system files.
-	"${FILESDIR}/${PN}-5.2.5.0-sandbox-test.patch"
-)
-
-pkg_setup() {
-	use python && python-single-r1_pkg_setup
-}
-
-src_prepare() {
-	cmake_src_prepare
-	# Replace hardcoded TMPDIR.
-	sed -i "s|/tmp/|${T}/|" test/libdnf5/utils/test_fs.cpp || die
-	# remove -Werror{,=unused-result}; bug 936870
-	sed -i 's/-Werror[^[:space:])]*//' CMakeLists.txt || die
-	# breathe is only needed for api doc
-	sed -i "/'breathe',/d" doc/conf.py.in || die
-}
-
-src_configure() {
-	local mycmakeargs=(
-		-DWITH_HTML=OFF
-		-DWITH_PERL5=OFF
-		-DWITH_RUBY=OFF
-		-DWITH_ZCHUNK=OFF
-		-DWITH_PLUGIN_APPSTREAM=$(usex appstream)
-		-DWITH_PYTHON3=$(usex python)
-		-DWITH_SYSTEMD=$(usex systemd)
-		-DWITH_TESTS=$(usex test)
-		-DWITH_TRANSLATIONS=$(usex nls)
-	)
-	cmake_src_configure
-}
-
-src_compile() {
-	cmake_src_compile
-	cmake_src_compile doc-man
-}
-
-src_install() {
-	cmake_src_install
-	use python && python_optimize
-}


             reply	other threads:[~2025-08-10 23:12 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-08-10 23:12 David Roman [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-09-04 14:57 [gentoo-commits] repo/proj/guru:master commit in: sys-apps/dnf5/ David Roman
2025-09-04 14:57 David Roman
2025-08-10 23:12 David Roman
2025-07-26 21:13 David Roman
2025-07-26 21:13 David Roman
2025-05-10 19:08 David Roman
2025-05-10 19:08 David Roman
2025-03-12 14:29 David Roman
2025-02-09 10:28 Florian Schmaus
2024-12-10 11:32 David Roman
2024-11-14 16:17 David Roman
2024-09-12  9:37 David Roman
2024-09-12  9:37 David Roman
2024-08-28 10:57 David Roman
2024-08-05  5:20 Viorel Munteanu
2024-07-30 16:54 David Roman
2024-07-28 21:21 Lucio Sauer
2024-07-28 15:24 Lucio Sauer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1754834468.e72659e690f260aafb6d32df38cd49b15a1d7f73.davidroman@gentoo \
    --to=davidroman96@gmail.com \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox