Skip to Content.
Sympa Menu

sm-commit - Re: [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (38270875d975c12202f6f417427bdac3192d6dc8)

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" <sm-commit AT lists.ibiblio.org>
  • Subject: Re: [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (38270875d975c12202f6f417427bdac3192d6dc8)
  • Date: Thu, 05 Jun 2008 11:35:00 +0200

Seems you still prefer to remove all devel versions from all spells.
If devel version is not used now it does not mean it will never be used.
For example util-linux have devel version 2.14-rc3 ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/v2.14
Someone may want to try it. It was easy until now, just locally edit part of DETAILS.

--
Ladislav Hagara


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

utils/util-linux/BUILD | 9 ++++++---
utils/util-linux/DETAILS | 19 +++----------------
utils/util-linux/FINAL | 1 -
utils/util-linux/HISTORY | 6 ++++++
utils/util-linux/PREPARE | 1 -
5 files changed, 15 insertions(+), 21 deletions(-)

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

util-linux: removed useless query about "devel" version, some fixups

diff --git a/utils/util-linux/BUILD b/utils/util-linux/BUILD
index 181809e..1b16cfe 100755
--- a/utils/util-linux/BUILD
+++ b/utils/util-linux/BUILD
@@ -1,5 +1,8 @@
-OPTS="$OPTS --build=${BUILD}" &
-[[ $CROSS_INSTALL == on ]] && OPTS="$OPTS --host=${HOST}"
+OPTS="--build=${BUILD} $OPTS" &&
+
+if [[ $CROSS_INSTALL == on ]]; then
+ OPTS="--host=${HOST} $OPTS"
+fi &&

create_group tty &&

@@ -11,4 +14,4 @@ disable_pic &&
--mandir=${TRACK_ROOT}/usr/share/man \
--infodir=${TRACK_ROOT}/usr/share/info \
$OPTS &&
-make
+make
diff --git a/utils/util-linux/DETAILS b/utils/util-linux/DETAILS
index 9c6b67c..4b75c2c 100755
--- a/utils/util-linux/DETAILS
+++ b/utils/util-linux/DETAILS
@@ -1,31 +1,18 @@
SPELL=util-linux
-if [[ $UTIL_LINUX_NG == y ]]
-then
VERSION=2.13.1.1
SOURCE=$SPELL-ng-$VERSION.tar.bz2
SOURCE2=$SOURCE.sign
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-ng-$VERSION
SOURCE_URL[0]=$KERNEL_URL/pub/linux/utils/$SPELL-ng/v2.13/$SOURCE
- SOURCE2_URL[0]=${SOURCE_URL[0]}.sign
- SOURCE_GPG="kernel.gpg:$SOURCE2"
+ SOURCE2_URL[0]=$SOURCE_URL.sign
+ SOURCE_GPG=kernel.gpg:$SOURCE2
SOURCE2_IGNORE=signature
-else
- VERSION=2.13.1.1
- SOURCE=$SPELL-ng-$VERSION.tar.bz2
- SOURCE2=$SOURCE.sign
-SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-ng-$VERSION
- SOURCE_URL[0]=$KERNEL_URL/pub/linux/utils/$SPELL-ng/v2.13/$SOURCE
- SOURCE2_URL[0]=${SOURCE_URL[0]}.sign
- SOURCE_GPG="kernel.gpg:$SOURCE2"
- SOURCE2_IGNORE=signature
-fi
WEB_SITE=http://userweb.kernel.org/~kzak/util-linux-ng/
ENTERED=20010922
LICENSE[0]=GPL
KEYWORDS="utils"
SECURITY_PATCH=1
- PATCHLEVEL=0
- SHORT="Essential utilities for any Linux box."
+ SHORT="Essential utilities for any Linux box"
cat << EOF
Util-linux is a suite of essential utilities for any Linux system. Its
primary audience is system integrators and DIY Linux hackers. Util-linux
diff --git a/utils/util-linux/FINAL b/utils/util-linux/FINAL
index f66f642..26187cf 100755
--- a/utils/util-linux/FINAL
+++ b/utils/util-linux/FINAL
@@ -2,4 +2,3 @@ if test -f $INSTALL_ROOT/etc/sysconfig/hwclock && [ "$UTC"
]; then
sedit "s/^UTC=.*$/UTC=$UTC/" ${INSTALL_ROOT}/etc/sysconfig/hwclock
fi
persistent_remove UTC || true
-
diff --git a/utils/util-linux/HISTORY b/utils/util-linux/HISTORY
index 7de6e3f..5377e31 100644
--- a/utils/util-linux/HISTORY
+++ b/utils/util-linux/HISTORY
@@ -1,3 +1,9 @@
+2008-06-05 Vlad Glagolev <stealth AT sourcemage.org>
+ * BUILD: $OPTS must always come after all the other stuff (c), fixed
+ checking of crossinstall
+ * PREPARE: removed, we have only -ng version
+ * DETAILS: removed `dupe' info, removed query about "devel" version
+
2008-05-29 Vlad Glagolev <stealth AT sourcemage.org>
* PRE_BUILD, CONFIGURE, PRE_SUB_DEPENDS, SUB_DEPENDS: added loop-AES

diff --git a/utils/util-linux/PREPARE b/utils/util-linux/PREPARE
deleted file mode 100755
index 66d7082..0000000
--- a/utils/util-linux/PREPARE
+++ /dev/null
@@ -1 +0,0 @@
-config_query UTIL_LINUX_NG "Do you want the testing version?" n





Archive powered by MHonArc 2.6.24.

Top of Page