Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master quill by Jaka Kranjc (01d2b1813351c66fc904004e71942271cda179a9)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Jaka Kranjc <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master quill by Jaka Kranjc (01d2b1813351c66fc904004e71942271cda179a9)
  • Date: Sun, 19 Jul 2009 12:03:24 -0500

GIT changes to master quill by Jaka Kranjc <lynxlynxlynx AT sourcemage.org>:

generate_tarball.sh | 4 ++--
todo | 1 +
var/lib/quill/ChangeLog | 4 ++++
var/lib/quill/modules/libdeprecation | 8 ++++++--
var/lib/quill/version | 2 +-
5 files changed, 14 insertions(+), 5 deletions(-)

New commits:
commit 01d2b1813351c66fc904004e71942271cda179a9
Author: Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
Commit: Jaka Kranjc <lynxlynxlynx AT sourcemage.org>

libdeprecation: fixed an empty var check
and apparently some unsorted trivialities

diff --git a/generate_tarball.sh b/generate_tarball.sh
index f007408..e032b0b 100755
--- a/generate_tarball.sh
+++ b/generate_tarball.sh
@@ -1,6 +1,6 @@
#!/bin/bash
-CURRENTPWD=$(pwd)
-MY_VERSION=$(cat var/lib/quill/version)
+CURRENTPWD=$PWD
+MY_VERSION=$(< var/lib/quill/version)
mkdir ../quill-$MY_VERSION
cd ..
cp -r $CURRENTPWD/* quill-$MY_VERSION/
diff --git a/todo b/todo
index 3829739..605649e 100644
--- a/todo
+++ b/todo
@@ -22,6 +22,7 @@ modules:
overall:
* Improve scripting support to make it possible to write alternate
interfaces for it
* add quill mode to /quillrc to avoid the need to constantly pass it
+ * speed git grimoire lookup (create symlinks to known ones in a separate
dir?)

ads:
<p3pilot> i am a believer in using quill for updates...very few failures
and is just quicker for me
\ No newline at end of file
diff --git a/var/lib/quill/ChangeLog b/var/lib/quill/ChangeLog
index dfad638..ccb01ae 100644
--- a/var/lib/quill/ChangeLog
+++ b/var/lib/quill/ChangeLog
@@ -1,3 +1,7 @@
+2009-07-19 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
+ * libdeprecation: fixed an empty var check
+ * version: 0.3.0-rc25
+
2009-06-29 Andraž "ruskie" Levstik <ruskie+f03a580f AT codemages.net>
* libcore: added new config variable FRESHMEAT_API_KEY
* libfreshmeatxml: updated to work with the new FM API, more updates,
diff --git a/var/lib/quill/modules/libdeprecation
b/var/lib/quill/modules/libdeprecation
index 1f42861..300eccf 100644
--- a/var/lib/quill/modules/libdeprecation
+++ b/var/lib/quill/modules/libdeprecation
@@ -50,8 +50,12 @@ function deprecate() {
local remove_list=$(ls | tr '\n' ' ')
list_remove remove_list DETAILS DEPENDS HISTORY $overrides TRIGGERS
message "${MESSAGE_COLOR}AFTER you copy the spell back,$DEFAULT_COLOR"
- message "run this under $QUILL_GIT_DIR:"
- message "cd $SECTION/$SPELL_NAME; ${remove_list+git rm -r -f
$remove_list}"
+ message "run this in the grimoire under $QUILL_GIT_DIR:"
+ if [[ -n $remove_list ]]; then
+ message "cd $SECTION/$SPELL_NAME; git rm -r -f $remove_list"
+ else
+ message "cd $SECTION/$SPELL_NAME"
+ fi
message "git add DETAILS DEPENDS HISTORY $overrides TRIGGERS; cd -"
message
fi
diff --git a/var/lib/quill/version b/var/lib/quill/version
index e6fa3a5..91260ef 100644
--- a/var/lib/quill/version
+++ b/var/lib/quill/version
@@ -1 +1 @@
-0.3.0-rc24
+0.3.0-rc25



  • [SM-Commit] GIT changes to master quill by Jaka Kranjc (01d2b1813351c66fc904004e71942271cda179a9), Jaka Kranjc, 07/19/2009

Archive powered by MHonArc 2.6.24.

Top of Page