From 038cf02539020a3a7d85e8bc71e3f34fa2b07207 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sat, 3 Aug 2019 06:08:14 +0300 Subject: Add: initial commit --- NEWS | 7 +++++++ debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 15 +++++++++++++++ debian/copyright | 23 +++++++++++++++++++++++ debian/rules | 4 ++++ debian/source/format | 1 + heippa | 3 +++ heippapy/__init__.py | 1 + heippapy/version.py | 2 ++ setup.py | 11 +++++++++++ 11 files changed, 73 insertions(+) create mode 100644 NEWS create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100755 debian/rules create mode 100644 debian/source/format create mode 100755 heippa create mode 100644 heippapy/__init__.py create mode 100644 heippapy/version.py create mode 100644 setup.py 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 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 +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 . + +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 + + 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 . + +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'], +) -- cgit v1.2.1