Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 141480 - dev-java/hessian-3.0.8-r2: zip source error
Summary: dev-java/hessian-3.0.8-r2: zip source error
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Java team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-07-23 04:31 UTC by Krzysztof Pawlik (RETIRED)
Modified: 2006-08-02 00:38 UTC (History)
0 users

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 Krzysztof Pawlik (RETIRED) gentoo-dev 2006-07-23 04:31:17 UTC
BUILD SUCCESSFUL
Total time: 5 seconds
>>> Source compiled.
>>> Test phase [not enabled]: dev-java/hessian-3.0.8-r2

>>> Install hessian-3.0.8-r2 into /var/tmp/portage/hessian-3.0.8-r2/image/ category dev-java

zip error: Nothing to do! (/var/tmp/portage/hessian-3.0.8-r2/temp/hessian-src.zip)
>>> Completed installing hessian-3.0.8-r2 into /var/tmp/portage/hessian-3.0.8-r2/image/

Shouldn't the eclass die on such error?
Comment 1 Josh Nichols (RETIRED) gentoo-dev 2006-08-01 21:26:59 UTC
That error doesn't really hurt anything actually. The source zip gets properly constructed. I took a look at java-pkg_dosrc, and managed to change it so the zip gets generated without giving an error. I had to change it from

java-pkg_dosrc src/*
to
java-pkg_dosrc src/com

Weird, but that fixed it. Thanks for reporting!
Comment 2 Vlastimil Babka (Caster) (RETIRED) gentoo-dev 2006-08-02 00:38:32 UTC
It was cause by META-INF dir which contains no *.java files and java-pkg_dosrc tells zip to -i '*.java' so it really had nothing to do :)