[Pkg-haskell-commits] [package-plan] 01/01: Add BlogLiterately with a possible, but untested patch.
Joachim Breitner
nomeata at moszumanska.debian.org
Mon Apr 27 21:13:21 UTC 2015
This is an automated email from the git hooks/post-receive script.
nomeata pushed a commit to branch master
in repository package-plan.
commit d2ec921f2d2e1f2d2e578bef0ead4fbe25ad35b9
Author: Joachim Breitner <mail at joachim-breitner.de>
Date: Mon Apr 27 23:12:49 2015 +0200
Add BlogLiterately with a possible, but untested patch.
---
additional-cabals/BlogLiterately-0.7.1.7.cabal | 96 ++++++++++++++++++++++
packages.txt | 1 +
patches/BlogLiterately/0.7.1.7/extend-upper-bounds | 30 +++++++
patches/BlogLiterately/0.7.1.7/series | 1 +
4 files changed, 128 insertions(+)
diff --git a/additional-cabals/BlogLiterately-0.7.1.7.cabal b/additional-cabals/BlogLiterately-0.7.1.7.cabal
new file mode 100644
index 0000000..edb4a03
--- /dev/null
+++ b/additional-cabals/BlogLiterately-0.7.1.7.cabal
@@ -0,0 +1,96 @@
+Name: BlogLiterately
+Version: 0.7.1.7
+Synopsis: A tool for posting Haskelly articles to blogs
+Description: Write blog posts in Markdown format, then use BlogLiterately
+ to do syntax highlighting, format ghci sessions, and upload
+ to any blog supporting the metaWeblog API (such as Wordpress):
+ <http://codex.wordpress.org/XML-RPC_MetaWeblog_API>.
+ .
+ To get started, use the provided executable
+ @BlogLiterately@; see
+ <http://byorgey.wordpress.com/blogliterately/> for
+ complete documentation.
+ .
+ To make further customization possible, the internals
+ of the executable are made available as a library. In
+ particular, it is easy to create your own executable
+ which adds extra custom transformations; see
+ "Text.BlogLiterately.Run".
+Cabal-Version: >= 1.10
+Homepage: http://byorgey.wordpress.com/blogliterately/
+License: GPL
+License-file: LICENSE
+Category: Web
+Copyright: Copyright (c) Robert Greayer 2008-2010, Brent Yorgey 2012-2013
+Author: Robert Greayer <robgreayer at yahoo.com>
+Maintainer: Brent Yorgey <byorgey at cis.upenn.edu>
+Stability: experimental
+Build-Type: Simple
+Tested-With: GHC ==7.4.2, GHC ==7.6.3, GHC ==7.8.2
+Extra-Source-Files: CHANGES.md
+ README.markdown
+ doc/BlogLiteratelyDoc.lhs
+ style/*.css
+ style/hs-style
+Bug-reports: http://github.com/byorgey/BlogLiterately/issues
+
+Source-repository head
+ type: git
+ location: git://github.com/byorgey/BlogLiterately.git
+
+Library
+ Build-Depends: base >= 4.0 && < 4.8,
+ process,
+ filepath,
+ directory,
+ bytestring,
+ containers,
+ bool-extras,
+ mtl,
+ temporary >= 1.1 && < 1.3,
+ strict >= 0.3 && < 0.4,
+ split >= 0.1.4 && < 0.3,
+ utf8-string >= 0.3 && < 0.4,
+ transformers >= 0.3 && < 0.4,
+ parsec >= 3 && < 3.2,
+ HaXml >= 1.22 && < 1.25,
+ hscolour >= 1.20 && < 1.21,
+ blaze-html >= 0.5 && < 0.8,
+ cmdargs >= 0.9.5 && < 0.11,
+ haxr >= 3000.9 && < 3000.11,
+ pandoc >= 1.12 && < 1.13,
+ pandoc-types >= 1.12 && < 1.13,
+ pandoc-citeproc >= 0.1.2 && < 0.4,
+ highlighting-kate >= 0.5 && < 0.6,
+ data-default >= 0.5 && < 0.6,
+ lens >= 3.8 && < 4.3
+ Exposed-modules: Text.BlogLiterately
+ Text.BlogLiterately.Block
+ Text.BlogLiterately.Ghci
+ Text.BlogLiterately.Highlight
+ Text.BlogLiterately.Image
+ Text.BlogLiterately.LaTeX
+ Text.BlogLiterately.Options
+ Text.BlogLiterately.Options.Parse
+ Text.BlogLiterately.Post
+ Text.BlogLiterately.Run
+ Text.BlogLiterately.Transform
+ Other-modules: Paths_BlogLiterately
+ hs-source-dirs: src
+ Other-extensions: DeriveDataTypeable
+ FlexibleContexts
+ PatternGuards
+ RecordWildCards
+ TypeOperators
+ ViewPatterns
+ Default-language: Haskell2010
+
+Executable BlogLiterately
+ Build-Depends: base,
+ BlogLiterately,
+ cmdargs >= 0.9.5 && < 0.11,
+ utf8-string >= 0.3 && < 0.4
+ Main-Is: BlogLiterately.hs
+ hs-source-dirs: main
+ Ghc-Options: -fwarn-unused-imports
+ Default-language: Haskell2010
diff --git a/packages.txt b/packages.txt
index 5b00093..563ccec 100644
--- a/packages.txt
+++ b/packages.txt
@@ -53,6 +53,7 @@ blaze-html 0.7.0.2
blaze-markup 0.6.1.0
blaze-svg 0.3.4
blaze-textual 0.2.0.9 notest
+BlogLiterately 0.7.1.7
bloomfilter 2.0.0.0
bluetile 0.6 binary obsolete
bmp 1.2.5.2
diff --git a/patches/BlogLiterately/0.7.1.7/extend-upper-bounds b/patches/BlogLiterately/0.7.1.7/extend-upper-bounds
new file mode 100644
index 0000000..ed8510c
--- /dev/null
+++ b/patches/BlogLiterately/0.7.1.7/extend-upper-bounds
@@ -0,0 +1,30 @@
+Index: BlogLiterately-0.7.1.7/BlogLiterately.cabal
+===================================================================
+--- BlogLiterately-0.7.1.7.orig/BlogLiterately.cabal 2015-04-27 23:07:43.523973405 +0200
++++ BlogLiterately-0.7.1.7/BlogLiterately.cabal 2015-04-27 23:08:56.833225964 +0200
+@@ -51,19 +51,19 @@
+ strict >= 0.3 && < 0.4,
+ split >= 0.1.4 && < 0.3,
+ utf8-string >= 0.3 && < 0.4,
+- transformers >= 0.3 && < 0.4,
++ transformers >= 0.3 && < 0.5,
+ parsec >= 3 && < 3.2,
+- HaXml >= 1.22 && < 1.25,
+- hscolour >= 1.20 && < 1.21,
++ HaXml >= 1.22 && < 1.26,
++ hscolour >= 1.20 && < 1.23,
+ blaze-html >= 0.5 && < 0.8,
+ cmdargs >= 0.9.5 && < 0.11,
+ haxr >= 3000.9 && < 3000.11,
+- pandoc >= 1.12 && < 1.13,
++ pandoc >= 1.12 && < 1.14,
+ pandoc-types >= 1.12 && < 1.13,
+- pandoc-citeproc >= 0.1.2 && < 0.4,
++ pandoc-citeproc >= 0.1.2 && < 0.7,
+ highlighting-kate >= 0.5 && < 0.6,
+ data-default >= 0.5 && < 0.6,
+- lens >= 3.8 && < 4.3
++ lens >= 3.8 && < 4.7
+ Exposed-modules: Text.BlogLiterately
+ Text.BlogLiterately.Block
+ Text.BlogLiterately.Ghci
diff --git a/patches/BlogLiterately/0.7.1.7/series b/patches/BlogLiterately/0.7.1.7/series
new file mode 100644
index 0000000..461869a
--- /dev/null
+++ b/patches/BlogLiterately/0.7.1.7/series
@@ -0,0 +1 @@
+extend-upper-bounds
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-haskell/package-plan.git
More information about the Pkg-haskell-commits
mailing list