From unknown Sat Jun 21 03:28:48 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#76026 <76026@debbugs.gnu.org> To: bug#76026 <76026@debbugs.gnu.org> Subject: Status: [PATCH] gnu: cogl: Disable gstreamer plugin. Reply-To: bug#76026 <76026@debbugs.gnu.org> Date: Sat, 21 Jun 2025 10:28:48 +0000 retitle 76026 [PATCH] gnu: cogl: Disable gstreamer plugin. reassign 76026 guix-patches submitter 76026 iyzsong@envs.net severity 76026 normal tag 76026 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Mon Feb 03 01:29:41 2025 Received: (at submit) by debbugs.gnu.org; 3 Feb 2025 06:29:41 +0000 Received: from localhost ([127.0.0.1]:37397 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tepxl-0005dT-Bi for submit@debbugs.gnu.org; Mon, 03 Feb 2025 01:29:41 -0500 Received: from lists.gnu.org ([2001:470:142::17]:49734) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1tepxi-0005dC-0o for submit@debbugs.gnu.org; Mon, 03 Feb 2025 01:29:39 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1tepxc-0004n7-3U for guix-patches@gnu.org; Mon, 03 Feb 2025 01:29:32 -0500 Received: from mail.envs.net ([5.199.136.28]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1tepxa-00041r-C7 for guix-patches@gnu.org; Mon, 03 Feb 2025 01:29:31 -0500 Received: from localhost (mail.envs.net [127.0.0.1]) by mail.envs.net (Postfix) with ESMTP id 0C59038A3E69; Mon, 3 Feb 2025 06:29:20 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at mail.envs.net Received: from mail.envs.net ([127.0.0.1]) by localhost (mail.envs.net [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id LGjvQ8Qh4KR5; Mon, 3 Feb 2025 06:29:15 +0000 (UTC) Received: from localhost (unknown [112.44.101.157]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mail.envs.net (Postfix) with ESMTPSA; Mon, 3 Feb 2025 06:29:15 +0000 (UTC) Received: from localhost.localdomain (localhost.lan [127.0.0.1]) by localhost (OpenSMTPD) with ESMTP id cf1a2460; Mon, 3 Feb 2025 06:32:55 +0000 (UTC) From: iyzsong@envs.net To: guix-patches@gnu.org Subject: [PATCH] gnu: cogl: Disable gstreamer plugin. Date: Mon, 3 Feb 2025 14:32:52 +0800 Message-ID: <804e33c6f779448024d40795f1f92eda5d5aa068.1738564364.git.iyzsong@member.fsf.org> X-Mailer: git-send-email 2.48.1 MIME-Version: 1.0 X-Debbugs-Cc: Liliana Marie Prikler , Maxim Cournoyer , Vivien Kraus Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=5.199.136.28; envelope-from=iyzsong@envs.net; helo=mail.envs.net X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_VALIDITY_RPBL_BLOCKED=0.001, RCVD_IN_VALIDITY_SAFE_BLOCKED=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=unavailable autolearn_force=no X-Spam_action: no action X-Spam-Score: 0.9 (/) X-Debbugs-Envelope-To: submit Cc: =?UTF-8?q?=E5=AE=8B=E6=96=87=E6=AD=A6?= X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.1 (/) From: 宋文武 Fixes . The cogl GStreamer sink has been broken: * gnu/packages/gnome.scm (cogl)[inputs]: Remove gstreamer and gst-plugins-base. [arguments]: Pass "--enable-cogl-gst=no" to configure-flags. Change-Id: I644da53effb52c6b6d8b1f9b6df293545fab963c --- gnu/packages/gnome.scm | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 1225570c3c..1e8d813682 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -6308,12 +6308,10 @@ (define-public cogl (list mesa cairo pango - gstreamer - gst-plugins-base wayland)) (arguments `(#:disallowed-references (,xorg-server-for-tests) - #:configure-flags (list "--enable-cogl-gst" + #:configure-flags (list "--enable-cogl-gst=no" ;broken and unmaintained "--enable-wayland-egl-platform" "--enable-wayland-egl-server" base-commit: 12619742365b4bc138853ff7d79053e2089ffe1e -- 2.48.1 From debbugs-submit-bounces@debbugs.gnu.org Mon Feb 03 08:08:32 2025 Received: (at 76026) by debbugs.gnu.org; 3 Feb 2025 13:08:32 +0000 Received: from localhost ([127.0.0.1]:38274 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tewBk-0003HO-1N for submit@debbugs.gnu.org; Mon, 03 Feb 2025 08:08:32 -0500 Received: from mail-pj1-x102c.google.com ([2607:f8b0:4864:20::102c]:56807) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.84_2) (envelope-from ) id 1tewBh-0003H7-Px for 76026@debbugs.gnu.org; Mon, 03 Feb 2025 08:08:31 -0500 Received: by mail-pj1-x102c.google.com with SMTP id 98e67ed59e1d1-2ee786b3277so5497486a91.1 for <76026@debbugs.gnu.org>; Mon, 03 Feb 2025 05:08:29 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1738588103; x=1739192903; darn=debbugs.gnu.org; h=content-transfer-encoding:mime-version:user-agent:message-id:date :references:in-reply-to:subject:cc:to:from:from:to:cc:subject:date :message-id:reply-to; bh=HZ0fJ7iPnee+08UkiOL2qcTvWfDrvNcxuN5ZmepnTHQ=; b=g4XVSkPZiMFPzOMD1v/PFGOiNddVxjgNPNKdy2ZcN/6k4LLrjKEU0RCXlixptxFrw8 P1sIihiiAJh45k7i8jAdG/PGFb11OMXblQSScNlfjWImteoY9dNDQomARq6aMrJp8KQV szEaFgdfVPzhp3aYHHHjWHI8YmD3MvZc6jOr7JeuB81Oui4jjruPQPHMW5shbvrS0cVp 7i+2JCOZzuEPh/0mxk6zc8lOs3kuyrbA4yBz5w8B5gz/5PhsQLWoXxsv8dvO6qSbA/BZ BGFsfhZnYxLjEulVY2g5L1dU3UliigDcReZ2EuymWmsUtO/UFK9XiAeSp9LRgEEUkbnv ZDEw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1738588103; x=1739192903; h=content-transfer-encoding:mime-version:user-agent:message-id:date :references:in-reply-to:subject:cc:to:from:x-gm-message-state:from :to:cc:subject:date:message-id:reply-to; bh=HZ0fJ7iPnee+08UkiOL2qcTvWfDrvNcxuN5ZmepnTHQ=; b=Fk8GdA1mKKp+QoemmxMMcy6j7SJrH/TZgjhXJtyvYg1rND01MIgcwc5ClFsRZhajIR vE0cGEUtQO+t2VowaoN/zWn5JFlS3Ar1XIPa2s7cu0XvO3j0D4NuccoAFnI7LdtWI2op LDex7nJwRck3M25Nsfj4pQIz3U6sq/MKBobHngB4MSxe/PcqCPi0lz+jkoDRwIcgUo89 y+jiTL4Hih3rBnfHP3h/2idIRyDnSRikEi6laPh0Ki1CwlPyKjn7pHho68SQDLVEmOE3 JWKNUTUaq3r0hgAPem/IXlxerk9hS7dD05P+eFdwN4GK2vB3fCcE8MVfvrJB6jBvOaUe NGbA== X-Gm-Message-State: AOJu0YzNsCGUK5ZaWZ6mHXjJiJhldwzKBI+Ho6bZ4D7jC8DSV98bzf1q QbVzi+YmGXjK1p7MzXFZv4FhpfG98rERJoF3MN74jolFv5uE5kR22SQKKg== X-Gm-Gg: ASbGncsjcvf5DB8QYlTT46FoDbYW4cmownn+DpR6Z67aNEjmGl5y1tUrmFtgFpHZcWZ rHKLj1S12ZCXfGwHJonFwhSAjXns2VxF7l8/r6BOX8a1LkWRSwMMwVcfFjOHfmnvhXWOGhjW/E7 5zmwZ9msCwvH4U25vg1A4geYbNo8DGD6hzIR4XCMdcOir1BHq50g8oCqeMXWAN1eARrgn/RqlYz 0TKImwAxXuPxEUDVJizOtav63IqVEGtqHMEcDs09g6Inv8rrrz8OIAfDNRwERJL+tIU3/18F1fI Ekxau404gCM9 X-Google-Smtp-Source: AGHT+IE5hyV2XmSuRYGuctYiszddpsQ6c5wKcJXvy0a0TJmmUYy3GHbYJX8d0EVMP8xBcQuCoI9Y6A== X-Received: by 2002:a17:90b:3d45:b0:2ee:5bc9:75b5 with SMTP id 98e67ed59e1d1-2f83ab8c3f8mr32338553a91.4.1738588103518; Mon, 03 Feb 2025 05:08:23 -0800 (PST) Received: from terra ([2405:6586:be0:0:c8ff:1707:9b9:af89]) by smtp.gmail.com with ESMTPSA id 98e67ed59e1d1-2f83bd0963esm11172692a91.22.2025.02.03.05.08.21 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 03 Feb 2025 05:08:23 -0800 (PST) From: Maxim Cournoyer To: iyzsong@envs.net Subject: Re: [bug#76026] [PATCH] gnu: cogl: Disable gstreamer plugin. In-Reply-To: <804e33c6f779448024d40795f1f92eda5d5aa068.1738564364.git.iyzsong@member.fsf.org> (iyzsong@envs.net's message of "Mon, 3 Feb 2025 14:32:52 +0800") References: <804e33c6f779448024d40795f1f92eda5d5aa068.1738564364.git.iyzsong@member.fsf.org> Date: Mon, 03 Feb 2025 22:08:10 +0900 Message-ID: <877c67fa6d.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 76026 Cc: 76026@debbugs.gnu.org, Vivien Kraus , =?utf-8?B?5a6L5paH5q2m?= , Liliana Marie Prikler X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Hello! iyzsong@envs.net writes: > From: =E5=AE=8B=E6=96=87=E6=AD=A6 > > Fixes . > > The cogl GStreamer sink has been broken: > > > * gnu/packages/gnome.scm (cogl)[inputs]: Remove gstreamer and > gst-plugins-base. > [arguments]: Pass "--enable-cogl-gst=3Dno" to configure-flags. Awesome, you are fixing a 5 years old bug :-). Nitpick, I'd used --8<---------------cut here---------------start------------->8--- Fixes: --8<---------------cut here---------------end--------------->8--- at the bottom of your git commit message, next to the Change-Id (these are git trailers, must be placed at the bottom of the git message, see 'man git-interpret-trailers'). > Change-Id: I644da53effb52c6b6d8b1f9b6df293545fab963c > --- > gnu/packages/gnome.scm | 4 +--- > 1 file changed, 1 insertion(+), 3 deletions(-) > > diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm > index 1225570c3c..1e8d813682 100644 > --- a/gnu/packages/gnome.scm > +++ b/gnu/packages/gnome.scm > @@ -6308,12 +6308,10 @@ (define-public cogl > (list mesa > cairo > pango > - gstreamer > - gst-plugins-base > wayland)) > (arguments > `(#:disallowed-references (,xorg-server-for-tests) > - #:configure-flags (list "--enable-cogl-gst" > + #:configure-flags (list "--enable-cogl-gst=3Dno" ;broken and unma= intained > "--enable-wayland-egl-platform" > "--enable-wayland-egl-server" That looks good to me, but reading https://blogs.gnome.org/clutter/2022/02/16/retiring-clutter/, it seems we should instead be removing cogl from the distribution, or at least never propagating it, in which case the above flag would become unnecessary. Reviewed-by: Maxim Cournoyer --=20 Thanks, Maxim From debbugs-submit-bounces@debbugs.gnu.org Mon Feb 03 09:06:00 2025 Received: (at 76026-done) by debbugs.gnu.org; 3 Feb 2025 14:06:00 +0000 Received: from localhost ([127.0.0.1]:38367 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tex5M-0000ZW-Ds for submit@debbugs.gnu.org; Mon, 03 Feb 2025 09:06:00 -0500 Received: from mail.envs.net ([5.199.136.28]:48218) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1tex5J-0000ZK-Mx for 76026-done@debbugs.gnu.org; Mon, 03 Feb 2025 09:05:59 -0500 Received: from localhost (mail.envs.net [127.0.0.1]) by mail.envs.net (Postfix) with ESMTP id 0A09A38A3E7B; Mon, 3 Feb 2025 14:05:56 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at mail.envs.net Received: from mail.envs.net ([127.0.0.1]) by localhost (mail.envs.net [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id UjzbkfalZAe7; Mon, 3 Feb 2025 14:05:47 +0000 (UTC) Received: from localhost (unknown [112.44.101.157]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mail.envs.net (Postfix) with ESMTPSA; Mon, 3 Feb 2025 14:05:47 +0000 (UTC) Received: from localhost (localhost [local]) by localhost (OpenSMTPD) with ESMTPA id f08751e2; Mon, 3 Feb 2025 14:09:26 +0000 (UTC) From: =?utf-8?B?5a6L5paH5q2m?= To: Maxim Cournoyer Subject: Re: [bug#76026] [PATCH] gnu: cogl: Disable gstreamer plugin. In-Reply-To: <877c67fa6d.fsf@gmail.com> (Maxim Cournoyer's message of "Mon, 03 Feb 2025 22:08:10 +0900") References: <804e33c6f779448024d40795f1f92eda5d5aa068.1738564364.git.iyzsong@member.fsf.org> <877c67fa6d.fsf@gmail.com> Date: Mon, 03 Feb 2025 22:09:26 +0800 Message-ID: <87pljzglwp.fsf@envs.net> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 76026-done Cc: 76026-done@debbugs.gnu.org, Vivien Kraus , =?utf-8?B?5a6L5paH5q2m?= , Liliana Marie Prikler X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Maxim Cournoyer writes: > Awesome, you are fixing a 5 years old bug :-). Nitpick, I'd used > > Fixes: Done, thank you! > [...] > That looks good to me, but reading > https://blogs.gnome.org/clutter/2022/02/16/retiring-clutter/, it seems > we should instead be removing cogl from the distribution, or at least > never propagating it, in which case the above flag would become > unnecessary. Yes, It's propagated and needed by clutter, which still required by 22 packages. GNOME propagated it by cheese, where cheese.pc does requires cluster. So I think remove the cogl gst plugin is right thing to do here. From debbugs-submit-bounces@debbugs.gnu.org Mon Feb 03 21:21:21 2025 Received: (at 76026-done) by debbugs.gnu.org; 4 Feb 2025 02:21:21 +0000 Received: from localhost ([127.0.0.1]:41968 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tf8Yz-0006aR-4F for submit@debbugs.gnu.org; Mon, 03 Feb 2025 21:21:21 -0500 Received: from mail-pl1-x62c.google.com ([2607:f8b0:4864:20::62c]:45391) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.84_2) (envelope-from ) id 1tf8Yw-0006aB-EW for 76026-done@debbugs.gnu.org; Mon, 03 Feb 2025 21:21:19 -0500 Received: by mail-pl1-x62c.google.com with SMTP id d9443c01a7336-2164b1f05caso85300465ad.3 for <76026-done@debbugs.gnu.org>; Mon, 03 Feb 2025 18:21:18 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1738635672; x=1739240472; darn=debbugs.gnu.org; h=content-transfer-encoding:mime-version:user-agent:message-id:date :references:in-reply-to:subject:cc:to:from:from:to:cc:subject:date :message-id:reply-to; bh=YXPdzjdvu/F9DQXXhOjX8TxDTZu4f/XQENr98efgG4I=; b=J8MQGZnW0gz9mgUXjb/6gDXz+PMFHMxC1oPspMtCTzCr+MZWXygMgK/941mxoxXkXA cdS3ZAwQnD8/hX60nqFtRpBGnLtsjK8XRhj1Kkz3pOgzVEXPKPMWIjpGnNOp/eaWV/9h G+k33+KHdOAB4kLlCllIs/8CD33QOMRwChCR7UO/IeMezv6XKeKfofgEC/zz/aotBjUE sf0y76nbE5RdOE0GN+sm5ZXAcMTe64EpytkOqDmu4wfGRi8O7Ol538K4GTkaas5V97Yf xN9k14ZTuGy84juRsUCuHvAE//sEr15v9R7gj0xkLTy2I3JkBAimIHDFTlMnMe59w72Y m1DQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1738635672; x=1739240472; h=content-transfer-encoding:mime-version:user-agent:message-id:date :references:in-reply-to:subject:cc:to:from:x-gm-message-state:from :to:cc:subject:date:message-id:reply-to; bh=YXPdzjdvu/F9DQXXhOjX8TxDTZu4f/XQENr98efgG4I=; b=AbJCvFuHkieO9PvY6Dt3tQit4r70CKhmvCnj0tqIxHg+xGT6k6d3jRacc14/tHwOZE JKWtGmid5ifeEzjkgEJKAnj+X1km1bNwMAJGOWz7l0CUyttfhCWunaESOb2ZjLNB7Mnw Y3L7jIpYGB2XFV8wtWPLMIKR9T/EUxSZ23olG4TK9nqVDfqh4udGiRZjrTZMbiFjBz5f DG9bTq+LqNviLkYYGkmddCpQ3s/93qkFtoBjQMEwTBMPbyNRjYIXYZpH/qPatUxrK9vy 2So8Fq021VZ5D4PPPL2GZ1KK/4WUE0+ntrB/uhLi3XD8McfFM7TZ4va/wYCW2VUvOhqf UQlw== X-Gm-Message-State: AOJu0Yyc/PpW2nEEOnEzIXvrrtaI8/KZ/86w0TWivoWMxBaXH0jNB9Mr 2GJA5Oa7kBvFsPTvsDyLHzg875bLuKoQFXlcYuK9ynIVltu+xp45 X-Gm-Gg: ASbGnctKPsrbgossIkwsHUJj0/65t84GcIhZA1vH9RdGNx7vjlbAJGQd3mz40xfF1ny c7sBwFgPWGBa3tNvAbWARZgKDBB158r5UhF1nTGvu3ryJ8hTZ0pnwe2ygXgzR/Mi8ZQfW6TV7C3 foT5i1xW3qh0leiW7ij5CAKqhEUF7Rm/15q25/3pgjs2sjlPM+47oAHprgXcYh1ggk9GFiVyQms K5tMBp+1lggx+b3BFuRStBotrnt0phiV4TvbmXUYCmvprYTM02eaLIX2I8JTSsiEhbQLb4fyIYW 9zKMhc7wEHav X-Google-Smtp-Source: AGHT+IEIyDlIFZfM8c7SH9pLln7hrmNtMRDlpNJTy1IAEVY1ED523fjmWnTLADPp8LaVmvb2UO7kXg== X-Received: by 2002:a05:6a20:c91c:b0:1e1:f281:8d07 with SMTP id adf61e73a8af0-1ed7a5efb7fmr36546255637.10.1738635672139; Mon, 03 Feb 2025 18:21:12 -0800 (PST) Received: from terra ([2405:6586:be0:0:c8ff:1707:9b9:af89]) by smtp.gmail.com with ESMTPSA id d2e1a72fcca58-72fe69ba468sm9152163b3a.117.2025.02.03.18.21.09 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 03 Feb 2025 18:21:11 -0800 (PST) From: Maxim Cournoyer To: =?utf-8?B?5a6L5paH5q2m?= Subject: Re: [bug#76026] [PATCH] gnu: cogl: Disable gstreamer plugin. In-Reply-To: <87pljzglwp.fsf@envs.net> (=?utf-8?B?IuWui+aWh+atpiIncw==?= message of "Mon, 03 Feb 2025 22:09:26 +0800") References: <804e33c6f779448024d40795f1f92eda5d5aa068.1738564364.git.iyzsong@member.fsf.org> <877c67fa6d.fsf@gmail.com> <87pljzglwp.fsf@envs.net> Date: Tue, 04 Feb 2025 11:21:00 +0900 Message-ID: <87ed0etppv.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 76026-done Cc: 76026-done@debbugs.gnu.org, Vivien Kraus , =?utf-8?B?5a6L5paH5q2m?= , Liliana Marie Prikler X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Hi, =E5=AE=8B=E6=96=87=E6=AD=A6 writes: > Maxim Cournoyer writes: > >> Awesome, you are fixing a 5 years old bug :-). Nitpick, I'd used >> >> Fixes: > > Done, thank you! > >> [...] >> That looks good to me, but reading >> https://blogs.gnome.org/clutter/2022/02/16/retiring-clutter/, it seems >> we should instead be removing cogl from the distribution, or at least >> never propagating it, in which case the above flag would become >> unnecessary. > > Yes, It's propagated and needed by clutter, which still required by 22 > packages. GNOME propagated it by cheese, where cheese.pc does requires > cluster. So I think remove the cogl gst plugin is right thing to do > here. cheese has been replaced by snapshot, so we should remove it from the gnome core applications [0] [0] https://gitlab.gnome.org/Teams/Releng/AppOrganization/-/issues/8#note_= 1820268 --=20 Thanks, Maxim From debbugs-submit-bounces@debbugs.gnu.org Tue Feb 04 00:47:12 2025 Received: (at 76026-done) by debbugs.gnu.org; 4 Feb 2025 05:47:13 +0000 Received: from localhost ([127.0.0.1]:42256 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tfBmC-0007kl-O0 for submit@debbugs.gnu.org; Tue, 04 Feb 2025 00:47:12 -0500 Received: from planete-kraus.eu ([2a00:5881:4008:2810::309]:52566) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1tfBmA-0007kU-Kb for 76026-done@debbugs.gnu.org; Tue, 04 Feb 2025 00:47:11 -0500 Received: from planete-kraus.eu (localhost [127.0.0.1]) by planete-kraus.eu (OpenSMTPD) with ESMTP id 69921eee; Tue, 4 Feb 2025 05:47:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=planete-kraus.eu; h= message-id:subject:from:to:cc:date:in-reply-to:references :content-type:content-transfer-encoding:mime-version; s= albinoniB; bh=0wx8ZQMFdQyUHh9O5b1+eGx1iqc=; b=aNMcKA39X9FQzr4zrE Qdqc8FYsaftSOKRiAutROfwTwTKAX5gNdgY0bbxsh+PB2uVUT4oGnz2ig+UEJbLn dcDph5+IawVHhdxOyyze3OTrNgx3L9RyQ441AL0nx1M9huoXLLYz7m26ZwoBOoP4 hrNnb+7m71JzINciUQVVxJS9zM3UkLl09QUpGfxoSpiXJ+bjZTlU5/8P+0a9ZdZD 8vcY0ZiNNNCI6INxkOwfrVU1h63vBzbGKh2gXg5jDCWxJeFs0noohCQGANeNu90b wTTRLsmo4oAXoQgWp9Bua0qXHRp1y83gBJt9UrZ3HZb7xvWizBSDzkVdU3OG1K0E T9Og== Received: by planete-kraus.eu (OpenSMTPD) with ESMTPSA id d1ccd194 (TLSv1.3:TLS_CHACHA20_POLY1305_SHA256:256:NO); Tue, 4 Feb 2025 05:47:02 +0000 (UTC) Message-ID: Subject: Re: [bug#76026] [PATCH] gnu: cogl: Disable gstreamer plugin. From: Vivien Kraus To: Maxim Cournoyer , =?UTF-8?Q?=E5=AE=8B=E6=96=87=E6=AD=A6?= Date: Tue, 04 Feb 2025 06:46:58 +0100 In-Reply-To: <87ed0etppv.fsf@gmail.com> References: <804e33c6f779448024d40795f1f92eda5d5aa068.1738564364.git.iyzsong@member.fsf.org> <877c67fa6d.fsf@gmail.com> <87pljzglwp.fsf@envs.net> <87ed0etppv.fsf@gmail.com> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable User-Agent: Evolution 3.48.4 MIME-Version: 1.0 X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 76026-done Cc: 76026-done@debbugs.gnu.org, =?UTF-8?Q?=E5=AE=8B=E6=96=87=E6=AD=A6?= , Liliana Marie Prikler X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Hello, Le mardi 04 f=C3=A9vrier 2025 =C3=A0 11:21 +0900, Maxim Cournoyer a =C3=A9c= rit=C2=A0: > cheese has been replaced by snapshot, As far as I understand, snapshot is Rust, so I understand why we would want to keep cheese around also. Best regards, Vivien From debbugs-submit-bounces@debbugs.gnu.org Tue Feb 04 20:59:05 2025 Received: (at 76026-done) by debbugs.gnu.org; 5 Feb 2025 01:59:05 +0000 Received: from localhost ([127.0.0.1]:47382 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tfUgz-0007za-BN for submit@debbugs.gnu.org; Tue, 04 Feb 2025 20:59:05 -0500 Received: from mail-pl1-x636.google.com ([2607:f8b0:4864:20::636]:43090) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.84_2) (envelope-from ) id 1tfUgx-0007z2-Aw for 76026-done@debbugs.gnu.org; Tue, 04 Feb 2025 20:59:04 -0500 Received: by mail-pl1-x636.google.com with SMTP id d9443c01a7336-2162c0f6a39so6603275ad.0 for <76026-done@debbugs.gnu.org>; Tue, 04 Feb 2025 17:59:03 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1738720737; x=1739325537; darn=debbugs.gnu.org; h=content-transfer-encoding:mime-version:user-agent:message-id:date :references:in-reply-to:subject:cc:to:from:from:to:cc:subject:date :message-id:reply-to; bh=w2/AKR/M/KHA+ycLm9v1YiHydThZGI4tUr4tjeYiyT8=; b=RIuuScq58jbMAV7hzq0nTbQaZUrH4v+td2gEJ/N/p76K1XNy5wgk+BlVwFMEGuojD9 Prw7YD51lDUfYjUN7KA/NR8T8sD4SHS0eFlZAPWE/6+9ziK36mynVw4t0d2fjyo1h48J BIHeqtFVpEqVXn/rMfGgwMYe7Wa+3MYzfNGk6xZiZAcX5unsLsnBx51mOLggjF1zEyFy MPlAPs3Ozeb+iPFcvPpt7pNEx4VrfLtpr0AppQHqLPnbD+iMaCGoG6ebRMgevWT2oUXe JKZomT98NGOqs5F5s/tmGs50ff3OM2cg9eTwHbknjjb+/aMsc+HiHz2QV/naa4l8Aeoe WtaA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1738720737; x=1739325537; h=content-transfer-encoding:mime-version:user-agent:message-id:date :references:in-reply-to:subject:cc:to:from:x-gm-message-state:from :to:cc:subject:date:message-id:reply-to; bh=w2/AKR/M/KHA+ycLm9v1YiHydThZGI4tUr4tjeYiyT8=; b=RKkBRlrxE82JiQlV9DE861TXUozatqyifqoJUk8wpWkPTvcx0hkCxfjIXH16wrr6eo RYR+J/teIkSfVdB1oyhVFBX4xwDciKQEkAgkAW2VSqVLI4oreIGAx2KnRxsgxBM35DRg 1iMWhO9vbBtcSIjdb44arvgi6/rZTYxuj2MUoqappeFA5d408sylk7ZPeQHVtT7kJgZK nmXomsrs9PF0xaDeUbFPQSCTLlObUEPmR05cnoV5JohjS/4IigV2Ci8DGynB+EriRBKc y28MP/ObUjgw9t4WHqrBX+JRUgdUe6MlLe/gLSJ5bOhOFuou+WrxvFyz4khspUamlpNL yOxw== X-Forwarded-Encrypted: i=1; AJvYcCUOLgjMEAoSE727/Qrqlo27RYnco1DD7V67B0PjRvIYiGFUQDzlhK/YqU7wbbGngRRoLutn0QwmTBRD@debbugs.gnu.org X-Gm-Message-State: AOJu0Yx8oEPK59Go/JC/Z1Q3bcehsCOPZFvKD+PzRbgh2waY1mEtqOL8 YaVrct5xGtk7fKTm5FfHcFp2EoFSYtRrcaKzeDWE90Sc3zbtWjJc X-Gm-Gg: ASbGncuHKTBfiQOKXDKnNcxCZKqMotTqQ4RzwPUGnXmoFPETFwkA1xUlhJqM5UEU0Rp OhGGyitvlq/HTI9q7IsRNYM5MELJ6yqNLTX8KiLuOqYGOfjYC25D0Rolgepls2QTA1zJ8tSRus2 rHrfW74ORavgJaGyFJgVQ8hON62eusF/cVX39mjkmu0D5qX0Byy+ks7OC1LttPciz9KbA04dA6r KUBIdsJrZiy1rhsVqSs8QGl5VCiiEtWfD/+CbIgvLOViKuXH6oYw4kJNQ7rFtlxapfLS943cLs4 Etl4qRYgVEKy X-Google-Smtp-Source: AGHT+IEkwP5atk3DbFmYR1YgU5Lioam6OCmcN5iu1JvhByoPg5WTzW0PnpRdhcBIvPQB1vFsD1F4EA== X-Received: by 2002:a05:6a21:6da5:b0:1e1:b023:6c89 with SMTP id adf61e73a8af0-1edd77770f9mr7521841637.15.1738720737040; Tue, 04 Feb 2025 17:58:57 -0800 (PST) Received: from terra ([2405:6586:be0:0:c8ff:1707:9b9:af89]) by smtp.gmail.com with ESMTPSA id 41be03b00d2f7-ad4fa673d39sm2362110a12.64.2025.02.04.17.58.54 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 04 Feb 2025 17:58:56 -0800 (PST) From: Maxim Cournoyer To: Vivien Kraus Subject: Re: [bug#76026] [PATCH] gnu: cogl: Disable gstreamer plugin. In-Reply-To: (Vivien Kraus's message of "Tue, 04 Feb 2025 06:46:58 +0100") References: <804e33c6f779448024d40795f1f92eda5d5aa068.1738564364.git.iyzsong@member.fsf.org> <877c67fa6d.fsf@gmail.com> <87pljzglwp.fsf@envs.net> <87ed0etppv.fsf@gmail.com> Date: Wed, 05 Feb 2025 10:58:45 +0900 Message-ID: <87frkt9mp6.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 76026-done Cc: 76026-done@debbugs.gnu.org, =?utf-8?B?5a6L5paH5q2m?= , =?utf-8?B?5a6L5paH5q2m?= , Liliana Marie Prikler X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Hi, Vivien Kraus writes: > Hello, > > Le mardi 04 f=C3=A9vrier 2025 =C3=A0 11:21 +0900, Maxim Cournoyer a =C3= =A9crit=C2=A0: >> cheese has been replaced by snapshot, > > As far as I understand, snapshot is Rust, so I understand why we would > want to keep cheese around also. GNOME already pulls librsvg, which is rust-written as well, so it's not that big of deal; especially since it can be conditionally added via (supported-package? snapshot). The bigger deal is getting it packaged :-). --=20 Thanks, Maxim From unknown Sat Jun 21 03:28:48 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Wed, 05 Mar 2025 12:24:09 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator