project.conf, scm.sh: Move doc/share/project.txt -> make/project.conf

Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
Jan Lindemann 2016-01-29 13:09:04 +00:00
commit df77be6508
2 changed files with 31 additions and 3 deletions

23
make/project.conf Normal file
View file

@ -0,0 +1,23 @@
[summary]
Jannet IT Services Freelance Library
[description]
This is a library providing easy-to-use interfaces for:
+ platform independent logging
+ platform independent locking
+ platform independent threads
+ platform independent profiling
+ a platform independent config file reader
+ shared memory
+ a lightweight middleware suite
It was originally designed to be a versatile pool of
programming tools to be used in my projects as a freelancing
software developer.
Worker to map an arbitrary SQL database into FeedFS
[global]
group = System/Libraries
subpackages = run devel

View file

@ -18,7 +18,11 @@ cmd_mv()
cmd_commit() cmd_commit()
{ {
$scm commit "$@" C=''
for i in "$@"; do
C="$C \"${i//\"/\\\"}\""
done
eval $scm commit "$C"
} }
cmd_add() cmd_add()
@ -28,7 +32,7 @@ cmd_add()
# ------- here we go # ------- here we go
myname=`basename $0` myname=`basename $0`
cmd=$1 cmd=cmd_$1
shift shift
if [ -d "CVS" ]; then if [ -d "CVS" ]; then
scm=cvs scm=cvs
@ -36,4 +40,5 @@ else
scm=git scm=git
fi fi
eval cmd_$cmd "$@" $cmd "$@"