ftphs 1.0.0 source package in Ubuntu

Changelog

ftphs (1.0.0) unstable; urgency=low

  * First ftphs release.  Closes: #401945.
  * This package contains code that used to be part of MissingH and was
    split off according to the MissingH transition plan.

missingh (0.18.0) unstable; urgency=low

  * Major API changes in this release; several large modules being
    split off into separate packages.  See 
    http://software.complete.org/missingh/wiki/TransitionPlanning
    for details.

missingh (0.16.3) unstable; urgency=low

  * New version
  * New module MissingH.ProgressTracker which tracks the progress
    of long-running tasks.  It can also give estimated time to completion
    and overall speed statistics, as well as support dividing a task
    into many subtasks.
  * New module MissingH.ProgressMeter which displays one or more
    ProgressTrackers as a status bar on a console.
  * New module MissingH.Quantity which renders numbers according
    to a quantification system such as SI or binary
  * New functions forkRawSystem and pOpen3Raw in MissingH.Cmd.  Instead
    of taking functions to run as actions, instead returns the PID
    of the child process and leaves it up to the programmer to properly
    handle the result.

missingh (0.16.2) unstable; urgency=low

  * Documented Quantity.hs
  * Fixed missing libghc6-*-dev deps from GHC 6.6.  Closes: #394580.

missingh (0.16.1) unstable; urgency=low

  * Fix up dependencies

missingh (0.16.0) unstable; urgency=low

  * NEW: MissingH.Quantity that is used to render numbers as binary
    units (MB, KB, etc) or SI units, or other similar units
  * NEW: MissingH.ProgressTracker that is used to track the progress
    of long-running tasks, measure their speed, and give estimated
    completion times
  * Update to support GHC 6.6
    + Remove FiniteMap support everywhere (no longer supported in GHC)
    + Remove MissingH.Printf (has been deprecated since 0.13.0 due to
      Text.Printf)
    + Update README
    + Fix MissingH.FTP.Server for GHC 6.6.0 compatibility
    + Update cabal file for GHC 6.6 compatibility
  * Patch from Jeremy Shaw to add to MissingH.HUnit the ability to turn
    QuickCheck tests into HUnit tests
  * Patch from Joe Edmonds to MissingH.Wash.Mail.MailParser to
    accept a slight violation of RFC2822 in which date headers may have
    a single-digit date
  * Fix a logic error in MemoryBuffer's vPutStr that could corrupt
    data when a write occurs after a seek, and wrote a test to
    detect this condition.  Thanks to Bulat Ziganshin for finding this.
  * New function in MissingH.List to merge two sorted lists into
    a single sorted whole.  Patch from Clifford Beshers.
  * Work around lack of signals on Windows in MissingH.Cmd.
  * Make sure Data.Bits is imported in MissingH.IO.StatCompat.

missingh (0.14.5) unstable; urgency=low

  * New function: MissingH.Cmd.posixRawSystem
  * MissingH.Cmd.safeSystem now implemented in terms of posixRawSystem 
    on supported platforms.

missingh (0.14.4) unstable; urgency=low

  * Fix a bug in ConfigParser.merge and write a test for it.
  * Rebuilt with GHC 6.4.2

missingh (0.14.3) unstable; urgency=low

  * IO/StatCompat: Fixed missing Data.Bits import on mingw32 
  * Updated COPYING file with new FSF address
  * Cmd.hs: Commented out code that was never used
  * Import new package MD5 0.2.7 from Ian Lynagh

missingh (0.14.2) unstable; urgency=low

  * ConfigParser gives more helpful error messages when possible --
    it now includes section and option in most error messages
  * Unit tests updated for new ConfigParser output
  * MissingH.Str: New function escapeRe that takes a string and makes
    a regular expression that matches the string literally.
  * MissingH.IO.HVFS: New function vDoesExist
  * MissingH.List: New function hasAny
  * New modules: MissingH.Path.Glob and MissingH.Path.WildMatch
    and tests for them
  * 716 total unit tests now

missingh (0.14.0) unstable; urgency=low

  * New function splitWs
  * Loggers: When creating new loggers, use the new parent for defaults
    when possible. [API change]
  * Logger handlers: Now pass the calling logger name to handlers.
    [API change]
  * New log handler: verboseStreamHandler
  * Syslog handler also includes priority and logger name for each message.

missingh (0.13.1) unstable; urgency=low

  * Note Build-Depends on HUnit in MissingH.Cabal.  Closes: #356196.
  * MissingH.IO.HVIO: No longer return EOFError when vGetContents called
    at EOF, for compatibility with hGetContents.  Reported by
    Bulat Ziganshin.
  * MissingH.IO.HVFS.Utils: Applied suggestion from Bulat
    to make recursiveRemove cleaner.
  * MissingH.IO.HVIO: Minor bugfixes suggested by Bulat.
  * Updated, fixed typos, and enhanced various docs.
  * testsrc/Listtest: Added unit tests for spanList
  * MissingH.List: Replaced implementation of spanList with one
    suggested by Bulat.
  * Added ghc6 (>= 6.4.1) to Debian build-depends.

missingh (0.13.0) unstable; urgency=low

  * This release introduces some API changes that will affect 
    a small percentage of programmers that use ConfigParser.
  * This release requires GHC 6.4.x or Hugs 2005xx or above.
    This has been noted in INSTALL.
  * MissingH.List: Committed some patches from Bulat Ziganshin
    to improve performance.
  * New function MissingH.List.subIndex based on suggestion
    from Bulat Ziganshin.  Also added tests for it.
  * New module MissingH.Map, similar to MissingH.FiniteMap but for
    Data.Map instead of Data.FiniteMap.  Also added tests for
    MissingH.Map.
  * New module MissingH.AnyDBM.MapDBM, plus tests for it.
    Converted from MissingH.AnyDBM.FiniteMapDBM.
  * Converted these modules to use MVars instead of IORefs:
    + MissingH.Logging.Logger
  * Converted these modules to use Data.Map instead of Data.FiniteMap:
    + MissingH.Logging.Logger
    + MissingH.MIMETypes
    + MissingH.ConfigParser (exposes an API change to a few people)
  * Converted these modules to use Text.Printf instead of MissingH.Printf:
    + MissingH.IO.HVFS.Utils
    + MissingH.Network.FTP.Server
  * Added deprecation warnings to these modules:
    + MissingH.FiniteMap (deprecation of Data.FiniteMap)
    + MissingH.AnyDBM.FiniteMapDBM (deprecation of Data.FiniteMap)
    + MissingH.Printf (introduction of Text.Printf)
  * Added deprecation warnings for two specific functions in
    MissingH.Str: subRe and splitRe.  I had submitted the code for
    these to fptools, and the current releases of GHC and Hugs have
    Text.Regex.subRegex and splitRegex using the code for MissingH.
    Therefore, these functions in MissingH are deprecated in favor of
    the implementations in the standard library.
  * Added locking to StringDBM for thread safety improvements
  * Merry Christmas!

missingh (0.12.3) unstable; urgency=low

  * Make StreamHandler now lock by default.

missingh (0.12.2) unstable; urgency=low

  * Made generic unit tests available.

missingh (0.12.1) unstable; urgency=low

  * Update for GHC 6.4.1.
  * Updated standards-version.

missingh (0.12.0) unstable; urgency=low

  * Added simplegrap.hs example
  * New module: MissingH.Daemon, to support detaching from a
    controlling terminal
  * Fixes to make docs work with Haddock 0.7
  * New function in MissingH.Maybe: forceMaybeMsg
  * HVIO and HVFS now provide abstractions for binary I/O
  * MissingH.IO.Binary now uses HVIO/HVFS abstractions instead of being
    tied to Handles
  * MissingH.IO.Binary can now work with Strings or [Word8], instead of
    just Strings.
  * MissingH.IO.Binary.hBlockCopy optimized to require no conversion
    of the buffer.
  * Updated MissingH.IO.BlockIO to upstream version 2005-02-14
  * Updated MissingH.Threads.Child and Timeout to upstream version 2005-02-14

missingh (0.11.5) unstable; urgency=low

  * Added lazyMapM to MissingH.IO

missingh (0.11.4) unstable; urgency=low

  * Added bracketCWD, brackettmpdirCWD to MissingH.Path
  * Made MissingH.Path.recurseDir* lazy

missingh (0.11.3) unstable; urgency=low

  * Now added support for use on Windows.
  * New modules: StatCompat, WindowsCompat, FilePath, PlafCompat,
    PosixConsts.

missingh (0.11.2) unstable; urgency=low

  * Back out hide-package option in Makefile.  Closes: #309319.

missingh (0.11.1) unstable; urgency=low

  * Added mtl to build-depends; Control.Monad.Error was moved
    there for GHC 6.4.  Closes: #309245.

missingh (0.11.0) unstable; urgency=low

  * First release with full support for GHC 6.4.
  * Changed name of HUnit imports in unit tests to follow GHC 6.4 conventions.
  * Fixed unit tests for GHC 6.4 compatibility.

missingh (0.10.10) unstable; urgency=low

  * The "this time it really compiles with GHC 6.4 and I mean it" release.

missingh (0.10.9) unstable; urgency=low

  * GHC 6.4 compatibility: imported new Hsemail, 2005-04-29, from Peter
    Simons.

missingh (0.10.8) unstable; urgency=low

  * Added more error-checking to ParseDate.
  * Returned Hugs code to normal sid version.

missingh (0.10.7.sarge.2) unstable; urgency=high

  * Fixed build-depends-indep from 0.10.7.sarge.1.

missingh (0.10.7.sarge.1) unstable; urgency=high

  * Back out hugs code so we can get it into sarge and fix a FTBFS in sarge.
    Closes: #305901.
  * After this propogates to sarge, I will upload 0.10.8 to sid that will
    restore the updates to work with the hugs in sid.

missingh (0.10.7) unstable; urgency=low

  * Fixed MissingH.Debian.ControlParser to ignore PGP sigs.

missingh (0.10.6) unstable; urgency=low

  * New module: MissingH.GetOpt.
  * New AL utilities in MissingH.List.

missingh (0.10.5) unstable; urgency=low

  * Yet more features in MissingH.Cmd.  This time, added hPipe*.

missingh (0.10.4) unstable; urgency=low

  * Reworking and bugfixing of the new pipe functions in MissingH.Cmd.

missingh (0.10.3) unstable; urgency=low

  * Added new pipe functions to MissingH.Cmd.

missingh (0.10.2) unstable; urgency=low

  * Minor fix to logging in MissingH.Cmd.
  * Documentation example fixes.

missingh (0.10.1) unstable; urgency=low

  * Imported Bjorn Bringert's ParseDate.

missingh (0.10.0) unstable; urgency=low

  * Compatibility with new Hugs and GHC releases.
  * New modules: MissingH.Debian, MissingH.Debian.ControlParser,
    MissingH.Str.CSV, MissingH.Maybe
  * New MissingH.List functions: wholeMap, fixedWidth
  * New function: MissingH.Time.epochToClockTime
  * Updated HVFS utilities to use epochToClockTime for compatibility
    with the newer Hugs
  * New features in MissingH.IO.Binary: readBinaryFile, writeBinaryFile.
    Make sure tests use these features where appropriate.

missingh (0.9.2) unstable; urgency=low

  * New modules: MissingH.Debian, MissingH.Debian.ControlParser
  * Temporary changes to work with new Hugs

missingh (0.9.1) unstable; urgency=low

  * ConfigParser: accept values that are empty

missingh (0.9.0) unstable; urgency=low

  * New module: MissingH.AnyDBM.  Integrated support for HashTable and
    FiniteMap.
  * New support for converting arbitrary association lists and
    finite maps two/from string.
  * New module: MissingH.AnyDBM.StringDBM that uses this new support.
  * New module: MissingH.Regex.Pesco
  * Major restructuring and cleaning up of the build system.

missingh (0.8.1) unstable; urgency=low

  * Updated to Cabal 0.4.
  * New module: MissingH.Time.

missingh (0.8.0) unstable; urgency=low

  * New HVIO, HVFS modules.
  * Expanded MissingH.Path thanks to code from Volker Wysk's 
    HsShellScript.
  * Renamed MissingH.Network.FTP.Parser to
    MissingH.Network.FTP.ParserClient.
  * New FTP server modules.

missingh (0.7.5) unstable; urgency=low

  * New module: MissingH.Email.Parser.
  * Added recurse directory funtions to MissingH.Path.
  * Added temporary directory functions to MissingH.Path.

missingh (0.7.4) unstable; urgency=low

  * Revved hsemail to 2004-11-01.
  * Imported blockio 2004-11-12.

missingh (0.7.3) unstable; urgency=low

  * Adding missing ConfigParser.Lexer to Setup.Description.

missingh (0.7.2) unstable; urgency=low

  * New modules: MissingH.FileArchive.GZip, MissingH.Checksum.CRC32.GZip,
    MissingH.Checksum.CRC32.Posix, MissingH.Compression.Inflate

missingh (0.7.1) unstable; urgency=low

  * Applied some helpful patches from Einar Karttunen.  The main feature
    is turning MissingH.ConfigParser.get into an instance of a class
    so it can be extended to return various types.  Please note:
    if you used getbool() or getnum() in 0.7.0, these functions are now
    gone, since they are no longer needed.

missingh (0.7.0) unstable; urgency=low

  * Major new feature: ConfigParser. 
  * Rewrote unit tests to use hunit more effectively.
  * Other new modules: MissingH.Either.

missingh (0.6.2) unstable; urgency=low

  * New "generic" sprintf functions.

missingh (0.6.0) unstable; urgency=low

  * Major new feature: Printf module.

missingh (0.5.4) unstable; urgency=low

  * Added build-dep-indep on libhugs-hunit and re-enabled Hugs unit tests.

missingh (0.5.3) unstable; urgency=low

  * Don't run Hugs tests for now.  Closes: #278802.

missingh (0.5.2) unstable; urgency=low

  * New module: sendmail
  * New popen functions in MissingH.Cmd.
  * Added splitRe, subRe to Str.hs.

missingh (0.5.1) unstable; urgency=low

  * Added libghc6-hunit-dev to build-depends.  Closes: #278138.

missingh (0.5.0) unstable; urgency=low

  * Lots of new code: FTP, MIME, Wash, Hsemail, etc.
  * Rebuilt for new ghc.

missingh (0.4.2) unstable; urgency=low

  * Added MissingH.List.contains
  * Added MissingH.Threads

missingh (0.4.1) unstable; urgency=low

  * Added haskell-src to build-depends.

missingh (0.4.0) unstable; urgency=low

  * Added logging infrastructure and Syslog handler.

missingh (0.2.0) unstable; urgency=low

  * Renamed to more standard names: MissingH.IO, MissingH.List,
    MissingH.Str.
  
  * Moved binary functions into new module MissingH.IO.Binary.
  
  * Added unit tests and test cases for List and Str.
  
  * Moved Debian code to use dh_haskell.

  * Build Hugs package for Debian.

missingh (0.1.0) unstable; urgency=low

  * Initial Release.  Closes: #275070.

 -- Ubuntu Archive Auto-Sync <email address hidden>   Wed,  02 May 2007 13:57:40 +0100

Upload details

Uploaded by:
Ubuntu Archive Auto-Sync
Uploaded to:
Gutsy
Original maintainer:
John Goerzen
Architectures:
any
Section:
devel
Urgency:
Very Urgent

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
ftphs_1.0.0.tar.gz 33.5 KiB b2ca794c4b7171f34e6ee909a7791e1eead900907cfaa04102f0859bee5f2ba1
ftphs_1.0.0.dsc 867 bytes f0bd5ac893330ff310af9b6c31105b9c188f6f27416b7ec5f5a3cd88a1ac6f17

View changes file

Binary packages built by this source