From: Thomas Huth <thuth@redhat.com>
To: Paolo Bonzini <pbonzini@redhat.com>
Cc: "Alex Bennée" <alex.bennee@linaro.org>,
"Philippe Mathieu-Daudé" <philmd@linaro.org>,
"Eric Blake" <eblake@redhat.com>,
"Vladimir Sementsov-Ogievskiy" <vsementsov@yandex-team.ru>,
"Peter Lieven" <pl@kamp.de>,
"Richard W.M. Jones" <rjones@redhat.com>,
qemu-devel@nongnu.org, "Kevin Wolf" <kwolf@redhat.com>,
"Hanna Reitz" <hreitz@redhat.com>,
"Daniel P. Berrangé" <berrange@redhat.com>,
"Konstantin Kostiuk" <kkostiuk@redhat.com>,
qemu-block@nongnu.org
Subject: Re: [PATCH for-9.1 4/9] Bump minimum glib version to v2.66
Date: Fri, 12 Apr 2024 12:58:25 +0200 [thread overview]
Message-ID: <7762cbe9-7cf0-4c98-8b3b-5e347966a81d@redhat.com> (raw)
In-Reply-To: <CABgObfYb-b7vaNaaESO-K_Q1vWomUaSNudmdA6JX6sj6mVkAFQ@mail.gmail.com>
On 12/04/2024 12.16, Paolo Bonzini wrote:
> On Thu, Mar 28, 2024 at 3:06 PM Thomas Huth <thuth@redhat.com> wrote:
>>
>> Now that we dropped support for CentOS 8 and Ubuntu 20.04, we can
>> look into bumping the glib version to a new minimum for further
>> clean-ups. According to repology.org, available versions are:
>>
>> CentOS Stream 9: 2.66.7
>> Debian 11: 2.66.8
>> Fedora 38: 2.74.1
>> Freebsd: 2.78.4
>> Homebrew: 2.80.0
>> Openbsd: 2.78.4
>> OpenSuse leap 15.5: 2.70.5
>> pkgsrc_current: 2.78.4
>> Ubuntu 22.04: 2.72.1
>>
>> Thus it should be safe to bump the minimum glib version to 2.66 now.
>> Version 2.66 comes with new functions for URI parsing which will
>> allow further clean-ups in the following patches.
>
> Missing:
>
> diff --git a/qga/commands-posix-ssh.c b/qga/commands-posix-ssh.c
> index b0e0b1d674f..cc1f5a708e4 100644
> --- a/qga/commands-posix-ssh.c
> +++ b/qga/commands-posix-ssh.c
> @@ -288,7 +288,6 @@ qmp_guest_ssh_get_authorized_keys(
> }
>
> #ifdef QGA_BUILD_UNIT_TEST
> -#if GLIB_CHECK_VERSION(2, 60, 0)
> static const strList test_key2 = {
> .value = (char *)"algo key2 comments"
> };
> @@ -484,11 +483,4 @@ int main(int argc, char *argv[])
>
> return g_test_run();
> }
> -#else
> -int main(int argc, char *argv[])
> -{
> - g_test_message("test skipped, needs glib >= 2.60");
> - return 0;
> -}
> -#endif /* GLIB_2_60 */
> #endif /* BUILD_UNIT_TEST */
Indeed! And there seems to be another GLIB_CHECK_VERSION(2,62,0) check in
util/error-report.c which we likely can clean up now, too!
Thomas
next prev parent reply other threads:[~2024-04-12 10:58 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-03-28 14:05 [PATCH for-9.1 0/9] Switch to glib URI parsing code Thomas Huth
2024-03-28 14:05 ` [PATCH for-9.1 1/9] tests: Remove Ubuntu 20.04 container Thomas Huth
2024-03-28 14:05 ` [PATCH for-9.1 2/9] tests/lcitool/libvirt-ci: Update to the latest master branch Thomas Huth
2024-03-28 14:06 ` [PATCH for-9.1 3/9] tests: Update our CI to use CentOS Stream 9 instead of 8 Thomas Huth
2024-03-28 14:06 ` [PATCH for-9.1 4/9] Bump minimum glib version to v2.66 Thomas Huth
2024-04-12 10:16 ` Paolo Bonzini
2024-04-12 10:58 ` Thomas Huth [this message]
2024-04-12 12:01 ` Paolo Bonzini
2024-03-28 14:06 ` [PATCH for-9.1 5/9] block/gluster: Use URI parsing code from glib Thomas Huth
2024-03-28 14:06 ` [PATCH for-9.1 6/9] block/nbd: " Thomas Huth
2024-03-28 14:13 ` Richard W.M. Jones
2024-03-28 15:06 ` Eric Blake
2024-03-28 16:40 ` Richard W.M. Jones
2024-04-04 9:47 ` Richard W.M. Jones
2024-09-22 19:51 ` Richard W.M. Jones
2024-09-23 16:03 ` Eric Blake
2024-09-23 16:38 ` Daniel P. Berrangé
2024-09-23 17:06 ` Richard W.M. Jones
2024-09-24 7:52 ` Thomas Huth
2024-09-24 8:09 ` Richard W.M. Jones
2024-03-28 14:54 ` Eric Blake
2024-03-28 14:59 ` Daniel P. Berrangé
2024-03-28 15:34 ` Thomas Huth
2024-03-28 14:06 ` [PATCH for-9.1 7/9] block/nfs: " Thomas Huth
2024-03-28 14:06 ` [PATCH for-9.1 8/9] block/ssh: " Thomas Huth
2024-03-28 14:15 ` Richard W.M. Jones
2024-03-28 14:06 ` [PATCH for-9.1 9/9] util/uri: Remove the old URI parsing code Thomas Huth
2024-04-15 14:16 ` MAINTAINERS tweak [was: [PATCH for-9.1 0/9] Switch to glib URI parsing code] Eric Blake
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=7762cbe9-7cf0-4c98-8b3b-5e347966a81d@redhat.com \
--to=thuth@redhat.com \
--cc=alex.bennee@linaro.org \
--cc=berrange@redhat.com \
--cc=eblake@redhat.com \
--cc=hreitz@redhat.com \
--cc=kkostiuk@redhat.com \
--cc=kwolf@redhat.com \
--cc=pbonzini@redhat.com \
--cc=philmd@linaro.org \
--cc=pl@kamp.de \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=rjones@redhat.com \
--cc=vsementsov@yandex-team.ru \
/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;
as well as URLs for NNTP newsgroup(s).