mirror of
https://github.com/dkogan/feedgnuplot.git
synced 2025-09-19 03:38:08 +08:00
Compare commits
55 Commits
debian/1.2
...
debian/1.2
Author | SHA1 | Date | |
---|---|---|---|
![]() |
b92093464b | ||
![]() |
516077cbd0 | ||
![]() |
f8e69778a2 | ||
![]() |
7dca5c31bf | ||
![]() |
a6fef8c9f4 | ||
![]() |
1dad122cb9 | ||
![]() |
ee6b339978 | ||
![]() |
987b7d90be | ||
![]() |
d7e30ac655 | ||
![]() |
0270ec7679 | ||
![]() |
46123fc308 | ||
![]() |
f342a42cf9 | ||
![]() |
d55e54c095 | ||
![]() |
0ca3482607 | ||
![]() |
48254eefa8 | ||
![]() |
54862ec2fd | ||
![]() |
74e95d8e6f | ||
![]() |
6f23f89c28 | ||
![]() |
0f4fc69835 | ||
![]() |
f83d8db27a | ||
![]() |
59625675f7 | ||
![]() |
0863998848 | ||
![]() |
f2fa0bf14c | ||
![]() |
ffd19b9b87 | ||
![]() |
669fb8dee6 | ||
![]() |
deaa85dbd3 | ||
![]() |
99369d1542 | ||
![]() |
f4976bd0f7 | ||
![]() |
acd6de507c | ||
![]() |
faaeac7990 | ||
![]() |
1acb30c3cd | ||
![]() |
1252315598 | ||
![]() |
ece4b29a2a | ||
![]() |
bbd2a44bf9 | ||
![]() |
fad78b60b0 | ||
![]() |
809442e2dc | ||
![]() |
f022590344 | ||
![]() |
3c0743c192 | ||
![]() |
c615c8d65e | ||
![]() |
c169330fca | ||
![]() |
d76f163be4 | ||
![]() |
386c5f6d41 | ||
![]() |
720c332dd9 | ||
![]() |
4e823e7de5 | ||
![]() |
3badf920b6 | ||
![]() |
756d934058 | ||
![]() |
b43c9b985f | ||
![]() |
2f5e9d95ca | ||
![]() |
08d2f79fba | ||
![]() |
ef2bff2af6 | ||
![]() |
70b7c98124 | ||
![]() |
3146dbdfe7 | ||
![]() |
707196580a | ||
![]() |
d2613db253 | ||
![]() |
2217a1a1ba |
22
Changes
22
Changes
@@ -1,4 +1,24 @@
|
|||||||
feedgnuplot (1.24) unstable; urgency=low
|
feedgnuplot (1.26)
|
||||||
|
|
||||||
|
* Minor POD fixes
|
||||||
|
|
||||||
|
-- Dima Kogan <dima@secretsauce.net> Sun, 20 Oct 2013 01:17:57 -0700
|
||||||
|
|
||||||
|
feedgnuplot (1.25)
|
||||||
|
|
||||||
|
* Added test suite
|
||||||
|
* Added initial support for --timefmt. Currently time/date data is
|
||||||
|
supported only at the x-axis domain
|
||||||
|
* Added --exit option for force feedgnuplot to return even if gnuplot
|
||||||
|
may not yet be done rendering (patch by Eric Schulte)
|
||||||
|
* Reformatted the documentation
|
||||||
|
* y2-axis curves no longer have a thicker line by default
|
||||||
|
* --hardcopy now handles piped output (gnuplot 'set output |process'
|
||||||
|
syntax)
|
||||||
|
|
||||||
|
-- Dima Kogan <dima@secretsauce.net> Sun, 20 Oct 2013 00:09:36 -0700
|
||||||
|
|
||||||
|
feedgnuplot (1.24)
|
||||||
|
|
||||||
* Fixed regression in --monotonic. This works again now
|
* Fixed regression in --monotonic. This works again now
|
||||||
* moved POD back into the main source file. This fixes the broken usage
|
* moved POD back into the main source file. This fixes the broken usage
|
||||||
|
2
MANIFEST
2
MANIFEST
@@ -1,7 +1,7 @@
|
|||||||
Makefile.PL
|
Makefile.PL
|
||||||
MANIFEST
|
MANIFEST
|
||||||
bin/feedgnuplot
|
bin/feedgnuplot
|
||||||
t/00-load.t
|
|
||||||
t/manifest.t
|
t/manifest.t
|
||||||
|
t/plots.t
|
||||||
Changes
|
Changes
|
||||||
LICENSE
|
LICENSE
|
||||||
|
@@ -63,7 +63,7 @@ WriteMakefile
|
|||||||
: ()),
|
: ()),
|
||||||
PL_FILES => {},
|
PL_FILES => {},
|
||||||
EXE_FILES => [ 'bin/feedgnuplot' ],
|
EXE_FILES => [ 'bin/feedgnuplot' ],
|
||||||
PREREQ_PM => { 'Test::Script::Run' => 0},
|
BUILD_REQUIRES => { 'String::ShellQuote' => 0},
|
||||||
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
|
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
|
||||||
clean => { FILES => 'feedgnuplot-*' },
|
clean => { FILES => 'feedgnuplot-*' },
|
||||||
);
|
);
|
||||||
|
1066
bin/feedgnuplot
1066
bin/feedgnuplot
File diff suppressed because it is too large
Load Diff
@@ -1,43 +1,46 @@
|
|||||||
complete -W \
|
complete -W \
|
||||||
' \
|
' \
|
||||||
--domain \
|
--3d \
|
||||||
--dataid \
|
--autolegend \
|
||||||
--3d \
|
--binwidth \
|
||||||
--colormap \
|
--circles \
|
||||||
--stream \
|
--colormap \
|
||||||
--lines \
|
--curvestyle \
|
||||||
--points \
|
--curvestyleall \
|
||||||
--circles \
|
--dataid \
|
||||||
--xlabel \
|
--domain \
|
||||||
--ylabel \
|
--dump \
|
||||||
--y2label \
|
--exit \
|
||||||
--zlabel \
|
--extraValuesPerPoint \
|
||||||
--zlabel \
|
--extracmds \
|
||||||
--title \
|
--geometry \
|
||||||
--autolegend \
|
--hardcopy \
|
||||||
--xlen \
|
--help \
|
||||||
--xmin \
|
--histogram \
|
||||||
--xmax \
|
--histstyle \
|
||||||
--ymin \
|
--legend \
|
||||||
--ymax \
|
--lines \
|
||||||
--y2min \
|
--maxcurves \
|
||||||
--y2max \
|
--monotonic \
|
||||||
--zmin \
|
--points \
|
||||||
--zmax \
|
--square \
|
||||||
--y2 \
|
--square_xy \
|
||||||
--curvestyleall \
|
--stream \
|
||||||
--extracmds \
|
--terminal \
|
||||||
--square \
|
--timefmt \
|
||||||
--square_xy \
|
--title \
|
||||||
--hardcopy \
|
--version \
|
||||||
--maxcurves \
|
--xlabel \
|
||||||
--monotonic \
|
--xlen \
|
||||||
--extraValuesPerPoint \
|
--xmax \
|
||||||
--dump \
|
--xmin \
|
||||||
--geometry \
|
--y2 \
|
||||||
--curvestyle \
|
--y2label \
|
||||||
--histogram \
|
--y2max \
|
||||||
--binwidth \
|
--y2min \
|
||||||
--histstyle \
|
--ylabel \
|
||||||
--terminal \
|
--ymax \
|
||||||
--legend' feedgnuplot
|
--ymin \
|
||||||
|
--zlabel \
|
||||||
|
--zmax \
|
||||||
|
--zmin' feedgnuplot
|
||||||
|
@@ -1,44 +1,48 @@
|
|||||||
#compdef feedgnuplot
|
#compdef feedgnuplot
|
||||||
|
|
||||||
_arguments -S \
|
_arguments -S \
|
||||||
'()--domain[first element of each line is the domain variable]' \
|
'()--domain[first element of each line is the domain variable]' \
|
||||||
'--dataid[each data point is preceded by the corresponding ID]' \
|
'--dataid[each data point is preceded by the corresponding ID]' \
|
||||||
'(--monotonic --xlen --histogram)--3d' \
|
'(--monotonic --xlen --histogram)--3d' \
|
||||||
'--colormap[show a colormapped xy plot]' \
|
'--colormap[show a colormapped xy plot]' \
|
||||||
'--stream[Plot the data in realtime]::period in s:' \
|
'--stream[Plot the data in realtime]::period in s:' \
|
||||||
'--lines' \
|
'--lines' \
|
||||||
'--points' \
|
'--points' \
|
||||||
'--circles' \
|
'--circles' \
|
||||||
'--xlabel:X-axis label:' \
|
'--xlabel:X-axis label:' \
|
||||||
'--ylabel:Y-axis label:' \
|
'--ylabel:Y-axis label:' \
|
||||||
'--y2label:Y2-axis label:' \
|
'--y2label:Y2-axis label:' \
|
||||||
'--zlabel:Z-axis label:' \
|
'--zlabel:Z-axis label:' \
|
||||||
'--zlabel:Z-axis label:' \
|
'--zlabel:Z-axis label:' \
|
||||||
'--title:Plot title:' \
|
'--title:Plot title:' \
|
||||||
'--autolegend[Label each plot with its data ID]' \
|
'--autolegend[Label each plot with its data ID]' \
|
||||||
'(--3d)--xlen[the size of the x-window to plot]::window size:' \
|
'(--3d)--xlen[the size of the x-window to plot]::window size:' \
|
||||||
'--xmin:min X:' \
|
'(--xlen)--xmin:min X:' \
|
||||||
'--xmax:max X:' \
|
'(--xlen)--xmax:max X:' \
|
||||||
'--ymin:min Y:' \
|
'--ymin:min Y:' \
|
||||||
'--ymax:max Y:' \
|
'--ymax:max Y:' \
|
||||||
'--y2min:min Y2:' \
|
'--y2min:min Y2:' \
|
||||||
'--y2max:max Y2:' \
|
'--y2max:max Y2:' \
|
||||||
'--zmin:min Z:' \
|
'--zmin:min Z:' \
|
||||||
'--zmax:max Z:' \
|
'--zmax:max Z:' \
|
||||||
'*--y2:plot to place on the Y2 axis:' \
|
'*--y2:plot to place on the Y2 axis:' \
|
||||||
'--curvestyleall[Additional styles for ALL curves]:' \
|
'--curvestyleall[Additional styles for ALL curves]:style' \
|
||||||
'*--extracmds[Additional gnuplot commands]:' \
|
'*--extracmds[Additional gnuplot commands]:command' \
|
||||||
'--square[Plot data with square aspect ratio]' \
|
'--square[Plot data with square aspect ratio]' \
|
||||||
'--square_xy[For 3D plots, set square aspect ratio for ONLY the x,y axes]' \
|
'--square_xy[For 3D plots, set square aspect ratio for ONLY the x,y axes]' \
|
||||||
'--hardcopy[Plot to a file]:' \
|
'--hardcopy[Plot to a file]:filename' \
|
||||||
'--maxcurves[The maximum allowed number of curves]:' \
|
'--maxcurves[The maximum allowed number of curves]:number of curves' \
|
||||||
'(--3d)--monotonic[Resets plot if an X in the past is seen]' \
|
'(--3d)--monotonic[Resets plot if an X in the past is seen]' \
|
||||||
'--extraValuesPerPoint[How many extra values are given for each data point]:' \
|
'--extraValuesPerPoint[How many extra values are given for each data point]:N'\
|
||||||
'--dump[Instead of printing to gnuplot, print to STDOUT]' \
|
'--dump[Instead of printing to gnuplot, print to STDOUT]' \
|
||||||
'--geometry[The X11 geometry string]:geometry string:' \
|
'--geometry[The X11 geometry string]:geometry string:' \
|
||||||
'*--curvestyle[Additional styles for a curve]:curve id: :style:' \
|
'*--curvestyle[Additional styles for a curve]:curve id: :style:' \
|
||||||
'(--3d)*--histogram:plot to treat as a histogram:' \
|
'(--3d)*--histogram:plot to treat as a histogram:' \
|
||||||
'--binwidth:Histogram bin width:' \
|
'--binwidth:Histogram bin width:' \
|
||||||
'--histstyle:Style of histogram:(frequency unique cumulative cnormal)' \
|
'--histstyle:Style of histogram:(frequency unique cumulative cnormal)' \
|
||||||
'--terminal:Terminal options to set with "set terminal":' \
|
'--terminal:Terminal options to set with "set terminal":' \
|
||||||
'*--legend[Legend for a curve]:curve id: :legend:'
|
'*--legend[Legend for a curve]:curve id: :legend:' \
|
||||||
|
'--exit[Exit gnuplot after making the plot]' \
|
||||||
|
'--version' \
|
||||||
|
'--help' \
|
||||||
|
'--timefmt[Format for time/date data]:time format'
|
||||||
|
25
debian/changelog
vendored
25
debian/changelog
vendored
@@ -1,3 +1,28 @@
|
|||||||
|
feedgnuplot (1.26-1) unstable; urgency=low
|
||||||
|
|
||||||
|
[ Dima Kogan ]
|
||||||
|
* Minor POD update
|
||||||
|
* Added test suite
|
||||||
|
* Added initial support for --timefmt. Currently time/date data is
|
||||||
|
supported only at the x-axis domain
|
||||||
|
* Added --exit option for force feedgnuplot to return even if gnuplot
|
||||||
|
may not yet be done rendering (patch by Eric Schulte)
|
||||||
|
* Reformatted the documentation
|
||||||
|
* y2-axis curves no longer have a thicker line by default
|
||||||
|
* --hardcopy now handles piped output (gnuplot 'set output |process'
|
||||||
|
syntax)
|
||||||
|
|
||||||
|
[ Anton Gladky ]
|
||||||
|
* Add libipc-run-perl to Build-Depends to execute tests
|
||||||
|
|
||||||
|
-- Dima Kogan <dima@secretsauce.net> Sun, 20 Oct 2013 01:19:51 -0700
|
||||||
|
|
||||||
|
feedgnuplot (1.24-2) unstable; urgency=low
|
||||||
|
|
||||||
|
* Now building the html documentation from the correct POD source
|
||||||
|
|
||||||
|
-- Dima Kogan <dima@secretsauce.net> Sun, 28 Apr 2013 17:42:52 -0700
|
||||||
|
|
||||||
feedgnuplot (1.24-1) unstable; urgency=low
|
feedgnuplot (1.24-1) unstable; urgency=low
|
||||||
|
|
||||||
* Fixed regression in --monotonic. This works again now
|
* Fixed regression in --monotonic. This works again now
|
||||||
|
2
debian/control
vendored
2
debian/control
vendored
@@ -1,7 +1,7 @@
|
|||||||
Source: feedgnuplot
|
Source: feedgnuplot
|
||||||
Section: science
|
Section: science
|
||||||
Priority: optional
|
Priority: optional
|
||||||
Build-Depends: debhelper (>= 9), libtest-script-run-perl, perl
|
Build-Depends: debhelper (>= 9), libstring-shellquote-perl, perl, gawk, gnuplot, libipc-run-perl
|
||||||
Maintainer: Debian Science Maintainers <debian-science-maintainers@lists.alioth.debian.org>
|
Maintainer: Debian Science Maintainers <debian-science-maintainers@lists.alioth.debian.org>
|
||||||
Uploaders: Dima Kogan <dima@secretsauce.net>, Anton Gladky <gladk@debian.org>
|
Uploaders: Dima Kogan <dima@secretsauce.net>, Anton Gladky <gladk@debian.org>
|
||||||
Standards-Version: 3.9.4
|
Standards-Version: 3.9.4
|
||||||
|
2
debian/rules
vendored
2
debian/rules
vendored
@@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
override_dh_auto_build:
|
override_dh_auto_build:
|
||||||
dh_auto_build
|
dh_auto_build
|
||||||
pod2html --title=feedgnuplot bin/feedgnuplot.pod > feedgnuplot.html
|
pod2html --title=feedgnuplot bin/feedgnuplot > feedgnuplot.html
|
||||||
|
|
||||||
override_dh_auto_clean:
|
override_dh_auto_clean:
|
||||||
rm -rf feedgnuplot.html pod2htm*
|
rm -rf feedgnuplot.html pod2htm*
|
||||||
|
16
t/00-load.t
16
t/00-load.t
@@ -1,16 +0,0 @@
|
|||||||
#!/usr/bin/perl
|
|
||||||
|
|
||||||
# require a threaded perl for my tests. This block lifted verbatim from the cpantesters wiki
|
|
||||||
BEGIN {
|
|
||||||
use Config;
|
|
||||||
if (! $Config{'useithreads'}) {
|
|
||||||
print("1..0 # Skip: Perl not compiled with 'useithreads'\n");
|
|
||||||
exit(0);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
use Test::More tests => 1;
|
|
||||||
use Test::Script::Run;
|
|
||||||
|
|
||||||
run_ok( 'feedgnuplot', ['--help'], 'feedgnuplot can run');
|
|
||||||
|
|
Reference in New Issue
Block a user