GNU bug report logs - #52519
glibmm-2.64 propagates two different versions of libsigc++

Previous Next

Package: guix;

Reported by: Leo Famulari <leo <at> famulari.name>

Date: Wed, 15 Dec 2021 18:41:02 UTC

Severity: normal

Done: Maxim Cournoyer <maxim.cournoyer <at> gmail.com>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 52519 in the body.
You can then email your comments to 52519 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to bug-guix <at> gnu.org:
bug#52519; Package guix. (Wed, 15 Dec 2021 18:41:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Leo Famulari <leo <at> famulari.name>:
New bug report received and forwarded. Copy sent to bug-guix <at> gnu.org. (Wed, 15 Dec 2021 18:41:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Leo Famulari <leo <at> famulari.name>
To: bug-guix <at> gnu.org
Subject: glibmm-2.64 propagates two different versions of libsigc++
Date: Wed, 15 Dec 2021 13:40:09 -0500
glibmm-2.64 has this:

------
     (propagated-inputs
      (modify-inputs (package-propagated-inputs glibmm)
        (prepend libsigc++-2)))))
------

And, the glibmm package also propagates libsigc++.

So:

------
$ guix show glibmm <at> 2.64 | grep libsigc
dependencies: doxygen <at> 1.9.1 glib <at> 2.70.0 graphviz <at> 2.49.0 libsigc++@2.9.3
+ libsigc++@3.0.6 libxslt <at> 1.1.34 m4 <at> 1.4.18 mm-common <at> 1.0.3 perl <at> 5.34.0
------

It propagates both versions of libsigc++, and thus cannot be installed
into a profile. 1785 packages depend on glibmm-2.64.

This breaks synfig, which propagates glibmm, as requested in its 'synfig.pc'
pkg-config file.




Information forwarded to bug-guix <at> gnu.org:
bug#52519; Package guix. (Sat, 18 Dec 2021 04:32:02 GMT) Full text and rfc822 format available.

Message #8 received at 52519 <at> debbugs.gnu.org (full text, mbox):

From: Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
To: Leo Famulari <leo <at> famulari.name>
Cc: 52519 <at> debbugs.gnu.org
Subject: Re: bug#52519: glibmm-2.64 propagates two different versions of
 libsigc++
Date: Fri, 17 Dec 2021 23:31:15 -0500
Hi Leo,

Leo Famulari <leo <at> famulari.name> writes:

> glibmm-2.64 has this:
>
> ------
>      (propagated-inputs
>       (modify-inputs (package-propagated-inputs glibmm)
>         (prepend libsigc++-2)))))
> ------
>
> And, the glibmm package also propagates libsigc++.
>
> So:
>
> ------
> $ guix show glibmm <at> 2.64 | grep libsigc
> dependencies: doxygen <at> 1.9.1 glib <at> 2.70.0 graphviz <at> 2.49.0 libsigc++@2.9.3
> + libsigc++@3.0.6 libxslt <at> 1.1.34 m4 <at> 1.4.18 mm-common <at> 1.0.3 perl <at> 5.34.0
> ------
>
> It propagates both versions of libsigc++, and thus cannot be installed
> into a profile. 1785 packages depend on glibmm-2.64.
>
> This breaks synfig, which propagates glibmm, as requested in its 'synfig.pc'
> pkg-config file.

I've fixed this with;

--8<---------------cut here---------------start------------->8---
modified   gnu/packages/glib.scm
@@ -814,7 +814,7 @@ (define-public glibmm-2.64
         (base32 "11m37sbx0i18cl17d0fkq0bik4bbzlb5n8kcl651jhci5ipci3sh"))))
      (propagated-inputs
       (modify-inputs (package-propagated-inputs glibmm)
-        (prepend libsigc++-2)))))
+        (replace "libsigc++" libsigc++-2)))))
 
 (define-public python2-pygobject-2
--8<---------------cut here---------------end--------------->8---

It will have to be built on the version-1.4.0 branch first.

Thank you,

Maxim




Reply sent to Maxim Cournoyer <maxim.cournoyer <at> gmail.com>:
You have taken responsibility. (Mon, 17 Jan 2022 17:12:02 GMT) Full text and rfc822 format available.

Notification sent to Leo Famulari <leo <at> famulari.name>:
bug acknowledged by developer. (Mon, 17 Jan 2022 17:12:02 GMT) Full text and rfc822 format available.

Message #13 received at 52519-done <at> debbugs.gnu.org (full text, mbox):

From: Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
To: Leo Famulari <leo <at> famulari.name>
Cc: 52519-done <at> debbugs.gnu.org
Subject: Re: bug#52519: glibmm-2.64 propagates two different versions of
 libsigc++
Date: Mon, 17 Jan 2022 12:10:58 -0500
Hi,

Maxim Cournoyer <maxim.cournoyer <at> gmail.com> writes:

> Hi Leo,
>
> Leo Famulari <leo <at> famulari.name> writes:
>
>> glibmm-2.64 has this:
>>
>> ------
>>      (propagated-inputs
>>       (modify-inputs (package-propagated-inputs glibmm)
>>         (prepend libsigc++-2)))))
>> ------
>>
>> And, the glibmm package also propagates libsigc++.
>>
>> So:
>>
>> ------
>> $ guix show glibmm <at> 2.64 | grep libsigc
>> dependencies: doxygen <at> 1.9.1 glib <at> 2.70.0 graphviz <at> 2.49.0 libsigc++@2.9.3
>> + libsigc++@3.0.6 libxslt <at> 1.1.34 m4 <at> 1.4.18 mm-common <at> 1.0.3 perl <at> 5.34.0
>> ------
>>
>> It propagates both versions of libsigc++, and thus cannot be installed
>> into a profile. 1785 packages depend on glibmm-2.64.
>>
>> This breaks synfig, which propagates glibmm, as requested in its 'synfig.pc'
>> pkg-config file.
>
> I've fixed this with;
>
> modified   gnu/packages/glib.scm
> @@ -814,7 +814,7 @@ (define-public glibmm-2.64
>          (base32 "11m37sbx0i18cl17d0fkq0bik4bbzlb5n8kcl651jhci5ipci3sh"))))
>       (propagated-inputs
>        (modify-inputs (package-propagated-inputs glibmm)
> -        (prepend libsigc++-2)))))
> +        (replace "libsigc++" libsigc++-2)))))
>  
>  (define-public python2-pygobject-2
>
> It will have to be built on the version-1.4.0 branch first.

Which has now been merged back into master.

Closing!

Maxim




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Tue, 15 Feb 2022 12:24:06 GMT) Full text and rfc822 format available.

This bug report was last modified 2 years and 41 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.