r62307 - in /trunk/libmath-bezier-perl: ./ debian/ debian/changelog debian/compat debian/control debian/copyright debian/libmath-bezier-perl.docs debian/rules debian/watch

moeller at users.alioth.debian.org moeller at users.alioth.debian.org
Sat Sep 4 21:28:50 UTC 2010


Author: moeller
Date: Sat Sep  4 21:28:38 2010
New Revision: 62307

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=62307
Log:
New package now in New Queue

Added:
    trunk/libmath-bezier-perl/
    trunk/libmath-bezier-perl/debian/
    trunk/libmath-bezier-perl/debian/changelog
    trunk/libmath-bezier-perl/debian/compat
    trunk/libmath-bezier-perl/debian/control
    trunk/libmath-bezier-perl/debian/copyright
    trunk/libmath-bezier-perl/debian/libmath-bezier-perl.docs
    trunk/libmath-bezier-perl/debian/rules   (with props)
    trunk/libmath-bezier-perl/debian/watch

Added: trunk/libmath-bezier-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmath-bezier-perl/debian/changelog?rev=62307&op=file
==============================================================================
--- trunk/libmath-bezier-perl/debian/changelog (added)
+++ trunk/libmath-bezier-perl/debian/changelog Sat Sep  4 21:28:38 2010
@@ -1,0 +1,5 @@
+libmath-bezier-perl (0.01-1) unstable; urgency=low
+
+  * Initial Release (Closes: #592516).
+
+ -- Richard Holland <holland at eaglegenomics.com>  Thu, 19 Aug 2010 10:55:25 +0200

Added: trunk/libmath-bezier-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmath-bezier-perl/debian/compat?rev=62307&op=file
==============================================================================
--- trunk/libmath-bezier-perl/debian/compat (added)
+++ trunk/libmath-bezier-perl/debian/compat Sat Sep  4 21:28:38 2010
@@ -1,0 +1,1 @@
+7

Added: trunk/libmath-bezier-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmath-bezier-perl/debian/control?rev=62307&op=file
==============================================================================
--- trunk/libmath-bezier-perl/debian/control (added)
+++ trunk/libmath-bezier-perl/debian/control Sat Sep  4 21:28:38 2010
@@ -1,0 +1,25 @@
+Source: libmath-bezier-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 7)
+Build-Depends-Indep: perl
+Maintainer: Richard Holland <holland at eaglegenomics.com>
+Standards-Version: 3.9.1
+Homepage: http://search.cpan.org/dist/Math-Bezier/
+
+Package: libmath-bezier-perl
+Architecture: all
+Depends: ${misc:Depends}, ${perl:Depends}
+Description: solution of Bezier Curves
+ Math::Bezier implements the algorithm for the solution of Bezier curves as
+ presented by Robert D. Miller in Graphics Gems V, "Quick and Simple Bezier
+ Curve Drawing".
+ .
+ A new Bezier curve is created using the new() constructor, passing a list of
+ (x, y) control points.
+ .
+  use Math::Bezier;
+  my @control = ( 0, 0, 10, 20, 30, -20, 40, 0 );
+  my $bezier = Math::Bezier->new(@control);
+ .
+ Alternately, a reference to a list of control points may be passed.

Added: trunk/libmath-bezier-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmath-bezier-perl/debian/copyright?rev=62307&op=file
==============================================================================
--- trunk/libmath-bezier-perl/debian/copyright (added)
+++ trunk/libmath-bezier-perl/debian/copyright Sat Sep  4 21:28:38 2010
@@ -1,0 +1,36 @@
+Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135
+Maintainer: Andy Wardley <abw at kfs.org>
+Source: http://search.cpan.org/dist/Math-Bezier/
+Name: Math-Bezier
+DISCLAIMER: This copyright info was automatically extracted 
+ from the perl module. It may not be accurate, so you better 
+ check the module sources in order to ensure the module for its 
+ inclusion in Debian or for general legal information. Please, 
+ if licensing information is incorrectly generated, file a bug 
+ on dh-make-perl.
+ NOTE: Don't forget to remove this disclaimer once you are happy
+ with this file.
+
+Files: *
+Copyright: Andy Wardley <abw at kfs.org>
+License: Artistic
+
+Files: debian/*
+Copyright: 2010, Richard Holland <holland at eaglegenomics.com>
+License: Artistic or GPL-1+
+
+License: Artistic
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the Artistic License, which comes with Perl.
+ .
+ On Debian GNU/Linux systems, the complete text of the Artistic License
+ can be found in `/usr/share/common-licenses/Artistic'.
+
+License: GPL-1+
+ This program 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 1, or (at your option)
+ any later version.
+ .
+ On Debian GNU/Linux systems, the complete text of version 1 of the
+ General Public License can be found in `/usr/share/common-licenses/GPL-1'.

Added: trunk/libmath-bezier-perl/debian/libmath-bezier-perl.docs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmath-bezier-perl/debian/libmath-bezier-perl.docs?rev=62307&op=file
==============================================================================
--- trunk/libmath-bezier-perl/debian/libmath-bezier-perl.docs (added)
+++ trunk/libmath-bezier-perl/debian/libmath-bezier-perl.docs Sat Sep  4 21:28:38 2010
@@ -1,0 +1,1 @@
+README

Added: trunk/libmath-bezier-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmath-bezier-perl/debian/rules?rev=62307&op=file
==============================================================================
--- trunk/libmath-bezier-perl/debian/rules (added)
+++ trunk/libmath-bezier-perl/debian/rules Sat Sep  4 21:28:38 2010
@@ -1,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@

Propchange: trunk/libmath-bezier-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libmath-bezier-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libmath-bezier-perl/debian/watch?rev=62307&op=file
==============================================================================
--- trunk/libmath-bezier-perl/debian/watch (added)
+++ trunk/libmath-bezier-perl/debian/watch Sat Sep  4 21:28:38 2010
@@ -1,0 +1,2 @@
+version=3
+http://search.cpan.org/dist/Math-Bezier/   .*/Math-Bezier-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$




More information about the Pkg-perl-cvs-commits mailing list