aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authordancer <dancer>2005-12-21 11:57:27 +0000
committerdancer <dancer>2005-12-21 11:57:27 +0000
commit4631c9680a0f09fe2efb347e472a51be0cab8d80 (patch)
tree873b0167b3b0fe5ce4a75eeb976ecf8898a43a7c /examples
parentfde53fc18c6c32327b8ba41edb31dac91a4f89b0 (diff)
downloadpbuilder-4631c9680a0f09fe2efb347e472a51be0cab8d80.tar
pbuilder-4631c9680a0f09fe2efb347e472a51be0cab8d80.tar.gz
use readlink -f instead of -e.
add q-funk's script.
Diffstat (limited to 'examples')
-rw-r--r--examples/B90list-missing10
-rw-r--r--examples/B91debc8
2 files changed, 18 insertions, 0 deletions
diff --git a/examples/B90list-missing b/examples/B90list-missing
new file mode 100644
index 0000000..fff7587
--- /dev/null
+++ b/examples/B90list-missing
@@ -0,0 +1,10 @@
+#!/bin/bash
+# 343894: script from q-funk.
+
+# Depends on CDBS module in debian/rules:
+# include /usr/share/cdbs/1/rules/utils.mk
+echo "I: checking for missing files."
+cd /tmp/buildd/*/debian
+cd ..
+fakeroot debian/rules list-missing
+#EOF
diff --git a/examples/B91debc b/examples/B91debc
new file mode 100644
index 0000000..b695f8a
--- /dev/null
+++ b/examples/B91debc
@@ -0,0 +1,8 @@
+#!/bin/bash
+# 343894: a script to run debc command, contributed from q-funk.
+
+apt-get install -y --force-yes devscripts
+cd /tmp/buildd/*/debian
+cd ..
+debc
+#EOF