Skip to Content.
Sympa Menu

sm-commit - [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: David Kowis <scm AT mail.sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by David Kowis (1f72f709eb9f82ba6d3d3304526a9e1c321ccfbb)
  • Date: Sat, 16 Dec 2006 15:50:14 -0600

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
+
2006-11-20 Eric Sandall <eric AT sandall.us>
* FINAL: Don't fail if download fails (e.g. `sorcery rebuild` without
Internet access)




Archive powered by MHonArc 2.6.24.

Top of Page