From 326660ff61e2558f2d1ee7544cc6139816f1b6b7 Mon Sep 17 00:00:00 2001 From: Guido Günther Date: Fri, 9 Jan 2009 14:29:51 +0100 Subject: initial version --- debian/changelog | 6 ++++++ debian/compat | 1 + debian/control | 15 +++++++++++++++ debian/copyright | 28 ++++++++++++++++++++++++++++ debian/install | 1 + debian/pycompat | 1 + debian/rules | 14 ++++++++++++++ 7 files changed, 66 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/install create mode 100644 debian/pycompat create mode 100755 debian/rules (limited to 'debian') diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..cb39817 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,6 @@ +sapgui-package (0.0.1) unstable; urgency=low + + * Initial Release, inspired by java-package, installation commandline taken + from Matthias Schmitt's non public sapgui package. + + -- Guido Günther Thu, 08 Jan 2009 18:54:30 +0100 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..7f8f011 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +7 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..b4ef40e --- /dev/null +++ b/debian/control @@ -0,0 +1,15 @@ +Source: sapgui-package +Section: contrib/misc +Priority: extra +Maintainer: Guido Günther +Build-Depends: cdbs, debhelper (>= 7), python, python-support +Standards-Version: 3.8.0 +VCS-Git: http://honk.sigxcpu.org/git/sapgui-package.git + +Package: sapgui-package +Architecture: all +Depends: cdbs, fakeroot, java5-runtime, ${python:Depends} +Description: utility to build SAPGui related Debian packages + This package provides the capability to create a Debian package for the + Platinum Java SAP GUI from the provided JAR by just running + 'make-sgpkg '. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..2cfe2c3 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,28 @@ +This is sapgui-package maintained by Guido Günther . + +The original source can always be found at: +http://honk.sigxcpu.org/git/sapgui.git + +Copyright: + + Copyright (C) 2009 Guido Günther + +License: + + This package 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 2 of the License, or + (at your option) any later version. + + This package 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 package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. + diff --git a/debian/install b/debian/install new file mode 100644 index 0000000..ba473f7 --- /dev/null +++ b/debian/install @@ -0,0 +1 @@ +make-sgpkg /usr/bin/ diff --git a/debian/pycompat b/debian/pycompat new file mode 100644 index 0000000..0cfbf08 --- /dev/null +++ b/debian/pycompat @@ -0,0 +1 @@ +2 diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..23b2a90 --- /dev/null +++ b/debian/rules @@ -0,0 +1,14 @@ +#!/usr/bin/make -f + +VERSION := $(shell head -n 1 $(CURDIR)/debian/changelog | sed 's/.*(//;s/).*//') + +DEB_PYTHON_SYSTEM = pysupport +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/python-distutils.mk + +configure/sapgui-package:: + sed s/@VERSION@/$(VERSION)/ make-sgpkg.py > make-sgpkg + +clean:: + rm -f make-sgpkg + rm -rf build -- cgit v1.2.3