[gnuplot44/el6/master] Import of .src.rpm. #570318

stevetraylen stevetraylen at fedoraproject.org
Tue Oct 19 14:31:56 UTC 2010


commit 043a7408a993888b13408103208f45f2a2c4ed67
Author: Steve Traylen <steve.traylen at cern.ch>
Date:   Tue Oct 19 16:31:06 2010 +0200

    Import of .src.rpm. #570318

 .gitignore                    |    1 +
 gnuplot-4.2.0-fonts.patch     |   12 +
 gnuplot-4.2.0-refers_to.patch |   17 ++
 gnuplot-4.4.1-mp.patch        |   15 +
 gnuplot-init.el               |    5 +
 gnuplot44.spec                |  621 +++++++++++++++++++++++++++++++++++++++++
 sources                       |    1 +
 7 files changed, 672 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..1877eeb 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/gnuplot-4.4.2.tar.gz
diff --git a/gnuplot-4.2.0-fonts.patch b/gnuplot-4.2.0-fonts.patch
new file mode 100644
index 0000000..2b197a0
--- /dev/null
+++ b/gnuplot-4.2.0-fonts.patch
@@ -0,0 +1,12 @@
+diff -up gnuplot-4.4.0/term/gd.trm.pom gnuplot-4.4.0/term/gd.trm
+--- gnuplot-4.4.0/term/gd.trm.pom	2010-02-25 03:29:20.000000000 +0100
++++ gnuplot-4.4.0/term/gd.trm	2010-08-17 09:51:22.000000000 +0200
+@@ -978,7 +978,7 @@ PNG_options()
+ 	if (external_default)
+ 		png_state.ttffont = gp_strdup(external_default);
+ 	else	/* Might as well try some plausible font; it's no worse than failing immediately */
+-		png_state.ttffont = gp_strdup("arial");
++		png_state.ttffont = gp_strdup("/usr/share/fonts/dejavu/DejaVuSans.ttf");
+ 
+ 	free(png_state.default_ttffont);
+ 	png_state.default_ttffont = gp_strdup(png_state.ttffont);
diff --git a/gnuplot-4.2.0-refers_to.patch b/gnuplot-4.2.0-refers_to.patch
new file mode 100644
index 0000000..8e4e1c2
--- /dev/null
+++ b/gnuplot-4.2.0-refers_to.patch
@@ -0,0 +1,17 @@
+diff -up gnuplot-4.2.2/src/variable.c.refto gnuplot-4.2.2/src/variable.c
+--- gnuplot-4.2.2/src/variable.c.refto	2006-06-27 04:36:30.000000000 +0200
++++ gnuplot-4.2.2/src/variable.c	2007-10-25 14:04:20.000000000 +0200
+@@ -263,8 +263,11 @@ static const struct path_table fontpath_
+     { "$`kpsexpand '$TEXMFDIST'`/fonts/type1!" },
+ #endif
+     /* Linux paths */
+-    { "/usr/X11R6/lib/X11/fonts/Type1" },
+-    { "/usr/X11R6/lib/X11/fonts/truetype" },
++    { "/usr/share/fonts/default/ghostscript/" },
++    { "/usr/share/fonts/default/Type1/" },
++    { "/usr/share/fonts/bitstream-vera/" },
++    { "/usr/share/fonts/dejavu-lgc" },
++    { "/usr/share/fonts/liberation" },
+     /* HP-UX */
+     { "/usr/lib/X11/fonts!"},
+     /* Ghostscript */
diff --git a/gnuplot-4.4.1-mp.patch b/gnuplot-4.4.1-mp.patch
new file mode 100644
index 0000000..ddacb79
--- /dev/null
+++ b/gnuplot-4.4.1-mp.patch
@@ -0,0 +1,15 @@
+diff -up gnuplot-4.4.1/man/gnuplot.1.pom gnuplot-4.4.1/man/gnuplot.1
+--- gnuplot-4.4.1/man/gnuplot.1.pom	2009-02-18 05:03:52.000000000 +0100
++++ gnuplot-4.4.1/man/gnuplot.1	2010-09-24 14:58:00.000000000 +0200
+@@ -236,8 +236,8 @@ gnuplot.  None of these are required.
+ .TP
+ .B GNUTERM
+ The name of the terminal type to be used.  This overrides any terminal
+-type sensed by gnuplot on start-up, but is itself overridden by the
+-.gnuplot (or equivalent) start-up file (see \fBFILES\fP and "help
++type sensed by gnuplot on start-up, but is itself overridden by the .gnuplot
++(or equivalent) start-up file (see \fBFILES\fP and "help
+ start-up") and, of course, by later explicit changes.
+ .TP
+ .B GNUHELP 
+diff -up gnuplot-4.4.1/man/.pom gnuplot-4.4.1/man/
diff --git a/gnuplot-init.el b/gnuplot-init.el
new file mode 100644
index 0000000..aebcebb
--- /dev/null
+++ b/gnuplot-init.el
@@ -0,0 +1,5 @@
+(autoload 'gnuplot-mode "gnuplot" "gnuplot major mode" t)
+(autoload 'gnuplot-make-buffer "gnuplot"
+  "open a buffer in gnuplot-mode" t)
+(setq auto-mode-alist (append '(("\\.gp$" . gnuplot-mode))
+			      auto-mode-alist))
diff --git a/gnuplot44.spec b/gnuplot44.spec
new file mode 100644
index 0000000..0fab986
--- /dev/null
+++ b/gnuplot44.spec
@@ -0,0 +1,621 @@
+%define major 4
+%define minor 4
+%define patchlevel 2
+%define mysuffix %{major}%{minor}
+
+%global _emacs_sitelispdir %{_datadir}/emacs/site-lisp
+%global _emacs_sitestartdir %{_datadir}/emacs/site-lisp/site-start.d
+%global x11_app_defaults_dir %{_datadir}/X11/app-defaults
+
+
+Summary: A program for plotting mathematical expressions and data
+Name: gnuplot%{mysuffix}
+Version: %{major}.%{minor}.%{patchlevel}
+Release: 2%{?dist}
+# Modifications are to be distributed as patches to the released version.
+# aglfn.txt has license: MIT
+License: gnuplot and MIT
+Group: Applications/Engineering
+URL: http://www.gnuplot.info/
+Source: http://downloads.sourceforge.net/gnuplot/gnuplot-%{version}.tar.gz
+Source2: gnuplot-init.el
+Patch1: gnuplot-4.2.0-refers_to.patch
+Patch2: gnuplot-4.2.0-fonts.patch
+Patch3: gnuplot-4.4.1-mp.patch
+BuildRequires: libpng-devel, zlib-devel, emacs
+BuildRequires: texinfo, readline-devel, gd-devel, wxGTK-devel
+%if 0%{?el4} 
+BuildRequires: xorg-x11-devel
+BuildRequires: tetex-latex
+%else
+BuildRequires: libX11-devel
+BuildRequires: tex(latex)
+BuildRequires: libXt-devel
+BuildRequires: latex2html
+%endif
+Requires: %{name}-common = %{version}-%{release}
+Requires: dejavu-sans-fonts
+Requires(post): %{_sbindir}/alternatives
+Requires(preun): %{_sbindir}/alternatives
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+%description
+Gnuplot is a command-line driven, interactive function plotting
+program especially suited for scientific data representation.  Gnuplot
+can be used to plot functions and data points in both two and three
+dimensions and in many different formats.
+
+Install gnuplot if you need a graphics package for scientific data
+representation.
+
+%package common
+Group: Applications/Engineering
+Summary: The common gnuplot parts
+Requires(post): /sbin/install-info
+Requires(preun): /sbin/install-info
+
+%description common
+Gnuplot is a command-line driven, interactive function plotting
+program especially suited for scientific data representation.  Gnuplot
+can be used to plot functions and data points in both two and three
+dimensions and in many different formats.
+
+This subpackage contains common parts needed for arbitrary version of gnuplot
+
+%package minimal
+Group: Applications/Engineering
+Summary: Minimal version of program for plotting mathematical expressions and data
+Requires: %{name}-common = %{version}-%{release}
+Requires(post): %{_sbindir}/alternatives
+Requires(preun): %{_sbindir}/alternatives
+
+%description minimal
+Gnuplot is a command-line driven, interactive function plotting
+program especially suited for scientific data representation.  Gnuplot
+can be used to plot functions and data points in both two and three
+dimensions and in many different formats.
+
+Install gnuplot-minimal if you need a minimal version of graphics package 
+for scientific data representation.
+
+%package -n emacs-%{name}
+Group: Applications/Engineering
+Summary: Emacs bindings for the gnuplot main application
+Requires: %{name} = %{version}-%{release}
+BuildRequires:  emacs emacs-el pkgconfig
+Requires: emacs
+
+%description -n emacs-%{name}
+The gnuplot-emacs package contains the emacs related .elc files so that gnuplot
+nicely interacts and integrates into emacs.
+
+%package -n emacs-%{name}-el
+Group: Applications/Engineering
+Summary: Emacs bindings for the gnuplot main application
+Requires: emacs-%{name} = %{version}-%{release}
+
+%description -n emacs-%{name}-el
+The gnuplot-emacs package contains the emacs related .el files so that gnuplot
+nicely interacts and integrates into emacs.
+
+%package  doc
+Group: Applications/Engineering
+Summary: Documentation fo bindings for the gnuplot main application
+
+%description doc
+The gnuplot-doc package contains the documentation related to gnuplot 
+plotting tool
+
+%package  latex
+Group: Applications/Engineering
+Summary: Configuration for LaTeX typesetting using gnuplot
+Requires: tex(latex)
+Requires: %{name} = %{version}-%{release}
+
+%description latex
+The gnuplot-latex package contains LaTeX configuration file related to gnuplot 
+plotting tool.
+
+
+%prep
+%setup -q -n gnuplot-%{version}
+%patch1 -p1 -b .refto
+%patch2 -p1 -b .font
+%patch3 -p1 -b .mp
+sed -i -e 's:"/usr/lib/X11/app-defaults":"%{x11_app_defaults_dir}":' src/gplt_x11.c
+iconv -f windows-1252 -t utf-8 ChangeLog > ChangeLog.aux
+iconv -f iso8859-1 -t utf-8 demo/fontfile.dem > demo/fontfile.dem.iconv && mv demo/fontfile.dem.iconv demo/fontfile.dem
+iconv -f iso8859-1 -t utf-8 demo/epslatex.dem > demo/epslatex.dem.iconv && mv demo/epslatex.dem.iconv demo/epslatex.dem
+iconv -f iso8859-1 -t utf-8 demo/fontfile_latex.dem > demo/fontfile_latex.dem.iconv && mv demo/fontfile_latex.dem.iconv demo/fontfile_latex.dem
+iconv -f iso8859-1 -t utf-8 demo/demo.edf > demo/demo.edf.iconv && mv demo/demo.edf.iconv demo/demo.edf
+iconv -f iso8859-1 -t utf-8 docs/psdoc/ps_guide.ps > docs/psdoc/ps_guide.ps.iconv && mv docs/psdoc/ps_guide.ps.iconv docs/psdoc/ps_guide.ps
+
+
+
+mv ChangeLog.aux ChangeLog
+chmod 644 src/getcolor.h
+chmod 644 demo/html/webify.pl
+chmod 644 demo/html/webify_svg.pl
+chmod 644 demo/html/webify_canvas.pl
+
+%build
+# RHEL5 readline does not include termcap as well.
+# https://bugzilla.redhat.com/show_bug.cgi?id=499837
+export LIBS="-ltermcap"
+# at first create minimal version of gnuplot for server SIG purposes
+
+%configure --with-readline=gnu --with-png --without-linux-vga \
+ --enable-history-file --disable-wxwidgets \
+ --without-cairo  --program-suffix=%{mysuffix}
+make %{?_smp_mflags}
+mv src/gnuplot src/gnuplot-minimal
+
+# clean all settings
+make clean
+# create full version of gnuplot
+%configure --with-readline=gnu --with-png --without-linux-vga \
+ --enable-history-file --program-suffix=%{mysuffix}
+make %{?_smp_mflags}
+
+cd docs
+make html
+cd psdoc
+export GNUPLOT_PS_DIR=../../term/PostScript
+make ps_symbols.ps ps_fontfile_doc.pdf
+cd ../..
+rm -rf docs/htmldocs/images.idx
+
+%install
+rm -rf $RPM_BUILD_ROOT
+make install DESTDIR=$RPM_BUILD_ROOT INSTALL='install -p'
+install -d ${RPM_BUILD_ROOT}/%{_emacs_sitestartdir}/
+install -p -m 644 %SOURCE2 ${RPM_BUILD_ROOT}/%{_emacs_sitestartdir}//gnuplot-init.el
+rm -f $RPM_BUILD_ROOT%{_infodir}/dir
+rm -f $RPM_BUILD_ROOT%{_datadir}/emacs/site-lisp/info-look*.el*
+install -d ${RPM_BUILD_ROOT}/%{_emacs_sitelispdir}/%{name}
+mv $RPM_BUILD_ROOT%{_datadir}/emacs/site-lisp/gnuplot.el{,c} $RPM_BUILD_ROOT/%{_emacs_sitelispdir}/%{name}
+mv $RPM_BUILD_ROOT%{_datadir}/emacs/site-lisp/gnuplot-gui.el{,c} $RPM_BUILD_ROOT/%{_emacs_sitelispdir}/%{name}
+
+mkdir -p $RPM_BUILD_ROOT%{x11_app_defaults_dir}
+mv $RPM_BUILD_ROOT%{_datadir}/gnuplot/%{major}.%{minor}/app-defaults/Gnuplot $RPM_BUILD_ROOT%{x11_app_defaults_dir}/Gnuplot%{mysuffix}
+rm -rf $RPM_BUILD_ROOT%{_libdir}/
+
+# rename binary
+mv $RPM_BUILD_ROOT%{_bindir}/gnuplot%{mysuffix} $RPM_BUILD_ROOT%{_bindir}/gnuplot-wx%{mysuffix}
+# install minimal binary
+install -p -m 755 ./src/gnuplot-minimal $RPM_BUILD_ROOT%{_bindir}/gnuplot-minimal%{mysuffix}
+
+# Some manual adjustments because of the nature of the suffix we are adding.
+mkdir -p $RPM_BUILD_ROOT%{_datadir}/texmf/tex/latex/gnuplot%{mysuffix}
+mv $RPM_BUILD_ROOT%{_datadir}/texmf/tex/latex/gnuplot/gnuplot.cfg  \
+     $RPM_BUILD_ROOT%{_datadir}/texmf/tex/latex/gnuplot%{mysuffix}/gnuplot%{mysuffix}.cfg 
+mv $RPM_BUILD_ROOT%{_datadir}/texmf/tex/latex/gnuplot/gnuplot-lua-tikz.sty  \
+     $RPM_BUILD_ROOT%{_datadir}/texmf/tex/latex/gnuplot%{mysuffix}/gnuplot%{mysuffix}-lua-tikz.sty  \
+
+
+rm -f $RPM_BUILD_ROOT%{_infodir}/dir
+mv $RPM_BUILD_ROOT%{_infodir}/gnuplot.info $RPM_BUILD_ROOT%{_infodir}/gnuplot%{mysuffix}.info
+
+%post
+if [ $1 = 1 ] ; then
+%{_sbindir}/alternatives --install %{_bindir}/gnuplot%{mysuffix} gnuplot%{mysuffix} %{_bindir}/gnuplot-wx%{mysuffix} 60
+fi
+
+%post common
+if [ -f %{_infodir}/gnuplot%{mysuffix}.info* ]; then
+    /sbin/install-info %{_infodir}/gnuplot%{mysuffix}.info %{_infodir}/dir || :
+fi
+
+%post minimal
+if [ $1 = 1 ] ; then
+%{_sbindir}/alternatives --install %{_bindir}/gnuplot%{mysuffix} gnuplot%{mysuffix} %{_bindir}/gnuplot-minimal%{mysuffix} 40
+fi
+
+%preun
+if [ $1 = 0 ]; then
+    %{_sbindir}/alternatives --remove gnuplot%{mysuffix} %{_bindir}/gnuplot-wx%{mysuffix} || :
+fi
+
+%preun common
+if [ $1 = 0 ] ; then # last uninstall
+    if [ -f %{_infodir}/gnuplot%{mysuffix}.info* ]; then
+        /sbin/install-info --delete %{_infodir}/gnuplot%{mysuffix}.info %{_infodir}/dir || :
+    fi
+fi
+
+%preun minimal
+if [ $1 = 0 ]; then
+    %{_sbindir}/alternatives --remove gnuplot%{mysuffix} %{_bindir}/gnuplot-minimal%{mysuffix} || :
+fi
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(-,root,root,-)
+%doc ChangeLog Copyright
+%{_bindir}/gnuplot-wx%{mysuffix}
+
+%files doc
+%defattr(-,root,root,-)
+%doc ChangeLog Copyright
+%doc docs/psdoc/ps_guide.ps docs/psdoc/ps_symbols.ps tutorial/tutorial.dvi demo docs/psdoc/ps_file.doc
+%doc docs/psdoc/ps_fontfile_doc.pdf docs/htmldocs tutorial/eg7.eps
+
+%files common
+%defattr(-,root,root,-)
+%doc BUGS ChangeLog Copyright NEWS README TODO
+%{_mandir}/man1/gnuplot%{mysuffix}.1.gz
+%dir %{_datadir}/gnuplot
+%dir %{_datadir}/gnuplot/%{major}.%{minor}
+%dir %{_datadir}/gnuplot/%{major}.%{minor}/PostScript
+%{_datadir}/gnuplot/%{major}.%{minor}/PostScript/*.ps
+%{_datadir}/gnuplot/%{major}.%{minor}/PostScript/aglfn.txt
+%dir %{_datadir}/gnuplot/%{major}.%{minor}/js
+%{_datadir}/gnuplot/%{major}.%{minor}/js/*
+%dir %{_datadir}/gnuplot/4.4/lua/
+/usr/share/gnuplot/4.4/lua/gnuplot-tikz.lua
+%{_datadir}/gnuplot/%{major}.%{minor}/gnuplot.gih
+%dir %{_libexecdir}/gnuplot
+%dir %{_libexecdir}/gnuplot/%{major}.%{minor}
+%{_libexecdir}/gnuplot/%{major}.%{minor}/gnuplot_x11%{mysuffix}
+%{x11_app_defaults_dir}/Gnuplot%{mysuffix}
+%{_infodir}/gnuplot%{mysuffix}.info.gz
+
+%files minimal
+%defattr(-,root,root,-)
+%doc ChangeLog Copyright
+%{_bindir}/gnuplot-minimal%{mysuffix}
+
+%files -n emacs-%{name}
+%defattr(-,root,root,-)
+%doc ChangeLog Copyright
+%dir %{_emacs_sitelispdir}/%{name}
+%{_emacs_sitelispdir}/%{name}/*.elc
+%{_emacs_sitestartdir}/*.el
+
+%files -n emacs-%{name}-el
+%defattr(-,root,root,-)
+%doc ChangeLog Copyright
+%{_emacs_sitelispdir}/%{name}/*.el
+
+%files latex
+%defattr(-,root,root,-)
+%doc ChangeLog Copyright
+%dir %{_datadir}/texmf/tex/latex/gnuplot%{mysuffix}
+%{_datadir}/texmf/tex/latex/gnuplot%{mysuffix}/gnuplot%{mysuffix}.cfg
+%{_datadir}/texmf/tex/latex/gnuplot%{mysuffix}/gnuplot%{mysuffix}-lua-tikz.sty
+
+%changelog
+* Wed Oct 13 2010 Steve Traylen <steve.traylen at cern.ch> 4.4.2-2
+- Adapt Fedora 15 .spec file for EPEL5.
+- Remove noarch subpackages. 
+- Add -ltermcap to LIBS.
+
+* Fri Oct  1 2010 Ivana Hutarova Varekova <varekova at redhat.com> 4.4.2-1
+- update to 4.4.2
+
+* Wed Sep 29 2010 jkeating - 4.4.1-2
+- Rebuilt for gcc bug 634757
+
+* Tue Aug 17 2010 Ivana Hutarova Varekova <varekova at redhat.com> 4.4.1-1
+- Resolves: #633283
+  update to 4.4.1
+  fix man-page bug
+
+* Tue Aug 17 2010 Ivana Hutarova Varekova <varekova at redhat.com> 4.4.0-5
+- Resolves: #537960
+  Could not find/open font when opening font "arial"
+
+* Wed Jul 14 2010 Dan Horák <dan at danny.cz> - 4.4.0-4
+- rebuilt against wxGTK-2.8.11-2
+
+* Fri Mar 19 2010 Ivana Hutarova Varekova <varekova at redhat.com> 4.4.0-3
+- Resolves #573873
+  fix the emacs variables (thanks Jonathan G. Underwood)
+
+* Fri Mar 19 2010 Ivana Hutarova Varekova <varekova at redhat.com> 4.4.0-2
+- Resolves #573873
+  mark emacs* and doc subpackages as noarch
+
+* Thu Mar 18 2010 Ivana Hutarova Varekova <varekova at redhat.com> 4.4.0-1
+- update to 4.4.0
+  spec file changes
+
+* Tue Mar  2 2010 Ivana Hutarova Varekova <varekova at redhat.com> 4.2.6-2
+- fix license tag
+
+* Tue Sep 15 2009 Ivana Varekova <varekova at redhat.com> 4.2.6-1
+- update to 4.2.6
+
+* Mon Aug 10 2009 Ivana Varekova <varekova at redhat.com> 4.2.5-6
+- fix installation with --excludedocs option (#515963)
+
+* Fri Jul 24 2009 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 4.2.5-5
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
+
+* Mon Jun 15 2009 Ivana Varekova <varekova at redhat.com> - 4.2.5-4
+- add gnuplot-latex subpackage
+  patch by jnovy
+
+* Fri May 29 2009 Ivana Varekova <varekova at redhat.com> - 4.2.5-2
+- fix preun scripts
+
+* Thu May 28 2009 Ivana Varekova <varekova at redhat.com> - 4.2.5-1
+- update to 4.2.5
+
+* Fri Mar 27 2009 Ivana Varekova <varekova at redhat.com> - 4.2.4-6
+- split documentation
+
+* Tue Mar 10 2009 Ivana Varekova <varekova at redhat.com> - 4.2.4-5
+- fix #489069 (update of the package from nonsplit version
+  causes the absence of gnuplot binary -
+  fixed using posttrans instead of post)
+
+* Tue Feb 24 2009 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 4.2.4-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
+
+* Wed Jan 14 2009 Ivana Varekova <varekova at redhat.com> - 4.2.4-3
+- fix sbin path
+
+* Tue Jan 13 2009 Ivana Varekova <varekova at redhat.com> - 4.2.4-2
+- add minimal package for server SIG purposes
+
+* Fri Nov  7 2008 Ivana Varekova <varekova at redhat.com> - 4.2.4-1
+- update to 4.2.4
+
+* Fri May  9 2008 Ivana Varekova <varekova at redhat.com> - 4.2.3-1
+- update to 4.2.3
+
+* Wed Feb 20 2008 Fedora Release Engineering <rel-eng at fedoraproject.org> - 4.2.2-10
+- Autorebuild for GCC 4.3
+
+* Tue Jan 29 2008 Ivana Varekova <varekova at redhat.com> - 4.2.2-9
+- spec file cleanup
+
+* Mon Jan 28 2008 Ivana Varekova <varekova at redhat.com> - 4.2.2-8
+- fix 430335 - add wxGTK requires
+
+* Mon Dec 10 2007 Ivana Varekova <varekova at redhat.com> - 4.2.2-7
+- add wxGTK-devel dependency (#405411)
+
+* Thu Nov 15 2007 Ivana Varekova <varekova at redhat.com> - 4.2.2-6
+- add obsoletes tag
+
+* Mon Nov 12 2007 Ivana Varekova <varekova at redhat.com> - 4.2.2-5
+- fix 373941 - add provides tag
+
+* Tue Nov  6 2007 Ivana Varekova <varekova at redhat.com> - 4.2.2-4
+- fix webify.pl permissions
+- add eg7.eps to documentation
+
+* Thu Nov  1 2007 Ivana Varekova <varekova at redhat.com> - 4.2.2-3
+- add emacs buildrequires
+- add emacs-* macros
+- remove useless iconv
+
+* Thu Oct 25 2007 Ivana Varekova <varekova at redhat.com> - 4.2.2-2
+- rename emacs subpackage, split intwo two parts
+- add font directories
+- clean spec file
+
+* Thu Oct 25 2007 Ivana Varekova <varekova at redhat.com> - 4.2.2-1
+- update to 4.2.2
+
+* Wed Oct 17 2007 Ivana Varekova <varekova at redhat.com> - 4.2.0-7
+- add URL tag
+
+* Mon Sep 24 2007 Ivana Varekova <varekova at redhat.com> - 4.2.0-6
+- spec file cleanup
+
+* Fri Sep  7 2007 Ivana Varekova <varekova at redhat.com> - 4.2.0-5
+- move emacs files to */site-lisp/gnuplot subdirectory
+
+* Thu Sep  6 2007 Ivana Varekova <varekova at redhat.com> - 4.2.0-4
+- change font paths, change documenatation
+
+* Tue Aug 28 2007 Ivana Varekova <varekova at redhat.com> - 4.2.0-3
+- Rebuild for selinux ppc32 issue.
+- Remove obsolete file
+
+* Tue Jul  3 2007 Ivana Varekova <varekova at redhat.com> - 4.2.0-2
+- Resolves: #246316
+  remove info-look.20.{2,3}.el
+
+* Mon May 21 2007 Ivana Varekova <varekova at redhat.com> - 4.2.0-1
+- Resolves: #231205
+  update to 4.2.0
+  spec changes from Tim Orling  
+
+* Mon Mar 26 2007 Ivana Varekova <varekova at redhat.com> - 4.0.0-18
+- add missing directories (#233838)
+
+* Thu Mar 15 2007 Ivana Varekova <varekova at redhat.com> - 4.0.0-17
+- incorporate the package review feedback
+
+* Mon Jan 22 2007 Ivana Varekova <varekova at redhat.com> - 4.0.0-16
+- Resolves: 223693  
+  fix non-failsafe install-info problem
+
+* Fri Dec 22 2006 Ivana Varekova <varekova at redhat.com> - 4.0.0-15
+- Resolves: 173752
+  gnuplot refers to /usr/X11R6/lib/fonts/Type1
+
+* Tue Dec 21 2006 Ivana Varekova <varekova at redhat.com> - 4.0.0-14
+- remove --without-gd options (#173922, #172565)
+- spec file cleanup
+
+* Fri Dec  1 2006 Ivana Varekova <varekova at redhat.com> - 4.0.0-13
+- rebuild against libncurses
+
+* Wed Jul 26 2006 Jesse Keating <jkeating at redhat.com> - 4.0.0-12
+- rebuild
+
+* Wed Mar 01 2006 Karsten Hopp <karsten at redhat.de> 4.0.0-11
+- BuildRequires: libXt-devel
+
+* Fri Feb 10 2006 Jesse Keating <jkeating at redhat.com> - 4.0.0-10.2.1
+- bump again for double-long bug on ppc(64)
+
+* Tue Feb 07 2006 Jesse Keating <jkeating at redhat.com> - 4.0.0-10.2
+- rebuilt for new gcc4.1 snapshot and glibc changes
+
+* Fri Dec 09 2005 Jesse Keating <jkeating at redhat.com>
+- rebuilt
+
+* Wed Nov 02 2005 Phil Knirsch <pknirsch at redhat.com> 4.0.0-10
+- Switched BuildPreReqs and Requires to modular xorg-x11 style
+
+* Fri Oct 21 2005 Phil Knirsch <pknirsch at redhat.com> 4.0.0-9
+- Fixed 64bit problem with x11 display (#167508)
+- Added missing file ownage of /usr/share/gnuplot (#169333)
+
+* Fri Sep 02 2005 Phil Knirsch <pknirsch at redhat.com> 4.0.0-8
+- Fixed missing Requires: emacs for the gnuplot-emacs package
+- Added a gnuplot-init.el file for startup (#151122)
+
+* Wed Mar 02 2005 Phil Knirsch <pknirsch at redhat.com> 4.0.0-7
+- bump release and rebuild with gcc 4
+
+* Wed Jan 12 2005 Tim Waugh <twaugh at redhat.com> 4.0.0-6
+- Rebuilt for new readline.
+
+* Thu Dec 23 2004 Phil Knirsch <pknirsch at redhat.com> 4.0.0-5
+- Added BUGS ChangeLog Copyright FAQ NEWS README TODO to docs (#139070)
+
+* Mon Oct 11 2004 Tim Waugh <twaugh at redhat.com> 4.0.0-4
+- Build requires texinfo and readline-devel (bug #134922)
+
+* Tue Sep 07 2004 Karsten Hopp <karsten at redhat.de> 4.0.0-3 
+- fix typo in preun script
+
+* Thu Sep  2 2004 Bill Nottingham <notting at redhat.com> 4.0.0-2
+- %%defattr fixes (#131640)
+
+* Thu Aug 12 2004 Phil Knirsch <pknirsch at redhat.com> 4.0.0-1
+- Update to gnuplot-4.0.0
+- Split off emacs files into new subpackage
+
+* Tue Jun 15 2004 Elliot Lee <sopwith at redhat.com>
+- rebuilt
+
+* Fri Feb 13 2004 Elliot Lee <sopwith at redhat.com>
+- rebuilt
+
+* Wed Jul 02 2003 Bill Nottingham <notting at redhat.com> 3.7.3-4
+- fix license (#98449)
+
+* Wed Jun 04 2003 Elliot Lee <sopwith at redhat.com>
+- rebuilt
+
+* Wed Jan 22 2003 Tim Powers <timp at redhat.com>
+- rebuilt
+
+* Tue Jan 21 2003 Bill Nottingham <notting at redhat.com> 3.7.3-1
+- update to 3.7.3
+- don't bother patching it to do jpegs with gd instead of gifs,
+  as we haven't been building it with gd support anyway
+
+* Fri Nov 29 2002 Tim Powers <timp at redhat.com> 3.7.2-2
+- remove unpackaged files from the buildroot
+
+* Thu Jul 18 2002 Bill Nottingham <notting at redhat.com> 3.7.2-1
+- update to 3.7.2
+
+* Fri Jun 21 2002 Tim Powers <timp at redhat.com>
+- automated rebuild
+
+* Thu May 23 2002 Tim Powers <timp at redhat.com>
+- automated rebuild
+
+* Thu Feb 21 2002 Bill Nottingham <notting at redhat.com>
+- rebuild
+
+* Wed Jan 23 2002 Bill Nottingham <notting at redhat.com> 3.7.1-16
+- fix bug #43620 (<broeker at physik.rwth-aachen.de>)
+
+* Tue Jan 22 2002 Bill Nottingham <notting at redhat.com> 3.7.1-15
+- fix bug #21341 (<wtcorrea at cs.princeton.edu>)
+
+* Wed Jan 09 2002 Tim Powers <timp at redhat.com>
+- automated rebuild
+
+* Fri May 11 2001 Bernhard Rosenkraenzer <bero at redhat.com> 3.7.1-13
+- rebuild with new readline
+- Fix up License: and URL: tags in specfile
+
+* Tue Aug 22 2000 Bill Nottingham <notting at redhat.com>
+- remove zlib-devel requirement (#16718)
+
+* Wed Aug 02 2000 Trond Eivind Glomsrød <teg at redhat.com>
+- rebuild with libpng 1.0.8
+
+* Thu Jul 13 2000 Prospector <bugzilla at redhat.com>
+- automatic rebuild
+
+* Mon Jun 18 2000 Bill Nottingham <notting at redhat.com>
+- fix  manpage paths
+
+* Fri Jun  9 2000 Bill Nottingham <notting at redhat.com>
+- rebuild in new environment
+
+* Fri May 19 2000 Nalin Dahyabhai <nalin at redhat.com>
+- rebuild with new gd, changing gif terminal to jpeg terminal (release 7)
+
+* Mon May 08 2000 Preston Brown <pbrown at redhat.com>
+- build for 7.0
+
+* Thu Apr  6 2000 Bill Nottingham <notting at redhat.com>
+- use gnu readline, not built-in version
+
+* Mon Apr  3 2000 Bill Nottingham <notting at redhat.com>
+- add latex tutorial, demo files, other docs (#10508)
+
+* Wed Mar  1 2000 Bill Nottingham <notting at redhat.com>
+- update to 3.7.1. Oops.
+
+* Thu Feb  3 2000 Bill Nottingham <notting at redhat.com>
+- handle compressed man pages
+
+* Thu Nov  4 1999 Bill Nottingham <notting at redhat.com>
+- update to 3.7.1
+
+* Mon Oct 11 1999 Bill Nottingham <notting at redhat.com>
+- ship some docs.
+
+* Wed Aug 18 1999 Bill Nottingham <notting at redhat.com>
+- add a patch to fix postscript output from Bernd Kischnick
+ (kisch at die-herrmanns.de)
+
+* Fri Jul 30 1999 Bill Nottingham <notting at redhat.com>
+- fix license
+
+* Thu Jul 15 1999 Bill Nottingham <notting at redhat.com>
+- rebuild without svgalib
+
+* Tue Jun 15 1999 Bill Nottingham <notting at redhat.com>
+- update to 3.7.0.1
+
+* Sun Mar 21 1999 Cristian Gafton <gafton at redhat.com> 
+- auto rebuild in the new build environment (release 2)
+
+* Tue Feb  2 1999 Jeff Johnson <jbj at redhat.com>
+- update to 3.7.
+
+* Thu Dec 17 1998 Michael Maher <mike at redhat.com>
+- built package for 6.0
+
+* Fri Sep 11 1998 Jeff Johnson <jbj at redhat.com>
+- update to 2.6beta347
+
+* Sat Aug 15 1998 Jeff Johnson <jbj at redhat.com>
+- build root
+
+* Thu May 07 1998 Prospector System <bugs at redhat.com>
+- translations modified for de, fr, tr
+
+* Mon Oct 20 1997 Donnie Barnes <djb at redhat.com>
+- spec file cleanups
+
+* Thu Jul 10 1997 Erik Troan <ewt at redhat.com>
+- built against glibc
diff --git a/sources b/sources
index e69de29..3b08d2c 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+a4f0dd89f9b9334890464f687ddd9f50  gnuplot-4.4.2.tar.gz


More information about the scm-commits mailing list