Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 42623 - subversion-1.0.0 fetches tar.gz but tries to unpack tar.bz2
Summary: subversion-1.0.0 fetches tar.gz but tries to unpack tar.bz2
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Jason Wever (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-02-23 09:48 UTC by Johan Petersson
Modified: 2004-02-23 09:52 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 Johan Petersson 2004-02-23 09:48:04 UTC
The ebuild for subversion-1.0.0 fetches subversion-1.0.0.tar.bz2 but then tries to unpack subversion-1.0.0.tar.gz from DISTDIR. That doesn't work. Fix:

--- subversion-1.0.0.ebuild     2004-02-23 18:36:18.503490858 +0100
+++ subversion-1.0.0.ebuild     2004-02-23 18:36:26.590291289 +0100
@@ -75,7 +75,7 @@
 
 src_unpack() {
        cd ${WORKDIR}
-       unpack ${PN}-${PV}.tar.gz
+       unpack ${PN}-${PV}.tar.bz2
        cd ${S}
 
        patch -p1 <${FILESDIR}/subversion-db4.patch


Reproducible: Always
Steps to Reproduce:
Comment 1 Johan Petersson 2004-02-23 09:51:57 UTC
Oops, wrong summary, it's the other way around. It fetches tar.bz2 but tries to unpack tar.gz. Sorry about that.
Comment 2 Martin Holzer (RETIRED) gentoo-dev 2004-02-23 09:52:26 UTC
fixed in cvs