[Python-apps-commits] r2988 - in packages/quickplay/trunk (16 files)

cjsmo-guest at users.alioth.debian.org cjsmo-guest at users.alioth.debian.org
Sun May 24 03:13:11 UTC 2009


    Date: Sunday, May 24, 2009 @ 03:13:10
  Author: cjsmo-guest
Revision: 2988

[svn-inject] Applying Debian modifications to trunk

Added:
  packages/quickplay/trunk/debian/
  packages/quickplay/trunk/debian/README.Debian
  packages/quickplay/trunk/debian/changelog
  packages/quickplay/trunk/debian/compat
  packages/quickplay/trunk/debian/control
  packages/quickplay/trunk/debian/copyright
  packages/quickplay/trunk/debian/install
  packages/quickplay/trunk/debian/links
  packages/quickplay/trunk/debian/manpages
  packages/quickplay/trunk/debian/menu
  packages/quickplay/trunk/debian/pycompat
  packages/quickplay/trunk/debian/quickplay.1
  packages/quickplay/trunk/debian/rules
  packages/quickplay/trunk/debian/watch
Modified:
  packages/quickplay/trunk/quickplay
  packages/quickplay/trunk/setup.py


Property changes on: packages/quickplay/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/quickplay/trunk/debian/README.Debian
===================================================================
--- packages/quickplay/trunk/debian/README.Debian	                        (rev 0)
+++ packages/quickplay/trunk/debian/README.Debian	2009-05-24 03:13:10 UTC (rev 2988)
@@ -0,0 +1,93 @@
+Quickplay for Debian
+------------------
+
+Quickplay is a mp3 player and front end for Ampache.  To use Quickplay you will
+need to have Ampache installed and operational.  Additional configuration of
+firewalls and proxy servers may be needed.
+
+Access Control Lists
+
+Ampache supports internal Access Control Lists, these are IP/DNS based
+restrictions on different actions and interactions with Ampache. By Default
+Access Controls lists are turned off in Ampache. In order to turn them on you
+must modify the /config/ampache.cfg.php and set access_control to true
+
+; Use Access List
+; Toggle this on if you want ampache to pay attention to the access list
+; and only allow streaming/downloading/xml-rpc from known hosts xml-rpc 
+; will not work without this on.
+; NOTE: Default Behavior is DENY FROM ALL
+; DEFAULT: false
+;access_control = "false"
+
+The default configuration of Ampache's ACLs when enabled is Deny From All. There
+are a few different types, and levels
+
+Start IP & End IP
+
+This is a range of IP addresses represented by a pair of dotted quad's. This
+does not have to be within a subnet boundary. Currently only IPV4 is supported.
+
+Any IP Address
+
+0.0.0.0 - 255.255.255.255
+
+Any 10.x IP Address
+
+10.0.0.0 - 10.255.255.255
+
+ACL Types
+
+    *
+      Interface Access to the web interface
+          o
+            Restricts Login based on IP
+          o
+            Defaults to DENY FROM ALL
+    *
+      Streaming Controls streaming/downloading access
+          o
+            Restricts access to /play/index.php based on IP + USER
+          o
+            Defaults to DENY FROM ALL
+    *
+      Local Network Local network ACL
+          o
+            Used by the downsample remote configuration option
+          o
+            Tells Ampache which IP addresses should be considered local to
+	    the server and which ones are remote
+          o
+            Default not applicable
+    *
+      RPC Used to control remote access to your Ampache installation
+          o
+            Remote access to the XML API
+          o
+            Remote Sync using XML-RPC.
+          o
+            Restricts based on IP + USER + KEY, KEY may not be blank
+          o
+            Defaults to DENY FROM ALL
+
+ACL Users
+
+Ampache allows you to define different ACLs to different users. This can be
+useful for defining connecting an API calls to a username, or to limiting a
+specific user's streaming access regardless of their IP Address. The default is
+'system' which will apply to all users of Ampache.  
+
+Access Levels
+
+This setting is not fully implemented, more on this later
+Setting up an ACL
+
+ACl's can only be created by Full Administrators. You can find them under the
+Admin Menu under the submenu
+
+Access Control
+
+Once you have your Ampache server configured correctly launch quickplay and
+enter your server information and enjoy.
+
+ -- Charlie Smotherman <cjsmo at cableone.net>  Thu,  18 Sep 2008 01:25:08 -0500

Added: packages/quickplay/trunk/debian/changelog
===================================================================
--- packages/quickplay/trunk/debian/changelog	                        (rev 0)
+++ packages/quickplay/trunk/debian/changelog	2009-05-24 03:13:10 UTC (rev 2988)
@@ -0,0 +1,6 @@
+quickplay (1.2-1) unstable; urgency=low
+
+  * Initial release.  Closes: #499485 (LP: #272006)
+
+ -- Charlie Smotherman <cjsmo at ubuntu.com>  Tue, 24 Mar 2009 21:32:04 -0500
+

Added: packages/quickplay/trunk/debian/compat
===================================================================
--- packages/quickplay/trunk/debian/compat	                        (rev 0)
+++ packages/quickplay/trunk/debian/compat	2009-05-24 03:13:10 UTC (rev 2988)
@@ -0,0 +1 @@
+5

Added: packages/quickplay/trunk/debian/control
===================================================================
--- packages/quickplay/trunk/debian/control	                        (rev 0)
+++ packages/quickplay/trunk/debian/control	2009-05-24 03:13:10 UTC (rev 2988)
@@ -0,0 +1,24 @@
+Source: quickplay
+Section: python
+Priority: optional
+Maintainer: Charlie Smotherman <cjsmo at ubuntu.com>
+Vcs-Git:  http://quickplay.ampache.org/git
+Vcs-Browser: http://quickplay.ampache.org
+Build-Depends: debhelper (>=7), python (>=2.4), python-support (>= 0.6.4)
+XS-Python-Version: (>=2.4)
+Standards-Version: 3.8.1
+
+Package: python-quickplay
+Architecture: all
+Depends: ${misc:Depends}, python (>=2.4), python-gtk2,
+	python-gobject
+Suggests: python-gnome2, ampache
+Description:  plays mp3 streams from an Ampache server
+ Quickplay is a light weight mp3 player and front end for your Ampache
+ server. Quickplay, utilizes Ampache's XML API to send and receive metadata
+ and stream information from your Ampache server.  Quickplay is written in
+ Python and is very small, which makes it great for minimalistic setups where
+ a heavier, bloated player won't due. Quickplay has been ported as Amdroid and 
+ is now available in the Android Market on the Verison G1 mobile phone.
+
+

Added: packages/quickplay/trunk/debian/copyright
===================================================================
--- packages/quickplay/trunk/debian/copyright	                        (rev 0)
+++ packages/quickplay/trunk/debian/copyright	2009-05-24 03:13:10 UTC (rev 2988)
@@ -0,0 +1,38 @@
+This package was debianized by Charlie Smotherman <cjsmo at ubuntu.com> on
+Mon, 19 Jan 2009 21:27:04 -0500.
+
+It was downloaded from:
+
+    http://quickplay.ampache.org
+
+Upstream Author: 
+
+    Kevin Purdy purdyk at onid.orst.edu
+
+Copyright: 
+
+    Copyright 2008 Kevin Purdy
+    
+License:
+
+    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 package; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+
+On Debian systems, the complete text of the GNU General
+Public License can be found in `/usr/share/common-licenses/GPL-2'.
+
+The Debian packaging is Copyright 2009, Charlie Smotherman <cjsmo at ubuntu.com> and
+is licensed under the GPL-2, see above.
+
+

Added: packages/quickplay/trunk/debian/install
===================================================================
--- packages/quickplay/trunk/debian/install	                        (rev 0)
+++ packages/quickplay/trunk/debian/install	2009-05-24 03:13:10 UTC (rev 2988)
@@ -0,0 +1,2 @@
+quickplay.desktop /usr/share/applications
+quickplay.xpm /usr/share/pixmaps

Added: packages/quickplay/trunk/debian/links
===================================================================
--- packages/quickplay/trunk/debian/links	                        (rev 0)
+++ packages/quickplay/trunk/debian/links	2009-05-24 03:13:10 UTC (rev 2988)
@@ -0,0 +1 @@
+usr/share/quickplay/quickplay usr/bin/quickplay

Added: packages/quickplay/trunk/debian/manpages
===================================================================
--- packages/quickplay/trunk/debian/manpages	                        (rev 0)
+++ packages/quickplay/trunk/debian/manpages	2009-05-24 03:13:10 UTC (rev 2988)
@@ -0,0 +1 @@
+debian/quickplay.1

Added: packages/quickplay/trunk/debian/menu
===================================================================
--- packages/quickplay/trunk/debian/menu	                        (rev 0)
+++ packages/quickplay/trunk/debian/menu	2009-05-24 03:13:10 UTC (rev 2988)
@@ -0,0 +1,6 @@
+?package(python-quickplay): needs="X11"\
+ section="Applications/Sound"\
+ title="QuickPlay"\
+ command="/usr/bin/quickplay"\
+ icon="/usr/share/pixmaps/quickplay.xpm"\
+

Added: packages/quickplay/trunk/debian/pycompat
===================================================================
--- packages/quickplay/trunk/debian/pycompat	                        (rev 0)
+++ packages/quickplay/trunk/debian/pycompat	2009-05-24 03:13:10 UTC (rev 2988)
@@ -0,0 +1 @@
+2

Added: packages/quickplay/trunk/debian/quickplay.1
===================================================================
--- packages/quickplay/trunk/debian/quickplay.1	                        (rev 0)
+++ packages/quickplay/trunk/debian/quickplay.1	2009-05-24 03:13:10 UTC (rev 2988)
@@ -0,0 +1,27 @@
+.\" for manpage-specific macros, see man(7)
+.TH "QUICKPLAY" "1" "Sep 17, 2008" "Kevin Purdy" "Sound"
+.SH "NAME"
+quickplay \- mp3 player and frontend for Ampache
+.SH "DESCRIPTION"
+Quickplay is written in Python and is a light weight mp3 player,
+and frontend for Ampache. 
+
+Quickplay uses Ampaches XML API and Access Control Lists (ACL)
+to browse and play server content.Quickplay was developed 
+specifically for Ampache but I suppose Quickplay could be modified
+to work with other server configurations that support XML\-RPC.
+However these "custom" server configuration have not been tested
+and nor will they. 
+.SH "OPTIONS"
+There are no command line options for quick play.
+.SH "SEE ALSO"
+.BR /usr/share/doc/Quickplay/README.Debian.gz
+
+.BR http://ampache.org/wiki/config:acl.
+
+
+.SH "AUTHOR"
+quickplay was written by Kevin Purdy <purdyk at onid.orst.edu>.
+.PP 
+This manual page was written by Charlie Smotherman
+<cjsmo at cableone.net>, for the Debian project and Kevin Purdy.

Added: packages/quickplay/trunk/debian/rules
===================================================================
--- packages/quickplay/trunk/debian/rules	                        (rev 0)
+++ packages/quickplay/trunk/debian/rules	2009-05-24 03:13:10 UTC (rev 2988)
@@ -0,0 +1,7 @@
+#!/usr/bin/make -f
+ 
+%:
+	dh $@
+
+override_dh_auto_install:
+	dh_auto_install -- --install-scripts=/usr/share/quickplay --install-lib=/usr/share/quickplay


Property changes on: packages/quickplay/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/quickplay/trunk/debian/watch
===================================================================
--- packages/quickplay/trunk/debian/watch	                        (rev 0)
+++ packages/quickplay/trunk/debian/watch	2009-05-24 03:13:10 UTC (rev 2988)
@@ -0,0 +1,3 @@
+version=3
+
+http://quickplay.ampache.org/git/quickplay-(latest)\.tar\.bz2

Modified: packages/quickplay/trunk/quickplay
===================================================================
--- packages/quickplay/trunk/quickplay	2009-05-24 03:12:59 UTC (rev 2987)
+++ packages/quickplay/trunk/quickplay	2009-05-24 03:13:10 UTC (rev 2988)
@@ -15,7 +15,8 @@
 # |                                                                        |
 # | You should have received a copy of the GNU General Public License      |
 # | along with this program; if not, write to the Free Software            |
-# | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.              |
+# | Foundation, Inc., 59 Temple Place - Suite 330,                         |
+# | Boston, MA  02111-1307, USA.                                           |
 # +------------------------------------------------------------------------+
 
 

Modified: packages/quickplay/trunk/setup.py
===================================================================
--- packages/quickplay/trunk/setup.py	2009-05-24 03:12:59 UTC (rev 2987)
+++ packages/quickplay/trunk/setup.py	2009-05-24 03:13:10 UTC (rev 2988)
@@ -7,7 +7,7 @@
     description = "A light weight mp3 player and frontend for Ampache",
     author = "Kevin Purdy",
     author_email = "purdyk at onid.orst.edu",
-    url = "http://purdyk.isfound.at/",
+    url = "http://quickplay.ampache.org",
     scripts = ["quickplay"],
     long_description = "A light weight mp3 player/frontend for Ampache."
     )




More information about the Python-apps-commits mailing list