mirror of
https://github.com/dkogan/feedgnuplot.git
synced 2025-09-19 20:08:08 +08:00
Compare commits
8 Commits
debian/1.6
...
debian
Author | SHA1 | Date | |
---|---|---|---|
![]() |
d941bee57b | ||
![]() |
8be1c515c8 | ||
![]() |
96ac271cda | ||
![]() |
251a690aa2 | ||
![]() |
f15fb129e8 | ||
![]() |
c275159bc3 | ||
![]() |
dab5fc6bac | ||
![]() |
aa5732605c |
11
Changes
11
Changes
@@ -1,3 +1,14 @@
|
||||
feedgnuplot (1.62)
|
||||
|
||||
* I explicitly ignore all lines that have '-' values
|
||||
These may come from vnl-filter -p "dx=diff(x)" ... output. For instance, this
|
||||
plot is broken before this patch:
|
||||
|
||||
(echo '# x'; seq 5) | vnl-filter --noskipempty -p 'd=diff(x)' \
|
||||
| feedgnuplot --lines
|
||||
|
||||
-- Dima Kogan <dkogan@debian.org> Sat, 27 Jan 2024 17:01:18 -0800
|
||||
|
||||
feedgnuplot (1.61)
|
||||
|
||||
* #! line uses /usr/bin/env to work with nonstandard installations
|
||||
|
@@ -16,7 +16,7 @@ use Pod::Usage;
|
||||
use Time::Piece;
|
||||
|
||||
# Makefile.PL assumes this is in ''
|
||||
my $VERSION = '1.61';
|
||||
my $VERSION = '1.62';
|
||||
|
||||
my %options;
|
||||
interpretCommandline();
|
||||
@@ -780,6 +780,12 @@ sub mainThread
|
||||
$options{curvestyleall} = "with circles $options{curvestyleall}";
|
||||
}
|
||||
|
||||
# Required to ignore all lines that have '-' values, such as may come from
|
||||
# vnl-filter -p "dx=diff(x)" ... output. For instance, this plot is broken
|
||||
# without this extra line:
|
||||
# (echo '# x'; seq 5) | vnl-filter --noskipempty -p 'd=diff(x)' | ./feedgnuplot --lines
|
||||
print PIPE "set datafile missing \"-\"\n";
|
||||
|
||||
print PIPE "set style data $style\n" if $style;
|
||||
print PIPE "set grid\n";
|
||||
|
||||
|
7
debian/changelog
vendored
7
debian/changelog
vendored
@@ -1,3 +1,10 @@
|
||||
feedgnuplot (1.62-1) unstable; urgency=medium
|
||||
|
||||
* New upstream release
|
||||
explicitly ignore all lines that have '-' values
|
||||
|
||||
-- Dima Kogan <dkogan@debian.org> Sat, 27 Jan 2024 17:03:28 -0800
|
||||
|
||||
feedgnuplot (1.61-1) unstable; urgency=medium
|
||||
|
||||
* New upstream release
|
||||
|
1
debian/compat
vendored
1
debian/compat
vendored
@@ -1 +0,0 @@
|
||||
9
|
4
debian/control
vendored
4
debian/control
vendored
@@ -1,7 +1,7 @@
|
||||
Source: feedgnuplot
|
||||
Section: science
|
||||
Priority: optional
|
||||
Build-Depends: debhelper (>= 9), libstring-shellquote-perl, perl, gawk, gnuplot, libipc-run-perl, liblist-moreutils-perl, libvnlog-perl, vnlog
|
||||
Build-Depends: debhelper-compat (= 13), libstring-shellquote-perl, perl, gawk, gnuplot, libipc-run-perl, liblist-moreutils-perl, libvnlog-perl, vnlog
|
||||
Maintainer: Debian Science Maintainers <debian-science-maintainers@lists.alioth.debian.org>
|
||||
Uploaders: Dima Kogan <dkogan@debian.org>
|
||||
Standards-Version: 3.9.4
|
||||
@@ -14,7 +14,7 @@ Architecture: all
|
||||
Depends: ${misc:Depends}, ${perl:Depends},
|
||||
liblist-moreutils-perl,
|
||||
gnuplot-qt | gnuplot-x11 | gnuplot-nox | gnuplot5-qt | gnuplot5-x11 | gnuplot5-nox | gnuplot
|
||||
Suggests: vnlog
|
||||
Suggests: libvnlog-perl
|
||||
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
|
||||
|
5
debian/upstream/metadata
vendored
Normal file
5
debian/upstream/metadata
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
Bug-Database: https://github.com/dkogan/feedgnuplot/issues
|
||||
Bug-Submit: https://github.com/dkogan/feedgnuplot/issues/new
|
||||
Repository: https://github.com/dkogan/feedgnuplot.git
|
||||
Repository-Browse: https://github.com/dkogan/feedgnuplot
|
Reference in New Issue
Block a user