Commit 3bf1a7f5 authored by Saul Ibarra's avatar Saul Ibarra

Added MANIFEST.in, setup.py and Debian packaging files

parent 688f2a1f
include MANIFEST.in run
include bin/blink
recursive-include resources *.ui *.png *.svg *.wav
recursive-include debian changelog compat control copyright rules
recursive-include debian pycompat pyversions
recursive-include debian blink.* blink*.*
recursive-include debian/source format
recursive-include doc *.txt
prune debian/blink
.\"Created with GNOME Manpages Editor Wizard
.\"http://sourceforge.net/projects/gmanedit2
.TH Blink 1 "July 16, 2010" "" "Blink"
.SH NAME
Blink \- A state of the art, easy to use SIP client
.SH DESCRIPTION
Find the complete
.B Blink
features and information at http://icanblink.com
[Desktop Entry]
Name=Blink
GenericName=SIP client
Comment=A state of the art, easy to use SIP client
X-GNOME-FullName=Blink SIP client
Type=Application
Exec=blink
Icon=/usr/share/blink/icons/blink48.png
StartupNotify=false
Terminal=false
Categories=Qt;Network;Telephony;
doc/audio.txt
doc/readme.txt
debian/blink.desktop usr/share/applications/
debian/blink.xpm usr/share/pixmaps/
?package(blink):\
needs="X11"\
section="Applications/Network/Communication"\
title="Blink"\
icon="/usr/share/pixmaps/blink.xpm"\
command="blink"
This diff is collapsed.
blink (0.1.0) unstable; urgency=low
* Initial release.
-- Saul Ibarra <saul@ag-projects.com> Fri, 16 Jul 2010 12:54:28 +0200
Source: blink
Section: python
Priority: optional
Maintainer: Dan Pascu <dan@ag-projects.com>
Uploaders: Adrian Georgescu <ag@ag-projects.com>, Lucian Stanescu <luci@ag-projects.com>, Saul Ibarra <saul@ag-projects.com>
Build-Depends: cdbs (>= 0.4.47), debhelper (>= 7), python-all (>= 2.5), python-qt4 (>= 4.6), python-support
Standards-Version: 3.9.0
Homepage: http://icanblink.com
Package: blink
Architecture: all
Depends: ${python:Depends}, ${misc:Depends}, python-application (>= 1.2.4), python-cjson, python-eventlet-0.8, python-qt4 (>= 4.6), python-twisted-core (>= 8.1.0), python-sipsimple (>= 0.15.1), python-zope.interface
Description: A state of the art, easy to use SIP client
Blink is a fully featured SIP client written in Python and built on top of
SIP SIMPLE client SDK. Blink provides real time applications based on SIP
and related protocols for Audio, Instant Messaging, File Transfers, Desktop
Sharing and Presence. Other media types can be easily added by using an
extensible high-level API.
This work was packaged for Debian by:
Saul Ibarra <saul@ag-projects.com> on Fri, 16 Jul 2010 13:04:56 +0200
Upstream Author(s):
Adrian Georgescu
Dan Pascu
Lucian Stanescu
Saúl Ibarra
Copyright:
Copyright (C) 2010 AG Projects
License:
Blink is licensed under GNU General Public License version 3. A copy of the
license is available at http://www.gnu.org/licenses/gpl-3.0.html
The following restrictions apply:
* You may not alter the name of the software (Blink)
* You may not alter the Copyright and About notices
The Debian packaging is:
Copyright (C) 2010 Saul Ibarra <saul@ag-projects.com>
and is licensed under the GPL version 3,
Blink contains the following 3rd party software packages:
- GData API from Google Inc.
Licensed under the Apache 2.0 license. A copy of the license can be found at
/usr/share/common-licenses/Apache-2.0
#!/usr/bin/make -f
DEB_PYTHON_SYSTEM=pysupport
include /usr/share/cdbs/1/class/python-distutils.mk
include /usr/share/cdbs/1/rules/debhelper.mk
clean::
-rm -rf dist MANIFEST
#!/usr/bin/env python
from distutils.core import setup
import os
import glob
import blink
def find_packages(toplevel):
return [directory.replace('/', '.') for directory, subdirs, files in os.walk(toplevel) if '__init__.py' in files]
setup(name = "blink",
version = blink.__version__,
author = "AG Projects",
author_email = "support@ag-projects.com",
url = "http://icanblink.com",
description = "Blink Qt",
long_description = "A state of the art, easy to use SIP client",
platforms = ["Platform Independent"],
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"License :: GNU General Public License 3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python"
],
packages = find_packages('blink'),
data_files = [('bin', ['bin/blink']),
('share/blink', glob.glob('resources/*.ui')),
('share/blink/icons', glob.glob('resources/icons/*.png')+glob.glob('resources/icons/*.svg')),
('share/blink/sounds', glob.glob('resources/sounds/*.wav'))
]
)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment