[mlpack-svn] r10836 - mlpack/conf/packages/mlpack/trunk/debian
fastlab-svn at coffeetalk-1.cc.gatech.edu
fastlab-svn at coffeetalk-1.cc.gatech.edu
Thu Dec 15 20:42:42 EST 2011
Author: speet3
Date: 2011-12-15 20:42:41 -0500 (Thu, 15 Dec 2011)
New Revision: 10836
Added:
mlpack/conf/packages/mlpack/trunk/debian/watch
Removed:
mlpack/conf/packages/mlpack/trunk/debian/README.Debian
mlpack/conf/packages/mlpack/trunk/debian/mlpack.doc-base.EX
mlpack/conf/packages/mlpack/trunk/debian/postinst.ex
mlpack/conf/packages/mlpack/trunk/debian/postrm.ex
mlpack/conf/packages/mlpack/trunk/debian/preinst.ex
mlpack/conf/packages/mlpack/trunk/debian/prerm.ex
mlpack/conf/packages/mlpack/trunk/debian/watch.ex
Modified:
mlpack/conf/packages/mlpack/trunk/debian/README.source
mlpack/conf/packages/mlpack/trunk/debian/control
mlpack/conf/packages/mlpack/trunk/debian/libmlpack0.install
Log:
Clean up lintian warnings
Deleted: mlpack/conf/packages/mlpack/trunk/debian/README.Debian
===================================================================
--- mlpack/conf/packages/mlpack/trunk/debian/README.Debian 2011-12-15 21:32:40 UTC (rev 10835)
+++ mlpack/conf/packages/mlpack/trunk/debian/README.Debian 2011-12-16 01:42:41 UTC (rev 10836)
@@ -1,6 +0,0 @@
-mlpack for Debian
------------------
-
-<possible notes regarding this package - if none, delete this file>
-
- -- Sterling Peet <sterling.peet at gatech.edu> Sun, 11 Dec 2011 18:53:08 -0500
Modified: mlpack/conf/packages/mlpack/trunk/debian/README.source
===================================================================
--- mlpack/conf/packages/mlpack/trunk/debian/README.source 2011-12-15 21:32:40 UTC (rev 10835)
+++ mlpack/conf/packages/mlpack/trunk/debian/README.source 2011-12-16 01:42:41 UTC (rev 10836)
@@ -1,9 +1,6 @@
mlpack for Debian
-----------------
-<this file describes information about the source package, see Debian policy
-manual section 4.14. You WILL either need to modify or delete this file>
+Please visit the website for information about using mlpack:
-
-
-
+http://www.mlpack.org/
Modified: mlpack/conf/packages/mlpack/trunk/debian/control
===================================================================
--- mlpack/conf/packages/mlpack/trunk/debian/control 2011-12-15 21:32:40 UTC (rev 10835)
+++ mlpack/conf/packages/mlpack/trunk/debian/control 2011-12-16 01:42:41 UTC (rev 10836)
@@ -4,14 +4,14 @@
Build-Depends: debhelper (>= 7.0.50~), cmake
Standards-Version: 3.9.1
Section: libs
-Homepage: http://trac.research.cc.gatech.edu/fastlab/
+Homepage: http://www.mlpack.org/
#Vcs-Git: git://git.debian.org/collab-maint/mlpack.git
Vcs-Browser: http://trac.research.cc.gatech.edu/fastlab/browser
Package: libmlpack-dev
Section: libdevel
Architecture: any
-Depends: lapack-dev, armadillo-dev, libxml2-dev, boost-dev, libmlpack0 (= ${binary:Version})
+Depends: lapack-dev, armadillo-dev, libxml2-dev, boost-dev, libmlpack0 (= ${binary:Version}), ${misc:Depends}
Description: Fast and scalable C++ machine learning library header files
This package contains the development header files for the MLPACK library.
.
Modified: mlpack/conf/packages/mlpack/trunk/debian/libmlpack0.install
===================================================================
--- mlpack/conf/packages/mlpack/trunk/debian/libmlpack0.install 2011-12-15 21:32:40 UTC (rev 10835)
+++ mlpack/conf/packages/mlpack/trunk/debian/libmlpack0.install 2011-12-16 01:42:41 UTC (rev 10836)
@@ -1,3 +1,2 @@
-#usr/lib/lib*.so.*
-usr/lib/lib*.so*
+usr/lib/lib*.so.*
usr/lib/lib*
Deleted: mlpack/conf/packages/mlpack/trunk/debian/mlpack.doc-base.EX
===================================================================
--- mlpack/conf/packages/mlpack/trunk/debian/mlpack.doc-base.EX 2011-12-15 21:32:40 UTC (rev 10835)
+++ mlpack/conf/packages/mlpack/trunk/debian/mlpack.doc-base.EX 2011-12-16 01:42:41 UTC (rev 10836)
@@ -1,20 +0,0 @@
-Document: mlpack
-Title: Debian mlpack Manual
-Author: <insert document author here>
-Abstract: This manual describes what mlpack is
- and how it can be used to
- manage online manuals on Debian systems.
-Section: unknown
-
-Format: debiandoc-sgml
-Files: /usr/share/doc/mlpack/mlpack.sgml.gz
-
-Format: postscript
-Files: /usr/share/doc/mlpack/mlpack.ps.gz
-
-Format: text
-Files: /usr/share/doc/mlpack/mlpack.text.gz
-
-Format: HTML
-Index: /usr/share/doc/mlpack/html/index.html
-Files: /usr/share/doc/mlpack/html/*.html
Deleted: mlpack/conf/packages/mlpack/trunk/debian/postinst.ex
===================================================================
--- mlpack/conf/packages/mlpack/trunk/debian/postinst.ex 2011-12-15 21:32:40 UTC (rev 10835)
+++ mlpack/conf/packages/mlpack/trunk/debian/postinst.ex 2011-12-16 01:42:41 UTC (rev 10836)
@@ -1,39 +0,0 @@
-#!/bin/sh
-# postinst script for mlpack
-#
-# see: dh_installdeb(1)
-
-set -e
-
-# summary of how this script can be called:
-# * <postinst> `configure' <most-recently-configured-version>
-# * <old-postinst> `abort-upgrade' <new version>
-# * <conflictor's-postinst> `abort-remove' `in-favour' <package>
-# <new-version>
-# * <postinst> `abort-remove'
-# * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
-# <failed-install-package> <version> `removing'
-# <conflicting-package> <version>
-# for details, see http://www.debian.org/doc/debian-policy/ or
-# the debian-policy package
-
-
-case "$1" in
- configure)
- ;;
-
- abort-upgrade|abort-remove|abort-deconfigure)
- ;;
-
- *)
- echo "postinst called with unknown argument \`$1'" >&2
- exit 1
- ;;
-esac
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
-exit 0
Deleted: mlpack/conf/packages/mlpack/trunk/debian/postrm.ex
===================================================================
--- mlpack/conf/packages/mlpack/trunk/debian/postrm.ex 2011-12-15 21:32:40 UTC (rev 10835)
+++ mlpack/conf/packages/mlpack/trunk/debian/postrm.ex 2011-12-16 01:42:41 UTC (rev 10836)
@@ -1,37 +0,0 @@
-#!/bin/sh
-# postrm script for mlpack
-#
-# see: dh_installdeb(1)
-
-set -e
-
-# summary of how this script can be called:
-# * <postrm> `remove'
-# * <postrm> `purge'
-# * <old-postrm> `upgrade' <new-version>
-# * <new-postrm> `failed-upgrade' <old-version>
-# * <new-postrm> `abort-install'
-# * <new-postrm> `abort-install' <old-version>
-# * <new-postrm> `abort-upgrade' <old-version>
-# * <disappearer's-postrm> `disappear' <overwriter>
-# <overwriter-version>
-# for details, see http://www.debian.org/doc/debian-policy/ or
-# the debian-policy package
-
-
-case "$1" in
- purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
- ;;
-
- *)
- echo "postrm called with unknown argument \`$1'" >&2
- exit 1
- ;;
-esac
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
-exit 0
Deleted: mlpack/conf/packages/mlpack/trunk/debian/preinst.ex
===================================================================
--- mlpack/conf/packages/mlpack/trunk/debian/preinst.ex 2011-12-15 21:32:40 UTC (rev 10835)
+++ mlpack/conf/packages/mlpack/trunk/debian/preinst.ex 2011-12-16 01:42:41 UTC (rev 10836)
@@ -1,35 +0,0 @@
-#!/bin/sh
-# preinst script for mlpack
-#
-# see: dh_installdeb(1)
-
-set -e
-
-# summary of how this script can be called:
-# * <new-preinst> `install'
-# * <new-preinst> `install' <old-version>
-# * <new-preinst> `upgrade' <old-version>
-# * <old-preinst> `abort-upgrade' <new-version>
-# for details, see http://www.debian.org/doc/debian-policy/ or
-# the debian-policy package
-
-
-case "$1" in
- install|upgrade)
- ;;
-
- abort-upgrade)
- ;;
-
- *)
- echo "preinst called with unknown argument \`$1'" >&2
- exit 1
- ;;
-esac
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
-exit 0
Deleted: mlpack/conf/packages/mlpack/trunk/debian/prerm.ex
===================================================================
--- mlpack/conf/packages/mlpack/trunk/debian/prerm.ex 2011-12-15 21:32:40 UTC (rev 10835)
+++ mlpack/conf/packages/mlpack/trunk/debian/prerm.ex 2011-12-16 01:42:41 UTC (rev 10836)
@@ -1,38 +0,0 @@
-#!/bin/sh
-# prerm script for mlpack
-#
-# see: dh_installdeb(1)
-
-set -e
-
-# summary of how this script can be called:
-# * <prerm> `remove'
-# * <old-prerm> `upgrade' <new-version>
-# * <new-prerm> `failed-upgrade' <old-version>
-# * <conflictor's-prerm> `remove' `in-favour' <package> <new-version>
-# * <deconfigured's-prerm> `deconfigure' `in-favour'
-# <package-being-installed> <version> `removing'
-# <conflicting-package> <version>
-# for details, see http://www.debian.org/doc/debian-policy/ or
-# the debian-policy package
-
-
-case "$1" in
- remove|upgrade|deconfigure)
- ;;
-
- failed-upgrade)
- ;;
-
- *)
- echo "prerm called with unknown argument \`$1'" >&2
- exit 1
- ;;
-esac
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
-exit 0
Copied: mlpack/conf/packages/mlpack/trunk/debian/watch (from rev 10822, mlpack/conf/packages/mlpack/trunk/debian/watch.ex)
===================================================================
--- mlpack/conf/packages/mlpack/trunk/debian/watch (rev 0)
+++ mlpack/conf/packages/mlpack/trunk/debian/watch 2011-12-16 01:42:41 UTC (rev 10836)
@@ -0,0 +1,2 @@
+version=3
+http://www.mlpack.org/pub/mlpack-(.*)\.tar\.gz
Deleted: mlpack/conf/packages/mlpack/trunk/debian/watch.ex
===================================================================
--- mlpack/conf/packages/mlpack/trunk/debian/watch.ex 2011-12-15 21:32:40 UTC (rev 10835)
+++ mlpack/conf/packages/mlpack/trunk/debian/watch.ex 2011-12-16 01:42:41 UTC (rev 10836)
@@ -1,23 +0,0 @@
-# Example watch control file for uscan
-# Rename this file to "watch" and then you can run the "uscan" command
-# to check for upstream updates and more.
-# See uscan(1) for format
-
-# Compulsory line, this is a version 3 file
-version=3
-
-# Uncomment to examine a Webpage
-# <Webpage URL> <string match>
-#http://www.example.com/downloads.php mlpack-(.*)\.tar\.gz
-
-# Uncomment to examine a Webserver directory
-#http://www.example.com/pub/mlpack-(.*)\.tar\.gz
-
-# Uncommment to examine a FTP server
-#ftp://ftp.example.com/pub/mlpack-(.*)\.tar\.gz debian uupdate
-
-# Uncomment to find new files on sourceforge, for devscripts >= 2.9
-# http://sf.net/mlpack/mlpack-(.*)\.tar\.gz
-
-# Uncomment to find new files on GooglePages
-# http://example.googlepages.com/foo.html mlpack-(.*)\.tar\.gz
More information about the mlpack-svn
mailing list