From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 13 17:20:03 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E18111065672 for ; Thu, 13 Sep 2012 17:20:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B33908FC1A for ; Thu, 13 Sep 2012 17:20:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q8DHK27Z096845 for ; Thu, 13 Sep 2012 17:20:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q8DHK2t6096832; Thu, 13 Sep 2012 17:20:02 GMT (envelope-from gnats) Resent-Date: Thu, 13 Sep 2012 17:20:02 GMT Resent-Message-Id: <201209131720.q8DHK2t6096832@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, John Hein Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5250E106564A; Thu, 13 Sep 2012 17:18:48 +0000 (UTC) (envelope-from jhein@symmetricom.us) Received: from duck.symmetricom.us (duck.symmetricom.us [206.168.13.214]) by mx1.freebsd.org (Postfix) with ESMTP id 0799B8FC17; Thu, 13 Sep 2012 17:18:47 +0000 (UTC) Received: from fbsd7-build.timing.com (fbsd7-build.symmetricom.us [206.168.13.192]) by duck.symmetricom.us (8.14.5/8.14.5) with ESMTP id q8DHIlMw046740; Thu, 13 Sep 2012 11:18:47 -0600 (MDT) (envelope-from jhein@timing.com) Received: from fbsd7-build.timing.com (localhost [127.0.0.1]) by fbsd7-build.timing.com (8.14.5/8.14.5) with ESMTP id q8DHGl7l075594; Thu, 13 Sep 2012 11:16:47 -0600 (MDT) (envelope-from jhein@fbsd7-build.timing.com) Received: (from jhein@localhost) by fbsd7-build.timing.com (8.14.5/8.14.5/Submit) id q8DHGlNx075593; Thu, 13 Sep 2012 11:16:47 -0600 (MDT) (envelope-from jhein) Message-Id: <201209131716.q8DHGlNx075593@fbsd7-build.timing.com> Date: Thu, 13 Sep 2012 11:16:47 -0600 (MDT) From: John Hein To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: timur@FreeBSD.org Subject: ports/171614: [PATCH] net/samba4-devel: unbreak X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Sep 2012 17:20:03 -0000 >Number: 171614 >Category: ports >Synopsis: [PATCH] net/samba4-devel: unbreak >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Sep 13 17:20:02 UTC 2012 >Closed-Date: >Last-Modified: >Originator: John Hein >Release: >Organization: >Environment: >Description: This has been broken for 4 months now. To fix it, use the internal libtevent. FreeBSD's devel/tevent port is at 0.9.15 and samba4.alpha11 claims to want exactly 0.9.8 Removed file(s): - files/patch-source4-min__versions.m4 Port maintainer (timur@FreeBSD.org) is cc'd (and notified separately on 2012-08-30). Also add a line after the comment block to make portlint happy. Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: CVS) >How-To-Repeat: >Fix: --- samba4-devel-4.0.0.a11_2.patch begins here --- Index: Makefile =================================================================== RCS file: /base/FreeBSD-CVS/ports/net/samba4-devel/Makefile,v retrieving revision 1.15 diff -u -p -u -r1.15 Makefile --- Makefile 13 May 2012 20:19:49 -0000 1.15 +++ Makefile 13 Sep 2012 17:11:12 -0000 @@ -4,6 +4,7 @@ # # $FreeBSD: ports/net/samba4-devel/Makefile,v 1.15 2012/05/13 20:19:49 pav Exp $ # + PORTNAME?= ${SAMBA_PORTNAME} PORTVERSION?= ${SAMBA_VERSION} PORTREVISION?= 2 @@ -16,8 +17,6 @@ DISTNAME= ${SAMBA_DISTNAME} MAINTAINER?= timur@FreeBSD.org COMMENT?= A free SMB and CIFS client and server for UNIX -BROKEN= does not configure - CONFLICTS?= ldb-1.* SAMBA_PORTNAME= samba4 @@ -90,9 +89,8 @@ CONFIGURE_ARGS+= --enable-external-libtd # talloc LIB_DEPENDS+= talloc.2:${PORTSDIR}/devel/talloc CONFIGURE_ARGS+= --enable-external-libtalloc -# tevent -LIB_DEPENDS+= tevent.0:${PORTSDIR}/devel/tevent -CONFIGURE_ARGS+= --enable-external-libtevent +# tevent - use internal libtevent since FreeBSD's port is at +# 0.9.15 and samba4.alpha11 claims to want exactly 0.9.8 OPTIONS= \ DEBUG "With debug info" off \ Index: files/patch-source4-min__versions.m4 =================================================================== RCS file: files/patch-source4-min__versions.m4 diff -N files/patch-source4-min__versions.m4 --- files/patch-source4-min__versions.m4 17 Aug 2011 10:36:32 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,8 +0,0 @@ ---- ./source4/min_versions.m4.orig 2010-01-11 06:35:28.000000000 +0100 -+++ ./source4/min_versions.m4 2011-08-05 17:15:56.000000000 +0200 -@@ -3,4 +3,4 @@ - define(TDB_MIN_VERSION,1.2.0) - define(TALLOC_MIN_VERSION,2.0.1) - define(LDB_REQUIRED_VERSION,0.9.10) --define(TEVENT_REQUIRED_VERSION,0.9.8) -+define(TEVENT_REQUIRED_VERSION,0.9.13) --- samba4-devel-4.0.0.a11_2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: