Gentoo Logo
Gentoo Spaceship

Installation:
Gentoo Handbook
Installation Docs

Documentation:
Home
Listing
About Gentoo
Philosophy
Social Contract

Resources:
Bug Tracker
Developer List
Discussion Forums
Gentoo BitTorrents
Gentoo Linux Enhancement Proposals
IRC Channels
Mailing Lists
Mirrors
Name and Logo Guidelines
Online Package Database
Security Announcements
Staffing Needs
Supporting Vendors
View our CVS

Graphics:
Logos and themes
Icons
ScreenShots

Miscellaneous Resources:
Gentoo Linux Store
Gentoo-hosted projects
IBM dW/Intel article archive




List Archive: gentoo-dev
Navigation:
Lists: gentoo-dev: < Prev By Thread Next > < Prev By Date Next >
Headers:
To: gentoo-dev@g.o
From: Ciaran McCreesh <ciaran.mccreesh@...>
Subject: Re: RFC: auto-detection of unpack dependencies
Date: Wed, 16 Jul 2008 00:02:12 +0100
On Wed, 16 Jul 2008 00:43:28 +0200
Marius Mauch <genone@g.o> wrote:
> Interesting idea. Unfortunately our depstring parser doesn't like
> empty parentheses (as they are usually problem indicators), so it
> doesn't work out.

Bleh. You can hack around that using a second (looping) pass then. I
think this is right, assuming extglob:

for p in $SRC_URI ; do
    if [[ "${p}" == "(" ]] || [[ "${p}" == ")" ]] || \
        [[ "${p%\?}" != "${p}" ]] ; then
        UNPACK_DEPENDS="${UNPACK_DEPENDS} $p "
    elif [[ "${p%.zip}" != "${p}" ]] ; then
        UNPACK_DEPENDS="${UNPACK_DEPENDS} app-arch/unzip "
    elif [[ "${p%.bz2}" != "${p}" ]] ; then
        UNPACK_DEPENDS="${UNPACK_DEPENDS} app-arch/bzip2 "
    fi
done

while true ; do
    UNPACK_DEPENDS=" ${UNPACK_DEPENDS} "
    u="${UNPACK_DEPENDS}"
    UNPACK_DEPENDS="${UNPACK_DEPENDS//?(+( )+([^ ])\?)+( )(+( ))+( )/ }"
    [[ "$u" == "${UNPACK_DEPENDS}" ]] && break
done

Although... Allowing ( ) makes much more sense...

-- 
Ciaran McCreesh
Attachment:
signature.asc (PGP signature)
References:
RFC: auto-detection of unpack dependencies
-- Marius Mauch
Re: RFC: auto-detection of unpack dependencies
-- Ciaran McCreesh
Re: RFC: auto-detection of unpack dependencies
-- Marius Mauch
Re: RFC: auto-detection of unpack dependencies
-- Ciaran McCreesh
Re: RFC: auto-detection of unpack dependencies
-- Marius Mauch
Navigation:
Lists: gentoo-dev: < Prev By Thread Next > < Prev By Date Next >
Previous by thread:
Re: RFC: auto-detection of unpack dependencies
Next by thread:
Re: RFC: auto-detection of unpack dependencies
Previous by date:
Re: RFC: auto-detection of unpack dependencies
Next by date:
Re: Re: Re: RFC: auto-detection of unpack dependencies


Updated Jun 17, 2009

Donate to support our development efforts.

Gentoo Centric Hosting: vr.org

VR Hosted

Tek Alchemy

Tek Alchemy

SevenL.net

SevenL.net

php|architect

php|architect

Copyright 2001-2007 Gentoo Foundation, Inc. Questions, Comments? Email www@gentoo.org.