Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 3472 - gentoolkit 0.1.11: emerge-webrsync downloads old files
Summary: gentoolkit 0.1.11: emerge-webrsync downloads old files
Status: RESOLVED FIXED
Alias: None
Product: Portage Development
Classification: Unclassified
Component: Unclassified (show other bugs)
Hardware: All Linux
: High normal
Assignee: Karl Trygve Kalleberg (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-06-07 04:58 UTC by Henrik Meyer
Modified: 2011-10-30 22:19 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 Henrik Meyer 2002-06-07 04:58:02 UTC
gentoolkit 0.1.11: emerge-webrsync downloads old files.

The 'exit 0' (see below) in the script 'emerge-webrsync' does not cause the
script to end, instead the script continues to download older snapshots.
---
        for i in $GENTOO_MIRRORS ; do
                url="${i}/snapshots/$file"
                echo $url
                wget $url && (
                        tar xjf $file
                        rm $file
                        rsync -av . /usr/
                        exit 0 )
        done
---

Should be something like this:
---
                if (wget $url) then
                        tar xjf $file
                        rm $file
                        rsync -av . /usr/
                        exit 0 
                fi
---
Comment 1 Seemant Kulleen (RETIRED) gentoo-dev 2002-06-09 07:10:39 UTC
karl,

qpkg -I no longer reports versions either:

nebuchadnezzar root # qpkg -I libpng
media-libs/libpng *
Comment 2 Karl Trygve Kalleberg (RETIRED) gentoo-dev 2002-06-24 16:14:41 UTC
Fixed. Will show up in the next release of Gentoolkit.