libsoup

  • Thread starter Thread starter Anonymous
  • Start date Start date
A

Anonymous

Guest
Hi!

I installed libsoup with portmaster (update) but whenever I run portmaster -a every time I installed libsoup again.
Code:
>>> The devel/gir-repository-libsoup port moved to devel/libsoup
>>> Reason: merged into libsoup

I don't have any error and my system is FreeBSD 8.1.

Thanks.
 
but whenever I run portmaster -a every time I installed libsoup again
What
Code:
pkg_info | grep libsoup
return? Are you sure that libsoup is installed? A reason that portmaster try to install it again and again is because is not installed (for example compile error).
 
pkg_info | grep libsoup
Code:
pkg_info: corrupted record (pkgdep line without argument), ignoring
pkg_info: corrupted record (pkgdep line without argument), ignoring
gir-repository-libsoup-0.6.5_5 Introspection information for libsoup
pkg_info: corrupted record (pkgdep line without argument), ignoring
libsoup-2.32.1      A SOAP (Simple Object Access Protocol) implementation in C
libsoup-gnome-2.32.1 A SOAP (Simple Object Access Protocol) implementation in C

Thank you DutchDaemon.
 
Run:
Code:
grep "^@pkgdep" /var/db/pkg/*/+CONTENTS | awk '{ if (NF != 2) { print $1 } }' | cut -d':' -f1
Take one by one the ports you will see, deinstall and reinstall them. I have the same problem and seems to be working.
 
On your /usr/ports/devel exist any gir-repository-libsoup folder? Shouldn't. Also
Code:
pkg_info | grep libsoup
should return:
Code:
libbsoup-2.32.1 A SOAP (Simple Object Access Protocol) implementation in C
libsoup-gnome-2.32.1 A SOAP (Simple Object Access Protocol) implementation in C
Try
Code:
pkg_delete -f gir-repository-libsoup-0.6.5_5
 
sk8harddiefast said:
Try
Code:
pkg_delete -f gir-repository-libsoup-0.6.5_5

You'll probably need to follow that with
Code:
portmaster --check-depends
to delete the dependency data for any ports that were depending on gir-repository-libsoup.
 
lumiwa said:
Hi!

I installed libsoup with portmaster (update) but whenever I run portmaster -a every time I installed libsoup again.
Code:
>>> The devel/gir-repository-libsoup port moved to devel/libsoup
>>> Reason: merged into libsoup

I don't have any error and my system is FreeBSD 8.1.

Thanks.

There was a thread on the freebsd-ports mailing list on Nov 25th. It hasn't hit the archives yet, so I'll copy the helpful part below.

Doug Barton <dougb@freebsd.org> Fri, Nov 26, 2010 at 00:54
To: freebsd-ports@freebsd.org
On 11/25/2010 18:37, ajtiM wrote:

devel/gir-repository-libsoup port moved to devel/libsoup


This really needs an UPDATING entry. I'm going to do one myself tomorrow if no one more knowledgeable gets there first.

What worked for me to fix this was to do:

portmaster -o devel/libsoup devel/gir-repository-libsoup

If you have any other ports listed in the 2010-11-20 entries in /usr/ports/MOVED you will have to do the same for them.

hth,

Doug

jrm
 
In my case, I ran [cmd=]pkgdb -fF[/cmd] and removed gir-repository-libsoup. After that, I haven't had any warnings or errors.
 
Back
Top