mirror of
https://github.com/dkogan/feedgnuplot.git
synced 2025-09-19 03:38:08 +08:00
Compare commits
17 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 |
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
|
If running on a Debian-based OS (this includes Ubuntu), it is highly recommended
|
||||||
to install this program as a package by doing
|
to install this program as a package by doing
|
||||||
|
|
||||||
|
ln -fs package_definitions/debian debian
|
||||||
dpkg-buildpackage -us -uc -b
|
dpkg-buildpackage -us -uc -b
|
||||||
sudo dpkg -i feedgnuplot*.deb
|
sudo dpkg -i ../feedgnuplot*.deb
|
||||||
|
|
||||||
This builds a debian package and installs it.
|
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
|
bin/feedgnuplot.pod
|
||||||
t/00-load.t
|
t/00-load.t
|
||||||
t/manifest.t
|
t/manifest.t
|
||||||
|
Changes
|
||||||
|
LICENSE
|
||||||
|
15
Makefile.PL
15
Makefile.PL
@@ -4,14 +4,14 @@ use ExtUtils::MakeMaker;
|
|||||||
|
|
||||||
sub parseversion
|
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
|
# 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
|
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;
|
close DCH;
|
||||||
|
|
||||||
return $version;
|
return $version;
|
||||||
@@ -29,6 +29,13 @@ sub MY::libscan
|
|||||||
return $self->SUPER::libscan ($file);
|
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
|
WriteMakefile
|
||||||
(
|
(
|
||||||
|
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,10 @@
|
|||||||
|
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
|
feedgnuplot (1.22) unstable; urgency=low
|
||||||
|
|
||||||
* removed --size option
|
* removed --size option
|
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
|
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||||
Maintainer: Dima Kogan, <dima at secretsauce.net>
|
Source: https://github.com/dkogan/feedgnuplot
|
||||||
Source: http://search.cpan.org/dist/feedGnuplot/
|
Upstream-Contact: Dima Kogan, <dima@secretsauce.net>
|
||||||
Name: feedgnuplot
|
Upstream-Name: feedgnuplot
|
||||||
|
|
||||||
Files: *
|
Files: *
|
||||||
Copyright: Dima Kogan, <dima at secretsauce.net>
|
|
||||||
License:
|
|
||||||
|
|
||||||
Files: debian/*
|
|
||||||
Copyright: 2011, Dima Kogan <dima@secretsauce.net>
|
Copyright: 2011, Dima Kogan <dima@secretsauce.net>
|
||||||
License: Artistic or GPL-1+
|
License: Artistic or GPL-1+
|
||||||
|
|
Reference in New Issue
Block a user