Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 169181 - >=media-video/pitivi-0.10.1 addpredict bad usage
Summary: >=media-video/pitivi-0.10.1 addpredict bad usage
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: Highest normal (vote)
Assignee: Hanno Böck
URL:
Whiteboard:
Keywords: QAcanfix
: 173722 (view as bug list)
Depends on:
Blocks:
 
Reported: 2007-03-03 20:46 UTC by Stefano Tamagnini
Modified: 2007-04-21 04:54 UTC (History)
6 users (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Stefano Tamagnini 2007-03-03 20:46:34 UTC
When i try compile pitivi, get error:

Call stack:
  ebuild.sh, line 1614:   Called dyn_compile
  ebuild.sh, line 971:   Called qa_call 'src_compile'
  environment, line 1720:   Called src_compile
  pitivi-0.10.1.ebuild, line 32:   Called addpredict '/root/.gconf' '/root/.gconfd' '/root/.gstreamer-0.10'
  ebuild.sh, line 105:   Called die

!!! Usage: addpredict <colon-delimited list of paths>
!!! If you need support, post the topmost build error, and the call stack if relevant.
!!! A complete build log is located at '/var/tmp/portage/media-video/pitivi-0.10.1/temp/build.log'.

I have solve bug editing this line : 
addpredict $(unset HOME; echo ~)/{.gconf,.gconfd,.gstreamer-0.10}
with : 
addpredict $(unset HOME; echo ~)

for me resolve. 

Reproducible: Always

Steps to Reproduce:
1. emerge media-video/pitivi

Actual Results:  
Call stack:
  ebuild.sh, line 1614:   Called dyn_compile
  ebuild.sh, line 971:   Called qa_call 'src_compile'
  environment, line 1720:   Called src_compile
  pitivi-0.10.1.ebuild, line 32:   Called addpredict '/root/.gconf' '/root/.gconfd' '/root/.gstreamer-0.10'
  ebuild.sh, line 105:   Called die

!!! Usage: addpredict <colon-delimited list of paths>
!!! If you need support, post the topmost build error, and the call stack if relevant.
!!! A complete build log is located at '/var/tmp/portage/media-video/pitivi-0.10.1/temp/build.log'.
Comment 1 Edward Hervey 2007-04-04 14:00:43 UTC
I get the same behaviour with 0.10.2

!!! ERROR: media-video/pitivi-0.10.2 failed.
Call stack:
  ebuild.sh, line 1614:   Called dyn_compile
  ebuild.sh, line 971:   Called qa_call 'src_compile'
  ebuild.sh, line 44:   Called src_compile
  pitivi-0.10.2.ebuild, line 32:   Called addpredict '/root/.gconf' '/root/.gconfd' '/root/.gstreamer-0.10'
  ebuild.sh, line 105:   Called die

!!! Usage: addpredict <colon-delimited list of paths>
!!! If you need support, post the topmost build error, and the call stack if relevant.
!!! A complete build log is located at '/var/tmp/portage/media-video/pitivi-0.10.2/temp/build.log'.

Comment 2 Christoph Mende (RETIRED) gentoo-dev 2007-04-06 23:55:35 UTC
Same problem with pitivi-0.10.2, changing line 32 to the following fixes the problem:
addpredict ~/.gconf,~/.gconfd,~/.gstreamer-0.10
Comment 3 Jakub Moc (RETIRED) gentoo-dev 2007-04-08 07:13:09 UTC
*** Bug 173722 has been marked as a duplicate of this bug. ***
Comment 4 Ed Catmur 2007-04-12 22:44:07 UTC
Correct fix is:

	addpredict $(unset HOME; echo ~)/.gconf
	addpredict $(unset HOME; echo ~)/.gconfd
	addpredict $(unset HOME; echo ~)/.gstreamer-0.10
Comment 5 Hanno Böck gentoo-dev 2007-04-21 04:54:33 UTC
fixed