[Pkg-voip-commits] [starpy] 01/02: Imported Debian patch 1.0.1-1

Victor Seva Lopez maniac-guest at moszumanska.debian.org
Fri Aug 14 13:00:27 UTC 2015


This is an automated email from the git hooks/post-receive script.

maniac-guest pushed a commit to branch master
in repository starpy.

commit 6b11f4ab7088dc650dde44d5fbd8a740b488adbf
Author: Tzafrir Cohen <tzafrir at debian.org>
Date:   Thu Feb 16 00:34:25 2012 +0200

    Imported Debian patch 1.0.1-1
---
 debian/changelog     |  6 +++++
 debian/compat        |  1 +
 debian/control       | 24 +++++++++++++++++++
 debian/copyright     | 68 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 debian/gbp.conf      |  8 +++++++
 debian/rules         | 23 ++++++++++++++++++
 debian/source/format |  1 +
 debian/watch         |  2 ++
 8 files changed, 133 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..75cb7f0
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,6 @@
+starpy (1.0.1-1) unstable; urgency=low
+
+  [ Paul Belanger ]
+  * Initial release. (Closes: #625216)
+
+ -- Tzafrir Cohen <tzafrir at debian.org>  Thu, 16 Feb 2012 00:34:25 +0200
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..654d2f2
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,24 @@
+Source: starpy
+Section: python
+Priority: optional
+Maintainer: Debian VoIP Team <pkg-voip-maintainers at lists.alioth.debian.org>
+# Add Paul Belanger as an uploaded, for now.
+Uploaders: Tzafrir Cohen <tzafrir at debian.org>, Paul Belanger <paul.belanger at polybeacon.com>
+Build-Depends: debhelper (>= 7.0.50~),
+ python,
+ python-twisted-core
+X-Python-Version: >= 2.4
+Standards-Version: 3.9.2
+Homepage: https://github.com/asterisk-org/starpy
+Vcs-Git: git://anonscm.debian.org/pkg-voip/starpy.git
+Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-voip/starpy.git
+
+Package: python-starpy
+Architecture: all
+Depends: python-twisted-core, ${misc:Depends}, ${python:Depends}
+Recommends: asterisk
+Description: Asterisk (AMI) protocols for Twisted Python
+ A Twisted Python protocol that provides access to the Asterisk PBX's Manager
+ Interface (AMI) and Fast Asterisk Gateway Interface (FastAGI). Together these
+ allow you to write both command-and-control interfaces (used, for example to
+ generate new calls) and to customize user interactions from the dial-plan.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..6d8d895
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,68 @@
+Format: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=174
+Upstream-Name: StarPy
+Source: https://github.com/asterisk-org/starpy/
+Upstream-Contact: Paul Belanger <paul.belanger at polybeacon.com>
+Comment:
+  Previously maintained by:
+  Upstream-Contact: Michael C. Fletcher <mcfletch at vrplumber.com>
+  Source: http://www.vrplumber.com/programming/starpy/
+
+Files: *
+Copyright: Copyright 2006 Michael C. Fletcher <mcfletch at vrplumber.com>
+License: BSD-3-clause
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ .
+ Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ .
+ Redistributions in binary form must reproduce the above
+ copyright notice, this list of conditions and the following
+ disclaimer in the documentation and/or other materials
+ provided with the distribution.
+ .
+ The name of Michael C. Fletcher, or the name of any Contributor,
+ may not be used to endorse or promote products derived from this
+ software without specific prior written permission.
+ .
+ THIS SOFTWARE IS NOT FAULT TOLERANT AND SHOULD NOT BE USED IN ANY
+ SITUATION ENDANGERING HUMAN LIFE OR PROPERTY.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
+ FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+ COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
+ INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+ STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
+ OF THE POSSIBILITY OF SUCH DAMAGE.
+
+Files: debian/*
+Copyright: Copyright 2011 Paul Belanger <paul.belanger at polybeacon.com>
+           Copyright 2011 Tzafrir Cohen <tzafrir at debian.org>
+License: GPL-2+
+ 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 2 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 package; if not, write to the Free
+ Software Foundation, Inc., 51 Franklin St, Fifth Floor,
+ Boston, MA  02110-1301 USA
+ .
+ On Debian systems, the full text of the GNU General Public
+ License version 2 can be found in the file
+ `/usr/share/common-licenses/GPL-2'. 
diff --git a/debian/gbp.conf b/debian/gbp.conf
new file mode 100644
index 0000000..4a73d23
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,8 @@
+[DEFAULT]
+
+[git-buildpackage]
+export-dir = ../build-area/
+tarball-dir = ../tarballs/
+overlay = True
+pristine-tar = False
+compression = gzip
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..39929f0
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,23 @@
+#!/usr/bin/make -f
+
+DEBVERSION:=$(shell dpkg-parsechangelog | sed -n -e 's/Version: //p')
+DEB_SRC_VERSION:=$(shell echo $(DEBVERSION) | sed -e 's/-[^-]\+$$//')
+UPVERSION:=$(shell echo $(DEB_SRC_VERSION) | sed -e 's/[.~]dfsg//' -e 's/~\(\(rc\|beta\)[0-9]\)/-\1/')
+
+FILENAME := starpy_$(DEB_SRC_VERSION).orig.tar.gz
+URL := https://github.com/downloads/asterisk-org/starpy/starpy-$(UPVERSION).tar.gz
+
+%:
+	dh $@ --with python2
+
+print-version:
+	@@echo "Debian version:          $(DEBVERSION)"
+	@@echo "Upstream version:        $(UPVERSION)"
+
+get-orig-source:
+	@@dh_testdir
+	@@[ -d ../tarballs/. ] || mkdir -p ../tarballs
+	@@if [ ! -f ../tarballs/$(FILENAME) ]; then \
+		echo Downloading $(FILENAME) from $(URL) ...; \
+		wget -nv -T10 -t3 -O ../tarballs/$(FILENAME) $(URL); \
+	fi
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..9d9581f
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+https://github.com/asterisk-org/starpy/downloads .*/starpy/starpy-(1.0.[0-9.]*).tar.gz

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-voip/starpy.git



More information about the Pkg-voip-commits mailing list