[26824] in Source-Commits

home help back first fref pref prev next nref lref last post

/svn/athena r25777 - in trunk/debathena/config: . python-config python-config/debian

daemon@ATHENA.MIT.EDU (Jonathan D Reed)
Mon Oct 1 16:03:53 2012

Date: Mon, 1 Oct 2012 16:03:46 -0400
From: Jonathan D Reed <jdreed@MIT.EDU>
Message-Id: <201210012003.q91K3kK3004026@drugstore.mit.edu>
To: source-commits@MIT.EDU
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Author: jdreed
Date: 2012-10-01 16:03:46 -0400 (Mon, 01 Oct 2012)
New Revision: 25777

Added:
   trunk/debathena/config/python-config/
   trunk/debathena/config/python-config/debian/
   trunk/debathena/config/python-config/debian/changelog
   trunk/debathena/config/python-config/debian/compat
   trunk/debathena/config/python-config/debian/control.in
   trunk/debathena/config/python-config/debian/copyright
   trunk/debathena/config/python-config/debian/debathena-python-config.install
   trunk/debathena/config/python-config/debian/python.debathena
   trunk/debathena/config/python-config/debian/rules
Log:
In python-config:
  * Initial release. (Trac: #1126)


Added: trunk/debathena/config/python-config/debian/changelog
===================================================================
--- trunk/debathena/config/python-config/debian/changelog	                        (rev 0)
+++ trunk/debathena/config/python-config/debian/changelog	2012-10-01 20:03:46 UTC (rev 25777)
@@ -0,0 +1,6 @@
+debathena-python-config (1.0) unstable; urgency=low
+
+  * Initial release. (Trac: #1126)
+
+ -- Jonathan Reed <jdreed@mit.edu>  Mon, 01 Oct 2012 15:34:14 -0400
+

Added: trunk/debathena/config/python-config/debian/compat
===================================================================
--- trunk/debathena/config/python-config/debian/compat	                        (rev 0)
+++ trunk/debathena/config/python-config/debian/compat	2012-10-01 20:03:46 UTC (rev 25777)
@@ -0,0 +1 @@
+6

Added: trunk/debathena/config/python-config/debian/control.in
===================================================================
--- trunk/debathena/config/python-config/debian/control.in	                        (rev 0)
+++ trunk/debathena/config/python-config/debian/control.in	2012-10-01 20:03:46 UTC (rev 25777)
@@ -0,0 +1,16 @@
+Source: debathena-python-config
+Section: debathena-config/utils
+Priority: extra
+Maintainer: Debathena Project <debathena@mit.edu>
+Build-Depends: @cdbs@
+Standards-Version: 3.9.1
+
+Package: debathena-python-config
+Architecture: all
+Depends: python, ${misc:Depends}
+Provides: ${diverted-files}
+Conflicts: ${diverted-files}
+Description: Site customizations for python.
+ Adds a wrapper script for Python which merely execs the "real"
+ python.  Necessary because python tries to be clever and breaks
+ the /usr/athena symlink

Added: trunk/debathena/config/python-config/debian/copyright
===================================================================
--- trunk/debathena/config/python-config/debian/copyright	                        (rev 0)
+++ trunk/debathena/config/python-config/debian/copyright	2012-10-01 20:03:46 UTC (rev 25777)
@@ -0,0 +1,27 @@
+This software and its Debian packaging are copyright (c) 2012, 
+Massachusetts Institute of Technology.  All rights reserved.
+
+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.
+    * Neither the name of the Massachusetts Institute of Technology nor the
+      names of its contributors may be used to endorse or promote products
+      derived from this software without specific prior written permission.
+
+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 MASSACHUSETTS
+INSTITUTE OF TECHNOLOGY 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.

Added: trunk/debathena/config/python-config/debian/debathena-python-config.install
===================================================================
--- trunk/debathena/config/python-config/debian/debathena-python-config.install	                        (rev 0)
+++ trunk/debathena/config/python-config/debian/debathena-python-config.install	2012-10-01 20:03:46 UTC (rev 25777)
@@ -0,0 +1 @@
+debian/python.debathena usr/bin

Added: trunk/debathena/config/python-config/debian/python.debathena
===================================================================
--- trunk/debathena/config/python-config/debian/python.debathena	                        (rev 0)
+++ trunk/debathena/config/python-config/debian/python.debathena	2012-10-01 20:03:46 UTC (rev 25777)
@@ -0,0 +1,8 @@
+#!/bin/sh
+
+if [ -x /usr/bin/python.debathena-orig ]; then
+    exec /usr/bin/python.debathena-orig
+else
+    echo "ERROR: debathena-python-config is improperly installed." >&2
+    exit 1
+fi


Property changes on: trunk/debathena/config/python-config/debian/python.debathena
___________________________________________________________________
Added: svn:executable
   + *

Added: trunk/debathena/config/python-config/debian/rules
===================================================================
--- trunk/debathena/config/python-config/debian/rules	                        (rev 0)
+++ trunk/debathena/config/python-config/debian/rules	2012-10-01 20:03:46 UTC (rev 25777)
@@ -0,0 +1,8 @@
+#!/usr/bin/make -f
+
+DEB_DIVERT_EXTENSION = .debathena
+DEB_DIVERT_FILES_debathena-python-config += \
+        /usr/bin/python.debathena
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/rules/config-package.mk


Property changes on: trunk/debathena/config/python-config/debian/rules
___________________________________________________________________
Added: svn:executable
   + *


home help back first fref pref prev next nref lref last post