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: Sat, 10 May 2025 19:08:09 +0000 (UTC)	[thread overview]
Message-ID: <1746894903.64f1fda7b9a4e7fae896a1f383ce37ef5ad0337b.davidroman@gentoo> (raw)

commit:     64f1fda7b9a4e7fae896a1f383ce37ef5ad0337b
Author:     Takuya Wakazono <pastalian46 <AT> gmail <DOT> com>
AuthorDate: Sat May 10 13:59:46 2025 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Sat May 10 16:35:03 2025 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=64f1fda7

sys-apps/dnf5: drop 5.2.11.0

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

 sys-apps/dnf5/Manifest             |  1 -
 sys-apps/dnf5/dnf5-5.2.11.0.ebuild | 79 --------------------------------------
 2 files changed, 80 deletions(-)

diff --git a/sys-apps/dnf5/Manifest b/sys-apps/dnf5/Manifest
index f9a3220bd..da005e69d 100644
--- a/sys-apps/dnf5/Manifest
+++ b/sys-apps/dnf5/Manifest
@@ -1,3 +1,2 @@
-DIST dnf5-5.2.11.0.tar.gz 1729306 BLAKE2B fd089677d313991b325c5e8286ab5f14e5a9835775fd9e6d8b1c9d3767c9f7602c18c62c425eb7d0469072fcb9ae2f1c4eec4459e4d8d531bf1a7176ec818e5d SHA512 be97cbead8f083916bfe6b38abc980aabb4ba3534aef836334b901194679b47ba38c122109b880e4d1c07db189896226c0be83c985e07a0c5443c475b9f6c8cf
 DIST dnf5-5.2.12.0.tar.gz 1744514 BLAKE2B d4b43658e9a0d8d512e1c24338f4fdf43f0e669ddbc1abbf1b2de426995448c3e7e78915c626c5024252bbd1a1e9231c0cae29358390e7ff0071b3a039056d2d SHA512 be2116ee3ae772acfbddbd81149683160c4110d44be490613aa6a65ef42512a899b00234d513f4a1fcf1b6f4481ba55bd7f1c97505dcf5211ef925ffb118b336
 DIST dnf5-5.2.13.1.tar.gz 1778552 BLAKE2B 469f2304bd6398a964214ea4c2e8b01f0fadd512dfa515759b177ec2dc62409387b90ee9debd0681273ffe8c81e9bc9855c58e855b8f9d614a1164438ad05656 SHA512 40cf7ad76a5a28d9749452ff53e5c08a28f513c4d3238bb5d6ebe3f29dac9dd7365e247ed283f186428267696d88b4a2a51c41fe74f1b6ee2436e460764b22ee

diff --git a/sys-apps/dnf5/dnf5-5.2.11.0.ebuild b/sys-apps/dnf5/dnf5-5.2.11.0.ebuild
deleted file mode 100644
index b7e6cd0c3..000000000
--- a/sys-apps/dnf5/dnf5-5.2.11.0.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 2024-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-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 systemd test"
-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:= )
-	systemd? ( sys-apps/systemd:= )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
-	dev-python/sphinx
-	virtual/pkgconfig
-	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"
-)
-
-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_PYTHON3=OFF
-		-DWITH_RUBY=OFF
-		-DWITH_ZCHUNK=OFF
-		-DWITH_PLUGIN_APPSTREAM=$(usex appstream)
-		-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
-}


             reply	other threads:[~2025-05-10 19:08 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-05-10 19:08 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-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-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=1746894903.64f1fda7b9a4e7fae896a1f383ce37ef5ad0337b.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