forked from jsonn/pkgsrc
-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated package to latest version, 2.5.1. Changes include:
* Lwt_stream.on_terminate -> Lwt_stream.on_termination * Lwt_unix: handle O_CLOEXEC * Lwt_log: add OSX syslog path * Ppx: Improve lwt%match, improve catchall detection * Add Lwt_unix.file_exists and Lwt_unix.Large_file.file_exists * Build fixes * API CHANGE: Functions in Lwt_io that were previously using a ~buffer_size argument now takes a ~buffer argument. * Accept ?buffer argument in Lwt_ssl.{in,out}_channel_of_descr. * Use newer Ssl bigarray read/write functionality to avoid allocation in Lwt_ssl. * Fix non-reentrant function calls (#136) * IPv4 multicast support. * Add support for if%lwt in ppx extension. * Add Lwt.return_some. * Disable log syntax extension by default in ppx. Give [-log] as ppx argument to enable it. * Nanosecond precision for Lwt_unix.stat. * Minor fixes + documentation improvements. * Fix compilation under Windows (#117, #129) * Fix Lwt_engine.on_timer (#121) * Add Lwt_log_core.reset_rules (#123) * Fixed typos in the documentation (#119, #131) * camlp4 is now optional. * Add safe_string compliance except for Lwt_ssl (need ocaml-ssl fix). * Add Lwt.Infix module to open instead of Lwt to have (>>=), etc. * Add Lwt_list.filter_map_{s,p} functions. * Add Lwt.fail_{with,invalid_arg} functions. * Improved Android support. * Remove deprecated lwt.text and lwt.top libraries. * Remove deprecated Lwt_signal and Lwt_event modules from lwt.react. * Fix #111: try_lwt wrongly warns about unused match case. * Fix #96: Fix Lwt_react.S.limit and Lwt_react.E.limit. * Fix #91: Workaround to fix compilation on OSX. * Add a ppx syntax extension * Add a ?fd argument to Lwt_io.{open_connection,with_connection,establish_server}. * Fix stub for getaddrinfo and getprotobyname * Windows fix: don't throw an exception in the notification handler if we're shutting down * Fix include file search in ./configure * ./configure fixes for windows * Fix: use sys_exit instead of exit when Unix.execv fails
- Loading branch information
jaapb
committed
Feb 6, 2016
1 parent
1c05d6d
commit f18eec1
Showing
3 changed files
with
114 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,23 @@ | ||
# $NetBSD: Makefile,v 1.18 2015/08/07 11:20:34 jaapb Exp $ | ||
# $NetBSD: Makefile,v 1.19 2016/02/06 11:35:14 jaapb Exp $ | ||
# | ||
|
||
DISTNAME= 2.4.5 | ||
PKGNAME= ocaml-lwt-${DISTNAME} | ||
PKGREVISION= 3 | ||
DISTNAME= lwt-2.5.1 | ||
CATEGORIES= devel | ||
MASTER_SITES= http://github.com/ocsigen/lwt/archive/ | ||
DIST_SUBDIR= ocaml-lwt | ||
|
||
WRKSRC= ${WRKDIR}/lwt-${DISTNAME} | ||
#MASTER_SITES= http://github.com/ocsigen/lwt/archive/ | ||
MASTER_SITES= ${MASTER_SITE_GITHUB:=ocsigen/} | ||
GITHUB_PROJECT= lwt | ||
|
||
MAINTAINER= [email protected] | ||
HOMEPAGE= http://www.ocsigen.org/ | ||
COMMENT= Cooperative threading library for OCaml | ||
LICENSE= gnu-lgpl-v2.1 | ||
|
||
DEPENDS= ocaml-react-[0-9]*:../../devel/ocaml-react | ||
BUILDLINK_API_DEPENDS.ocaml-ssl+= ocaml-ssl>=0.5.0 | ||
|
||
OCAML_USE_OASIS= yes | ||
CONFIGURE_ARGS+= --destdir "${DESTDIR}" --prefix "${PREFIX}" --enable-react --disable-text --disable-glib --disable-toplevel | ||
CONFIGURE_ARGS+= --destdir "${DESTDIR}" --prefix "${PREFIX}" --enable-react \ | ||
--disable-glib --enable-camlp4 | ||
|
||
SUBST_CLASSES+= libev destdir | ||
SUBST_STAGE.libev= post-configure | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
$NetBSD: distinfo,v 1.9 2015/11/03 03:27:52 agc Exp $ | ||
$NetBSD: distinfo,v 1.10 2016/02/06 11:35:14 jaapb Exp $ | ||
|
||
SHA1 (ocaml-lwt/2.4.5.tar.gz) = 863b651a3917880a0a44e09bce153ca4bb31a84d | ||
RMD160 (ocaml-lwt/2.4.5.tar.gz) = dfe2f0d257064f6fc31dd72be7b55b219b2a0833 | ||
SHA512 (ocaml-lwt/2.4.5.tar.gz) = 484dfab5e2ad4cf34b0dfa8c8df8a10870acf5dfc74c164ba581a4ea8f7d6c9b4b6b94e5e38ef49d60d031cb693a1f04ebad175af99b6f2b6190c9ae7101b217 | ||
Size (ocaml-lwt/2.4.5.tar.gz) = 298612 bytes | ||
SHA1 (lwt-2.5.1.tar.gz) = 789cf09378b4f70c868003996bd9d3361d7fc196 | ||
RMD160 (lwt-2.5.1.tar.gz) = c075603ab875c3108957719ce3ff26796ceb1bc7 | ||
SHA512 (lwt-2.5.1.tar.gz) = 648f08e13a5b13072ed44ec380cce226bbf2ac480ca6adcd170e5bfa789bf6a4e832af0748bb1bff0e45611fd8d1b14592ece4211fb78be5b03cbcd7c3cb3b7d | ||
Size (lwt-2.5.1.tar.gz) = 1272834 bytes |