Skip to Content.
Sympa Menu

sm-commit - Re: [SM-Commit] GIT changes to master grimoire by David Kowis (1f72f709eb9f82ba6d3d3304526a9e1c321ccfbb)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Ladislav Hagara <ladislav.hagara AT unob.cz>
  • Cc: sm-commit AT lists.ibiblio.org
  • Subject: Re: [SM-Commit] GIT changes to master grimoire by David Kowis (1f72f709eb9f82ba6d3d3304526a9e1c321ccfbb)
  • Date: Mon, 18 Dec 2006 14:15:54 +0100

>
> GIT changes to master grimoire by David Kowis <dkowis AT shlrm.org>:
>
> utils/pciutils/CONFIGURE | 9 +++++++++
> utils/pciutils/HISTORY | 3 +++
> 2 files changed, 12 insertions(+)
>
> New commits:
> commit 1f72f709eb9f82ba6d3d3304526a9e1c321ccfbb
> Author: David Kowis <dkowis AT shlrm.org>
> Commit: David Kowis <dkowis AT shlrm.org>
>
> pciutils
> Added some configure logic and some depends logic to ensure that a
> downloader is available to
> actually download the pci IDs
>
> diff --git a/utils/pciutils/CONFIGURE b/utils/pciutils/CONFIGURE
> index 393b017..8683e7c 100755
> --- a/utils/pciutils/CONFIGURE
> +++ b/utils/pciutils/CONFIGURE
> @@ -1 +1,10 @@
> config_query PCIUTILS_UPDATE "Download the current snapshot of pci.ids?" n
> +if [[ "$PCIUTILS_UPDATE" == "y" ]]; then
> + if spell_ok wget; then
> + PCIUTILS_DOWNLOADER=wget
> + elif spell_ok curl; then
> + PCIUTILS_DOWNLOADER=curl
> + else
> + config_query_list PCIUTILS_DOWNLOADER "Which downloader do you
> want?" wget curl
> + fi
> +fi
> diff --git a/utils/pciutils/HISTORY b/utils/pciutils/HISTORY
> index e31c0ab..5831158 100644
> --- a/utils/pciutils/HISTORY
> +++ b/utils/pciutils/HISTORY
> @@ -1,3 +1,6 @@
> +2006-12-16 David Kowis <dkowis AT shlrm.org>
> + * DEPENDS,CONFIGURE: add logic to ensure which and a downloader are
> included
> +
>

DEPENDS is missing.
BTW, is wget only optional? Are there some plan to remove it from
basesystem?

--
Ladislav Hagara




Archive powered by MHonArc 2.6.24.

Top of Page