summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2012-09-22 02:38:13 +0100
committerLars Wirzenius <liw@liw.fi>2012-09-22 02:38:13 +0100
commit798a2131a94485164916b08d83674e300592d42e (patch)
tree455aa6db8aa9a861bc2c23b3d0435507e5ff9ffc
parent5520d332cf2dbe9dda551daa20d79252b0d9ba27 (diff)
downloadjenkinstool-798a2131a94485164916b08d83674e300592d42e.tar.gz
Remove unused test project
-rw-r--r--simpleproj/Makefile2
-rw-r--r--simpleproj/debian/changelog6
-rw-r--r--simpleproj/debian/compat1
-rw-r--r--simpleproj/debian/control12
-rw-r--r--simpleproj/debian/copyright1
-rwxr-xr-xsimpleproj/debian/rules5
-rw-r--r--simpleproj/debian/source/format1
-rw-r--r--simpleproj/hello.c7
8 files changed, 0 insertions, 35 deletions
diff --git a/simpleproj/Makefile b/simpleproj/Makefile
deleted file mode 100644
index ddfe162..0000000
--- a/simpleproj/Makefile
+++ /dev/null
@@ -1,2 +0,0 @@
-all: hello
-
diff --git a/simpleproj/debian/changelog b/simpleproj/debian/changelog
deleted file mode 100644
index a4bf927..0000000
--- a/simpleproj/debian/changelog
+++ /dev/null
@@ -1,6 +0,0 @@
-simpleproj (1.0) unstable; urgency=low
-
- * Initial packaging. This is not intended to be uploaded to Debian, so
- no closing of an ITP bug.
-
- -- Lars Wirzenius <liw@liw.fi> Sat, 08 May 2010 11:10:24 +1200
diff --git a/simpleproj/debian/compat b/simpleproj/debian/compat
deleted file mode 100644
index 7f8f011..0000000
--- a/simpleproj/debian/compat
+++ /dev/null
@@ -1 +0,0 @@
-7
diff --git a/simpleproj/debian/control b/simpleproj/debian/control
deleted file mode 100644
index 2e35a64..0000000
--- a/simpleproj/debian/control
+++ /dev/null
@@ -1,12 +0,0 @@
-Source: simpleproj
-Maintainer: Lars Wirzenius <liw@liw.fi>
-Section: python
-Priority: optional
-Standards-Version: 3.9.3
-
-Package: simpleproj
-Architecture: all
-Depends: ${misc:Depends}
-Description: test package
- This is a test package, do not use.
-
diff --git a/simpleproj/debian/copyright b/simpleproj/debian/copyright
deleted file mode 100644
index e26eb73..0000000
--- a/simpleproj/debian/copyright
+++ /dev/null
@@ -1 +0,0 @@
-This is a test package, and has no copyright information.
diff --git a/simpleproj/debian/rules b/simpleproj/debian/rules
deleted file mode 100755
index abde6ef..0000000
--- a/simpleproj/debian/rules
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/usr/bin/make -f
-
-%:
- dh $@
-
diff --git a/simpleproj/debian/source/format b/simpleproj/debian/source/format
deleted file mode 100644
index 163aaf8..0000000
--- a/simpleproj/debian/source/format
+++ /dev/null
@@ -1 +0,0 @@
-3.0 (quilt)
diff --git a/simpleproj/hello.c b/simpleproj/hello.c
deleted file mode 100644
index bade27d..0000000
--- a/simpleproj/hello.c
+++ /dev/null
@@ -1,7 +0,0 @@
-#include <stdio.h>
-
-int main(void)
-{
- puts("hello, world");
- return 0;
-}