Compare commits

...

8 Commits

Author SHA1 Message Date
Dima Kogan
d941bee57b changelog bump 2024-01-27 17:03:34 -08:00
Dima Kogan
8be1c515c8 Merge tag 'v1.62' into debian 2024-01-27 17:02:42 -08:00
Dima Kogan
96ac271cda 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
2024-01-27 17:01:40 -08:00
Dima Kogan
251a690aa2 looser dependency 2023-03-10 22:15:49 -08:00
Stuart Prescott
f15fb129e8 Merge branch 'lintian-fixes' into 'debian'
Fix some issues reported by lintian

See merge request science-team/feedgnuplot!1
2022-11-24 04:09:24 +00:00
Debian Janitor
c275159bc3 Set upstream metadata fields: Bug-Database, Bug-Submit, Repository, Repository-Browse.
Changes-By: lintian-brush
Fixes: lintian: upstream-metadata-file-is-missing
See-also: https://lintian.debian.org/tags/upstream-metadata-file-is-missing.html
Fixes: lintian: upstream-metadata-missing-bug-tracking
See-also: https://lintian.debian.org/tags/upstream-metadata-missing-bug-tracking.html
Fixes: lintian: upstream-metadata-missing-repository
See-also: https://lintian.debian.org/tags/upstream-metadata-missing-repository.html
2022-06-07 17:00:43 +00:00
Debian Janitor
dab5fc6bac Set debhelper-compat version in Build-Depends.
Changes-By: lintian-brush
Fixes: lintian: uses-debhelper-compat-file
See-also: https://lintian.debian.org/tags/uses-debhelper-compat-file.html
2022-06-07 17:00:36 +00:00
Debian Janitor
aa5732605c Bump debhelper from deprecated 9 to 13.
Changes-By: lintian-brush
Fixes: lintian: package-uses-deprecated-debhelper-compat-version
See-also: https://lintian.debian.org/tags/package-uses-deprecated-debhelper-compat-version.html
2022-06-07 17:00:36 +00:00
6 changed files with 32 additions and 4 deletions

11
Changes
View File

@@ -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

View File

@@ -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
View File

@@ -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
View File

@@ -1 +0,0 @@
9

4
debian/control vendored
View File

@@ -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
View 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