summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2019-08-03 06:08:14 +0300
committerLars Wirzenius <liw@liw.fi>2019-08-03 06:08:14 +0300
commit038cf02539020a3a7d85e8bc71e3f34fa2b07207 (patch)
treedb9e875c6111e638119740a7381ab3e1bd31b203
downloadheippapy-038cf02539020a3a7d85e8bc71e3f34fa2b07207.tar.gz
Add: initial commit
-rw-r--r--NEWS7
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control15
-rw-r--r--debian/copyright23
-rwxr-xr-xdebian/rules4
-rw-r--r--debian/source/format1
-rwxr-xr-xheippa3
-rw-r--r--heippapy/__init__.py1
-rw-r--r--heippapy/version.py2
-rw-r--r--setup.py11
11 files changed, 73 insertions, 0 deletions
diff --git a/NEWS b/NEWS
new file mode 100644
index 0000000..112eafd
--- /dev/null
+++ b/NEWS
@@ -0,0 +1,7 @@
+NEWS file for heippapy
+=====================
+
+Version 0.0+git, not yet released
+----------------------------------
+
+* First release.
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..bde6c51
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+heippapy (0.1-1) UNRELEASED; urgency=medium
+
+ * New upstream version.
+
+ -- Lars Wirzenius <liw@liw.fi> Sun, 09 Oct 2016 15:49:09 +0300
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..a61aad8
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,15 @@
+Source: heippapy
+Maintainer: Lars Wirzenius <liw@liw.fi>
+Section: misc
+Priority: optional
+Standards-Version: 3.9.8
+Build-Depends: debhelper (>= 9), python3-all (>= 3.0~),
+ python3-all-dev (>= 3.0~)
+Homepage: http://liw.fi/
+X-Python-Version: >= 3.0
+
+Package: heippapy
+Architecture: any
+Depends: ${shlibs:Depends}, ${python:Depends}, ${misc:Depends}
+Description: toy package
+ This is a toy package.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..90f5b03
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,23 @@
+Summain was originally written Lars Wirzenius <liw@liw.fi>.
+
+All of the code is currently owned by Lars Wirzenius and licensed under
+the GNU GPL version 3, or later version.
+
+ Copyright (C) 2009 Lars Wirzenius <liw@liw.fi>
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+On a Debian system, you can find a copy of the GPL version 3 in
+/usr/share/common-licenses/GPL-3.
+
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..103aea6
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+ dh $@ --with=python3 --buildsystem=python_distutils
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/heippa b/heippa
new file mode 100755
index 0000000..4d1d246
--- /dev/null
+++ b/heippa
@@ -0,0 +1,3 @@
+#!/usr/bin/python3
+
+print('hello, world')
diff --git a/heippapy/__init__.py b/heippapy/__init__.py
new file mode 100644
index 0000000..03a5053
--- /dev/null
+++ b/heippapy/__init__.py
@@ -0,0 +1 @@
+from .version import __version__, __version_info__
diff --git a/heippapy/version.py b/heippapy/version.py
new file mode 100644
index 0000000..178de36
--- /dev/null
+++ b/heippapy/version.py
@@ -0,0 +1,2 @@
+__version__ = "0.22+git"
+__version_info__ = (0, 22, '+git')
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..2ee4496
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,11 @@
+# setup.py - distutils module for Dimbola
+
+from distutils.core import setup, Extension
+
+import heippapy
+
+setup(
+ name='heippapy',
+ version=heippapy.__version__,
+ scripts=['heippa'],
+)