Changes between Version 20 and Version 21 of PackagingInstructions


Ignore:
Timestamp:
Feb 9, 2010, 12:58:34 AM (14 years ago)
Author:
jmckenna
Comment:

add problematic version issue

Legend:

Unmodified
Added
Removed
Modified
  • PackagingInstructions

    v20 v21  
    167167
    168168Please ensure that you prepare a wiki page linked off [wiki:PackageListing] with info on your package.  It should include a pointer back to the upstream project, the name of the packager (a link to a page with contact info on the packager), and special notes on where things are placed within OSGeo4W.
     169
     170== Common Issues ==
     171
     172=== Problematic Package Versions ===
     173
     174You may find that your package may not be listed as the current version.  An example is the following, where the installer believes apache-2.2.8-3 is the latest version, but apache-2.2.14 is the correct latest version:
     175
     176{{{
     177
     178  apache-2.2.8-1.tar.bz2
     179  apache-2.2.8-2.tar.bz2
     180  apache-2.2.8-3.tar.bz2 
     181  apache-2.2.14-1.tar.bz2
     182
     183}}}
     184
     185To solve this you can specify the current and previous versions in the setup.hint file (see more info at http://cygwin.com/setup.html#setup.hint) such as:
     186
     187{{{
     188
     189  sdesc: "Apache Web Server"
     190  ldesc: "Apache Web Server"
     191  category: Web
     192  requires: msvcrt php
     193  curr: 2.2.14-1
     194  prev: 2.2.8-3
     195
     196}}}