Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master quill by Bor Kraljič (9b7b1de5700e33e9973adab7e4882f5a3ada5554)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Bor Kraljič <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master quill by Bor Kraljič (9b7b1de5700e33e9973adab7e4882f5a3ada5554)
  • Date: Mon, 14 Feb 2011 09:13:53 -0600

GIT changes to master quill by Bor Kraljič <pyrobor AT ver.si>:

usr/bin/quill | 3 ++-
var/lib/quill/ChangeLog | 6 ++++++
var/lib/quill/modules/libdeprecation | 6 +++---
3 files changed, 11 insertions(+), 4 deletions(-)

New commits:
commit 9b7b1de5700e33e9973adab7e4882f5a3ada5554
Author: Bor Kraljič <pyrobor AT ver.si>
Commit: Bor Kraljič <pyrobor AT ver.si>

libdeprecation: use UP_TRGGERS instead of TRIGGERS when deprecating a
spell

According to http://www.sourcemage.org/Spell_Deprecation this is the right
way.

commit 1af1e8ddf0289dfa62a5bf9975fdabbdc962137c
Author: Bor Kraljič <pyrobor AT ver.si>
Commit: Bor Kraljič <pyrobor AT ver.si>

fixed getopt line to work with all long options

diff --git a/usr/bin/quill b/usr/bin/quill
index fbcd1e6..d65d615 100755
--- a/usr/bin/quill
+++ b/usr/bin/quill
@@ -50,7 +50,8 @@ QUILL_CONFIG_VERSION=$QUILL_OUR_CONFIG_VERSION

## Parse the command line parameters and arguments via getopt
QUILL_CMDLINE=$(getopt -o fcysngFHup::amwrhv -l \
-
fmxml,perlcpan,rubyraa,savane,savannah,gna,fsf,hackagedb,update,help,purge:: \
+ 'fmxml,perlcpan,rubyraa,savane,savannah,gna,fsf,hackagedb,update,\
+ apprentice,mage,wizard,reconfigure,version,help,purge::' \
-n 'quill' -- "$@")
if [[ $? != 0 ]]; then
error_msg "Invalid command line options!"
diff --git a/var/lib/quill/ChangeLog b/var/lib/quill/ChangeLog
index f7157bf..b1c2a2b 100644
--- a/var/lib/quill/ChangeLog
+++ b/var/lib/quill/ChangeLog
@@ -1,3 +1,9 @@
+2010-02-13 Bor Kraljič <pyrobor AT ver.si>
+ * libdeprecation: use UP_TRGGERS instead of TRIGGERS when deprecating
a spell
+
+2010-08-14 Bor Kraljič <pyrobor AT ver.si>
+ * quill: fixed getopt line to work with all long options
+
2010-08-13 Bor Kraljič <pyrobor AT ver.si>
* lib*, quill: fixed functions headers to work with bashdoc
* libupdate: sort the files in file_menu so they are easier to
diff --git a/var/lib/quill/modules/libdeprecation
b/var/lib/quill/modules/libdeprecation
index ca68451..1bcbfbb 100644
--- a/var/lib/quill/modules/libdeprecation
+++ b/var/lib/quill/modules/libdeprecation
@@ -82,10 +82,10 @@ function deprecate() {
echo true > $file
done

- echo on_cast $SPELL_NAME dispel_self > TRIGGERS
- echo depends $replacement > DEPENDS
+ echo up_trigger $SPELL_NAME dispel_self > UP_TRIGGERS
+ echo up_trigger $replacement cast_self > UP_TRIGGERS

- chmod u+x $overrides DETAILS TRIGGERS DEPENDS
+ chmod u+x $overrides DETAILS UP_TRIGGERS DEPENDS

message "Add $replacement/CONFLICTS containing 'conflicts $SPELL_NAME y'."
message "And a HISTORY entry, but you can do this with quill too:



  • [SM-Commit] GIT changes to master quill by Bor Kraljič (9b7b1de5700e33e9973adab7e4882f5a3ada5554), Bor Kraljič, 02/14/2011

Archive powered by MHonArc 2.6.24.

Top of Page