Skip to Content.
Sympa Menu

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

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 (94f85f8138de34f541c7bf8631fe5cea15db5c2d)
  • Date: Sat, 11 Jan 2014 10:49:59 -0600

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

ChangeLog | 3 +++
utils/mdp/BUILD | 11 +++++++++++
utils/mdp/CONFIGURE | 1 +
utils/mdp/DEPENDS | 7 +++++++
utils/mdp/DETAILS | 27 +++++++++++++++++++++++++++
utils/mdp/HISTORY | 2 ++
utils/mdp/PRE_BUILD | 4 ++++
utils/mdp/mdp.gpg |binary
8 files changed, 55 insertions(+)

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

mdp: new spell, simplified password manager

diff --git a/ChangeLog b/ChangeLog
index c309266..c72aa1a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2014-01-11 Vlad Glagolev <stealth AT sourcemage.org>
+ * utils/mdp: new spell, simplified password manager
+
2014-01-11 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
* utils/zeroxml: new spell, a lightweight xml abstraction layer

diff --git a/utils/mdp/BUILD b/utils/mdp/BUILD
new file mode 100755
index 0000000..5bbc96f
--- /dev/null
+++ b/utils/mdp/BUILD
@@ -0,0 +1,11 @@
+OPTS="--prefix=$INSTALL_ROOT/usr" &&
+
+if [[ $MDP_DEBUG == y ]]; then
+ OPTS="--debug $OPTS"
+fi &&
+
+./configure "$OPTS" &&
+
+make_single &&
+make &&
+make_normal
diff --git a/utils/mdp/CONFIGURE b/utils/mdp/CONFIGURE
new file mode 100755
index 0000000..dd6ce62
--- /dev/null
+++ b/utils/mdp/CONFIGURE
@@ -0,0 +1 @@
+config_query MDP_DEBUG "Enable debug mode?" n
diff --git a/utils/mdp/DEPENDS b/utils/mdp/DEPENDS
new file mode 100755
index 0000000..bf19f15
--- /dev/null
+++ b/utils/mdp/DEPENDS
@@ -0,0 +1,7 @@
+depends ncurses &&
+
+if spell_ok gnupg-exp; then
+ runtime_depends gnupg-exp
+else
+ runtime_depends gnupg
+fi
diff --git a/utils/mdp/DETAILS b/utils/mdp/DETAILS
new file mode 100755
index 0000000..458ecd6
--- /dev/null
+++ b/utils/mdp/DETAILS
@@ -0,0 +1,27 @@
+ SPELL=mdp
+ VERSION=0.6.0
+ SOURCE=$SPELL-$VERSION.tar.gz
+ SOURCE2=$SOURCE.asc
+ SOURCE_URL[0]=http://tamentis.com/projects/$SPELL/files/$SOURCE
+ SOURCE2_URL[0]=$SOURCE_URL.asc
+ SOURCE_GPG=mdp.gpg:$SOURCE2:UPSTREAM_KEY
+ SOURCE2_IGNORE=signature
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
+ DOCS="AUTHORS ChangeLog config.example INSTALL.txt LICENSE
README TODO"
+ WEB_SITE=http://tamentis.com/projects/mdp/
+ ENTERED=20140111
+ LICENSE[0]=ISC
+ SHORT="simplified password manager"
+cat << EOF
+mdp stands for "Mot de Passe", which means "password" in French.
+
+It wraps GnuPG for encryption and deals with all the small details of
+generating, managing, and fetching your passwords. It is similar to many
other
+programs, but differentiates itself with simplicity (not button-driven
+simplicity, but with a Unix less-is-more style).
+
+For example, beyond the use of GnuPG for encryption, it lets you use your own
+editor to manage your passwords, categorize them, and delete them. In order
to
+avoid passwords lingering on your screen, the results from the queries are
+displayed through a custom pager which is cleared after a customizable
timeout.
+EOF
diff --git a/utils/mdp/HISTORY b/utils/mdp/HISTORY
new file mode 100644
index 0000000..332d0fe
--- /dev/null
+++ b/utils/mdp/HISTORY
@@ -0,0 +1,2 @@
+2014-01-11 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS, DEPENDS, CONFIGURE, {PRE_,}BUILD, mdp.gpg: created spell
diff --git a/utils/mdp/PRE_BUILD b/utils/mdp/PRE_BUILD
new file mode 100755
index 0000000..6efde58
--- /dev/null
+++ b/utils/mdp/PRE_BUILD
@@ -0,0 +1,4 @@
+default_pre_build &&
+cd "$SOURCE_DIRECTORY" &&
+
+sedit "s:-O[2|0]:$CFLAGS:g" configure
diff --git a/utils/mdp/mdp.gpg b/utils/mdp/mdp.gpg
new file mode 100644
index 0000000..a052f85
Binary files /dev/null and b/utils/mdp/mdp.gpg differ



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (94f85f8138de34f541c7bf8631fe5cea15db5c2d), Vlad Glagolev, 01/11/2014

Archive powered by MHonArc 2.6.24.

Top of Page