[arch-commits] Commit in haskell-yesod-core/repos (12 files)

Felix Yan fyan at archlinux.org
Fri Apr 29 05:18:11 UTC 2016


    Date: Friday, April 29, 2016 @ 07:18:11
  Author: fyan
Revision: 172589

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-yesod-core/repos/community-staging-i686/PKGBUILD
    (from rev 172588, haskell-yesod-core/trunk/PKGBUILD)
  haskell-yesod-core/repos/community-staging-i686/date-cache.patch
    (from rev 172588, haskell-yesod-core/trunk/date-cache.patch)
  haskell-yesod-core/repos/community-staging-i686/haskell-yesod-core.install
    (from rev 172588, haskell-yesod-core/trunk/haskell-yesod-core.install)
  haskell-yesod-core/repos/community-staging-x86_64/PKGBUILD
    (from rev 172588, haskell-yesod-core/trunk/PKGBUILD)
  haskell-yesod-core/repos/community-staging-x86_64/date-cache.patch
    (from rev 172588, haskell-yesod-core/trunk/date-cache.patch)
  haskell-yesod-core/repos/community-staging-x86_64/haskell-yesod-core.install
    (from rev 172588, haskell-yesod-core/trunk/haskell-yesod-core.install)
Deleted:
  haskell-yesod-core/repos/community-staging-i686/PKGBUILD
  haskell-yesod-core/repos/community-staging-i686/date-cache.patch
  haskell-yesod-core/repos/community-staging-i686/haskell-yesod-core.install
  haskell-yesod-core/repos/community-staging-x86_64/PKGBUILD
  haskell-yesod-core/repos/community-staging-x86_64/date-cache.patch
  haskell-yesod-core/repos/community-staging-x86_64/haskell-yesod-core.install

-----------------------------------------------------+
 /PKGBUILD                                           |  126 ++++++++++++++++++
 /date-cache.patch                                   |   50 +++++++
 /haskell-yesod-core.install                         |   36 +++++
 community-staging-i686/PKGBUILD                     |   63 ---------
 community-staging-i686/date-cache.patch             |   25 ---
 community-staging-i686/haskell-yesod-core.install   |   18 --
 community-staging-x86_64/PKGBUILD                   |   63 ---------
 community-staging-x86_64/date-cache.patch           |   25 ---
 community-staging-x86_64/haskell-yesod-core.install |   18 --
 9 files changed, 212 insertions(+), 212 deletions(-)

Deleted: community-staging-i686/PKGBUILD
===================================================================
--- community-staging-i686/PKGBUILD	2016-04-29 05:17:31 UTC (rev 172588)
+++ community-staging-i686/PKGBUILD	2016-04-29 05:18:11 UTC (rev 172589)
@@ -1,63 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan <felixonmars at archlinux.org>
-# Contributor: Arch Haskell Team <arch-haskell at haskell.org>
-
-_hkgname=yesod-core
-pkgname=haskell-yesod-core
-pkgver=1.4.20.1
-pkgrel=3
-pkgdesc="Creation of type-safe, RESTful web applications."
-url="http://www.yesodweb.com/"
-license=("MIT")
-arch=('i686' 'x86_64')
-depends=("ghc=7.10.3" "haskell-aeson" "haskell-auto-update" "haskell-blaze-builder"
-         "haskell-blaze-html" "haskell-blaze-markup" "haskell-byteable"
-         "haskell-case-insensitive" "haskell-cereal" "haskell-clientsession"
-         "haskell-conduit" "haskell-conduit-extra" "haskell-cookie"
-         "haskell-data-default" "haskell-date-cache" "haskell-exceptions"
-         "haskell-fast-logger" "haskell-http-types" "haskell-lifted-base"
-         "haskell-monad-control" "haskell-monad-logger" "haskell-mtl"
-         "haskell-mwc-random" "haskell-old-locale" "haskell-parsec"
-         "haskell-path-pieces" "haskell-primitive" "haskell-random"
-         "haskell-resourcet" "haskell-safe" "haskell-semigroups" "haskell-shakespeare"
-         "haskell-text" "haskell-transformers-base" "haskell-unix-compat"
-         "haskell-unordered-containers" "haskell-vector" "haskell-wai"
-         "haskell-wai-extra" "haskell-wai-logger" "haskell-warp" "haskell-word8")
-options=('staticlibs')
-source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz"
-        date-cache.patch)
-install="${pkgname}.install"
-sha256sums=('e742d6cb5b7f65b97f9dbb7e9586ef4cc27169aa7ac7a030119e6c52b69c4f86'
-            '4eb8e78836f118e16de0d7a94c1d72421b83c6001825766300b961bf398c985e')
-
-prepare() {
-    cd "${srcdir}/${_hkgname}-${pkgver}"
-
-    # https://github.com/yesodweb/yesod/issues/1214
-    patch -p2 -i ../date-cache.patch
-}
-
-build() {
-    cd "${srcdir}/${_hkgname}-${pkgver}"
-    
-    runhaskell Setup configure -O --enable-library-profiling --enable-shared \
-        --prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
-        --libsubdir=\$compiler/site-local/\$pkgid
-    runhaskell Setup build
-    runhaskell Setup haddock --hoogle --html
-    runhaskell Setup register --gen-script
-    runhaskell Setup unregister --gen-script
-    sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
-}
-
-package() {
-    cd "${srcdir}/${_hkgname}-${pkgver}"
-    
-    install -D -m744 register.sh   "${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
-    install    -m744 unregister.sh "${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
-    install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
-    ln -s "/usr/share/doc/${pkgname}/html" "${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
-    runhaskell Setup copy --destdir="${pkgdir}"
-    install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-    rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
-}

Copied: haskell-yesod-core/repos/community-staging-i686/PKGBUILD (from rev 172588, haskell-yesod-core/trunk/PKGBUILD)
===================================================================
--- community-staging-i686/PKGBUILD	                        (rev 0)
+++ community-staging-i686/PKGBUILD	2016-04-29 05:18:11 UTC (rev 172589)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Arch Haskell Team <arch-haskell at haskell.org>
+
+_hkgname=yesod-core
+pkgname=haskell-yesod-core
+pkgver=1.4.20.2
+pkgrel=1
+pkgdesc="Creation of type-safe, RESTful web applications."
+url="http://www.yesodweb.com/"
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-auto-update" "haskell-blaze-builder"
+         "haskell-blaze-html" "haskell-blaze-markup" "haskell-byteable"
+         "haskell-case-insensitive" "haskell-cereal" "haskell-clientsession"
+         "haskell-conduit" "haskell-conduit-extra" "haskell-cookie"
+         "haskell-data-default" "haskell-date-cache" "haskell-exceptions"
+         "haskell-fast-logger" "haskell-http-types" "haskell-lifted-base"
+         "haskell-monad-control" "haskell-monad-logger" "haskell-mtl"
+         "haskell-mwc-random" "haskell-old-locale" "haskell-parsec"
+         "haskell-path-pieces" "haskell-primitive" "haskell-random"
+         "haskell-resourcet" "haskell-safe" "haskell-semigroups" "haskell-shakespeare"
+         "haskell-text" "haskell-transformers-base" "haskell-unix-compat"
+         "haskell-unordered-containers" "haskell-vector" "haskell-wai"
+         "haskell-wai-extra" "haskell-wai-logger" "haskell-warp" "haskell-word8")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz"
+        date-cache.patch)
+install="${pkgname}.install"
+sha256sums=('cfa62e47de410bff1fd37571a3c7fda92b0a5cd28e1df8d466c7a65b5a2e6f28'
+            '4eb8e78836f118e16de0d7a94c1d72421b83c6001825766300b961bf398c985e')
+
+prepare() {
+    cd "${srcdir}/${_hkgname}-${pkgver}"
+
+    # https://github.com/yesodweb/yesod/issues/1214
+    patch -p2 -i ../date-cache.patch
+}
+
+build() {
+    cd "${srcdir}/${_hkgname}-${pkgver}"
+    
+    runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+        --prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+        --libsubdir=\$compiler/site-local/\$pkgid
+    runhaskell Setup build
+    runhaskell Setup haddock --hoogle --html
+    runhaskell Setup register --gen-script
+    runhaskell Setup unregister --gen-script
+    sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+    cd "${srcdir}/${_hkgname}-${pkgver}"
+    
+    install -D -m744 register.sh   "${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+    install    -m744 unregister.sh "${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+    install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+    ln -s "/usr/share/doc/${pkgname}/html" "${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+    runhaskell Setup copy --destdir="${pkgdir}"
+    install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+    rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Deleted: community-staging-i686/date-cache.patch
===================================================================
--- community-staging-i686/date-cache.patch	2016-04-29 05:17:31 UTC (rev 172588)
+++ community-staging-i686/date-cache.patch	2016-04-29 05:18:11 UTC (rev 172589)
@@ -1,25 +0,0 @@
-diff --git a/yesod-core/Yesod/Core/Types.hs b/yesod-core/Yesod/Core/Types.hs
-index d8a2b2e..6b24154 100644
---- a/yesod-core/Yesod/Core/Types.hs
-+++ b/yesod-core/Yesod/Core/Types.hs
-@@ -49,7 +49,7 @@ import qualified Network.Wai                        as W
- import qualified Network.Wai.Parse                  as NWP
- import           System.Log.FastLogger              (LogStr, LoggerSet, toLogStr, pushLogStr)
- import qualified System.Random.MWC                  as MWC
--import           Network.Wai.Logger                 (DateCacheGetter)
-+import           System.Date.Cache                  (DateCacheGetter)
- import           Text.Blaze.Html                    (Html, toHtml)
- import           Text.Hamlet                        (HtmlUrl)
- import           Text.Julius                        (JavascriptUrl)
-diff --git a/yesod-core/yesod-core.cabal b/yesod-core/yesod-core.cabal
-index 1ed8b27..cfa34bb 100644
---- a/yesod-core/yesod-core.cabal
-+++ b/yesod-core/yesod-core.cabal
-@@ -51,6 +51,7 @@ library
-                    , aeson                 >= 0.5
-                    , fast-logger           >= 2.2
-                    , wai-logger            >= 0.2
-+                   , date-cache
-                    , monad-logger          >= 0.3.1    && < 0.4
-                    , conduit               >= 1.2
-                    , resourcet             >= 0.4.9    && < 1.2

Copied: haskell-yesod-core/repos/community-staging-i686/date-cache.patch (from rev 172588, haskell-yesod-core/trunk/date-cache.patch)
===================================================================
--- community-staging-i686/date-cache.patch	                        (rev 0)
+++ community-staging-i686/date-cache.patch	2016-04-29 05:18:11 UTC (rev 172589)
@@ -0,0 +1,25 @@
+diff --git a/yesod-core/Yesod/Core/Types.hs b/yesod-core/Yesod/Core/Types.hs
+index d8a2b2e..6b24154 100644
+--- a/yesod-core/Yesod/Core/Types.hs
++++ b/yesod-core/Yesod/Core/Types.hs
+@@ -49,7 +49,7 @@ import qualified Network.Wai                        as W
+ import qualified Network.Wai.Parse                  as NWP
+ import           System.Log.FastLogger              (LogStr, LoggerSet, toLogStr, pushLogStr)
+ import qualified System.Random.MWC                  as MWC
+-import           Network.Wai.Logger                 (DateCacheGetter)
++import           System.Date.Cache                  (DateCacheGetter)
+ import           Text.Blaze.Html                    (Html, toHtml)
+ import           Text.Hamlet                        (HtmlUrl)
+ import           Text.Julius                        (JavascriptUrl)
+diff --git a/yesod-core/yesod-core.cabal b/yesod-core/yesod-core.cabal
+index 1ed8b27..cfa34bb 100644
+--- a/yesod-core/yesod-core.cabal
++++ b/yesod-core/yesod-core.cabal
+@@ -51,6 +51,7 @@ library
+                    , aeson                 >= 0.5
+                    , fast-logger           >= 2.2
+                    , wai-logger            >= 0.2
++                   , date-cache
+                    , monad-logger          >= 0.3.1    && < 0.4
+                    , conduit               >= 1.2
+                    , resourcet             >= 0.4.9    && < 1.2

Deleted: community-staging-i686/haskell-yesod-core.install
===================================================================
--- community-staging-i686/haskell-yesod-core.install	2016-04-29 05:17:31 UTC (rev 172588)
+++ community-staging-i686/haskell-yesod-core.install	2016-04-29 05:18:11 UTC (rev 172589)
@@ -1,18 +0,0 @@
-HS_DIR=usr/share/haskell/haskell-yesod-core
-post_install() {
-  ${HS_DIR}/register.sh
-  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
-}
-pre_upgrade() {
-  ${HS_DIR}/unregister.sh
-}
-post_upgrade() {
-  ${HS_DIR}/register.sh
-  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
-}
-pre_remove() {
-  ${HS_DIR}/unregister.sh
-}
-post_remove() {
-  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
-}

Copied: haskell-yesod-core/repos/community-staging-i686/haskell-yesod-core.install (from rev 172588, haskell-yesod-core/trunk/haskell-yesod-core.install)
===================================================================
--- community-staging-i686/haskell-yesod-core.install	                        (rev 0)
+++ community-staging-i686/haskell-yesod-core.install	2016-04-29 05:18:11 UTC (rev 172589)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-yesod-core
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Deleted: community-staging-x86_64/PKGBUILD
===================================================================
--- community-staging-x86_64/PKGBUILD	2016-04-29 05:17:31 UTC (rev 172588)
+++ community-staging-x86_64/PKGBUILD	2016-04-29 05:18:11 UTC (rev 172589)
@@ -1,63 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan <felixonmars at archlinux.org>
-# Contributor: Arch Haskell Team <arch-haskell at haskell.org>
-
-_hkgname=yesod-core
-pkgname=haskell-yesod-core
-pkgver=1.4.20.1
-pkgrel=3
-pkgdesc="Creation of type-safe, RESTful web applications."
-url="http://www.yesodweb.com/"
-license=("MIT")
-arch=('i686' 'x86_64')
-depends=("ghc=7.10.3" "haskell-aeson" "haskell-auto-update" "haskell-blaze-builder"
-         "haskell-blaze-html" "haskell-blaze-markup" "haskell-byteable"
-         "haskell-case-insensitive" "haskell-cereal" "haskell-clientsession"
-         "haskell-conduit" "haskell-conduit-extra" "haskell-cookie"
-         "haskell-data-default" "haskell-date-cache" "haskell-exceptions"
-         "haskell-fast-logger" "haskell-http-types" "haskell-lifted-base"
-         "haskell-monad-control" "haskell-monad-logger" "haskell-mtl"
-         "haskell-mwc-random" "haskell-old-locale" "haskell-parsec"
-         "haskell-path-pieces" "haskell-primitive" "haskell-random"
-         "haskell-resourcet" "haskell-safe" "haskell-semigroups" "haskell-shakespeare"
-         "haskell-text" "haskell-transformers-base" "haskell-unix-compat"
-         "haskell-unordered-containers" "haskell-vector" "haskell-wai"
-         "haskell-wai-extra" "haskell-wai-logger" "haskell-warp" "haskell-word8")
-options=('staticlibs')
-source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz"
-        date-cache.patch)
-install="${pkgname}.install"
-sha256sums=('e742d6cb5b7f65b97f9dbb7e9586ef4cc27169aa7ac7a030119e6c52b69c4f86'
-            '4eb8e78836f118e16de0d7a94c1d72421b83c6001825766300b961bf398c985e')
-
-prepare() {
-    cd "${srcdir}/${_hkgname}-${pkgver}"
-
-    # https://github.com/yesodweb/yesod/issues/1214
-    patch -p2 -i ../date-cache.patch
-}
-
-build() {
-    cd "${srcdir}/${_hkgname}-${pkgver}"
-    
-    runhaskell Setup configure -O --enable-library-profiling --enable-shared \
-        --prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
-        --libsubdir=\$compiler/site-local/\$pkgid
-    runhaskell Setup build
-    runhaskell Setup haddock --hoogle --html
-    runhaskell Setup register --gen-script
-    runhaskell Setup unregister --gen-script
-    sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
-}
-
-package() {
-    cd "${srcdir}/${_hkgname}-${pkgver}"
-    
-    install -D -m744 register.sh   "${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
-    install    -m744 unregister.sh "${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
-    install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
-    ln -s "/usr/share/doc/${pkgname}/html" "${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
-    runhaskell Setup copy --destdir="${pkgdir}"
-    install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-    rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
-}

Copied: haskell-yesod-core/repos/community-staging-x86_64/PKGBUILD (from rev 172588, haskell-yesod-core/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2016-04-29 05:18:11 UTC (rev 172589)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Arch Haskell Team <arch-haskell at haskell.org>
+
+_hkgname=yesod-core
+pkgname=haskell-yesod-core
+pkgver=1.4.20.2
+pkgrel=1
+pkgdesc="Creation of type-safe, RESTful web applications."
+url="http://www.yesodweb.com/"
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-auto-update" "haskell-blaze-builder"
+         "haskell-blaze-html" "haskell-blaze-markup" "haskell-byteable"
+         "haskell-case-insensitive" "haskell-cereal" "haskell-clientsession"
+         "haskell-conduit" "haskell-conduit-extra" "haskell-cookie"
+         "haskell-data-default" "haskell-date-cache" "haskell-exceptions"
+         "haskell-fast-logger" "haskell-http-types" "haskell-lifted-base"
+         "haskell-monad-control" "haskell-monad-logger" "haskell-mtl"
+         "haskell-mwc-random" "haskell-old-locale" "haskell-parsec"
+         "haskell-path-pieces" "haskell-primitive" "haskell-random"
+         "haskell-resourcet" "haskell-safe" "haskell-semigroups" "haskell-shakespeare"
+         "haskell-text" "haskell-transformers-base" "haskell-unix-compat"
+         "haskell-unordered-containers" "haskell-vector" "haskell-wai"
+         "haskell-wai-extra" "haskell-wai-logger" "haskell-warp" "haskell-word8")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz"
+        date-cache.patch)
+install="${pkgname}.install"
+sha256sums=('cfa62e47de410bff1fd37571a3c7fda92b0a5cd28e1df8d466c7a65b5a2e6f28'
+            '4eb8e78836f118e16de0d7a94c1d72421b83c6001825766300b961bf398c985e')
+
+prepare() {
+    cd "${srcdir}/${_hkgname}-${pkgver}"
+
+    # https://github.com/yesodweb/yesod/issues/1214
+    patch -p2 -i ../date-cache.patch
+}
+
+build() {
+    cd "${srcdir}/${_hkgname}-${pkgver}"
+    
+    runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+        --prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+        --libsubdir=\$compiler/site-local/\$pkgid
+    runhaskell Setup build
+    runhaskell Setup haddock --hoogle --html
+    runhaskell Setup register --gen-script
+    runhaskell Setup unregister --gen-script
+    sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+    cd "${srcdir}/${_hkgname}-${pkgver}"
+    
+    install -D -m744 register.sh   "${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+    install    -m744 unregister.sh "${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+    install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+    ln -s "/usr/share/doc/${pkgname}/html" "${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+    runhaskell Setup copy --destdir="${pkgdir}"
+    install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+    rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Deleted: community-staging-x86_64/date-cache.patch
===================================================================
--- community-staging-x86_64/date-cache.patch	2016-04-29 05:17:31 UTC (rev 172588)
+++ community-staging-x86_64/date-cache.patch	2016-04-29 05:18:11 UTC (rev 172589)
@@ -1,25 +0,0 @@
-diff --git a/yesod-core/Yesod/Core/Types.hs b/yesod-core/Yesod/Core/Types.hs
-index d8a2b2e..6b24154 100644
---- a/yesod-core/Yesod/Core/Types.hs
-+++ b/yesod-core/Yesod/Core/Types.hs
-@@ -49,7 +49,7 @@ import qualified Network.Wai                        as W
- import qualified Network.Wai.Parse                  as NWP
- import           System.Log.FastLogger              (LogStr, LoggerSet, toLogStr, pushLogStr)
- import qualified System.Random.MWC                  as MWC
--import           Network.Wai.Logger                 (DateCacheGetter)
-+import           System.Date.Cache                  (DateCacheGetter)
- import           Text.Blaze.Html                    (Html, toHtml)
- import           Text.Hamlet                        (HtmlUrl)
- import           Text.Julius                        (JavascriptUrl)
-diff --git a/yesod-core/yesod-core.cabal b/yesod-core/yesod-core.cabal
-index 1ed8b27..cfa34bb 100644
---- a/yesod-core/yesod-core.cabal
-+++ b/yesod-core/yesod-core.cabal
-@@ -51,6 +51,7 @@ library
-                    , aeson                 >= 0.5
-                    , fast-logger           >= 2.2
-                    , wai-logger            >= 0.2
-+                   , date-cache
-                    , monad-logger          >= 0.3.1    && < 0.4
-                    , conduit               >= 1.2
-                    , resourcet             >= 0.4.9    && < 1.2

Copied: haskell-yesod-core/repos/community-staging-x86_64/date-cache.patch (from rev 172588, haskell-yesod-core/trunk/date-cache.patch)
===================================================================
--- community-staging-x86_64/date-cache.patch	                        (rev 0)
+++ community-staging-x86_64/date-cache.patch	2016-04-29 05:18:11 UTC (rev 172589)
@@ -0,0 +1,25 @@
+diff --git a/yesod-core/Yesod/Core/Types.hs b/yesod-core/Yesod/Core/Types.hs
+index d8a2b2e..6b24154 100644
+--- a/yesod-core/Yesod/Core/Types.hs
++++ b/yesod-core/Yesod/Core/Types.hs
+@@ -49,7 +49,7 @@ import qualified Network.Wai                        as W
+ import qualified Network.Wai.Parse                  as NWP
+ import           System.Log.FastLogger              (LogStr, LoggerSet, toLogStr, pushLogStr)
+ import qualified System.Random.MWC                  as MWC
+-import           Network.Wai.Logger                 (DateCacheGetter)
++import           System.Date.Cache                  (DateCacheGetter)
+ import           Text.Blaze.Html                    (Html, toHtml)
+ import           Text.Hamlet                        (HtmlUrl)
+ import           Text.Julius                        (JavascriptUrl)
+diff --git a/yesod-core/yesod-core.cabal b/yesod-core/yesod-core.cabal
+index 1ed8b27..cfa34bb 100644
+--- a/yesod-core/yesod-core.cabal
++++ b/yesod-core/yesod-core.cabal
+@@ -51,6 +51,7 @@ library
+                    , aeson                 >= 0.5
+                    , fast-logger           >= 2.2
+                    , wai-logger            >= 0.2
++                   , date-cache
+                    , monad-logger          >= 0.3.1    && < 0.4
+                    , conduit               >= 1.2
+                    , resourcet             >= 0.4.9    && < 1.2

Deleted: community-staging-x86_64/haskell-yesod-core.install
===================================================================
--- community-staging-x86_64/haskell-yesod-core.install	2016-04-29 05:17:31 UTC (rev 172588)
+++ community-staging-x86_64/haskell-yesod-core.install	2016-04-29 05:18:11 UTC (rev 172589)
@@ -1,18 +0,0 @@
-HS_DIR=usr/share/haskell/haskell-yesod-core
-post_install() {
-  ${HS_DIR}/register.sh
-  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
-}
-pre_upgrade() {
-  ${HS_DIR}/unregister.sh
-}
-post_upgrade() {
-  ${HS_DIR}/register.sh
-  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
-}
-pre_remove() {
-  ${HS_DIR}/unregister.sh
-}
-post_remove() {
-  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
-}

Copied: haskell-yesod-core/repos/community-staging-x86_64/haskell-yesod-core.install (from rev 172588, haskell-yesod-core/trunk/haskell-yesod-core.install)
===================================================================
--- community-staging-x86_64/haskell-yesod-core.install	                        (rev 0)
+++ community-staging-x86_64/haskell-yesod-core.install	2016-04-29 05:18:11 UTC (rev 172589)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-yesod-core
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}



More information about the arch-commits mailing list