debian/0000755000000000000000000000000011346460721007172 5ustar debian/control0000644000000000000000000000164311345772377010615 0ustar Source: libmath-gradient-perl Section: perl Priority: optional Build-Depends: debhelper (>= 7) Build-Depends-Indep: perl Maintainer: Debian Perl Group Uploaders: Jonathan Yu Standards-Version: 3.8.4 Homepage: http://search.cpan.org/dist/Math-Gradient/ Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libmath-gradient-perl/ Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libmath-gradient-perl/ Package: libmath-gradient-perl Architecture: all Depends: ${perl:Depends}, ${misc:Depends} Description: module for calculating smooth numerical transitions Math::Gradient is a Perl module that is useful for calculating numbers needed to make smooth transitions between two or more numerical values (graphically represented as gradients). The primary intent of this module is to make it easy to mix colours, both in terms of basic and multiple-point gradients. debian/copyright0000644000000000000000000000205011345772377011136 0ustar Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135 Maintainer: Tyler MacDonald Source: http://search.cpan.org/dist/Math-Gradient/ Name: Math-Gradient Files: * Copyright: 2003, Tyler MacDonald License: Artistic or GPL-1+ Files: debian/* Copyright: 2010, Jonathan Yu 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 the GNU General Public License can be found in `/usr/share/common-licenses/GPL' debian/watch0000644000000000000000000000016711345772377010243 0ustar version=3 http://search.cpan.org/dist/Math-Gradient/ .*/Math-Gradient-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ debian/patches/0000755000000000000000000000000011346460667010632 5ustar debian/patches/fix-pod-spelling.patch0000644000000000000000000000331611345772377015042 0ustar Description: fix POD spelling errors Author: Jonathan Yu Origin: vendor Forwarded: no --- a/Gradient.pm +++ b/Gradient.pm @@ -10,7 +10,7 @@ use Math::Gradient qw(multi_gradient); -# make a 100-point colour pallette to smothly transition between 6 RGB values +# make a 100-point colour palette to smothly transition between 6 RGB values my(@hot_spots) = ([ 0, 255, 0 ], [ 255, 255, 0 ], [ 127, 127, 127 ], [ 0, 0, 255 ], [ 127, 0, 0 ], [ 255, 255, 255 ]); @@ -26,7 +26,7 @@ =item gradient($start_value, $end_value, $steps) -This function will return an array of evenly distributed values between $start_value and $end_value. All three values supplied should be numeric. $steps should be the number of steps that should occur between the two points; for instance, gradient(0, 10, 4) would return the array (2, 4, 6, 8); the 4 evenly-distributed steps neccessary to get from 0 to 10, whereas gradient(0, 1, 3) would return (0.25, 0.5, 0.75). This is the basest function in the Math::Gradient module and isn't very exciting, but all of the other functions below derive their work from it. +This function will return an array of evenly distributed values between $start_value and $end_value. All three values supplied should be numeric. $steps should be the number of steps that should occur between the two points; for instance, gradient(0, 10, 4) would return the array (2, 4, 6, 8); the 4 evenly-distributed steps necessary to get from 0 to 10, whereas gradient(0, 1, 3) would return (0.25, 0.5, 0.75). This is the basest function in the Math::Gradient module and isn't very exciting, but all of the other functions below derive their work from it. =item array_gradient($start_value, $end_value, $steps) debian/patches/series0000644000000000000000000000002711345772377012051 0ustar fix-pod-spelling.patch debian/compat0000644000000000000000000000000211345772377010404 0ustar 7 debian/changelog0000644000000000000000000000024011345772377011054 0ustar libmath-gradient-perl (0.04-1) unstable; urgency=low * Initial Release (Closes: #573341) -- Jonathan Yu Wed, 10 Mar 2010 13:36:00 -0500 debian/source/0000755000000000000000000000000011346460667010503 5ustar debian/source/format0000644000000000000000000000001411346460720011677 0ustar 3.0 (quilt) debian/rules0000755000000000000000000000003611345772377010265 0ustar #!/usr/bin/make -f %: dh $@