FAQ Search Today's Posts Mark Forums Read
» Video Reviews

» Linux Archive

Linux-archive is a website aiming to archive linux email lists and to make them easily accessible for linux users/developers.


» Sponsor

» Partners

» Sponsor

Go Back   Linux Archive > Redhat > Fedora Development

 
 
LinkBack Thread Tools
 
Old 03-26-2010, 03:34 AM
Ankur Sinha
 
Default help with build error : fixxref.py

hey,

I'm trying to build pyclutter from the latest git release.

This is what I get from the tail of my build.log.
Can someone please tell me how to work around it?

-- Installing ../docs/html/pt04.html
-- Installing ../docs/html/pyclutter.devhelp
-- Installing ./html/index.sgml
make[4]: execvp: /usr/share/pygobject/xsl/fixxref.py: Permission denied
make[4]: *** [install-data-hook] Error 127
make[3]: *** [install-data-am] Error 2
make[2]: *** [install-am] Error 2
make[1]: *** [install] Error 2
make: *** [install-recursive] Error 1
error: Bad exit status from /var/tmp/rpm-tmp.a2VtJs (%install)
RPM build errors:
Bad exit status from /var/tmp/rpm-tmp.a2VtJs (%install)
Child returncode was: 1
EXCEPTION: Command failed. See logs for output.
# ['bash', '--login', '-c', 'rpmbuild -bb --target i686 --nodeps builddir/build/SPECS/pyclutter.spec']
Traceback (most recent call last):
File "/usr/lib/python2.4/site-packages/mock/trace_decorator.py", line 70, in trace
result = func(*args, **kw)
File "/usr/lib/python2.4/site-packages/mock/util.py", line 324, in do
raise mock.exception.Error, ("Command failed. See logs for output.
# %s" % (command,), child.returncode)
Error: Command failed. See logs for output.
# ['bash', '--login', '-c', 'rpmbuild -bb --target i686 --nodeps builddir/build/SPECS/pyclutter.spec']
LEAVE do --> EXCEPTION RAISED

This is the srpm:

http://ankursinha.fedorapeople.org/pyclutter/pyclutter-1.0.2-1.git.fc12.src.rpm


--
regards,
Ankur
- FAS : ankursinha ; franciscod @ Freenode
- gpg --keyserver pgp.mit.edu --recv-keys 5E9BF638

--
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
 
Old 03-26-2010, 04:00 AM
"Chen Lei"
 
Default help with build error : fixxref.py

/usr/share/pygobject/xsl/fixxref.py doesn't have execute permission. Please submit a bugzilla report againt python-pygobject-devel.


在2010-03-26*12:34:02,"Ankur*Sinha"*<sanjay.ankur@gmail .com>*写道:
>hey,
>
>I'm*trying*to*build*pyclutter*from*the*lat est*git*release.*
>
>This*is*what*I*get*from*the*tail*of*my* build.log.*
>Can*someone*please*tell*me*how*to*work*ar ound*it?
>
>--*Installing*../docs/html/pt04.html
>--*Installing*../docs/html/pyclutter.devhelp
>--*Installing*./html/index.sgml
>make[4]:*execvp:*/usr/share/pygobject/xsl/fixxref.py:*Permission*denied
>make[4]:*****[install-data-hook]*Error*127
>make[3]:*****[install-data-am]*Error*2
>make[2]:*****[install-am]*Error*2
>make[1]:*****[install]*Error*2
>make:*****[install-recursive]*Error*1
>error:*Bad*exit*status*from*/var/tmp/rpm-tmp.a2VtJs*(%install)
>RPM*build*errors:
>****Bad*exit*status*from*/var/tmp/rpm-tmp.a2VtJs*(%install)
>Child*returncode*was:*1
>EXCEPTION:*Command*failed.*See*logs*for*out put.
>*#*['bash',*'--login',*'-c',*'rpmbuild*-bb*--target*i686*--nodeps*builddir/build/SPECS/pyclutter.spec']
>Traceback*(most*recent*call*last):
>**File*"/usr/lib/python2.4/site-packages/mock/trace_decorator.py",*line*70,*in*trace
>****result*=*func(*args,***kw)
>**File*"/usr/lib/python2.4/site-packages/mock/util.py",*line*324,*in*do
>****raise*mock.exception.Error,*("Command* failed.*See*logs*for*output.
*#*%s"*%*(command,),*child.returncode)
>Error:*Command*failed.*See*logs*for*outpu t.
>*#*['bash',*'--login',*'-c',*'rpmbuild*-bb*--target*i686*--nodeps*builddir/build/SPECS/pyclutter.spec']
>LEAVE*do*-->*EXCEPTION*RAISED
>
>This*is*the*srpm:
>
>http://ankursinha.fedorapeople.org/pyclutter/pyclutter-1.0.2-1.git.fc12.src.rpm
>
>
>--*
>regards,
>Ankur*
>-*FAS*:*ankursinha*;*franciscod*@*Freenode
>-*gpg*--keyserver*pgp.mit.edu*--recv-keys*5E9BF638
>


--
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
 
Old 03-26-2010, 04:01 AM
Mamoru Tasaka
 
Default help with build error : fixxref.py

Ankur Sinha wrote, at 03/26/2010 01:34 PM +9:00:
> hey,
>
> I'm trying to build pyclutter from the latest git release.
>
> This is what I get from the tail of my build.log.
> Can someone please tell me how to work around it?
>
> -- Installing ../docs/html/pt04.html
> -- Installing ../docs/html/pyclutter.devhelp
> -- Installing ./html/index.sgml
> make[4]: execvp: /usr/share/pygobject/xsl/fixxref.py: Permission denied
> make[4]: *** [install-data-hook] Error 127
>
> This is the srpm:
>
> http://ankursinha.fedorapeople.org/pyclutter/pyclutter-1.0.2-1.git.fc12.src.rpm
>

On my system /usr/share/pygobject/xsl/fixxref.py has 0644 permission (i.e.
not with executable permission), so I guess
----------------------------------------------------------------------
87 install-data-hook:
88 @$(PYGOBJECT_FIXXREF) -i $(PYGOBJECT_PYGDOCS) $(DESTDIR)$(TARGET_DIR)
----------------------------------------------------------------------
is failing. Perhaps chaging this line to "@python $(PYGOBJECT_FIXXREF) ...."
or so will make build succeed (I have not tried yet)

Regards,
Mamoru
--
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
 
Old 03-26-2010, 04:06 AM
Ankur Sinha
 
Default help with build error : fixxref.py

On Fri, 2010-03-26 at 13:00 +0800, Chen Lei wrote:
> /usr/share/pygobject/xsl/fixxref.py doesn't have execute permission.
> Please submit a bugzilla report againt python-pygobject-devel.
>
>

https://bugzilla.redhat.com/show_bug.cgi?id=574550

is that good enough?


--
regards,
Ankur
- FAS : ankursinha ; franciscod @ Freenode
- gpg --keyserver pgp.mit.edu --recv-keys 5E9BF638

--
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
 
Old 03-26-2010, 04:07 AM
Mamoru Tasaka
 
Default help with build error : fixxref.py

Mamoru Tasaka wrote, at 03/26/2010 02:01 PM +9:00:
> Ankur Sinha wrote, at 03/26/2010 01:34 PM +9:00:
>> hey,
>>
>> I'm trying to build pyclutter from the latest git release.
>>
>> This is what I get from the tail of my build.log.
>> Can someone please tell me how to work around it?
>>
>> -- Installing ../docs/html/pt04.html
>> -- Installing ../docs/html/pyclutter.devhelp
>> -- Installing ./html/index.sgml
>> make[4]: execvp: /usr/share/pygobject/xsl/fixxref.py: Permission denied
>> make[4]: *** [install-data-hook] Error 127
>>
>> This is the srpm:
>>
>> http://ankursinha.fedorapeople.org/pyclutter/pyclutter-1.0.2-1.git.fc12.src.rpm
>>
>
> On my system /usr/share/pygobject/xsl/fixxref.py has 0644 permission (i.e.
> not with executable permission), so I guess
> ----------------------------------------------------------------------
> 87 install-data-hook:
> 88 @$(PYGOBJECT_FIXXREF) -i $(PYGOBJECT_PYGDOCS) $(DESTDIR)$(TARGET_DIR)
> ----------------------------------------------------------------------
> is failing. Perhaps chaging this line to "@python $(PYGOBJECT_FIXXREF) ...."
> or so will make build succeed (I have not tried yet)

These lines are in docs/Makefile.am

>
> Regards,
> Mamoru

--
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
 
Old 03-26-2010, 04:12 AM
"Chen Lei"
 
Default help with build error : fixxref.py

/usr/share/pygobject/xsl/fixxref.py has a shebang, but doesn't have*execute*permission. So I think*there's probably a packaging error in pypygobject.

Chen LeiOn 2010-03-26*13:07:21,"Mamoru*Tasaka"*<mtasaka@ioa.s.u-tokyo.ac.jp>*Wrote:
>Mamoru*Tasaka*wrote,*at*03/26/2010*02:01*PM*+9:00:
>>*Ankur*Sinha*wrote,*at*03/26/2010*01:34*PM*+9:00:
>>>*hey,
>>>
>>>*I'm*trying*to*build*pyclutter*from*the *latest*git*release.*
>>>
>>>*This*is*what*I*get*from*the*tail*of* my*build.log.*
>>>*Can*someone*please*tell*me*how*to*work *around*it?
>>>
>>>*--*Installing*../docs/html/pt04.html
>>>*--*Installing*../docs/html/pyclutter.devhelp
>>>*--*Installing*./html/index.sgml
>>>*make[4]:*execvp:*/usr/share/pygobject/xsl/fixxref.py:*Permission*denied
>>>*make[4]:*****[install-data-hook]*Error*127
>>>
>>>*This*is*the*srpm:
>>>
>>>*http://ankursinha.fedorapeople.org/pyclutter/pyclutter-1.0.2-1.git.fc12.src.rpm
>>>
>>*
>>*On*my*system*/usr/share/pygobject/xsl/fixxref.py*has*0644*permission*(i.e.
>>*not*with*executable*permission),*so*I*gu ess
>>*----------------------------------------------------------------------
>>*****87**install-data-hook:
>>*****88**********@$(PYGOBJECT_FIX XREF)*-i*$(PYGOBJECT_PYGDOCS)*$(DESTDIR)$(TARGET_DIR)
>>*----------------------------------------------------------------------
>>*is*failing.*Perhaps*chaging*this*line*to *"@python*$(PYGOBJECT_FIXXREF)*...."
>>*or*so*will*make*build*succeed*(I*have* not*tried*yet)
>
>These*lines*are*in*docs/Makefile.am
>
>>*
>>*Regards,
>>*Mamoru
>
>--*
>devel*mailing*list
>devel@lists.fedoraproject.org
>https://admin.fedoraproject.org/mailman/listinfo/devel


--
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
 
Old 03-26-2010, 04:22 AM
Mamoru Tasaka
 
Default help with build error : fixxref.py

Chen Lei wrote, at 03/26/2010 02:12 PM +9:00:


/usr/share/pygobject/xsl/fixxref.py has a shebang, but doesn't
have execute permission. So I think there's probably a packaging error
in pypygobject.


(please avoid top posting:
http://fedoraproject.org/wiki/Communicate/MailingListGuidelines#Proper_posting_style )


On 2010-03-26 13:07:21"Mamoru Tasaka" <mtasaka@ioa.s.u-tokyo.ac.jp> Wrote

Mamoru Tasaka wrote, at 03/26/2010 02:01 PM +9:00:

Ankur Sinha wrote, at 03/26/2010 01:34 PM +9:00:

hey,

I'm trying to build pyclutter from the latest git release.

This is what I get from the tail of my build.log.
Can someone please tell me how to work around it?


-- Installing ../docs/html/pt04.html
-- Installing ../docs/html/pyclutter.devhelp
-- Installing ./html/index.sgml
make[4]: execvp: /usr/share/pygobject/xsl/fixxref.py: Permission denied
make[4]: *** [install-data-hook] Error 127

This is the srpm:

http://ankursinha.fedorapeople.org/pyclutter/pyclutter-1.0.2-1.git.fc12.src.rpm



On my system /usr/share/pygobject/xsl/fixxref.py has 0644 permission (i.e.
not with executable permission), so I guess
----------------------------------------------------------------------
87 install-data-hook:
88 @$(PYGOBJECT_FIXXREF) -i $(PYGOBJECT_PYGDOCS) $(DESTDIR)$(TARGET_DIR)
----------------------------------------------------------------------
is failing. Perhaps chaging this line to "@python $(PYGOBJECT_FIXXREF) ...."
or so will make build succeed (I have not tried yet)


These lines are in docs/Makefile.am



Note that while I am not familiar with this script, this script (fixxref.py)
is in pygobject2-"doc", and usually adding executable permission in the
files in document rpms is not desired.
(e.g. see the explanation of $ rpmlint -I doc-file-dependency)

Regards,
Mamoru
--
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
 

Thread Tools




All times are GMT. The time now is 06:14 AM.

VBulletin, Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO ©2007, Crawlability, Inc.
Copyright 2007 - 2008, www.linux-archive.org