FreeBSD Bugzilla – Attachment 98203 Details for
Bug 137069
[patch]: update of textproc/hs-bytestring-csv to ghc-6.10.4
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
patch-hs-bytestring-csv.diff
patch-hs-bytestring-csv.diff (text/plain), 5.28 KB, created by
Jacula Modyun
on 2009-07-24 18:10:06 UTC
(
hide
)
Description:
patch-hs-bytestring-csv.diff
Filename:
MIME Type:
Creator:
Jacula Modyun
Created:
2009-07-24 18:10:06 UTC
Size:
5.28 KB
patch
obsolete
>diff -uNr hs-bytestring-csv.orig/Makefile hs-bytestring-csv/Makefile >--- hs-bytestring-csv.orig/Makefile 2009-05-13 09:45:59.000000000 +0000 >+++ hs-bytestring-csv/Makefile 2009-07-22 06:26:29.000000000 +0000 >@@ -6,7 +6,7 @@ > > PORTNAME= bytestring-csv > PORTVERSION= 0.1.2 >-PORTREVISION= 1 >+PORTREVISION= 2 > CATEGORIES= textproc haskell > MASTER_SITES= http://hackage.haskell.org/packages/archive/${PORTNAME}/${PORTVERSION}/ \ > http://carte.kerneled.org/mirror/ >@@ -15,25 +15,64 @@ > MAINTAINER= sbahra@kerneled.org > COMMENT= Parse CSV formatted data efficiently with Haskell > >-BUILD_DEPENDS= ghc:${PORTSDIR}/lang/ghc \ >+BUILD_DEPENDS= ghc:${PORTSDIR}/lang/ghc \ > hs-dlist>=0.4.1:${PORTSDIR}/devel/hs-dlist >-LIB_DEPENDS= gmp.8:${PORTSDIR}/math/libgmp4 >+RUN_DEPENDS= ghc:${PORTSDIR}/lang/ghc \ >+ hs-dlist>=0.4.1:${PORTSDIR}/devel/hs-dlist >+ >+GHC_VERSION= 6.10.4 >+BYTESTRINGCSV_VERSION= ${PORTVERSION} >+ >+GHC_CMD= ${LOCALBASE}/bin/ghc >+SETUP_CMD= ./setup >+ >+DOCSDIR= ${PREFIX}/share/doc/${DISTNAME} >+BYTESTRINGCSV_LIBDIR_REL= lib/${DISTNAME} >+ >+PLIST_SUB= GHC_VERSION=${GHC_VERSION} \ >+ BYTESTRINGCSV_VERSION=${BYTESTRINGCSV_VERSION} \ >+ BYTESTRINGCSV_LIBDIR_REL=${BYTESTRINGCSV_LIBDIR_REL} >+ >+.if defined(NOPORTDOCS) >+PLIST_SUB+= NOPORTDOCS="" >+.else >+PLIST_SUB+= NOPORTDOCS="@comment " >+.endif > >-CABAL= ${LOCALBASE}/bin/runghc Setup.lhs >-GHC_VERSION= `${LOCALBASE}/bin/ghc --numeric-version` >-SUBDIR= lib/${PORTNAME}-${PORTVERSION} >-PLIST_SUB= GHC_VERSION="${GHC_VERSION}" \ >- PORTVERSION=${PORTVERSION} \ >- SUBDIR=${SUBDIR} >+.if !defined(NOPORTDOCS) >+ >+PORT_HADDOCK!= (cd ${.CURDIR}/../../lang/ghc && ${MAKE} -V PORT_HADDOCK) >+.if !empty(PORT_HADDOCK:M?0) >+BUILD_DEPENDS+= haddock:${PORTSDIR}/devel/hs-haddock >+.endif >+BUILD_DEPENDS+= HsColour:${PORTSDIR}/print/hs-hscolour >+ >+HSCOLOUR_VERSION= 1.13 >+HSCOLOUR_DATADIR= ${PREFIX}/share/hscolour-${HSCOLOUR_VERSION} >+ >+PORTDOCS= * >+.endif >+ >+.SILENT: > > do-configure: >- cd ${WRKSRC} && ${CABAL} configure --prefix=${PREFIX} --ghc >+ cd ${WRKSRC} && ${GHC_CMD} --make Setup.lhs -o setup -package Cabal \ >+ && ${SETUP_CMD} configure --haddock-options=-w --prefix=${PREFIX} > > do-build: >- cd ${WRKSRC} && ${CABAL} build && ${CABAL} register --gen-script >+ cd ${WRKSRC} && ${SETUP_CMD} build \ >+ && ${SETUP_CMD} register --gen-script >+ >+.if !defined(NOPORTDOCS) >+ cd ${WRKSRC} && ${SETUP_CMD} haddock --hyperlink-source \ >+ --hscolour-css=${HSCOLOUR_DATADIR}/hscolour.css >+.endif > > do-install: >- cd ${WRKSRC} && ${CABAL} install >- ${INSTALL_SCRIPT} ${WRKSRC}/register.sh ${PREFIX}/${SUBDIR}/register.sh >+ cd ${WRKSRC} && ${SETUP_CMD} install \ >+ && ${INSTALL_SCRIPT} register.sh ${PREFIX}/${BYTESTRINGCSV_LIBDIR_REL}/register.sh >+ >+post-install: >+ ${RM} -f ${PREFIX}/lib/ghc-${GHC_VERSION}/package.conf.old > > .include <bsd.port.mk> >diff -uNr hs-bytestring-csv.orig/pkg-descr hs-bytestring-csv/pkg-descr >--- hs-bytestring-csv.orig/pkg-descr 2008-11-29 21:44:00.000000000 +0000 >+++ hs-bytestring-csv/pkg-descr 2009-07-16 14:04:51.000000000 +0000 >@@ -1,4 +1,10 @@ > A small library that allows you to parse CSV formatted data efficiently > with Haskell. > >-WWW: http://code.haskell.org/~dons/code/bytestring-csv >+Author: Don Stewart >+Maintainer: dons@galois.com >+License: BSD3 >+WWW: http://code.haskell.org/~dons/code/bytestring-csv >+ >+exposed-modules: Text.CSV.ByteString, >+ Text.CSV.ByteString.Lex >diff -uNr hs-bytestring-csv.orig/pkg-plist hs-bytestring-csv/pkg-plist >--- hs-bytestring-csv.orig/pkg-plist 2008-11-29 21:44:00.000000000 +0000 >+++ hs-bytestring-csv/pkg-plist 2009-07-16 14:03:38.000000000 +0000 >@@ -1,16 +1,16 @@ >-%%SUBDIR%%/ghc-%%GHC_VERSION%%/libHSbytestring-csv-%%PORTVERSION%%.a >-%%SUBDIR%%/ghc-%%GHC_VERSION%%/HSbytestring-csv-%%PORTVERSION%%.o >-%%SUBDIR%%/ghc-%%GHC_VERSION%%/Text/CSV/ByteString.hi >-%%SUBDIR%%/ghc-%%GHC_VERSION%%/Text/CSV/ByteString/Lex.hi >-%%SUBDIR%%/register.sh >-share/doc/bytestring-csv-%%PORTVERSION%%/LICENSE >-@dirrm share/doc/bytestring-csv-%%PORTVERSION%% >-@dirrm lib/bytestring-csv-%%PORTVERSION%%/ghc-%%GHC_VERSION%%/Text/CSV/ByteString >-@dirrm lib/bytestring-csv-%%PORTVERSION%%/ghc-%%GHC_VERSION%%/Text/CSV >-@dirrm lib/bytestring-csv-%%PORTVERSION%%/ghc-%%GHC_VERSION%%/Text >-@dirrm lib/bytestring-csv-%%PORTVERSION%%/ghc-%%GHC_VERSION%% >-@dirrm lib/bytestring-csv-%%PORTVERSION%% >-@exec /bin/sh %D/%%SUBDIR%%/register.sh >+%%BYTESTRINGCSV_LIBDIR_REL%%/ghc-%%GHC_VERSION%%/HSbytestring-csv-%%BYTESTRINGCSV_VERSION%%.o >+%%BYTESTRINGCSV_LIBDIR_REL%%/ghc-%%GHC_VERSION%%/Text/CSV/ByteString.hi >+%%BYTESTRINGCSV_LIBDIR_REL%%/ghc-%%GHC_VERSION%%/Text/CSV/ByteString/Lex.hi >+%%BYTESTRINGCSV_LIBDIR_REL%%/ghc-%%GHC_VERSION%%/libHSbytestring-csv-%%BYTESTRINGCSV_VERSION%%.a >+%%BYTESTRINGCSV_LIBDIR_REL%%/register.sh >+%%NOPORTDOCS%%%%DOCSDIR%%/LICENSE >+%%NOPORTDOCS%%@dirrmtry %%DOCSDIR%% >+@dirrm %%BYTESTRINGCSV_LIBDIR_REL%%/ghc-%%GHC_VERSION%%/Text/CSV/ByteString >+@dirrm %%BYTESTRINGCSV_LIBDIR_REL%%/ghc-%%GHC_VERSION%%/Text/CSV >+@dirrm %%BYTESTRINGCSV_LIBDIR_REL%%/ghc-%%GHC_VERSION%%/Text >+@dirrm %%BYTESTRINGCSV_LIBDIR_REL%%/ghc-%%GHC_VERSION%% >+@dirrm %%BYTESTRINGCSV_LIBDIR_REL%% >+@exec /bin/sh %D/%%BYTESTRINGCSV_LIBDIR_REL%%/register.sh > @exec /bin/rm -f %D/lib/ghc-%%GHC_VERSION%%/package.conf.old >-@unexec %D/bin/ghc-pkg unregister bytestring-csv >+@unexec %D/bin/ghc-pkg unregister bytestring-csv > @unexec /bin/rm -f %D/lib/ghc-%%GHC_VERSION%%/package.conf.old
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 137069
: 98203