pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/tevent



Module Name:    pkgsrc
Committed By:   wiz
Date:           Thu Oct 19 14:24:43 UTC 2023

Modified Files:
        pkgsrc/devel/tevent: Makefile distinfo
        pkgsrc/devel/tevent/patches: patch-wscript

Log Message:
tevent: update to 0.15.0.

Changes not found.


To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 pkgsrc/devel/tevent/Makefile \
    pkgsrc/devel/tevent/distinfo
cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/tevent/patches/patch-wscript

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/tevent/Makefile
diff -u pkgsrc/devel/tevent/Makefile:1.17 pkgsrc/devel/tevent/Makefile:1.18
--- pkgsrc/devel/tevent/Makefile:1.17   Mon Aug 14 05:24:17 2023
+++ pkgsrc/devel/tevent/Makefile        Thu Oct 19 14:24:42 2023
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.17 2023/08/14 05:24:17 wiz Exp $
+# $NetBSD: Makefile,v 1.18 2023/10/19 14:24:42 wiz Exp $
 
-DISTNAME=      tevent-0.14.1
-PKGREVISION=   1
+DISTNAME=      tevent-0.15.0
 CATEGORIES=    devel
 MASTER_SITES=  http://www.samba.org/ftp/tevent/
 
Index: pkgsrc/devel/tevent/distinfo
diff -u pkgsrc/devel/tevent/distinfo:1.17 pkgsrc/devel/tevent/distinfo:1.18
--- pkgsrc/devel/tevent/distinfo:1.17   Tue Feb  7 09:01:41 2023
+++ pkgsrc/devel/tevent/distinfo        Thu Oct 19 14:24:42 2023
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.17 2023/02/07 09:01:41 adam Exp $
+$NetBSD: distinfo,v 1.18 2023/10/19 14:24:42 wiz Exp $
 
-BLAKE2s (tevent-0.14.1.tar.gz) = e674c3dd203c3acb3d983f0afa1ecb502f06ff1fd325b4b90f65c0fc11564371
-SHA512 (tevent-0.14.1.tar.gz) = 0bcc87c10f84e947edad8f8c31f3923253c599b7a69a1db1c21ab292e02937ccb8bad9f0f70e27420ead687aaed1a9b3830b6daa903b8a9bd48cc035a6e5f4ec
-Size (tevent-0.14.1.tar.gz) = 881979 bytes
+BLAKE2s (tevent-0.15.0.tar.gz) = ae3dc389fed0f8cd0280c6dd97393d46642b1d98c6318d6c385e97ca5384af6d
+SHA512 (tevent-0.15.0.tar.gz) = 470cc4489255a4f122ba1d680669589ba375d4081ff46631dd56f5104202d175bfb13356820eb9108a6b768b3837b2f5d26cc7b0acc3071c4787fb070df3cbab
+Size (tevent-0.15.0.tar.gz) = 884634 bytes
 SHA1 (patch-buildtools_wafsamba_samba__conftests.py) = 50ff76f5b085f770751ca8bb93c8544cfdcd40d9
 SHA1 (patch-buildtools_wafsamba_samba__install.py) = d801340617da325e3bb70a90350e45cc8e383c2d
 SHA1 (patch-buildtools_wafsamba_samba__utils.py) = 0a587421870c1974175fadbb02dde215f35938f2
-SHA1 (patch-wscript) = 34f464296ca3e8eb9b50e1f85f31c38c4c8fdf93
+SHA1 (patch-wscript) = 5ef57da7398e66f02abb4f8897447c937de3d8e3

Index: pkgsrc/devel/tevent/patches/patch-wscript
diff -u pkgsrc/devel/tevent/patches/patch-wscript:1.1 pkgsrc/devel/tevent/patches/patch-wscript:1.2
--- pkgsrc/devel/tevent/patches/patch-wscript:1.1       Sat Feb 23 21:28:33 2019
+++ pkgsrc/devel/tevent/patches/patch-wscript   Thu Oct 19 14:24:42 2023
@@ -1,15 +1,15 @@
-$NetBSD: patch-wscript,v 1.1 2019/02/23 21:28:33 jperkin Exp $
+$NetBSD: patch-wscript,v 1.2 2023/10/19 14:24:42 wiz Exp $
 
 Disable epoll on SunOS.
 
---- wscript.orig       2019-01-15 10:46:33.000000000 +0000
+--- wscript.orig       2023-07-20 10:48:56.371377200 +0000
 +++ wscript
-@@ -40,7 +40,7 @@ def configure(conf):
+@@ -51,7 +51,7 @@ def configure(conf):
                  conf.CHECK_BUNDLED_SYSTEM_PYTHON('pytevent', 'tevent', minversion=VERSION):
                  conf.define('USING_SYSTEM_PYTEVENT', 1)
  
--    if conf.CHECK_FUNCS('epoll_create', headers='sys/epoll.h'):
-+    if not sys.platform.startswith('sunos') and conf.CHECK_FUNCS('epoll_create', headers='sys/epoll.h'):
+-    if conf.CHECK_FUNCS('epoll_create1', headers='sys/epoll.h'):
++    if not sys.platform.startswith('sunos') and conf.CHECK_FUNCS('epoll_create1', headers='sys/epoll.h'):
          conf.DEFINE('HAVE_EPOLL', 1)
  
      tevent_num_signals = 64



Home | Main Index | Thread Index | Old Index