public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/libosinfo/
Date: Fri, 28 Mar 2025 15:10:04 +0000 (UTC)	[thread overview]
Message-ID: <1743174483.4bcac29075294f7bf6c30e83def92d8ced4fea34.sam@gentoo> (raw)

commit:     4bcac29075294f7bf6c30e83def92d8ced4fea34
Author:     Michal Privoznik <michal.privoznik <AT> gmail <DOT> com>
AuthorDate: Wed Mar 26 18:33:30 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 28 15:08:03 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bcac290

sys-libs/libosinfo: Drop 1.10.0-r1

There's a newer release (1.11.0), which is stable.

Signed-off-by: Michal Privoznik <michal.privoznik <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/41311
Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-libs/libosinfo/Manifest                   |  1 -
 sys-libs/libosinfo/libosinfo-1.10.0-r1.ebuild | 68 ---------------------------
 2 files changed, 69 deletions(-)

diff --git a/sys-libs/libosinfo/Manifest b/sys-libs/libosinfo/Manifest
index 552c6fb73bbc..c8ff6e4365c4 100644
--- a/sys-libs/libosinfo/Manifest
+++ b/sys-libs/libosinfo/Manifest
@@ -1,3 +1,2 @@
-DIST libosinfo-1.10.0.tar.xz 293804 BLAKE2B 5c676a466459c4e4150294fd263cd32ed95f181a3dea913977165f61dd81d75fb545dd96d0f87661ea13db9f10706c064421a5ecf0ec1b220054149c66c957d1 SHA512 58a30d62d5a4862150826fd9fda3d5189df3693efca3a8732efaa470fa65dbb64181987534ccc13c0bf2fd4efda229217a169590405f0601927472f6ca08e4e7
 DIST libosinfo-1.11.0.tar.xz 303944 BLAKE2B 3d61d66c6ef7a9e2706a1a5dd17d8ceff4538a8ff5988eb81509cbd81673dd193b3685092842d7dbb37e6f92c7ed1f915fcf71cf5db5cad8482f230b3ce066ac SHA512 d1b527cc50eaa92e143f068d9a484a1e591dafb77e65e0172e43d6d6440970c5c3b4e2d65050fd0d64f39d1163d49b339ae6d75943306917b4b367c26a938fb6
 DIST libosinfo-1.12.0.tar.xz 307984 BLAKE2B 6fe16be19e165c172148df736955546360cfce3f25e6e5f19d691a4242e12e7ae596dd8f7543e05758d5563c9b656b5bb72db74e8c15645446e6918320683f97 SHA512 13647b6df14443f7e39bc09bd47be93fcd9f367ecfd7b13f3dac15e2614ad8a812d6077e070b2dc0f49f68f022881ad2fa59bac92f7731032358658a522e6572

diff --git a/sys-libs/libosinfo/libosinfo-1.10.0-r1.ebuild b/sys-libs/libosinfo/libosinfo-1.10.0-r1.ebuild
deleted file mode 100644
index ff0de3cf3cc7..000000000000
--- a/sys-libs/libosinfo/libosinfo-1.10.0-r1.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit meson vala xdg
-
-DESCRIPTION="GObject library for managing information about real and virtual OSes"
-HOMEPAGE="https://libosinfo.org/"
-SRC_URI="https://releases.pagure.org/libosinfo/${P}.tar.xz"
-
-LICENSE="GPL-2+ LGPL-2.1+"
-SLOT="0"
-
-IUSE="gtk-doc +introspection +vala test"
-RESTRICT="!test? ( test )"
-REQUIRED_USE="vala? ( introspection )"
-
-KEYWORDS="~alpha amd64 ~arm arm64 ~loong ~ppc ppc64 ~riscv ~sparc x86"
-
-# Unsure about osinfo-db-tools rdep, but at least fedora does it too
-RDEPEND="
-	>=dev-libs/glib-2.44:2
-	net-libs/libsoup:3.0
-	>=dev-libs/libxml2-2.6.0
-	>=dev-libs/libxslt-1.0.0
-	sys-apps/hwdata
-	sys-apps/osinfo-db-tools
-	sys-apps/osinfo-db
-	introspection? ( >=dev-libs/gobject-introspection-1.56:= )
-"
-DEPEND="${RDEPEND}"
-# perl dep is for pod2man for automagic manpage building
-BDEPEND="
-	dev-lang/perl
-	dev-util/glib-utils
-	gtk-doc? (
-		>=dev-util/gtk-doc-1.10
-		app-text/docbook-xml-dtd:4.3
-	)
-	>=sys-devel/gettext-0.19.8
-	virtual/pkgconfig
-	vala? ( $(vala_depend) )
-"
-
-PATCHES=(
-	"${FILESDIR}"/${PV}-build-Add-option-to-disable-libsoup3.patch
-	"${FILESDIR}"/1.11.0-osinfo-Make-xmlError-struct-constant-in-propagate_li.patch
-)
-
-src_prepare() {
-	default
-	use vala && vala_setup
-	xdg_environment_reset
-}
-
-src_configure() {
-	local emesonargs=(
-		$(meson_use gtk-doc enable-gtk-doc)
-		$(meson_feature introspection enable-introspection)
-		$(meson_use test enable-tests)
-		$(meson_feature vala enable-vala)
-		-Dlibsoup3=enabled
-		-Dwith-pci-ids-path="${EPREFIX}"/usr/share/hwdata/pci.ids
-		-Dwith-usb-ids-path="${EPREFIX}"/usr/share/hwdata/usb.ids
-	)
-	meson_src_configure
-}


             reply	other threads:[~2025-03-28 15:10 UTC|newest]

Thread overview: 75+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-03-28 15:10 Sam James [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-07-05 10:23 [gentoo-commits] repo/gentoo:master commit in: sys-libs/libosinfo/ Arthur Zamarin
2025-07-03  8:51 Sam James
2025-06-25 20:46 Arthur Zamarin
2025-05-21 20:59 Sam James
2025-03-28 15:10 Sam James
2024-01-06  8:11 Sam James
2024-01-06  8:11 Sam James
2024-01-04 18:11 Arthur Zamarin
2023-12-03  7:01 Sam James
2023-12-03  7:01 Sam James
2023-02-01 18:07 Matt Turner
2023-01-03 14:08 Matt Turner
2022-12-04 15:59 WANG Xuerui
2022-03-18 19:24 Matt Turner
2021-12-25  0:02 Mike Gilbert
2021-12-07 20:29 Sam James
2021-11-28 20:08 Mike Gilbert
2021-04-15 15:36 Matt Turner
2021-04-15  5:25 Sam James
2021-04-15  1:33 Sam James
2021-04-14 18:51 Mikle Kolyada
     [not found] <1615607511.85502fa832b9a7f9657570d5aba9ba823c272832.mattst88@gentoo>
2021-03-13  3:51 ` Matt Turner
2020-11-07 19:54 Mart Raudsepp
2020-08-30 18:28 Sam James
2020-08-30 18:09 Sam James
2020-08-30 15:17 Thomas Deutschmann
2020-08-18 10:17 Mart Raudsepp
2020-07-26 11:46 Mart Raudsepp
2020-03-12 14:11 Mart Raudsepp
2020-03-12 14:05 Mart Raudsepp
2020-03-03 12:39 Agostino Sarubbo
2020-03-03 11:46 Agostino Sarubbo
2020-02-23 18:10 Mart Raudsepp
2019-12-23 22:23 Mart Raudsepp
2019-12-09  0:10 Aaron Bauman
2019-12-08 11:52 Mikle Kolyada
2019-12-08 11:41 Mikle Kolyada
2019-05-23  3:27 Aaron Bauman
2019-04-09 21:15 Mikle Kolyada
2019-04-02  1:37 Thomas Deutschmann
2019-03-31  7:36 Mart Raudsepp
2019-03-31  7:36 Mart Raudsepp
2019-02-19 21:39 Mart Raudsepp
2018-12-02 17:27 Mart Raudsepp
2018-12-02 14:29 Mikle Kolyada
2018-12-02 10:12 Mikle Kolyada
2018-11-02 23:07 Mart Raudsepp
2018-07-09 10:08 Mart Raudsepp
2018-04-29  0:08 Mart Raudsepp
2018-04-26 22:32 Aaron Bauman
2018-01-29 11:59 Mart Raudsepp
2017-12-21 23:31 Mart Raudsepp
2017-11-06 21:20 Sergei Trofimovich
2017-09-10 10:50 Gilles Dartiguelongue
2017-09-10 10:13 Gilles Dartiguelongue
2017-07-14 15:25 Alexis Ballier
2017-07-01 10:35 Sergei Trofimovich
2017-05-09  7:49 Tobias Klausmann
2017-04-27 10:36 Agostino Sarubbo
2017-04-23 21:23 Agostino Sarubbo
2017-03-31 10:08 Michael Weber
2017-03-31  9:30 Michael Weber
2017-03-31  9:30 Michael Weber
2017-03-28 19:38 Mart Raudsepp
2016-12-05 13:52 Pacho Ramos
2016-12-05 13:52 Pacho Ramos
2016-07-03 16:33 Pacho Ramos
2016-06-28 20:34 Pacho Ramos
2016-03-06 20:36 Mikle Kolyada
2016-02-28 11:09 Pacho Ramos
2016-02-28 11:09 Pacho Ramos
2016-02-25 23:02 Andreas Hüttel
2016-01-10 18:30 Pacho Ramos
2016-01-10 18:30 Pacho Ramos

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=1743174483.4bcac29075294f7bf6c30e83def92d8ced4fea34.sam@gentoo \
    --to=sam@gentoo.org \
    --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