Hello community,

here is the log from the commit of package fly for openSUSE:Factory checked in 
at 2018-03-14 19:40:18
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/fly (Old)
 and      /work/SRC/openSUSE:Factory/.fly.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "fly"

Wed Mar 14 19:40:18 2018 rev:17 rq:586464 version:2.0.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/fly/fly.changes  2012-05-31 17:04:53.000000000 
+0200
+++ /work/SRC/openSUSE:Factory/.fly.new/fly.changes     2018-03-14 
19:40:41.661671652 +0100
@@ -1,0 +2,27 @@
+Tue Mar 13 16:13:21 UTC 2018 - [email protected]
+
+- switch download to mirror site so that "localrun downloadfiles"
+  can work
+
+-------------------------------------------------------------------
+Tue Mar 13 13:04:00 UTC 2018 - [email protected]
+
+- remove buildrequires on freetype2-devel, libjpeg-devel
+  libpng-devel, xorg-x11, xorg-x11-devel, only gd library
+  is ever used.
+
+-------------------------------------------------------------------
+Sat Oct  7 23:06:37 UTC 2017 - [email protected]
+
+- Update to 2.0.1
+  * Fly tested for compatibility with gd version 2.0.35.
+  * Makefile updated for correct/new reference to freetype library.
+  * Has been tested on Linux/x86.
+- Drop fly-2.0.0-libs.patch (freetype lib reference fixed upstream)
+- Lint spec file
+- Fix a few warnings:
+  * Incorrect file endings
+  * Drop duplicate example from source
+  * Drop gif examples as gifs are not supported
+
+-------------------------------------------------------------------

Old:
----
  fly-2.0.0-libs.patch
  fly-2.0.0.tar.gz

New:
----
  fly-2.0.1.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ fly.spec ++++++
--- /var/tmp/diff_new_pack.1ebjYi/_old  2018-03-14 19:40:42.797631300 +0100
+++ /var/tmp/diff_new_pack.1ebjYi/_new  2018-03-14 19:40:42.817630590 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package fly
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,38 +16,43 @@
 #
 
 
-
 Name:           fly
-BuildRequires:  freetype2-devel gd-devel libjpeg-devel libpng-devel xorg-x11 
xorg-x11-devel
-Url:            http://martin.gleeson.com/fly/
+Version:        2.0.1
+Release:        0
+Summary:        A Script to Create PNGs
 License:        SUSE-Permissive
 Group:          Productivity/Graphics/Visualization/Other
-Version:        2.0.0_PNG
-Release:        773
-Summary:        A Script to Create PNGs
-Source:         fly-2.0.0.tar.gz
-Patch:          fly-2.0.0-libs.patch
+Url:            http://martin.gleeson.com/fly/
+# Mirror is used since martin gleeson (master site) rejects robot requests
+Source:         http://www.w3perl.com/fly/dist/%{name}-%{version}.tar.gz
 Patch1:         fly-2.0.0-gif.patch
-BuildRoot:      %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  dos2unix
+BuildRequires:  gd-devel
 
 %description
 Fly allows you to create images with script statements. It uses gdlib.
 
 %prep
-%setup -n %{name}-2.0.0
-%patch
+%setup -q
 %patch1
+# Gifs are not supported
+rm -fr examples/gif
+
+# Duplicate file in source
+rm -f examples/jpeg/small-end.fly
+
+# Use unix line endings
+dos2unix README examples/{jpeg,png,perl}/* examples/example.csh
 
 %build
-make CFLAGS="$RPM_OPT_FLAGS" CC="%__cc"
+make %{?_smp_mflags} CFLAGS="%{optflags}" CC="gcc" LIBS="-lgd"
 
 %install
-mkdir -p $RPM_BUILD_ROOT%{_prefix}/bin
-install -m 755 fly $RPM_BUILD_ROOT%{_prefix}/bin
+mkdir -p %{buildroot}%{_bindir}
+install -m 755 fly %{buildroot}%{_bindir}
 
 %files
-%defattr(-,root,root)
 %doc README examples doc
-%{_prefix}/bin/fly
+%{_bindir}/fly
 
 %changelog

++++++ fly-2.0.0.tar.gz -> fly-2.0.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fly-2.0.0/Makefile new/fly-2.0.1/Makefile
--- old/fly-2.0.0/Makefile      2001-11-25 09:39:28.000000000 +0100
+++ new/fly-2.0.1/Makefile      2009-06-17 03:24:05.000000000 +0200
@@ -4,13 +4,12 @@
 # If you already have gd installed, use the line below and comment out the
 # following line
 #       GD = /path/to/gd/directory
-GD = gd-1.8.4
-LIBDIRS = -L$(GD) -L/usr/local/web/lib
-INCDIRS = -I$(GD) -I/usr/local/web/include
+LIBDIRS = -L$(GD)
+INCDIRS = -I$(GD)
 CC = gcc
 
 CFLAGS = -O -pedantic -Wall $(INCDIRS) $(LIBDIRS)
-LIBS = -lgd -lm -lz -lttf -lpng -ljpeg #-lXpm 
+LIBS = -lgd -lm -lz -lfreetype -lpng -ljpeg #-lXpm 
 
 all: fly
 
@@ -21,7 +20,7 @@
        $(CC) -c $(CFLAGS) fly.c
 
 mostlyclean:
-       rm -f fly.o temp.gif core; cd $(GD); make clean;
+       rm -f fly.o temp.gif core; make clean;
 clean:
-       rm -f fly.o fly temp.gif core; cd $(GD); make clean;
+       rm -f fly.o fly temp.gif core; make clean;
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fly-2.0.0/README new/fly-2.0.1/README
--- old/fly-2.0.0/README        2001-11-25 09:39:28.000000000 +0100
+++ new/fly-2.0.1/README        2009-06-17 03:23:07.000000000 +0200
@@ -1,7 +1,7 @@
-This is fly, version 2.0.0.
+This is fly, version 2.0.1.
  
-See <URL:http://martin.gleeson.com/fly/> for documentation.
+See <http://martin.gleeson.net/fly/> for documentation.
  
-(c) Copyright Martin Gleeson and The University of Melbourne, 1994-2001.
+(c) Copyright Martin Gleeson and The University of Melbourne.
  
-Author: Martin Gleeson, <[email protected]>.
+Author: Martin Gleeson, <[email protected]>.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fly-2.0.0/doc/FAQ.html new/fly-2.0.1/doc/FAQ.html
--- old/fly-2.0.0/doc/FAQ.html  2001-11-25 09:39:28.000000000 +0100
+++ new/fly-2.0.1/doc/FAQ.html  2009-06-17 03:47:17.000000000 +0200
@@ -18,11 +18,7 @@
  <table class="maintable">
   <tr>
    <td class="maincontent">
-     <!-- 
====================================================================== -->
-     <hr class="divider" />
-     <h1>fly: frequently asked questions</h1>
-     <!-- 
====================================================================== -->
-     <hr class="divider" />
+    <h1>fly: frequently asked questions</h1>
     <ol>
 <li><p><b>Q: Can you send me a copy of fly via email?</b></p>
     <p>A: Not right now. Maybe later.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fly-2.0.0/doc/Y2K.html new/fly-2.0.1/doc/Y2K.html
--- old/fly-2.0.0/doc/Y2K.html  1970-01-01 01:00:00.000000000 +0100
+++ new/fly-2.0.1/doc/Y2K.html  2009-06-17 03:47:20.000000000 +0200
@@ -0,0 +1,63 @@
+<!DOCTYPE html 
+     PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+    "DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
+ <head>
+  <title>images on the fly: Y2K
+ </title>
+  <link rev="made" href="mailto:[email protected]"; />
+  <link rel="stylesheet" href="style.css" media="screen" />
+  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
+  <meta name="description"
+     content="Fly Y2K Statement." />
+
+  <meta name="robots"
+     content="nofollow" />
+</head>
+ <body>
+ <table class="maintable">
+  <tr>
+   <td class="maincontent">
+    <h1>fly: Y2K Statement</h1>
+    <P>Fly contains absolutely no date- or time-related information and will 
<B>not</B>
+be affected by the change of year from 1999 to 2000. Software that uses fly 
may or
+may not have date-related problems.
+</P>
+  </td>
+   <td class="mainmenutop">
+    <p class="navigation-centred"><a href="http://martin.gleeson.com/fly/";><img
+         src="fly-logo.gif" class="borderless" alt=" [fly] " width="157" 
height="52" /></a>
+   </p>
+    <ul class="navigation">
+     <li><a class="navigation" href="index.html">Home</a> </li>
+     <li><a class="navigation" href="installation.html">Download &amp; 
Installation.</a> </li>
+     <li><a class="navigation" href="using.html">How to use fly.</a> </li>
+     <li><a class="navigation" href="examples.html">Examples.</a> </li>
+     <li><a class="navigation" href="outthere.html">Fly on the Web.</a> </li>
+     <li><a class="navigation" href="FAQ.html">Frequently Asked Questions.</a> 
</li>
+     <li><a class="navigation" href="release-notes.html">Contributors and 
Release notes.</a> </li>
+     <li><a class="navigation" href="feedback.html">Feedback &amp; Mailing 
Lists.</a> </li>
+     <li><a class="navigation" href="copyright.html">Credits &amp; Copyright 
Information.</a></li>
+    </ul>
+   </td>
+ </tr>
+  <tr>
+   <td class="mainmenubottom">
+   <p class="pagedetails"><tt>Created: 21 June 1995<br />
+    Last modified: 24 November 2001<br />
+    Copyright &#169; 1995-2001 <a href="http://martin.gleeson.com/";
+    class="writtenurl">Martin Gleeson.</a></tt><br />
+    <small>&lt;URL:<a href="http://martin.gleeson.com/fly/Y2K.html";
+    class="writtenurl">http://martin.gleeson.com/fly/Y2K.html</a>&gt;</small>
+   </p>
+  </td>
+   <td>
+     <p class="rightfooter"><a 
href="http://validator.w3.org/check/referer";><img
+       src="http://www.w3.org/Icons/valid-xhtml10"; class="borderless"
+       alt="[Valid XHTML 1.0!]" height="31" width="88" /></a>
+    </p>
+  </td>
+ </tr>
+</table>
+</body>
+</html>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fly-2.0.0/doc/copyright.html 
new/fly-2.0.1/doc/copyright.html
--- old/fly-2.0.0/doc/copyright.html    2001-11-25 09:39:28.000000000 +0100
+++ new/fly-2.0.1/doc/copyright.html    2009-06-17 03:47:16.000000000 +0200
@@ -18,11 +18,7 @@
  <table class="maintable">
   <tr>
    <td class="maincontent">
-     <!-- 
====================================================================== -->
-     <hr class="divider" />
-     <h1>fly: credits &amp; copyright information</h1>
-     <!-- 
====================================================================== -->
-     <hr class="divider" />
+    <h1>fly: credits &amp; copyright information</h1>
      <p><b>fly</b> is copyright 1995-2001, Martin Gleeson and The University of
     Melbourne.  Permission is granted to copy and distribute this work free
     of charge provided that this notice remains intact. Credit for using
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fly-2.0.0/doc/documentation.html 
new/fly-2.0.1/doc/documentation.html
--- old/fly-2.0.0/doc/documentation.html        2001-11-25 09:39:28.000000000 
+0100
+++ new/fly-2.0.1/doc/documentation.html        2009-06-17 03:47:17.000000000 
+0200
@@ -1,91 +1,79 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
-<html>
- <head>
-  <title>GIFs on the fly: Documentation
- </title>
-  <link rev="made" href="mailto:[email protected]";>
-  <meta name="description"
-     content="Documentation for Fly.">
-
-  <meta name="robots"
-     content="nofollow">
-</head>
- <body bgcolor="#FFFFFF">
- <!-- ===================================================================== -->
- <hr size="2" noshade>
- <table border="0" width="100%" cellpadding="5" cellspacing="3">
-  <tr align="center" valign="middle">
-   <td><h1>fly: Documentation</h1>
-  </td>
-   <td><a href="http://www.unimelb.edu.au/fly/";><img
-       src="fly-logo.gif" border="0" hspace="5" vspace="5"
-       alt=" [fly] " width="157" height="52"></a>
-  </td>
- </tr>
-</table>
- <!-- ===================================================================== -->
- <hr size="2" noshade>
-<H2>Table of Contents</H2>
-<OL>
-   <LI><A HREF="installation.html">Installation of fly.</A>
-     <OL>
-        <LI><A HREF="installation.html#getting">Obtaining the source.</A>
-        <LI><A HREF="installation.html#installing">Installing fly.</A>
-     </OL></LI>
-    <LI><A HREF="using.html">How to use <B>fly</B>.</A>
-    <OL>
-        <LI><A HREF="using.html#invoking">Invoking fly.</A>
-        <LI><A HREF="using.html#command">The command file.</A>
-        <LI><A HREF="using.html#direct">Directives and explanations.</A>
-        <LI><A HREF="using.html#comment">Comments.</A>
-   </OL>
-   <LI><A HREF="examples.html">Examples.</A>
-   <LI><A HREF="outthere.html">Fly on the Web.</A>
-   <LI><A HREF="FAQ.html">Frequently Asked Questions.</A></LI>
-   <LI><A HREF="release-notes.html">Contributors and Release notes.</A></LI>
-
-</OL>
- <!-- ===================================================================== -->
- <hr size="2" noshade>
-
- <p align="center"><a href="index.html"><img src="nav-home.gif" border="0"
-    alt="[Home]" width="52" height="24"></a> <a
-    href="documentation.html"><img src="nav-docs.gif" border="0"
-    alt="[Documentation]" width="120" height="24"></a> <a
-    href="copyright.html"><img src="nav-copyright.gif" border="0"
-    alt="[Copyright]" width="86" height="24"></a> <a href="feedback.html"><img
-    src="nav-feedback.gif" border="0" alt="[Feedback]" width="80"
-    height="24"></a>
-</p>
-
- <!-- ===================================================================== -->
- <hr size="2" noshade>
-
-<pre>Created:       21 June 1995
-Last modified: 10 June 1999
-Access:        Unrestricted.
-Copyright &#169 1994-1998 <a href="http://www.unimelb.edu.au/";>The University 
of Melbourne.</a>
-&lt;URL:http://www.unimelb.edu.au/fly/&gt;</pre>
-
- <!-- ===================================================================== -->
- <hr size="1" noshade>
- <table border="0" width="100%">
-  <tr>
-   <td>
-    <address>
-    <a href="http://www.unimelb.edu.au/%7Egleeson/";>Martin Gleeson,</a>
-    <a href="mailto:[email protected]";>[email protected]</a>
-   </address>
-  </td>
-   <td align="RIGHT">
-    <p> <a href="http://www.unimelb.edu.au/html-check/validation-form.html";>
-        <img src="http://www.unimelb.edu.au/images/valid_html.4.0.gif";
-             alt="HTML 4.0 Checked!" border="0"></a>
-   </p>
-  </td>
- </tr>
-</table>
- <!-- ===================================================================== -->
- <hr size="2" noshade>
-</body>
-</html>
+<!DOCTYPE html 
+     PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+    "DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
+ <head>
+  <title>fly: Documentation
+ </title>
+  <link rev="made" href="mailto:[email protected]"; />
+  <link rel="stylesheet" href="style.css" media="screen" />
+  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
+  <meta name="description"
+     content="Documentation for Fly." />
+
+  <meta name="robots"
+     content="nofollow" />
+</head>
+ <body>
+ <table class="maintable">
+  <tr>
+   <td class="maincontent">
+    <h1>fly: Documentation</h1>
+    <h2>Table of Contents</h2>
+<ol>
+   <li><a href="installation.html">Download & Installation.</a>
+     <ol>
+        <li><a href="installation.html#getting">Obtaining fly.</a>
+        <li><a href="installation.html#installing">Installing fly.</a>
+     </ol></li>
+    <li><a href="using.html">How to use <b>fly</b>.</a>
+    <ol>
+        <li><a href="using.html#invoking">Invoking fly.</a>
+        <li><a href="using.html#command">The command file.</a>
+        <li><a href="using.html#direct">Directives and explanations.</a>
+        <li><a href="using.html#comment">Comments.</a>
+   </ol>
+   <li><a href="examples.html">Examples.</a>
+   <li><a href="outthere.html">Fly on the Web.</a>
+   <li><a href="FAQ.html">Frequently Asked Questions.</a></li>
+   <li><a href="release-notes.html">Contributors and Release notes.</a></li>
+
+</ol>
+  </td>
+   <td class="mainmenutop">
+    <p class="navigation-centred"><a href="http://martin.gleeson.com/fly/";><img
+         src="fly-logo.gif" class="borderless" alt=" [fly] " width="157" 
height="52" /></a>
+   </p>
+    <ul class="navigation">
+     <li><a class="navigation" href="index.html">Home</a> </li>
+     <li><a class="navigation" href="installation.html">Download &amp; 
Installation.</a> </li>
+     <li><a class="navigation" href="using.html">How to use fly.</a> </li>
+     <li><a class="navigation" href="examples.html">Examples.</a> </li>
+     <li><a class="navigation" href="outthere.html">Fly on the Web.</a> </li>
+     <li><a class="navigation" href="FAQ.html">Frequently Asked Questions.</a> 
</li>
+     <li><a class="navigation" href="release-notes.html">Contributors and 
Release notes.</a> </li>
+     <li><a class="navigation" href="feedback.html">Feedback &amp; Mailing 
Lists.</a> </li>
+     <li><a class="navigation" href="copyright.html">Credits &amp; Copyright 
Information.</a></li>
+    </ul>
+   </td>
+ </tr>
+  <tr>
+   <td class="mainmenubottom">
+   <p class="pagedetails"><tt>Created: 21 June 1995<br />
+    Last modified: 24 November 2001<br />
+    Copyright &#169; 1995-2001 <a href="http://martin.gleeson.com/";
+    class="writtenurl">Martin Gleeson.</a></tt><br />
+    <small>&lt;URL:<a href="http://martin.gleeson.com/fly/documentation.html";
+    
class="writtenurl">http://martin.gleeson.com/fly/documentation.html</a>&gt;</small>
+   </p>
+  </td>
+   <td>
+     <p class="rightfooter"><a 
href="http://validator.w3.org/check/referer";><img
+       src="http://www.w3.org/Icons/valid-xhtml10"; class="borderless"
+       alt="[Valid XHTML 1.0!]" height="31" width="88" /></a>
+    </p>
+  </td>
+ </tr>
+</table>
+</body>
+</html>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fly-2.0.0/doc/examples.html 
new/fly-2.0.1/doc/examples.html
--- old/fly-2.0.0/doc/examples.html     2001-11-25 09:39:28.000000000 +0100
+++ new/fly-2.0.1/doc/examples.html     2009-06-17 03:47:17.000000000 +0200
@@ -18,11 +18,7 @@
  <table class="maintable">
   <tr>
    <td class="maincontent">
-     <!-- 
====================================================================== -->
-     <hr class="divider" />
-     <h1>fly: examples</h1>
-     <!-- 
====================================================================== -->
-     <hr class="divider" />
+    <h1>fly: examples</h1>
      <p>  If you are using fly from within a CGI program, here are some 
examples:</p>
  <dl>
   <dt><strong>Perl</strong></dt>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fly-2.0.0/doc/feedback.html 
new/fly-2.0.1/doc/feedback.html
--- old/fly-2.0.0/doc/feedback.html     2001-11-25 09:39:28.000000000 +0100
+++ new/fly-2.0.1/doc/feedback.html     2009-06-17 03:47:17.000000000 +0200
@@ -18,18 +18,12 @@
  <table class="maintable">
   <tr>
    <td class="maincontent">
-     <!-- 
====================================================================== -->
-     <hr class="divider" />
-     <h1>fly: feedback and mailing lists</h1>
-     <!-- 
====================================================================== -->
-     <hr class="divider" />
+    <h1>fly: feedback and mailing lists</h1>
     <h2>Table of Contents</h2>
 <ol>
         <li><a href="#feedback">Feedback.</a></li>
         <li><a href="#lists">Mailing Lists.</a></li>
 </ol>
-<!-- ===================================================================== -->
-<hr class="divider" />
  <h2><a name="feedback">Feedback</a>
 </h2>
  <ul>
@@ -43,8 +37,6 @@
       already there, just drop me a note with the details.
  </li>
 </ul>
-<!-- ===================================================================== -->
-<hr class="divider" />
 <h2><a name="lists">Fly Mailing Lists</a>
 </h2>
 <p>  I've set up two mailing list for users of fly: <tt><b>fly-users</b></tt>
@@ -84,7 +76,7 @@
   <tr>
    <td class="mainmenubottom">
    <p class="pagedetails"><tt>Created: 21 June 1995<br />
-    Last modified: 24 November 2001<br />
+    Last modified: 1 December 2001<br />
     Copyright &#169; 1995-2001 <a href="http://martin.gleeson.com/";
     class="writtenurl">Martin Gleeson.</a></tt><br />
     <small>&lt;URL:<a href="http://martin.gleeson.com/fly/feedback.html";
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fly-2.0.0/doc/index.html new/fly-2.0.1/doc/index.html
--- old/fly-2.0.0/doc/index.html        2001-11-25 09:39:28.000000000 +0100
+++ new/fly-2.0.1/doc/index.html        2009-06-17 03:47:18.000000000 +0200
@@ -18,49 +18,41 @@
  <table class="maintable">
   <tr>
    <td class="maincontent">
-     <!-- 
====================================================================== -->
-     <hr class="divider" />
-     <h1>fly: create images on the fly</h1>
-     <!-- 
====================================================================== -->
-     <hr class="divider" />
+    <h1>fly: create images on the fly</h1>
     <p>Author:
  <a href="http://martin.gleeson.com/";>Martin Gleeson,</a>
  <a href="mailto:[email protected]";>[email protected].</a>
 </p>
- <!-- ====================================================================== 
-->
- <hr class="divider" />
  <p> <b>fly</b> is a C program that creates PNG, JPEG or GIF images on
     the fly from CGI and other programs. Using Thomas Boutell's
     <a href="http://www.boutell.com/gd/";>gd</a> graphics library
     for fast image creation, it provides a command-file interface for
     creating and modifying images.
 </p>
- <p> <strong>Current version: 2.0.0</strong> <em>25th November 2001</em>
+ <p> <strong>Current version: 2.0.1</strong> <em>17th June 2009</em>
 </p>
- <!-- ====================================================================== 
-->
- <hr class="divider" />
-<p>These pages are available from a number of mirror sites. Please
+ <p>These pages are available from a number of mirror sites. Please
    choose the one closest to you:
 </p>
  <p><img src="flag-us.gif" alt="" width="27" height="14" class="borderless" />
      USA: <a href="http://martin.gleeson.com/fly/";
-     ><tt>&lt;URL:http://martin.gleeson.com/fly/&gt;</tt></a> [Master Site]
+     ><tt>&lt;http://martin.gleeson.com/fly/&gt;</tt></a> [Master Site]
 </p>
  <p><img src="flag-au.gif" alt="" width="27" height="14" class="borderless" />
      Australia: <a href="http://members.optushome.com.au/martingleeson/fly/";
-     
><tt>&lt;URL:http://members.optushome.com.au/martingleeson/fly/&gt;</tt></a>
+     ><tt>&lt;http://members.optushome.com.au/martingleeson/fly/&gt;</tt></a>
 </p>
  <p><img src="flag-us.gif" alt="" width="27" height="14" class="borderless" />
      USA: <a href="http://www.w3perl.com/fly/";
-     ><tt>&lt;URL:http://www.w3perl.com/fly/&gt;</tt></a>
+     ><tt>&lt;http://www.w3perl.com/fly/&gt;</tt></a>
 </p>
  <p><img src="flag-jp.gif" alt="" width="27" height="14" class="borderless" />
      Japan (English): <a href="http://p4room.mda.or.jp/fly/";
-     ><tt>&lt;URL:http://p4room.mda.or.jp/fly/&gt;</tt></a>
+     ><tt>&lt;http://p4room.mda.or.jp/fly/&gt;</tt></a>
 </p>
  <p><img src="flag-jp.gif" alt="" width="27" height="14" class="borderless" />
      Japan (Japanese): <a href="http://p4room.mda.or.jp/fly/ja/";
-     ><tt>&lt;URL:http://p4room.mda.or.jp/fly/ja/&gt;</tt></a>
+     ><tt>&lt;http://p4room.mda.or.jp/fly/ja/&gt;</tt></a>
 </p>
  <p>Special thanks to Laurent Domisse for hosting the USA mirror site and roro 
(K. Akiyama)
     for the Japanese translation of the documentation and Japanese mirror site.
@@ -87,8 +79,8 @@
   <tr>
    <td class="mainmenubottom">
    <p class="pagedetails"><tt>Created: 21 June 1995<br />
-    Last modified: 24 November 2001<br />
-    Copyright &#169; 1995-2001 <a href="http://martin.gleeson.com/";
+    Last modified: 17 June 2009<br />
+    Copyright &#169; 1995-2009 <a href="http://martin.gleeson.com/";
     class="writtenurl">Martin Gleeson.</a></tt><br />
     <small>&lt;URL:<a href="http://martin.gleeson.com/fly/";
     class="writtenurl">http://martin.gleeson.com/fly/</a>&gt;</small>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fly-2.0.0/doc/installation.html 
new/fly-2.0.1/doc/installation.html
--- old/fly-2.0.0/doc/installation.html 2001-11-25 09:39:28.000000000 +0100
+++ new/fly-2.0.1/doc/installation.html 2009-06-17 03:47:18.000000000 +0200
@@ -18,40 +18,32 @@
  <table class="maintable">
   <tr>
    <td class="maincontent">
-     <!-- 
====================================================================== -->
-     <hr class="divider" />
-     <h1>fly: download &amp; installation</h1>
-     <!-- 
====================================================================== -->
-     <hr class="divider" />
+    <h1>fly: download &amp; installation</h1>
     <h2>Table of Contents</h2>
 <ol>
     <li><a href="#getting">Obtaining fly (source and binaries).</a></li>
     <li><a href="#installing">Installing <b>fly</b>.</a></li>
     <li><a href="#trouble">Troubleshooting</a></li>
 </ol>
-<!-- ===================================================================== -->
-<hr class="divider" />
 <h2><a name="getting">Obtaining fly</a>
 </h2>
-<p>  <b>fly</b> source code is available in the following formats:</p>
+<h3>fly source code</h3>
 <dl>
- <dt>unix tar, compressed:</dt>
- <dd><a href="dist/fly-2.0.0.tar.Z">fly-2.0.0.tar.Z</a> (160k)</dd>
 <dt>unix tar, GNU zipped:</dt>
-     <dd><a href="dist/fly-2.0.0.tar.gz">fly-2.0.0.tar.gz</a> (92k)</dd>
-<dt>pkzip:</dt>
-     <dd><a href="dist/fly-2.0.0.zip">fly-2.0.0.zip</a> (100k)</dd>
+     <dd><a href="dist/fly-2.0.1.tar.gz">fly-2.0.1.tar.gz</a> (58k)</dd>
 </dl>
 <p>You will also need to download and install <a
-   href="http://www.boutell.com/gd/";>gd</a> (fly has been tested with gd
-   1.8.4), which also requires <a href="http://www.libpng.org/pub/png/";
-   >libpng</a>, <a href="http://www.gzip.org/zlib/";>zlib</a> and, if desired,
-   <a href="http://www.ijg.org/";>jpeg 6b or later.</a>  If you need to
-   create GIF images you will need to use Philip Warner's <a
-   href="http://www.rime.com.au/gd/";>patched version of gd 1.8.4</a>.
-</p>
-<!-- ===================================================================== -->
-<hr class="divider" />
+   href="http://www.libgd.org/";>gd</a> (fly has been tested with gd
+   2.0.35).</p>
+ <h3>fly binaries</h3>
+ <dl>
+  <dt>Linux 2.2-PPC (LinuxPPC, using gd1.8.4 with GIF support):</dt>
+  <dd>
+   <p><a href="dist/fly-2.0.0.Linux-2.2.15pre3-ppc.tar.gz"
+      >fly-2.0.0.Linux-2.2.15pre3-ppc.tar.gz</a> (75k)</p>
+   <p>Note! This will not run on intel-based PCs running Linux.</p>
+ </dd>
+</dl>
 <h3>Older Versions:</h3>
 <h4>1.6.5</h4>
 <dl>
@@ -66,8 +58,6 @@
      ftp://ftp.unimelb.edu.au/pub/www/tools/unix/fly/fly-1.4.2.vms-src.tar.gz
      </a> (51k)</dd>
 </dl>
-<!-- ===================================================================== -->
-<hr class="divider" />
 <p>  Precompiled binaries of older versions of fly are available for some
 operating systems:
 </p>
@@ -157,11 +147,12 @@
      (393k)</dd>
 </dl>
 <p>  HP/UX binaries are available from the HP/UX Porting and Archive
-     Centre at <a href="http://hpux.csc.liv.ac.uk/";
-     >&lt;URL:http://hpux.csc.liv.ac.uk/&gt;</a>. Search for &quot;fly&quot;
+     Centre at <a href="http://hpux.cs.utah.edu/";
+     >&lt;http://hpux.cs.utah.edu/&gt;</a>. Search for &quot;fly&quot;
      and look under the X11/Graphics section.
 </p>
-<p>  http://osx.hyperjeff.net/articles/Fly.html
+<p>  Jeff has a page at <a href="http://osx.hyperjeff.net/articles/Fly.html";
+     >&lt;http://osx.hyperjeff.net/articles/Fly.html&gt;</a> on getting fly 
running on Mac OS X.
 </p>
  <!-- NOT CURRENTLY AVAILABLE
 <h3><a name="email"> via E-Mail</a>
@@ -184,8 +175,6 @@
      the right way.
 </p>
 -->
-<!-- ===================================================================== -->
-<hr class="divider" />
 <h2><a name="installing">Installing fly</a>
 </h2>
 <p>  If you have obtained <b>fly-<i>n</i>.tar.Z</b> or
@@ -209,8 +198,6 @@
           giving you an executable called <b>fly</b>
      </dd>
 </dl>
-<!-- ===================================================================== -->
-<hr class="divider" />
 <p>  If you have obtained the NT/Win95 zip file, <b>fly-<i>n</i>.WinNT.zip</b>,
      enter the following command at the DOS prompt:
 </p>
@@ -230,8 +217,6 @@
 <p>  If you have obtained the NT/Win95 binary, <b>fly-<i>n</i>.exe</b>, no
      installation is necessary.
 </p>
-<!-- ===================================================================== -->
-<hr class="divider" />
 <p>  If you obtained one of the precompiled binaries, enter the following
      commands:
 </p>
@@ -241,13 +226,11 @@
      <kbd>tar xfv fly-<i>n</i>.<i>OS</i>.tar</kbd></dd>
 </dl>
 
-<!-- ===================================================================== -->
-<hr class="divider" />
 <h2> <a name="trouble">Troubleshooting</a></h2>
 <p>  If you are attempting to compile from source and don't have gcc, you
      will get an error message along the lines of <tt>'gcc: command not
      found'</tt> and make will exit. Just change the lines in the Makefile
-     and the Makefile in the gd1.2 directory that read:<br />
+     and the Makefile in the gd directory that read:<br />
      <tt>CC = gcc</tt><br />
      to:<br />
      <tt>CC = cc</tt><br />
@@ -275,8 +258,8 @@
   <tr>
    <td class="mainmenubottom">
    <p class="pagedetails"><tt>Created: 21 June 1995<br />
-    Last modified: 25 November 2001<br />
-    Copyright &#169; 1995-2001 <a href="http://martin.gleeson.com/";
+    Last modified: 17 June 2009<br />
+    Copyright &#169; 1995-2009 <a href="http://martin.gleeson.com/";
     class="writtenurl">Martin Gleeson.</a></tt><br />
     <small>&lt;URL:<a href="http://martin.gleeson.com/fly/installation.html";
     
class="writtenurl">http://martin.gleeson.com/fly/installation.html</a>&gt;</small>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fly-2.0.0/doc/outthere.html 
new/fly-2.0.1/doc/outthere.html
--- old/fly-2.0.0/doc/outthere.html     2001-11-25 09:39:28.000000000 +0100
+++ new/fly-2.0.1/doc/outthere.html     2009-06-17 03:47:18.000000000 +0200
@@ -18,11 +18,7 @@
  <table class="maintable">
   <tr>
    <td class="maincontent">
-     <!-- 
====================================================================== -->
-     <hr class="divider" />
-     <h1>fly: Fly on the web.</h1>
-     <!-- 
====================================================================== -->
-     <hr class="divider" />
+    <h1>fly: Fly on the web.</h1>
      <p>  A selection of web sites using fly: </p>
  <ul>
     <li><a href="http://www.unimelb.edu.au/pwebstats/";>pwebstats</a>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fly-2.0.0/doc/release-notes.html 
new/fly-2.0.1/doc/release-notes.html
--- old/fly-2.0.0/doc/release-notes.html        2001-11-25 09:39:28.000000000 
+0100
+++ new/fly-2.0.1/doc/release-notes.html        2009-06-17 03:47:19.000000000 
+0200
@@ -18,18 +18,12 @@
  <table class="maintable">
   <tr>
    <td class="maincontent">
-     <!-- 
====================================================================== -->
-     <hr class="divider" />
-     <h1>fly: contributors and release notes</h1>
-     <!-- 
====================================================================== -->
-     <hr class="divider" />
+    <h1>fly: contributors and release notes</h1>
     <h2>Table of Contents</h2>
 <ol>
     <li><a href="#contrib">Contributors.</a></li>
     <li><a href="#notes">Release notes.</a></li>
 </ol>
-<!-- ===================================================================== -->
-<hr class="divider" />
 <h2><a name="contrib">Contributors</a>
 </h2>
 <p>Claus Hofmann &lt;[email protected]&gt; - see
@@ -82,18 +76,22 @@
 <p>roro (K. Akiyama) &lt;[email protected]&gt; - Japanese translation
     of the documentation and Japanese mirror site.
 </p>
-<!-- ===================================================================== -->
-<hr class="divider" />
 <h2><a name="notes">Release notes</a>
 </h2>
 <dl>
+<dt> Version: <b>2.0.1 17th June 2009</b></dt>
+<dd>
+    <p>Fly tested for compatibility with gd version 2.0.35. Makefile updated
+       for correct/new reference to freetype library. Has been tested on 
Linux/x86.
+   </p>
+</dd>
 <dt> Version: <b>2.0.0 25th November 2001</b></dt>
 <dd>
     <p>Fly now uses gd version 1.8.4, providing support for PNG and JPEG
        images. GIF support is still available if you use Philip Warner's
        <a href="http://www.rime.com.au/gd/";>patched version of gd 1.8.4</a>.
        Please note: depending on where you live, this may infringe patents.
-    </p>
+   </p>
     <p>I will no longer be able to compile a large range of binaries for fly.
        I no longer have direct access to the range of platforms I once did
        and more importantly, I have two young children who (gladly) consume
@@ -353,8 +351,8 @@
   <tr>
    <td class="mainmenubottom">
    <p class="pagedetails"><tt>Created: 21 June 1995<br />
-    Last modified: 24 November 2001<br />
-    Copyright &#169; 1995-2001 <a href="http://martin.gleeson.com/";
+    Last modified: 17 June 2009<br />
+    Copyright &#169; 1995-2009 <a href="http://martin.gleeson.com/";
     class="writtenurl">Martin Gleeson.</a></tt><br />
     <small>&lt;URL:<a href="http://martin.gleeson.com/fly/release-notes.html";
     
class="writtenurl">http://martin.gleeson.com/fly/release-notes.html</a>&gt;</small>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fly-2.0.0/doc/using.html new/fly-2.0.1/doc/using.html
--- old/fly-2.0.0/doc/using.html        2001-11-25 09:39:28.000000000 +0100
+++ new/fly-2.0.1/doc/using.html        2009-06-17 03:47:20.000000000 +0200
@@ -18,11 +18,7 @@
  <table class="maintable">
   <tr>
    <td class="maincontent">
-     <!-- 
====================================================================== -->
-     <hr class="divider" />
-     <h1>fly: how to use fly</h1>
-     <!-- 
====================================================================== -->
-     <hr class="divider" />
+    <h1>fly: how to use fly</h1>
     <h2>Table of Contents</h2>
 <ol>
         <li><a href="#invoking">Invoking fly.</a></li>
@@ -30,8 +26,6 @@
         <li><a href="#direct">Directives and explanations.</a></li>
         <li><a href="#comment">Comments.</a></li>
 </ol>
-<!-- ===================================================================== -->
-<hr class="divider" />
 <h3><a name="invoking">Invoking fly</a></h3>
 
 <p>  The standard manner used to invoke <b>fly</b> is:<br />
@@ -46,8 +40,6 @@
     <li>A quick reference to directives may be seen by using the <kbd>-h</kbd>
         switch.</li>
 </ul>
-<!-- ===================================================================== -->
-<hr class="divider" />
 <h3> <a name="command">The command file</a>
 </h3>
 <p>  The command file uses a number of directives. It must start with
@@ -67,7 +59,7 @@
          <dd>OR</dd>
     <dt><kbd>type gif</kbd></dt>
 </dl>
-<p>  After the initial command, any of the commands below may be used.<br />
+<p>  After the initial commands, any of the commands below may be used.<br />
 </p>
 <p>  To create more than one image from a command file, use the directive
      <b><kbd>end</kbd></b>, followed by either
@@ -89,8 +81,6 @@
          <li>Arc sweeps are <b>clockwise.</b>
         </li>
      </ul>
-<!-- ===================================================================== -->
-<hr class="divider" />
 <h4><a name="direct">Directives &amp; explanations</a>
 </h4>
 <dl>
@@ -321,9 +311,7 @@
            </p>
        </dd>
 </dl>
- <!-- ===================================================================== -->
-<hr class="divider" />
- <h4> <a name="comment">Comments in the command file</a>
+  <h4> <a name="comment">Comments in the command file</a>
 </h4>
  <p>At any point in the command file, you can insert
     a comment line starting with &quot;#&quot;.
@@ -362,7 +350,7 @@
   <tr>
    <td class="mainmenubottom">
    <p class="pagedetails"><tt>Created: 21 June 1995<br />
-    Last modified: 24 November 2001<br />
+    Last modified: 1 December 2001<br />
     Copyright &#169; 1995-2001 <a href="http://martin.gleeson.com/";
     class="writtenurl">Martin Gleeson.</a></tt><br />
     <small>&lt;URL:<a href="http://martin.gleeson.com/fly/using.html";
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fly-2.0.0/fly.c new/fly-2.0.1/fly.c
--- old/fly-2.0.0/fly.c 2001-11-25 09:39:28.000000000 +0100
+++ new/fly-2.0.1/fly.c 2009-06-17 03:29:36.000000000 +0200
@@ -63,10 +63,10 @@
 **  Strings for usage and quick reference
 ******************************************************************************/
 
-char *version = "2.0.0";
+char *version = "2.0.1";
 char *usage = "Usage : fly [-h] [-q] [-i inputfile] [-o outputfile]";
 
-char *help = "See <URL:http://martin.gleeson.com/fly/> for documentation.\n\
+char *help = "See <http://martin.gleeson.net/fly/> for documentation.\n\
 \n\
 Quick Reference to Directives: \n\
 \n\
Binary files old/fly-2.0.0/fly.o and new/fly-2.0.1/fly.o differ


Reply via email to