[Pkg-octave-commit] r1087 - octave-forge-pkgs/octave-combinatorics/trunk/debian

Ólafur Jens Sigurðsson ojs-guest at alioth.debian.org
Fri Dec 14 22:37:49 UTC 2007


Author: ojs-guest
Date: 2007-12-14 22:37:49 +0000 (Fri, 14 Dec 2007)
New Revision: 1087

Added:
   octave-forge-pkgs/octave-combinatorics/trunk/debian/changelog
   octave-forge-pkgs/octave-combinatorics/trunk/debian/compat
   octave-forge-pkgs/octave-combinatorics/trunk/debian/control
   octave-forge-pkgs/octave-combinatorics/trunk/debian/copyright
   octave-forge-pkgs/octave-combinatorics/trunk/debian/postinst
   octave-forge-pkgs/octave-combinatorics/trunk/debian/postrm
Log:
Initial import of pacakge octave-combinatorics

Added: octave-forge-pkgs/octave-combinatorics/trunk/debian/changelog
===================================================================
--- octave-forge-pkgs/octave-combinatorics/trunk/debian/changelog	                        (rev 0)
+++ octave-forge-pkgs/octave-combinatorics/trunk/debian/changelog	2007-12-14 22:37:49 UTC (rev 1087)
@@ -0,0 +1,6 @@
+octave-combinatorics (1.0.2) UNRELEASED; urgency=low
+
+  * Initial release
+
+ -- Olafur Jens Sigurdsson <ojsbug at gmail.com>  Fri, 14 Des 2007 22:55:04 +0100
+

Added: octave-forge-pkgs/octave-combinatorics/trunk/debian/compat
===================================================================
--- octave-forge-pkgs/octave-combinatorics/trunk/debian/compat	                        (rev 0)
+++ octave-forge-pkgs/octave-combinatorics/trunk/debian/compat	2007-12-14 22:37:49 UTC (rev 1087)
@@ -0,0 +1 @@
+5

Added: octave-forge-pkgs/octave-combinatorics/trunk/debian/control
===================================================================
--- octave-forge-pkgs/octave-combinatorics/trunk/debian/control	                        (rev 0)
+++ octave-forge-pkgs/octave-combinatorics/trunk/debian/control	2007-12-14 22:37:49 UTC (rev 1087)
@@ -0,0 +1,12 @@
+Source: octave-combinatorics
+Section: math
+Priority: optional
+Maintainer: Olafur Jens Sigurðsson <ojsbug at gmail.com>
+Build-Depends: debhelper (>= 5), octave2.9 (>= 2.9.16), make
+Standards-Version: 3.7.2
+
+Package: octave-combinatorics
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}, octave2.9 (>= 2.9.16)
+Description: The combinatorics package from octave-forge
+ This package provides functions to work with combinatorics in octave.
\ No newline at end of file

Added: octave-forge-pkgs/octave-combinatorics/trunk/debian/copyright
===================================================================
--- octave-forge-pkgs/octave-combinatorics/trunk/debian/copyright	                        (rev 0)
+++ octave-forge-pkgs/octave-combinatorics/trunk/debian/copyright	2007-12-14 22:37:49 UTC (rev 1087)
@@ -0,0 +1,27 @@
+This package was debianized by Olafur Jens Sigurdsson <ojsbug at gmail.com> on
+Fri, 14 Nov 2007 22:55:00 +0100.
+
+It was downloaded from http://octave.sf.net
+
+Upstream Author: 
+
+	 Torsten Finke <fi at igh-essen.com>
+	 Muthiah Annamalai <muthiah.annamalai at uta.edu>
+
+Copyright: 
+
+    Copyright (C) 2007 Muthiah Annamalai <muthiah.annamalai at uta.edu>
+    Copyright (C) 2007 Torsten Finke <fi at igh-essen.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.
+    
+On Debian systems, the complete text of the GNU General Public License
+can be found in file "/usr/share/common-licenses/GPL".
+
+
+The Debian packaging is (C) 2007, Olafur Jens Sigurdsson <ojsbug at gmail.com> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.

Added: octave-forge-pkgs/octave-combinatorics/trunk/debian/postinst
===================================================================
--- octave-forge-pkgs/octave-combinatorics/trunk/debian/postinst	                        (rev 0)
+++ octave-forge-pkgs/octave-combinatorics/trunk/debian/postinst	2007-12-14 22:37:49 UTC (rev 1087)
@@ -0,0 +1,23 @@
+#!/bin/sh
+# 							-*- makefile -*-
+# debian/postinst file for the Debian/GNU Linux octave-forge-statistics package
+# Copyright 2007 by Ólafur Jens Sigurðsson <ojsbug at gmail.com>
+
+set -e
+
+#DEBHELPER#
+
+case "$1" in
+    configure)
+    	octave -q -H --no-site-file --eval "pkg('rebuild');"
+        ;;
+    abort-upgrade|abort-remove|abort-deconfigure)
+        ;;
+    *)
+        echo "postinst called with unknown argument \`$1'" >&2
+        ;;
+esac
+
+
+exit 0
+

Added: octave-forge-pkgs/octave-combinatorics/trunk/debian/postrm
===================================================================
--- octave-forge-pkgs/octave-combinatorics/trunk/debian/postrm	                        (rev 0)
+++ octave-forge-pkgs/octave-combinatorics/trunk/debian/postrm	2007-12-14 22:37:49 UTC (rev 1087)
@@ -0,0 +1,23 @@
+#!/bin/sh
+# 							-*- makefile -*-
+# debian/postrm file for the Debian/GNU Linux octave-forge-statistics package
+# Copyright 2007 by Ólafur Jens Sigurðsson <ojsbug at gmail.com>
+
+set -e
+
+#DEBHELPER#
+
+case "$1" in
+    upgrade|remove|purge)
+        octave -q -H --no-site-file --eval "pkg('rebuild');"
+        ;;
+    failed-upgrade|abort-install|abort-upgrade|disappear)
+        ;;
+    *)
+        echo "postrm called with unknown argument \`$1'" >&2
+        ;;
+esac
+
+
+exit 0
+




More information about the Pkg-octave-commit mailing list