From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Aug 10 11:30:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 9139DE8D for ; Sat, 10 Aug 2013 11:30:00 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 71F4B26CB for ; Sat, 10 Aug 2013 11:30:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7ABU0d2077359 for ; Sat, 10 Aug 2013 11:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7ABU0pi077358; Sat, 10 Aug 2013 11:30:00 GMT (envelope-from gnats) Resent-Date: Sat, 10 Aug 2013 11:30:00 GMT Resent-Message-Id: <201308101130.r7ABU0pi077358@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, Boris Samorodov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 9A702A04 for ; Sat, 10 Aug 2013 11:25:53 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from oldred.freebsd.org (oldred.freebsd.org [8.8.178.121]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 889A126A4 for ; Sat, 10 Aug 2013 11:25:53 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r7ABPrVR048776 for ; Sat, 10 Aug 2013 11:25:53 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r7ABPrq1048773; Sat, 10 Aug 2013 11:25:53 GMT (envelope-from nobody) Message-Id: <201308101125.r7ABPrq1048773@oldred.freebsd.org> Date: Sat, 10 Aug 2013 11:25:53 GMT From: Boris Samorodov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/181212: [patch] [kde] textproc/redland: add ftp/curl dependency X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Aug 2013 11:30:00 -0000 >Number: 181212 >Category: ports >Synopsis: [patch] [kde] textproc/redland: add ftp/curl dependency >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Aug 10 11:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Boris Samorodov >Release: FreeBSD 10-amd64 >Organization: BSDprint >Environment: FreeBSD BB049.int.wart.ru 10.0-CURRENT FreeBSD 10.0-CURRENT #50 r253993: Tue Aug 6 20:03:20 SAMT 2013 bsam@BB049.int.wart.ru:/usr/obj/usr/src/sys/BB64X amd64 >Description: After recent ftp/curl upgrade I get this: ----- % pkg_libchk -a redland-1.0.16: /usr/local/bin/rdfproc misses libcurl.so.6 redland-1.0.16: /usr/local/bin/redland-db-upgrade misses libcurl.so.6 redland-1.0.16: /usr/local/lib/librdf.so.0 misses libcurl.so.6 ----- Analysis: The port has a direct dependency (showed above), included only indirectly via textproc/raptor2. But the dependency should be listsed at textproc/redland itself. And this port should bump PORTREVISION if library at ftp/curl changes. >How-To-Repeat: Upgrade ftp/curl to new version while having extproc/redland built with an older ftp/curl version. >Fix: . add ftp/curl; . bump PORTREVISION (for ftp/curl library version changes). Patch attached with submission follows: Index: /usr/ports/textproc/redland/Makefile =================================================================== --- /usr/ports/textproc/redland/Makefile (revision 324347) +++ /usr/ports/textproc/redland/Makefile (working copy) @@ -3,6 +3,7 @@ PORTNAME= redland PORTVERSION= 1.0.16 +PORTREVISION= 1 CATEGORIES= textproc MASTER_SITES= http://download.librdf.org/source/ @@ -10,7 +11,8 @@ COMMENT= High-level interface for RDF LIB_DEPENDS= raptor2:${PORTSDIR}/textproc/raptor2 \ - rasqal:${PORTSDIR}/textproc/rasqal + rasqal:${PORTSDIR}/textproc/rasqal \ + curl:${PORTSDIR}/ftp/curl USE_AUTOTOOLS= libltdl USE_GNOME= gnomehack libxml2 lthack >Release-Note: >Audit-Trail: >Unformatted: