Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (db827ffd6e204685ce2dfc77ed3cec207b4bffb6)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Vlad Glagolev <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (db827ffd6e204685ce2dfc77ed3cec207b4bffb6)
  • Date: Mon, 10 Nov 2008 10:41:42 -0600

GIT changes to master grimoire by Vlad Glagolev <stealth AT sourcemage.org>:

utils/pciutils/BUILD | 2 +-
utils/pciutils/CONFIGURE | 2 +-
utils/pciutils/DEPENDS | 2 +-
utils/pciutils/DETAILS | 7 +++----
utils/pciutils/FINAL | 4 ++--
utils/pciutils/HISTORY | 4 ++++
utils/pciutils/INSTALL | 3 +--
7 files changed, 13 insertions(+), 11 deletions(-)

New commits:
commit db827ffd6e204685ce2dfc77ed3cec207b4bffb6
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

pciutils: => 3.0.3, added some bashism, quoting the paths

diff --git a/utils/pciutils/BUILD b/utils/pciutils/BUILD
index 51e0c45..d558f71 100755
--- a/utils/pciutils/BUILD
+++ b/utils/pciutils/BUILD
@@ -1 +1 @@
-make PREFIX=${INSTALL_ROOT}/usr SHARED=yes OPT="$CFLAGS"
+make PREFIX="$INSTALL_ROOT/usr" SHARED=yes OPT="$CFLAGS"
diff --git a/utils/pciutils/CONFIGURE b/utils/pciutils/CONFIGURE
index 8683e7c..e450912 100755
--- a/utils/pciutils/CONFIGURE
+++ b/utils/pciutils/CONFIGURE
@@ -1,5 +1,5 @@
config_query PCIUTILS_UPDATE "Download the current snapshot of pci.ids?" n
-if [[ "$PCIUTILS_UPDATE" == "y" ]]; then
+if [[ $PCIUTILS_UPDATE == y ]]; then
if spell_ok wget; then
PCIUTILS_DOWNLOADER=wget
elif spell_ok curl; then
diff --git a/utils/pciutils/DEPENDS b/utils/pciutils/DEPENDS
index 2e35bb1..f6febdf 100755
--- a/utils/pciutils/DEPENDS
+++ b/utils/pciutils/DEPENDS
@@ -1,4 +1,4 @@
-if [[ "$PCIUTILS_UPDATE" == "y" ]]; then
+if [[ $PCIUTILS_UPDATE == y ]]; then
depends $PCIUTILS_DOWNLOADER &&
depends which
fi
diff --git a/utils/pciutils/DETAILS b/utils/pciutils/DETAILS
index 5fae412..a9913ba 100755
--- a/utils/pciutils/DETAILS
+++ b/utils/pciutils/DETAILS
@@ -1,9 +1,8 @@
SPELL=pciutils
- VERSION=3.0.2
-
SOURCE_HASH=sha512:760bb41920cd68de396df3674cce6f6453596fe265bf25d63ce3d041220861499570488ac30218336408491758f56b1cd248d18cf60196db319e816402d36a6f
- PATCHLEVEL=0
+ VERSION=3.0.3
+
SOURCE_HASH=sha512:f5864a305713c558dc3f7713987b585f418da986f6f06adbd3ef22d8f1fb3675745d9d7ff13b75215ddea44f133406e8868a460a55b9face32df9912fc766631
SOURCE=$SPELL-$VERSION.tar.gz
-SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
SOURCE_URL[0]=ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/$SOURCE
SOURCE_URL[1]=$KERNEL_URL/pub/software/utils/pciutils/$SOURCE
SOURCE_URL[2]=http://www.ibiblio.org/pub/Linux/hardware/$SOURCE
diff --git a/utils/pciutils/FINAL b/utils/pciutils/FINAL
index debff32..a4d71c4 100755
--- a/utils/pciutils/FINAL
+++ b/utils/pciutils/FINAL
@@ -1,4 +1,4 @@
-if [ $PCIUTILS_UPDATE == "y" ]; then
+if [[ $PCIUTILS_UPDATE == y ]]; then
message "${MESSAGE_COLOR}Downloading the current snapshot of
pci.ids...${DEFAULT_COLOR}" &&
- /usr/sbin/update-pciids || true
+ "$INSTALL_ROOT/usr/sbin/update-pciids" || true
fi
diff --git a/utils/pciutils/HISTORY b/utils/pciutils/HISTORY
index b5da861..9e2525e 100644
--- a/utils/pciutils/HISTORY
+++ b/utils/pciutils/HISTORY
@@ -1,3 +1,7 @@
+2008-11-10 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: updated spell to 3.0.3; quoting the paths
+ * BUILD: quoting the paths
+
2008-09-22 Ladislav Hagara <hgr AT vabo.cz>
* DETAILS: 3.0.2

diff --git a/utils/pciutils/INSTALL b/utils/pciutils/INSTALL
index db30a47..511bb43 100755
--- a/utils/pciutils/INSTALL
+++ b/utils/pciutils/INSTALL
@@ -1,2 +1 @@
-make PREFIX=${INSTALL_ROOT}/usr SHARED=yes install &&
-make PREFIX=${INSTALL_ROOT}/usr SHARED=yes install-lib
+make PREFIX="$INSTALL_ROOT/usr" SHARED=yes install install-lib



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (db827ffd6e204685ce2dfc77ed3cec207b4bffb6), Vlad Glagolev, 11/10/2008

Archive powered by MHonArc 2.6.24.

Top of Page