]> git.parisson.com Git - timeside.git/commitdiff
add debian packaging scripts
authorPaul Brossier <piem@piem.org>
Mon, 8 Jul 2013 20:24:08 +0000 (15:24 -0500)
committerPaul Brossier <piem@piem.org>
Mon, 8 Jul 2013 20:24:08 +0000 (15:24 -0500)
debian/README.source [new file with mode: 0644]
debian/changelog [new file with mode: 0644]
debian/clean [new file with mode: 0644]
debian/compat [new file with mode: 0644]
debian/control [new file with mode: 0644]
debian/copyright [new file with mode: 0644]
debian/docs [new file with mode: 0644]
debian/rules [new file with mode: 0755]
debian/source/format [new file with mode: 0644]

diff --git a/debian/README.source b/debian/README.source
new file mode 100644 (file)
index 0000000..6946384
--- /dev/null
@@ -0,0 +1,9 @@
+timeside for Debian
+-------------------
+
+<this file describes information about the source package, see Debian policy
+manual section 4.14. You WILL either need to modify or delete this file>
+
+
+
+
diff --git a/debian/changelog b/debian/changelog
new file mode 100644 (file)
index 0000000..2a3c021
--- /dev/null
@@ -0,0 +1,5 @@
+timeside (0.4.3-1) unstable; urgency=low
+
+  * Initial release (Closes: #nnnn)  <nnnn is the bug number of your ITP>
+
+ -- Paul Brossier <piem@debian.org>  Mon, 08 Jul 2013 10:18:57 -0500
diff --git a/debian/clean b/debian/clean
new file mode 100644 (file)
index 0000000..0c61b96
--- /dev/null
@@ -0,0 +1 @@
+TimeSide.egg-info/*
diff --git a/debian/compat b/debian/compat
new file mode 100644 (file)
index 0000000..45a4fb7
--- /dev/null
@@ -0,0 +1 @@
+8
diff --git a/debian/control b/debian/control
new file mode 100644 (file)
index 0000000..e4ba3d7
--- /dev/null
@@ -0,0 +1,22 @@
+Source: timeside
+Section: web
+Priority: extra
+Maintainer: Paul Brossier <piem@debian.org>
+Build-Depends: debhelper (>= 8.0.0), python
+Standards-Version: 3.9.3
+Homepage: http://code.google.com/p/timeside
+
+Package: timeside
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}, python-gst0.10
+Description: open and fast web audio components
+ TimeSide is a set of python components enabling easy audio processing,
+ transcoding, imaging and streaming. Its simple architecture and high-level
+ API have been design to process serial pipelines.
+ .
+ It includes a powerful HTML5 interactive player which can be embedded in any
+ web application to provide fancy waveforms, various analyzer results, synced
+ time metadata display during playback (time-marking) and remote indexing.
+ .
+ The engine (server side) is fully written in Python, the player (client side)
+ in HTML, CSS and JavaScript.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644 (file)
index 0000000..1fc7dae
--- /dev/null
@@ -0,0 +1,44 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: timeside
+Source: <http://code.google.com/p/timeside>
+
+Files: *
+Copyright: 2007-2012 Parisson SARL
+           2006-2012 Guillaume Pellerin <pellerin@parisson.com>
+           2010-2012 Paul Brossier <piem@piem.org>
+           2007 Olivier Guilyardi <olivier@samalyse.com>
+License: GPL-2+
+ 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".
+
+Files: debian/*
+Copyright: 2013 Paul Brossier <piem@debian.org>
+License: GPL-2+
+ 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".
diff --git a/debian/docs b/debian/docs
new file mode 100644 (file)
index 0000000..9949a60
--- /dev/null
@@ -0,0 +1,2 @@
+README.rst
+requirements.txt
diff --git a/debian/rules b/debian/rules
new file mode 100755 (executable)
index 0000000..2ebce13
--- /dev/null
@@ -0,0 +1,13 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+%:
+       dh $@ --with python2
diff --git a/debian/source/format b/debian/source/format
new file mode 100644 (file)
index 0000000..163aaf8
--- /dev/null
@@ -0,0 +1 @@
+3.0 (quilt)