[Python-modules-commits] r4257 - in packages/python-memcache/trunk (6 files)

crschmidt-guest at users.alioth.debian.org crschmidt-guest at users.alioth.debian.org
Thu Jan 3 20:23:08 UTC 2008


    Date: Thursday, January 3, 2008 @ 20:23:07
  Author: crschmidt-guest
Revision: 4257

Initial import of python-memcache packaging materials.

Added:
  packages/python-memcache/trunk/debian/
  packages/python-memcache/trunk/debian/changelog
  packages/python-memcache/trunk/debian/compat
  packages/python-memcache/trunk/debian/control
  packages/python-memcache/trunk/debian/copyright
  packages/python-memcache/trunk/debian/rules

Added: packages/python-memcache/trunk/debian/changelog
===================================================================
--- packages/python-memcache/trunk/debian/changelog	                        (rev 0)
+++ packages/python-memcache/trunk/debian/changelog	2008-01-03 20:23:07 UTC (rev 4257)
@@ -0,0 +1,5 @@
+python-memcache (1.40-1) unstable; urgency=low
+
+  * Initial release. (Closes: #458608)
+
+ -- Christopher Schmidt <crschmidt at metacarta.com>  Tue,  1 Jan 2008 22:54:59 -0500

Added: packages/python-memcache/trunk/debian/compat
===================================================================
--- packages/python-memcache/trunk/debian/compat	                        (rev 0)
+++ packages/python-memcache/trunk/debian/compat	2008-01-03 20:23:07 UTC (rev 4257)
@@ -0,0 +1 @@
+5

Added: packages/python-memcache/trunk/debian/control
===================================================================
--- packages/python-memcache/trunk/debian/control	                        (rev 0)
+++ packages/python-memcache/trunk/debian/control	2008-01-03 20:23:07 UTC (rev 4257)
@@ -0,0 +1,19 @@
+Source: python-memcache
+Section: python
+Priority: extra
+XS-Python-Version: >= 2.1
+Maintainer: Christopher Schmidt <crschmidt at metacarta.com>
+Build-Depends: debhelper (>= 5.0.38)
+Build-Depends-Indep: python (>= 2.1), python-support (>= 0.6.4), 
+                     python-setuptools
+Standards-Version: 3.7.3
+Homepage: http://www.tummy.com/Community/software/python-memcached/
+
+Package: python-memcache
+Architecture: all
+Depends: ${python:Depends}
+Suggests: memcached
+Description: pure python memcached client 
+ This software is a 100% Python interface to the memcached memory cache
+ daemon. It is the client side software which allows storing values in
+ one or more, possibly remote, memcached servers. 

Added: packages/python-memcache/trunk/debian/copyright
===================================================================
--- packages/python-memcache/trunk/debian/copyright	                        (rev 0)
+++ packages/python-memcache/trunk/debian/copyright	2008-01-03 20:23:07 UTC (rev 4257)
@@ -0,0 +1,56 @@
+This package was debianized by Christopher Schmidt <crschmidt at metacarta.com> on
+Tue,  1 Jan 2008 23:00:41 -0500.
+
+It was downloaded from http://www.tummy.com/Community/software/python-memcached/
+
+Copyright Holder: Copyright (C) 2003 Danga Interactive 
+
+License:
+ This package is licenced under the Python Software Foundation License 
+ version 2.
+ 
+
+ PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2
+ --------------------------------------------
+
+   1. This LICENSE AGREEMENT is between the Python Software Foundation ("PSF"),
+      and the Individual or Organization ("Licensee") accessing and otherwise
+      using this software ("Python") in source or binary form and its associated
+      documentation.
+
+   2. Subject to the terms and conditions of this License Agreement, PSF hereby
+      grants Licensee a nonexclusive, royalty-free, world-wide license to
+      reproduce, analyze, test, perform and/or display publicly, prepare
+      derivative works, distribute, and otherwise use Python alone or in any
+      derivative version, provided, however, that PSF's License Agreement and
+      PSF's notice of copyright, i.e., "Copyright (c) 2001, 2002, 2003, 2004,
+      2005, 2006 Python Software Foundation; All Rights Reserved" are retained
+      in Python alone or in any derivative version prepared by Licensee.
+
+   3. In the event Licensee prepares a derivative work that is based on or
+      incorporates Python or any part thereof, and wants to make the derivative
+      work available to others as provided herein, then Licensee hereby agrees
+      to include in any such work a brief summary of the changes made to Python.
+
+   4. PSF is making Python available to Licensee on an "AS IS" basis.  PSF MAKES
+      NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED.  BY WAY OF EXAMPLE,
+      BUT NOT LIMITATION, PSF MAKES NO AND DISCLAIMS ANY REPRESENTATION OR
+      WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT
+      THE USE OF PYTHON WILL NOT INFRINGE ANY THIRD PARTY RIGHTS.
+
+   5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON FOR ANY
+      INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF
+      MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON, OR ANY DERIVATIVE
+      THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
+
+   6. This License Agreement will automatically terminate upon a material breach
+      of its terms and conditions.
+
+   7. Nothing in this License Agreement shall be deemed to create any
+      relationship of agency, partnership, or joint venture between PSF and
+      Licensee.  This License Agreement does not grant permission to use PSF
+      trademarks or trade name in a trademark sense to endorse or promote
+      products or services of Licensee, or any third party.
+
+   8. By copying, installing or otherwise using Python, Licensee agrees to be
+      bound by the terms and conditions of this License Agreement.

Added: packages/python-memcache/trunk/debian/rules
===================================================================
--- packages/python-memcache/trunk/debian/rules	                        (rev 0)
+++ packages/python-memcache/trunk/debian/rules	2008-01-03 20:23:07 UTC (rev 4257)
@@ -0,0 +1,48 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# TileCache debian/rules
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+PREFIX := debian/python-memcache
+PACKAGE_DIR := /usr/share/python-support/python-memcache
+
+build:
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -rf python_memcached.egg-info build dist
+    
+	dh_clean *.pyc 
+    
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k 
+	dh_installdirs
+
+	# Add here commands to install the package into debian/tilecache.
+	python ./setup.py install --no-compile --root=$(PREFIX) --install-lib=$(PACKAGE_DIR)
+    
+	chmod +x $(PREFIX)$(PACKAGE_DIR)/memcache.py
+
+# Build architecture-independent files here.
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs
+	dh_installchangelogs ChangeLog 
+	dh_link
+	dh_compress
+	dh_fixperms
+	dh_pysupport
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep
+binary-arch:
+.PHONY: build clean binary-indep binary install


Property changes on: packages/python-memcache/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + 




More information about the Python-modules-commits mailing list