Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master quill by Ismael Luceno (0fe81a24d159dcbc4f0775225c272260cf289374)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Ismael Luceno <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master quill by Ismael Luceno (0fe81a24d159dcbc4f0775225c272260cf289374)
  • Date: Sat, 10 Jan 2015 20:09:56 -0600

GIT changes to master quill by Ismael Luceno <ismael AT sourcemage.org>:

var/lib/quill/ChangeLog | 21 +++++++++++++++++++++
var/lib/quill/modules/libcopy | 2 +-
2 files changed, 22 insertions(+), 1 deletion(-)

New commits:
commit 0fe81a24d159dcbc4f0775225c272260cf289374
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

Update ChangeLog

commit 79c34a02ac356375760cd51712f68deb022dfadb
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

libcopy: Optimize SECTION2 search

diff --git a/var/lib/quill/ChangeLog b/var/lib/quill/ChangeLog
index 03a8500..d4285c2 100644
--- a/var/lib/quill/ChangeLog
+++ b/var/lib/quill/ChangeLog
@@ -1,3 +1,24 @@
+2015-01-10 Ismael Luceno <ismael AT sourcemage.org>
+ * libcopy: Optimize SECTION2 search
+
+2015-01-04 Ismael Luceno <ismael AT sourcemage.org>
+ * quill: Improve parsing of URL as first argument
+
+2014-12-25 Ismael Luceno <ismael AT sourcemage.org>
+ * libcopy: Sort presented grimoire and section lists
+
+2015-01-02 Ismael Luceno <ismael AT sourcemage.org>
+ * quill: Remove the useless argument discarding warning
+
+2013-11-22 Ismael Luceno <ismael AT sourcemage.org>
+ * quill: Allow specifying version on command line when updating
+
+2014-12-09 Ismael Luceno <ismael AT sourcemage.org>
+ * quill: Allow specifying URL as second argument on CLI
+
+2013-05-07 Ismael Luceno <ismael AT sourcemage.org>
+ * quill: Allow specifying source URL on command line
+
2011-09-26 Bor Kraljič <pyrobor AT ver.si>
* libgpg: added two simple checks to ensure nothing breaks
unexpectedly
check if signature contains any key & if key was imported without
an error
diff --git a/var/lib/quill/modules/libcopy b/var/lib/quill/modules/libcopy
index eafc399..1d29f4b 100644
--- a/var/lib/quill/modules/libcopy
+++ b/var/lib/quill/modules/libcopy
@@ -59,7 +59,7 @@ function copy_git_sub()
# find where under $QUILL_GIT_DIR the spell actually is
# perhaps the section path is /home/navaden/sorcery/git/gnome1-libs
# + is the only regex char that is problematic here AND is used in names
- SECTION2=$(find "$QUILL_GIT_DIR" -regex
"${QUILL_GIT_DIR%/}/[^.][^/]*/[^/]*/${SPELL_NAME//+/\+}$" -type d -printf
"%h\n" -quit)
+ SECTION2=$(find "$QUILL_GIT_DIR" -maxdepth 3 -name .\* -prune -o -name
"$SPELL_NAME" -type d -printf %h\\n -quit)
if [[ -z $SECTION2 ]]
then
error_msg "Couldn't find the spell, \$QUILL_GIT_DIR is probably bad!"



  • [SM-Commit] GIT changes to master quill by Ismael Luceno (0fe81a24d159dcbc4f0775225c272260cf289374), Ismael Luceno, 01/10/2015

Archive powered by MHonArc 2.6.24.

Top of Page