From 3b9abcc5d3b881b6f172f9556f767f9d57b5f9e3 Mon Sep 17 00:00:00 2001 From: josch Date: Tue, 28 Dec 2010 13:05:34 +0100 Subject: [PATCH] adding epydial --- debian/epydial/compat | 1 + debian/epydial/control | 13 +++++++++++++ debian/epydial/copyright | 30 ++++++++++++++++++++++++++++++ debian/epydial/pycompat | 1 + debian/epydial/pyversions | 1 + debian/epydial/rules | 4 ++++ debian/epydial/source/format | 1 + pyneo-daily.sh | 7 ++++++- 8 files changed, 57 insertions(+), 1 deletion(-) create mode 100644 debian/epydial/compat create mode 100644 debian/epydial/control create mode 100644 debian/epydial/copyright create mode 100644 debian/epydial/pycompat create mode 100644 debian/epydial/pyversions create mode 100755 debian/epydial/rules create mode 100644 debian/epydial/source/format diff --git a/debian/epydial/compat b/debian/epydial/compat new file mode 100644 index 0000000..7f8f011 --- /dev/null +++ b/debian/epydial/compat @@ -0,0 +1 @@ +7 diff --git a/debian/epydial/control b/debian/epydial/control new file mode 100644 index 0000000..b5a6902 --- /dev/null +++ b/debian/epydial/control @@ -0,0 +1,13 @@ +Source: epydial +Section: python +Priority: extra +Maintainer: Johannes Schauer +Build-Depends: debhelper (>= 7), python-support (>= 0.5.3), python +Standards-Version: 3.9.1 +Homepage: http://epydial.pyneo.org + +Package: epydial +Architecture: all +Depends: ${misc:Depends}, ${python:Depends}, python-dbus, python-evas, python-ecore, python-pyneo +Description: a short description + a more lengthy and detailed description diff --git a/debian/epydial/copyright b/debian/epydial/copyright new file mode 100644 index 0000000..47358a3 --- /dev/null +++ b/debian/epydial/copyright @@ -0,0 +1,30 @@ +This package was debianized by Johannes Schauer on +Tue, 23 June 2009 10:08:51 +0000. + +It was downloaded from + +Upstream Authors: + + * Copyright © 2008-2009 M. Dietrich + * Copyright © 2009 Johannes Schauer + +For the Debian packaging: + * Copyright © 2009 Johannes Schauer + +License: + + 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 Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL-3'. diff --git a/debian/epydial/pycompat b/debian/epydial/pycompat new file mode 100644 index 0000000..0cfbf08 --- /dev/null +++ b/debian/epydial/pycompat @@ -0,0 +1 @@ +2 diff --git a/debian/epydial/pyversions b/debian/epydial/pyversions new file mode 100644 index 0000000..b3dc41e --- /dev/null +++ b/debian/epydial/pyversions @@ -0,0 +1 @@ +2.5- diff --git a/debian/epydial/rules b/debian/epydial/rules new file mode 100755 index 0000000..2d33f6a --- /dev/null +++ b/debian/epydial/rules @@ -0,0 +1,4 @@ +#!/usr/bin/make -f + +%: + dh $@ diff --git a/debian/epydial/source/format b/debian/epydial/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/epydial/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/pyneo-daily.sh b/pyneo-daily.sh index ec63da5..0af0522 100755 --- a/pyneo-daily.sh +++ b/pyneo-daily.sh @@ -125,12 +125,17 @@ esac # build source packages # ############################################################################# +# epydial +git clone git://gitorious.org/epydial/epydial-new.git "$SRC_DIR/epydial" + +# gsm0710muxd pyneo-pybankd pyneo-pyneod pyneo-resolvconf python-pyneo zad curl http://git.pyneo.org/browse/cgit/pyneo/snapshot/pyneo-HEAD.tar.gz | tar xz for src in gsm0710muxd pyneo-pybankd pyneo-pyneod pyneo-resolvconf python-pyneo zad; do # add pyneo-pygsmd? cp -r "pyneo-HEAD/$src" "$SRC_DIR/$src" done rm -rf pyneo-HEAD +# pyneo-zadthemes pyneo-zadosk pyneo-zadwm python-ijon for repo in pyneo-zadthemes pyneo-zadosk pyneo-zadwm python-ijon; do curl http://git.pyneo.org/browse/cgit/$repo/snapshot/$repo-HEAD.tar.gz | tar xz mv "$repo-HEAD" "$SRC_DIR/$repo" @@ -139,7 +144,7 @@ done for pkg in "$SRC_DIR/"*; do PKG="${pkg##*/}" # emulate basename(1) mv "$SRC_DIR/$PKG" "$SRC_DIR/$PKG-$DATENOW" - tar --directory "$SRC_DIR" --create --gzip --file "$SRC_DIR/${PKG}_$DATENOW.orig.tar.gz" "$PKG-$DATENOW" + tar --exclude-vcs --directory "$SRC_DIR" --create --gzip --file "$SRC_DIR/${PKG}_$DATENOW.orig.tar.gz" "$PKG-$DATENOW" cp -r "$DEB_DIR/$PKG" "$SRC_DIR/$PKG-$DATENOW/debian" DEBEMAIL="josch@pyneo.org" DEBFULLNAME="Johannes Schauer" dch --package "$PKG" --newversion "$DATENOW-$MAINTAINER" \ --distribution unstable --empty --changelog "$SRC_DIR/$PKG-$DATENOW/debian/changelog" --create "new nightly build"