svn commit: r399600 - in head/devel: . ivykis ivykis/files

Kurt Jaeger pi at FreeBSD.org
Sat Oct 17 19:21:03 UTC 2015


Author: pi
Date: Sat Oct 17 19:21:01 2015
New Revision: 399600
URL: https://svnweb.freebsd.org/changeset/ports/399600

Log:
  New port: devel/ivykis
  
  The ivykis library is a thin, portable wrapper around OS-provided
  mechanisms such as epoll(4), kqueue(2), poll(2) and select(2). It was
  mainly designed for building high-performance network applications,
  but can be used in any event-driver application that uses pollable
  file descriptors as its event sources.
  
  Programs written to the ivykis API are generally single-threaded (or
  use only a small number of threads), and never block on I/O. All
  input and output is done in a nonblocking fashion, with I/O readiness
  notification delivered via callback functions.
  
  WWW: https://github.com/buytenh/ivykis
  
  PR:		171640
  Submitted by:	algernon at madhouse-project.org

Added:
  head/devel/ivykis/
  head/devel/ivykis/Makefile   (contents, props changed)
  head/devel/ivykis/distinfo   (contents, props changed)
  head/devel/ivykis/files/
  head/devel/ivykis/files/patch-misc_Makefile.am   (contents, props changed)
  head/devel/ivykis/pkg-descr   (contents, props changed)
  head/devel/ivykis/pkg-plist   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sat Oct 17 18:50:06 2015	(r399599)
+++ head/devel/Makefile	Sat Oct 17 19:21:01 2015	(r399600)
@@ -1021,6 +1021,7 @@
     SUBDIR += isl
     SUBDIR += it-eric6
     SUBDIR += itext
+    SUBDIR += ivykis
     SUBDIR += jakarta-commons-configuration
     SUBDIR += jakarta-commons-daemon
     SUBDIR += jakarta-commons-io

Added: head/devel/ivykis/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/ivykis/Makefile	Sat Oct 17 19:21:01 2015	(r399600)
@@ -0,0 +1,27 @@
+# $FreeBSD$
+
+PORTNAME=	ivykis
+PORTVERSION=	0.39
+DISTVERSIONPREFIX=v
+CATEGORIES=	devel
+
+MAINTAINER=	algernon at madhouse-project.org
+COMMENT=	Asynchronous I/O readiness notification library
+
+LICENSE=	LGPL21
+
+USES=		libtool pkgconfig
+USE_LDCONFIG=	yes
+GNU_CONFIGURE=	yes
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	buytenh
+GH_PROJECT=	ivykis
+
+post-stage:
+	${MKDIR} ${STAGEDIR}${PREFIX}/libdata/pkgconfig
+	${MV} ${STAGEDIR}${PREFIX}/lib/pkgconfig/ivykis.pc ${STAGEDIR}${PREFIX}/libdata/pkgconfig/ivykis.pc
+	${RMDIR} ${STAGEDIR}${PREFIX}/lib/pkgconfig
+	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libivykis.so.0.4.2
+
+.include <bsd.port.mk>

Added: head/devel/ivykis/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/ivykis/distinfo	Sat Oct 17 19:21:01 2015	(r399600)
@@ -0,0 +1,2 @@
+SHA256 (buytenh-ivykis-v0.39_GH0.tar.gz) = f9377f512cf5131e58c802f9c8744582710b08ed74f6e08b0f15ab613109152e
+SIZE (buytenh-ivykis-v0.39_GH0.tar.gz) = 411312

Added: head/devel/ivykis/files/patch-misc_Makefile.am
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/ivykis/files/patch-misc_Makefile.am	Sat Oct 17 19:21:01 2015	(r399600)
@@ -0,0 +1,7 @@
+--- misc/Makefile.am.orig	2015-10-17 19:07:02 UTC
++++ misc/Makefile.am
+@@ -1,3 +1,3 @@
+-pkgconfigdir		= $(libdir)/pkgconfig
++pkgconfigdir		= $(libdatadir)/pkgconfig
+ 
+ pkgconfig_DATA		= ivykis.pc

Added: head/devel/ivykis/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/ivykis/pkg-descr	Sat Oct 17 19:21:01 2015	(r399600)
@@ -0,0 +1,12 @@
+The ivykis library is a thin, portable wrapper around OS-provided
+mechanisms such as epoll(4), kqueue(2), poll(2) and select(2). It was
+mainly designed for building high-performance network applications,
+but can be used in any event-driver application that uses pollable
+file descriptors as its event sources.
+
+Programs written to the ivykis API are generally single-threaded (or
+use only a small number of threads), and never block on I/O. All
+input and output is done in a nonblocking fashion, with I/O readiness
+notification delivered via callback functions.
+
+WWW: https://github.com/buytenh/ivykis

Added: head/devel/ivykis/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/ivykis/pkg-plist	Sat Oct 17 19:21:01 2015	(r399600)
@@ -0,0 +1,86 @@
+include/iv.h
+include/iv_avl.h
+include/iv_event.h
+include/iv_event_raw.h
+include/iv_fd_pump.h
+include/iv_list.h
+include/iv_popen.h
+include/iv_signal.h
+include/iv_thread.h
+include/iv_tls.h
+include/iv_wait.h
+include/iv_work.h
+lib/libivykis.a
+lib/libivykis.so
+lib/libivykis.so.0
+lib/libivykis.so.0.4.2
+libdata/pkgconfig/ivykis.pc
+man/man3/IV_EVENT_INIT.3.gz
+man/man3/IV_EVENT_RAW_INIT.3.gz
+man/man3/IV_FD_PUMP_INIT.3.gz
+man/man3/IV_POPEN_REQUEST_INIT.3.gz
+man/man3/IV_SIGNAL_INIT.3.gz
+man/man3/IV_WAIT_INTEREST_INIT.3.gz
+man/man3/IV_WORK_ITEM_INIT.3.gz
+man/man3/IV_WORK_POOL_INIT.3.gz
+man/man3/iv_deinit.3.gz
+man/man3/iv_event.3.gz
+man/man3/iv_event_post.3.gz
+man/man3/iv_event_raw.3.gz
+man/man3/iv_event_raw_post.3.gz
+man/man3/iv_event_raw_register.3.gz
+man/man3/iv_event_raw_unregister.3.gz
+man/man3/iv_event_register.3.gz
+man/man3/iv_event_unregister.3.gz
+man/man3/iv_examples.3.gz
+man/man3/iv_fatal.3.gz
+man/man3/iv_fd.3.gz
+man/man3/iv_fd_pump.3.gz
+man/man3/iv_fd_pump_destroy.3.gz
+man/man3/iv_fd_pump_init.3.gz
+man/man3/iv_fd_pump_is_done.3.gz
+man/man3/iv_fd_pump_pump.3.gz
+man/man3/iv_fd_register.3.gz
+man/man3/iv_fd_register_try.3.gz
+man/man3/iv_fd_registered.3.gz
+man/man3/iv_fd_set_handler_err.3.gz
+man/man3/iv_fd_set_handler_in.3.gz
+man/man3/iv_fd_set_handler_out.3.gz
+man/man3/iv_fd_unregister.3.gz
+man/man3/iv_init.3.gz
+man/man3/iv_inited.3.gz
+man/man3/iv_invalidate_now.3.gz
+man/man3/iv_main.3.gz
+man/man3/iv_popen.3.gz
+man/man3/iv_popen_request_close.3.gz
+man/man3/iv_popen_request_submit.3.gz
+man/man3/iv_quit.3.gz
+man/man3/iv_set_fatal_msg_handler.3.gz
+man/man3/iv_signal.3.gz
+man/man3/iv_signal_register.3.gz
+man/man3/iv_signal_unregister.3.gz
+man/man3/iv_task.3.gz
+man/man3/iv_task_register.3.gz
+man/man3/iv_task_registered.3.gz
+man/man3/iv_task_unregister.3.gz
+man/man3/iv_thread.3.gz
+man/man3/iv_thread_create.3.gz
+man/man3/iv_thread_set_debug_state.3.gz
+man/man3/iv_time.3.gz
+man/man3/iv_timer.3.gz
+man/man3/iv_timer_register.3.gz
+man/man3/iv_timer_registered.3.gz
+man/man3/iv_timer_unregister.3.gz
+man/man3/iv_tls.3.gz
+man/man3/iv_tls_user_ptr.3.gz
+man/man3/iv_tls_user_register.3.gz
+man/man3/iv_validate_now.3.gz
+man/man3/iv_wait.3.gz
+man/man3/iv_wait_interest_register.3.gz
+man/man3/iv_wait_interest_register_spawn.3.gz
+man/man3/iv_wait_interest_unregister.3.gz
+man/man3/iv_work.3.gz
+man/man3/iv_work_pool_create.3.gz
+man/man3/iv_work_pool_put.3.gz
+man/man3/iv_work_pool_submit_work.3.gz
+man/man3/ivykis.3.gz


More information about the svn-ports-head mailing list