Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

wcslib-doc-8.6-1.3 RPM for noarch

From OpenSuSE Ports Tumbleweed for noarch

Name: wcslib-doc Distribution: openSUSE Tumbleweed
Version: 8.6 Vendor: openSUSE
Release: 1.3 Build date: Thu May 28 10:35:05 2026
Group: Documentation/Other Build host: reproducible
Size: 7882076 Source RPM: wcslib-8.6-1.3.src.rpm
Packager: http://bugs.opensuse.org
Url: https://www.atnf.csiro.au/computing/software/wcs/wcslib
Summary: Documentation for wcslib library
This package contains documentation and help files for wcslib library.

Provides

Requires

License

LGPL-3.0-or-later

Changelog

* Thu May 28 2026 Ben Greiner <code@bnavigator.de>
  - Downgrade to 8.6
    * The Claude AI assisted version 8.7 is buggy and crashes
      Astropy for example: gh#astropy/astropy#19728
* Wed May 13 2026 Dirk Müller <dmueller@suse.com>
  - update to 8.7:
    * - In wcshdo_util(), a static helper function for wcshdo(),
      fixed a bug that would have caused the keycomment to be
      truncated to a single character when keyvalues exceeded 20
      characters.
    * Fixed various memory-related issues, such as potential
      memory leaks on error return, potentially dereferencing null
      pointers, incorrect handling of failed calls to realloc(),
      etc. in wcsprt(), wcssub(), wcstrim(), wcspcx(), disset(),
      discpy(), diswarp(), and various of the static distortions
      helper functions.
    * In wcsprintf(), call va_end() if memory allocation fails in
      order to release the memory allocated by va_start()
    * In wcserr_clear(), ensure that errp is non-NULL before
      dereferencing it.
    * In tabini(), check that the total number of elements in the
      coordinate array does not exceed INT_MAX.
    * In wcsinit(), lininit(), and disinit(), check that the
      value provided for naxis is not too large.  Negative values also
      now return WCSERR_BAD_PARAM rather than WCSERR_MEMORY.
    * In conjunction with the above, global variables that record
      various limits are now declared in a new header file, wcslimits.h.
      Their values are set in wcs.c, including a limit of 31 for NAXIS
      and also the default limits for the number of PVi_ma, PSi_ma, DPja,
      and DQia keywords, which may be changed.
    * In cylfix(), use the maximum value of NAXIS from wcslimits.h.
    * Likewise, in wcsprintf() and wcsfprintf(), replaced use of
    * vsprintf() with vsnprintf().
    * In linx2p(), replaced two uses of goto statements to work
      around an apparent compiler bug.  Reported by Cyril Richard.
    * PGSBOX now accounts for the possibility that the coordinate
      system is not defined outside the frame.  Previously this was
      important for determining axis crossings and hence axis
      labelling.  However, it is not valid for -TAB coordinates in
      FITS for which extrapolation is strictly limited to half a pixel.
* Thu Jan 01 2026 Ben Greiner <code@bnavigator.de>
  - Update to 8.5
    [#]# C library
    * In linp2x(), quarantine NaN elements of the pixel coordinate
      vector from infecting non-NaN elements in the case where the
      PCij matrix is diagonal (noting that zero * NaN = NaN).
      Likewise in linx2p(). Reported by Thomas Robitaille with patch.
    * Quelled nuisance compiler warnings in wcspih() and wcsbth().
  - WCSLIB version 8.4
    [#]# C library
    * Fixed some problems in wcs_chksum() and changed
      wcs_fletcher32() to conform to the standard computation.
    * New test program, twcs_pthread.
  - WCSLIB version 8.3
    [#]# C library
    * Until now, wcsset() always operated unconditionally - the
      wcsprm struct was set or reset regardless of its current state.
      Likewise the various *set() functions for the other structs.
      However, in some situations, particularly in threaded
      applications, it is desirable to have wcsset(), etc., check the
      state of the struct and return immediately if it has already
      been set.  This may now be accomplished by setting wcsprm::flag
      == 1 (instead of 0) before calling wcsset().  Likewise for the
      other structs.  This sets a "bypass" flag within the struct
      itself.
    * A new function, wcsenq(), queries the state of the wcsprm
      struct, specifically whether WCSLIB is managing its memory,
      whether the struct has been set, whether or not it is in bypass
      mode, and whether it is self-consistent.  There are
      corresponding functions for the other structs: celenq(),
      disenq(), linenq(), prjenq(), spcenq(), and tabenq().  Please
      refer to the WCSLIB manual.
    * In the C test suite, modified twcs to test wcsenq() and also
      wcsset() in bypass mode.
    * Quelled nuisance compiler warnings in wcsbth(), wcspih(),
      wcsp2s(), and wcshdo().
    [#]# Fortran wrappers
    * Interprocedural Link Time Optimization (LTO), when used with
      the strict compiler options required by some Linux
      distributions, may place more stringent requirements on mixing
      code written in different languages.  Specifically, as far as
      WCSLIB is concerned, this applies for Fortran calling C (or
      vice versa) where the function parameter list includes a
      character variable.
      It is important to note that the existing Fortran wrappers work
      as they did before, with or without LTO, that issues only arise
      when strict LTO compiler options are enabled, and that wrappers
      without a character argument are unaffected.
      Fortran 2003 introduced the "language-binding-spec" attribute
      using the keyword BIND.  The INTERFACE block for a procedure
      may be given the BIND(C) attribute to specify the interface of
      an external, interoperable C function.  Use of this BIND(C)
      attribute is now virtually mandated by LTO (with said strict
      compiler options).
      The WCSLIB Fortran wrappers are written in C, e.g. wcs_f.c,
      with a Fortran-compliant interface, and these C functions are
      intended to be called directly from Fortran applications.
      Three options were considered for achieving strict LTO
      compliance:
      1) Require that all existing Fortran applications be modified
      to conform to the Fortran 2003 language binding
      specification via the addition of INTERFACE blocks bearing
      the BIND(C) attribute for the existing wrappers.
      This option is clearly untenable.
      2) Rewrite the WCSLIB Fortran wrappers completely in Fortran
      2003.
      It seems that this option may be tenable as the BIND(C)
      spec allows for C-equivalent derived types.  However, it
      would require rewriting all of the wrappers, 5 kloc of C
      code, in Fortran 2003 code that must directly manipulate
      the internals of all of the WCSLIB structs.
      3) Introduce a new layer of thin wrappers, written in Fortran
      2003, that do nothing more than define the INTERFACE to
      the existing wrappers written in C and then call them.
      Essentially this extracts the changes required in option
      (1) into a new set of wrappers.
      This was the option chosen on the basis of simplicity -
      only specific wrappers, namely those with character
      arguments, need be rewrapped.  It also minimises WCSLIB's
      exposure to Fortran 2003, particularly for the sake of
      legacy astronomical packages such as Miriad and AIPS.
      Further, it admits the possibility of the optional use of
      this extra layer of wrappers.
      The new Fortran 2003 wrappers reside in the Fortran
      subdirectory in files by the name of *_bindc.f90.  By default
      they are not compiled and not used.  To use them, WCSLIB must
      be configure'd with the new '--with-bindc' option.  This causes
      the new BIND(C) wrappers to be compiled, and the names of the
      old wrappers to be changed, for example from wcspih_() to
      wcspih_c().
      LTO compile problems reported by Eli Schwartz, Gentoo
      maintainer.
    * Added wrappers for celenq(), disenq(), linenq(), prjenq(),
      spcenq(), tabenq(), and wcsenq().
    * In the Fortran test suite, modified twcs to test WCSENQ and
      also WCSSET in bypass mode.
    [#]# PGSBOX
    - Changes mirroring those described above for the Fortran
      wrappers, the difference being that here we have a mix of C
      calling Fortran (e.g. cpgsbox() calling PGSBOX) as well as
      Fortran calling C (e.g. PGWCSL calling pgwcsl_c()).  As with
      the Fortran wrappers, the new configure option, '--with-bindc',
      chooses whether to use the new BIND(C) PGSBOX wrappers.
    [#]# Installation
    * Added '--with-bindc' as a new configure option (or BINDC=yes
      from the environment) to signal the use of the new strictly
      LTO-compliant Fortran wrappers.  See above.
    * Modified 'configure' to report the version of gcc used.
      Likewise, for the 'show' rule in makedefs.
* Sat Dec 09 2023 Ben Greiner <code@bnavigator.de>
  - Update to 8.2.2
    * In prj.c, a number of variables with global scope that are only
      used internally were declared static to avoid namespace
      conflicts arising in Link Time Optimization (LTO) builds of the
      Rwcs wrappers.  This is a patch release as it does not affect
      the library itself other than in localising some symbols that
      were never meant to be global. Reported by Rodrigo Carrizo with
      patch.
      Likewise for an internally used helper function, prjoff().
      Likewise for a handful of variables in cel.c, dis.c, lin.c,
      tab.c, wcs.c, wcsfix.c, and wcshdr.c.
  - WCSLIB version 8.2
    * In wcshdo(), fixed character buffer overflows in the comment
      string for the longitude and latitude axes triggered by some
      projections, and also the formatting for generic coordinate
      systems.  Reported by Shu Niu.
  - WCSLIB version 8.1
    * Changes in the contents of the auxprm struct (in 8.0 beta)
      necessitated incrementing the major version number from 7 to 8,
      i.e. the ABI changed. Took the opportunity for minor tweaks to
      wcsprm and disprm.
    [#]# C library
    * In disprm, changed the order of maxdis and totdis to ensure
      correct alignment of doubles on 32-bit machines.
    [#]# Fortran wrappers
    * Match changes to disprm in the C library.
    * In the Fortran test suite, inserted a brief pause between plots
      in tprj2, tspc, and tpih2, which have long been a blur.
    [#]# PGSBOX
    * Quell innocuous compiler warnings from gfortran 12.1.0.
      Inserted a brief pause between plots in pgtest and cpgtest.
  - WCSLIB version 8.0 beta
    * Beta test version, not publically released.
    [#]# C library
    * Support planetary keywords A_RADIUS, B_RADIUS, C_RADIUS, BLON_OBS,
      BLAT_OBS, and BDIS_OBS in auxprm by analogy with the Solar keywords
      added at 7.1.  Requested by Chiara Marmo (Observatoire de Paris).
    * Added wcsprm::time to the wcsprm struct to record the TIME axis
      number (along with lng, lat, and spec).
    * Fixed a bug in wcspih() and wcsbth() where trailing blanks were not
      stripped from string keyvalues.  Reported by Naveen Dukiya.
      Changed test program tdis3 to test this.
    * Fixed a problem affecting thread safety in disp2x(), disx2p(), and
      diswarp().  Reported by Mohammad Akhlaghi.
    [#]# Fortran wrappers
    * Match changes to the C library supporting planetary keywords in
      auxprm and the addition of wcsprm::time.
* Tue Oct 11 2022 Asterios Dramis <asterios.dramis@gmail.com>
  - Update to version 7.12:
    * C library
    - In wcsp2s() and wcss2p(), fixed handling of status returns
      from linp2x() and linx2p() relating to distortion functions,
      specifically with respect to setting the stat[] vector.
      Reported by Sepideh Eskandarlou (via Mohammad Akhlaghi).
    - When extracting by axis type, wcssub() did not account for
      the possibility of time axes with -TAB or -LOG algorithm
      codes. Reported by Mihai Cara.
    * Utilities
    - Fixed a bit of confusion in wcsgrid relating to cfitsio file
      opening syntax, e.g. file.fits+1.  It now matches wcsware in
      that regard.
    - Portability fix - need to define _POSIX_C_SOURCE as 199506L
      in order to get the declaration of localtime_r().  Reported
      by Marc Espie.
    * User manual
    - Documentation generation moved to doxygen 1.9.5 (was 1.9.3).
* Thu May 05 2022 Asterios Dramis <asterios.dramis@gmail.com>
  - Update to version 7.11:
    * C library
    - In tabini(), the default index array should contain a
      1-relative sequence: {1, 2,... N}.  Previously it was
      0-relative.
    From version 7.10:
    * C library
    - In tabcpy(), collapse degenerate table index arrays if they
      are collapsed in the source struct.  Minor fix for output
      formatting in tabprt().
    - In the C test suite, added calls to wcstrim() in twcsfix to
      tidy the structs before printing.
    * Utilities
    - The default option in wcsware now trims the wcsprm struct
      before printing it.  Use the '-p' option to print the
      untrimmed struct.
    From version 7.9:
    * C library
    - In wcsset(), bug fix for identifying time coordinate axes.
      Reported by Mihai Cara with patch.
    From version 7.8:
    * C library
    - In wcssub(), bug fix for tabular coordinates that change axis
      number, thus requiring tabprm::map to be updated.  Reported
      by Mihai Cara with patch.
      Also in wcssub():
    - check that all axes of a multi-dimensional table are
      extracted together,
    - fixed potential memory leaks for tabular coordinate axes
      when an attempt to subimage non-separable axes fails,
    - the error messages for non-separable coordinate systems are
      generally more informative,
    - subimage extraction by coordinate type now recognises time
      coordinate axis types via WCSSUB_TIME.
    - wcsset() now identifies time coordinate axes in
      wcsprm::types.
    - Extended test program twcssub to test the above
      modifications.
    * Installation
    - Bug fix in the utils makefile for creating $(MANDIR)/man1.
      Reported by Aleksander Kurek.
    - Bug fix in the Fortran makefile for compiling and using
      'tofits'. Reported by Stefan Br�ns.
    * User manual
    - Documentation generation moved to doxygen 1.9.3 (was 1.9.1).
  - Removed 0001-Fix-utils-tofits-location-in-Fortran-GNUmakefile.patch
    (fixed upstream).
  - Don't use %configure macro for building i586 package (it makes
    tests fail).
* Wed Nov 10 2021 Stefan Brüns <stefan.bruens@rwth-aachen.de>
  - Update to version 7.7, for details see:
    https://www.atnf.csiro.au/people/mcalabre/WCS/CHANGES
  - Remove workarounds for gfortran 10/11
  - Add 0001-Fix-utils-tofits-location-in-Fortran-GNUmakefile.patch
* Wed Jun 16 2021 Asterios Dramis <asterios.dramis@gmail.com>
  - Update to version 7.6:
    * C library
    - Bug fix in tabs2x() triggered for 1-dimensional coordinate
      lookup tables on axes > 1.  Reported by Mihai Cara.
    - In datfix(), don't return status 0 if no change was made (fix
      for change made at release 7.4).  Reported by Derek Homeier.
    - New function wcspcx() in the wcsfix suite regularizes the
      linear transformation component of a coordinate description
      to make it more human-readable.  It decomposes CDi_ja into
      PCi_ja and CDELTia in such a way that CDELTia forms
      meaningful scaling parameters, often leaving an orthogonal or
      near-orthogonal matrix.  Optionally, it can then permute rows
      of this matrix to unscramble axis permutations.
      A test header may be generated from wcspcx.keyrec for input
      to wcsware (not exercised as part of the standard test
      suite).
    - New function wcstrim() frees memory allocated by wcsinit()
      for arrays in a wcsprm struct that remain unused after the
      struct has been set up.
    - New functions wcssize(), auxsize(), tabsize(), linsize(),
      dissize(), celsize(), prjsize(), spcsize(), and wcserr_size()
      compute the total size of the relevant structs, including
      allocated memory.
    - In the C test suite, inserted a brief pause in tprj2 and
      tspc, which otherwise have now become a blur.
    * Fortran wrappers
    - Added wrappers for wcspcx(), wcstrim(), wcssize(), auxsize(),
      tabsize(), linsize(), dissize(), celsize(), prjsize(),
      spcsize(), and wcserr_size().
    * Utilities
    - Added -c, -cp, -C, and -Cp options to wcsware to apply
      wcspcx() in a variety of ways, -m to apply wcstrim(), and -z
      to report the total size of the wcsprm struct with a
      breakdown of the sizes of its constituent structs.
    - Fixed compiler warnings for sundazel (portability issue).
    * Installation
    - Upped the required version of Flex to 2.6.0 (was 2.5.9).
      Problems with Flex 2.5.39 reported by Derek Homeier.
      Also added '--disable-flex' as a new configure option to
      force the use of the pre-generated Flex sources.
    From version 7.5:
    * The C code in WCSLIB is moving piecemeal to the C99 standard.
      In fact, various indispensible C99 constructs have been used in
      WCSLIB for many years: the long long int data type (in
      fitshdr() only); stdint.h, inttypes.h, and the use of PRI
      formatting control (in wcsprintf(), which is widely used by the
      library); and the C99-extended library function vsnprintf()
      (used by wcserr for a decade).  Flex-generated C code also uses
      C99 extensions, though with workarounds if they are not
      available.
      Except in the header prologues, which are formatted in a special
      way for generating the user manual, comments were changed en
      masse to C99 style in release 7.3.1, and variable declarations
      in code that I have occasion to modify will transition to the
      more general placement allowed by C99. However, there are no
      plans to use any of the more esoteric features of C99.
    * C library
    - New function, wcsccs(), changes the celestial coordinate
      system of a wcsprm struct, for example, from equatorial to
      galactic coordinates. The parameters that define the
      spherical coordinate transformation must be provided.  This
      allows WCSLIB to provide this functionality without needing
      to know anything about specific celestial coordinate systems,
      and has the advantage of making the routine completely
      general.  Requested by Mohammad Akhlaghi.
      Modified test program twcsfix also to test wcsccs().
    - Fixed a problem common to all of the Flex code (fitshdr,
      wcsbth, wcspih, wcsulex, and wcsutrn) that made it
      thread-unsafe.  Reported by Cyril Richard.
      Added a new test program, tpthreads, to test thread safety.
      It is only used for code development, and not exercised as
      part of the  standard test suite.
    - In fitshdr(), fixed a problem that potentially could arise on
      systems where sizeof(long long int) is greater than 8 (64
      bits).
    * Fortran wrappers
    - Match changes to the C library: added a wrapper for wcsccs(),
      and modified twcsfix.f.
    - Because null addresses cannot be passed to functions in
      Fortran, wcssub_() now interprets *nsub == -1 && *axes == -1
      as a signal to do a deep copy of one wcsprm struct to
      another.
    * Utilities
    - New utility, sundazel, computes the local time of the Sun's
      passage through the specified apparent longitude or latitude
      in a user-defined coordinate system.  It can also perform
      several other Solar related calculations.  (It is unrelated
      to FITS WCS, and does not use WCSLIB.)
    * Installation
    - Added an 'uninstall' rule to the makefiles.  Suggested by
      Cyril Richard.
* Mon Mar 01 2021 Asterios Dramis <asterios.dramis@gmail.com>
  - Update to version 7.4:
    * C library
    - In wcshdo(), fixed a bug introduced in release 5.9 that
      potentially caused loss of numerical precision in the
      sprintf() formatting of floating point keyvalues. This was
      triggered when a large range of CRPIXja, PCi_ja, or CDELTia
      values (as three separate groups) were formatted using an 'f''
      format descriptor, the range not being so large that it would
      have forced wcshdo() to revert to 'E' format. Reported by
      Mohammad Akhlaghi.
      Also in wcshdo(), fixed a bug introduced in release 7.1 that
      caused the coefficients of the TPD distortion function not to
      be written to the header. TPD and Polynomial distortion
      function headers will now always include the DPja.DOCORR
      keyword. Reported by Derek Homeier with patch.
    - In wcsset(), fixed a segv generated in attempting to report a
      non-standard units string with wcserr message reporting
      disabled. Reported by Mohammad Akhlaghi.
      In wcsutrne(), allow 'Angstroms' and 'angstroms' as
      additional synonyms for 'Angstrom'.
    - In datfix(), ensure that 0 is returned if an informational
      message is set in wcsprm::err. Consequent on feedback
      independently from Mihai Cara and Bruce Merry.
      Clarified that informational messages may be set in
      wcsprm::err for returns of 0 from datfix(), obsfix(),
      unitfix(), and spcfix().
    * User manual
    - Added cautions about translating CDi_ja to PCi_ja plus
      CDELTia for those historical distortion functions (TPV, TNX,
      ZPX) that expect to operate on intermediate world
      coordinates, rather than intermediate pixel coordinates.
      Consequent on feedback from Mohammad Akhlaghi.
    - Documentation generation moved to doxygen 1.9.1 (was 1.8.19).
* Tue Sep 01 2020 Dirk Mueller <dmueller@suse.com>
  - update to 7.3.1:
    * There are no functional changes in this release.
    - Changed all C code, including within the flex sources, Fortran and
      PGSBOX wrappers, and test suite, to use C99 style commenting (i.e.
      using //), excluding the header prologues used to generate the user
      manual.
    - Documentation generation moved to doxygen 1.8.19 (was 1.8.18).

Files

/usr/share/doc/packages/wcslib
/usr/share/doc/packages/wcslib/CHANGES
/usr/share/doc/packages/wcslib/COPYING
/usr/share/doc/packages/wcslib/COPYING.LESSER
/usr/share/doc/packages/wcslib/README
/usr/share/doc/packages/wcslib/THANKS
/usr/share/doc/packages/wcslib/VALIDATION
/usr/share/doc/packages/wcslib/html
/usr/share/doc/packages/wcslib/html/Bonne.gif
/usr/share/doc/packages/wcslib/html/annotated.html
/usr/share/doc/packages/wcslib/html/cel_8h.html
/usr/share/doc/packages/wcslib/html/cel_8h_source.html
/usr/share/doc/packages/wcslib/html/classes.html
/usr/share/doc/packages/wcslib/html/clipboard.js
/usr/share/doc/packages/wcslib/html/cookie.js
/usr/share/doc/packages/wcslib/html/deprecated.html
/usr/share/doc/packages/wcslib/html/diagnostics.html
/usr/share/doc/packages/wcslib/html/dir_af99bb3c152a306abd27951285ad1127.html
/usr/share/doc/packages/wcslib/html/dis_8h.html
/usr/share/doc/packages/wcslib/html/dis_8h_source.html
/usr/share/doc/packages/wcslib/html/doxygen.css
/usr/share/doc/packages/wcslib/html/doxygen.svg
/usr/share/doc/packages/wcslib/html/doxygen_crawl.html
/usr/share/doc/packages/wcslib/html/dynsections.js
/usr/share/doc/packages/wcslib/html/files.html
/usr/share/doc/packages/wcslib/html/fitshdr_8h.html
/usr/share/doc/packages/wcslib/html/fitshdr_8h_source.html
/usr/share/doc/packages/wcslib/html/form_0.png
/usr/share/doc/packages/wcslib/html/form_0_dark.png
/usr/share/doc/packages/wcslib/html/form_1.png
/usr/share/doc/packages/wcslib/html/form_10.png
/usr/share/doc/packages/wcslib/html/form_10_dark.png
/usr/share/doc/packages/wcslib/html/form_11.png
/usr/share/doc/packages/wcslib/html/form_11_dark.png
/usr/share/doc/packages/wcslib/html/form_12.png
/usr/share/doc/packages/wcslib/html/form_12_dark.png
/usr/share/doc/packages/wcslib/html/form_13.png
/usr/share/doc/packages/wcslib/html/form_13_dark.png
/usr/share/doc/packages/wcslib/html/form_14.png
/usr/share/doc/packages/wcslib/html/form_14_dark.png
/usr/share/doc/packages/wcslib/html/form_15.png
/usr/share/doc/packages/wcslib/html/form_15_dark.png
/usr/share/doc/packages/wcslib/html/form_16.png
/usr/share/doc/packages/wcslib/html/form_16_dark.png
/usr/share/doc/packages/wcslib/html/form_17.png
/usr/share/doc/packages/wcslib/html/form_17_dark.png
/usr/share/doc/packages/wcslib/html/form_18.png
/usr/share/doc/packages/wcslib/html/form_18_dark.png
/usr/share/doc/packages/wcslib/html/form_19.png
/usr/share/doc/packages/wcslib/html/form_19_dark.png
/usr/share/doc/packages/wcslib/html/form_1_dark.png
/usr/share/doc/packages/wcslib/html/form_2.png
/usr/share/doc/packages/wcslib/html/form_20.png
/usr/share/doc/packages/wcslib/html/form_20_dark.png
/usr/share/doc/packages/wcslib/html/form_21.png
/usr/share/doc/packages/wcslib/html/form_21_dark.png
/usr/share/doc/packages/wcslib/html/form_22.png
/usr/share/doc/packages/wcslib/html/form_22_dark.png
/usr/share/doc/packages/wcslib/html/form_23.png
/usr/share/doc/packages/wcslib/html/form_23_dark.png
/usr/share/doc/packages/wcslib/html/form_24.png
/usr/share/doc/packages/wcslib/html/form_24_dark.png
/usr/share/doc/packages/wcslib/html/form_25.png
/usr/share/doc/packages/wcslib/html/form_25_dark.png
/usr/share/doc/packages/wcslib/html/form_26.png
/usr/share/doc/packages/wcslib/html/form_26_dark.png
/usr/share/doc/packages/wcslib/html/form_27.png
/usr/share/doc/packages/wcslib/html/form_27_dark.png
/usr/share/doc/packages/wcslib/html/form_28.png
/usr/share/doc/packages/wcslib/html/form_28_dark.png
/usr/share/doc/packages/wcslib/html/form_29.png
/usr/share/doc/packages/wcslib/html/form_29_dark.png
/usr/share/doc/packages/wcslib/html/form_2_dark.png
/usr/share/doc/packages/wcslib/html/form_3.png
/usr/share/doc/packages/wcslib/html/form_30.png
/usr/share/doc/packages/wcslib/html/form_30_dark.png
/usr/share/doc/packages/wcslib/html/form_31.png
/usr/share/doc/packages/wcslib/html/form_31_dark.png
/usr/share/doc/packages/wcslib/html/form_32.png
/usr/share/doc/packages/wcslib/html/form_32_dark.png
/usr/share/doc/packages/wcslib/html/form_33.png
/usr/share/doc/packages/wcslib/html/form_33_dark.png
/usr/share/doc/packages/wcslib/html/form_34.png
/usr/share/doc/packages/wcslib/html/form_34_dark.png
/usr/share/doc/packages/wcslib/html/form_35.png
/usr/share/doc/packages/wcslib/html/form_35_dark.png
/usr/share/doc/packages/wcslib/html/form_36.png
/usr/share/doc/packages/wcslib/html/form_36_dark.png
/usr/share/doc/packages/wcslib/html/form_37.png
/usr/share/doc/packages/wcslib/html/form_37_dark.png
/usr/share/doc/packages/wcslib/html/form_38.png
/usr/share/doc/packages/wcslib/html/form_38_dark.png
/usr/share/doc/packages/wcslib/html/form_39.png
/usr/share/doc/packages/wcslib/html/form_39_dark.png
/usr/share/doc/packages/wcslib/html/form_3_dark.png
/usr/share/doc/packages/wcslib/html/form_4.png
/usr/share/doc/packages/wcslib/html/form_40.png
/usr/share/doc/packages/wcslib/html/form_40_dark.png
/usr/share/doc/packages/wcslib/html/form_41.png
/usr/share/doc/packages/wcslib/html/form_41_dark.png
/usr/share/doc/packages/wcslib/html/form_42.png
/usr/share/doc/packages/wcslib/html/form_42_dark.png
/usr/share/doc/packages/wcslib/html/form_43.png
/usr/share/doc/packages/wcslib/html/form_43_dark.png
/usr/share/doc/packages/wcslib/html/form_44.png
/usr/share/doc/packages/wcslib/html/form_44_dark.png
/usr/share/doc/packages/wcslib/html/form_45.png
/usr/share/doc/packages/wcslib/html/form_45_dark.png
/usr/share/doc/packages/wcslib/html/form_46.png
/usr/share/doc/packages/wcslib/html/form_46_dark.png
/usr/share/doc/packages/wcslib/html/form_47.png
/usr/share/doc/packages/wcslib/html/form_47_dark.png
/usr/share/doc/packages/wcslib/html/form_48.png
/usr/share/doc/packages/wcslib/html/form_48_dark.png
/usr/share/doc/packages/wcslib/html/form_49.png
/usr/share/doc/packages/wcslib/html/form_49_dark.png
/usr/share/doc/packages/wcslib/html/form_4_dark.png
/usr/share/doc/packages/wcslib/html/form_5.png
/usr/share/doc/packages/wcslib/html/form_50.png
/usr/share/doc/packages/wcslib/html/form_50_dark.png
/usr/share/doc/packages/wcslib/html/form_51.png
/usr/share/doc/packages/wcslib/html/form_51_dark.png
/usr/share/doc/packages/wcslib/html/form_52.png
/usr/share/doc/packages/wcslib/html/form_52_dark.png
/usr/share/doc/packages/wcslib/html/form_53.png
/usr/share/doc/packages/wcslib/html/form_53_dark.png
/usr/share/doc/packages/wcslib/html/form_54.png
/usr/share/doc/packages/wcslib/html/form_54_dark.png
/usr/share/doc/packages/wcslib/html/form_55.png
/usr/share/doc/packages/wcslib/html/form_55_dark.png
/usr/share/doc/packages/wcslib/html/form_56.png
/usr/share/doc/packages/wcslib/html/form_56_dark.png
/usr/share/doc/packages/wcslib/html/form_57.png
/usr/share/doc/packages/wcslib/html/form_57_dark.png
/usr/share/doc/packages/wcslib/html/form_58.png
/usr/share/doc/packages/wcslib/html/form_58_dark.png
/usr/share/doc/packages/wcslib/html/form_59.png
/usr/share/doc/packages/wcslib/html/form_59_dark.png
/usr/share/doc/packages/wcslib/html/form_5_dark.png
/usr/share/doc/packages/wcslib/html/form_6.png
/usr/share/doc/packages/wcslib/html/form_60.png
/usr/share/doc/packages/wcslib/html/form_60_dark.png
/usr/share/doc/packages/wcslib/html/form_61.png
/usr/share/doc/packages/wcslib/html/form_61_dark.png
/usr/share/doc/packages/wcslib/html/form_62.png
/usr/share/doc/packages/wcslib/html/form_62_dark.png
/usr/share/doc/packages/wcslib/html/form_63.png
/usr/share/doc/packages/wcslib/html/form_63_dark.png
/usr/share/doc/packages/wcslib/html/form_64.png
/usr/share/doc/packages/wcslib/html/form_64_dark.png
/usr/share/doc/packages/wcslib/html/form_65.png
/usr/share/doc/packages/wcslib/html/form_65_dark.png
/usr/share/doc/packages/wcslib/html/form_66.png
/usr/share/doc/packages/wcslib/html/form_66_dark.png
/usr/share/doc/packages/wcslib/html/form_67.png
/usr/share/doc/packages/wcslib/html/form_67_dark.png
/usr/share/doc/packages/wcslib/html/form_68.png
/usr/share/doc/packages/wcslib/html/form_68_dark.png
/usr/share/doc/packages/wcslib/html/form_69.png
/usr/share/doc/packages/wcslib/html/form_69_dark.png
/usr/share/doc/packages/wcslib/html/form_6_dark.png
/usr/share/doc/packages/wcslib/html/form_7.png
/usr/share/doc/packages/wcslib/html/form_70.png
/usr/share/doc/packages/wcslib/html/form_70_dark.png
/usr/share/doc/packages/wcslib/html/form_71.png
/usr/share/doc/packages/wcslib/html/form_71_dark.png
/usr/share/doc/packages/wcslib/html/form_72.png
/usr/share/doc/packages/wcslib/html/form_72_dark.png
/usr/share/doc/packages/wcslib/html/form_73.png
/usr/share/doc/packages/wcslib/html/form_73_dark.png
/usr/share/doc/packages/wcslib/html/form_74.png
/usr/share/doc/packages/wcslib/html/form_74_dark.png
/usr/share/doc/packages/wcslib/html/form_75.png
/usr/share/doc/packages/wcslib/html/form_75_dark.png
/usr/share/doc/packages/wcslib/html/form_76.png
/usr/share/doc/packages/wcslib/html/form_76_dark.png
/usr/share/doc/packages/wcslib/html/form_7_dark.png
/usr/share/doc/packages/wcslib/html/form_8.png
/usr/share/doc/packages/wcslib/html/form_8_dark.png
/usr/share/doc/packages/wcslib/html/form_9.png
/usr/share/doc/packages/wcslib/html/form_9_dark.png
/usr/share/doc/packages/wcslib/html/formula.repository
/usr/share/doc/packages/wcslib/html/fortran.html
/usr/share/doc/packages/wcslib/html/functions.html
/usr/share/doc/packages/wcslib/html/functions_b.html
/usr/share/doc/packages/wcslib/html/functions_c.html
/usr/share/doc/packages/wcslib/html/functions_d.html
/usr/share/doc/packages/wcslib/html/functions_e.html
/usr/share/doc/packages/wcslib/html/functions_f.html
/usr/share/doc/packages/wcslib/html/functions_g.html
/usr/share/doc/packages/wcslib/html/functions_h.html
/usr/share/doc/packages/wcslib/html/functions_i.html
/usr/share/doc/packages/wcslib/html/functions_j.html
/usr/share/doc/packages/wcslib/html/functions_k.html
/usr/share/doc/packages/wcslib/html/functions_l.html
/usr/share/doc/packages/wcslib/html/functions_m.html
/usr/share/doc/packages/wcslib/html/functions_n.html
/usr/share/doc/packages/wcslib/html/functions_o.html
/usr/share/doc/packages/wcslib/html/functions_p.html
/usr/share/doc/packages/wcslib/html/functions_r.html
/usr/share/doc/packages/wcslib/html/functions_s.html
/usr/share/doc/packages/wcslib/html/functions_t.html
/usr/share/doc/packages/wcslib/html/functions_u.html
/usr/share/doc/packages/wcslib/html/functions_v.html
/usr/share/doc/packages/wcslib/html/functions_vars.html
/usr/share/doc/packages/wcslib/html/functions_vars_b.html
/usr/share/doc/packages/wcslib/html/functions_vars_c.html
/usr/share/doc/packages/wcslib/html/functions_vars_d.html
/usr/share/doc/packages/wcslib/html/functions_vars_e.html
/usr/share/doc/packages/wcslib/html/functions_vars_f.html
/usr/share/doc/packages/wcslib/html/functions_vars_g.html
/usr/share/doc/packages/wcslib/html/functions_vars_h.html
/usr/share/doc/packages/wcslib/html/functions_vars_i.html
/usr/share/doc/packages/wcslib/html/functions_vars_j.html
/usr/share/doc/packages/wcslib/html/functions_vars_k.html
/usr/share/doc/packages/wcslib/html/functions_vars_l.html
/usr/share/doc/packages/wcslib/html/functions_vars_m.html
/usr/share/doc/packages/wcslib/html/functions_vars_n.html
/usr/share/doc/packages/wcslib/html/functions_vars_o.html
/usr/share/doc/packages/wcslib/html/functions_vars_p.html
/usr/share/doc/packages/wcslib/html/functions_vars_r.html
/usr/share/doc/packages/wcslib/html/functions_vars_s.html
/usr/share/doc/packages/wcslib/html/functions_vars_t.html
/usr/share/doc/packages/wcslib/html/functions_vars_u.html
/usr/share/doc/packages/wcslib/html/functions_vars_v.html
/usr/share/doc/packages/wcslib/html/functions_vars_w.html
/usr/share/doc/packages/wcslib/html/functions_vars_x.html
/usr/share/doc/packages/wcslib/html/functions_vars_y.html
/usr/share/doc/packages/wcslib/html/functions_vars_z.html
/usr/share/doc/packages/wcslib/html/functions_w.html
/usr/share/doc/packages/wcslib/html/functions_x.html
/usr/share/doc/packages/wcslib/html/functions_y.html
/usr/share/doc/packages/wcslib/html/functions_z.html
/usr/share/doc/packages/wcslib/html/getwcstab_8h.html
/usr/share/doc/packages/wcslib/html/getwcstab_8h_source.html
/usr/share/doc/packages/wcslib/html/globals.html
/usr/share/doc/packages/wcslib/html/globals_b.html
/usr/share/doc/packages/wcslib/html/globals_c.html
/usr/share/doc/packages/wcslib/html/globals_d.html
/usr/share/doc/packages/wcslib/html/globals_defs.html
/usr/share/doc/packages/wcslib/html/globals_e.html
/usr/share/doc/packages/wcslib/html/globals_enum.html
/usr/share/doc/packages/wcslib/html/globals_eval.html
/usr/share/doc/packages/wcslib/html/globals_f.html
/usr/share/doc/packages/wcslib/html/globals_func.html
/usr/share/doc/packages/wcslib/html/globals_func_b.html
/usr/share/doc/packages/wcslib/html/globals_func_c.html
/usr/share/doc/packages/wcslib/html/globals_func_d.html
/usr/share/doc/packages/wcslib/html/globals_func_e.html
/usr/share/doc/packages/wcslib/html/globals_func_f.html
/usr/share/doc/packages/wcslib/html/globals_func_h.html
/usr/share/doc/packages/wcslib/html/globals_func_l.html
/usr/share/doc/packages/wcslib/html/globals_func_m.html
/usr/share/doc/packages/wcslib/html/globals_func_o.html
/usr/share/doc/packages/wcslib/html/globals_func_p.html
/usr/share/doc/packages/wcslib/html/globals_func_q.html
/usr/share/doc/packages/wcslib/html/globals_func_s.html
/usr/share/doc/packages/wcslib/html/globals_func_t.html
/usr/share/doc/packages/wcslib/html/globals_func_u.html
/usr/share/doc/packages/wcslib/html/globals_func_v.html
/usr/share/doc/packages/wcslib/html/globals_func_w.html
/usr/share/doc/packages/wcslib/html/globals_func_x.html
/usr/share/doc/packages/wcslib/html/globals_func_z.html
/usr/share/doc/packages/wcslib/html/globals_h.html
/usr/share/doc/packages/wcslib/html/globals_i.html
/usr/share/doc/packages/wcslib/html/globals_k.html
/usr/share/doc/packages/wcslib/html/globals_l.html
/usr/share/doc/packages/wcslib/html/globals_m.html
/usr/share/doc/packages/wcslib/html/globals_n.html
/usr/share/doc/packages/wcslib/html/globals_o.html
/usr/share/doc/packages/wcslib/html/globals_p.html
/usr/share/doc/packages/wcslib/html/globals_q.html
/usr/share/doc/packages/wcslib/html/globals_r.html
/usr/share/doc/packages/wcslib/html/globals_s.html
/usr/share/doc/packages/wcslib/html/globals_t.html
/usr/share/doc/packages/wcslib/html/globals_type.html
/usr/share/doc/packages/wcslib/html/globals_u.html
/usr/share/doc/packages/wcslib/html/globals_v.html
/usr/share/doc/packages/wcslib/html/globals_vars.html
/usr/share/doc/packages/wcslib/html/globals_w.html
/usr/share/doc/packages/wcslib/html/globals_x.html
/usr/share/doc/packages/wcslib/html/globals_z.html
/usr/share/doc/packages/wcslib/html/index.html
/usr/share/doc/packages/wcslib/html/intro.html
/usr/share/doc/packages/wcslib/html/jquery.js
/usr/share/doc/packages/wcslib/html/limits.html
/usr/share/doc/packages/wcslib/html/lin_8h.html
/usr/share/doc/packages/wcslib/html/lin_8h_source.html
/usr/share/doc/packages/wcslib/html/log_8h.html
/usr/share/doc/packages/wcslib/html/log_8h_source.html
/usr/share/doc/packages/wcslib/html/memory.html
/usr/share/doc/packages/wcslib/html/menu.js
/usr/share/doc/packages/wcslib/html/menudata.js
/usr/share/doc/packages/wcslib/html/navtree.css
/usr/share/doc/packages/wcslib/html/overview.html
/usr/share/doc/packages/wcslib/html/pages.html
/usr/share/doc/packages/wcslib/html/pgsbox.html
/usr/share/doc/packages/wcslib/html/prj_8h.html
/usr/share/doc/packages/wcslib/html/prj_8h_source.html
/usr/share/doc/packages/wcslib/html/search
/usr/share/doc/packages/wcslib/html/search/all_0.js
/usr/share/doc/packages/wcslib/html/search/all_1.js
/usr/share/doc/packages/wcslib/html/search/all_10.js
/usr/share/doc/packages/wcslib/html/search/all_11.js
/usr/share/doc/packages/wcslib/html/search/all_12.js
/usr/share/doc/packages/wcslib/html/search/all_13.js
/usr/share/doc/packages/wcslib/html/search/all_14.js
/usr/share/doc/packages/wcslib/html/search/all_15.js
/usr/share/doc/packages/wcslib/html/search/all_16.js
/usr/share/doc/packages/wcslib/html/search/all_17.js
/usr/share/doc/packages/wcslib/html/search/all_18.js
/usr/share/doc/packages/wcslib/html/search/all_19.js
/usr/share/doc/packages/wcslib/html/search/all_1a.js
/usr/share/doc/packages/wcslib/html/search/all_1b.js
/usr/share/doc/packages/wcslib/html/search/all_2.js
/usr/share/doc/packages/wcslib/html/search/all_3.js
/usr/share/doc/packages/wcslib/html/search/all_4.js
/usr/share/doc/packages/wcslib/html/search/all_5.js
/usr/share/doc/packages/wcslib/html/search/all_6.js
/usr/share/doc/packages/wcslib/html/search/all_7.js
/usr/share/doc/packages/wcslib/html/search/all_8.js
/usr/share/doc/packages/wcslib/html/search/all_9.js
/usr/share/doc/packages/wcslib/html/search/all_a.js
/usr/share/doc/packages/wcslib/html/search/all_b.js
/usr/share/doc/packages/wcslib/html/search/all_c.js
/usr/share/doc/packages/wcslib/html/search/all_d.js
/usr/share/doc/packages/wcslib/html/search/all_e.js
/usr/share/doc/packages/wcslib/html/search/all_f.js
/usr/share/doc/packages/wcslib/html/search/classes_0.js
/usr/share/doc/packages/wcslib/html/search/classes_1.js
/usr/share/doc/packages/wcslib/html/search/classes_2.js
/usr/share/doc/packages/wcslib/html/search/classes_3.js
/usr/share/doc/packages/wcslib/html/search/classes_4.js
/usr/share/doc/packages/wcslib/html/search/classes_5.js
/usr/share/doc/packages/wcslib/html/search/classes_6.js
/usr/share/doc/packages/wcslib/html/search/classes_7.js
/usr/share/doc/packages/wcslib/html/search/classes_8.js
/usr/share/doc/packages/wcslib/html/search/defines_0.js
/usr/share/doc/packages/wcslib/html/search/defines_1.js
/usr/share/doc/packages/wcslib/html/search/defines_2.js
/usr/share/doc/packages/wcslib/html/search/defines_3.js
/usr/share/doc/packages/wcslib/html/search/defines_4.js
/usr/share/doc/packages/wcslib/html/search/defines_5.js
/usr/share/doc/packages/wcslib/html/search/defines_6.js
/usr/share/doc/packages/wcslib/html/search/defines_7.js
/usr/share/doc/packages/wcslib/html/search/defines_8.js
/usr/share/doc/packages/wcslib/html/search/defines_9.js
/usr/share/doc/packages/wcslib/html/search/defines_a.js
/usr/share/doc/packages/wcslib/html/search/defines_b.js
/usr/share/doc/packages/wcslib/html/search/defines_c.js
/usr/share/doc/packages/wcslib/html/search/defines_d.js
/usr/share/doc/packages/wcslib/html/search/defines_e.js
/usr/share/doc/packages/wcslib/html/search/enums_0.js
/usr/share/doc/packages/wcslib/html/search/enums_1.js
/usr/share/doc/packages/wcslib/html/search/enums_2.js
/usr/share/doc/packages/wcslib/html/search/enums_3.js
/usr/share/doc/packages/wcslib/html/search/enums_4.js
/usr/share/doc/packages/wcslib/html/search/enums_5.js
/usr/share/doc/packages/wcslib/html/search/enums_6.js
/usr/share/doc/packages/wcslib/html/search/enums_7.js
/usr/share/doc/packages/wcslib/html/search/enumvalues_0.js
/usr/share/doc/packages/wcslib/html/search/enumvalues_1.js
/usr/share/doc/packages/wcslib/html/search/enumvalues_2.js
/usr/share/doc/packages/wcslib/html/search/enumvalues_3.js
/usr/share/doc/packages/wcslib/html/search/enumvalues_4.js
/usr/share/doc/packages/wcslib/html/search/enumvalues_5.js
/usr/share/doc/packages/wcslib/html/search/enumvalues_6.js
/usr/share/doc/packages/wcslib/html/search/enumvalues_7.js
/usr/share/doc/packages/wcslib/html/search/enumvalues_8.js
/usr/share/doc/packages/wcslib/html/search/files_0.js
/usr/share/doc/packages/wcslib/html/search/files_1.js
/usr/share/doc/packages/wcslib/html/search/files_2.js
/usr/share/doc/packages/wcslib/html/search/files_3.js
/usr/share/doc/packages/wcslib/html/search/files_4.js
/usr/share/doc/packages/wcslib/html/search/files_5.js
/usr/share/doc/packages/wcslib/html/search/files_6.js
/usr/share/doc/packages/wcslib/html/search/files_7.js
/usr/share/doc/packages/wcslib/html/search/files_8.js
/usr/share/doc/packages/wcslib/html/search/functions_0.js
/usr/share/doc/packages/wcslib/html/search/functions_1.js
/usr/share/doc/packages/wcslib/html/search/functions_10.js
/usr/share/doc/packages/wcslib/html/search/functions_11.js
/usr/share/doc/packages/wcslib/html/search/functions_12.js
/usr/share/doc/packages/wcslib/html/search/functions_2.js
/usr/share/doc/packages/wcslib/html/search/functions_3.js
/usr/share/doc/packages/wcslib/html/search/functions_4.js
/usr/share/doc/packages/wcslib/html/search/functions_5.js
/usr/share/doc/packages/wcslib/html/search/functions_6.js
/usr/share/doc/packages/wcslib/html/search/functions_7.js
/usr/share/doc/packages/wcslib/html/search/functions_8.js
/usr/share/doc/packages/wcslib/html/search/functions_9.js
/usr/share/doc/packages/wcslib/html/search/functions_a.js
/usr/share/doc/packages/wcslib/html/search/functions_b.js
/usr/share/doc/packages/wcslib/html/search/functions_c.js
/usr/share/doc/packages/wcslib/html/search/functions_d.js
/usr/share/doc/packages/wcslib/html/search/functions_e.js
/usr/share/doc/packages/wcslib/html/search/functions_f.js
/usr/share/doc/packages/wcslib/html/search/pages_0.js
/usr/share/doc/packages/wcslib/html/search/pages_1.js
/usr/share/doc/packages/wcslib/html/search/pages_10.js
/usr/share/doc/packages/wcslib/html/search/pages_11.js
/usr/share/doc/packages/wcslib/html/search/pages_2.js
/usr/share/doc/packages/wcslib/html/search/pages_3.js
/usr/share/doc/packages/wcslib/html/search/pages_4.js
/usr/share/doc/packages/wcslib/html/search/pages_5.js
/usr/share/doc/packages/wcslib/html/search/pages_6.js
/usr/share/doc/packages/wcslib/html/search/pages_7.js
/usr/share/doc/packages/wcslib/html/search/pages_8.js
/usr/share/doc/packages/wcslib/html/search/pages_9.js
/usr/share/doc/packages/wcslib/html/search/pages_a.js
/usr/share/doc/packages/wcslib/html/search/pages_b.js
/usr/share/doc/packages/wcslib/html/search/pages_c.js
/usr/share/doc/packages/wcslib/html/search/pages_d.js
/usr/share/doc/packages/wcslib/html/search/pages_e.js
/usr/share/doc/packages/wcslib/html/search/pages_f.js
/usr/share/doc/packages/wcslib/html/search/search.css
/usr/share/doc/packages/wcslib/html/search/search.js
/usr/share/doc/packages/wcslib/html/search/searchdata.js
/usr/share/doc/packages/wcslib/html/search/typedefs_0.js
/usr/share/doc/packages/wcslib/html/search/variables_0.js
/usr/share/doc/packages/wcslib/html/search/variables_1.js
/usr/share/doc/packages/wcslib/html/search/variables_10.js
/usr/share/doc/packages/wcslib/html/search/variables_11.js
/usr/share/doc/packages/wcslib/html/search/variables_12.js
/usr/share/doc/packages/wcslib/html/search/variables_13.js
/usr/share/doc/packages/wcslib/html/search/variables_14.js
/usr/share/doc/packages/wcslib/html/search/variables_15.js
/usr/share/doc/packages/wcslib/html/search/variables_16.js
/usr/share/doc/packages/wcslib/html/search/variables_17.js
/usr/share/doc/packages/wcslib/html/search/variables_18.js
/usr/share/doc/packages/wcslib/html/search/variables_19.js
/usr/share/doc/packages/wcslib/html/search/variables_2.js
/usr/share/doc/packages/wcslib/html/search/variables_3.js
/usr/share/doc/packages/wcslib/html/search/variables_4.js
/usr/share/doc/packages/wcslib/html/search/variables_5.js
/usr/share/doc/packages/wcslib/html/search/variables_6.js
/usr/share/doc/packages/wcslib/html/search/variables_7.js
/usr/share/doc/packages/wcslib/html/search/variables_8.js
/usr/share/doc/packages/wcslib/html/search/variables_9.js
/usr/share/doc/packages/wcslib/html/search/variables_a.js
/usr/share/doc/packages/wcslib/html/search/variables_b.js
/usr/share/doc/packages/wcslib/html/search/variables_c.js
/usr/share/doc/packages/wcslib/html/search/variables_d.js
/usr/share/doc/packages/wcslib/html/search/variables_e.js
/usr/share/doc/packages/wcslib/html/search/variables_f.js
/usr/share/doc/packages/wcslib/html/software.html
/usr/share/doc/packages/wcslib/html/spc_8h.html
/usr/share/doc/packages/wcslib/html/spc_8h_source.html
/usr/share/doc/packages/wcslib/html/sph_8h.html
/usr/share/doc/packages/wcslib/html/sph_8h_source.html
/usr/share/doc/packages/wcslib/html/spx_8h.html
/usr/share/doc/packages/wcslib/html/spx_8h_source.html
/usr/share/doc/packages/wcslib/html/structauxprm.html
/usr/share/doc/packages/wcslib/html/structcelprm.html
/usr/share/doc/packages/wcslib/html/structdisprm.html
/usr/share/doc/packages/wcslib/html/structdpkey.html
/usr/share/doc/packages/wcslib/html/structfitskey.html
/usr/share/doc/packages/wcslib/html/structfitskeyid.html
/usr/share/doc/packages/wcslib/html/structlinprm.html
/usr/share/doc/packages/wcslib/html/structprjprm.html
/usr/share/doc/packages/wcslib/html/structpscard.html
/usr/share/doc/packages/wcslib/html/structpvcard.html
/usr/share/doc/packages/wcslib/html/structs.html
/usr/share/doc/packages/wcslib/html/structspcprm.html
/usr/share/doc/packages/wcslib/html/structspxprm.html
/usr/share/doc/packages/wcslib/html/structtabprm.html
/usr/share/doc/packages/wcslib/html/structwcserr.html
/usr/share/doc/packages/wcslib/html/structwcsprm.html
/usr/share/doc/packages/wcslib/html/structwtbarr.html
/usr/share/doc/packages/wcslib/html/tab_8h.html
/usr/share/doc/packages/wcslib/html/tab_8h_source.html
/usr/share/doc/packages/wcslib/html/tabs.css
/usr/share/doc/packages/wcslib/html/testing.html
/usr/share/doc/packages/wcslib/html/threads.html
/usr/share/doc/packages/wcslib/html/vector.html
/usr/share/doc/packages/wcslib/html/versioning.html
/usr/share/doc/packages/wcslib/html/wcs_8h.html
/usr/share/doc/packages/wcslib/html/wcs_8h_source.html
/usr/share/doc/packages/wcslib/html/wcserr_8h.html
/usr/share/doc/packages/wcslib/html/wcserr_8h_source.html
/usr/share/doc/packages/wcslib/html/wcsfix_8h.html
/usr/share/doc/packages/wcslib/html/wcsfix_8h_source.html
/usr/share/doc/packages/wcslib/html/wcshdr_8h.html
/usr/share/doc/packages/wcslib/html/wcshdr_8h_source.html
/usr/share/doc/packages/wcslib/html/wcslib_8h.html
/usr/share/doc/packages/wcslib/html/wcslib_8h_source.html
/usr/share/doc/packages/wcslib/html/wcsmath_8h.html
/usr/share/doc/packages/wcslib/html/wcsmath_8h_source.html
/usr/share/doc/packages/wcslib/html/wcsprintf_8h.html
/usr/share/doc/packages/wcslib/html/wcsprintf_8h_source.html
/usr/share/doc/packages/wcslib/html/wcstrig_8h.html
/usr/share/doc/packages/wcslib/html/wcstrig_8h_source.html
/usr/share/doc/packages/wcslib/html/wcsunits_8h.html
/usr/share/doc/packages/wcslib/html/wcsunits_8h_source.html
/usr/share/doc/packages/wcslib/html/wcsutil_8h.html
/usr/share/doc/packages/wcslib/html/wcsutil_8h_source.html
/usr/share/doc/packages/wcslib/html/wtbarr_8h.html
/usr/share/doc/packages/wcslib/html/wtbarr_8h_source.html
/usr/share/doc/packages/wcslib/wcslib.pdf


Generated by rpm2html 1.8.1

Fabrice Bellet, Sun Aug 2 03:14:27 2026