[arch-commits] Commit in haskell-profunctors/repos (6 files)

2016-04-28 Thread Felix Yan
Date: Friday, April 29, 2016 @ 05:22:38
  Author: fyan
Revision: 172529

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

Added:
  haskell-profunctors/repos/community-staging-i686/
  haskell-profunctors/repos/community-staging-i686/PKGBUILD
(from rev 172528, haskell-profunctors/trunk/PKGBUILD)
  haskell-profunctors/repos/community-staging-i686/haskell-profunctors.install
(from rev 172528, haskell-profunctors/trunk/haskell-profunctors.install)
  haskell-profunctors/repos/community-staging-x86_64/
  haskell-profunctors/repos/community-staging-x86_64/PKGBUILD
(from rev 172528, haskell-profunctors/trunk/PKGBUILD)
  haskell-profunctors/repos/community-staging-x86_64/haskell-profunctors.install
(from rev 172528, haskell-profunctors/trunk/haskell-profunctors.install)

--+
 community-staging-i686/PKGBUILD  |   43 +
 community-staging-i686/haskell-profunctors.install   |   18 +++
 community-staging-x86_64/PKGBUILD|   43 +
 community-staging-x86_64/haskell-profunctors.install |   18 +++
 4 files changed, 122 insertions(+)

Copied: haskell-profunctors/repos/community-staging-i686/PKGBUILD (from rev 
172528, haskell-profunctors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-04-29 03:22:38 UTC (rev 172529)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=profunctors
+pkgname=haskell-profunctors
+pkgver=5.2
+pkgrel=13
+pkgdesc="Profunctors"
+url="http://github.com/ekmett/profunctors/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-base-orphans" "haskell-bifunctors" 
"haskell-comonad"
+ "haskell-contravariant" "haskell-distributive" "haskell-tagged")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('87a7e25c4745ea8ff479dd1212ec2e57710abb3d3dd30f948fa16be1d3ee05a4')
+
+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-profunctors/repos/community-staging-i686/haskell-profunctors.install 
(from rev 172528, haskell-profunctors/trunk/haskell-profunctors.install)
===
--- community-staging-i686/haskell-profunctors.install  
(rev 0)
+++ community-staging-i686/haskell-profunctors.install  2016-04-29 03:22:38 UTC 
(rev 172529)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-profunctors
+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-profunctors/repos/community-staging-x86_64/PKGBUILD (from rev 
172528, haskell-profunctors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-04-29 03:22:38 UTC (rev 172529)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=profunctors
+pkgname=haskell-profunctors
+pkgver=5.2
+pkgrel=13
+pkgdesc="Profunctors"
+url="http://github.com/ekmett/profunctors/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-base-orphans" "haskell-bifunctors" 
"haskell-comonad"
+ "haskell-contravariant" "haskell-distributive" "haskell-tagged")
+options=('stati

[arch-commits] Commit in haskell-profunctors/repos (6 files)

2016-04-13 Thread Felix Yan
Date: Thursday, April 14, 2016 @ 08:36:56
  Author: fyan
Revision: 170886

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

Added:
  haskell-profunctors/repos/community-staging-i686/
  haskell-profunctors/repos/community-staging-i686/PKGBUILD
(from rev 170885, haskell-profunctors/trunk/PKGBUILD)
  haskell-profunctors/repos/community-staging-i686/haskell-profunctors.install
(from rev 170885, haskell-profunctors/trunk/haskell-profunctors.install)
  haskell-profunctors/repos/community-staging-x86_64/
  haskell-profunctors/repos/community-staging-x86_64/PKGBUILD
(from rev 170885, haskell-profunctors/trunk/PKGBUILD)
  haskell-profunctors/repos/community-staging-x86_64/haskell-profunctors.install
(from rev 170885, haskell-profunctors/trunk/haskell-profunctors.install)

--+
 community-staging-i686/PKGBUILD  |   43 +
 community-staging-i686/haskell-profunctors.install   |   18 +++
 community-staging-x86_64/PKGBUILD|   43 +
 community-staging-x86_64/haskell-profunctors.install |   18 +++
 4 files changed, 122 insertions(+)

Copied: haskell-profunctors/repos/community-staging-i686/PKGBUILD (from rev 
170885, haskell-profunctors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-04-14 06:36:56 UTC (rev 170886)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=profunctors
+pkgname=haskell-profunctors
+pkgver=5.2
+pkgrel=12
+pkgdesc="Profunctors"
+url="http://github.com/ekmett/profunctors/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-base-orphans" "haskell-bifunctors" 
"haskell-comonad"
+ "haskell-contravariant" "haskell-distributive" "haskell-tagged")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('87a7e25c4745ea8ff479dd1212ec2e57710abb3d3dd30f948fa16be1d3ee05a4')
+
+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-profunctors/repos/community-staging-i686/haskell-profunctors.install 
(from rev 170885, haskell-profunctors/trunk/haskell-profunctors.install)
===
--- community-staging-i686/haskell-profunctors.install  
(rev 0)
+++ community-staging-i686/haskell-profunctors.install  2016-04-14 06:36:56 UTC 
(rev 170886)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-profunctors
+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-profunctors/repos/community-staging-x86_64/PKGBUILD (from rev 
170885, haskell-profunctors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-04-14 06:36:56 UTC (rev 170886)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=profunctors
+pkgname=haskell-profunctors
+pkgver=5.2
+pkgrel=12
+pkgdesc="Profunctors"
+url="http://github.com/ekmett/profunctors/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-base-orphans" "haskell-bifunctors" 
"haskell-comonad"
+ "haskell-contravariant" "haskell-distributive" "haskell-tagged")
+options=('sta

[arch-commits] Commit in haskell-profunctors/repos (6 files)

2016-04-11 Thread Felix Yan
Date: Tuesday, April 12, 2016 @ 08:47:14
  Author: fyan
Revision: 170585

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

Added:
  haskell-profunctors/repos/community-staging-i686/
  haskell-profunctors/repos/community-staging-i686/PKGBUILD
(from rev 170584, haskell-profunctors/trunk/PKGBUILD)
  haskell-profunctors/repos/community-staging-i686/haskell-profunctors.install
(from rev 170584, haskell-profunctors/trunk/haskell-profunctors.install)
  haskell-profunctors/repos/community-staging-x86_64/
  haskell-profunctors/repos/community-staging-x86_64/PKGBUILD
(from rev 170584, haskell-profunctors/trunk/PKGBUILD)
  haskell-profunctors/repos/community-staging-x86_64/haskell-profunctors.install
(from rev 170584, haskell-profunctors/trunk/haskell-profunctors.install)

--+
 community-staging-i686/PKGBUILD  |   43 +
 community-staging-i686/haskell-profunctors.install   |   18 +++
 community-staging-x86_64/PKGBUILD|   43 +
 community-staging-x86_64/haskell-profunctors.install |   18 +++
 4 files changed, 122 insertions(+)

Copied: haskell-profunctors/repos/community-staging-i686/PKGBUILD (from rev 
170584, haskell-profunctors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-04-12 06:47:14 UTC (rev 170585)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=profunctors
+pkgname=haskell-profunctors
+pkgver=5.2
+pkgrel=11
+pkgdesc="Profunctors"
+url="http://github.com/ekmett/profunctors/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-base-orphans" "haskell-bifunctors" 
"haskell-comonad"
+ "haskell-contravariant" "haskell-distributive" "haskell-tagged")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('87a7e25c4745ea8ff479dd1212ec2e57710abb3d3dd30f948fa16be1d3ee05a4')
+
+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-profunctors/repos/community-staging-i686/haskell-profunctors.install 
(from rev 170584, haskell-profunctors/trunk/haskell-profunctors.install)
===
--- community-staging-i686/haskell-profunctors.install  
(rev 0)
+++ community-staging-i686/haskell-profunctors.install  2016-04-12 06:47:14 UTC 
(rev 170585)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-profunctors
+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-profunctors/repos/community-staging-x86_64/PKGBUILD (from rev 
170584, haskell-profunctors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-04-12 06:47:14 UTC (rev 170585)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=profunctors
+pkgname=haskell-profunctors
+pkgver=5.2
+pkgrel=11
+pkgdesc="Profunctors"
+url="http://github.com/ekmett/profunctors/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-base-orphans" "haskell-bifunctors" 
"haskell-comonad"
+ "haskell-contravariant" "haskell-distributive" "haskell-tagged")
+options=('stat

[arch-commits] Commit in haskell-profunctors/repos (6 files)

2016-04-09 Thread Felix Yan
Date: Saturday, April 9, 2016 @ 19:00:46
  Author: fyan
Revision: 169915

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

Added:
  haskell-profunctors/repos/community-staging-i686/
  haskell-profunctors/repos/community-staging-i686/PKGBUILD
(from rev 169914, haskell-profunctors/trunk/PKGBUILD)
  haskell-profunctors/repos/community-staging-i686/haskell-profunctors.install
(from rev 169914, haskell-profunctors/trunk/haskell-profunctors.install)
  haskell-profunctors/repos/community-staging-x86_64/
  haskell-profunctors/repos/community-staging-x86_64/PKGBUILD
(from rev 169914, haskell-profunctors/trunk/PKGBUILD)
  haskell-profunctors/repos/community-staging-x86_64/haskell-profunctors.install
(from rev 169914, haskell-profunctors/trunk/haskell-profunctors.install)

--+
 community-staging-i686/PKGBUILD  |   43 +
 community-staging-i686/haskell-profunctors.install   |   18 +++
 community-staging-x86_64/PKGBUILD|   43 +
 community-staging-x86_64/haskell-profunctors.install |   18 +++
 4 files changed, 122 insertions(+)

Copied: haskell-profunctors/repos/community-staging-i686/PKGBUILD (from rev 
169914, haskell-profunctors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-04-09 17:00:46 UTC (rev 169915)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=profunctors
+pkgname=haskell-profunctors
+pkgver=5.2
+pkgrel=10
+pkgdesc="Profunctors"
+url="http://github.com/ekmett/profunctors/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-base-orphans" "haskell-bifunctors" 
"haskell-comonad"
+ "haskell-contravariant" "haskell-distributive" "haskell-tagged")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('87a7e25c4745ea8ff479dd1212ec2e57710abb3d3dd30f948fa16be1d3ee05a4')
+
+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-profunctors/repos/community-staging-i686/haskell-profunctors.install 
(from rev 169914, haskell-profunctors/trunk/haskell-profunctors.install)
===
--- community-staging-i686/haskell-profunctors.install  
(rev 0)
+++ community-staging-i686/haskell-profunctors.install  2016-04-09 17:00:46 UTC 
(rev 169915)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-profunctors
+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-profunctors/repos/community-staging-x86_64/PKGBUILD (from rev 
169914, haskell-profunctors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-04-09 17:00:46 UTC (rev 169915)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=profunctors
+pkgname=haskell-profunctors
+pkgver=5.2
+pkgrel=10
+pkgdesc="Profunctors"
+url="http://github.com/ekmett/profunctors/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-base-orphans" "haskell-bifunctors" 
"haskell-comonad"
+ "haskell-contravariant" "haskell-distributive" "haskell-tagged")
+options=('stat

[arch-commits] Commit in haskell-profunctors/repos (6 files)

2016-03-19 Thread Felix Yan
Date: Friday, March 18, 2016 @ 05:17:13
  Author: fyan
Revision: 167097

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

Added:
  haskell-profunctors/repos/community-staging-i686/
  haskell-profunctors/repos/community-staging-i686/PKGBUILD
(from rev 167096, haskell-profunctors/trunk/PKGBUILD)
  haskell-profunctors/repos/community-staging-i686/haskell-profunctors.install
(from rev 167096, haskell-profunctors/trunk/haskell-profunctors.install)
  haskell-profunctors/repos/community-staging-x86_64/
  haskell-profunctors/repos/community-staging-x86_64/PKGBUILD
(from rev 167096, haskell-profunctors/trunk/PKGBUILD)
  haskell-profunctors/repos/community-staging-x86_64/haskell-profunctors.install
(from rev 167096, haskell-profunctors/trunk/haskell-profunctors.install)

--+
 community-staging-i686/PKGBUILD  |   43 +
 community-staging-i686/haskell-profunctors.install   |   18 +++
 community-staging-x86_64/PKGBUILD|   43 +
 community-staging-x86_64/haskell-profunctors.install |   18 +++
 4 files changed, 122 insertions(+)

Copied: haskell-profunctors/repos/community-staging-i686/PKGBUILD (from rev 
167096, haskell-profunctors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-18 04:17:13 UTC (rev 167097)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=profunctors
+pkgname=haskell-profunctors
+pkgver=5.2
+pkgrel=9
+pkgdesc="Profunctors"
+url="http://github.com/ekmett/profunctors/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-base-orphans" "haskell-bifunctors" 
"haskell-comonad"
+ "haskell-contravariant" "haskell-distributive" "haskell-tagged")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('87a7e25c4745ea8ff479dd1212ec2e57710abb3d3dd30f948fa16be1d3ee05a4')
+
+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-profunctors/repos/community-staging-i686/haskell-profunctors.install 
(from rev 167096, haskell-profunctors/trunk/haskell-profunctors.install)
===
--- community-staging-i686/haskell-profunctors.install  
(rev 0)
+++ community-staging-i686/haskell-profunctors.install  2016-03-18 04:17:13 UTC 
(rev 167097)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-profunctors
+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-profunctors/repos/community-staging-x86_64/PKGBUILD (from rev 
167096, haskell-profunctors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-18 04:17:13 UTC (rev 167097)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=profunctors
+pkgname=haskell-profunctors
+pkgver=5.2
+pkgrel=9
+pkgdesc="Profunctors"
+url="http://github.com/ekmett/profunctors/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-base-orphans" "haskell-bifunctors" 
"haskell-comonad"
+ "haskell-contravariant" "haskell-distributive" "haskell-tagged")
+options=('staticl

[arch-commits] Commit in haskell-profunctors/repos (6 files)

2016-03-01 Thread Felix Yan
Date: Wednesday, March 2, 2016 @ 05:57:23
  Author: fyan
Revision: 164047

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

Added:
  haskell-profunctors/repos/community-staging-i686/
  haskell-profunctors/repos/community-staging-i686/PKGBUILD
(from rev 164046, haskell-profunctors/trunk/PKGBUILD)
  haskell-profunctors/repos/community-staging-i686/haskell-profunctors.install
(from rev 164046, haskell-profunctors/trunk/haskell-profunctors.install)
  haskell-profunctors/repos/community-staging-x86_64/
  haskell-profunctors/repos/community-staging-x86_64/PKGBUILD
(from rev 164046, haskell-profunctors/trunk/PKGBUILD)
  haskell-profunctors/repos/community-staging-x86_64/haskell-profunctors.install
(from rev 164046, haskell-profunctors/trunk/haskell-profunctors.install)

--+
 community-staging-i686/PKGBUILD  |   43 +
 community-staging-i686/haskell-profunctors.install   |   18 +++
 community-staging-x86_64/PKGBUILD|   43 +
 community-staging-x86_64/haskell-profunctors.install |   18 +++
 4 files changed, 122 insertions(+)

Copied: haskell-profunctors/repos/community-staging-i686/PKGBUILD (from rev 
164046, haskell-profunctors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-02 04:57:23 UTC (rev 164047)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=profunctors
+pkgname=haskell-profunctors
+pkgver=5.2
+pkgrel=8
+pkgdesc="Profunctors"
+url="http://github.com/ekmett/profunctors/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-base-orphans" "haskell-bifunctors" 
"haskell-comonad"
+ "haskell-contravariant" "haskell-distributive" "haskell-tagged")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('87a7e25c4745ea8ff479dd1212ec2e57710abb3d3dd30f948fa16be1d3ee05a4')
+
+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-profunctors/repos/community-staging-i686/haskell-profunctors.install 
(from rev 164046, haskell-profunctors/trunk/haskell-profunctors.install)
===
--- community-staging-i686/haskell-profunctors.install  
(rev 0)
+++ community-staging-i686/haskell-profunctors.install  2016-03-02 04:57:23 UTC 
(rev 164047)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-profunctors
+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-profunctors/repos/community-staging-x86_64/PKGBUILD (from rev 
164046, haskell-profunctors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-02 04:57:23 UTC (rev 164047)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=profunctors
+pkgname=haskell-profunctors
+pkgver=5.2
+pkgrel=8
+pkgdesc="Profunctors"
+url="http://github.com/ekmett/profunctors/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-base-orphans" "haskell-bifunctors" 
"haskell-comonad"
+ "haskell-contravariant" "haskell-distributive" "haskell-tagged")
+options=('stati

[arch-commits] Commit in haskell-profunctors/repos (6 files)

2016-02-28 Thread Felix Yan
Date: Monday, February 29, 2016 @ 04:43:14
  Author: fyan
Revision: 163717

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

Added:
  haskell-profunctors/repos/community-staging-i686/
  haskell-profunctors/repos/community-staging-i686/PKGBUILD
(from rev 163715, haskell-profunctors/trunk/PKGBUILD)
  haskell-profunctors/repos/community-staging-i686/haskell-profunctors.install
(from rev 163715, haskell-profunctors/trunk/haskell-profunctors.install)
  haskell-profunctors/repos/community-staging-x86_64/
  haskell-profunctors/repos/community-staging-x86_64/PKGBUILD
(from rev 163716, haskell-profunctors/trunk/PKGBUILD)
  haskell-profunctors/repos/community-staging-x86_64/haskell-profunctors.install
(from rev 163716, haskell-profunctors/trunk/haskell-profunctors.install)

--+
 community-staging-i686/PKGBUILD  |   43 +
 community-staging-i686/haskell-profunctors.install   |   18 +++
 community-staging-x86_64/PKGBUILD|   43 +
 community-staging-x86_64/haskell-profunctors.install |   18 +++
 4 files changed, 122 insertions(+)

Copied: haskell-profunctors/repos/community-staging-i686/PKGBUILD (from rev 
163715, haskell-profunctors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-02-29 03:43:14 UTC (rev 163717)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=profunctors
+pkgname=haskell-profunctors
+pkgver=5.2
+pkgrel=7
+pkgdesc="Profunctors"
+url="http://github.com/ekmett/profunctors/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-base-orphans" "haskell-bifunctors" 
"haskell-comonad"
+ "haskell-contravariant" "haskell-distributive" "haskell-tagged")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('87a7e25c4745ea8ff479dd1212ec2e57710abb3d3dd30f948fa16be1d3ee05a4')
+
+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-profunctors/repos/community-staging-i686/haskell-profunctors.install 
(from rev 163715, haskell-profunctors/trunk/haskell-profunctors.install)
===
--- community-staging-i686/haskell-profunctors.install  
(rev 0)
+++ community-staging-i686/haskell-profunctors.install  2016-02-29 03:43:14 UTC 
(rev 163717)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-profunctors
+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-profunctors/repos/community-staging-x86_64/PKGBUILD (from rev 
163716, haskell-profunctors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-02-29 03:43:14 UTC (rev 163717)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=profunctors
+pkgname=haskell-profunctors
+pkgver=5.2
+pkgrel=7
+pkgdesc="Profunctors"
+url="http://github.com/ekmett/profunctors/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-base-orphans" "haskell-bifunctors" 
"haskell-comonad"
+ "haskell-contravariant" "haskell-distributive" "haskell-tagged")
+options=('stat

[arch-commits] Commit in haskell-profunctors/repos (6 files)

2016-02-17 Thread Felix Yan
Date: Wednesday, February 17, 2016 @ 10:11:50
  Author: fyan
Revision: 161970

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

Added:
  haskell-profunctors/repos/community-staging-i686/
  haskell-profunctors/repos/community-staging-i686/PKGBUILD
(from rev 161969, haskell-profunctors/trunk/PKGBUILD)
  haskell-profunctors/repos/community-staging-i686/haskell-profunctors.install
(from rev 161969, haskell-profunctors/trunk/haskell-profunctors.install)
  haskell-profunctors/repos/community-staging-x86_64/
  haskell-profunctors/repos/community-staging-x86_64/PKGBUILD
(from rev 161969, haskell-profunctors/trunk/PKGBUILD)
  haskell-profunctors/repos/community-staging-x86_64/haskell-profunctors.install
(from rev 161969, haskell-profunctors/trunk/haskell-profunctors.install)

--+
 community-staging-i686/PKGBUILD  |   43 +
 community-staging-i686/haskell-profunctors.install   |   18 +++
 community-staging-x86_64/PKGBUILD|   43 +
 community-staging-x86_64/haskell-profunctors.install |   18 +++
 4 files changed, 122 insertions(+)

Copied: haskell-profunctors/repos/community-staging-i686/PKGBUILD (from rev 
161969, haskell-profunctors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-02-17 09:11:50 UTC (rev 161970)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=profunctors
+pkgname=haskell-profunctors
+pkgver=5.2
+pkgrel=6
+pkgdesc="Profunctors"
+url="http://github.com/ekmett/profunctors/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-base-orphans" "haskell-bifunctors" 
"haskell-comonad"
+ "haskell-contravariant" "haskell-distributive" "haskell-tagged")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('87a7e25c4745ea8ff479dd1212ec2e57710abb3d3dd30f948fa16be1d3ee05a4')
+
+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-profunctors/repos/community-staging-i686/haskell-profunctors.install 
(from rev 161969, haskell-profunctors/trunk/haskell-profunctors.install)
===
--- community-staging-i686/haskell-profunctors.install  
(rev 0)
+++ community-staging-i686/haskell-profunctors.install  2016-02-17 09:11:50 UTC 
(rev 161970)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-profunctors
+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-profunctors/repos/community-staging-x86_64/PKGBUILD (from rev 
161969, haskell-profunctors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-02-17 09:11:50 UTC (rev 161970)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=profunctors
+pkgname=haskell-profunctors
+pkgver=5.2
+pkgrel=6
+pkgdesc="Profunctors"
+url="http://github.com/ekmett/profunctors/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-base-orphans" "haskell-bifunctors" 
"haskell-comonad"
+ "haskell-contravariant" "haskell-distributive" "haskell-tagged")
+options=('s

[arch-commits] Commit in haskell-profunctors/repos (6 files)

2016-02-01 Thread Felix Yan
Date: Tuesday, February 2, 2016 @ 03:33:26
  Author: fyan
Revision: 159858

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

Added:
  haskell-profunctors/repos/community-staging-i686/
  haskell-profunctors/repos/community-staging-i686/PKGBUILD
(from rev 159857, haskell-profunctors/trunk/PKGBUILD)
  haskell-profunctors/repos/community-staging-i686/haskell-profunctors.install
(from rev 159857, haskell-profunctors/trunk/haskell-profunctors.install)
  haskell-profunctors/repos/community-staging-x86_64/
  haskell-profunctors/repos/community-staging-x86_64/PKGBUILD
(from rev 159857, haskell-profunctors/trunk/PKGBUILD)
  haskell-profunctors/repos/community-staging-x86_64/haskell-profunctors.install
(from rev 159857, haskell-profunctors/trunk/haskell-profunctors.install)

--+
 community-staging-i686/PKGBUILD  |   43 +
 community-staging-i686/haskell-profunctors.install   |   18 +++
 community-staging-x86_64/PKGBUILD|   43 +
 community-staging-x86_64/haskell-profunctors.install |   18 +++
 4 files changed, 122 insertions(+)

Copied: haskell-profunctors/repos/community-staging-i686/PKGBUILD (from rev 
159857, haskell-profunctors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-02-02 02:33:26 UTC (rev 159858)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=profunctors
+pkgname=haskell-profunctors
+pkgver=5.2
+pkgrel=5
+pkgdesc="Profunctors"
+url="http://github.com/ekmett/profunctors/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-base-orphans" "haskell-bifunctors" 
"haskell-comonad"
+ "haskell-contravariant" "haskell-distributive" "haskell-tagged")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('87a7e25c4745ea8ff479dd1212ec2e57710abb3d3dd30f948fa16be1d3ee05a4')
+
+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-profunctors/repos/community-staging-i686/haskell-profunctors.install 
(from rev 159857, haskell-profunctors/trunk/haskell-profunctors.install)
===
--- community-staging-i686/haskell-profunctors.install  
(rev 0)
+++ community-staging-i686/haskell-profunctors.install  2016-02-02 02:33:26 UTC 
(rev 159858)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-profunctors
+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-profunctors/repos/community-staging-x86_64/PKGBUILD (from rev 
159857, haskell-profunctors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-02-02 02:33:26 UTC (rev 159858)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=profunctors
+pkgname=haskell-profunctors
+pkgver=5.2
+pkgrel=5
+pkgdesc="Profunctors"
+url="http://github.com/ekmett/profunctors/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-base-orphans" "haskell-bifunctors" 
"haskell-comonad"
+ "haskell-contravariant" "haskell-distributive" "haskell-tagged")
+options=('stat

[arch-commits] Commit in haskell-profunctors/repos (6 files)

2016-01-26 Thread Felix Yan
Date: Wednesday, January 27, 2016 @ 04:06:38
  Author: fyan
Revision: 159018

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

Added:
  haskell-profunctors/repos/community-staging-i686/
  haskell-profunctors/repos/community-staging-i686/PKGBUILD
(from rev 159017, haskell-profunctors/trunk/PKGBUILD)
  haskell-profunctors/repos/community-staging-i686/haskell-profunctors.install
(from rev 159017, haskell-profunctors/trunk/haskell-profunctors.install)
  haskell-profunctors/repos/community-staging-x86_64/
  haskell-profunctors/repos/community-staging-x86_64/PKGBUILD
(from rev 159017, haskell-profunctors/trunk/PKGBUILD)
  haskell-profunctors/repos/community-staging-x86_64/haskell-profunctors.install
(from rev 159017, haskell-profunctors/trunk/haskell-profunctors.install)

--+
 community-staging-i686/PKGBUILD  |   43 +
 community-staging-i686/haskell-profunctors.install   |   18 +++
 community-staging-x86_64/PKGBUILD|   43 +
 community-staging-x86_64/haskell-profunctors.install |   18 +++
 4 files changed, 122 insertions(+)

Copied: haskell-profunctors/repos/community-staging-i686/PKGBUILD (from rev 
159017, haskell-profunctors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-27 03:06:38 UTC (rev 159018)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=profunctors
+pkgname=haskell-profunctors
+pkgver=5.2
+pkgrel=4
+pkgdesc="Profunctors"
+url="http://github.com/ekmett/profunctors/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-base-orphans" "haskell-bifunctors" 
"haskell-comonad"
+ "haskell-contravariant" "haskell-distributive" "haskell-tagged")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('87a7e25c4745ea8ff479dd1212ec2e57710abb3d3dd30f948fa16be1d3ee05a4')
+
+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-profunctors/repos/community-staging-i686/haskell-profunctors.install 
(from rev 159017, haskell-profunctors/trunk/haskell-profunctors.install)
===
--- community-staging-i686/haskell-profunctors.install  
(rev 0)
+++ community-staging-i686/haskell-profunctors.install  2016-01-27 03:06:38 UTC 
(rev 159018)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-profunctors
+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-profunctors/repos/community-staging-x86_64/PKGBUILD (from rev 
159017, haskell-profunctors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-01-27 03:06:38 UTC (rev 159018)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=profunctors
+pkgname=haskell-profunctors
+pkgver=5.2
+pkgrel=4
+pkgdesc="Profunctors"
+url="http://github.com/ekmett/profunctors/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-base-orphans" "haskell-bifunctors" 
"haskell-comonad"
+ "haskell-contravariant" "haskell-distributive" "haskell-tagged")
+options=('st

[arch-commits] Commit in haskell-profunctors/repos (6 files)

2016-01-19 Thread Felix Yan
Date: Wednesday, January 20, 2016 @ 04:05:36
  Author: fyan
Revision: 157775

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

Added:
  haskell-profunctors/repos/community-staging-i686/
  haskell-profunctors/repos/community-staging-i686/PKGBUILD
(from rev 157774, haskell-profunctors/trunk/PKGBUILD)
  haskell-profunctors/repos/community-staging-i686/haskell-profunctors.install
(from rev 157774, haskell-profunctors/trunk/haskell-profunctors.install)
  haskell-profunctors/repos/community-staging-x86_64/
  haskell-profunctors/repos/community-staging-x86_64/PKGBUILD
(from rev 157774, haskell-profunctors/trunk/PKGBUILD)
  haskell-profunctors/repos/community-staging-x86_64/haskell-profunctors.install
(from rev 157774, haskell-profunctors/trunk/haskell-profunctors.install)

--+
 community-staging-i686/PKGBUILD  |   43 +
 community-staging-i686/haskell-profunctors.install   |   18 +++
 community-staging-x86_64/PKGBUILD|   43 +
 community-staging-x86_64/haskell-profunctors.install |   18 +++
 4 files changed, 122 insertions(+)

Copied: haskell-profunctors/repos/community-staging-i686/PKGBUILD (from rev 
157774, haskell-profunctors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-20 03:05:36 UTC (rev 157775)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=profunctors
+pkgname=haskell-profunctors
+pkgver=5.2
+pkgrel=3
+pkgdesc="Profunctors"
+url="http://github.com/ekmett/profunctors/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-base-orphans" "haskell-bifunctors" 
"haskell-comonad"
+ "haskell-contravariant" "haskell-distributive" "haskell-tagged")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('87a7e25c4745ea8ff479dd1212ec2e57710abb3d3dd30f948fa16be1d3ee05a4')
+
+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-profunctors/repos/community-staging-i686/haskell-profunctors.install 
(from rev 157774, haskell-profunctors/trunk/haskell-profunctors.install)
===
--- community-staging-i686/haskell-profunctors.install  
(rev 0)
+++ community-staging-i686/haskell-profunctors.install  2016-01-20 03:05:36 UTC 
(rev 157775)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-profunctors
+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-profunctors/repos/community-staging-x86_64/PKGBUILD (from rev 
157774, haskell-profunctors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-01-20 03:05:36 UTC (rev 157775)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=profunctors
+pkgname=haskell-profunctors
+pkgver=5.2
+pkgrel=3
+pkgdesc="Profunctors"
+url="http://github.com/ekmett/profunctors/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-base-orphans" "haskell-bifunctors" 
"haskell-comonad"
+ "haskell-contravariant" "haskell-distributive" "haskell-tagged")
+options=('st

[arch-commits] Commit in haskell-profunctors/repos (6 files)

2016-01-17 Thread Felix Yan
Date: Monday, January 18, 2016 @ 03:08:58
  Author: fyan
Revision: 157306

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

Added:
  haskell-profunctors/repos/community-staging-i686/
  haskell-profunctors/repos/community-staging-i686/PKGBUILD
(from rev 157305, haskell-profunctors/trunk/PKGBUILD)
  haskell-profunctors/repos/community-staging-i686/haskell-profunctors.install
(from rev 157305, haskell-profunctors/trunk/haskell-profunctors.install)
  haskell-profunctors/repos/community-staging-x86_64/
  haskell-profunctors/repos/community-staging-x86_64/PKGBUILD
(from rev 157305, haskell-profunctors/trunk/PKGBUILD)
  haskell-profunctors/repos/community-staging-x86_64/haskell-profunctors.install
(from rev 157305, haskell-profunctors/trunk/haskell-profunctors.install)

--+
 community-staging-i686/PKGBUILD  |   43 +
 community-staging-i686/haskell-profunctors.install   |   18 +++
 community-staging-x86_64/PKGBUILD|   43 +
 community-staging-x86_64/haskell-profunctors.install |   18 +++
 4 files changed, 122 insertions(+)

Copied: haskell-profunctors/repos/community-staging-i686/PKGBUILD (from rev 
157305, haskell-profunctors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-18 02:08:58 UTC (rev 157306)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=profunctors
+pkgname=haskell-profunctors
+pkgver=5.2
+pkgrel=2
+pkgdesc="Profunctors"
+url="http://github.com/ekmett/profunctors/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-base-orphans" "haskell-bifunctors" 
"haskell-comonad"
+ "haskell-contravariant" "haskell-distributive" "haskell-tagged")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('87a7e25c4745ea8ff479dd1212ec2e57710abb3d3dd30f948fa16be1d3ee05a4')
+
+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-profunctors/repos/community-staging-i686/haskell-profunctors.install 
(from rev 157305, haskell-profunctors/trunk/haskell-profunctors.install)
===
--- community-staging-i686/haskell-profunctors.install  
(rev 0)
+++ community-staging-i686/haskell-profunctors.install  2016-01-18 02:08:58 UTC 
(rev 157306)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-profunctors
+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-profunctors/repos/community-staging-x86_64/PKGBUILD (from rev 
157305, haskell-profunctors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-01-18 02:08:58 UTC (rev 157306)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=profunctors
+pkgname=haskell-profunctors
+pkgver=5.2
+pkgrel=2
+pkgdesc="Profunctors"
+url="http://github.com/ekmett/profunctors/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-base-orphans" "haskell-bifunctors" 
"haskell-comonad"
+ "haskell-contravariant" "haskell-distributive" "haskell-tagged")
+options=('stati

[arch-commits] Commit in haskell-profunctors/repos (6 files)

2016-01-16 Thread Felix Yan
Date: Sunday, January 17, 2016 @ 04:54:07
  Author: fyan
Revision: 157047

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

Added:
  haskell-profunctors/repos/community-staging-i686/
  haskell-profunctors/repos/community-staging-i686/PKGBUILD
(from rev 157046, haskell-profunctors/trunk/PKGBUILD)
  haskell-profunctors/repos/community-staging-i686/haskell-profunctors.install
(from rev 157046, haskell-profunctors/trunk/haskell-profunctors.install)
  haskell-profunctors/repos/community-staging-x86_64/
  haskell-profunctors/repos/community-staging-x86_64/PKGBUILD
(from rev 157046, haskell-profunctors/trunk/PKGBUILD)
  haskell-profunctors/repos/community-staging-x86_64/haskell-profunctors.install
(from rev 157046, haskell-profunctors/trunk/haskell-profunctors.install)

--+
 community-staging-i686/PKGBUILD  |   43 +
 community-staging-i686/haskell-profunctors.install   |   18 +++
 community-staging-x86_64/PKGBUILD|   43 +
 community-staging-x86_64/haskell-profunctors.install |   18 +++
 4 files changed, 122 insertions(+)

Copied: haskell-profunctors/repos/community-staging-i686/PKGBUILD (from rev 
157046, haskell-profunctors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-17 03:54:07 UTC (rev 157047)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=profunctors
+pkgname=haskell-profunctors
+pkgver=5.2
+pkgrel=1
+pkgdesc="Profunctors"
+url="http://github.com/ekmett/profunctors/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-base-orphans" "haskell-bifunctors" 
"haskell-comonad"
+ "haskell-contravariant" "haskell-distributive" "haskell-tagged")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('87a7e25c4745ea8ff479dd1212ec2e57710abb3d3dd30f948fa16be1d3ee05a4')
+
+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-profunctors/repos/community-staging-i686/haskell-profunctors.install 
(from rev 157046, haskell-profunctors/trunk/haskell-profunctors.install)
===
--- community-staging-i686/haskell-profunctors.install  
(rev 0)
+++ community-staging-i686/haskell-profunctors.install  2016-01-17 03:54:07 UTC 
(rev 157047)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-profunctors
+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-profunctors/repos/community-staging-x86_64/PKGBUILD (from rev 
157046, haskell-profunctors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-01-17 03:54:07 UTC (rev 157047)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=profunctors
+pkgname=haskell-profunctors
+pkgver=5.2
+pkgrel=1
+pkgdesc="Profunctors"
+url="http://github.com/ekmett/profunctors/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-base-orphans" "haskell-bifunctors" 
"haskell-comonad"
+ "haskell-contravariant" "haskell-distributive" "haskell-tagged")
+options=('stati

[arch-commits] Commit in haskell-profunctors/repos (6 files)

2016-01-14 Thread Felix Yan
Date: Friday, January 15, 2016 @ 04:19:43
  Author: fyan
Revision: 156484

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

Added:
  haskell-profunctors/repos/community-staging-i686/
  haskell-profunctors/repos/community-staging-i686/PKGBUILD
(from rev 156483, haskell-profunctors/trunk/PKGBUILD)
  haskell-profunctors/repos/community-staging-i686/haskell-profunctors.install
(from rev 156483, haskell-profunctors/trunk/haskell-profunctors.install)
  haskell-profunctors/repos/community-staging-x86_64/
  haskell-profunctors/repos/community-staging-x86_64/PKGBUILD
(from rev 156483, haskell-profunctors/trunk/PKGBUILD)
  haskell-profunctors/repos/community-staging-x86_64/haskell-profunctors.install
(from rev 156483, haskell-profunctors/trunk/haskell-profunctors.install)

--+
 community-staging-i686/PKGBUILD  |   43 +
 community-staging-i686/haskell-profunctors.install   |   18 +++
 community-staging-x86_64/PKGBUILD|   43 +
 community-staging-x86_64/haskell-profunctors.install |   18 +++
 4 files changed, 122 insertions(+)

Copied: haskell-profunctors/repos/community-staging-i686/PKGBUILD (from rev 
156483, haskell-profunctors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-15 03:19:43 UTC (rev 156484)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=profunctors
+pkgname=haskell-profunctors
+pkgver=5.1.2
+pkgrel=2
+pkgdesc="Profunctors"
+url="http://github.com/ekmett/profunctors/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-bifunctors" "haskell-comonad" 
"haskell-contravariant"
+ "haskell-distributive" "haskell-tagged")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('e0cc9129a4c1d2027cdada0a4cd26e540666a929ebe4e17ce5e2cec02d589682')
+
+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-profunctors/repos/community-staging-i686/haskell-profunctors.install 
(from rev 156483, haskell-profunctors/trunk/haskell-profunctors.install)
===
--- community-staging-i686/haskell-profunctors.install  
(rev 0)
+++ community-staging-i686/haskell-profunctors.install  2016-01-15 03:19:43 UTC 
(rev 156484)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-profunctors
+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-profunctors/repos/community-staging-x86_64/PKGBUILD (from rev 
156483, haskell-profunctors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-01-15 03:19:43 UTC (rev 156484)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=profunctors
+pkgname=haskell-profunctors
+pkgver=5.1.2
+pkgrel=2
+pkgdesc="Profunctors"
+url="http://github.com/ekmett/profunctors/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-bifunctors" "haskell-comonad" 
"haskell-contravariant"
+ "haskell-distributive" "haskell-tagged")
+options=('staticlibs')
+source=("http://hackage.haskell.o

[arch-commits] Commit in haskell-profunctors/repos (6 files)

2016-01-10 Thread Felix Yan
Date: Monday, January 11, 2016 @ 04:47:29
  Author: fyan
Revision: 155928

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

Added:
  haskell-profunctors/repos/community-i686/
  haskell-profunctors/repos/community-i686/PKGBUILD
(from rev 155927, haskell-profunctors/trunk/PKGBUILD)
  haskell-profunctors/repos/community-i686/haskell-profunctors.install
(from rev 155927, haskell-profunctors/trunk/haskell-profunctors.install)
  haskell-profunctors/repos/community-x86_64/
  haskell-profunctors/repos/community-x86_64/PKGBUILD
(from rev 155927, haskell-profunctors/trunk/PKGBUILD)
  haskell-profunctors/repos/community-x86_64/haskell-profunctors.install
(from rev 155927, haskell-profunctors/trunk/haskell-profunctors.install)

--+
 community-i686/PKGBUILD  |   43 +
 community-i686/haskell-profunctors.install   |   18 ++
 community-x86_64/PKGBUILD|   43 +
 community-x86_64/haskell-profunctors.install |   18 ++
 4 files changed, 122 insertions(+)

Copied: haskell-profunctors/repos/community-i686/PKGBUILD (from rev 155927, 
haskell-profunctors/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-01-11 03:47:29 UTC (rev 155928)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=profunctors
+pkgname=haskell-profunctors
+pkgver=5.1.2
+pkgrel=1
+pkgdesc="Profunctors"
+url="http://github.com/ekmett/profunctors/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-bifunctors" "haskell-comonad" 
"haskell-contravariant"
+ "haskell-distributive" "haskell-tagged")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('e0cc9129a4c1d2027cdada0a4cd26e540666a929ebe4e17ce5e2cec02d589682')
+
+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-profunctors/repos/community-i686/haskell-profunctors.install 
(from rev 155927, haskell-profunctors/trunk/haskell-profunctors.install)
===
--- community-i686/haskell-profunctors.install  (rev 0)
+++ community-i686/haskell-profunctors.install  2016-01-11 03:47:29 UTC (rev 
155928)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-profunctors
+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-profunctors/repos/community-x86_64/PKGBUILD (from rev 155927, 
haskell-profunctors/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-01-11 03:47:29 UTC (rev 155928)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=profunctors
+pkgname=haskell-profunctors
+pkgver=5.1.2
+pkgrel=1
+pkgdesc="Profunctors"
+url="http://github.com/ekmett/profunctors/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-bifunctors" "haskell-comonad" 
"haskell-contravariant"
+ "haskell-distributive" "haskell-tagged")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('e0cc9129a4c1d2027cdada0a4cd26e540666a9