This is an automated email from the git hooks/post-receive script. tille pushed a commit to branch master in repository python-clips.
commit a8e53d93c11e7037522b1ffd2aa120ab82cfd21f Author: Thorsten Alteholz <[email protected]> Date: Mon Apr 8 17:20:56 2013 +0000 initial version of python-clips --- debian/changelog | 6 +++++ debian/compat | 1 + debian/control | 21 +++++++++++++++++ debian/copyright | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++ debian/get-orig-source | 32 +++++++++++++++++++++++++ debian/rules | 19 +++++++++++++++ debian/source/format | 1 + debian/watch | 2 ++ 8 files changed, 146 insertions(+) diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..5f456bb --- /dev/null +++ b/debian/changelog @@ -0,0 +1,6 @@ +python-clips (1.0.7.348+clips-1) unstable; urgency=low + + * initial version (Closes: #577406) + + -- Thorsten Alteholz <[email protected]> Mon, 08 Apr 2013 18:00:07 +0100 + 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..f3b4f54 --- /dev/null +++ b/debian/control @@ -0,0 +1,21 @@ +Source: python-clips +Section: python +Priority: optional +Maintainer: Debian Med Packaging Team <[email protected]> +Uploaders: Thorsten Alteholz <[email protected]> +Build-Depends: debhelper (>= 9), + python-all-dev +Standards-Version: 3.9.4 +Homepage: http://sourceforge.net/projects/pyclips/ +Vcs-Browser: http://svn.debian.org/wsvn/debian-med/trunk/packages/python-clips/trunk/ +Vcs-Svn: svn://svn.debian.org/debian-med/trunk/packages/python-clips/trunk/ + +Package: python-clips +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends} +Provides: ${python:Provides} +Description: Python module to interface the CLIPS expert system shell library + CLIPS is an expert system shell / inference engine written by NASA + (see Debian package clips). + . + pyclips are the Python bindings to that engine. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..c586313 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,64 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: pyclips +Source: http://sourceforge.net/projects/pyclips/ + +Files: * +Copyright: 2002-2008 Francesco Garosi/JKS +License: LGPL-2 + +Files: CLIPSSrc.zip +Copyright: 2006 Barry Cameron, Bebe Ly, Brian L. Donnell, + Chris Culbert, Gary D. Riley +License: CLIPS + +Files: debian/* +Copyright: 2013 Thorsten Alteholz <[email protected]> +License: GPL-2.0+ + +License: GPL-2.0+ + 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 program. If not, see <http://www.gnu.org/licenses/> + . + On Debian systems, the complete text of the GNU General + Public License version 2 can be found in "/usr/share/common-licenses/GPL-2". + +License: LGPL-2 + On Debian systems, the complete text of the GNU Lesser General + Public License version 2.1 can be found in "/usr/share/common-licenses/LGPL-2". + +License: CLIPS + CLIPS License Information + . + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the "Software"), + to deal in the Software without restriction, including without limitation + the rights to use, copy, modify, merge, publish, distribute, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so. + . + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. + IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL + INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM + LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + PERFORMANCE OF THIS SOFTWARE. + . + CLIPS is released as public domain software and as such you are under no + obligation to pay for its use. However, if you derive commercial or + monetary benefit from use of the software or just want to show support, + please consider making a voluntary payment based on the worth of the + software to you as compensation for the time and effort required to + develop and maintain CLIPS. Payments can be made online at + http://order.kagi.com/?JKT. diff --git a/debian/get-orig-source b/debian/get-orig-source new file mode 100644 index 0000000..f06bb52 --- /dev/null +++ b/debian/get-orig-source @@ -0,0 +1,32 @@ +#!/bin/bash + +# bail out upon error +set -e + +PACKAGE=`dpkg-parsechangelog | awk '/^Source/ { print $2 }'` +TARDIR=../tarballs +mkdir -p $TARDIR + +VERSION=`uscan --rename --verbose --force-download | + grep "Newest version on remote site is .* local version is .*" | + head -n 1 | + sed "s/Newest version on remote site is \([a-z0-9.]\+\),.*/\1/"` + +mkdir -p $TARDIR +cd $TARDIR + +UTAR="${PACKAGE}_${VERSION}.orig.tar.gz" +mv ../${UTAR} . +tar -xzf ${UTAR} + +mv pyclips ${PACKAGE}_${VERSION}+clips.orig # .orig is requested by Developers Reference 3.4.4 <C2><A7>6.7.8.2 + +cd ${PACKAGE}_${VERSION}+clips.orig +wget http://pyclips.sourceforge.net/files/CLIPSSrc.zip + +cd .. +rm $UTAR + +BZIP2="--best" tar -cjf ${PACKAGE}_${VERSION}+clips.orig.tar.bz2 ${PACKAGE}_${VERSION}+clips.orig +rm -rf ${PACKAGE}_${VERSION}+clips.orig + diff --git a/debian/rules b/debian/rules new file mode 100644 index 0000000..7459fc7 --- /dev/null +++ b/debian/rules @@ -0,0 +1,19 @@ +#!/usr/bin/make -f + +# DH_VERBOSE := 1 + +%: + dh $@ --with python2 + +override_dh_clean: + dh_clean + rm -rf clipssrc + rm -f clips/_eclips_wrap.py + rm -f clips/_version.py + +override_dh_auto_install: + dh_auto_install + dh_installchangelogs README + +get-orig-source: + ./debian/get-orig-source 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/debian/watch b/debian/watch new file mode 100644 index 0000000..8d128f3 --- /dev/null +++ b/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://sf.net/pyclips/pyclips-([\d.]+)\.tar\.gz -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-med/python-clips.git _______________________________________________ debian-med-commit mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit
