summaryrefslogtreecommitdiff
path: root/template
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2001-07-06 11:46:17 +0000
committerSteven Knight <knight@baldmt.com>2001-07-06 11:46:17 +0000
commit11ad88ce6d9165bebc6752a120bce4d962368bbf (patch)
tree231b89344132f163250b4799a8aa69628dd0bb35 /template
downloadscons-11ad88ce6d9165bebc6752a120bce4d962368bbf.tar.gz
Initial revisionstart
Diffstat (limited to 'template')
-rw-r--r--template/.aeignore2
-rw-r--r--template/__init__.py9
-rw-r--r--template/file.py11
-rw-r--r--template/test.py3
4 files changed, 25 insertions, 0 deletions
diff --git a/template/.aeignore b/template/.aeignore
new file mode 100644
index 00000000..06d4a253
--- /dev/null
+++ b/template/.aeignore
@@ -0,0 +1,2 @@
+*,D
+.consign
diff --git a/template/__init__.py b/template/__init__.py
new file mode 100644
index 00000000..69c58b86
--- /dev/null
+++ b/template/__init__.py
@@ -0,0 +1,9 @@
+"""${subst '/' '.' ${subst '^src/' '' ${subst '/[^/]*$' '' $filename}}}
+
+XXX
+
+"""
+
+__revision__ = "${subst '^src/scons/' '' $filename} __REVISION__ __DATE__ __DEVELOPER__"
+
+__version__ = "__VERSION__"
diff --git a/template/file.py b/template/file.py
new file mode 100644
index 00000000..0fb2a740
--- /dev/null
+++ b/template/file.py
@@ -0,0 +1,11 @@
+"""${subst '/' '.' ${subst '^src/' '' ${subst '\.py$' '' $filename}}}
+
+XXX
+
+"""
+
+__revision__ = "${subst '^src/scons/' '' $filename} __REVISION__ __DATE__ __DEVELOPER__"
+
+
+
+import XXX
diff --git a/template/test.py b/template/test.py
new file mode 100644
index 00000000..b43a73fd
--- /dev/null
+++ b/template/test.py
@@ -0,0 +1,3 @@
+__revision__ = "${subst '^src/scons/' '' $filename} __REVISION__ __DATE__ __DEVELOPER__"
+
+from TestCmd import TestCmd