projects
/
neurodebian.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
87efe62
)
Convenience script to build for all releases at once.
author
Michael Hanke
<michael.hanke@gmail.com>
Fri, 4 Sep 2009 12:19:31 +0000
(08:19 -0400)
committer
Michael Hanke
<michael.hanke@gmail.com>
Fri, 4 Sep 2009 12:19:31 +0000
(08:19 -0400)
tools/nd_build4allnd
[new file with mode: 0755]
patch
|
blob
diff --git a/tools/nd_build4allnd
b/tools/nd_build4allnd
new file mode 100755
(executable)
index 0000000..
9cea1b8
--- /dev/null
+++ b/
tools/nd_build4allnd
@@ -0,0
+1,25
@@
+#!/bin/bash
+
+if [ -z "$1" ]; then
+cat << EOT
+Backports and build a source package for all currently supported NeuroDebian
+releases.
+
+Synopsis
+--------
+
+ nd_build4allnd <dsc file>
+EOT
+exit 1
+fi
+
+
+
+. /home/neurodebian/neurodebian.git/tools/nd_cmdsettings.sh
+
+for d in $alldists; do
+ dfamily=${d%%-*}
+ drelease=${d##*-}
+
+ nd_build $dfamily $drelease $1
+done