[Pkg-voip-commits] [starpy] 01/29: Initial Debian packaging
tzafrir at debian.org
tzafrir at debian.org
Fri Aug 14 15:05:10 UTC 2015
This is an automated email from the git hooks/post-receive script.
tzafrir pushed a commit to branch master
in repository starpy.
commit 88aa42cef880c3152dc09e6b653724f402d00a5e
Author: Tzafrir Cohen <tzafrir at cohens.org.il>
Date: Mon Nov 21 21:35:25 2011 +0200
Initial Debian packaging
---
debian/changelog | 5 +++
debian/compat | 1 +
debian/control | 23 ++++++++++++++
debian/copyright | 67 +++++++++++++++++++++++++++++++++++++++
debian/patches/extra-license-file | 14 ++++++++
debian/patches/series | 1 +
debian/rules | 4 +++
debian/source/format | 1 +
8 files changed, 116 insertions(+)
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..8c89b8b
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+starpy (1.1.0~20102011-1) unstable; urgency=low
+
+ * Initial release. (Closes: #625216))
+
+ -- Tzafrir Cohen <tzafrir at debian.org> Mon, 21 Nov 2011 20:27:15 +0200
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..45a4fb7
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+8
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..054be7b
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,23 @@
+Source: starpy
+Section: python
+Priority: optional
+Maintainer: Debian VoIP Team <pkg-voip-maintainers at lists.alioth.debian.org>
+Uploaders: Tzafrir Cohen <tzafrir at debian.org>
+Build-Depends: debhelper (>= 8.0),
+ python-support (>= 0.6),
+ python-twisted-core
+Standards-Version: 3.9.2
+Homepage: http://www.vrplumber.com/programming/starpy/
+
+Package: python-starpy
+Architecture: all
+Provides: ${python:Provides}
+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..0b3fb08
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,67 @@
+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 <pabelanger at digium.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 <pabelanger at digium.com>
+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/patches/extra-license-file b/debian/patches/extra-license-file
new file mode 100644
index 0000000..a957cf5
--- /dev/null
+++ b/debian/patches/extra-license-file
@@ -0,0 +1,14 @@
+Author: Paul Belanger <pabelanger at digium.com>
+Description: Remove an unneeded LICENSE file
+
+--- a/setup.py
++++ b/setup.py
+@@ -55,7 +55,7 @@ if __name__ == "__main__":
+ if result:
+ allResults.append( (dirname, result))
+ return allResults
+- dataFiles = npFilesFor( 'doc') + npFilesFor( 'examples') + [('.',('LICENSE',))]
++ dataFiles = npFilesFor( 'doc') + npFilesFor( 'examples')
+ dataFiles = [
+ (os.path.join('starpy',directory), files)
+ for (directory,files) in dataFiles
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..50dd275
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+extra-license-file
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..2d33f6a
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+ dh $@
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)
--
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