photoname 2.1 → 2.2
raw patch · 12 files changed
+23/−16 lines, 12 filesdep ~base
Dependency ranges changed: base
Files
- LICENSE +1/−1
- README +6/−2
- TODO +3/−0
- photoname.cabal +4/−4
- src/Photoname/Date.hs +1/−1
- src/Photoname/Opts.hs +2/−2
- src/Photoname/Serial.hs +1/−1
- src/photoname.hs +1/−1
- testsuite/TestHelp.hs +1/−1
- testsuite/TestLink.hs +1/−1
- testsuite/Util.hs +1/−1
- testsuite/runtests.hs +1/−1
LICENSE view
@@ -1,4 +1,4 @@-Copyright (c) 2007, 2008 Dino Morelli+Copyright (c) 2007-2009 Dino Morelli All rights reserved. Redistribution and use in source and binary forms, with or without
README view
@@ -12,12 +12,16 @@ and the usually-camera-assigned serial number, often appearing in the filename. -This program is known to work with GHC 6.8.3 (and probably still 6.8.2) on systems where System.Posix (unix) packages are available.+This program is known to work with GHC 6.10.3 on systems where System.Posix (unix) and exif packages are available. *install* -Build and install in the typical way for Cabalized software:+With cabal-install, get it directly from Hackage:++ $ cabal install photoname++Or manually after unpacking source: $ runhaskell Setup.lhs configure $ runhaskell Setup.lhs build
TODO view
@@ -22,3 +22,6 @@ - Deal gracefully with unknown dates. This means not just putting pictures into the 0000/0000-00-00 directory, but making sure that the _### serial number part is incremented from the highest one in there. - Allow additional switch for part of filenames for initials of photographer: _xyz Call this the suffix? (-s --suffix)++- Add the Homepage item to the debian/control that you see now in more recent packages. Use dh_make on something to see what it looks like, something like this:+ Homepage: <url>
photoname.cabal view
@@ -1,10 +1,10 @@ name: photoname cabal-version: >= 1.2-version: 2.1+version: 2.2 build-type: Simple license: BSD3 license-file: LICENSE-copyright: 2007, 2008 Dino Morelli +copyright: 2007-2009 Dino Morelli author: Dino Morelli maintainer: Dino Morelli <dino@ui3.info> stability: stable@@ -18,7 +18,7 @@ executable photoname main-is: photoname.hs- build-depends: base, exif, filepath, mtl, old-locale, parsec, - time, unix+ build-depends: base >= 3 && < 5, exif, filepath, mtl, old-locale, + parsec, time, unix ghc-options: -Wall hs-source-dirs: src
src/Photoname/Date.hs view
@@ -1,4 +1,4 @@--- Copyright: 2007, 2008 Dino Morelli+-- Copyright: 2007-2009 Dino Morelli -- License: BSD3 (see LICENSE) -- Author: Dino Morelli <dino@ui3.info>
src/Photoname/Opts.hs view
@@ -1,4 +1,4 @@--- Copyright: 2007, 2008 Dino Morelli+-- Copyright: 2007-2009 Dino Morelli -- License: BSD3 (see LICENSE) -- Author: Dino Morelli <dino@ui3.info> @@ -79,5 +79,5 @@ , "" , "Note that the default behavior of this software is to create hard links to the new paths and leave the original links as they were. You can use the --move switch to blow away the original location, leaving only the new." , ""- , "Version 2.1 2008-Oct-10 Dino Morelli <dino@ui3.info>"+ , "Version 2.2 2009-Jun-07 Dino Morelli <dino@ui3.info>" ]
src/Photoname/Serial.hs view
@@ -1,4 +1,4 @@--- Copyright: 2007, 2008 Dino Morelli+-- Copyright: 2007-2009 Dino Morelli -- License: BSD3 (see LICENSE) -- Author: Dino Morelli <dino@ui3.info>
src/photoname.hs view
@@ -1,4 +1,4 @@--- Copyright: 2007, 2008 Dino Morelli+-- Copyright: 2007-2009 Dino Morelli -- License: BSD3 (see LICENSE) -- Author: Dino Morelli <dino@ui3.info>
testsuite/TestHelp.hs view
@@ -1,4 +1,4 @@--- Copyright: 2007, 2008 Dino Morelli+-- Copyright: 2007-2009 Dino Morelli -- License: BSD3 (see LICENSE) -- Author: Dino Morelli <dino@ui3.info>
testsuite/TestLink.hs view
@@ -1,4 +1,4 @@--- Copyright: 2007, 2008 Dino Morelli+-- Copyright: 2007-2009 Dino Morelli -- License: BSD3 (see LICENSE) -- Author: Dino Morelli <dino@ui3.info>
testsuite/Util.hs view
@@ -1,4 +1,4 @@--- Copyright: 2007, 2008 Dino Morelli+-- Copyright: 2007-2009 Dino Morelli -- License: BSD3 (see LICENSE) -- Author: Dino Morelli <dino@ui3.info>
testsuite/runtests.hs view
@@ -1,4 +1,4 @@--- Copyright: 2007, 2008 Dino Morelli+-- Copyright: 2007-2009 Dino Morelli -- License: BSD3 (see LICENSE) -- Author: Dino Morelli <dino@ui3.info>