[Pkg-octave-commit] r1263 - in octave-pkg-dev/trunk: . debian

Rafael Laboissiere rafael at alioth.debian.org
Mon Feb 25 09:32:01 UTC 2008


Author: rafael
Date: 2008-02-25 09:32:01 +0000 (Mon, 25 Feb 2008)
New Revision: 1263

Added:
   octave-pkg-dev/trunk/debian/
   octave-pkg-dev/trunk/debian/README.Debian
   octave-pkg-dev/trunk/debian/changelog
   octave-pkg-dev/trunk/debian/compat
   octave-pkg-dev/trunk/debian/control
   octave-pkg-dev/trunk/debian/copyright
   octave-pkg-dev/trunk/debian/install
   octave-pkg-dev/trunk/debian/rules
   octave-pkg-dev/trunk/octave-pkg-dev.mk
Log:
Initial commit

Added: octave-pkg-dev/trunk/debian/README.Debian
===================================================================
--- octave-pkg-dev/trunk/debian/README.Debian	                        (rev 0)
+++ octave-pkg-dev/trunk/debian/README.Debian	2008-02-25 09:32:01 UTC (rev 1263)
@@ -0,0 +1,6 @@
+octave-pkg-dev for Debian
+-------------------------
+
+<possible notes regarding this package - if none, delete this file>
+
+ -- Rafael Laboissiere <rafael at debian.org>  Mon, 25 Feb 2008 10:11:27 +0100

Added: octave-pkg-dev/trunk/debian/changelog
===================================================================
--- octave-pkg-dev/trunk/debian/changelog	                        (rev 0)
+++ octave-pkg-dev/trunk/debian/changelog	2008-02-25 09:32:01 UTC (rev 1263)
@@ -0,0 +1,6 @@
+octave-pkg-dev (0.1) UNRELEASED; urgency=low
+
+  * Initial release
+
+ -- Rafael Laboissiere <rafael at debian.org>  Mon, 25 Feb 2008 10:11:27 +0100
+

Added: octave-pkg-dev/trunk/debian/compat
===================================================================
--- octave-pkg-dev/trunk/debian/compat	                        (rev 0)
+++ octave-pkg-dev/trunk/debian/compat	2008-02-25 09:32:01 UTC (rev 1263)
@@ -0,0 +1 @@
+6

Added: octave-pkg-dev/trunk/debian/control
===================================================================
--- octave-pkg-dev/trunk/debian/control	                        (rev 0)
+++ octave-pkg-dev/trunk/debian/control	2008-02-25 09:32:01 UTC (rev 1263)
@@ -0,0 +1,12 @@
+Source: octave-pkg-dev
+Section: devel
+Priority: optional
+Maintainer: Rafael Laboissiere <rafael at debian.org>
+Build-Depends: debhelper (>= 6), cdbs
+Standards-Version: 3.7.3
+
+Package: octave-pkg-dev
+Architecture: all
+Depends: octave3.0-headers, debhelper (>= 6), cdbs
+Description: <insert up to 60 chars description>
+ <insert long description, indented with spaces>

Added: octave-pkg-dev/trunk/debian/copyright
===================================================================
--- octave-pkg-dev/trunk/debian/copyright	                        (rev 0)
+++ octave-pkg-dev/trunk/debian/copyright	2008-02-25 09:32:01 UTC (rev 1263)
@@ -0,0 +1,24 @@
+This package was debianized by Rafael Laboissiere <rafael at debian.org> on
+Mon, 25 Feb 2008 10:11:27 +0100.
+
+It was downloaded from <url://example.com>
+
+Upstream Author(s): 
+
+    <put author's name and email here>
+    <likewise for another author>
+
+Copyright: 
+
+    <Copyright (C) YYYY Name OfAuthor>
+    <likewise for another author>
+
+License:
+
+    <Put the license of the package here indented by 4 spaces>
+
+The Debian packaging is (C) 2008, Rafael Laboissiere <rafael at debian.org> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
+
+# Please also look if there are files or directories which have a
+# different copyright/license attached and list them here.

Added: octave-pkg-dev/trunk/debian/install
===================================================================
--- octave-pkg-dev/trunk/debian/install	                        (rev 0)
+++ octave-pkg-dev/trunk/debian/install	2008-02-25 09:32:01 UTC (rev 1263)
@@ -0,0 +1 @@
+octave-pkg-dev.mk usr/share/octave/debian/

Added: octave-pkg-dev/trunk/debian/rules
===================================================================
--- octave-pkg-dev/trunk/debian/rules	                        (rev 0)
+++ octave-pkg-dev/trunk/debian/rules	2008-02-25 09:32:01 UTC (rev 1263)
@@ -0,0 +1,6 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+#
+# debian/rules for the octave-pkg-dev Debian package
+
+include /usr/share/cdbs/1/rules/debhelper.mk


Property changes on: octave-pkg-dev/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Added: octave-pkg-dev/trunk/octave-pkg-dev.mk
===================================================================
--- octave-pkg-dev/trunk/octave-pkg-dev.mk	                        (rev 0)
+++ octave-pkg-dev/trunk/octave-pkg-dev.mk	2008-02-25 09:32:01 UTC (rev 1263)
@@ -0,0 +1,20 @@
+# -*- makefile -*-
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+
+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=)
+
+build/$(package)::
+	mkdir -p $(CURDIR)/debian/$(package)/$(mpath)
+	mkdir -p $(CURDIR)/debian/$(package)/$(bpath)
+	octave -f -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 -f $(CURDIR)/debian/$(package)/$(mpath)/$(pkgname)/packinfo/COPYING




More information about the Pkg-octave-commit mailing list