[Pkg-jed-commit] r126 - tags/packages trunk/packages trunk/packages/slirp trunk/packages/slirp/debian

Rafael Laboissiere rafael at costa.debian.org
Thu Nov 3 16:44:27 UTC 2005


Author: rafael
Date: 2005-11-03 16:44:27 +0000 (Thu, 03 Nov 2005)
New Revision: 126

Added:
   tags/packages/slirp/
   trunk/packages/slirp/
   trunk/packages/slirp/debian/
   trunk/packages/slirp/debian/changelog
   trunk/packages/slirp/debian/compat
   trunk/packages/slirp/debian/control
   trunk/packages/slirp/debian/copyright
   trunk/packages/slirp/debian/rules
   trunk/packages/slirp/debian/slang-slirp.docs
   trunk/packages/slirp/debian/slang-slirp.examples
   trunk/packages/slirp/debian/substvars
Log:
Initial commit of SLIRP pacakge


Added: trunk/packages/slirp/debian/changelog
===================================================================
--- trunk/packages/slirp/debian/changelog	2005-11-03 16:22:38 UTC (rev 125)
+++ trunk/packages/slirp/debian/changelog	2005-11-03 16:44:27 UTC (rev 126)
@@ -0,0 +1,20 @@
+slirp (1.7.6-0.1) unstable; urgency=low
+
+   +++ Changes by Rafael Laboissiere
+
+  * Initial release
+
+ -- Debian JED Group <pkg-jed-devel at lists.alioth.debian.org>  Mon, 31 Oct 2005 18:56:51 +0100
+
+Local Variables:
+debian-changelog-full-name: "Debian JED Group"
+debian-changelog-mailing-address: "pkg-jed-devel at lists.alioth.debian.org"
+eval: (add-local-hook
+  'debian-changelog-add-version-hook
+  (lambda ()
+    (save-excursion
+      (forward-line -1)
+      (beginning-of-line)
+      (insert "\n   NOT YET RELEASED!\n\n   +++ Changes by "
+        (or (getenv "DEBFULLNAME") (user-full-name)) "\n"))))
+End:

Added: trunk/packages/slirp/debian/compat
===================================================================
--- trunk/packages/slirp/debian/compat	2005-11-03 16:22:38 UTC (rev 125)
+++ trunk/packages/slirp/debian/compat	2005-11-03 16:44:27 UTC (rev 126)
@@ -0,0 +1 @@
+4

Added: trunk/packages/slirp/debian/control
===================================================================
--- trunk/packages/slirp/debian/control	2005-11-03 16:22:38 UTC (rev 125)
+++ trunk/packages/slirp/debian/control	2005-11-03 16:44:27 UTC (rev 126)
@@ -0,0 +1,24 @@
+Source: slirp
+Section: interpreters
+Priority: optional
+Maintainer: Debian JED Group <pkg-jed-devel at lists.alioth.debian.org>
+Build-Depends: debhelper (>= 4.0.0), libslang2-dev (>= 2.0.4-6), cdbs
+Standards-Version: 3.6.2
+
+Package: slang-slirp
+Architecture: any
+Depends: ${shlibs:Depends}
+Suggests: slsh (>= 2.0) | jed (>= 0.99.17) | slrn (>= 0.9.8.1pl1-4)
+Description: C code generator for the S-Lang scripting language
+ SLIRP is a C code generator, aimed at simplifying the process of
+ creating modules for the S-Lang scripting language. Using it can
+ dramatically reduce the time and effort required to make C, C++, and
+ FORTRAN code callable directly from the S-Lang interpreter.
+ .
+ SLIRP can also generate Makefiles to automate the module build
+ process, as well as pure C bindings for C++ code (cfront mode), or
+ empty (stub) implementations for the interface(s) specified by its
+ input. The code emitted in the latter two cases has no dependencies
+ upon S-Lang whatsoever.
+ .
+ Homepage: http://space.mit.edu/cxc/software/slang/modules/slirp/
\ No newline at end of file

Added: trunk/packages/slirp/debian/copyright
===================================================================
--- trunk/packages/slirp/debian/copyright	2005-11-03 16:22:38 UTC (rev 125)
+++ trunk/packages/slirp/debian/copyright	2005-11-03 16:44:27 UTC (rev 126)
@@ -0,0 +1,36 @@
+This package was debianized by Rafael Laboissiere <rafael at debian.org> on
+Wed Nov  2 08:37:15 CET 2005
+
+It was downloaded from
+
+    ftp://space.mit.edu/pub/mnoble/slirp/
+
+Copyright Holder: Massachusetts Institute of Technology
+
+License:
+
+  Copyright (c) 2003-2005 Massachusetts Institute of Technology
+  Copyright (C) 2002 Michael S. Noble <mnoble at space.mit.edu>
+
+  This software was partially developed by the MIT Center for Space
+  Research under contract SV1-61010 from the Smithsonian Institution.
+
+  Permission to use, copy, modify, distribute, and sell this software
+  and its documentation for any purpose is hereby granted without fee,
+  provided that the above copyright notice appear in all copies and
+  that both that copyright notice and this permission notice appear in
+  the supporting documentation, and that the name of the Massachusetts
+  Institute of Technology not be used in advertising or publicity
+  pertaining to distribution of the software without specific, written
+  prior permission.  The Massachusetts Institute of Technology makes
+  no representations about the suitability of this software for any
+  purpose.  It is provided "as is" without express or implied warranty.
+
+  THE MASSACHUSETTS INSTITUTE OF TECHNOLOGY DISCLAIMS ALL WARRANTIES
+  WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
+  MERCHANTABILITY AND FITNESS.  IN NO EVENT SHALL THE MASSACHUSETTS
+  INSTITUTE OF TECHNOLOGY BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+  CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
+  OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
+  NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
+  WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

Added: trunk/packages/slirp/debian/rules
===================================================================
--- trunk/packages/slirp/debian/rules	2005-11-03 16:22:38 UTC (rev 125)
+++ trunk/packages/slirp/debian/rules	2005-11-03 16:44:27 UTC (rev 126)
@@ -0,0 +1,15 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/class/autotools.mk
+include /usr/share/cdbs/1/rules/debhelper.mk
+
+DEB_MAKE_BUILD_TARGET := all RPATH=
+DEB_MAKE_INSTALL_TARGET := install RPATH= DESTDIR=$(DEB_DESTDIR)
+DEB_MAKE_CHECK_TARGET := test
+
+build/slang-slirp::
+	cp -a examples debian
+	rm -f debian/examples/stubs/test.ref
+
+clean::
+	rm -rf debian/examples


Property changes on: trunk/packages/slirp/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Added: trunk/packages/slirp/debian/slang-slirp.docs
===================================================================
--- trunk/packages/slirp/debian/slang-slirp.docs	2005-11-03 16:22:38 UTC (rev 125)
+++ trunk/packages/slirp/debian/slang-slirp.docs	2005-11-03 16:44:27 UTC (rev 126)
@@ -0,0 +1,2 @@
+doc/text/slirp.txt
+doc/README

Added: trunk/packages/slirp/debian/slang-slirp.examples
===================================================================
--- trunk/packages/slirp/debian/slang-slirp.examples	2005-11-03 16:22:38 UTC (rev 125)
+++ trunk/packages/slirp/debian/slang-slirp.examples	2005-11-03 16:44:27 UTC (rev 126)
@@ -0,0 +1 @@
+debian/examples/*

Added: trunk/packages/slirp/debian/substvars
===================================================================
--- trunk/packages/slirp/debian/substvars	2005-11-03 16:22:38 UTC (rev 125)
+++ trunk/packages/slirp/debian/substvars	2005-11-03 16:44:27 UTC (rev 126)
@@ -0,0 +1 @@
+shlibs:Depends=atlas3-base | lapack3 | liblapack.so.3, atlas3-base | refblas3 | libblas.so.3, fftw3, libc6 (>= 2.3.5-1), libcln3c2, libgcc1 (>= 1:4.0.1), libgfortran0 (>= 4.0.1), libginac1.3c2 (>= 1.3.0), libgmp3c2, libhdf5-serial-1.6.4-0c2 | libhdf5-1.6.4-0c2, libncurses5 (>= 5.4-5), libreadline5, libstdc++6 (>= 4.0.2), zlib1g (>= 1:1.2.1)




More information about the Pkg-jed-commit mailing list