[Pkg-octave-commit] r1090 - octave-forge-pkgs/octave-signal/trunk/debian

Ólafur Jens Sigurðsson ojs-guest at alioth.debian.org
Sat Dec 15 02:09:23 UTC 2007


Author: ojs-guest
Date: 2007-12-15 02:09:23 +0000 (Sat, 15 Dec 2007)
New Revision: 1090

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

Added: octave-forge-pkgs/octave-signal/trunk/debian/changelog
===================================================================
--- octave-forge-pkgs/octave-signal/trunk/debian/changelog	                        (rev 0)
+++ octave-forge-pkgs/octave-signal/trunk/debian/changelog	2007-12-15 02:09:23 UTC (rev 1090)
@@ -0,0 +1,6 @@
+octave-signal (1.0.4) UNRELEASED; urgency=low
+
+  * Initial release
+
+ -- Olafur Jens Sigurdsson <ojsbug at gmail.com>  Sat, 15 Dec 2007 02:21:11 +0100
+

Added: octave-forge-pkgs/octave-signal/trunk/debian/compat
===================================================================
--- octave-forge-pkgs/octave-signal/trunk/debian/compat	                        (rev 0)
+++ octave-forge-pkgs/octave-signal/trunk/debian/compat	2007-12-15 02:09:23 UTC (rev 1090)
@@ -0,0 +1 @@
+5

Added: octave-forge-pkgs/octave-signal/trunk/debian/control
===================================================================
--- octave-forge-pkgs/octave-signal/trunk/debian/control	                        (rev 0)
+++ octave-forge-pkgs/octave-signal/trunk/debian/control	2007-12-15 02:09:23 UTC (rev 1090)
@@ -0,0 +1,12 @@
+Source: octave-signal
+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-signal
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}, octave2.9 (>= 2.9.16)
+Description: The signal package from octave-forge
+ This package provides functions to work with signals in octave.
\ No newline at end of file

Added: octave-forge-pkgs/octave-signal/trunk/debian/copyright
===================================================================
--- octave-forge-pkgs/octave-signal/trunk/debian/copyright	                        (rev 0)
+++ octave-forge-pkgs/octave-signal/trunk/debian/copyright	2007-12-15 02:09:23 UTC (rev 1090)
@@ -0,0 +1,43 @@
+This package was debianized by Olafur Jens Sigurdsson <ojsbug at gmail.com> on
+Fri, 14 Dec 2007 02:21:11 +0100.
+
+It was downloaded from http://octave.sf.net
+
+Upstream Authors:
+
+	 Paul Kienzle <pkienzle at users.sf.net>
+	 Jake Janovetz <janovetz at uiuc.edu>
+	 Peter V. Lanspeary <??>
+	 Sylvain Pelissier <sylvain.pelissier at gmail.com>
+	 Muthiah Annamalai <muthiah.annamalai at uta.edu>
+	 Dept of Probability Theory and Statistics TU Wien <??>
+	 André Carezi<??>
+	 Julius O. Smith III <??>
+	 Daniel Gunyan <??>
+	 David Bateman <David.Bateman at motorla.com>
+	 Paulo Neis <??>
+	 David Billinghurst <??>
+	 Quentin Spencer <??>
+	 Peter L. Soendergaard <??>
+	 Kurt Hornik <??>
+	 Friedrich Leisch <Friedrich.Leisch at ci.tuwien.ac.at>
+	 Dave Cogdell <??>
+
+Copyright: 
+
+    Copyright (C) 2007
+
+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.
+    
+ Some files are also provided as public domain, namely downsample.m,
+ dst.m flattopwin.m, hann.m, idst.m, square.m and upsample.m
+
+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-signal/trunk/debian/postinst
===================================================================
--- octave-forge-pkgs/octave-signal/trunk/debian/postinst	                        (rev 0)
+++ octave-forge-pkgs/octave-signal/trunk/debian/postinst	2007-12-15 02:09:23 UTC (rev 1090)
@@ -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-signal/trunk/debian/postrm
===================================================================
--- octave-forge-pkgs/octave-signal/trunk/debian/postrm	                        (rev 0)
+++ octave-forge-pkgs/octave-signal/trunk/debian/postrm	2007-12-15 02:09:23 UTC (rev 1090)
@@ -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-signal/trunk/debian/rules
===================================================================
--- octave-forge-pkgs/octave-signal/trunk/debian/rules	                        (rev 0)
+++ octave-forge-pkgs/octave-signal/trunk/debian/rules	2007-12-15 02:09:23 UTC (rev 1090)
@@ -0,0 +1,47 @@
+#!/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)
+mpath = usr/share/octave/packages
+bpath = usr/lib/octave/packages
+pkgname = $(filename:.tar.gz=)
+
+clean:
+
+build:
+	mkdir -p $(CURDIR)/debian/$(package)/$(mpath)
+	mkdir -p $(CURDIR)/debian/$(package)/$(bpath)
+	octave -H -q --no-site-file --eval \
+	"pkg('prefix',[pwd(),'/debian/$(package)/$(mpath)'], \
+	 [pwd(),'/debian/$(package)/$(bpath)']); \
+	 pkg('local_list',[pwd(),'.']); \
+	 pkg('global_list',[pwd(),'.']); \
+	 pkg install $(filename)"
+	rm $(CURDIR)/debian/$(package)/$(mpath)/$(pkgname)/packinfo/COPYING
+	chmod 644 $(CURDIR)/debian/$(package)/$(mpath)/$(pkgname)/*.m
+
+binary:
+	dh_strip
+	dh_fixperms
+	dh_installdocs
+	dh_installchangelogs
+	dh_gencontrol
+	dh_compress
+	dh_installdeb
+	dh_builddeb


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




More information about the Pkg-octave-commit mailing list