[Pkg-octave-commit] r1067 - octave-forge-pkgs/octave-statistics/trunk/debian

Ólafur Jens Sigurðsson ojs-guest at alioth.debian.org
Thu Nov 29 19:31:12 UTC 2007


Author: ojs-guest
Date: 2007-11-29 19:31:12 +0000 (Thu, 29 Nov 2007)
New Revision: 1067

Added:
   octave-forge-pkgs/octave-statistics/trunk/debian/changelog
   octave-forge-pkgs/octave-statistics/trunk/debian/compat
   octave-forge-pkgs/octave-statistics/trunk/debian/control
   octave-forge-pkgs/octave-statistics/trunk/debian/copyright
   octave-forge-pkgs/octave-statistics/trunk/debian/postinst
   octave-forge-pkgs/octave-statistics/trunk/debian/postrm
   octave-forge-pkgs/octave-statistics/trunk/debian/rules
Log:
Initial import of package octave-statistics

Added: octave-forge-pkgs/octave-statistics/trunk/debian/changelog
===================================================================
--- octave-forge-pkgs/octave-statistics/trunk/debian/changelog	                        (rev 0)
+++ octave-forge-pkgs/octave-statistics/trunk/debian/changelog	2007-11-29 19:31:12 UTC (rev 1067)
@@ -0,0 +1,6 @@
+octave-statistics (1.0.3) UNRELEASED; urgency=low
+
+  * Initial release
+
+ -- Olafur Jens Sigurdsson <ojsbug at gmail.com>  Fri, 16 Nov 2007 00:35:04 +0100
+

Added: octave-forge-pkgs/octave-statistics/trunk/debian/compat
===================================================================
--- octave-forge-pkgs/octave-statistics/trunk/debian/compat	                        (rev 0)
+++ octave-forge-pkgs/octave-statistics/trunk/debian/compat	2007-11-29 19:31:12 UTC (rev 1067)
@@ -0,0 +1 @@
+5

Added: octave-forge-pkgs/octave-statistics/trunk/debian/control
===================================================================
--- octave-forge-pkgs/octave-statistics/trunk/debian/control	                        (rev 0)
+++ octave-forge-pkgs/octave-statistics/trunk/debian/control	2007-11-29 19:31:12 UTC (rev 1067)
@@ -0,0 +1,13 @@
+Source: octave-statistics
+Section: math
+Priority: optional
+Maintainer: Debian Octave Group <pkg-octave-devel at lists.alioth.debian.org>
+Build-Depends: debhelper (>= 5), octave2.9 (>= 2.9.10), coreutils
+Standards-Version: 3.7.2
+
+Package: octave-statistics
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: The statistics package from octave-forge
+ This octave-forge package provides additional statistical functions
+ for Octave.
\ No newline at end of file

Added: octave-forge-pkgs/octave-statistics/trunk/debian/copyright
===================================================================
--- octave-forge-pkgs/octave-statistics/trunk/debian/copyright	                        (rev 0)
+++ octave-forge-pkgs/octave-statistics/trunk/debian/copyright	2007-11-29 19:31:12 UTC (rev 1067)
@@ -0,0 +1,26 @@
+This package was debianized by ólafur Jens Sigurðsson <ojsbug at gmail.com> on
+Fri, 16 Nov 2007 00:35:04 +0100.
+
+It was downloaded from <http://octave.sourceforge.net/>
+
+Upstream Authors: 
+
+    Paul Kienzle <pkienzle at users.sf.net>
+    Andy Adler <adler at ncf.ca>
+    Arno Onken <asnelt at asnelt.org>
+    Alberto Terruzzi <t-albert at libero.it>
+    Alberto Pose <apose at alu.itba.edu.ar>
+    Frederick A Niles <niles at rickniles.com>
+
+Copyright: 
+
+    <Copyright (C) YYYY Name OfAuthor>
+    <likewise for another author>
+
+License:
+
+    Each .m file has its own license so please look in the
+    corresponding .m file to learn about its license.
+
+The Debian packaging is (C) 2007, Ólafur Jens Sigurðsson <ojsbug at gmail.com> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.

Added: octave-forge-pkgs/octave-statistics/trunk/debian/postinst
===================================================================
--- octave-forge-pkgs/octave-statistics/trunk/debian/postinst	                        (rev 0)
+++ octave-forge-pkgs/octave-statistics/trunk/debian/postinst	2007-11-29 19:31:12 UTC (rev 1067)
@@ -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-statistics/trunk/debian/postrm
===================================================================
--- octave-forge-pkgs/octave-statistics/trunk/debian/postrm	                        (rev 0)
+++ octave-forge-pkgs/octave-statistics/trunk/debian/postrm	2007-11-29 19:31:12 UTC (rev 1067)
@@ -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
+

Added: octave-forge-pkgs/octave-statistics/trunk/debian/rules
===================================================================
--- octave-forge-pkgs/octave-statistics/trunk/debian/rules	                        (rev 0)
+++ octave-forge-pkgs/octave-statistics/trunk/debian/rules	2007-11-29 19:31:12 UTC (rev 1067)
@@ -0,0 +1,40 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+#
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+#
+# Modified to make a template file for a multi-binary package with separated
+# build-arch and build-indep targets  by Bill Allombert 2001
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# This has to be exported to make some magic below work.
+#export DH_OPTIONS
+
+filename = $(wildcard *.gz)
+package = $(shell awk '/^Package:/ {print tolower($$2)}' debian/control)
+path = usr/share/octave/packages
+
+clean:
+
+build:
+	mkdir -p $(CURDIR)/debian/$(package)/$(path)
+	octave -H -q --no-site-file --eval \
+	"pkg('prefix',[pwd(),'/debian/$(package)/$(path)']); \
+	 pkg('local_list',[pwd(),'.']); \
+	 pkg('global_list',[pwd(),'.']); \
+	 pkg install $(filename)"
+	rm $(CURDIR)/debian/$(package)/$(path)/statistics-1.0.3/packinfo/COPYING
+
+binary:
+	dh_installdeb
+	dh_installdocs
+	dh_installchangelogs
+	dh_gencontrol
+	dh_compress
+	dh_builddeb


Property changes on: octave-forge-pkgs/octave-statistics/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *




More information about the Pkg-octave-commit mailing list