You are not logged in.

#1 2009-08-05 22:48:47

flowheat
Member
From: Pittsburgh, PA
Registered: 2008-09-23
Posts: 94

[SOLVED] Yaourt message on every operation since Pacman 3.3.0 upgrade

Since the Pacman 3.3.0 upgrade every time I try to run a command using yaourt I see this integrity check message at the end of the output.

yaourt -Syu
 Synchronizing package databases...
 testing is up to date
 core is up to date
 extra is up to date
 community is up to date
Checking the integrity of the local database in /var/lib/pacman/

However I don't see it when using pacman

pacman -Syu
:: Synchronizing package databases...
 testing is up to date
 core is up to date
 extra is up to date
 community is up to date
:: Starting full system upgrade...
 local database is up to date

Any ideas?

Last edited by flowheat (2009-08-06 00:06:25)

Offline

#2 2009-08-05 23:11:35

Ghost1227
Forum Fellow
From: Omaha, NE, USA
Registered: 2008-04-21
Posts: 1,422
Website

Re: [SOLVED] Yaourt message on every operation since Pacman 3.3.0 upgrade

That is because yaourt issues a call to testdb to validate the local database integrity. I don't know any way of silencing the output of testdb, but you could patch yaourt to not run this step...

--- yaourt.orig    2009-08-05 19:10:17.969351775 -0400
+++ yaourt    2009-08-05 19:10:35.892722153 -0400
@@ -674,7 +674,7 @@
     fi
 
     # testdb
-    testdb
+    # testdb
 
     # save original of backup files (pacnew/pacsave)
     if [ "$MAJOR" != "remove" ] && [ $AUTOSAVEBACKUPFILE -eq 1 ] && ! diff "$INSTALLED_BEFORE.full" "$INSTALLED_AFTER.full" > /dev/null; then

.:[My Blog] || [My GitHub]:.

Offline

#3 2009-08-06 00:07:14

flowheat
Member
From: Pittsburgh, PA
Registered: 2008-09-23
Posts: 94

Re: [SOLVED] Yaourt message on every operation since Pacman 3.3.0 upgrade

That did the trick, but shouldn't I have been seeing that msg before the pacman 3.3.0 update?

Offline

#4 2009-08-06 00:21:50

Ghost1227
Forum Fellow
From: Omaha, NE, USA
Registered: 2008-04-21
Posts: 1,422
Website

Re: [SOLVED] Yaourt message on every operation since Pacman 3.3.0 upgrade

Either yaourt was recently updated to include testdb, or testdb was recently updated to include the error message, I don't know which. AFAIK the pacman update was just coincidental.


.:[My Blog] || [My GitHub]:.

Offline

#5 2009-08-06 00:28:38

Allan
Pacman
From: Brisbane, AU
Registered: 2007-06-09
Posts: 11,425
Website

Re: [SOLVED] Yaourt message on every operation since Pacman 3.3.0 upgrade

> pacman -Qo $(which testdb)
/usr/bin/testdb is owned by pacman 3.3.0-2

Looks more than co-incidental to me...

Offline

#6 2009-08-06 00:33:19

Ghost1227
Forum Fellow
From: Omaha, NE, USA
Registered: 2008-04-21
Posts: 1,422
Website

Re: [SOLVED] Yaourt message on every operation since Pacman 3.3.0 upgrade

Allan wrote:
> pacman -Qo $(which testdb)
/usr/bin/testdb is owned by pacman 3.3.0-2

Looks more than co-incidental to me...

Like I said... I didn't look into it. However, Allan (as usual) is right. Looks like yaourt was updated to impliment a new feature in pacman.


.:[My Blog] || [My GitHub]:.

Offline

#7 2009-08-06 01:03:15

Allan
Pacman
From: Brisbane, AU
Registered: 2007-06-09
Posts: 11,425
Website

Re: [SOLVED] Yaourt message on every operation since Pacman 3.3.0 upgrade

Nah, my point was that testdb is part of pacman which was just updated.  I guess this update made testdb more verbose (in fact, I am fairly sure it did...)

Offline

#8 2009-08-06 12:55:07

flowheat
Member
From: Pittsburgh, PA
Registered: 2008-09-23
Posts: 94

Re: [SOLVED] Yaourt message on every operation since Pacman 3.3.0 upgrade

All makes sense now.  Thanks for the help as always.

Offline

#9 2009-08-06 16:57:49

Pyntux
Member
From: Serbia
Registered: 2008-12-21
Posts: 394

Re: [SOLVED] Yaourt message on every operation since Pacman 3.3.0 upgrade

Ghost1227 wrote:

That is because yaourt issues a call to testdb to validate the local database integrity. I don't know any way of silencing the output of testdb, but you could patch yaourt to not run this step...

--- yaourt.orig    2009-08-05 19:10:17.969351775 -0400
+++ yaourt    2009-08-05 19:10:35.892722153 -0400
@@ -674,7 +674,7 @@
     fi
 
     # testdb
-    testdb
+    # testdb
 
     # save original of backup files (pacnew/pacsave)
     if [ "$MAJOR" != "remove" ] && [ $AUTOSAVEBACKUPFILE -eq 1 ] && ! diff "$INSTALLED_BEFORE.full" "$INSTALLED_AFTER.full" > /dev/null; then

Can you please explane step by step how to use this patch? Thanks


I do not speak English, but I understand...

Offline

#10 2009-08-06 18:29:18

flowheat
Member
From: Pittsburgh, PA
Registered: 2008-09-23
Posts: 94

Re: [SOLVED] Yaourt message on every operation since Pacman 3.3.0 upgrade

1.) cd /usr/bin
2.) sudo nano yaourt
3.) Locate "testdb" line and make it "#testdb"

Offline

#11 2009-08-07 00:33:17

ngoonee
Forum Fellow
From: Between Thailand and Singapore
Registered: 2009-03-17
Posts: 7,356

Re: [SOLVED] Yaourt message on every operation since Pacman 3.3.0 upgrade

Me thinks the testing is done for a reason? I don't find the message very clutter-y anyway, and I think I'd want to know if/when there's a problem with my pacman db.


Allan-Volunteer on the (topic being discussed) mailn lists. You never get the people who matters attention on the forums.
jasonwryan-Installing Arch is a measure of your literacy. Maintaining Arch is a measure of your diligence. Contributing to Arch is a measure of your competence.
Griemak-Bleeding edge, not bleeding flat. Edge denotes falls will occur from time to time. Bring your own parachute.

Offline

#12 2009-08-07 07:03:33

jelly
Administrator
From: /dev/null
Registered: 2008-06-10
Posts: 714

Re: [SOLVED] Yaourt message on every operation since Pacman 3.3.0 upgrade

well the yaourt maintainers should have had this fixed before pacman was moved to extra, but they didnt so there came a bug, you report it , they fix it    ??  Profit.

Offline

#13 2009-08-07 12:12:15

Pyntux
Member
From: Serbia
Registered: 2008-12-21
Posts: 394

Re: [SOLVED] Yaourt message on every operation since Pacman 3.3.0 upgrade

flowheat wrote:

1.) cd /usr/bin
2.) sudo nano yaourt
3.) Locate "testdb" line and make it "#testdb"

Thanks! wink


I do not speak English, but I understand...

Offline

#14 2009-08-07 13:53:54

shining
Pacman Developer
Registered: 2006-05-10
Posts: 2,043

Re: [SOLVED] Yaourt message on every operation since Pacman 3.3.0 upgrade

well there is no clean way to filter this message and still let the errors show up.
just "testdb | grep -v Checking" which is rather ugly
so I am fine with removing this not so useful message from testdb


pacman roulette : pacman -S $(pacman -Slq | LANG=C sort -R | head -n $((RANDOM % 10)))

Offline

#15 2009-08-07 14:49:45

helios91
Member
Registered: 2009-06-09
Posts: 21

Re: [SOLVED] Yaourt message on every operation since Pacman 3.3.0 upgrade

shining wrote:

well there is no clean way to filter this message and still let the errors show up.

Maybe

testdb 1> /dev/null

?

Last edited by helios91 (2009-08-07 14:49:56)

Offline

#16 2009-08-07 15:17:53

shining
Pacman Developer
Registered: 2006-05-10
Posts: 2,043

Re: [SOLVED] Yaourt message on every operation since Pacman 3.3.0 upgrade

helios91 wrote:
shining wrote:

well there is no clean way to filter this message and still let the errors show up.

Maybe

testdb 1> /dev/null

?

testdb > /dev/null would remove all the results, because they are not displayed on stderr. so it would make running testdb useless
unless you also check for the return value and display a warning if non 0


pacman roulette : pacman -S $(pacman -Slq | LANG=C sort -R | head -n $((RANDOM % 10)))

Offline

#17 2009-08-14 06:00:48

wain
Member
From: France
Registered: 2005-05-01
Posts: 289
Website

Re: [SOLVED] Yaourt message on every operation since Pacman 3.3.0 upgrade

Fixed in yaourt-git ;-)

Offline

#18 2009-08-19 18:50:13

shining
Pacman Developer
Registered: 2006-05-10
Posts: 2,043

Re: [SOLVED] Yaourt message on every operation since Pacman 3.3.0 upgrade

wain wrote:

Fixed in yaourt-git ;-)

just to inform you that testdb 3.3.1 will be more quiet, like before :
http://projects.archlinux.org/?p=pacman … d7e32a3f24


pacman roulette : pacman -S $(pacman -Slq | LANG=C sort -R | head -n $((RANDOM % 10)))

Offline

Board footer

Powered by FluxBB