mirror of
https://github.com/dkogan/feedgnuplot.git
synced 2025-09-18 19:18:06 +08:00
Compare commits
19 Commits
debian/1.2
...
upstream/1
Author | SHA1 | Date | |
---|---|---|---|
![]() |
8c39242986 | ||
![]() |
2934a76fdd | ||
![]() |
614bbfe848 | ||
![]() |
265062904f | ||
![]() |
55ba185ec5 | ||
![]() |
0780c10b18 | ||
![]() |
061cb0c0af | ||
![]() |
08b827d81b | ||
![]() |
b91eb7f746 | ||
![]() |
9148a3e5e9 | ||
![]() |
3d53e25c22 | ||
![]() |
ba1715446b | ||
![]() |
c875120dbd | ||
![]() |
1f350add09 | ||
![]() |
d36082ab32 | ||
![]() |
2d7bf52a45 | ||
![]() |
5b20a2389a | ||
![]() |
892e8266c8 | ||
![]() |
cb59f1b3bc |
70
Changes
Normal file
70
Changes
Normal file
@@ -0,0 +1,70 @@
|
||||
feedgnuplot (1.22)
|
||||
|
||||
* removed --size option
|
||||
|
||||
-- Dima Kogan <dima@secretsauce.net> Mon, 03 Sep 2012 08:33:26 -0700
|
||||
|
||||
feedgnuplot (1.21)
|
||||
|
||||
* removed the POD from the script to its own file
|
||||
* fixed regression to allow no given extracmds, histogram or y2
|
||||
options
|
||||
|
||||
-- Dima Kogan <dima@secretsauce.net> Sun, 02 Sep 2012 23:52:21 -0700
|
||||
|
||||
feedgnuplot (1.20)
|
||||
|
||||
* no longer hardcoding 'x11' as the default terminal
|
||||
* added histogram support
|
||||
* generic terminals can now be requested
|
||||
* --extracmds, --histogram, --y2 can now take comma-separated lists
|
||||
|
||||
-- Dima Kogan <dima@secretsauce.net> Fri, 31 Aug 2012 01:35:50 -0700
|
||||
|
||||
feedgnuplot (1.19)
|
||||
|
||||
* added --geometry option to specify plot dimensions
|
||||
|
||||
-- Dima Kogan <dima@secretsauce.net> Sat, 11 Feb 2012 21:04:42 -0800
|
||||
|
||||
feedgnuplot (1.18)
|
||||
|
||||
* data-ids can now include characters such as -. Any non-whitespace
|
||||
works
|
||||
|
||||
-- Dima Kogan <dima@secretsauce.net> Tue, 27 Dec 2011 16:47:36 -0800
|
||||
|
||||
feedgnuplot (1.17)
|
||||
|
||||
[ Dima Kogan ]
|
||||
* POD: removed -Winteractive, since this was apparently a mawk-ism
|
||||
* added zsh and bash completions
|
||||
|
||||
[ Hermann Schwarting ]
|
||||
* add build dependency libtest-script-run-perl
|
||||
|
||||
-- Dima Kogan <dima@secretsauce.net> Sun, 20 Nov 2011 19:17:22 -0800
|
||||
|
||||
feedgnuplot (1.16)
|
||||
|
||||
* Some POD fixes
|
||||
|
||||
-- Dima Kogan <dima@secretsauce.net> Fri, 11 Nov 2011 00:10:18 -0800
|
||||
|
||||
feedgnuplot (1.15)
|
||||
|
||||
* Renamed main script from feedGnuplot to feedgnuplot
|
||||
|
||||
-- Dima Kogan <dima@secretsauce.net> Sun, 16 Oct 2011 11:58:15 -0700
|
||||
|
||||
feedgnuplot (1.14)
|
||||
|
||||
* added 'clear' command, documented commands
|
||||
|
||||
-- Dima Kogan <dima@secretsauce.net> Sun, 22 May 2011 15:25:28 -0700
|
||||
|
||||
feedgnuplot (1.13)
|
||||
|
||||
* Better streaming plot control
|
||||
|
||||
-- Dima Kogan <dima@secretsauce.net> Tue, 26 Apr 2011 14:24:09 -0700
|
3
INSTALL
3
INSTALL
@@ -1,8 +1,9 @@
|
||||
If running on a Debian-based OS (this includes Ubuntu), it is highly recommended
|
||||
to install this program as a package by doing
|
||||
|
||||
ln -fs package_definitions/debian debian
|
||||
dpkg-buildpackage -us -uc -b
|
||||
sudo dpkg -i feedgnuplot*.deb
|
||||
sudo dpkg -i ../feedgnuplot*.deb
|
||||
|
||||
This builds a debian package and installs it.
|
||||
|
||||
|
8
LICENSE
Normal file
8
LICENSE
Normal file
@@ -0,0 +1,8 @@
|
||||
This library is distributed under the terms of the GNU GPL:
|
||||
|
||||
http://www.gnu.org/licenses/gpl.html
|
||||
|
||||
|
||||
or the Artistic license:
|
||||
|
||||
http://dev.perl.org/licenses/artistic.html
|
2
MANIFEST
2
MANIFEST
@@ -4,3 +4,5 @@ bin/feedgnuplot
|
||||
bin/feedgnuplot.pod
|
||||
t/00-load.t
|
||||
t/manifest.t
|
||||
Changes
|
||||
LICENSE
|
||||
|
15
Makefile.PL
15
Makefile.PL
@@ -4,14 +4,14 @@ use ExtUtils::MakeMaker;
|
||||
|
||||
sub parseversion
|
||||
{
|
||||
# grab the version number from the debian changelog file. I look for lines line
|
||||
# grab the version number from the changelog. I look for lines line
|
||||
#
|
||||
# libpackage-perl (0.02) unstable; urgency=low
|
||||
# libpackage-perl (0.02)
|
||||
#
|
||||
# I parse out the 0.02 part
|
||||
open DCH, 'debian/changelog' or die "Couldn't open debian/changelog";
|
||||
open DCH, 'Changes' or die "Couldn't open 'Changes'";
|
||||
my ($version) = <DCH> =~ /^\S+ \s* \( ([0-9\.]+) \)/x
|
||||
or die "Couldn't parse version from debian/changelog";
|
||||
or die "Couldn't parse version from 'Changes'";
|
||||
close DCH;
|
||||
|
||||
return $version;
|
||||
@@ -29,6 +29,13 @@ sub MY::libscan
|
||||
return $self->SUPER::libscan ($file);
|
||||
}
|
||||
|
||||
# I want my manpage to go into the man section '1', NOT '1p'. Here I add a
|
||||
# snippet to the end of the generated Makefile to force this
|
||||
sub MY::postamble
|
||||
{
|
||||
return "MAN1EXT := 1\n";
|
||||
}
|
||||
|
||||
|
||||
WriteMakefile
|
||||
(
|
||||
|
@@ -104,7 +104,7 @@ sub interpretCommandline
|
||||
'circles', 'legend=s{2}', 'autolegend!', 'xlabel=s', 'ylabel=s', 'y2label=s', 'zlabel=s',
|
||||
'title=s', 'xlen=f', 'ymin=f', 'ymax=f', 'xmin=f', 'xmax=f', 'y2min=f', 'y2max=f',
|
||||
'zmin=f', 'zmax=f', 'y2=s@', 'curvestyle=s{2}', 'curvestyleall=s', 'extracmds=s@',
|
||||
'size=s', 'square!', 'square_xy!', 'hardcopy=s', 'maxcurves=i', 'monotonic!',
|
||||
'square!', 'square_xy!', 'hardcopy=s', 'maxcurves=i', 'monotonic!',
|
||||
'histogram=s@', 'binwidth=f', 'histstyle=s',
|
||||
'terminal=s',
|
||||
'extraValuesPerPoint=i', 'help', 'dump',
|
||||
@@ -355,15 +355,13 @@ sub mainThread
|
||||
# set a square aspect ratio. Gnuplot does this differently for 2D and 3D plots
|
||||
if(! $options{'3d'})
|
||||
{
|
||||
$options{size} = '' unless defined $options{size};
|
||||
$options{size} .= ' ratio -1';
|
||||
print(PIPE "set size ratio -1\n");
|
||||
}
|
||||
else
|
||||
{
|
||||
print(PIPE "set view equal xyz\n");
|
||||
}
|
||||
}
|
||||
print(PIPE "set size $options{size}\n") if defined $options{size};
|
||||
|
||||
if($options{square_xy})
|
||||
{
|
||||
|
@@ -329,8 +329,6 @@ As an example, if line 3 of the input is "0 9 1 20"
|
||||
for instance. Can be passed multiple times, or passed a comma-
|
||||
separated list
|
||||
|
||||
--size xxx Gnuplot size option
|
||||
|
||||
--square Plot data with aspect ratio 1. For 3D plots, this controls the
|
||||
aspect ratio for all 3 axes
|
||||
|
||||
|
@@ -27,7 +27,6 @@ complete -W \
|
||||
--y2 \
|
||||
--curvestyleall \
|
||||
--extracmds \
|
||||
--size \
|
||||
--square \
|
||||
--square_xy \
|
||||
--hardcopy \
|
||||
|
@@ -28,7 +28,6 @@ _arguments -S
|
||||
'*--y2:plot to place on the Y2 axis:' \
|
||||
'--curvestyleall[Additional styles for ALL curves]:' \
|
||||
'*--extracmds[Additional gnuplot commands]:' \
|
||||
'--size[Gnuplot size option]:' \
|
||||
'--square[Plot data with square aspect ratio]' \
|
||||
'--square_xy[For 3D plots, set square aspect ratio for ONLY the x,y axes]' \
|
||||
'--hardcopy[Plot to a file]:' \
|
||||
|
17
debian/control
vendored
17
debian/control
vendored
@@ -1,17 +0,0 @@
|
||||
Source: feedgnuplot
|
||||
Section: perl
|
||||
Priority: optional
|
||||
Build-Depends: debhelper (>= 7), libtest-script-run-perl
|
||||
Build-Depends-Indep: perl
|
||||
Maintainer: Dima Kogan <dima@secretsauce.net>
|
||||
Standards-Version: 3.9.2
|
||||
Homepage: https://github.com/dkogan/feedgnuplot
|
||||
|
||||
Package: feedgnuplot
|
||||
Architecture: all
|
||||
Depends: ${misc:Depends}, ${perl:Depends}, gnuplot
|
||||
Description: A pipe-oriented frontend to Gnuplot
|
||||
This is a flexible, command-line-oriented frontend to Gnuplot. It creates
|
||||
plots from data coming in on STDIN or given in a filename passed on the
|
||||
commandline. Various data representations are supported, as is hardcopy
|
||||
output and streaming display of live data.
|
2
debian/watch
vendored
2
debian/watch
vendored
@@ -1,2 +0,0 @@
|
||||
version=3
|
||||
http://search.cpan.org/dist/feedGnuplot/ .*/feedgnuplot-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$
|
@@ -1,3 +1,16 @@
|
||||
feedgnuplot (1.23) unstable; urgency=low
|
||||
|
||||
* debian packaging cleanup
|
||||
* package now uploaded to Debian (Closes: #686413)
|
||||
|
||||
-- Dima Kogan <dima@secretsauce.net> Mon, 10 Sep 2012 20:47:40 -0700
|
||||
|
||||
feedgnuplot (1.22) unstable; urgency=low
|
||||
|
||||
* removed --size option
|
||||
|
||||
-- Dima Kogan <dima@secretsauce.net> Mon, 03 Sep 2012 08:33:26 -0700
|
||||
|
||||
feedgnuplot (1.21) unstable; urgency=low
|
||||
|
||||
* removed the POD from the script to its own file
|
20
package_definitions/debian/control
Normal file
20
package_definitions/debian/control
Normal file
@@ -0,0 +1,20 @@
|
||||
Source: feedgnuplot
|
||||
Section: science
|
||||
Priority: extra
|
||||
Build-Depends: debhelper (>= 7), libtest-script-run-perl, perl
|
||||
Maintainer: Dima Kogan <dima@secretsauce.net>
|
||||
Uploaders: Dima Kogan <dima@secretsauce.net>
|
||||
Standards-Version: 3.9.3
|
||||
Homepage: https://github.com/dkogan/feedgnuplot
|
||||
Vcs-Git: git://github.com/dkogan/feedgnuplot.git
|
||||
Vcs-Browser: https://github.com/dkogan/feedgnuplot
|
||||
DM-Upload-Allowed: yes
|
||||
|
||||
Package: feedgnuplot
|
||||
Architecture: all
|
||||
Depends: ${misc:Depends}, ${perl:Depends}, gnuplot
|
||||
Description: Pipe-oriented frontend to Gnuplot
|
||||
Flexible, command-line-oriented frontend to Gnuplot. Creates plots from data
|
||||
coming in on STDIN or given in a filename passed on the commandline. Various
|
||||
data representations are supported, as is hardcopy output and streaming display
|
||||
of live data.
|
@@ -1,13 +1,9 @@
|
||||
Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135
|
||||
Maintainer: Dima Kogan, <dima at secretsauce.net>
|
||||
Source: http://search.cpan.org/dist/feedGnuplot/
|
||||
Name: feedgnuplot
|
||||
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||
Source: https://github.com/dkogan/feedgnuplot
|
||||
Upstream-Contact: Dima Kogan, <dima@secretsauce.net>
|
||||
Upstream-Name: feedgnuplot
|
||||
|
||||
Files: *
|
||||
Copyright: Dima Kogan, <dima at secretsauce.net>
|
||||
License:
|
||||
|
||||
Files: debian/*
|
||||
Copyright: 2011, Dima Kogan <dima@secretsauce.net>
|
||||
License: Artistic or GPL-1+
|
||||
|
Reference in New Issue
Block a user