From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 02:20:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id C1184F70 for ; Sun, 22 Sep 2013 02:20: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 A1B6E2474 for ; Sun, 22 Sep 2013 02:20: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 r8M2K0i5010122 for ; Sun, 22 Sep 2013 02:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8M2K0N1010121; Sun, 22 Sep 2013 02:20:00 GMT (envelope-from gnats) Resent-Date: Sun, 22 Sep 2013 02:20:00 GMT Resent-Message-Id: <201309220220.r8M2K0N1010121@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, Jason Bacon Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id F2C7AF48 for ; Sun, 22 Sep 2013 02:16:44 +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 D02E82460 for ; Sun, 22 Sep 2013 02:16:44 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8M2Gfxh078245 for ; Sun, 22 Sep 2013 02:16:41 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8M2GeRe078244; Sun, 22 Sep 2013 02:16:40 GMT (envelope-from nobody) Message-Id: <201309220216.r8M2GeRe078244@oldred.freebsd.org> Date: Sun, 22 Sep 2013 02:16:40 GMT From: Jason Bacon To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182288: New port: devel/lnphost 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: Sun, 22 Sep 2013 02:20:00 -0000 >Number: 182288 >Category: ports >Synopsis: New port: devel/lnphost >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Sep 22 02:20:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Jason Bacon >Release: 9.1-RELEASE >Organization: Acadix Consulting, LLC >Environment: FreeBSD oyster.jbacon.dyndns.org 9.1-RELEASE-p6 FreeBSD 9.1-RELEASE-p6 #0: Wed Aug 21 20:30:17 UTC 2013 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: A library supporting IR communication over the Lego Mindstorms IR tower. It can be used from C programs on Posix compliant platforms, supports multiple protocols and is designed to be a replacement for lnpd. >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # lnphost # lnphost/files # lnphost/files/patch-Makefile # lnphost/files/patch-Include-lnphost.h # lnphost/distinfo # lnphost/pkg-descr # lnphost/Makefile # echo c - lnphost mkdir -p lnphost > /dev/null 2>&1 echo c - lnphost/files mkdir -p lnphost/files > /dev/null 2>&1 echo x - lnphost/files/patch-Makefile sed 's/^X//' >lnphost/files/patch-Makefile << '9288736519522fc2df49ac9477101129' X--- Makefile.orig Fri Mar 18 10:20:31 2005 X+++ Makefile Thu Sep 13 21:14:41 2007 X@@ -8,16 +8,20 @@ X endif X X PROGRAMS=$(patsubst %.c,%$(EXT),$(wildcard *.c)) X-BINDIR=/usr/local/bin X-MANDIR=/usr/share/man/man1 X+LIBS=lnphost.a X X-all: $(PROGRAMS) X+BINDIR=${PREFIX}/bin X+MANDIR=${PREFIX}/man/man1 X+LIBDIR=${PREFIX}/lib X+INCDIR=${PREFIX}/include X+ X+all: $(PROGRAMS) $(LIBS) X X clean: X- make -C Docs clean X- rm -f *~ */*~ X- rm -f $(patsubst %.c,%.o,$(wildcard Modules/*.c)) X- rm -f $(patsubst %.c,%$(EXT),$(wildcard *.c)) X+ ${MAKE} -C Docs clean X+ ${RM} -f *~ */*~ X+ ${RM} -f $(patsubst %.c,%.o,$(wildcard Modules/*.c)) X+ ${RM} -f $(patsubst %.c,%$(EXT),$(wildcard *.c)) X X needroot: X @if [ ! $$UID -eq 0 ]; then \ X@@ -26,21 +30,27 @@ X fi X X install: all needroot X- make -C Docs all X- install -g root -o root -m 644 Docs/lnpdump.1.gz $(MANDIR) X- install -g root -o root -m 755 lnpdump$(EXT) $(BINDIR) X+ ${MAKE} -C Docs all X+ install -g 0 -o 0 -m 644 Docs/lnpdump.1 $(MANDIR) X+ install -g 0 -o 0 -m 755 lnpdump$(EXT) $(BINDIR) X+ install -g 0 -o 0 -m 0644 lnphost.a $(LIBDIR) X+ install -g 0 -o 0 -m 0644 Include/lnphost.h $(INCDIR) X X remove: needroot X- rm -f $(MANDIR)/lnpdump.1.gz X- rm -f $(BINDIR)/lnpdump$(EXT) X+ ${RM} -f $(MANDIR)/lnpdump.1.gz X+ ${RM} -f $(BINDIR)/lnpdump$(EXT) X+ ${RM} -f $(LIBDIR)/lnphost.a X+ ${RM} -f $(INCDIR)/lnphost.h X X-lnpdump$(EXT): lnpdump.c Modules/getopt.o Modules/lnphost.o X+lnpdump$(EXT): lnpdump.c Modules/lnphost.o X $(CC) $(CFLAGS) -Wall -IInclude -o $@ $+ -lpthread X X Modules/%.o: Modules/%.c Include/%.h X $(CC) $(CFLAGS) -Wall -IInclude -c -o $@ $< X X X-posrecv$(EXT): posrecv.c Modules/getopt.o Modules/lnphost.o X+posrecv$(EXT): posrecv.c Modules/lnphost.o X $(CC) $(CFLAGS) -Wall -IInclude -o $@ $+ -lpthread X X+lnphost.a: Modules/lnphost.o X+ $(AR) r lnphost.a Modules/lnphost.o 9288736519522fc2df49ac9477101129 echo x - lnphost/files/patch-Include-lnphost.h sed 's/^X//' >lnphost/files/patch-Include-lnphost.h << 'bafc936405c10e840069c8381db560e1' X--- Include/lnphost.h.orig Sat Nov 20 14:22:00 2004 X+++ Include/lnphost.h Thu Sep 13 22:22:20 2007 X@@ -21,6 +21,8 @@ X X #if defined(LINUX) || defined(linux) X #define LNP_DEFAULTDEVICE "/dev/ttyS0" X+#elif defined (__FreeBSD__) X+#define LNP_DEFAULTDEVICE "/dev/cuad0" X #elif defined (__CYGWIN__) || (_WIN32) X #define LNP_DEFAULTDEVICE "com1" X #else bafc936405c10e840069c8381db560e1 echo x - lnphost/distinfo sed 's/^X//' >lnphost/distinfo << 'e7ee3822d821a8e1b567c60d0cfe4523' XSHA256 (lnphost-1.0a.zip) = 194aa84b926b6b2a742184d45ad88ef3e8c6976ad28fdfb8cea1ed69cc236641 XSIZE (lnphost-1.0a.zip) = 30007 e7ee3822d821a8e1b567c60d0cfe4523 echo x - lnphost/pkg-descr sed 's/^X//' >lnphost/pkg-descr << '2f7149813820f116da0916781095db52' XA library supporting IR communication over the Lego Mindstorms IR tower. It Xcan be used from C programs on Posix compliant platforms, supports multiple Xprotocols and is designed to be a replacement for lnpd. X XWWW: http://sourceforge.net/projects/lnphost/?source=directory 2f7149813820f116da0916781095db52 echo x - lnphost/Makefile sed 's/^X//' >lnphost/Makefile << 'b7c154e6919b02cdc220117c10b5cebf' X# Created by: Jason Bacon X# $FreeBSD$ X XPORTNAME= lnphost XPORTVERSION= 1.0a XCATEGORIES= devel XMASTER_SITES= SF X XMAINTAINER= jwbacon@tds.net XCOMMENT= Lego RCX iinfrared communication API X XLICENSE= GPLv2 X XUSE_ZIP= yes XUSE_GMAKE= yes XWRKSRC= ${WRKDIR}/lnphost XCFLAGS+= -DHAVE_STRING_H X XPLIST_FILES= bin/lnpdump \ X lib/lnphost.a \ X include/lnphost.h X XMAN1= lnpdump.1 X X# Use system getopt Xpost-patch: X ${RM} ${WRKSRC}/Include/getopt.h ${WRKSRC}/Modules/getopt.c X X.include b7c154e6919b02cdc220117c10b5cebf exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 04:08:22 2013 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id A3CFCFE6; Sun, 22 Sep 2013 04:08:22 +0000 (UTC) (envelope-from devzone.my@gmail.com) Received: from mail-lb0-x234.google.com (mail-lb0-x234.google.com [IPv6:2a00:1450:4010:c04::234]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 86F39289E; Sun, 22 Sep 2013 04:08:21 +0000 (UTC) Received: by mail-lb0-f180.google.com with SMTP id q8so1678951lbi.25 for ; Sat, 21 Sep 2013 21:08:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=u4IofMhuDJh5shlgf7hrpZ4Exb/IVDZKzlHDfprVZgY=; b=CRoSee3ZxO0S8xvZxUCZc0BAM4h0DrVdsgVTI+co/AwqaTC+PnIDh6+yLOuG6wa1kh oGDqqvJYxpmzkIIZELAdK1DAWmsvHIsU+H24ft7w1L0dw6KOcX1lgHTSckUrMCKboZxC 75QTMzUtuV+Byy3QtJMzgIUc/1qq1A0o3wRr/rkdsOBDJuBGHwz6MmoOaRTqq6tHHZNb oVV79wF0/Vk5Md3Lh24jdpEv10uenNviH2JPUKuHquPB+O0QqvQbk7TdUERYqtm03Zds AMfnMrPxcQL4nWGDl+phExbgX0K7qSyFfOVVy+Snm2ssTHZBs5yQLyy8v/Ax++LXPZW8 IZTA== MIME-Version: 1.0 X-Received: by 10.152.29.201 with SMTP id m9mr13842765lah.6.1379822898572; Sat, 21 Sep 2013 21:08:18 -0700 (PDT) Received: by 10.112.185.39 with HTTP; Sat, 21 Sep 2013 21:08:18 -0700 (PDT) In-Reply-To: References: <201309212311.r8LNB1Qk007336@oldred.freebsd.org> <201309212320.r8LNK0II058616@freefall.freebsd.org> Date: Sun, 22 Sep 2013 07:08:18 +0300 Message-ID: Subject: Re: ports/182287: Update MariaDB 5.5.33a databases/mariadb55-{client, server} From: Denis To: FreeBSD-gnats-submit@freebsd.org, freebsd-ports-bugs@freebsd.org Content-Type: text/plain; charset=UTF-8 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: Sun, 22 Sep 2013 04:08:22 -0000 -OPTIONS_DEFINE+= OQGRAPH PBXT MAXKEY +OPTIONS_DEFINE+= OQGRAPH PBXT MAXKEY TOKUDB OQGRAPH_DESC= Open Query Graph Computation engine PBXT_DESC= MVCC-based transactional engine MAXKEY_DESC= Change max key length from 1000 to 4000 +TOKUDB_DESC= High-performance transactional engine ....... .if ${PORT_OPTIONS:MMAXKEY} EXTRA_PATCHES+= ${FILESDIR}/extra-patch-include_my_compare.h .endif +.if empty(PORT_OPTIONS:MTOKUDB) +CMAKE_ARGS+= -DWITHOUT_TOKUDB_STORAGE_ENGINE=1 +.else +CMAKE_ARGS+= -DWITH_TOKUDB_STORAGE_ENGINE=1 +.endif 2013/9/22 Denis : > WITH_JEMALLOC="no" working! > > P.S. Cmake script in mariadb not found system jemalloc > > 2013/9/22 : >> Thank you very much for your problem report. >> It has the internal identification `ports/182287'. >> The individual assigned to look at your >> report is: freebsd-ports-bugs. >> >> You can access the state of your problem report at any time >> via this link: >> >> http://www.freebsd.org/cgi/query-pr.cgi?pr=182287 >> >>>Category: ports >>>Responsible: freebsd-ports-bugs >>>Synopsis: Update MariaDB 5.5.33a databases/mariadb55-{client,server} >>>Arrival-Date: Sat Sep 21 23:20:00 UTC 2013 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 04:10:01 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 E6EA49A for ; Sun, 22 Sep 2013 04:10:01 +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 4E5A428A8 for ; Sun, 22 Sep 2013 04:10:01 +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 r8M4A1OS031764 for ; Sun, 22 Sep 2013 04:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8M4A0Px031762; Sun, 22 Sep 2013 04:10:00 GMT (envelope-from gnats) Date: Sun, 22 Sep 2013 04:10:00 GMT Message-Id: <201309220410.r8M4A0Px031762@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Denis Subject: Re: ports/182287: Update MariaDB 5.5.33a databases/mariadb55-{client, server} X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Denis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Sep 2013 04:10:02 -0000 The following reply was made to PR ports/182287; it has been noted by GNATS. From: Denis To: FreeBSD-gnats-submit@freebsd.org, freebsd-ports-bugs@freebsd.org Cc: Subject: Re: ports/182287: Update MariaDB 5.5.33a databases/mariadb55-{client,server} Date: Sun, 22 Sep 2013 07:08:18 +0300 -OPTIONS_DEFINE+= OQGRAPH PBXT MAXKEY +OPTIONS_DEFINE+= OQGRAPH PBXT MAXKEY TOKUDB OQGRAPH_DESC= Open Query Graph Computation engine PBXT_DESC= MVCC-based transactional engine MAXKEY_DESC= Change max key length from 1000 to 4000 +TOKUDB_DESC= High-performance transactional engine ....... .if ${PORT_OPTIONS:MMAXKEY} EXTRA_PATCHES+= ${FILESDIR}/extra-patch-include_my_compare.h .endif +.if empty(PORT_OPTIONS:MTOKUDB) +CMAKE_ARGS+= -DWITHOUT_TOKUDB_STORAGE_ENGINE=1 +.else +CMAKE_ARGS+= -DWITH_TOKUDB_STORAGE_ENGINE=1 +.endif 2013/9/22 Denis : > WITH_JEMALLOC="no" working! > > P.S. Cmake script in mariadb not found system jemalloc > > 2013/9/22 : >> Thank you very much for your problem report. >> It has the internal identification `ports/182287'. >> The individual assigned to look at your >> report is: freebsd-ports-bugs. >> >> You can access the state of your problem report at any time >> via this link: >> >> http://www.freebsd.org/cgi/query-pr.cgi?pr=182287 >> >>>Category: ports >>>Responsible: freebsd-ports-bugs >>>Synopsis: Update MariaDB 5.5.33a databases/mariadb55-{client,server} >>>Arrival-Date: Sat Sep 21 23:20:00 UTC 2013 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 06:13:29 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 4F4FAF99; Sun, 22 Sep 2013 06:13:29 +0000 (UTC) (envelope-from sunpoet@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 2544F2CF3; Sun, 22 Sep 2013 06:13:29 +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 r8M6DTIq061779; Sun, 22 Sep 2013 06:13:29 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8M6DSe4061778; Sun, 22 Sep 2013 06:13:28 GMT (envelope-from sunpoet) Date: Sun, 22 Sep 2013 06:13:28 GMT Message-Id: <201309220613.r8M6DSe4061778@freefall.freebsd.org> To: dgeo@centrale-marseille.fr, sunpoet@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: sunpoet@FreeBSD.org Subject: Re: ports/182277: missing rcvar on net-mgmt/netdisco 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: Sun, 22 Sep 2013 06:13:29 -0000 Synopsis: missing rcvar on net-mgmt/netdisco Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: sunpoet Responsible-Changed-When: Sun Sep 22 06:13:28 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=182277 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 06:17:53 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 8CD8CFE5; Sun, 22 Sep 2013 06:17:53 +0000 (UTC) (envelope-from jgh@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 62F6E2D03; Sun, 22 Sep 2013 06:17:53 +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 r8M6HrB5062000; Sun, 22 Sep 2013 06:17:53 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8M6Hrs5061999; Sun, 22 Sep 2013 06:17:53 GMT (envelope-from jgh) Date: Sun, 22 Sep 2013 06:17:53 GMT Message-Id: <201309220617.r8M6Hrs5061999@freefall.freebsd.org> To: jgh@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jgh@FreeBSD.org From: jgh@FreeBSD.org Subject: Re: ports/182282: New Port: devel/git-cola GUI for git 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: Sun, 22 Sep 2013 06:17:53 -0000 Synopsis: New Port: devel/git-cola GUI for git Responsible-Changed-From-To: freebsd-ports-bugs->jgh Responsible-Changed-By: jgh Responsible-Changed-When: Sun Sep 22 06:17:53 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=182282 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 06:31:40 2013 Return-Path: Delivered-To: freebsd-ports-bugs@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 DEAE7248; Sun, 22 Sep 2013 06:31:40 +0000 (UTC) (envelope-from yasu@utahime.org) Received: from gate.utahime.jp (ipq210.utahime.jp [183.180.29.210]) by mx1.freebsd.org (Postfix) with ESMTP id 6CCF72D9B; Sun, 22 Sep 2013 06:31:39 +0000 (UTC) Received: from eastasia.home.utahime.org (eastasia.home.utahime.org [192.168.174.1]) by gate.utahime.jp (Postfix) with ESMTP id B19E461F9D; Sun, 22 Sep 2013 15:31:38 +0900 (JST) Received: from eastasia.home.utahime.org (localhost [127.0.0.1]) by localhost-backdoor.home.utahime.org (Postfix) with ESMTP id 83EA44E63E; Sun, 22 Sep 2013 15:31:38 +0900 (JST) Received: from [192.168.174.2] (rolling.home.utahime.org [192.168.174.2]) by eastasia.home.utahime.org (Postfix) with ESMTPA id 5ED094E631; Sun, 22 Sep 2013 15:31:38 +0900 (JST) Message-ID: <523E8EC6.60207@utahime.org> Date: Sun, 22 Sep 2013 15:31:34 +0900 From: Yasuhiro KIMURA User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.0 MIME-Version: 1.0 To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/182284: [PATCH] devel/magit: change directory of elisp files and etc. References: <201309211740.r8LHe0f2086028@freefall.freebsd.org> In-Reply-To: <201309211740.r8LHe0f2086028@freefall.freebsd.org> Content-Type: multipart/mixed; boundary="------------020105070400070600000408" X-Virus-Scanned: ClamAV using ClamSMTP 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: Sun, 22 Sep 2013 06:31:40 -0000 This is a multi-part message in MIME format. --------------020105070400070600000408 Content-Type: text/plain; charset=ISO-2022-JP Content-Transfer-Encoding: 7bit Forget to convert USE_GMAKE to USES=gmake. So please commit attached patch instead of original one. Regards. --------------020105070400070600000408 Content-Type: text/plain; charset=Shift_JIS; name="patch-magit" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="patch-magit" SW5kZXg6IE1ha2VmaWxlCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KLS0tIE1ha2VmaWxlCShyZXZpc2lvbiAz Mjc4NDUpCisrKyBNYWtlZmlsZQkod29ya2luZyBjb3B5KQpAQCAtMSwxOSArMSwzNiBAQAor IyBDcmVhdGVkIGJ5OiBKdW4gS3VyaXlhbWEgPGt1cml5YW1hQEZyZWVCU0Qub3JnPgogIyAk RnJlZUJTRCQKIAogUE9SVE5BTUU9CW1hZ2l0CiBQT1JUVkVSU0lPTj0JMS4yLjAKLVBPUlRS RVZJU0lPTj0JMQorUE9SVFJFVklTSU9OPQkyCiBDQVRFR09SSUVTPQlkZXZlbCBlbGlzcAog TUFTVEVSX1NJVEVTPQkke01BU1RFUl9TSVRFX0xPQ0FMfSBcCiAJCWh0dHA6Ly9jbG91ZC5n aXRodWIuY29tL2Rvd25sb2Fkcy9tYWdpdC9tYWdpdC8KIE1BU1RFUl9TSVRFX1NVQkRJUj0J a3VyaXlhbWEKK1BLR05BTUVTVUZGSVg9CS0ke0VNQUNTX1BPUlRfTkFNRX0KIAogTUFJTlRB SU5FUj0Ja3VyaXlhbWFARnJlZUJTRC5vcmcKIENPTU1FTlQ9CUludGVyZmFjZSB0byBHaXQg Zm9yIEVtYWNzCiAKK0xJQ0VOU0U9CUdGREwgR1BMdjMKK0xJQ0VOU0VfQ09NQj0JbXVsdGkK KworUlVOX0RFUEVORFM9CWdpdD4wOiR7UE9SVFNESVJ9L2RldmVsL2dpdAorCitVU0VTPQkJ Z21ha2UKIFVTRV9FTUFDUz0JWUVTCi1VU0VfR01BS0U9CVlFUwogSU5GTz0JCW1hZ2l0CiAK K0VMSVNQRElSPQkke0VNQUNTX1ZFUlNJT05fU0lURV9MSVNQRElSfS8ke1BPUlROQU1FfQor CitNQUtFX0VOVis9CUVMSVNQRElSPSR7UFJFRklYfS8ke0VMSVNQRElSfSBcCisJCUlORk9E SVI9JHtQUkVGSVh9LyR7SU5GT19QQVRIfQorUExJU1RfU1VCKz0JRUxJU1BESVI9JHtFTElT UERJUn0KKwogTk9fU1RBR0U9CXllcworCitwb3N0LWluc3RhbGw6CisJQCR7Q0FUfSAke1BL R01FU1NBR0V9CisKIC5pbmNsdWRlIDxic2QucG9ydC5taz4KSW5kZXg6IGZpbGVzL3BhdGNo LU1ha2VmaWxlCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT0KLS0tIGZpbGVzL3BhdGNoLU1ha2VmaWxlCShyZXZp c2lvbiAzMjc4NDUpCisrKyBmaWxlcy9wYXRjaC1NYWtlZmlsZQkod29ya2luZyBjb3B5KQpA QCAtMSwyMSArMSwzMCBAQAotLS0tIE1ha2VmaWxlLm9yaWcJMjAxMi0wMi0yNSAyMDoxMTow OC4xNTk3MTExMDIgKzA5MDAKLSsrKyBNYWtlZmlsZQkyMDEyLTAyLTI1IDIwOjEzOjM0LjE1 MjM5ODYyNCArMDkwMAotQEAgLTYxLDEzICs2MSwxMyBAQAorLS0tIE1ha2VmaWxlLm9yaWcJ MjAxMi0wOS0yNSAwNDo0MToxOS4wMDAwMDAwMDAgKzA5MDAKKysrKyBNYWtlZmlsZQkyMDEz LTA5LTIxIDIzOjAxOjA0LjAwMDAwMDAwMCArMDkwMAorQEAgLTEsNSArMSw1IEBACisgVkVS U0lPTj0xLjIuMAorLUVNQUNTPWVtYWNzCisrI0VNQUNTPWVtYWNzCisgUFJFRklYPS91c3Iv bG9jYWwKKyBTWVNDT05GRElSPS9ldGMKKyBFTFM9bWFnaXQuZWwgbWFnaXQtc3ZuLmVsIG1h Z2l0LXRvcGdpdC5lbCBtYWdpdC1zdGdpdC5lbCBtYWdpdC1rZXktbW9kZS5lbCBtYWdpdC1i aXNlY3QuZWwgbWFnaXQtd2lwLmVsIHJlYmFzZS1tb2RlLmVsIG1hZ2l0LWJsYW1lLmVsCitA QCAtNjQsMTUgKzY0LDEzIEBACisgaW5zdGFsbDogaW5zdGFsbF9jb3JlIGluc3RhbGxfZG9j cworIAogIGluc3RhbGxfY29yZTogY29yZQotIAlta2RpciAtcCAkKERFU1RESVIpJChQUkVG SVgpL3NoYXJlL2VtYWNzL3NpdGUtbGlzcAotIAlpbnN0YWxsIC1tIDY0NCAkKEVMUykgJChF TENTKSAkKERFU1RESVIpJChQUkVGSVgpL3NoYXJlL2VtYWNzL3NpdGUtbGlzcAorLQlta2Rp ciAtcCAkKERFU1RESVIpJChQUkVGSVgpL3NoYXJlL2VtYWNzL3NpdGUtbGlzcAorLQlpbnN0 YWxsIC1tIDY0NCAkKEVMUykgJChFTENTKSAkKERFU1RESVIpJChQUkVGSVgpL3NoYXJlL2Vt YWNzL3NpdGUtbGlzcAogLQlta2RpciAtcCAkKERFU1RESVIpJChTWVNDT05GRElSKS9lbWFj cy9zaXRlLXN0YXJ0LmQKIC0JaW5zdGFsbCAtbSA2NDQgNTBtYWdpdC5lbCAkKERFU1RESVIp JChTWVNDT05GRElSKS9lbWFjcy9zaXRlLXN0YXJ0LmQvNTBtYWdpdC5lbAotKwlta2RpciAt cCAkKERFU1RESVIpJChQUkVGSVgpJChTWVNDT05GRElSKS9lbWFjcy9zaXRlLXN0YXJ0LmQK LSsJaW5zdGFsbCAtbSA2NDQgNTBtYWdpdC5lbCAkKERFU1RESVIpJChQUkVGSVgpJChTWVND T05GRElSKS9lbWFjcy9zaXRlLXN0YXJ0LmQvNTBtYWdpdC5lbAorKwlta2RpciAtcCAkKEVM SVNQRElSKQorKwlpbnN0YWxsIC1tIDY0NCAkKEVMUykgJChFTENTKSAkKEVMSVNQRElSKQog IAogIGluc3RhbGxfZG9jczogZG9jcwogLQlta2RpciAtcCAkKERFU1RESVIpJChQUkVGSVgp L3NoYXJlL2luZm8KIC0JaW5zdGFsbCAtbSA2NDQgbWFnaXQuaW5mbyAkKERFU1RESVIpJChQ UkVGSVgpL3NoYXJlL2luZm8KIC0JaW5zdGFsbC1pbmZvIC0taW5mby1kaXI9JChERVNURElS KSQoUFJFRklYKS9zaGFyZS9pbmZvICQoREVTVERJUikkKFBSRUZJWCkvc2hhcmUvaW5mby9t YWdpdC5pbmZvCi0rCW1rZGlyIC1wICQoREVTVERJUikkKFBSRUZJWCkvaW5mbwotKwlpbnN0 YWxsIC1tIDY0NCBtYWdpdC5pbmZvICQoREVTVERJUikkKFBSRUZJWCkvaW5mbwotKwlpbnN0 YWxsLWluZm8gLS1pbmZvLWRpcj0kKERFU1RESVIpJChQUkVGSVgpL2luZm8gJChERVNURElS KSQoUFJFRklYKS9pbmZvL21hZ2l0LmluZm8KKysJbWtkaXIgLXAgJChJTkZPRElSKQorKwlp bnN0YWxsIC1tIDY0NCBtYWdpdC5pbmZvICQoSU5GT0RJUikKKysJaW5zdGFsbC1pbmZvIC0t aW5mby1kaXI9JChJTkZPRElSKSAkKElORk9ESVIpL21hZ2l0LmluZm8KICAKICBpbnN0YWxs X2NvbnRyaWI6IGNvbnRyaWIKICAJbWtkaXIgLXAgJChERVNURElSKSQoUFJFRklYKS9zaGFy ZS9lbWFjcy9zaXRlLWxpc3AKSW5kZXg6IHBrZy1kZXNjcgo9PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09Ci0tLSBw a2ctZGVzY3IJKHJldmlzaW9uIDMyNzg0NSkKKysrIHBrZy1kZXNjcgkod29ya2luZyBjb3B5 KQpAQCAtNCw0ICs0LDQgQEAKIGNoYW5nZXMuICBUaGVyZSBpcyBzdXBwb3J0IGZvciBjaGVy cnkgcGlja2luZywgcmV2ZXJ0aW5nLCBtZXJnaW5nLAogcmViYXNpbmcsIGFuZCBvdGhlciBj b21tb24gR2l0IG9wZXJhdGlvbnMuCiAKLVdXVzogaHR0cDovL3BoaWxqYWNrc29uLmdpdGh1 Yi5jb20vbWFnaXQvCitXV1c6IGh0dHA6Ly9tYWdpdC5naXRodWIuaW8vbWFnaXQvCkluZGV4 OiBwa2ctbWVzc2FnZQo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09Ci0tLSBwa2ctbWVzc2FnZQkocmV2aXNpb24g MCkKKysrIHBrZy1tZXNzYWdlCSh3b3JraW5nIGNvcHkpCkBAIC0wLDAgKzEsNiBAQAorKioq KioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioq KioqKioqKioqKioqKgorVG8gdXNlIE1hZ2l0LCB5b3Ugc2hvdWxkIGFkZCBmb2xsb3dpbmcg bGluZSB0byB5b3VyIC5lbWFjcyBmaWxlOgorCisocmVxdWlyZSAnbWFnaXQpCisKKyoqKioq KioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioq KioqKioqKioqKioKClByb3BlcnR5IGNoYW5nZXMgb246IHBrZy1tZXNzYWdlCl9fX19fX19f X19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19f X19fX18KQWRkZWQ6IHN2bjptaW1lLXR5cGUKIyMgLTAsMCArMSAjIwordGV4dC9wbGFpbgpc IE5vIG5ld2xpbmUgYXQgZW5kIG9mIHByb3BlcnR5CkFkZGVkOiBmYnNkOm5va2V5d29yZHMK IyMgLTAsMCArMSAjIworeWVzClwgTm8gbmV3bGluZSBhdCBlbmQgb2YgcHJvcGVydHkKQWRk ZWQ6IHN2bjplb2wtc3R5bGUKIyMgLTAsMCArMSAjIworbmF0aXZlClwgTm8gbmV3bGluZSBh dCBlbmQgb2YgcHJvcGVydHkKSW5kZXg6IHBrZy1wbGlzdAo9PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09Ci0tLSBw a2ctcGxpc3QJKHJldmlzaW9uIDMyNzg0NSkKKysrIHBrZy1wbGlzdAkod29ya2luZyBjb3B5 KQpAQCAtMSwyMSArMSwxOSBAQAotZXRjL2VtYWNzL3NpdGUtc3RhcnQuZC81MG1hZ2l0LmVs Ci1zaGFyZS9lbWFjcy9zaXRlLWxpc3AvbWFnaXQtYmlzZWN0LmVsCi1zaGFyZS9lbWFjcy9z aXRlLWxpc3AvbWFnaXQtYmlzZWN0LmVsYwotc2hhcmUvZW1hY3Mvc2l0ZS1saXNwL21hZ2l0 LWJsYW1lLmVsCi1zaGFyZS9lbWFjcy9zaXRlLWxpc3AvbWFnaXQtYmxhbWUuZWxjCi1zaGFy ZS9lbWFjcy9zaXRlLWxpc3AvbWFnaXQta2V5LW1vZGUuZWwKLXNoYXJlL2VtYWNzL3NpdGUt bGlzcC9tYWdpdC1rZXktbW9kZS5lbGMKLXNoYXJlL2VtYWNzL3NpdGUtbGlzcC9tYWdpdC1z dGdpdC5lbAotc2hhcmUvZW1hY3Mvc2l0ZS1saXNwL21hZ2l0LXN0Z2l0LmVsYwotc2hhcmUv ZW1hY3Mvc2l0ZS1saXNwL21hZ2l0LXN2bi5lbAotc2hhcmUvZW1hY3Mvc2l0ZS1saXNwL21h Z2l0LXN2bi5lbGMKLXNoYXJlL2VtYWNzL3NpdGUtbGlzcC9tYWdpdC10b3BnaXQuZWwKLXNo YXJlL2VtYWNzL3NpdGUtbGlzcC9tYWdpdC10b3BnaXQuZWxjCi1zaGFyZS9lbWFjcy9zaXRl LWxpc3AvbWFnaXQtd2lwLmVsCi1zaGFyZS9lbWFjcy9zaXRlLWxpc3AvbWFnaXQtd2lwLmVs Ywotc2hhcmUvZW1hY3Mvc2l0ZS1saXNwL21hZ2l0LmVsCi1zaGFyZS9lbWFjcy9zaXRlLWxp c3AvbWFnaXQuZWxjCi1zaGFyZS9lbWFjcy9zaXRlLWxpc3AvcmViYXNlLW1vZGUuZWwKLXNo YXJlL2VtYWNzL3NpdGUtbGlzcC9yZWJhc2UtbW9kZS5lbGMKLUBkaXJybXRyeSBldGMvZW1h Y3Mvc2l0ZS1zdGFydC5kCi1AZGlycm10cnkgZXRjL2VtYWNzCislJUVMSVNQRElSJSUvbWFn aXQtYmlzZWN0LmVsCislJUVMSVNQRElSJSUvbWFnaXQtYmlzZWN0LmVsYworJSVFTElTUERJ UiUlL21hZ2l0LWJsYW1lLmVsCislJUVMSVNQRElSJSUvbWFnaXQtYmxhbWUuZWxjCislJUVM SVNQRElSJSUvbWFnaXQta2V5LW1vZGUuZWwKKyUlRUxJU1BESVIlJS9tYWdpdC1rZXktbW9k ZS5lbGMKKyUlRUxJU1BESVIlJS9tYWdpdC1zdGdpdC5lbAorJSVFTElTUERJUiUlL21hZ2l0 LXN0Z2l0LmVsYworJSVFTElTUERJUiUlL21hZ2l0LXN2bi5lbAorJSVFTElTUERJUiUlL21h Z2l0LXN2bi5lbGMKKyUlRUxJU1BESVIlJS9tYWdpdC10b3BnaXQuZWwKKyUlRUxJU1BESVIl JS9tYWdpdC10b3BnaXQuZWxjCislJUVMSVNQRElSJSUvbWFnaXQtd2lwLmVsCislJUVMSVNQ RElSJSUvbWFnaXQtd2lwLmVsYworJSVFTElTUERJUiUlL21hZ2l0LmVsCislJUVMSVNQRElS JSUvbWFnaXQuZWxjCislJUVMSVNQRElSJSUvcmViYXNlLW1vZGUuZWwKKyUlRUxJU1BESVIl JS9yZWJhc2UtbW9kZS5lbGMKK0BkaXJybSAlJUVMSVNQRElSJSUK --------------020105070400070600000408-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 07: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 B3B0B8D4 for ; Sun, 22 Sep 2013 07: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 9187F2FCE for ; Sun, 22 Sep 2013 07: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 r8M7U0vM082923 for ; Sun, 22 Sep 2013 07: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 r8M7U0iL082922; Sun, 22 Sep 2013 07:30:00 GMT (envelope-from gnats) Resent-Date: Sun, 22 Sep 2013 07:30:00 GMT Resent-Message-Id: <201309220730.r8M7U0iL082922@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, "Herbert J. Skuhra" 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 CDA55859 for ; Sun, 22 Sep 2013 07:20:27 +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 B9DA02F72 for ; Sun, 22 Sep 2013 07:20:27 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8M7KRAq068624 for ; Sun, 22 Sep 2013 07:20:27 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8M7KR5O068541; Sun, 22 Sep 2013 07:20:27 GMT (envelope-from nobody) Message-Id: <201309220720.r8M7KR5O068541@oldred.freebsd.org> Date: Sun, 22 Sep 2013 07:20:27 GMT From: "Herbert J. Skuhra" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182290: [Patch] Update games/klavaro to version 1.9.9 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: Sun, 22 Sep 2013 07:30:00 -0000 >Number: 182290 >Category: ports >Synopsis: [Patch] Update games/klavaro to version 1.9.9 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Sep 22 07:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Herbert J. Skuhra >Release: FreeBSD 9.2-PRERELEASE i386 >Organization: >Environment: FreeBSD build.home.lan 9.2-PRERELEASE FreeBSD 9.2-PRERELEASE #0 r255382: Sun Sep 8 07:38:18 CEST 2013 herbert@build.home.lan:/usr/obj/usr/src/sys/PC1 i386 >Description: Update games/klavaro to version 1.9.9. >How-To-Repeat: >Fix: Patch attached with submission follows: Index: Makefile =================================================================== --- Makefile (revision 327854) +++ Makefile (working copy) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= klavaro -PORTVERSION= 1.9.6 -PORTREVISION= 1 +PORTVERSION= 1.9.9 CATEGORIES= games MASTER_SITES= SF/${PORTNAME}/ @@ -22,7 +21,7 @@ fontconfig:${PORTSDIR}/x11-fonts/fontconfig \ gtkdatabox:${PORTSDIR}/x11-toolkits/gtkdatabox -USES= pkgconfig gettext iconv +USES= pkgconfig gettext iconv pathfix USE_BZIP2= yes USE_GMAKE= yes USE_XORG= pixman x11 xau xcb xcomposite xcursor xdamage xdmcp xext \ @@ -32,7 +31,7 @@ INSTALLS_ICONS= yes CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/gtkdatabox -LDFLAGS+= -L${LOCALBASE}/lib +LDFLAGS+= -L${LOCALBASE}/lib -rdynamic GNU_CONFIGURE= yes @@ -39,8 +38,13 @@ MAN1= ${PORTNAME}.1 NO_STAGE= yes + post-extract: @${REINPLACE_CMD} -e 's|/usr|${PREFIX}|' \ ${WRKSRC}/data/klavaro.desktop.in +pre-build: + @${REINPLACE_CMD} -e 's|^am__append_1|#am__append_1|' \ + ${WRKSRC}/src/Makefile + .include Index: distinfo =================================================================== --- distinfo (revision 327854) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (klavaro-1.9.6.tar.bz2) = 6d7fc916eb83d0381b0719c1525c8ea13a5032abcadd438755c7451b9f071561 -SIZE (klavaro-1.9.6.tar.bz2) = 773462 +SHA256 (klavaro-1.9.9.tar.bz2) = 26bdc403355e6b32221b548c038c64dc07abe154401d9433996fae50485a4ca8 +SIZE (klavaro-1.9.9.tar.bz2) = 859928 Index: pkg-plist =================================================================== --- pkg-plist (revision 327854) +++ pkg-plist (working copy) @@ -8,6 +8,8 @@ %%DATADIR%%/azerty_fr_ibook.kbd %%DATADIR%%/basic_lessons.txt %%DATADIR%%/beep.png +%%DATADIR%%/bg.paragraphs +%%DATADIR%%/bg.words %%DATADIR%%/bn.paragraphs %%DATADIR%%/bn.words %%DATADIR%%/colemak_us.kbd @@ -17,6 +19,7 @@ %%DATADIR%%/da.words %%DATADIR%%/de.paragraphs %%DATADIR%%/de.words +%%DATADIR%%/dvorak_bg.kbd %%DATADIR%%/dvorak_br_nativo.kbd %%DATADIR%%/dvorak_br_us.kbd %%DATADIR%%/dvorak_ca_fr.kbd @@ -32,6 +35,8 @@ %%DATADIR%%/dvorak_tr_F.kbd %%DATADIR%%/dvorak_uk.kbd %%DATADIR%%/dvorak_us.kbd +%%DATADIR%%/el.paragraphs +%%DATADIR%%/el.words %%DATADIR%%/en_GB.paragraphs %%DATADIR%%/en_GB.words %%DATADIR%%/eo.paragraphs @@ -81,6 +86,8 @@ %%DATADIR%%/pt_BR.paragraphs %%DATADIR%%/pt_BR.words %%DATADIR%%/qwerty_ar.kbd +%%DATADIR%%/qwerty_bg.kbd +%%DATADIR%%/qwerty_bg_2.kbd %%DATADIR%%/qwerty_br.kbd %%DATADIR%%/qwerty_br_abnt2.kbd %%DATADIR%%/qwerty_ca_multling.kbd @@ -90,6 +97,7 @@ %%DATADIR%%/qwerty_dk.kbd %%DATADIR%%/qwerty_es.kbd %%DATADIR%%/qwerty_gr.kbd +%%DATADIR%%/qwerty_gr_old.kbd %%DATADIR%%/qwerty_il.kbd %%DATADIR%%/qwerty_il_old.kbd %%DATADIR%%/qwerty_it.kbd @@ -130,10 +138,12 @@ share/icons/hicolor/32x32/apps/klavaro.png share/icons/hicolor/48x48/apps/klavaro.png share/locale/ar/LC_MESSAGES/klavaro.mo +share/locale/bg/LC_MESSAGES/klavaro.mo share/locale/bn/LC_MESSAGES/klavaro.mo share/locale/cs/LC_MESSAGES/klavaro.mo share/locale/da/LC_MESSAGES/klavaro.mo share/locale/de/LC_MESSAGES/klavaro.mo +share/locale/el/LC_MESSAGES/klavaro.mo share/locale/en_GB/LC_MESSAGES/klavaro.mo share/locale/eo/LC_MESSAGES/klavaro.mo share/locale/es/LC_MESSAGES/klavaro.mo >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 08:40:02 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 447022C6 for ; Sun, 22 Sep 2013 08:40:02 +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 0D17F2291 for ; Sun, 22 Sep 2013 08:40:02 +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 r8M8e1ef004295 for ; Sun, 22 Sep 2013 08:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8M8e1UR004294; Sun, 22 Sep 2013 08:40:01 GMT (envelope-from gnats) Resent-Date: Sun, 22 Sep 2013 08:40:01 GMT Resent-Message-Id: <201309220840.r8M8e1UR004294@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, Andrew Clarke Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id ADA88294 for ; Sun, 22 Sep 2013 08:34:54 +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 9B97F226E for ; Sun, 22 Sep 2013 08:34:54 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8M8YsUQ078060 for ; Sun, 22 Sep 2013 08:34:54 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8M8YsFG078059; Sun, 22 Sep 2013 08:34:54 GMT (envelope-from nobody) Message-Id: <201309220834.r8M8YsFG078059@oldred.freebsd.org> Date: Sun, 22 Sep 2013 08:34:54 GMT From: Andrew Clarke To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182291: [patch] editors/uemacs: Update MASTER_SITES 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: Sun, 22 Sep 2013 08:40:02 -0000 >Number: 182291 >Category: ports >Synopsis: [patch] editors/uemacs: Update MASTER_SITES >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Sep 22 08:40:01 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Andrew Clarke >Release: 8.4-RELEASE-p4 >Organization: >Environment: >Description: Update MASTER_SITES to new download location. >How-To-Repeat: >Fix: Patch attached with submission follows: --- Makefile.orig 2013-09-21 02:36:23.000000000 +1000 +++ Makefile 2013-09-22 18:17:04.464439223 +1000 @@ -4,7 +4,7 @@ PORTNAME= uemacs PORTVERSION= 4.0 CATEGORIES= editors -MASTER_SITES= http://ozzmosis.com/uemacs/ +MASTER_SITES= http://dl.ozzmosis.com/uemacs/ DISTNAME= ue400dev MAINTAINER= mail@ozzmosis.com >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 08:40:28 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 290162F7; Sun, 22 Sep 2013 08:40:28 +0000 (UTC) (envelope-from edwin@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 F3E9D22CF; Sun, 22 Sep 2013 08:40:27 +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 r8M8eRB4005859; Sun, 22 Sep 2013 08:40:27 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8M8eRSj005858; Sun, 22 Sep 2013 08:40:27 GMT (envelope-from edwin) Date: Sun, 22 Sep 2013 08:40:27 GMT Message-Id: <201309220840.r8M8eRSj005858@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182291: [patch] editors/uemacs: Update MASTER_SITES 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: Sun, 22 Sep 2013 08:40:28 -0000 Synopsis: [patch] editors/uemacs: Update MASTER_SITES Class-Changed-From-To: change-request->maintainer-update Class-Changed-By: edwin Class-Changed-When: Sun Sep 22 08:40:27 UTC 2013 Class-Changed-Why: Fix category (submitter is maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182291 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 09:33:48 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 0DAA7AAE; Sun, 22 Sep 2013 09:33:48 +0000 (UTC) (envelope-from sunpoet@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 D5BDC24BD; Sun, 22 Sep 2013 09:33:47 +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 r8M9XlZA016127; Sun, 22 Sep 2013 09:33:47 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8M9Xlqr016126; Sun, 22 Sep 2013 09:33:47 GMT (envelope-from sunpoet) Date: Sun, 22 Sep 2013 09:33:47 GMT Message-Id: <201309220933.r8M9Xlqr016126@freefall.freebsd.org> To: sunpoet@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: sunpoet@FreeBSD.org Subject: Re: ports/182291: [patch] editors/uemacs: Update MASTER_SITES 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: Sun, 22 Sep 2013 09:33:48 -0000 Synopsis: [patch] editors/uemacs: Update MASTER_SITES Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: sunpoet Responsible-Changed-When: Sun Sep 22 09:33:47 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=182291 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 09:50: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 B75EAF4 for ; Sun, 22 Sep 2013 09:50: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 9579F2578 for ; Sun, 22 Sep 2013 09:50: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 r8M9o0C3018251 for ; Sun, 22 Sep 2013 09:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8M9o0VE018250; Sun, 22 Sep 2013 09:50:00 GMT (envelope-from gnats) Resent-Date: Sun, 22 Sep 2013 09:50:00 GMT Resent-Message-Id: <201309220950.r8M9o0VE018250@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, Rustem Alimov 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 405DFF38 for ; Sun, 22 Sep 2013 09:45:05 +0000 (UTC) (envelope-from rustem.alimov@gmail.com) Received: from mail-la0-x22e.google.com (mail-la0-x22e.google.com [IPv6:2a00:1450:4010:c03::22e]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C27812546 for ; Sun, 22 Sep 2013 09:45:04 +0000 (UTC) Received: by mail-la0-f46.google.com with SMTP id eh20so1620429lab.33 for ; Sun, 22 Sep 2013 02:45:02 -0700 (PDT) Received: from ruspc ([95.73.111.234]) by mx.google.com with ESMTPSA id b6sm9919514lae.0.1969.12.31.16.00.00 (version=TLSv1 cipher=RC4-SHA bits=128/128); Sun, 22 Sep 2013 02:45:01 -0700 (PDT) Received: by ruspc (sSMTP sendmail emulation); Sun, 22 Sep 2013 13:44:39 +0400 Message-Id: <523ebc1d.2613980a.2a9a.ffff81ec@mx.google.com> Date: Sun, 22 Sep 2013 13:44:39 +0400 From: Rustem Alimov To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/182292: |PATCH| lang/php5: update to 5.4.20 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Rustem Alimov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Sep 2013 09:50:00 -0000 >Number: 182292 >Category: ports >Synopsis: |PATCH| lang/php5: update to 5.4.20 >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: Sun Sep 22 09:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Rustem Alimov >Release: FreeBSD 9.1-RELEASE i386 >Organization: >Environment: System: FreeBSD ruspc 9.1-RELEASE FreeBSD 9.1-RELEASE #0 r243826 >Description: Update to 5.4.20 release >How-To-Repeat: >Fix: --- php5.diff begins here --- Index: Makefile =================================================================== --- Makefile (revision 327854) +++ Makefile (working copy) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= php5 -PORTVERSION= 5.4.19 +PORTVERSION= 5.4.20 PORTREVISION?= 0 CATEGORIES?= lang devel www MASTER_SITES= ${MASTER_SITE_PHP} Index: distinfo =================================================================== --- distinfo (revision 327854) +++ distinfo (working copy) @@ -1,4 +1,4 @@ -SHA256 (php-5.4.19.tar.bz2) = 7a565360e64c5be5102ef948e7c732778a40850e709270e64be7a3a3207c029b -SIZE (php-5.4.19.tar.bz2) = 11692563 +SHA256 (php-5.4.20.tar.bz2) = cd0e42cf8b01b2fe23d5acbb30e04d64e8df21b0b4093e28aef36743646759e1 +SIZE (php-5.4.20.tar.bz2) = 11700446 SHA256 (php-5.4.x-mail-header.patch) = 005ae1cd8ed17c72d7b09dee9c4466e8b16d4ecba7fe11276731ed6ff9fbb344 SIZE (php-5.4.x-mail-header.patch) = 3379 --- php5.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 09:50:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 18327121; Sun, 22 Sep 2013 09:50:09 +0000 (UTC) (envelope-from edwin@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 E210F2579; Sun, 22 Sep 2013 09:50:08 +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 r8M9o851018386; Sun, 22 Sep 2013 09:50:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8M9o8Ro018385; Sun, 22 Sep 2013 09:50:08 GMT (envelope-from edwin) Date: Sun, 22 Sep 2013 09:50:08 GMT Message-Id: <201309220950.r8M9o8Ro018385@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ale@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182292: |PATCH| lang/php5: update to 5.4.20 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: Sun, 22 Sep 2013 09:50:09 -0000 Synopsis: |PATCH| lang/php5: update to 5.4.20 Responsible-Changed-From-To: freebsd-ports-bugs->ale Responsible-Changed-By: edwin Responsible-Changed-When: Sun Sep 22 09:50:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182292 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 10:01:30 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 0ECB63A4; Sun, 22 Sep 2013 10:01:30 +0000 (UTC) (envelope-from sunpoet@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 D7AC02606; Sun, 22 Sep 2013 10:01:29 +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 r8MA1TdZ021935; Sun, 22 Sep 2013 10:01:29 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MA1TvB021934; Sun, 22 Sep 2013 10:01:29 GMT (envelope-from sunpoet) Date: Sun, 22 Sep 2013 10:01:29 GMT Message-Id: <201309221001.r8MA1TvB021934@freefall.freebsd.org> To: sunpoet@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: sunpoet@FreeBSD.org Subject: Re: ports/182253: devel/liblognorm, port upgrade 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: Sun, 22 Sep 2013 10:01:30 -0000 Synopsis: devel/liblognorm, port upgrade Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: sunpoet Responsible-Changed-When: Sun Sep 22 10:01:29 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=182253 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 12:00:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 598619F0 for ; Sun, 22 Sep 2013 12:00:01 +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 222512AF5 for ; Sun, 22 Sep 2013 12:00:01 +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 r8MC00Sk044202 for ; Sun, 22 Sep 2013 12:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MC00GA044201; Sun, 22 Sep 2013 12:00:00 GMT (envelope-from gnats) Resent-Date: Sun, 22 Sep 2013 12:00:00 GMT Resent-Message-Id: <201309221200.r8MC00GA044201@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, Sutra Zhou 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 EB1559B7 for ; Sun, 22 Sep 2013 11:56:59 +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 D93BD2AE8 for ; Sun, 22 Sep 2013 11:56:59 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8MBuxXe092393 for ; Sun, 22 Sep 2013 11:56:59 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8MBuxe3092387; Sun, 22 Sep 2013 11:56:59 GMT (envelope-from nobody) Message-Id: <201309221156.r8MBuxe3092387@oldred.freebsd.org> Date: Sun, 22 Sep 2013 11:56:59 GMT From: Sutra Zhou To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182293: Specify GCC version for devel/libopkele 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: Sun, 22 Sep 2013 12:00:01 -0000 >Number: 182293 >Category: ports >Synopsis: Specify GCC version for devel/libopkele >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Sep 22 12:00:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Sutra Zhou >Release: 10.0-ALPHA1 >Organization: >Environment: FreeBSD www.example.org 10.0-ALPHA1 FreBSD 10.0-ALPHA1 #0 r255602: Tue Sep 17 08:43:57 CST 2013 root@www.example.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: On FreeBSD 10, libopkele build failed with gcc3 http://beefy2.isc.freebsd.org/bulk/head-amd64-default/2013-09-12_01h37m09s/logs/libopkele-2.0.4_2.log So I have some tests, and found libopkele can only build with gcc 4.4 or 4.6: 4.2 Failed 4.4 OK 4.6 OK 4.7 Failed 4.8 Failed 4.9 Unknown version of GCC specified (USE_GCC=4.9) This patch attached specifies USE_GCC=46 >How-To-Repeat: >Fix: Patch attached with submission follows: Index: Makefile =================================================================== --- Makefile (revision 327866) +++ Makefile (working copy) @@ -18,6 +18,7 @@ xslt:${PORTSDIR}/textproc/libxslt USE_LDCONFIG= yes +USE_GCC= 4.6 USES= gmake pkgconfig GNU_CONFIGURE= yes CONFIGURE_ENV= "OPENSSL_CFLAGS=${CFLAGS} -l${OPENSSLINC}" \ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 12:10:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id E0397C0B for ; Sun, 22 Sep 2013 12:10: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 BF45F2B8A for ; Sun, 22 Sep 2013 12:10: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 r8MCA0PC046260 for ; Sun, 22 Sep 2013 12:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MCA0KU046251; Sun, 22 Sep 2013 12:10:00 GMT (envelope-from gnats) Resent-Date: Sun, 22 Sep 2013 12:10:00 GMT Resent-Message-Id: <201309221210.r8MCA0KU046251@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, Alex Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id ADE94C06 for ; Sun, 22 Sep 2013 12:08:32 +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 9CCB62B85 for ; Sun, 22 Sep 2013 12:08:32 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8MC8VH3039094 for ; Sun, 22 Sep 2013 12:08:31 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8MC8VVv039089; Sun, 22 Sep 2013 12:08:31 GMT (envelope-from nobody) Message-Id: <201309221208.r8MC8VVv039089@oldred.freebsd.org> Date: Sun, 22 Sep 2013 12:08:31 GMT From: Alex To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182294: sysutils/fsc not forked to background at start 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: Sun, 22 Sep 2013 12:10:01 -0000 >Number: 182294 >Category: ports >Synopsis: sysutils/fsc not forked to background at start >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Sep 22 12:10:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Alex >Release: 9.2-RC4 >Organization: >Environment: FreeBSD xxx 9.2-RC4 FreeBSD 9.2-RC4 #0 r255465: Wed Sep 11 09:29:50 UTC 2013 root@bake.isc.freebsd.org:/usr/obj/usr/src/sys/GENERIC i386 >Description: root@:/home/test # pkg inf fsc fsc-1.0.1_2 root@:/home/test # cat /usr/local/etc/fscd.conf sshd root@:/home/test # service fscd start Starting fscd. sshd is running as pid 1474. ^Cfscd: pidfile_remove: Bad file descriptor /usr/local/etc/rc.d/fscd: WARNING: failed to start fscd On startup system will waiting when fscd going to background while user don't hit Ctrl+C >How-To-Repeat: Install sysutils/fsc from ports (current version 1.0.1_2). Same results on 9.1-RELEASE and 10.0-ALPHA1 >Fix: Dirty workaround: --- /usr/local/etc/rc.d/fscd 2013-09-22 15:50:03.000000000 +0600 +++ /usr/local/etc/rc.d/fscd 2013-09-22 16:15:57.000000000 +0600 @@ -13,8 +13,19 @@ . /etc/rc.subr name="fscd" +rcvar="fscd_enable" +load_rc_config $name +: ${fscd_enable="NO"} + command="/usr/local/sbin/${name}" pidfile="/var/run/${name}.pid" +required_files="/usr/local/etc/$name.conf" + +start_cmd=fscd_start + +fscd_start() +{ + /usr/sbin/daemon -cf ${command} +} -load_rc_config $name run_rc_command "$1" >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 12:10:08 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 816D6C3C; Sun, 22 Sep 2013 12:10:08 +0000 (UTC) (envelope-from edwin@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 57E052B8D; Sun, 22 Sep 2013 12:10:08 +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 r8MCA8uB046386; Sun, 22 Sep 2013 12:10:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MCA80R046385; Sun, 22 Sep 2013 12:10:08 GMT (envelope-from edwin) Date: Sun, 22 Sep 2013 12:10:08 GMT Message-Id: <201309221210.r8MCA80R046385@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, trhodes@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182294: sysutils/fsc not forked to background at start 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: Sun, 22 Sep 2013 12:10:08 -0000 Synopsis: sysutils/fsc not forked to background at start Responsible-Changed-From-To: freebsd-ports-bugs->trhodes Responsible-Changed-By: edwin Responsible-Changed-When: Sun Sep 22 12:10:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182294 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 12:50:01 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 C55973A1 for ; Sun, 22 Sep 2013 12:50:01 +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 A418F2D4C for ; Sun, 22 Sep 2013 12:50:01 +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 r8MCo1c6057739 for ; Sun, 22 Sep 2013 12:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MCo1gI057738; Sun, 22 Sep 2013 12:50:01 GMT (envelope-from gnats) Resent-Date: Sun, 22 Sep 2013 12:50:01 GMT Resent-Message-Id: <201309221250.r8MCo1gI057738@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, Alexey Degtyarev Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 00D1E396 for ; Sun, 22 Sep 2013 12:49:11 +0000 (UTC) (envelope-from alexey@home.renatasystems.org) Received: from home.renatasystems.org (home.renatasystems.org [87.242.77.210]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 594AF2D44 for ; Sun, 22 Sep 2013 12:49:10 +0000 (UTC) Received: from home.renatasystems.org (localhost [127.0.0.1]) by home.renatasystems.org (8.14.5/8.14.5) with ESMTP id r8MClrNW037226 for ; Sun, 22 Sep 2013 16:47:54 +0400 (MSK) (envelope-from alexey@home.renatasystems.org) Received: (from alexey@localhost) by home.renatasystems.org (8.14.5/8.14.5/Submit) id r8MClm48037225; Sun, 22 Sep 2013 16:47:48 +0400 (MSK) (envelope-from alexey) Message-Id: <201309221247.r8MClm48037225@home.renatasystems.org> Date: Sun, 22 Sep 2013 16:47:48 +0400 (MSK) From: Alexey Degtyarev To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/182296: [maintainer-update] devel/py-botocore - update to 0.17.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Alexey Degtyarev List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Sep 2013 12:50:01 -0000 >Number: 182296 >Category: ports >Synopsis: [maintainer-update] devel/py-botocore - update to 0.17.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Sep 22 12:50:01 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Alexey Degtyarev >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD home.renatasystems.org 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Mon Jan 30 09:54:00 UTC 2012 root@amd64-builder.renatasystems.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: This will update devel/py-botocore to latest version: 0.17.0 https://github.com/boto/botocore >How-To-Repeat: >Fix: --- py-botocore-0.17.diff begins here --- Index: py-botocore/distinfo =================================================================== --- py-botocore/distinfo (revision 327869) +++ py-botocore/distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (botocore-0.16.0.tar.gz) = e55a280fd35372284d42d30c6c2a07938518881e53c2abc6a22c1eeb6cb7a7fa -SIZE (botocore-0.16.0.tar.gz) = 892742 +SHA256 (botocore-0.17.0.tar.gz) = 7509f3a5aff5985b18d497aedfa0080eeeca501c9416aa4ae9b88ae3f762d9d5 +SIZE (botocore-0.17.0.tar.gz) = 906121 Index: py-botocore/files/patch-requests-ver =================================================================== --- py-botocore/files/patch-requests-ver (revision 327869) +++ py-botocore/files/patch-requests-ver (working copy) @@ -1,11 +0,0 @@ ---- setup.py 2013-08-30 04:26:06.000000000 +0000 -+++ setup.py 2013-09-06 10:17:57.000000000 +0000 -@@ -18,7 +18,7 @@ - 'botocore', - ] - --requires = ['requests==1.2.0', -+requires = ['requests>=1.2.0', - 'six>=1.1.0', - 'jmespath==0.0.2', - 'python-dateutil>=2.1'] Index: py-botocore/Makefile =================================================================== --- py-botocore/Makefile (revision 327869) +++ py-botocore/Makefile (working copy) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= botocore -PORTVERSION= 0.16.0 +PORTVERSION= 0.17.0 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,7 +14,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dateutil>=2.1:${PORTSDIR}/devel/py-dateutil \ ${PYTHON_PKGNAMEPREFIX}jmespath>=0.0.2:${PORTSDIR}/devel/py-jmespath \ - ${PYTHON_PKGNAMEPREFIX}requests>=1.2.0:${PORTSDIR}/www/py-requests \ + ${PYTHON_PKGNAMEPREFIX}requests>=1.2.3:${PORTSDIR}/www/py-requests \ ${PYTHON_PKGNAMEPREFIX}six>=1.1.0:${PORTSDIR}/devel/py-six USE_PYTHON= yes --- py-botocore-0.17.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 12:50:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 7DB2839F for ; Sun, 22 Sep 2013 12:50:01 +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 5D4A52D4A for ; Sun, 22 Sep 2013 12:50:01 +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 r8MCo1PT057727 for ; Sun, 22 Sep 2013 12:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MCo11n057726; Sun, 22 Sep 2013 12:50:01 GMT (envelope-from gnats) Resent-Date: Sun, 22 Sep 2013 12:50:01 GMT Resent-Message-Id: <201309221250.r8MCo11n057726@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, Alexey Degtyarev Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 458FF340 for ; Sun, 22 Sep 2013 12:47:13 +0000 (UTC) (envelope-from alexey@home.renatasystems.org) Received: from home.renatasystems.org (home.renatasystems.org [87.242.77.210]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A65DB2D35 for ; Sun, 22 Sep 2013 12:47:12 +0000 (UTC) Received: from home.renatasystems.org (localhost [127.0.0.1]) by home.renatasystems.org (8.14.5/8.14.5) with ESMTP id r8MCjkx4037011 for ; Sun, 22 Sep 2013 16:45:48 +0400 (MSK) (envelope-from alexey@home.renatasystems.org) Received: (from alexey@localhost) by home.renatasystems.org (8.14.5/8.14.5/Submit) id r8MCjf8r037010; Sun, 22 Sep 2013 16:45:41 +0400 (MSK) (envelope-from alexey) Message-Id: <201309221245.r8MCjf8r037010@home.renatasystems.org> Date: Sun, 22 Sep 2013 16:45:41 +0400 (MSK) From: Alexey Degtyarev To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/182295: [maintainer-update] devel/py-bcdoc - update to 0.10.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Alexey Degtyarev List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Sep 2013 12:50:01 -0000 >Number: 182295 >Category: ports >Synopsis: [maintainer-update] devel/py-bcdoc - update to 0.10.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Sep 22 12:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Alexey Degtyarev >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD home.renatasystems.org 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Mon Jan 30 09:54:00 UTC 2012 root@amd64-builder.renatasystems.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: This will update devel/py-bcdoc to latest version: 0.10.0 https://github.com/boto/bcdoc >How-To-Repeat: >Fix: --- py-bcdoc-0.10.diff begins here --- Index: py-bcdoc/distinfo =================================================================== --- py-bcdoc/distinfo (revision 327867) +++ py-bcdoc/distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (bcdoc-0.9.0.tar.gz) = 437c9fea0be53a8de85a0097763aae9e9ace71601e55224a7e8333fae985da96 -SIZE (bcdoc-0.9.0.tar.gz) = 11093 +SHA256 (bcdoc-0.10.0.tar.gz) = 0c51950fde4b92374dbfeaa54639a7872fe0ff48047461d8032416762a183cea +SIZE (bcdoc-0.10.0.tar.gz) = 11558 Index: py-bcdoc/Makefile =================================================================== --- py-bcdoc/Makefile (revision 327867) +++ py-bcdoc/Makefile (working copy) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= bcdoc -PORTVERSION= 0.9.0 +PORTVERSION= 0.10.0 CATEGORIES= devel MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} --- py-bcdoc-0.10.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 12:50:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id D07FE3CE; Sun, 22 Sep 2013 12:50:09 +0000 (UTC) (envelope-from edwin@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 A80862D4D; Sun, 22 Sep 2013 12:50:09 +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 r8MCo97X057822; Sun, 22 Sep 2013 12:50:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MCo93p057821; Sun, 22 Sep 2013 12:50:09 GMT (envelope-from edwin) Date: Sun, 22 Sep 2013 12:50:09 GMT Message-Id: <201309221250.r8MCo93p057821@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182295: [maintainer-update] devel/py-bcdoc - update to 0.10.0 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: Sun, 22 Sep 2013 12:50:09 -0000 Synopsis: [maintainer-update] devel/py-bcdoc - update to 0.10.0 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Sun Sep 22 12:50:09 UTC 2013 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182295 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 12:50:15 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 2C2343FE; Sun, 22 Sep 2013 12:50:15 +0000 (UTC) (envelope-from edwin@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 028CA2D50; Sun, 22 Sep 2013 12:50:15 +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 r8MCoEwD057903; Sun, 22 Sep 2013 12:50:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MCoEx9057902; Sun, 22 Sep 2013 12:50:14 GMT (envelope-from edwin) Date: Sun, 22 Sep 2013 12:50:14 GMT Message-Id: <201309221250.r8MCoEx9057902@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182296: [maintainer-update] devel/py-botocore - update to 0.17.0 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: Sun, 22 Sep 2013 12:50:15 -0000 Synopsis: [maintainer-update] devel/py-botocore - update to 0.17.0 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Sun Sep 22 12:50:14 UTC 2013 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182296 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:09:31 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id AE0B4488; Sun, 22 Sep 2013 14:09:31 +0000 (UTC) (envelope-from bdrewery@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 8528A215E; Sun, 22 Sep 2013 14:09:31 +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 r8ME9VbF074106; Sun, 22 Sep 2013 14:09:31 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8ME9VEG074105; Sun, 22 Sep 2013 09:09:31 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:09:31 -0500 (CDT) Message-Id: <201309221409.r8ME9VEG074105@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/179681: [Maintainer Update] graphics/gimp-help and subsidiary ports 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: Sun, 22 Sep 2013 14:09:31 -0000 X-List-Received-Date: Sun, 22 Sep 2013 14:09:31 -0000 Synopsis: [Maintainer Update] graphics/gimp-help and subsidiary ports Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:09:31 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=179681 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:09:33 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 385154B6; Sun, 22 Sep 2013 14:09:33 +0000 (UTC) (envelope-from bdrewery@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 0F7E6215F; Sun, 22 Sep 2013 14:09:33 +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 r8ME9WjF074169; Sun, 22 Sep 2013 14:09:32 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8ME9WRd074168; Sun, 22 Sep 2013 09:09:32 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:09:32 -0500 (CDT) Message-Id: <201309221409.r8ME9WRd074168@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/179754: New port: devel/p5-CPAN-Site 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: Sun, 22 Sep 2013 14:09:33 -0000 Synopsis: New port: devel/p5-CPAN-Site Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:09:32 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=179754 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:09:45 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 DC02E52B; Sun, 22 Sep 2013 14:09:45 +0000 (UTC) (envelope-from bdrewery@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 B11A62173; Sun, 22 Sep 2013 14:09:45 +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 r8ME9j6U074673; Sun, 22 Sep 2013 14:09:45 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8ME9jWt074672; Sun, 22 Sep 2013 09:09:45 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:09:45 -0500 (CDT) Message-Id: <201309221409.r8ME9jWt074672@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/180299: New port: devel/p5-String-RewritePrefix 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: Sun, 22 Sep 2013 14:09:45 -0000 Synopsis: New port: devel/p5-String-RewritePrefix Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:09:45 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=180299 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:09:50 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 8B36A562; Sun, 22 Sep 2013 14:09:50 +0000 (UTC) (envelope-from bdrewery@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 61856217D; Sun, 22 Sep 2013 14:09:50 +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 r8ME9onh074866; Sun, 22 Sep 2013 14:09:50 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8ME9oDV074865; Sun, 22 Sep 2013 09:09:50 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:09:50 -0500 (CDT) Message-Id: <201309221409.r8ME9oDV074865@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/180302: New port: devel/p5-Test-If 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: Sun, 22 Sep 2013 14:09:50 -0000 Synopsis: New port: devel/p5-Test-If Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:09:50 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=180302 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:10:03 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 5B1FC602; Sun, 22 Sep 2013 14:10:03 +0000 (UTC) (envelope-from bdrewery@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 2F888218C; Sun, 22 Sep 2013 14:10:03 +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 r8MEA3SY075471; Sun, 22 Sep 2013 14:10:03 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEA3EN075470; Sun, 22 Sep 2013 09:10:03 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:10:03 -0500 (CDT) Message-Id: <201309221410.r8MEA3EN075470@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/180311: New port: graphics/p5-Image-ObjectDetect 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: Sun, 22 Sep 2013 14:10:03 -0000 Synopsis: New port: graphics/p5-Image-ObjectDetect Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:10:02 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=180311 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:10:36 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 6B0AA756; Sun, 22 Sep 2013 14:10:36 +0000 (UTC) (envelope-from bdrewery@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 418EA21D8; Sun, 22 Sep 2013 14:10:36 +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 r8MEAauK076798; Sun, 22 Sep 2013 14:10:36 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEAZf2076797; Sun, 22 Sep 2013 09:10:35 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:10:35 -0500 (CDT) Message-Id: <201309221410.r8MEAZf2076797@freefall.freebsd.org> To: gasol.wu@gmail.com, bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/180780: [PATCH] devel/pear-TheSeer_phpDox: update to 0.5.0 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: Sun, 22 Sep 2013 14:10:36 -0000 Synopsis: [PATCH] devel/pear-TheSeer_phpDox: update to 0.5.0 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:10:35 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=180780 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:11:53 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 4E7A6AA2; Sun, 22 Sep 2013 14:11:53 +0000 (UTC) (envelope-from bdrewery@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 26259223C; Sun, 22 Sep 2013 14:11:53 +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 r8MEBrJj081406; Sun, 22 Sep 2013 14:11:53 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEBqFa081405; Sun, 22 Sep 2013 09:11:52 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:11:52 -0500 (CDT) Message-Id: <201309221411.r8MEBqFa081405@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181883: biology/fasta3: Update to version 36.3.6c 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: Sun, 22 Sep 2013 14:11:53 -0000 Synopsis: biology/fasta3: Update to version 36.3.6c Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:11:52 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181883 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:12:04 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 4BF97B12; Sun, 22 Sep 2013 14:12:04 +0000 (UTC) (envelope-from bdrewery@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 23536224A; Sun, 22 Sep 2013 14:12:04 +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 r8MEC3uu081849; Sun, 22 Sep 2013 14:12:03 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEC3tV081848; Sun, 22 Sep 2013 09:12:03 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:12:03 -0500 (CDT) Message-Id: <201309221412.r8MEC3tV081848@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181890: net-p2p/gtk-gnutella: Update to version 1.0.0 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: Sun, 22 Sep 2013 14:12:04 -0000 Synopsis: net-p2p/gtk-gnutella: Update to version 1.0.0 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:12:03 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181890 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:12:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id F1589B4E; Sun, 22 Sep 2013 14:12:08 +0000 (UTC) (envelope-from bdrewery@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 C8C7C2252; Sun, 22 Sep 2013 14:12:08 +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 r8MEC8Hf082038; Sun, 22 Sep 2013 14:12:08 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEC87B082037; Sun, 22 Sep 2013 09:12:08 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:12:08 -0500 (CDT) Message-Id: <201309221412.r8MEC87B082037@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181893: print/typetools: Update to version 2.99 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: Sun, 22 Sep 2013 14:12:09 -0000 Synopsis: print/typetools: Update to version 2.99 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:12:08 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181893 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:09:36 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 7CCC64BE; Sun, 22 Sep 2013 14:09:36 +0000 (UTC) (envelope-from bdrewery@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 54A9C2165; Sun, 22 Sep 2013 14:09:36 +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 r8ME9aui074295; Sun, 22 Sep 2013 14:09:36 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8ME9Zho074294; Sun, 22 Sep 2013 09:09:35 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:09:35 -0500 (CDT) Message-Id: <201309221409.r8ME9Zho074294@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/179844: [NEW PORT] net/py-gtknetcat: GTK GUI for netcat 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: Sun, 22 Sep 2013 14:09:36 -0000 Synopsis: [NEW PORT] net/py-gtknetcat: GTK GUI for netcat Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:09:35 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=179844 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:09:39 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 9526A4F0; Sun, 22 Sep 2013 14:09:39 +0000 (UTC) (envelope-from bdrewery@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 6D409216A; Sun, 22 Sep 2013 14:09:39 +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 r8ME9d1U074421; Sun, 22 Sep 2013 14:09:39 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8ME9dIa074420; Sun, 22 Sep 2013 09:09:39 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:09:39 -0500 (CDT) Message-Id: <201309221409.r8ME9dIa074420@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/180294: New port: devel/p5-Lingua-Translit 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: Sun, 22 Sep 2013 14:09:39 -0000 Synopsis: New port: devel/p5-Lingua-Translit Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:09:39 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=180294 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:09:44 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 589FF526; Sun, 22 Sep 2013 14:09:44 +0000 (UTC) (envelope-from bdrewery@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 302D62170; Sun, 22 Sep 2013 14:09:44 +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 r8ME9iEC074610; Sun, 22 Sep 2013 14:09:44 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8ME9itS074609; Sun, 22 Sep 2013 09:09:44 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:09:44 -0500 (CDT) Message-Id: <201309221409.r8ME9itS074609@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/180297: New port: textproc/p5-Text-Hyphen 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: Sun, 22 Sep 2013 14:09:44 -0000 Synopsis: New port: textproc/p5-Text-Hyphen Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:09:43 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=180297 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:09:56 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id DC7E359B; Sun, 22 Sep 2013 14:09:56 +0000 (UTC) (envelope-from bdrewery@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 B27FE2184; Sun, 22 Sep 2013 14:09:56 +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 r8ME9uTn075120; Sun, 22 Sep 2013 14:09:56 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8ME9u4Y075119; Sun, 22 Sep 2013 09:09:56 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:09:56 -0500 (CDT) Message-Id: <201309221409.r8ME9u4Y075119@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/180307: New port: devel/p5-Devel-Leak-Cb 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: Sun, 22 Sep 2013 14:09:56 -0000 Synopsis: New port: devel/p5-Devel-Leak-Cb Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:09:56 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=180307 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:10:04 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id DD7DD605; Sun, 22 Sep 2013 14:10:04 +0000 (UTC) (envelope-from bdrewery@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 B439A218F; Sun, 22 Sep 2013 14:10:04 +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 r8MEA43I075534; Sun, 22 Sep 2013 14:10:04 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEA44X075533; Sun, 22 Sep 2013 09:10:04 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:10:04 -0500 (CDT) Message-Id: <201309221410.r8MEA44X075533@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/180314: New port: net/p5-Net-Google-PicasaWeb 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: Sun, 22 Sep 2013 14:10:04 -0000 Synopsis: New port: net/p5-Net-Google-PicasaWeb Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:10:04 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=180314 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:09:25 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 7E20444C; Sun, 22 Sep 2013 14:09:25 +0000 (UTC) (envelope-from bdrewery@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 543BC2153; Sun, 22 Sep 2013 14:09:25 +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 r8ME9PkH073853; Sun, 22 Sep 2013 14:09:25 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8ME9POc073852; Sun, 22 Sep 2013 09:09:25 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:09:25 -0500 (CDT) Message-Id: <201309221409.r8ME9POc073852@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/179074: [NEW PORT] devel/pecl-event: Provides interface to libevent library 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: Sun, 22 Sep 2013 14:09:25 -0000 X-List-Received-Date: Sun, 22 Sep 2013 14:09:25 -0000 X-List-Received-Date: Sun, 22 Sep 2013 14:09:25 -0000 Synopsis: [NEW PORT] devel/pecl-event: Provides interface to libevent library Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:09:25 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=179074 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:09:28 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 92456480; Sun, 22 Sep 2013 14:09:28 +0000 (UTC) (envelope-from bdrewery@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 68A7A215A; Sun, 22 Sep 2013 14:09:28 +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 r8ME9S5t073980; Sun, 22 Sep 2013 14:09:28 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8ME9Srl073979; Sun, 22 Sep 2013 09:09:28 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:09:28 -0500 (CDT) Message-Id: <201309221409.r8ME9Srl073979@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/179161: ports/math/py-graphtool's Makefile fix 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: Sun, 22 Sep 2013 14:09:28 -0000 X-List-Received-Date: Sun, 22 Sep 2013 14:09:28 -0000 Synopsis: ports/math/py-graphtool's Makefile fix Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:09:28 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=179161 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:09:38 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 0C0AE4ED; Sun, 22 Sep 2013 14:09:38 +0000 (UTC) (envelope-from bdrewery@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 D7DCB2167; Sun, 22 Sep 2013 14:09:37 +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 r8ME9buu074358; Sun, 22 Sep 2013 14:09:37 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8ME9b5X074357; Sun, 22 Sep 2013 09:09:37 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:09:37 -0500 (CDT) Message-Id: <201309221409.r8ME9b5X074357@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/180293: New port: devel/p5-Class-Mixin 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: Sun, 22 Sep 2013 14:09:38 -0000 X-List-Received-Date: Sun, 22 Sep 2013 14:09:38 -0000 Synopsis: New port: devel/p5-Class-Mixin Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:09:37 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=180293 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:09:52 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 32754565; Sun, 22 Sep 2013 14:09:52 +0000 (UTC) (envelope-from bdrewery@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 0936A217F; Sun, 22 Sep 2013 14:09:52 +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 r8ME9po6074931; Sun, 22 Sep 2013 14:09:51 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8ME9pJc074930; Sun, 22 Sep 2013 09:09:51 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:09:51 -0500 (CDT) Message-Id: <201309221409.r8ME9pJc074930@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/180303: New port: devel/p5-Test-Able 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: Sun, 22 Sep 2013 14:09:52 -0000 Synopsis: New port: devel/p5-Test-Able Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:09:51 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=180303 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:10:17 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 67409679; Sun, 22 Sep 2013 14:10:17 +0000 (UTC) (envelope-from bdrewery@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 3DB99219F; Sun, 22 Sep 2013 14:10:17 +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 r8MEAHqs076039; Sun, 22 Sep 2013 14:10:17 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEAHJ1076038; Sun, 22 Sep 2013 09:10:17 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:10:17 -0500 (CDT) Message-Id: <201309221410.r8MEAHJ1076038@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/180422: New port: www/py-django-simple-captcha 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: Sun, 22 Sep 2013 14:10:17 -0000 Synopsis: New port: www/py-django-simple-captcha Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:10:16 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=180422 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:11:37 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 9E58D9FB; Sun, 22 Sep 2013 14:11:37 +0000 (UTC) (envelope-from bdrewery@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 74F3C2229; Sun, 22 Sep 2013 14:11:37 +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 r8MEBb8S080771; Sun, 22 Sep 2013 14:11:37 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEBbEk080770; Sun, 22 Sep 2013 09:11:37 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:11:37 -0500 (CDT) Message-Id: <201309221411.r8MEBbEk080770@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181673: [MAINTAINER] devel/pear-SebastianBergmann_PHPLOC: update to 2.0.0 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: Sun, 22 Sep 2013 14:11:37 -0000 Synopsis: [MAINTAINER] devel/pear-SebastianBergmann_PHPLOC: update to 2.0.0 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:11:37 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181673 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:11:58 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 06902AD8; Sun, 22 Sep 2013 14:11:58 +0000 (UTC) (envelope-from bdrewery@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 D29622241; Sun, 22 Sep 2013 14:11:57 +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 r8MEBvq2081595; Sun, 22 Sep 2013 14:11:57 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEBvqL081594; Sun, 22 Sep 2013 09:11:57 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:11:57 -0500 (CDT) Message-Id: <201309221411.r8MEBvqL081594@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181886: games/mahjong: Update to version 1.13 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: Sun, 22 Sep 2013 14:11:58 -0000 Synopsis: games/mahjong: Update to version 1.13 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:11:57 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181886 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:09:20 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 C449D443; Sun, 22 Sep 2013 14:09:20 +0000 (UTC) (envelope-from bdrewery@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 96EF0214E; Sun, 22 Sep 2013 14:09:20 +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 r8ME9KMq073664; Sun, 22 Sep 2013 14:09:20 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8ME9KEb073663; Sun, 22 Sep 2013 09:09:20 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:09:20 -0500 (CDT) Message-Id: <201309221409.r8ME9KEb073663@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/176840: New port: www/p5-Toader A easy to use CMS that operates from the command line and renders to static pages 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: Sun, 22 Sep 2013 14:09:20 -0000 X-List-Received-Date: Sun, 22 Sep 2013 14:09:20 -0000 X-List-Received-Date: Sun, 22 Sep 2013 14:09:20 -0000 Synopsis: New port: www/p5-Toader A easy to use CMS that operates from the command line and renders to static pages Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:09:20 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=176840 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:09:22 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 6F55E446; Sun, 22 Sep 2013 14:09:22 +0000 (UTC) (envelope-from bdrewery@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 456C72150; Sun, 22 Sep 2013 14:09:22 +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 r8ME9MXW073727; Sun, 22 Sep 2013 14:09:22 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8ME9MFd073726; Sun, 22 Sep 2013 09:09:22 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:09:22 -0500 (CDT) Message-Id: <201309221409.r8ME9MFd073726@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/177793: [maintainer update] multimedia/qmmp, multimedia/qmmp-plugin-pack 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: Sun, 22 Sep 2013 14:09:22 -0000 Synopsis: [maintainer update] multimedia/qmmp, multimedia/qmmp-plugin-pack Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:09:21 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=177793 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:09:53 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id ADCBA594; Sun, 22 Sep 2013 14:09:53 +0000 (UTC) (envelope-from bdrewery@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 866FB2180; Sun, 22 Sep 2013 14:09:53 +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 r8ME9rPf074994; Sun, 22 Sep 2013 14:09:53 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8ME9rkb074993; Sun, 22 Sep 2013 09:09:53 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:09:53 -0500 (CDT) Message-Id: <201309221409.r8ME9rkb074993@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/180304: New port: devel/p5-Test-Able-Runner 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: Sun, 22 Sep 2013 14:09:53 -0000 Synopsis: New port: devel/p5-Test-Able-Runner Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:09:53 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=180304 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:09:58 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 6D3AD5CC; Sun, 22 Sep 2013 14:09:58 +0000 (UTC) (envelope-from bdrewery@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 456DC2186; Sun, 22 Sep 2013 14:09:58 +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 r8ME9wqQ075183; Sun, 22 Sep 2013 14:09:58 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8ME9wuX075182; Sun, 22 Sep 2013 09:09:58 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:09:58 -0500 (CDT) Message-Id: <201309221409.r8ME9wuX075182@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/180308: New port: devel/p5-MooseX-Role-Matcher 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: Sun, 22 Sep 2013 14:09:58 -0000 Synopsis: New port: devel/p5-MooseX-Role-Matcher Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:09:57 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=180308 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:10:38 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 0A26C759; Sun, 22 Sep 2013 14:10:38 +0000 (UTC) (envelope-from bdrewery@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 D422D21DA; Sun, 22 Sep 2013 14:10:37 +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 r8MEAb8o076861; Sun, 22 Sep 2013 14:10:37 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEAbxM076860; Sun, 22 Sep 2013 09:10:37 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:10:37 -0500 (CDT) Message-Id: <201309221410.r8MEAbxM076860@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/180904: New port: security/pecl-scrypt PHP wrapper to Colin Percival's scrypt implementation 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: Sun, 22 Sep 2013 14:10:38 -0000 Synopsis: New port: security/pecl-scrypt PHP wrapper to Colin Percival's scrypt implementation Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:10:37 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=180904 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:13:23 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 B5BE3EBF; Sun, 22 Sep 2013 14:13:23 +0000 (UTC) (envelope-from bdrewery@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 8C4E822B6; Sun, 22 Sep 2013 14:13:23 +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 r8MEDNLQ083843; Sun, 22 Sep 2013 14:13:23 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEDNwn083842; Sun, 22 Sep 2013 09:13:23 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:13:23 -0500 (CDT) Message-Id: <201309221413.r8MEDNwn083842@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/180702: graphics/gmt: Update to version 4.5.9 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: Sun, 22 Sep 2013 14:13:23 -0000 Synopsis: graphics/gmt: Update to version 4.5.9 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:13:23 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=180702 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:09:24 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 027A3448; Sun, 22 Sep 2013 14:09:24 +0000 (UTC) (envelope-from bdrewery@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 CC63D2152; Sun, 22 Sep 2013 14:09:23 +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 r8ME9NJx073790; Sun, 22 Sep 2013 14:09:23 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8ME9NpJ073789; Sun, 22 Sep 2013 09:09:23 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:09:23 -0500 (CDT) Message-Id: <201309221409.r8ME9NpJ073789@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/179017: New port: sysutils/rcadm utility for administrating rc.conF 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: Sun, 22 Sep 2013 14:09:24 -0000 Synopsis: New port: sysutils/rcadm utility for administrating rc.conF Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:09:23 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=179017 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:09:42 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id C2C90523; Sun, 22 Sep 2013 14:09:42 +0000 (UTC) (envelope-from bdrewery@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 99B37216D; Sun, 22 Sep 2013 14:09:42 +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 r8ME9gxu074547; Sun, 22 Sep 2013 14:09:42 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8ME9g4e074546; Sun, 22 Sep 2013 09:09:42 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:09:42 -0500 (CDT) Message-Id: <201309221409.r8ME9g4e074546@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/180296: New port: net/p5-Net-CIDR-Set 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: Sun, 22 Sep 2013 14:09:42 -0000 X-List-Received-Date: Sun, 22 Sep 2013 14:09:42 -0000 Synopsis: New port: net/p5-Net-CIDR-Set Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:09:42 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=180296 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:10: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 F3F725CF; Sun, 22 Sep 2013 14:09:59 +0000 (UTC) (envelope-from bdrewery@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 CA4D72188; Sun, 22 Sep 2013 14:09:59 +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 r8ME9xIJ075246; Sun, 22 Sep 2013 14:09:59 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8ME9x3k075245; Sun, 22 Sep 2013 09:09:59 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:09:59 -0500 (CDT) Message-Id: <201309221409.r8ME9x3k075245@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/180309: New port: devel/p5-AnyEvent-Memcached 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: Sun, 22 Sep 2013 14:10:00 -0000 Synopsis: New port: devel/p5-AnyEvent-Memcached Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:09:59 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=180309 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:11:48 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 A77A2A6C; Sun, 22 Sep 2013 14:11:48 +0000 (UTC) (envelope-from bdrewery@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 7E4EF2237; Sun, 22 Sep 2013 14:11:48 +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 r8MEBmG4081212; Sun, 22 Sep 2013 14:11:48 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEBmT7081211; Sun, 22 Sep 2013 09:11:48 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:11:48 -0500 (CDT) Message-Id: <201309221411.r8MEBmT7081211@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181878: net/nbd-server: Update to version 3.4 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: Sun, 22 Sep 2013 14:11:48 -0000 Synopsis: net/nbd-server: Update to version 3.4 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:11:48 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181878 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:12:07 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 7DB8BB1F; Sun, 22 Sep 2013 14:12:07 +0000 (UTC) (envelope-from bdrewery@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 424FE2250; Sun, 22 Sep 2013 14:12:07 +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 r8MEC7kK081975; Sun, 22 Sep 2013 14:12:07 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEC7Fn081974; Sun, 22 Sep 2013 09:12:07 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:12:07 -0500 (CDT) Message-Id: <201309221412.r8MEC7Fn081974@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181892: misc/grc: Update to version 1.5 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: Sun, 22 Sep 2013 14:12:07 -0000 Synopsis: misc/grc: Update to version 1.5 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:12:06 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181892 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:13:35 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 59F58EFD; Sun, 22 Sep 2013 14:13:35 +0000 (UTC) (envelope-from bdrewery@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 305AC22BF; Sun, 22 Sep 2013 14:13:35 +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 r8MEDZbY084223; Sun, 22 Sep 2013 14:13:35 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEDW6l084222; Sun, 22 Sep 2013 09:13:32 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:13:32 -0500 (CDT) Message-Id: <201309221413.r8MEDW6l084222@freefall.freebsd.org> To: jnlin@csie.nctu.edu.tw, bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181609: [PATCH] net/scribe: Update to 2.2.2013.04.15 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: Sun, 22 Sep 2013 14:13:35 -0000 Synopsis: [PATCH] net/scribe: Update to 2.2.2013.04.15 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:13:32 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181609 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:09:55 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 407DA599; Sun, 22 Sep 2013 14:09:55 +0000 (UTC) (envelope-from bdrewery@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 175CA2183; Sun, 22 Sep 2013 14:09:55 +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 r8ME9svf075057; Sun, 22 Sep 2013 14:09:54 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8ME9s5T075056; Sun, 22 Sep 2013 09:09:54 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:09:54 -0500 (CDT) Message-Id: <201309221409.r8ME9s5T075056@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/180305: New port: devel/p5-DateTime-Format-RSS 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: Sun, 22 Sep 2013 14:09:55 -0000 X-List-Received-Date: Sun, 22 Sep 2013 14:09:55 -0000 Synopsis: New port: devel/p5-DateTime-Format-RSS Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:09:54 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=180305 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:10:08 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 1902C60C; Sun, 22 Sep 2013 14:10:08 +0000 (UTC) (envelope-from bdrewery@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 E3B7C2193; Sun, 22 Sep 2013 14:10:07 +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 r8MEA7bI075660; Sun, 22 Sep 2013 14:10:07 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEA7gZ075659; Sun, 22 Sep 2013 09:10:07 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:10:07 -0500 (CDT) Message-Id: <201309221410.r8MEA7gZ075659@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/180316: New port: textproc/p5-Catalyst-Action-Serialize-XML-Hash-LX 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: Sun, 22 Sep 2013 14:10:08 -0000 X-List-Received-Date: Sun, 22 Sep 2013 14:10:08 -0000 Synopsis: New port: textproc/p5-Catalyst-Action-Serialize-XML-Hash-LX Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:10:07 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=180316 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:10:53 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 B5325806; Sun, 22 Sep 2013 14:10:53 +0000 (UTC) (envelope-from bdrewery@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 8D21021EF; Sun, 22 Sep 2013 14:10:53 +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 r8MEArOx078984; Sun, 22 Sep 2013 14:10:53 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEArah078983; Sun, 22 Sep 2013 09:10:53 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:10:53 -0500 (CDT) Message-Id: <201309221410.r8MEArah078983@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181066: misc/gkrellweather2: Update to version 2.0.8 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: Sun, 22 Sep 2013 14:10:53 -0000 Synopsis: misc/gkrellweather2: Update to version 2.0.8 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:10:53 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181066 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:11:15 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 9F1DD8F5; Sun, 22 Sep 2013 14:11:15 +0000 (UTC) (envelope-from bdrewery@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 76390220C; Sun, 22 Sep 2013 14:11:15 +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 r8MEBFDI079886; Sun, 22 Sep 2013 14:11:15 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEBFwi079885; Sun, 22 Sep 2013 09:11:15 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:11:15 -0500 (CDT) Message-Id: <201309221411.r8MEBFwi079885@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181417: [MAINTAINER] devel/pecl-zookeeper: update to 0.2.2 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: Sun, 22 Sep 2013 14:11:15 -0000 Synopsis: [MAINTAINER] devel/pecl-zookeeper: update to 0.2.2 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:11:15 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181417 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:11:18 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 EC50291E; Sun, 22 Sep 2013 14:11:18 +0000 (UTC) (envelope-from bdrewery@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 C26DE220F; Sun, 22 Sep 2013 14:11:18 +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 r8MEBINK080012; Sun, 22 Sep 2013 14:11:18 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEBI0B080011; Sun, 22 Sep 2013 09:11:18 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:11:18 -0500 (CDT) Message-Id: <201309221411.r8MEBI0B080011@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181462: [MAINTAINER] devel/pecl-ev: update to 0.2.10 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: Sun, 22 Sep 2013 14:11:19 -0000 Synopsis: [MAINTAINER] devel/pecl-ev: update to 0.2.10 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:11:18 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181462 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:11:51 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id B6E39A74; Sun, 22 Sep 2013 14:11:51 +0000 (UTC) (envelope-from bdrewery@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 8C3FF223B; Sun, 22 Sep 2013 14:11:51 +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 r8MEBp96081341; Sun, 22 Sep 2013 14:11:51 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEBpdC081340; Sun, 22 Sep 2013 09:11:51 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:11:51 -0500 (CDT) Message-Id: <201309221411.r8MEBpdC081340@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181880: devel/rudiments: Update to version 0.42 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: Sun, 22 Sep 2013 14:11:51 -0000 Synopsis: devel/rudiments: Update to version 0.42 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:11:51 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181880 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:11:56 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 6BF70AAA; Sun, 22 Sep 2013 14:11:56 +0000 (UTC) (envelope-from bdrewery@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 4211D2240; Sun, 22 Sep 2013 14:11:56 +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 r8MEBu6H081532; Sun, 22 Sep 2013 14:11:56 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEBuw6081531; Sun, 22 Sep 2013 09:11:56 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:11:56 -0500 (CDT) Message-Id: <201309221411.r8MEBuw6081531@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181885: mail/avenger: Update to version 0.8.4 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: Sun, 22 Sep 2013 14:11:56 -0000 Synopsis: mail/avenger: Update to version 0.8.4 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:11:55 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181885 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:12:15 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 2F2E6B89; Sun, 22 Sep 2013 14:12:15 +0000 (UTC) (envelope-from bdrewery@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 063C2225B; Sun, 22 Sep 2013 14:12:15 +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 r8MECEZ8082290; Sun, 22 Sep 2013 14:12:14 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MECEMt082289; Sun, 22 Sep 2013 09:12:14 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:12:14 -0500 (CDT) Message-Id: <201309221412.r8MECEMt082289@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/182078: [maintainer] graphics/mapnik: fix Clang 3.3 build 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: Sun, 22 Sep 2013 14:12:15 -0000 Synopsis: [maintainer] graphics/mapnik: fix Clang 3.3 build Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:12:14 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=182078 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:10:06 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 86A7F609; Sun, 22 Sep 2013 14:10:06 +0000 (UTC) (envelope-from bdrewery@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 5CC8F2191; Sun, 22 Sep 2013 14:10:06 +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 r8MEA6xp075597; Sun, 22 Sep 2013 14:10:06 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEA68O075596; Sun, 22 Sep 2013 09:10:06 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:10:06 -0500 (CDT) Message-Id: <201309221410.r8MEA68O075596@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/180315: New port: www/p5-Catalyst-Plugin-Session-PerUser 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: Sun, 22 Sep 2013 14:10:06 -0000 Synopsis: New port: www/p5-Catalyst-Plugin-Session-PerUser Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:10:06 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=180315 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:10:14 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 4122F673; Sun, 22 Sep 2013 14:10:14 +0000 (UTC) (envelope-from bdrewery@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 17665219A; Sun, 22 Sep 2013 14:10:14 +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 r8MEAD0F075913; Sun, 22 Sep 2013 14:10:13 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEADqd075912; Sun, 22 Sep 2013 09:10:13 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:10:13 -0500 (CDT) Message-Id: <201309221410.r8MEADqd075912@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/180320: New port: www/p5-Template-Plugin-StripScripts 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: Sun, 22 Sep 2013 14:10:14 -0000 Synopsis: New port: www/p5-Template-Plugin-StripScripts Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:10:13 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=180320 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:10:25 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 2356A6E5; Sun, 22 Sep 2013 14:10:25 +0000 (UTC) (envelope-from bdrewery@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 EEC4E21A8; Sun, 22 Sep 2013 14:10:24 +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 r8MEAOPX076357; Sun, 22 Sep 2013 14:10:24 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEAOve076356; Sun, 22 Sep 2013 09:10:24 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:10:24 -0500 (CDT) Message-Id: <201309221410.r8MEAOve076356@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/180681: [patch] textproc/urlview fix compiler warnings 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: Sun, 22 Sep 2013 14:10:25 -0000 Synopsis: [patch] textproc/urlview fix compiler warnings Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:10:24 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=180681 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:09:30 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 25B9D482; Sun, 22 Sep 2013 14:09:30 +0000 (UTC) (envelope-from bdrewery@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 EFF82215C; Sun, 22 Sep 2013 14:09:29 +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 r8ME9ThR074043; Sun, 22 Sep 2013 14:09:29 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8ME9TAl074042; Sun, 22 Sep 2013 09:09:29 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:09:29 -0500 (CDT) Message-Id: <201309221409.r8ME9TAl074042@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/179624: [New Port] sysutils/dunst - Lightweight notification daemon 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: Sun, 22 Sep 2013 14:09:30 -0000 X-List-Received-Date: Sun, 22 Sep 2013 14:09:30 -0000 Synopsis: [New Port] sysutils/dunst - Lightweight notification daemon Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:09:29 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=179624 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:09:34 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id BF6E94B8; Sun, 22 Sep 2013 14:09:34 +0000 (UTC) (envelope-from bdrewery@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 969512161; Sun, 22 Sep 2013 14:09:34 +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 r8ME9YAY074232; Sun, 22 Sep 2013 14:09:34 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8ME9YbZ074231; Sun, 22 Sep 2013 09:09:34 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:09:34 -0500 (CDT) Message-Id: <201309221409.r8ME9YbZ074231@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/179834: [maintainer-update] update games/stonesoup to version 0.12.2 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: Sun, 22 Sep 2013 14:09:34 -0000 X-List-Received-Date: Sun, 22 Sep 2013 14:09:34 -0000 Synopsis: [maintainer-update] update games/stonesoup to version 0.12.2 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:09:34 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=179834 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:09:41 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 3A0CD4F3; Sun, 22 Sep 2013 14:09:41 +0000 (UTC) (envelope-from bdrewery@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 1079E216B; Sun, 22 Sep 2013 14:09:41 +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 r8ME9e6d074484; Sun, 22 Sep 2013 14:09:40 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8ME9eAb074483; Sun, 22 Sep 2013 09:09:40 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:09:40 -0500 (CDT) Message-Id: <201309221409.r8ME9eAb074483@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/180295: New port: security/p5-Crypt-RSA-Yandex 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: Sun, 22 Sep 2013 14:09:41 -0000 Synopsis: New port: security/p5-Crypt-RSA-Yandex Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:09:40 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=180295 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:09:47 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 72665530; Sun, 22 Sep 2013 14:09:47 +0000 (UTC) (envelope-from bdrewery@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 48CDC2178; Sun, 22 Sep 2013 14:09:47 +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 r8ME9lBv074736; Sun, 22 Sep 2013 14:09:47 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8ME9l1r074735; Sun, 22 Sep 2013 09:09:47 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:09:47 -0500 (CDT) Message-Id: <201309221409.r8ME9l1r074735@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/180300: New port: devel/p5-Term-ReadLine-Perl 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: Sun, 22 Sep 2013 14:09:47 -0000 Synopsis: New port: devel/p5-Term-ReadLine-Perl Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:09:46 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=180300 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:10:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id CA6B85D2; Sun, 22 Sep 2013 14:10:01 +0000 (UTC) (envelope-from bdrewery@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 A0974218B; Sun, 22 Sep 2013 14:10:01 +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 r8MEA1SX075408; Sun, 22 Sep 2013 14:10:01 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEA1Mo075407; Sun, 22 Sep 2013 09:10:01 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:10:01 -0500 (CDT) Message-Id: <201309221410.r8MEA1Mo075407@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/180310: New port: devel/p5-accessors-fast 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: Sun, 22 Sep 2013 14:10:01 -0000 Synopsis: New port: devel/p5-accessors-fast Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:10:01 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=180310 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:10:26 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 D70F16E9; Sun, 22 Sep 2013 14:10:26 +0000 (UTC) (envelope-from bdrewery@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 ACC8921AB; Sun, 22 Sep 2013 14:10:26 +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 r8MEAQ4x076420; Sun, 22 Sep 2013 14:10:26 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEAQhb076419; Sun, 22 Sep 2013 09:10:26 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:10:26 -0500 (CDT) Message-Id: <201309221410.r8MEAQhb076419@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/180683: multimedia/gxine: Change Javascript engine to spidermonkey185 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: Sun, 22 Sep 2013 14:10:26 -0000 Synopsis: multimedia/gxine: Change Javascript engine to spidermonkey185 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:10:26 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=180683 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:10:28 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 638096EB; Sun, 22 Sep 2013 14:10:28 +0000 (UTC) (envelope-from bdrewery@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 3B46A21AC; Sun, 22 Sep 2013 14:10:28 +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 r8MEASCb076483; Sun, 22 Sep 2013 14:10:28 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEASlL076482; Sun, 22 Sep 2013 09:10:28 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:10:28 -0500 (CDT) Message-Id: <201309221410.r8MEASlL076482@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/180690: japanese/skk-tools: Update to version 1.3.3 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: Sun, 22 Sep 2013 14:10:28 -0000 Synopsis: japanese/skk-tools: Update to version 1.3.3 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:10:27 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=180690 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:10:31 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 7D43471E; Sun, 22 Sep 2013 14:10:31 +0000 (UTC) (envelope-from bdrewery@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 5414A21AF; Sun, 22 Sep 2013 14:10:31 +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 r8MEAVJC076609; Sun, 22 Sep 2013 14:10:31 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEAV88076608; Sun, 22 Sep 2013 09:10:31 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:10:31 -0500 (CDT) Message-Id: <201309221410.r8MEAV88076608@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/180700: devel/wxGlade: Update to version 0.6.8 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: Sun, 22 Sep 2013 14:10:31 -0000 Synopsis: devel/wxGlade: Update to version 0.6.8 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:10:31 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=180700 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:10:33 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 18637721; Sun, 22 Sep 2013 14:10:33 +0000 (UTC) (envelope-from bdrewery@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 E2CFA21D3; Sun, 22 Sep 2013 14:10:32 +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 r8MEAWJ7076672; Sun, 22 Sep 2013 14:10:32 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEAWle076671; Sun, 22 Sep 2013 09:10:32 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:10:32 -0500 (CDT) Message-Id: <201309221410.r8MEAWle076671@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/180703: multimedia/dvdstyler: Update to version 2.5 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: Sun, 22 Sep 2013 14:10:33 -0000 Synopsis: multimedia/dvdstyler: Update to version 2.5 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:10:32 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=180703 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:10:34 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 9C8E2723; Sun, 22 Sep 2013 14:10:34 +0000 (UTC) (envelope-from bdrewery@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 727D921D4; Sun, 22 Sep 2013 14:10:34 +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 r8MEAYNJ076735; Sun, 22 Sep 2013 14:10:34 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEAYbk076734; Sun, 22 Sep 2013 09:10:34 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:10:34 -0500 (CDT) Message-Id: <201309221410.r8MEAYbk076734@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/180772: [PATCH] databases/pecl-mongo: update to 1.4.2 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: Sun, 22 Sep 2013 14:10:34 -0000 Synopsis: [PATCH] databases/pecl-mongo: update to 1.4.2 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:10:34 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=180772 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:10:50 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 859C57FE; Sun, 22 Sep 2013 14:10:50 +0000 (UTC) (envelope-from bdrewery@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 5C26021EA; Sun, 22 Sep 2013 14:10:50 +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 r8MEAoEj078855; Sun, 22 Sep 2013 14:10:50 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEAoLk078854; Sun, 22 Sep 2013 09:10:50 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:10:50 -0500 (CDT) Message-Id: <201309221410.r8MEAoLk078854@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181063: comms/ser2net: Update to version 2.9.1 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: Sun, 22 Sep 2013 14:10:50 -0000 Synopsis: comms/ser2net: Update to version 2.9.1 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:10:50 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181063 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:10:58 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 6101883D; Sun, 22 Sep 2013 14:10:58 +0000 (UTC) (envelope-from bdrewery@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 3795021F4; Sun, 22 Sep 2013 14:10:58 +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 r8MEAw1o079176; Sun, 22 Sep 2013 14:10:58 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEAwD3079175; Sun, 22 Sep 2013 09:10:58 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:10:58 -0500 (CDT) Message-Id: <201309221410.r8MEAwD3079175@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181070: print/pmw: Update to version 4.26 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: Sun, 22 Sep 2013 14:10:58 -0000 Synopsis: print/pmw: Update to version 4.26 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:10:57 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181070 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:11:07 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 C1E4C8AB; Sun, 22 Sep 2013 14:11:07 +0000 (UTC) (envelope-from bdrewery@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 988072201; Sun, 22 Sep 2013 14:11:07 +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 r8MEB7vB079570; Sun, 22 Sep 2013 14:11:07 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEB7lA079568; Sun, 22 Sep 2013 09:11:07 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:11:07 -0500 (CDT) Message-Id: <201309221411.r8MEB7lA079568@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181327: [UPDATE] shells/mksh to R48 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: Sun, 22 Sep 2013 14:11:07 -0000 Synopsis: [UPDATE] shells/mksh to R48 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:11:07 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181327 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:11:10 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id D81C48DE; Sun, 22 Sep 2013 14:11:10 +0000 (UTC) (envelope-from bdrewery@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 B02862205; Sun, 22 Sep 2013 14:11:10 +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 r8MEBA8I079696; Sun, 22 Sep 2013 14:11:10 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEBA6T079695; Sun, 22 Sep 2013 09:11:10 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:11:10 -0500 (CDT) Message-Id: <201309221411.r8MEBA6T079695@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181356: [MAINTAINER] chinese/ydict: update to 1.3.1 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: Sun, 22 Sep 2013 14:11:10 -0000 Synopsis: [MAINTAINER] chinese/ydict: update to 1.3.1 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:11:10 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181356 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:11:25 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 366C8958; Sun, 22 Sep 2013 14:11:25 +0000 (UTC) (envelope-from bdrewery@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 0C60F2217; Sun, 22 Sep 2013 14:11:25 +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 r8MEBO0Y080267; Sun, 22 Sep 2013 14:11:24 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEBOJO080266; Sun, 22 Sep 2013 09:11:24 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:11:24 -0500 (CDT) Message-Id: <201309221411.r8MEBOJO080266@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181577: [NEW PORT] devel/pecl-msgpack: This provide API for communicating with MessagePack serialization 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: Sun, 22 Sep 2013 14:11:25 -0000 Synopsis: [NEW PORT] devel/pecl-msgpack: This provide API for communicating with MessagePack serialization Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:11:24 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181577 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:11:34 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 808F09CA; Sun, 22 Sep 2013 14:11:34 +0000 (UTC) (envelope-from bdrewery@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 56DB92226; Sun, 22 Sep 2013 14:11:34 +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 r8MEBY8l080645; Sun, 22 Sep 2013 14:11:34 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEBYP7080644; Sun, 22 Sep 2013 09:11:34 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:11:34 -0500 (CDT) Message-Id: <201309221411.r8MEBYP7080644@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181671: [NEW PORT] devel/pear-SebastianBergmann_Git: Simple wrapper for Git 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: Sun, 22 Sep 2013 14:11:34 -0000 Synopsis: [NEW PORT] devel/pear-SebastianBergmann_Git: Simple wrapper for Git Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:11:34 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181671 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:11:42 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 84109A32; Sun, 22 Sep 2013 14:11:42 +0000 (UTC) (envelope-from bdrewery@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 5A9BF222F; Sun, 22 Sep 2013 14:11:42 +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 r8MEBgJJ080960; Sun, 22 Sep 2013 14:11:42 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEBfYK080959; Sun, 22 Sep 2013 09:11:41 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:11:41 -0500 (CDT) Message-Id: <201309221411.r8MEBfYK080959@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181839: Build failed for graphics/inventor 2.1.5.p10_7 during build with clang 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: Sun, 22 Sep 2013 14:11:42 -0000 Synopsis: Build failed for graphics/inventor 2.1.5.p10_7 during build with clang Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:11:41 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181839 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:11:47 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 1ABF4A3D; Sun, 22 Sep 2013 14:11:47 +0000 (UTC) (envelope-from bdrewery@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 E65BF2235; Sun, 22 Sep 2013 14:11:46 +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 r8MEBkL9081149; Sun, 22 Sep 2013 14:11:46 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEBknO081148; Sun, 22 Sep 2013 09:11:46 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:11:46 -0500 (CDT) Message-Id: <201309221411.r8MEBknO081148@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181877: audio/pd: Update to version 0.45.2 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: Sun, 22 Sep 2013 14:11:47 -0000 Synopsis: audio/pd: Update to version 0.45.2 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:11:46 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181877 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:12:10 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 86694B50; Sun, 22 Sep 2013 14:12:10 +0000 (UTC) (envelope-from bdrewery@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 5C81C2254; Sun, 22 Sep 2013 14:12:10 +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 r8MECAHS082101; Sun, 22 Sep 2013 14:12:10 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MECAlC082100; Sun, 22 Sep 2013 09:12:10 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:12:10 -0500 (CDT) Message-Id: <201309221412.r8MECAlC082100@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181894: graphics/pngquant: Update to version 2.0.0 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: Sun, 22 Sep 2013 14:12:10 -0000 Synopsis: graphics/pngquant: Update to version 2.0.0 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:12:10 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181894 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:12:13 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 9D266B85; Sun, 22 Sep 2013 14:12:13 +0000 (UTC) (envelope-from bdrewery@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 74FA92257; Sun, 22 Sep 2013 14:12:13 +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 r8MECDX8082227; Sun, 22 Sep 2013 14:12:13 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MECDn7082226; Sun, 22 Sep 2013 09:12:13 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:12:13 -0500 (CDT) Message-Id: <201309221412.r8MECDn7082226@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/182045: [PATCH] german/wordpress: update to 3.6.1 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: Sun, 22 Sep 2013 14:12:13 -0000 Synopsis: [PATCH] german/wordpress: update to 3.6.1 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:12:13 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=182045 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:12:19 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id C9D4EBC2; Sun, 22 Sep 2013 14:12:19 +0000 (UTC) (envelope-from bdrewery@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 9FE542261; Sun, 22 Sep 2013 14:12:19 +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 r8MECJ7k082482; Sun, 22 Sep 2013 14:12:19 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MECJE1082478; Sun, 22 Sep 2013 09:12:19 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:12:19 -0500 (CDT) Message-Id: <201309221412.r8MECJE1082478@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/182138: [NEW PORT] devel/pecl-jsmin: PHP extension for minifying JavaScript 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: Sun, 22 Sep 2013 14:12:19 -0000 Synopsis: [NEW PORT] devel/pecl-jsmin: PHP extension for minifying JavaScript Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:12:19 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=182138 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:13:25 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 4D686EC1; Sun, 22 Sep 2013 14:13:25 +0000 (UTC) (envelope-from bdrewery@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 2581822B7; Sun, 22 Sep 2013 14:13:25 +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 r8MEDPNR083906; Sun, 22 Sep 2013 14:13:25 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEDO0A083905; Sun, 22 Sep 2013 09:13:24 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:13:24 -0500 (CDT) Message-Id: <201309221413.r8MEDO0A083905@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181057: databases/grass: Update to version 6.4.3 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: Sun, 22 Sep 2013 14:13:25 -0000 Synopsis: databases/grass: Update to version 6.4.3 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:13:24 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181057 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:13:29 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 ECEF3EC9; Sun, 22 Sep 2013 14:13:29 +0000 (UTC) (envelope-from bdrewery@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 C335522BB; Sun, 22 Sep 2013 14:13:29 +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 r8MEDTdW084097; Sun, 22 Sep 2013 14:13:29 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEDTRa084096; Sun, 22 Sep 2013 09:13:29 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:13:29 -0500 (CDT) Message-Id: <201309221413.r8MEDTRa084096@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181071: x11-wm/clementine: Support CXX/CXXFLAGS properly 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: Sun, 22 Sep 2013 14:13:30 -0000 Synopsis: x11-wm/clementine: Support CXX/CXXFLAGS properly Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:13:29 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181071 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:10:41 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 2014E78F; Sun, 22 Sep 2013 14:10:41 +0000 (UTC) (envelope-from bdrewery@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 EBE1721DF; Sun, 22 Sep 2013 14:10:40 +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 r8MEAeM1076987; Sun, 22 Sep 2013 14:10:40 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEAeeV076986; Sun, 22 Sep 2013 09:10:40 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:10:40 -0500 (CDT) Message-Id: <201309221410.r8MEAeeV076986@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181056: cad/gerbv: Update to version 2.6.1 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: Sun, 22 Sep 2013 14:10:41 -0000 X-List-Received-Date: Sun, 22 Sep 2013 14:10:41 -0000 Synopsis: cad/gerbv: Update to version 2.6.1 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:10:40 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181056 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:10:49 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 00A1F7CF; Sun, 22 Sep 2013 14:10:48 +0000 (UTC) (envelope-from bdrewery@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 CB7CC21E9; Sun, 22 Sep 2013 14:10:48 +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 r8MEAmLf078789; Sun, 22 Sep 2013 14:10:48 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEAmou078788; Sun, 22 Sep 2013 09:10:48 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:10:48 -0500 (CDT) Message-Id: <201309221410.r8MEAmou078788@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181062: devel/ppl: Update to version 1.0 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: Sun, 22 Sep 2013 14:10:49 -0000 Synopsis: devel/ppl: Update to version 1.0 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:10:48 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181062 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:11:23 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 A4204956; Sun, 22 Sep 2013 14:11:23 +0000 (UTC) (envelope-from bdrewery@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 7BAA52216; Sun, 22 Sep 2013 14:11:23 +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 r8MEBNWV080204; Sun, 22 Sep 2013 14:11:23 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEBNh7080203; Sun, 22 Sep 2013 09:11:23 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:11:23 -0500 (CDT) Message-Id: <201309221411.r8MEBNh7080203@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181538: [NEW PORT] devel/pecl-jsonc: PECL extension for JSON manipulation 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: Sun, 22 Sep 2013 14:11:23 -0000 Synopsis: [NEW PORT] devel/pecl-jsonc: PECL extension for JSON manipulation Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:11:23 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181538 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:11:32 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id ECAF69C1; Sun, 22 Sep 2013 14:11:32 +0000 (UTC) (envelope-from bdrewery@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 C39BF2221; Sun, 22 Sep 2013 14:11:32 +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 r8MEBWkk080582; Sun, 22 Sep 2013 14:11:32 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEBW1M080581; Sun, 22 Sep 2013 09:11:32 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:11:32 -0500 (CDT) Message-Id: <201309221411.r8MEBW1M080581@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181670: [NEW PORT] devel/pear-SebastianBergmann_Version: Managing the version number of Git-hosted PHP projects 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: Sun, 22 Sep 2013 14:11:33 -0000 Synopsis: [NEW PORT] devel/pear-SebastianBergmann_Version: Managing the version number of Git-hosted PHP projects Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:11:32 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181670 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:12:23 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 01476BE2; Sun, 22 Sep 2013 14:12:22 +0000 (UTC) (envelope-from bdrewery@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 CB8D72266; Sun, 22 Sep 2013 14:12:22 +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 r8MECMH7082608; Sun, 22 Sep 2013 14:12:22 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MECMPu082607; Sun, 22 Sep 2013 09:12:22 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:12:22 -0500 (CDT) Message-Id: <201309221412.r8MECMPu082607@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/182283: audio/akode*: Fix build with Clang and newer versions of GCC 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: Sun, 22 Sep 2013 14:12:23 -0000 Synopsis: audio/akode*: Fix build with Clang and newer versions of GCC Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:12:22 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=182283 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:10:11 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 27D66640; Sun, 22 Sep 2013 14:10:11 +0000 (UTC) (envelope-from bdrewery@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 F32512197; Sun, 22 Sep 2013 14:10:10 +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 r8MEAA5g075787; Sun, 22 Sep 2013 14:10:10 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEAAUx075786; Sun, 22 Sep 2013 09:10:10 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:10:10 -0500 (CDT) Message-Id: <201309221410.r8MEAAUx075786@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/180318: New port: textproc/p5-XML-Declare 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: Sun, 22 Sep 2013 14:10:11 -0000 X-List-Received-Date: Sun, 22 Sep 2013 14:10:11 -0000 Synopsis: New port: textproc/p5-XML-Declare Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:10:10 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=180318 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:10:15 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id CC44C676; Sun, 22 Sep 2013 14:10:15 +0000 (UTC) (envelope-from bdrewery@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 A268F219D; Sun, 22 Sep 2013 14:10:15 +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 r8MEAFvT075976; Sun, 22 Sep 2013 14:10:15 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEAFFq075975; Sun, 22 Sep 2013 09:10:15 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:10:15 -0500 (CDT) Message-Id: <201309221410.r8MEAFFq075975@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/180364: [NEW PORT] www/ap22-mod_realdoc: Apache module to support atomic deploys 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: Sun, 22 Sep 2013 14:10:15 -0000 Synopsis: [NEW PORT] www/ap22-mod_realdoc: Apache module to support atomic deploys Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:10:15 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=180364 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:10:47 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 6D1297CC; Sun, 22 Sep 2013 14:10:47 +0000 (UTC) (envelope-from bdrewery@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 431B521E7; Sun, 22 Sep 2013 14:10:47 +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 r8MEAlAg078726; Sun, 22 Sep 2013 14:10:47 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEAlVG078725; Sun, 22 Sep 2013 09:10:47 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:10:47 -0500 (CDT) Message-Id: <201309221410.r8MEAlVG078725@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181061: www/htdump: Update to version 0.9y 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: Sun, 22 Sep 2013 14:10:47 -0000 Synopsis: www/htdump: Update to version 0.9y Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:10:46 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181061 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:11:04 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id A97B4876; Sun, 22 Sep 2013 14:11:04 +0000 (UTC) (envelope-from bdrewery@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 7F56521FC; Sun, 22 Sep 2013 14:11:04 +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 r8MEB43e079441; Sun, 22 Sep 2013 14:11:04 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEB4hr079440; Sun, 22 Sep 2013 09:11:04 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:11:04 -0500 (CDT) Message-Id: <201309221411.r8MEB4hr079440@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181105: [NEW PORT] devel/php-composer: Dependency Manager for PHP 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: Sun, 22 Sep 2013 14:11:04 -0000 Synopsis: [NEW PORT] devel/php-composer: Dependency Manager for PHP Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:11:04 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181105 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:11:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 53ABC8AF; Sun, 22 Sep 2013 14:11:09 +0000 (UTC) (envelope-from bdrewery@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 29DA42204; Sun, 22 Sep 2013 14:11:09 +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 r8MEB9kP079633; Sun, 22 Sep 2013 14:11:09 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEB9NR079632; Sun, 22 Sep 2013 09:11:09 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:11:09 -0500 (CDT) Message-Id: <201309221411.r8MEB9NR079632@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181336: I have updated www/drupal7 to version 7.23 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: Sun, 22 Sep 2013 14:11:09 -0000 X-List-Received-Date: Sun, 22 Sep 2013 14:11:09 -0000 Synopsis: I have updated www/drupal7 to version 7.23 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:11:08 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181336 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:11:14 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 2062D8E8; Sun, 22 Sep 2013 14:11:14 +0000 (UTC) (envelope-from bdrewery@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 EA6C2220A; Sun, 22 Sep 2013 14:11:13 +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 r8MEBDvo079823; Sun, 22 Sep 2013 14:11:13 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEBDBH079822; Sun, 22 Sep 2013 09:11:13 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:11:13 -0500 (CDT) Message-Id: <201309221411.r8MEBDBH079822@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181415: [MAINTAINER] devel/py27-pudb: update to 2013.3.5 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: Sun, 22 Sep 2013 14:11:14 -0000 Synopsis: [MAINTAINER] devel/py27-pudb: update to 2013.3.5 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:11:13 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181415 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:10:12 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 B49BA642; Sun, 22 Sep 2013 14:10:12 +0000 (UTC) (envelope-from bdrewery@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 8AF722198; Sun, 22 Sep 2013 14:10:12 +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 r8MEACNZ075850; Sun, 22 Sep 2013 14:10:12 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEACSB075849; Sun, 22 Sep 2013 09:10:12 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:10:12 -0500 (CDT) Message-Id: <201309221410.r8MEACSB075849@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/180319: New port: graphics/p5-Image-LibExif 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: Sun, 22 Sep 2013 14:10:12 -0000 Synopsis: New port: graphics/p5-Image-LibExif Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:10:12 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=180319 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:10:18 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 EAB9B694; Sun, 22 Sep 2013 14:10:18 +0000 (UTC) (envelope-from bdrewery@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 C071221A0; Sun, 22 Sep 2013 14:10:18 +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 r8MEAINM076102; Sun, 22 Sep 2013 14:10:18 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEAIgV076101; Sun, 22 Sep 2013 09:10:18 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:10:18 -0500 (CDT) Message-Id: <201309221410.r8MEAIgV076101@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/180542: Update sysutils/xfsprogs to version 2.9.8 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: Sun, 22 Sep 2013 14:10:19 -0000 Synopsis: Update sysutils/xfsprogs to version 2.9.8 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:10:18 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=180542 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:10:23 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 91EEC6B3; Sun, 22 Sep 2013 14:10:23 +0000 (UTC) (envelope-from bdrewery@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 69D1821A7; Sun, 22 Sep 2013 14:10:23 +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 r8MEAN5w076294; Sun, 22 Sep 2013 14:10:23 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEAN6p076293; Sun, 22 Sep 2013 09:10:23 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:10:23 -0500 (CDT) Message-Id: <201309221410.r8MEAN6p076293@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/180650: [maintainer update] for graphics/openshadinglanguage 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: Sun, 22 Sep 2013 14:10:23 -0000 Synopsis: [maintainer update] for graphics/openshadinglanguage Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:10:23 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=180650 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:10:29 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id E7A3071B; Sun, 22 Sep 2013 14:10:29 +0000 (UTC) (envelope-from bdrewery@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 BF4FF21AD; Sun, 22 Sep 2013 14:10:29 +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 r8MEATPT076546; Sun, 22 Sep 2013 14:10:29 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEATrc076545; Sun, 22 Sep 2013 09:10:29 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:10:29 -0500 (CDT) Message-Id: <201309221410.r8MEATrc076545@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/180696: games/xlife: Update to version 6.7 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: Sun, 22 Sep 2013 14:10:30 -0000 Synopsis: games/xlife: Update to version 6.7 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:10:29 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=180696 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:09:49 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 0792155F; Sun, 22 Sep 2013 14:09:49 +0000 (UTC) (envelope-from bdrewery@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 D1DA1217A; Sun, 22 Sep 2013 14:09:48 +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 r8ME9mb8074799; Sun, 22 Sep 2013 14:09:48 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8ME9m3M074798; Sun, 22 Sep 2013 09:09:48 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:09:48 -0500 (CDT) Message-Id: <201309221409.r8ME9m3M074798@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/180301: New port: devel/p5-Variable-Eject 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: Sun, 22 Sep 2013 14:09:49 -0000 Synopsis: New port: devel/p5-Variable-Eject Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:09:48 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=180301 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:10:09 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 9A6C063C; Sun, 22 Sep 2013 14:10:09 +0000 (UTC) (envelope-from bdrewery@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 720DB2195; Sun, 22 Sep 2013 14:10:09 +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 r8MEA9ao075723; Sun, 22 Sep 2013 14:10:09 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEA9vZ075722; Sun, 22 Sep 2013 09:10:09 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:10:09 -0500 (CDT) Message-Id: <201309221410.r8MEA9vZ075722@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/180317: New port: russian/p5-Text-Hyphen-RU 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: Sun, 22 Sep 2013 14:10:09 -0000 Synopsis: New port: russian/p5-Text-Hyphen-RU Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:10:09 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=180317 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:10:20 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 75AED6AD; Sun, 22 Sep 2013 14:10:20 +0000 (UTC) (envelope-from bdrewery@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 4D75821A3; Sun, 22 Sep 2013 14:10:20 +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 r8MEAKgj076168; Sun, 22 Sep 2013 14:10:20 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEAKxF076167; Sun, 22 Sep 2013 09:10:20 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:10:20 -0500 (CDT) Message-Id: <201309221410.r8MEAKxF076167@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/180573: MAINTAINER-UPDATE shells/rssh -> support latest rsync 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: Sun, 22 Sep 2013 14:10:20 -0000 Synopsis: MAINTAINER-UPDATE shells/rssh -> support latest rsync Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:10:20 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=180573 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:10:22 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 0BDB26B0; Sun, 22 Sep 2013 14:10:22 +0000 (UTC) (envelope-from bdrewery@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 D743C21A4; Sun, 22 Sep 2013 14:10:21 +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 r8MEAL3T076231; Sun, 22 Sep 2013 14:10:21 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEALhW076230; Sun, 22 Sep 2013 09:10:21 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:10:21 -0500 (CDT) Message-Id: <201309221410.r8MEALhW076230@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/180580: [maintainer-update] Update to databases/py-odbc port 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: Sun, 22 Sep 2013 14:10:22 -0000 Synopsis: [maintainer-update] Update to databases/py-odbc port Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:10:21 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=180580 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:10:39 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 8E42C75E; Sun, 22 Sep 2013 14:10:39 +0000 (UTC) (envelope-from bdrewery@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 646A021DD; Sun, 22 Sep 2013 14:10:39 +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 r8MEAdxH076924; Sun, 22 Sep 2013 14:10:39 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEAd9M076923; Sun, 22 Sep 2013 09:10:39 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:10:39 -0500 (CDT) Message-Id: <201309221410.r8MEAd9M076923@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181055: misc/gkrellm-helium: Update MASTER_SITES and WWW: line 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: Sun, 22 Sep 2013 14:10:39 -0000 Synopsis: misc/gkrellm-helium: Update MASTER_SITES and WWW: line Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:10:39 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181055 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:10:42 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 B1DFD792; Sun, 22 Sep 2013 14:10:42 +0000 (UTC) (envelope-from bdrewery@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 87F3221E1; Sun, 22 Sep 2013 14:10:42 +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 r8MEAgqN077051; Sun, 22 Sep 2013 14:10:42 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEAgbE077050; Sun, 22 Sep 2013 09:10:42 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:10:42 -0500 (CDT) Message-Id: <201309221410.r8MEAgbE077050@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181058: graphics/epix: Update to version 1.2.12 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: Sun, 22 Sep 2013 14:10:42 -0000 Synopsis: graphics/epix: Update to version 1.2.12 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:10:42 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181058 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:10:55 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 462C4809; Sun, 22 Sep 2013 14:10:55 +0000 (UTC) (envelope-from bdrewery@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 1C8ED21F0; Sun, 22 Sep 2013 14:10:55 +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 r8MEAsEa079047; Sun, 22 Sep 2013 14:10:54 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEAsT5079046; Sun, 22 Sep 2013 09:10:54 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:10:54 -0500 (CDT) Message-Id: <201309221410.r8MEAsT5079046@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181067: games/acm: Update MASTER_SITES 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: Sun, 22 Sep 2013 14:10:55 -0000 Synopsis: games/acm: Update MASTER_SITES Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:10:54 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181067 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:11:17 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 72748919; Sun, 22 Sep 2013 14:11:17 +0000 (UTC) (envelope-from bdrewery@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 491FB220D; Sun, 22 Sep 2013 14:11:17 +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 r8MEBHFk079949; Sun, 22 Sep 2013 14:11:17 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEBGiM079948; Sun, 22 Sep 2013 09:11:16 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:11:16 -0500 (CDT) Message-Id: <201309221411.r8MEBGiM079948@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181432: [PATCH] net/pecl-yaz: update to 1.1.6 to make it compatible with PHP 5.4 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: Sun, 22 Sep 2013 14:11:17 -0000 Synopsis: [PATCH] net/pecl-yaz: update to 1.1.6 to make it compatible with PHP 5.4 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:11:16 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181432 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:11:39 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 355E39FF; Sun, 22 Sep 2013 14:11:39 +0000 (UTC) (envelope-from bdrewery@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 0C90F222C; Sun, 22 Sep 2013 14:11:39 +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 r8MEBcNX080834; Sun, 22 Sep 2013 14:11:38 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEBcHj080833; Sun, 22 Sep 2013 09:11:38 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:11:38 -0500 (CDT) Message-Id: <201309221411.r8MEBcHj080833@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181680: [MAINTAINER] devel/pear-channel-symfony2: update to 20110826_2 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: Sun, 22 Sep 2013 14:11:39 -0000 Synopsis: [MAINTAINER] devel/pear-channel-symfony2: update to 20110826_2 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:11:38 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181680 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:13:18 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 B8574EB5; Sun, 22 Sep 2013 14:13:18 +0000 (UTC) (envelope-from bdrewery@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 8ECE922B0; Sun, 22 Sep 2013 14:13:18 +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 r8MEDIGE083587; Sun, 22 Sep 2013 14:13:18 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEDH4Y083507; Sun, 22 Sep 2013 09:13:17 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:13:17 -0500 (CDT) Message-Id: <201309221413.r8MEDH4Y083507@freefall.freebsd.org> To: kamikaze@bsdforen.de, bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/177855: [patch update] multimedia/libbluray 0.2.2 -> 0.2.3 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: Sun, 22 Sep 2013 14:13:18 -0000 Synopsis: [patch update] multimedia/libbluray 0.2.2 -> 0.2.3 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:13:17 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=177855 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:11:12 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 8DF048E1; Sun, 22 Sep 2013 14:11:12 +0000 (UTC) (envelope-from bdrewery@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 644882209; Sun, 22 Sep 2013 14:11:12 +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 r8MEBC39079760; Sun, 22 Sep 2013 14:11:12 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEBCf0079759; Sun, 22 Sep 2013 09:11:12 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:11:12 -0500 (CDT) Message-Id: <201309221411.r8MEBCf0079759@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181406: [UPDATE] shells/mksh to R48b 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: Sun, 22 Sep 2013 14:11:12 -0000 Synopsis: [UPDATE] shells/mksh to R48b Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:11:11 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181406 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:11:22 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 1541E94E; Sun, 22 Sep 2013 14:11:22 +0000 (UTC) (envelope-from bdrewery@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 E10762211; Sun, 22 Sep 2013 14:11:21 +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 r8MEBLKj080141; Sun, 22 Sep 2013 14:11:21 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEBLSM080140; Sun, 22 Sep 2013 09:11:21 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:11:21 -0500 (CDT) Message-Id: <201309221411.r8MEBLSM080140@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181478: [MAINTAINER] devel/pear-Pirum: update to 1.1.5 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: Sun, 22 Sep 2013 14:11:22 -0000 Synopsis: [MAINTAINER] devel/pear-Pirum: update to 1.1.5 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:11:21 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181478 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:11:29 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 E493398F; Sun, 22 Sep 2013 14:11:29 +0000 (UTC) (envelope-from bdrewery@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 BAABC221D; Sun, 22 Sep 2013 14:11:29 +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 r8MEBT8R080456; Sun, 22 Sep 2013 14:11:29 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEBTkV080455; Sun, 22 Sep 2013 09:11:29 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:11:29 -0500 (CDT) Message-Id: <201309221411.r8MEBTkV080455@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181668: [MAINTAINER] devel/pear-Symfony_Component_Finder: update to 2.3.4 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: Sun, 22 Sep 2013 14:11:30 -0000 Synopsis: [MAINTAINER] devel/pear-Symfony_Component_Finder: update to 2.3.4 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:11:29 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181668 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:11:59 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 8AAC2ADC; Sun, 22 Sep 2013 14:11:59 +0000 (UTC) (envelope-from bdrewery@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 611F42244; Sun, 22 Sep 2013 14:11:59 +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 r8MEBxgu081658; Sun, 22 Sep 2013 14:11:59 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEBxnS081657; Sun, 22 Sep 2013 09:11:59 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:11:59 -0500 (CDT) Message-Id: <201309221411.r8MEBxnS081657@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181887: audio/ecasound: Update MASTER_SITES and WWW: line 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: Sun, 22 Sep 2013 14:11:59 -0000 Synopsis: audio/ecasound: Update MASTER_SITES and WWW: line Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:11:59 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181887 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:10:59 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id E451E841; Sun, 22 Sep 2013 14:10:59 +0000 (UTC) (envelope-from bdrewery@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 BACEC21F5; Sun, 22 Sep 2013 14:10:59 +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 r8MEAx6B079241; Sun, 22 Sep 2013 14:10:59 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEAx4c079240; Sun, 22 Sep 2013 09:10:59 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:10:59 -0500 (CDT) Message-Id: <201309221410.r8MEAx4c079240@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181072: lang/bigloo: Update to version 4.0b 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: Sun, 22 Sep 2013 14:11:00 -0000 Synopsis: lang/bigloo: Update to version 4.0b Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:10:59 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181072 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:10:45 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 D56DD7CA; Sun, 22 Sep 2013 14:10:45 +0000 (UTC) (envelope-from bdrewery@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 AC3B221E5; Sun, 22 Sep 2013 14:10:45 +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 r8MEAj0K078557; Sun, 22 Sep 2013 14:10:45 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEAj2Z078517; Sun, 22 Sep 2013 09:10:45 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:10:45 -0500 (CDT) Message-Id: <201309221410.r8MEAj2Z078517@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181060: x11-toolkits/blt: Fix build with Tcl/Tk 8.6 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: Sun, 22 Sep 2013 14:10:45 -0000 X-List-Received-Date: Sun, 22 Sep 2013 14:10:45 -0000 Synopsis: x11-toolkits/blt: Fix build with Tcl/Tk 8.6 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:10:45 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181060 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:11:28 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 4E08A98A; Sun, 22 Sep 2013 14:11:28 +0000 (UTC) (envelope-from bdrewery@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 23A91221B; Sun, 22 Sep 2013 14:11:28 +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 r8MEBRHe080393; Sun, 22 Sep 2013 14:11:27 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEBRV3080392; Sun, 22 Sep 2013 09:11:27 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:11:27 -0500 (CDT) Message-Id: <201309221411.r8MEBRV3080392@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181638: [PATCH] devel/pecl-gearman: update to 1.1.2 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: Sun, 22 Sep 2013 14:11:28 -0000 Synopsis: [PATCH] devel/pecl-gearman: update to 1.1.2 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:11:27 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181638 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:12:02 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id C1BF2B0F; Sun, 22 Sep 2013 14:12:02 +0000 (UTC) (envelope-from bdrewery@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 9A71E2247; Sun, 22 Sep 2013 14:12:02 +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 r8MEC2g6081786; Sun, 22 Sep 2013 14:12:02 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEC2oY081785; Sun, 22 Sep 2013 09:12:02 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:12:02 -0500 (CDT) Message-Id: <201309221412.r8MEC2oY081785@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181889: misc/pinfo: Update MASTER_SITES 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: Sun, 22 Sep 2013 14:12:02 -0000 Synopsis: misc/pinfo: Update MASTER_SITES Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:12:02 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181889 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:20:02 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 32ED2F5D for ; Sun, 22 Sep 2013 14:20:02 +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 115D323E3 for ; Sun, 22 Sep 2013 14:20:02 +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 r8MEK1vr084787 for ; Sun, 22 Sep 2013 14:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEK1Qv084786; Sun, 22 Sep 2013 14:20:01 GMT (envelope-from gnats) Resent-Date: Sun, 22 Sep 2013 14:20:01 GMT Resent-Message-Id: <201309221420.r8MEK1Qv084786@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, Alexey Degtyarev 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 79074F95; Sun, 22 Sep 2013 14:13:50 +0000 (UTC) (envelope-from alexey@home.renatasystems.org) Received: from home.renatasystems.org (home.renatasystems.org [87.242.77.210]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D6DA622CA; Sun, 22 Sep 2013 14:13:49 +0000 (UTC) Received: from home.renatasystems.org (localhost [127.0.0.1]) by home.renatasystems.org (8.14.5/8.14.5) with ESMTP id r8MECT9f041339; Sun, 22 Sep 2013 18:12:29 +0400 (MSK) (envelope-from alexey@home.renatasystems.org) Received: (from alexey@localhost) by home.renatasystems.org (8.14.5/8.14.5/Submit) id r8MECO3i041338; Sun, 22 Sep 2013 18:12:24 +0400 (MSK) (envelope-from alexey) Message-Id: <201309221412.r8MECO3i041338@home.renatasystems.org> Date: Sun, 22 Sep 2013 18:12:24 +0400 (MSK) From: Alexey Degtyarev To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/182298: security/py-rsa - update to 3.1.2 Cc: koobs@freebsd.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Alexey Degtyarev List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Sep 2013 14:20:02 -0000 >Number: 182298 >Category: ports >Synopsis: security/py-rsa - update to 3.1.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Sep 22 14:20:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Alexey Degtyarev >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD home.renatasystems.org 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Mon Jan 30 09:54:00 UTC 2012 root@amd64-builder.renatasystems.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: This will update security/py-rsa to latest available version: 3.1.2. https://bitbucket.org/sybren/python-rsa >How-To-Repeat: >Fix: --- py-rsa-3.1.2.diff begins here --- Index: py-rsa/distinfo =================================================================== --- py-rsa/distinfo (revision 327867) +++ py-rsa/distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (rsa-3.1.1.tar.gz) = ed83fe80602077bcbf91d14e41558c751d76527c7b88d44394e1e2900fddb7ba -SIZE (rsa-3.1.1.tar.gz) = 37584 +SHA256 (rsa-3.1.2.tar.gz) = 66eb8752a1de9b92d7679ea0e1556cf2e4a155161d0024e97e06999041e35f58 +SIZE (rsa-3.1.2.tar.gz) = 35237 Index: py-rsa/files/patch-setup.py =================================================================== --- py-rsa/files/patch-setup.py (revision 327867) +++ py-rsa/files/patch-setup.py (working copy) @@ -1,19 +1,8 @@ ---- ./setup.py.orig 2012-06-19 00:14:17.000000000 +1000 -+++ ./setup.py 2012-06-29 17:34:36.000000000 +1000 -@@ -1,9 +1,5 @@ - #!/usr/bin/env python - --# Ensure that a reasonably recent version of 'distribute' is installed. --from distribute_setup import use_setuptools --use_setuptools('0.6.10') -- - from setuptools import setup - - import rsa -@@ -41,5 +37,5 @@ - 'pyrsa-encrypt-bigfile = rsa.cli:encrypt_bigfile', +--- setup.py.orig 2013-09-22 13:37:46.137580450 +0000 ++++ setup.py 2013-09-22 13:38:07.857582868 +0000 +@@ -43,4 +43,5 @@ 'pyrsa-decrypt-bigfile = rsa.cli:decrypt_bigfile', ]}, -- + + zip_safe=False, ) Index: py-rsa/pkg-plist =================================================================== --- py-rsa/pkg-plist (revision 327867) +++ py-rsa/pkg-plist (working copy) @@ -26,6 +26,9 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rsa/_version200.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rsa/_version200.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rsa/_version200.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rsa/asn1.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rsa/asn1.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rsa/asn1.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rsa/bigfile.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rsa/bigfile.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/rsa/bigfile.pyo Index: py-rsa/Makefile =================================================================== --- py-rsa/Makefile (revision 327867) +++ py-rsa/Makefile (working copy) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= rsa -PORTVERSION= 3.1.1 +PORTVERSION= 3.1.2 CATEGORIES= security python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -12,7 +12,7 @@ LICENSE= AL2 -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}asn1>=0.1.3:${PORTSDIR}/devel/py-asn1 +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}asn1>=0.1.3:${PORTSDIR}/devel/py-asn1 USE_PYTHON= yes USE_PYDISTUTILS=easy_install --- py-rsa-3.1.2.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:09:27 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 0E97747C; Sun, 22 Sep 2013 14:09:27 +0000 (UTC) (envelope-from bdrewery@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 DA9292157; Sun, 22 Sep 2013 14:09:26 +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 r8ME9QNO073916; Sun, 22 Sep 2013 14:09:26 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8ME9QUZ073915; Sun, 22 Sep 2013 09:09:26 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:09:26 -0500 (CDT) Message-Id: <201309221409.r8ME9QUZ073915@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/179140: [new ports] emulators/fs-uae and emulators/fs-uae-launcher 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: Sun, 22 Sep 2013 14:09:27 -0000 Synopsis: [new ports] emulators/fs-uae and emulators/fs-uae-launcher Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:09:26 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=179140 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:10:44 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 417D0795; Sun, 22 Sep 2013 14:10:44 +0000 (UTC) (envelope-from bdrewery@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 17A4D21E3; Sun, 22 Sep 2013 14:10:44 +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 r8MEAhT6077114; Sun, 22 Sep 2013 14:10:43 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEAhKu077113; Sun, 22 Sep 2013 09:10:43 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:10:43 -0500 (CDT) Message-Id: <201309221410.r8MEAhKu077113@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181059: sysutils/gkrelltop: Update to version 2.2.13 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: Sun, 22 Sep 2013 14:10:44 -0000 Synopsis: sysutils/gkrelltop: Update to version 2.2.13 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:10:43 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181059 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:11:40 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 B9B1DA03; Sun, 22 Sep 2013 14:11:40 +0000 (UTC) (envelope-from bdrewery@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 91266222D; Sun, 22 Sep 2013 14:11:40 +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 r8MEBeTX080897; Sun, 22 Sep 2013 14:11:40 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEBeZv080896; Sun, 22 Sep 2013 09:11:40 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:11:40 -0500 (CDT) Message-Id: <201309221411.r8MEBeZv080896@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181724: [PATCH] databases/pecl-mongo: update to 1.4.3 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: Sun, 22 Sep 2013 14:11:40 -0000 Synopsis: [PATCH] databases/pecl-mongo: update to 1.4.3 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:11:40 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181724 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:11:54 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id D8921AA6; Sun, 22 Sep 2013 14:11:54 +0000 (UTC) (envelope-from bdrewery@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 AFC8C223F; Sun, 22 Sep 2013 14:11:54 +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 r8MEBsYb081469; Sun, 22 Sep 2013 14:11:54 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEBsSw081468; Sun, 22 Sep 2013 09:11:54 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:11:54 -0500 (CDT) Message-Id: <201309221411.r8MEBsSw081468@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181884: devel/ace: Update to version 6.2.1 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: Sun, 22 Sep 2013 14:11:54 -0000 Synopsis: devel/ace: Update to version 6.2.1 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:11:54 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181884 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:12:01 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 1EFACAE1; Sun, 22 Sep 2013 14:12:01 +0000 (UTC) (envelope-from bdrewery@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 E96A02246; Sun, 22 Sep 2013 14:12: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 r8MEC0nr081723; Sun, 22 Sep 2013 14:12:00 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEC0hm081722; Sun, 22 Sep 2013 09:12:00 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:12:00 -0500 (CDT) Message-Id: <201309221412.r8MEC0hm081722@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181888: science/bodr: Update to version 10 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: Sun, 22 Sep 2013 14:12:01 -0000 Synopsis: science/bodr: Update to version 10 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:12:00 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181888 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:16:43 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 8035670D; Sun, 22 Sep 2013 14:16:43 +0000 (UTC) (envelope-from bdrewery@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 5645C234C; Sun, 22 Sep 2013 14:16:43 +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 r8MEGh9V084493; Sun, 22 Sep 2013 14:16:43 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEGhDn084492; Sun, 22 Sep 2013 09:16:43 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:16:43 -0500 (CDT) Message-Id: <201309221416.r8MEGhDn084492@freefall.freebsd.org> To: bdrewery@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, bdrewery@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181833: [MAINTAINER] databases/mariadb-server: [SUMMARIZE CHANGES] 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: Sun, 22 Sep 2013 14:16:43 -0000 Synopsis: [MAINTAINER] databases/mariadb-server: [SUMMARIZE CHANGES] Responsible-Changed-From-To: freebsd-ports-bugs->bdrewery Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:16:43 CDT 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=181833 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:13:22 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 2B6ACEBC; Sun, 22 Sep 2013 14:13:22 +0000 (UTC) (envelope-from bdrewery@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 0235C22B4; Sun, 22 Sep 2013 14:13:22 +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 r8MEDLWW083780; Sun, 22 Sep 2013 14:13:21 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEDLmR083779; Sun, 22 Sep 2013 09:13:21 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:13:21 -0500 (CDT) Message-Id: <201309221413.r8MEDLmR083779@freefall.freebsd.org> To: bsdports@csnstores.com, bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/180489: graphics/pecl-gmagick: Update to 1.1.2RC1 (with patch) 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: Sun, 22 Sep 2013 14:13:22 -0000 Synopsis: graphics/pecl-gmagick: Update to 1.1.2RC1 (with patch) Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:13:21 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=180489 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:13:31 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 83987EF8; Sun, 22 Sep 2013 14:13:31 +0000 (UTC) (envelope-from bdrewery@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 5CE4D22BC; Sun, 22 Sep 2013 14:13:31 +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 r8MEDVKD084160; Sun, 22 Sep 2013 14:13:31 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEDVPe084159; Sun, 22 Sep 2013 09:13:31 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:13:31 -0500 (CDT) Message-Id: <201309221413.r8MEDVPe084159@freefall.freebsd.org> To: mephius@gmail.com, bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181215: [PATCH] www/pecl-sphinx: [SUMMARIZE CHANGES] 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: Sun, 22 Sep 2013 14:13:31 -0000 Synopsis: [PATCH] www/pecl-sphinx: [SUMMARIZE CHANGES] Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:13:31 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181215 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:10:52 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 4DA6B803; Sun, 22 Sep 2013 14:10:52 +0000 (UTC) (envelope-from bdrewery@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 0BAC021ED; Sun, 22 Sep 2013 14:10:52 +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 r8MEApP9078921; Sun, 22 Sep 2013 14:10:51 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEApsY078920; Sun, 22 Sep 2013 09:10:51 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:10:51 -0500 (CDT) Message-Id: <201309221410.r8MEApsY078920@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181065: finance/qhacc: Update to version 4.2 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: Sun, 22 Sep 2013 14:10:52 -0000 Synopsis: finance/qhacc: Update to version 4.2 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:10:51 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181065 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:10:56 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id C8EF483A; Sun, 22 Sep 2013 14:10:56 +0000 (UTC) (envelope-from bdrewery@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 A0CA221F3; Sun, 22 Sep 2013 14:10:56 +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 r8MEAu2R079110; Sun, 22 Sep 2013 14:10:56 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEAuS3079109; Sun, 22 Sep 2013 09:10:56 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:10:56 -0500 (CDT) Message-Id: <201309221410.r8MEAuS3079109@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181068: editors/asedit: Support CFLAGS properly 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: Sun, 22 Sep 2013 14:10:56 -0000 Synopsis: editors/asedit: Support CFLAGS properly Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:10:56 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181068 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:11:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 8144C86E; Sun, 22 Sep 2013 14:11:01 +0000 (UTC) (envelope-from bdrewery@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 5787721F8; Sun, 22 Sep 2013 14:11:01 +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 r8MEB1Bt079315; Sun, 22 Sep 2013 14:11:01 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEB1sN079314; Sun, 22 Sep 2013 09:11:01 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:11:01 -0500 (CDT) Message-Id: <201309221411.r8MEB1sN079314@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181073: graphics/gphoto2: Update to version 2.5.2 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: Sun, 22 Sep 2013 14:11:01 -0000 Synopsis: graphics/gphoto2: Update to version 2.5.2 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:11:01 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181073 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:11:03 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 15A25873; Sun, 22 Sep 2013 14:11:03 +0000 (UTC) (envelope-from bdrewery@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 E035B21FB; Sun, 22 Sep 2013 14:11:02 +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 r8MEB2lv079378; Sun, 22 Sep 2013 14:11:02 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEB2so079377; Sun, 22 Sep 2013 09:11:02 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:11:02 -0500 (CDT) Message-Id: <201309221411.r8MEB2so079377@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181074: misc/cs: Update to version 0.9.6 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: Sun, 22 Sep 2013 14:11:03 -0000 Synopsis: misc/cs: Update to version 0.9.6 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:11:02 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181074 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:11:06 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 34CBF8A5; Sun, 22 Sep 2013 14:11:06 +0000 (UTC) (envelope-from bdrewery@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 0BA9F21FE; Sun, 22 Sep 2013 14:11:06 +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 r8MEB54n079504; Sun, 22 Sep 2013 14:11:05 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEB5DT079503; Sun, 22 Sep 2013 09:11:05 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:11:05 -0500 (CDT) Message-Id: <201309221411.r8MEB5DT079503@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181203: [UPDATE] shells/mksh to R47 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: Sun, 22 Sep 2013 14:11:06 -0000 Synopsis: [UPDATE] shells/mksh to R47 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:11:05 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181203 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:11:20 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 7EA9E920; Sun, 22 Sep 2013 14:11:20 +0000 (UTC) (envelope-from bdrewery@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 54C9F2210; Sun, 22 Sep 2013 14:11:20 +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 r8MEBKIM080078; Sun, 22 Sep 2013 14:11:20 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEBKqm080077; Sun, 22 Sep 2013 09:11:20 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:11:20 -0500 (CDT) Message-Id: <201309221411.r8MEBKqm080077@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181477: [MAINTAINER] devel/pecl-judy: update to 1.0.0 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: Sun, 22 Sep 2013 14:11:20 -0000 Synopsis: [MAINTAINER] devel/pecl-judy: update to 1.0.0 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:11:20 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181477 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:11:26 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id B764C988; Sun, 22 Sep 2013 14:11:26 +0000 (UTC) (envelope-from bdrewery@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 8EB5E221A; Sun, 22 Sep 2013 14:11:26 +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 r8MEBQFR080330; Sun, 22 Sep 2013 14:11:26 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEBQZp080329; Sun, 22 Sep 2013 09:11:26 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:11:26 -0500 (CDT) Message-Id: <201309221411.r8MEBQZp080329@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181637: [MAINTAINER] devel/pecl-inotify: [SUMMARIZE CHANGES] 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: Sun, 22 Sep 2013 14:11:26 -0000 Synopsis: [MAINTAINER] devel/pecl-inotify: [SUMMARIZE CHANGES] Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:11:26 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181637 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:11:31 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 662A19BD; Sun, 22 Sep 2013 14:11:31 +0000 (UTC) (envelope-from bdrewery@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 3DFD8221E; Sun, 22 Sep 2013 14:11:31 +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 r8MEBV7o080519; Sun, 22 Sep 2013 14:11:31 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEBVBT080518; Sun, 22 Sep 2013 09:11:31 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:11:31 -0500 (CDT) Message-Id: <201309221411.r8MEBVBT080518@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181669: [MAINTAINER] devel/pear-SebastianBergmann_FinderFacade: update to 1.1.0 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: Sun, 22 Sep 2013 14:11:31 -0000 Synopsis: [MAINTAINER] devel/pear-SebastianBergmann_FinderFacade: update to 1.1.0 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:11:30 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181669 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:11:36 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 0D8069CD; Sun, 22 Sep 2013 14:11:36 +0000 (UTC) (envelope-from bdrewery@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 D80CF2228; Sun, 22 Sep 2013 14:11:35 +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 r8MEBZ4O080708; Sun, 22 Sep 2013 14:11:35 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEBZi9080707; Sun, 22 Sep 2013 09:11:35 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:11:35 -0500 (CDT) Message-Id: <201309221411.r8MEBZi9080707@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181672: [PATCH] devel/pear: [SUMMARIZE CHANGES] 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: Sun, 22 Sep 2013 14:11:36 -0000 Synopsis: [PATCH] devel/pear: [SUMMARIZE CHANGES] Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:11:35 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181672 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:11:44 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 08ED7A35; Sun, 22 Sep 2013 14:11:44 +0000 (UTC) (envelope-from bdrewery@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 D3ABF2231; Sun, 22 Sep 2013 14:11:43 +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 r8MEBhO1081023; Sun, 22 Sep 2013 14:11:43 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEBhTq081022; Sun, 22 Sep 2013 09:11:43 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:11:43 -0500 (CDT) Message-Id: <201309221411.r8MEBhTq081022@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181875: databases/mysql-workbench52: Fix build 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: Sun, 22 Sep 2013 14:11:44 -0000 Synopsis: databases/mysql-workbench52: Fix build Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:11:43 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181875 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:11:45 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 8BCE5A3A; Sun, 22 Sep 2013 14:11:45 +0000 (UTC) (envelope-from bdrewery@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 61E3E2234; Sun, 22 Sep 2013 14:11:45 +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 r8MEBjHr081086; Sun, 22 Sep 2013 14:11:45 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEBjjN081085; Sun, 22 Sep 2013 09:11:45 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:11:45 -0500 (CDT) Message-Id: <201309221411.r8MEBjjN081085@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181876: lang/gcl: Update to version 2.6.9 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: Sun, 22 Sep 2013 14:11:45 -0000 Synopsis: lang/gcl: Update to version 2.6.9 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:11:45 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181876 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:11:50 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 3581DA71; Sun, 22 Sep 2013 14:11:50 +0000 (UTC) (envelope-from bdrewery@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 0CA3A2239; Sun, 22 Sep 2013 14:11:50 +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 r8MEBnTm081278; Sun, 22 Sep 2013 14:11:49 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEBnMD081277; Sun, 22 Sep 2013 09:11:49 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:11:49 -0500 (CDT) Message-Id: <201309221411.r8MEBnMD081277@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181879: net/ulxmlrpcpp: Fix build on 10-current 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: Sun, 22 Sep 2013 14:11:50 -0000 Synopsis: net/ulxmlrpcpp: Fix build on 10-current Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:11:49 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181879 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:12:05 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 D2D55B18; Sun, 22 Sep 2013 14:12:05 +0000 (UTC) (envelope-from bdrewery@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 A8F44224D; Sun, 22 Sep 2013 14:12:05 +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 r8MEC5x5081912; Sun, 22 Sep 2013 14:12:05 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEC5W6081911; Sun, 22 Sep 2013 09:12:05 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:12:05 -0500 (CDT) Message-Id: <201309221412.r8MEC5W6081911@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181891: deskutils/ganyremote: Update to version 6.3 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: Sun, 22 Sep 2013 14:12:05 -0000 Synopsis: deskutils/ganyremote: Update to version 6.3 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:12:05 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181891 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:12:12 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 12821B55; Sun, 22 Sep 2013 14:12:12 +0000 (UTC) (envelope-from bdrewery@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 DD2162256; Sun, 22 Sep 2013 14:12:11 +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 r8MECBks082164; Sun, 22 Sep 2013 14:12:11 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MECBWY082163; Sun, 22 Sep 2013 09:12:11 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:12:11 -0500 (CDT) Message-Id: <201309221412.r8MECBWY082163@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/182039: devel/xa65: CLANG fixes 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: Sun, 22 Sep 2013 14:12:12 -0000 Synopsis: devel/xa65: CLANG fixes Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:12:11 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=182039 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:12:16 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 B264CB8E; Sun, 22 Sep 2013 14:12:16 +0000 (UTC) (envelope-from bdrewery@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 896AB225D; Sun, 22 Sep 2013 14:12:16 +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 r8MECGtL082353; Sun, 22 Sep 2013 14:12:16 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MECGlA082352; Sun, 22 Sep 2013 09:12:16 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:12:16 -0500 (CDT) Message-Id: <201309221412.r8MECGlA082352@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/182117: patch - update net/widentd for clang 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: Sun, 22 Sep 2013 14:12:16 -0000 Synopsis: patch - update net/widentd for clang Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:12:16 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=182117 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:12:18 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 4B3FCB9D; Sun, 22 Sep 2013 14:12:18 +0000 (UTC) (envelope-from bdrewery@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 219B2225F; Sun, 22 Sep 2013 14:12:18 +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 r8MECHQo082416; Sun, 22 Sep 2013 14:12:17 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MECH34082415; Sun, 22 Sep 2013 09:12:17 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:12:17 -0500 (CDT) Message-Id: <201309221412.r8MECH34082415@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/182130: x11/xmove does not build with clang [patch] 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: Sun, 22 Sep 2013 14:12:18 -0000 Synopsis: x11/xmove does not build with clang [patch] Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:12:17 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=182130 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:12:21 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 575B5BC9; Sun, 22 Sep 2013 14:12:21 +0000 (UTC) (envelope-from bdrewery@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 2E26D2265; Sun, 22 Sep 2013 14:12:21 +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 r8MECLo1082545; Sun, 22 Sep 2013 14:12:21 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MECLCc082544; Sun, 22 Sep 2013 09:12:21 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:12:21 -0500 (CDT) Message-Id: <201309221412.r8MECLCc082544@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/182168: [maintainer update] sysutils/ciso clang support 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: Sun, 22 Sep 2013 14:12:21 -0000 Synopsis: [maintainer update] sysutils/ciso clang support Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:12:20 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=182168 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:13:20 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 55593EB8; Sun, 22 Sep 2013 14:13:20 +0000 (UTC) (envelope-from bdrewery@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 2BF2A22B2; Sun, 22 Sep 2013 14:13:20 +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 r8MEDKDY083717; Sun, 22 Sep 2013 14:13:20 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEDKat083716; Sun, 22 Sep 2013 09:13:20 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:13:20 -0500 (CDT) Message-Id: <201309221413.r8MEDKat083716@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/179565: [MAINTAINER] devel/pecl-pthreads: [SUMMARIZE CHANGES] 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: Sun, 22 Sep 2013 14:13:20 -0000 Synopsis: [MAINTAINER] devel/pecl-pthreads: [SUMMARIZE CHANGES] Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:13:19 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=179565 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:13:26 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 CCBDFEC5; Sun, 22 Sep 2013 14:13:26 +0000 (UTC) (envelope-from bdrewery@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 A26B922B8; Sun, 22 Sep 2013 14:13:26 +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 r8MEDQoP083971; Sun, 22 Sep 2013 14:13:26 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEDQT0083970; Sun, 22 Sep 2013 09:13:26 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:13:26 -0500 (CDT) Message-Id: <201309221413.r8MEDQT0083970@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181064: multimedia/2mandvd: Update to version 1.8.5 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: Sun, 22 Sep 2013 14:13:26 -0000 Synopsis: multimedia/2mandvd: Update to version 1.8.5 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:13:26 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181064 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:13:28 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 5D352EC7; Sun, 22 Sep 2013 14:13:28 +0000 (UTC) (envelope-from bdrewery@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 337CE22B9; Sun, 22 Sep 2013 14:13:28 +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 r8MEDSgZ084034; Sun, 22 Sep 2013 14:13:28 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEDS1r084033; Sun, 22 Sep 2013 09:13:28 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:13:28 -0500 (CDT) Message-Id: <201309221413.r8MEDS1r084033@freefall.freebsd.org> To: bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181069: textproc/tralics: Update to version 2.15.1 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: Sun, 22 Sep 2013 14:13:28 -0000 Synopsis: textproc/tralics: Update to version 2.15.1 Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:13:27 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181069 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:13:37 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 647A0F2F; Sun, 22 Sep 2013 14:13:37 +0000 (UTC) (envelope-from bdrewery@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 3A84C22C1; Sun, 22 Sep 2013 14:13:37 +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 r8MEDbj9084286; Sun, 22 Sep 2013 14:13:37 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEDaZw084285; Sun, 22 Sep 2013 09:13:36 -0500 (CDT) (envelope-from bdrewery) Date: Sun, 22 Sep 2013 09:13:36 -0500 (CDT) Message-Id: <201309221413.r8MEDaZw084285@freefall.freebsd.org> To: umq@ueo.co.jp, bdrewery@FreeBSD.org, miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/181811: [patch] security/libgcrypt inline assembler error at clang on ARM 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: Sun, 22 Sep 2013 14:13:37 -0000 Synopsis: [patch] security/libgcrypt inline assembler error at clang on ARM Responsible-Changed-From-To: miwi->freebsd-ports-bugs Responsible-Changed-By: bdrewery Responsible-Changed-When: Sun Sep 22 09:13:36 CDT 2013 Responsible-Changed-Why: Back to the heap due to timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181811 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:21:55 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 3059C493; Sun, 22 Sep 2013 14:21:55 +0000 (UTC) (envelope-from edwin@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 EE9892464; Sun, 22 Sep 2013 14:21:54 +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 r8MELsPW086377; Sun, 22 Sep 2013 14:21:54 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MELseB086376; Sun, 22 Sep 2013 14:21:54 GMT (envelope-from edwin) Date: Sun, 22 Sep 2013 14:21:54 GMT Message-Id: <201309221421.r8MELseB086376@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, koobs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182298: security/py-rsa - update to 3.1.2 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: Sun, 22 Sep 2013 14:21:55 -0000 Synopsis: security/py-rsa - update to 3.1.2 Responsible-Changed-From-To: freebsd-ports-bugs->koobs Responsible-Changed-By: edwin Responsible-Changed-When: Sun Sep 22 14:21:54 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182298 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 14:30:02 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 91DCE8C0 for ; Sun, 22 Sep 2013 14:30:02 +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 704D224CC for ; Sun, 22 Sep 2013 14:30:02 +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 r8MEU2fN086651 for ; Sun, 22 Sep 2013 14:30:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MEU1qC086650; Sun, 22 Sep 2013 14:30:02 GMT (envelope-from gnats) Resent-Date: Sun, 22 Sep 2013 14:30:02 GMT Resent-Message-Id: <201309221430.r8MEU1qC086650@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, Alexey Degtyarev 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 9998B888 for ; Sun, 22 Sep 2013 14:26:45 +0000 (UTC) (envelope-from alexey@home.renatasystems.org) Received: from home.renatasystems.org (home.renatasystems.org [87.242.77.210]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B31EC24B8 for ; Sun, 22 Sep 2013 14:26:44 +0000 (UTC) Received: from home.renatasystems.org (localhost [127.0.0.1]) by home.renatasystems.org (8.14.5/8.14.5) with ESMTP id r8MEPQHd042066 for ; Sun, 22 Sep 2013 18:25:26 +0400 (MSK) (envelope-from alexey@home.renatasystems.org) Received: (from alexey@localhost) by home.renatasystems.org (8.14.5/8.14.5/Submit) id r8MEPLBq042065; Sun, 22 Sep 2013 18:25:21 +0400 (MSK) (envelope-from alexey) Message-Id: <201309221425.r8MEPLBq042065@home.renatasystems.org> Date: Sun, 22 Sep 2013 18:25:21 +0400 (MSK) From: Alexey Degtyarev To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/182299: [maintainer-update] devel/awscli - update to 1.1.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Alexey Degtyarev List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Sep 2013 14:30:02 -0000 >Number: 182299 >Category: ports >Synopsis: [maintainer-update] devel/awscli - update to 1.1.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Sep 22 14:30:01 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Alexey Degtyarev >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD home.renatasystems.org 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Mon Jan 30 09:54:00 UTC 2012 root@amd64-builder.renatasystems.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: This will update devel/awscli to latest version: 1.1.0. New Features: * The cp, mv, and sync operations for the aws s3 command now include a number of additional options to control the settings of objects stored in Amazon S3. These options include: --content-type --content-disposition --content-language --content-encoding --cache-control --storage-class --sse (Server Side Encryption) --expires In addition, there is a --grants option to allow additional rights to be assigned to individuals or groups. * ec2 command upgraded to use the latest Amazon Elastic Compute Cloud (EC2) service version (2013-08-15). More info: http://aws.amazon.com/releasenotes/CLI/7105479313293301 Commiter note: the following changes required to be committed first: 1. http://www.freebsd.org/cgi/query-pr.cgi?pr=182295 2. http://www.freebsd.org/cgi/query-pr.cgi?pr=182296 3. http://www.freebsd.org/cgi/query-pr.cgi?pr=182298 >How-To-Repeat: >Fix: --- awscli-1.1.0.diff begins here --- Index: awscli/distinfo =================================================================== --- awscli/distinfo (revision 327867) +++ awscli/distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (awscli-1.0.0.tar.gz) = bea17a235c6bf8adddc66f0a80e9e73f757cf5637b697b4a200c978d76bb6085 -SIZE (awscli-1.0.0.tar.gz) = 113881 +SHA256 (awscli-1.1.0.tar.gz) = c3802d3274618d152fc3cd0946b8f5a131ab89318b3e8ba1d89d4d27c2ecb647 +SIZE (awscli-1.1.0.tar.gz) = 121538 Index: awscli/pkg-plist =================================================================== --- awscli/pkg-plist (revision 327867) +++ awscli/pkg-plist (working copy) @@ -141,22 +141,35 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/allocate-address.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/associate-address.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/authorize-security-group-ingress.rst +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/confirm-product-instance.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/create-key-pair.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/create-security-group.rst +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/create-tags.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/delete-key-pair.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/delete-security-group.rst +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/delete-tags.rst +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/describe-account-attributes.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/describe-addresses.rst +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/describe-availability-zones.rst +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/describe-instance-attribute.rst +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/describe-instance-status.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/describe-instances.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/describe-key-pairs.rst +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/describe-regions.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/describe-security-groups.rst +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/describe-tags.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/disassociate-address.rst +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/get-console-output.rst +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/get-password-data.rst +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/modify-instance-attribute.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/reboot-instances.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/release-address.rst +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/reset-instance-attribute.rst +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/revoke-security-group-ingress.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/run-instances.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/start-instances.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/stop-instances.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/terminate_instances.rst -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/iam/Example.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/iam/add-role-to-instance-profile.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/iam/add-user-to-group.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/iam/change-password.rst @@ -271,6 +284,10 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/s3api/get-object.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/s3api/list-buckets.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/s3api/list-objects.rst +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/s3api/put-bucket-acl.rst +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/s3api/put-bucket-cors.rst +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/s3api/put-bucket-logging.rst +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/s3api/put-bucket-policy.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/s3api/put-object.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ses/delete-identity.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ses/get-identity-dkim-attributes.rst Index: awscli/Makefile =================================================================== --- awscli/Makefile (revision 327867) +++ awscli/Makefile (working copy) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= awscli -PORTVERSION= 1.0.0 +PORTVERSION= 1.1.0 CATEGORIES= devel MASTER_SITES= CHEESESHOP MASTER_SITE_SUBDIR=source/a/awscli @@ -12,11 +12,11 @@ LICENSE= AL2 -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}bcdoc>=0.9.0:${PORTSDIR}/devel/py-bcdoc \ - ${PYTHON_PKGNAMEPREFIX}botocore>=0.16:${PORTSDIR}/devel/py-botocore \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}bcdoc>=0.10.0:${PORTSDIR}/devel/py-bcdoc \ + ${PYTHON_PKGNAMEPREFIX}botocore>=0.17:${PORTSDIR}/devel/py-botocore \ ${PYTHON_PKGNAMEPREFIX}colorama>=0.2.5:${PORTSDIR}/devel/py-colorama \ ${PYTHON_PKGNAMEPREFIX}docutils>=0.10:${PORTSDIR}/textproc/py-docutils \ - ${PYTHON_PKGNAMEPREFIX}rsa>=3.1.1:${PORTSDIR}/security/py-rsa \ + ${PYTHON_PKGNAMEPREFIX}rsa>=3.1.2:${PORTSDIR}/security/py-rsa \ ${PYTHON_PKGNAMEPREFIX}six>=1.1.0:${PORTSDIR}/devel/py-six USE_PYTHON= yes @@ -27,9 +27,6 @@ .if ${PYTHON_REL} < 270 RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}argparse>0:${PORTSDIR}/devel/py-argparse -.else -post-patch: - @${REINPLACE_CMD} '/.*argparse.*/d' ${WRKSRC}/setup.py .endif .include --- awscli-1.1.0.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 15:30:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id E73AC1DD for ; Sun, 22 Sep 2013 15:30:01 +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 BAEF12710 for ; Sun, 22 Sep 2013 15:30:01 +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 r8MFU1eb098393 for ; Sun, 22 Sep 2013 15:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MFU1eh098392; Sun, 22 Sep 2013 15:30:01 GMT (envelope-from gnats) Date: Sun, 22 Sep 2013 15:30:01 GMT Message-Id: <201309221530.r8MFU1eh098392@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Dominic Fandrey Subject: Re: ports/177855: [patch update] multimedia/libbluray 0.2.2 -> 0.2.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Dominic Fandrey List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Sep 2013 15:30:02 -0000 The following reply was made to PR ports/177855; it has been noted by GNATS. From: Dominic Fandrey To: bug-followup@FreeBSD.org, fbsd-ports@opsec.eu Cc: Subject: Re: ports/177855: [patch update] multimedia/libbluray 0.2.2 -> 0.2.3 Date: Sun, 22 Sep 2013 17:24:43 +0200 Oh, I haven't seen this one! Please close, this is dated, the version in ports is 0.3.0. -- A: Because it fouls the order in which people normally read text. Q: Why is top-posting such a bad thing? A: Top-posting. Q: What is the most annoying thing on usenet and in e-mail? From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 16:30:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 98AA1E6B for ; Sun, 22 Sep 2013 16: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 7DCBB297B for ; Sun, 22 Sep 2013 16: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 r8MGU07U010181 for ; Sun, 22 Sep 2013 16: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 r8MGU021010180; Sun, 22 Sep 2013 16:30:00 GMT (envelope-from gnats) Resent-Date: Sun, 22 Sep 2013 16:30:00 GMT Resent-Message-Id: <201309221630.r8MGU021010180@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, Li-Wen Hsu Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 419B4CCD; Sun, 22 Sep 2013 16:20:29 +0000 (UTC) (envelope-from lwhsu@lwbsd.csie.net) Received: from lwbsd.csie.net (lwbsd.cs.nctu.edu.tw [140.113.17.197]) by mx1.freebsd.org (Postfix) with ESMTP id 103EF2916; Sun, 22 Sep 2013 16:20:28 +0000 (UTC) Received: by lwbsd.csie.net (Postfix, from userid 1001) id 333074BCDF; Mon, 23 Sep 2013 00:20:20 +0800 (CST) Message-Id: <20130922162020.333074BCDF@lwbsd.csie.net> Date: Mon, 23 Sep 2013 00:20:20 +0800 (CST) From: Li-Wen Hsu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/182301: [PATCH] www/py-pyramid: update to 1.4.3 Cc: clsung@FreeBSD.org 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: Sun, 22 Sep 2013 16:30:00 -0000 >Number: 182301 >Category: ports >Synopsis: [PATCH] www/py-pyramid: update to 1.4.3 >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: Sun Sep 22 16:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Li-Wen Hsu >Release: FreeBSD 9.1-RELEASE-p4 amd64 >Organization: >Environment: System: FreeBSD lwbsd.cs.nctu.edu.tw 9.1-RELEASE-p4 FreeBSD 9.1-RELEASE-p4 #0: Tue Jun 18 19:22:07 CST 2013 >Description: - Update to 1.4.3 Port maintainer (clsung@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_8 (mode: update, diff: SVN) >How-To-Repeat: >Fix: --- py27-pyramid-1.4.3.patch begins here --- Index: Makefile =================================================================== --- Makefile (revision 327878) +++ Makefile (working copy) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pyramid -PORTVERSION= 1.4.2 +PORTVERSION= 1.4.3 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Index: distinfo =================================================================== --- distinfo (revision 327878) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (pyramid-1.4.2.tar.gz) = fd9bba536f4129150299cb52cef0c0461f352aef45176e74d3fa56f185152bc3 -SIZE (pyramid-1.4.2.tar.gz) = 2425809 +SHA256 (pyramid-1.4.3.tar.gz) = 8484ceb740ae5e21bda40fa9f9a8fd3be2cdd323eb64ff7e21c0bf3b6388c5b7 +SIZE (pyramid-1.4.3.tar.gz) = 2426125 Index: pkg-descr =================================================================== --- pkg-descr (revision 327878) +++ pkg-descr (working copy) @@ -19,4 +19,4 @@ * Authentication support improvements * Documentation improvements -WWW: http://docs.pylonsproject.org +WWW: http://www.pylonsproject.org/ Index: pkg-plist =================================================================== --- pkg-plist (revision 327878) +++ pkg-plist (working copy) @@ -786,8 +786,8 @@ @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/pkgs/fixtureapp/subpackage/templates @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/pkgs/fixtureapp/subpackage @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/pkgs/fixtureapp +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/pkgs/exceptionviewapp @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/pkgs/eventonly -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/pkgs/exceptionviewapp @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/pkgs/defpermbugapp @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/pkgs/conflictapp @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pyramid/tests/pkgs/ccbugapp --- py27-pyramid-1.4.3.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 16:30:08 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 DC91DEA0; Sun, 22 Sep 2013 16:30:08 +0000 (UTC) (envelope-from edwin@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 B18C8297F; Sun, 22 Sep 2013 16:30:08 +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 r8MGU8BP010317; Sun, 22 Sep 2013 16:30:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MGU8ge010316; Sun, 22 Sep 2013 16:30:08 GMT (envelope-from edwin) Date: Sun, 22 Sep 2013 16:30:08 GMT Message-Id: <201309221630.r8MGU8ge010316@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, clsung@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182301: [PATCH] www/py-pyramid: update to 1.4.3 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: Sun, 22 Sep 2013 16:30:08 -0000 Synopsis: [PATCH] www/py-pyramid: update to 1.4.3 Responsible-Changed-From-To: freebsd-ports-bugs->clsung Responsible-Changed-By: edwin Responsible-Changed-When: Sun Sep 22 16:30:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182301 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 17:00: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 C1ADB40D for ; Sun, 22 Sep 2013 17:00: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 A1EC52AB2 for ; Sun, 22 Sep 2013 17:00: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 r8MH00uv015517 for ; Sun, 22 Sep 2013 17:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MH00ir015516; Sun, 22 Sep 2013 17:00:00 GMT (envelope-from gnats) Resent-Date: Sun, 22 Sep 2013 17:00:00 GMT Resent-Message-Id: <201309221700.r8MH00ir015516@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, Chris Howey 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 0C41E2E9 for ; Sun, 22 Sep 2013 16:55:45 +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 D395B2A96 for ; Sun, 22 Sep 2013 16:55:44 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8MGtio6000125 for ; Sun, 22 Sep 2013 16:55:44 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8MGthsM099954; Sun, 22 Sep 2013 16:55:43 GMT (envelope-from nobody) Message-Id: <201309221655.r8MGthsM099954@oldred.freebsd.org> Date: Sun, 22 Sep 2013 16:55:43 GMT From: Chris Howey To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182302: [maintainer update] Updating port: sysutils/parallel - New Version (20130922) 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: Sun, 22 Sep 2013 17:00:00 -0000 >Number: 182302 >Category: ports >Synopsis: [maintainer update] Updating port: sysutils/parallel - New Version (20130922) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Sep 22 17:00:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Chris Howey >Release: 9.1-RELEASE >Organization: N/A >Environment: FreeBSD tinny-desktop 9.1-RELEASE FreeBSD 9.1-RELEASE #0 r243825: Tue Dec 4 09:23:10 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Modified files: sysutils/parallel Makefile distinfo Update to 20130922 Release notes: https://savannah.gnu.org/forum/forum.php?forum_id=7723 >How-To-Repeat: I've notice the installer installs 4 different types of docs: Man pages Texi files (Generated at install time using pod2texi) HTML files PDF files Should we be installing all of these? Is it worth making config options for them or maybe only installing certain doc types? >Fix: Patch attached. Patch attached with submission follows: diff -ruN parallel.bak/Makefile parallel/Makefile --- parallel.bak/Makefile 2013-09-20 18:05:58.000000000 -0500 +++ parallel/Makefile 2013-09-22 11:48:14.000000000 -0500 @@ -2,7 +2,7 @@ # $FreeBSD: sysutils/parallel/Makefile 327772 2013-09-20 23:05:58Z bapt $ PORTNAME= parallel -PORTVERSION= 20130822 +PORTVERSION= 20130922 CATEGORIES= sysutils MASTER_SITES= GNU @@ -24,7 +24,8 @@ MAN1= parallel.1 parallel_tutorial.1 sem.1 sql.1 niceload.1 PLIST_FILES= bin/parallel bin/sem bin/sql bin/niceload PORTDOCS= parallel.html parallel_tutorial.html sem.html sql.html niceload.html \ - parallel.texi parallel_tutorial.texi sem.texi sql.texi niceload.texi + parallel.texi parallel_tutorial.texi sem.texi sql.texi niceload.texi \ + parallel.pdf parallel_tutorial.pdf sem.pdf sql.pdf niceload.pdf NO_STAGE= yes .include diff -ruN parallel.bak/distinfo parallel/distinfo --- parallel.bak/distinfo 2013-08-23 02:12:13.000000000 -0500 +++ parallel/distinfo 2013-09-22 11:44:59.000000000 -0500 @@ -1,2 +1,2 @@ -SHA256 (parallel-20130822.tar.bz2) = b857c744479fe19137bdbd240dd6205882b31be924c9ce0a0f4566e67e8d25d9 -SIZE (parallel-20130822.tar.bz2) = 270689 +SHA256 (parallel-20130922.tar.bz2) = e8fa0e4dd06781aa90f4567493ae61233b8db6a1b35257f8d229f9efd737b909 +SIZE (parallel-20130922.tar.bz2) = 769344 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 17:00:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 4F12343C; Sun, 22 Sep 2013 17:00:09 +0000 (UTC) (envelope-from edwin@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 24BDD2AB5; Sun, 22 Sep 2013 17:00:09 +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 r8MH09Is015654; Sun, 22 Sep 2013 17:00:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MH088C015653; Sun, 22 Sep 2013 17:00:08 GMT (envelope-from edwin) Date: Sun, 22 Sep 2013 17:00:08 GMT Message-Id: <201309221700.r8MH088C015653@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182302: [maintainer update] Updating port: sysutils/parallel - New Version (20130922) 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: Sun, 22 Sep 2013 17:00:09 -0000 Synopsis: [maintainer update] Updating port: sysutils/parallel - New Version (20130922) Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: edwin Responsible-Changed-When: Sun Sep 22 17:00:08 UTC 2013 Responsible-Changed-Why: sunpoet@ wants this submitter's PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182302 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 17:20:50 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 48B14A09; Sun, 22 Sep 2013 17:20:50 +0000 (UTC) (envelope-from sunpoet@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 1E9272BEF; Sun, 22 Sep 2013 17:20:50 +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 r8MHKnna022249; Sun, 22 Sep 2013 17:20:49 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MHKnmV022248; Sun, 22 Sep 2013 17:20:49 GMT (envelope-from sunpoet) Date: Sun, 22 Sep 2013 17:20:49 GMT Message-Id: <201309221720.r8MHKnmV022248@freefall.freebsd.org> To: sunpoet@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: sunpoet@FreeBSD.org Subject: Re: ports/180317: New port: russian/p5-Text-Hyphen-RU 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: Sun, 22 Sep 2013 17:20:50 -0000 Synopsis: New port: russian/p5-Text-Hyphen-RU Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: sunpoet Responsible-Changed-When: Sun Sep 22 17:20:49 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=180317 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 17:20:42 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 644EF9D2; Sun, 22 Sep 2013 17:20:42 +0000 (UTC) (envelope-from sunpoet@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 38B9A2BE9; Sun, 22 Sep 2013 17:20:42 +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 r8MHKgWI021923; Sun, 22 Sep 2013 17:20:42 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MHKgl5021922; Sun, 22 Sep 2013 17:20:42 GMT (envelope-from sunpoet) Date: Sun, 22 Sep 2013 17:20:42 GMT Message-Id: <201309221720.r8MHKgl5021922@freefall.freebsd.org> To: sunpoet@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: sunpoet@FreeBSD.org Subject: Re: ports/180300: New port: devel/p5-Term-ReadLine-Perl 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: Sun, 22 Sep 2013 17:20:42 -0000 Synopsis: New port: devel/p5-Term-ReadLine-Perl Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: sunpoet Responsible-Changed-When: Sun Sep 22 17:20:41 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=180300 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 17:20:45 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 8FF7E9D6; Sun, 22 Sep 2013 17:20:45 +0000 (UTC) (envelope-from sunpoet@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 652572BEB; Sun, 22 Sep 2013 17:20:45 +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 r8MHKjiu022053; Sun, 22 Sep 2013 17:20:45 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MHKj2H022052; Sun, 22 Sep 2013 17:20:45 GMT (envelope-from sunpoet) Date: Sun, 22 Sep 2013 17:20:45 GMT Message-Id: <201309221720.r8MHKj2H022052@freefall.freebsd.org> To: sunpoet@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: sunpoet@FreeBSD.org Subject: Re: ports/180304: New port: devel/p5-Test-Able-Runner 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: Sun, 22 Sep 2013 17:20:45 -0000 Synopsis: New port: devel/p5-Test-Able-Runner Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: sunpoet Responsible-Changed-When: Sun Sep 22 17:20:45 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=180304 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 17:20:48 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id ACE24A06; Sun, 22 Sep 2013 17:20:48 +0000 (UTC) (envelope-from sunpoet@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 82F082BED; Sun, 22 Sep 2013 17:20:48 +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 r8MHKmqp022183; Sun, 22 Sep 2013 17:20:48 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MHKmFC022182; Sun, 22 Sep 2013 17:20:48 GMT (envelope-from sunpoet) Date: Sun, 22 Sep 2013 17:20:48 GMT Message-Id: <201309221720.r8MHKmFC022182@freefall.freebsd.org> To: sunpoet@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: sunpoet@FreeBSD.org Subject: Re: ports/180297: New port: textproc/p5-Text-Hyphen 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: Sun, 22 Sep 2013 17:20:48 -0000 Synopsis: New port: textproc/p5-Text-Hyphen Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: sunpoet Responsible-Changed-When: Sun Sep 22 17:20:48 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=180297 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 17:20:44 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 01BE29D4; Sun, 22 Sep 2013 17:20:44 +0000 (UTC) (envelope-from sunpoet@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 CB01E2BEA; Sun, 22 Sep 2013 17:20:43 +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 r8MHKhTk021988; Sun, 22 Sep 2013 17:20:43 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MHKhwI021987; Sun, 22 Sep 2013 17:20:43 GMT (envelope-from sunpoet) Date: Sun, 22 Sep 2013 17:20:43 GMT Message-Id: <201309221720.r8MHKhwI021987@freefall.freebsd.org> To: sunpoet@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: sunpoet@FreeBSD.org Subject: Re: ports/180303: New port: devel/p5-Test-Able 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: Sun, 22 Sep 2013 17:20:44 -0000 Synopsis: New port: devel/p5-Test-Able Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: sunpoet Responsible-Changed-When: Sun Sep 22 17:20:43 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=180303 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 17:20:47 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 274309D8; Sun, 22 Sep 2013 17:20:47 +0000 (UTC) (envelope-from sunpoet@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 F05FB2BEC; Sun, 22 Sep 2013 17:20:46 +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 r8MHKkQa022118; Sun, 22 Sep 2013 17:20:46 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MHKkaN022117; Sun, 22 Sep 2013 17:20:46 GMT (envelope-from sunpoet) Date: Sun, 22 Sep 2013 17:20:46 GMT Message-Id: <201309221720.r8MHKkaN022117@freefall.freebsd.org> To: sunpoet@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: sunpoet@FreeBSD.org Subject: Re: ports/180308: New port: devel/p5-MooseX-Role-Matcher 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: Sun, 22 Sep 2013 17:20:47 -0000 Synopsis: New port: devel/p5-MooseX-Role-Matcher Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: sunpoet Responsible-Changed-When: Sun Sep 22 17:20:46 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=180308 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 17:32:27 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 69E5BBD2; Sun, 22 Sep 2013 17:32:27 +0000 (UTC) (envelope-from linimon@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 3D1DA2C67; Sun, 22 Sep 2013 17:32:27 +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 r8MHWRbV024079; Sun, 22 Sep 2013 17:32:27 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MHWPaH024078; Sun, 22 Sep 2013 17:32:25 GMT (envelope-from linimon) Date: Sun, 22 Sep 2013 17:32:25 GMT Message-Id: <201309221732.r8MHWPaH024078@freefall.freebsd.org> To: kamikaze@bsdforen.de, fbsd-ports@opsec.eu, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/177855: [patch update] multimedia/libbluray 0.2.2 -> 0.2.3 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: Sun, 22 Sep 2013 17:32:27 -0000 Synopsis: [patch update] multimedia/libbluray 0.2.2 -> 0.2.3 State-Changed-From-To: feedback->closed State-Changed-By: linimon State-Changed-When: Sun Sep 22 17:31:54 UTC 2013 State-Changed-Why: Port has already been updated. Thanks for your submission. http://www.freebsd.org/cgi/query-pr.cgi?pr=177855 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 17:33:15 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 88D17C1A; Sun, 22 Sep 2013 17:33:15 +0000 (UTC) (envelope-from linimon@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 5D8BD2C76; Sun, 22 Sep 2013 17:33:15 +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 r8MHXF85024149; Sun, 22 Sep 2013 17:33:15 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MHXFA5024148; Sun, 22 Sep 2013 17:33:15 GMT (envelope-from linimon) Date: Sun, 22 Sep 2013 17:33:15 GMT Message-Id: <201309221733.r8MHXFA5024148@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/182300: graphics/geeqie: geeqie champlain detection with GSP option 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: Sun, 22 Sep 2013 17:33:15 -0000 Old Synopsis: geeqie champlain detection with GSP option New Synopsis: graphics/geeqie: geeqie champlain detection with GSP option Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Sun Sep 22 17:32:47 UTC 2013 Responsible-Changed-Why: Fix synopsis and make this a ports PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=182300 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 17:33:20 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 078BCC1D; Sun, 22 Sep 2013 17:33:20 +0000 (UTC) (envelope-from edwin@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 D0EC62C78; Sun, 22 Sep 2013 17:33:19 +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 r8MHXJTf024251; Sun, 22 Sep 2013 17:33:19 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MHXJwl024250; Sun, 22 Sep 2013 17:33:19 GMT (envelope-from edwin) Date: Sun, 22 Sep 2013 17:33:19 GMT Message-Id: <201309221733.r8MHXJwl024250@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, amdmi3@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182300: graphics/geeqie: geeqie champlain detection with GSP option 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: Sun, 22 Sep 2013 17:33:20 -0000 Synopsis: graphics/geeqie: geeqie champlain detection with GSP option Responsible-Changed-From-To: freebsd-ports-bugs->amdmi3 Responsible-Changed-By: edwin Responsible-Changed-When: Sun Sep 22 17:33:19 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182300 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 18:40:42 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 09E70BC9; Sun, 22 Sep 2013 18:40:42 +0000 (UTC) (envelope-from sunpoet@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 D27042F85; Sun, 22 Sep 2013 18:40:41 +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 r8MIef0F040347; Sun, 22 Sep 2013 18:40:41 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MIeffY040346; Sun, 22 Sep 2013 18:40:41 GMT (envelope-from sunpoet) Date: Sun, 22 Sep 2013 18:40:41 GMT Message-Id: <201309221840.r8MIeffY040346@freefall.freebsd.org> To: sunpoet@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: sunpoet@FreeBSD.org Subject: Re: ports/182045: [PATCH] german/wordpress: update to 3.6.1 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: Sun, 22 Sep 2013 18:40:42 -0000 Synopsis: [PATCH] german/wordpress: update to 3.6.1 Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: sunpoet Responsible-Changed-When: Sun Sep 22 18:40:41 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=182045 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 20:00:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 14F32D99 for ; Sun, 22 Sep 2013 20:00:01 +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 CFA3C2300 for ; Sun, 22 Sep 2013 20:00: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 r8MK008a055970 for ; Sun, 22 Sep 2013 20:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MK00nS055963; Sun, 22 Sep 2013 20:00:00 GMT (envelope-from gnats) Resent-Date: Sun, 22 Sep 2013 20:00:00 GMT Resent-Message-Id: <201309222000.r8MK00nS055963@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, Artem Nosov 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 7CB67AF9 for ; Sun, 22 Sep 2013 19:54:37 +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 68A1C22CF for ; Sun, 22 Sep 2013 19:54:37 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8MJsab0057015 for ; Sun, 22 Sep 2013 19:54:36 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8MJsa1N057012; Sun, 22 Sep 2013 19:54:36 GMT (envelope-from nobody) Message-Id: <201309221954.r8MJsa1N057012@oldred.freebsd.org> Date: Sun, 22 Sep 2013 19:54:36 GMT From: Artem Nosov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182303: FIX: build problem of x11/xbelld 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: Sun, 22 Sep 2013 20:00:01 -0000 >Number: 182303 >Category: ports >Synopsis: FIX: build problem of x11/xbelld >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Sep 22 20:00:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Artem Nosov >Release: 10.0-CURRENT >Organization: >Environment: FreeBSD freebsd-head 10.0-CURRENT FreeBSD 10.0-CURRENT #0 r254222: Sun Aug 11 20:14:02 UTC 2013 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: This patch fixes build error (http://beefy2.isc.freebsd.org/bulk/head-amd64-default/2013-09-19_01h04m14s/logs/xbelld-0.2b2_2.log) >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN xbelld.orig/Makefile xbelld/Makefile --- xbelld.orig/Makefile 2013-09-23 03:30:03.000000000 +0400 +++ xbelld/Makefile 2013-09-23 03:45:32.000000000 +0400 @@ -3,7 +3,7 @@ PORTNAME= xbelld PORTVERSION= 0.2b2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= x11 MASTER_SITES= http://www.meowfishies.com/code/ DISTNAME= ${PORTNAME}-0.2beta2 @@ -18,6 +18,8 @@ USE_XORG= ice sm xtrap xmu xt USE_GNOME= esound +MAKE_ARGS= EXTRA_LDOPTIONS="-lX11 -laudiofile" + PLIST_FILES= bin/xbelld \ lib/X11/app-defaults/XBellD MAN1= xbelld.1 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 20:03:27 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 2CDE2198; Sun, 22 Sep 2013 20:03:27 +0000 (UTC) (envelope-from sunpoet@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 002C42375; Sun, 22 Sep 2013 20:03:26 +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 r8MK3QDx058112; Sun, 22 Sep 2013 20:03:26 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MK3QcT058111; Sun, 22 Sep 2013 20:03:26 GMT (envelope-from sunpoet) Date: Sun, 22 Sep 2013 20:03:26 GMT Message-Id: <201309222003.r8MK3QcT058111@freefall.freebsd.org> To: olivierd@FreeBSD.org, sunpoet@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: sunpoet@FreeBSD.org Subject: Re: ports/181203: [UPDATE] shells/mksh to R47 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: Sun, 22 Sep 2013 20:03:27 -0000 Synopsis: [UPDATE] shells/mksh to R47 State-Changed-From-To: open->closed State-Changed-By: sunpoet State-Changed-When: Sun Sep 22 20:03:26 UTC 2013 State-Changed-Why: Superseded by ports/181327. http://www.freebsd.org/cgi/query-pr.cgi?pr=181203 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 20:26:24 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 462EFA61; Sun, 22 Sep 2013 20:26:24 +0000 (UTC) (envelope-from ak@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 13DA5248A; Sun, 22 Sep 2013 20:26:24 +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 r8MKQN22062968; Sun, 22 Sep 2013 20:26:23 GMT (envelope-from ak@freefall.freebsd.org) Received: (from ak@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MKQN9E062967; Sun, 22 Sep 2013 20:26:23 GMT (envelope-from ak) Date: Sun, 22 Sep 2013 20:26:23 GMT Message-Id: <201309222026.r8MKQN9E062967@freefall.freebsd.org> To: ak@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ak@FreeBSD.org From: ak@FreeBSD.org Subject: Re: ports/182268: [maintainer update][patch] bug fix ports-mgmt/pkg_replace 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: Sun, 22 Sep 2013 20:26:24 -0000 Synopsis: [maintainer update][patch] bug fix ports-mgmt/pkg_replace Responsible-Changed-From-To: freebsd-ports-bugs->ak Responsible-Changed-By: ak Responsible-Changed-When: Sun Sep 22 20:26:23 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=182268 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 20:40:03 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 465BB420 for ; Sun, 22 Sep 2013 20:40:03 +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 32420254E for ; Sun, 22 Sep 2013 20:40:03 +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 r8MKe2Pe064998 for ; Sun, 22 Sep 2013 20:40:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MKe2Nx064997; Sun, 22 Sep 2013 20:40:02 GMT (envelope-from gnats) Date: Sun, 22 Sep 2013 20:40:02 GMT Message-Id: <201309222040.r8MKe2Nx064997@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Tobias Rehbein Subject: Re: ports/179834: [maintainer-update] update games/stonesoup to version 0.12.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Tobias Rehbein List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Sep 2013 20:40:03 -0000 The following reply was made to PR ports/179834; it has been noted by GNATS. From: Tobias Rehbein To: bug-followup@FreeBSD.org Cc: Nikolai Lifanov Subject: Re: ports/179834: [maintainer-update] update games/stonesoup to version 0.12.2 Date: Sun, 22 Sep 2013 22:05:42 +0200 --z6Eq5LdranGa6ru8 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Here is another patch, rerolled after r327730. I hope somebody picks it up and commits it. It's very annoying to work on patches, which are rotting three months. I understand the commiters are volunteers too, but at least a response on questions would be nice. Regards, Tobias --z6Eq5LdranGa6ru8 Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="games__stonesoup-0.11.1-0_12.2.diff" Content-Transfer-Encoding: quoted-printable diff -urN games/stonesoup.orig/Makefile games/stonesoup/Makefile --- games/stonesoup.orig/Makefile 2013-09-22 21:36:41.809165963 +0200 +++ games/stonesoup/Makefile 2013-09-22 21:37:48.548163338 +0200 @@ -2,7 +2,7 @@ # $FreeBSD: games/stonesoup/Makefile 327730 2013-09-20 17:36:33Z bapt $ =20 PORTNAME=3D stonesoup -PORTVERSION=3D 0.11.1 +PORTVERSION=3D 0.12.2 CATEGORIES=3D games MASTER_SITES=3D SF/crawl-ref/Stone%20Soup/${PORTVERSION} DISTNAME=3D stone_soup-${PORTVERSION}-nodeps @@ -85,6 +85,7 @@ .endif =20 post-patch: + @${REINPLACE_CMD} -e "s,%%LOCALBASE%%,${LOCALBASE},g" ${WRKSRC}/Makefile .if ${PORT_OPTIONS:MSOUND} @${REINPLACE_CMD} -e "s,%%LOCALBASE%%,${LOCALBASE}," ${WRKSRC}/AppHdr.h @${REINPLACE_CMD} -e "s,%%SOUND%%,," ${WRKSRC}/AppHdr.h @@ -92,6 +93,10 @@ @${REINPLACE_CMD} -e "s,%%SOUND%%,// ," ${WRKSRC}/AppHdr.h .endif =20 +pre-install: + @${FIND} ${WRKSRC}/dat -type f -name '*.orig' | \ + ${XARGS} ${RM} + post-install: .if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} diff -urN games/stonesoup.orig/Makefile.rej games/stonesoup/Makefile.rej --- games/stonesoup.orig/Makefile.rej 1970-01-01 01:00:00.000000000 +0100 +++ games/stonesoup/Makefile.rej 2013-09-22 21:37:48.549163240 +0200 @@ -0,0 +1,33 @@ +*************** +*** 40,57 **** + INSTALL_UGRP=3Droot:games \ + NO_AUTO_OPT=3DYesPlease \ + NO_OPTIMIZE=3DYesPlease \ +- LUA_INCLUDE_DIR=3D${LOCALBASE}/include/lua51 \ +- LUA_LIB=3D-llua-5.1 \ + SQLITE_INCLUDE_DIR=3D${LOCALBASE}/include \ + SQLITE_LIB=3D-lsqlite3 \ +- LDFLAGS=3D"-L${LOCALBASE}/lib -L${LOCALBASE}/lib/lua51" + =20 + .include + =20 +- .if ${CC:T:M*clang*} +- MAKE_ARGS+=3D NO_INLINE_DEPGEN=3D1 +- .endif +-=20 + .if defined(VERBOSE) + MAKE_ARGS+=3D V=3Dyes + .endif +--- 40,51 ---- + INSTALL_UGRP=3Droot:games \ + NO_AUTO_OPT=3DYesPlease \ + NO_OPTIMIZE=3DYesPlease \ + SQLITE_INCLUDE_DIR=3D${LOCALBASE}/include \ + SQLITE_LIB=3D-lsqlite3 \ ++ LDFLAGS=3D"-L${LOCALBASE}/lib" + =20 + .include + =20 + .if defined(VERBOSE) + MAKE_ARGS+=3D V=3Dyes + .endif diff -urN games/stonesoup.orig/distinfo games/stonesoup/distinfo --- games/stonesoup.orig/distinfo 2013-09-22 21:36:41.810162261 +0200 +++ games/stonesoup/distinfo 2013-09-22 21:37:48.549163240 +0200 @@ -1,2 +1,2 @@ -SHA256 (stone_soup-0.11.1-nodeps.tar.xz) =3D 377d738cff21165763b252a57cd84= 049361d44db6d8d10f08f789cc9e7bb82b6 -SIZE (stone_soup-0.11.1-nodeps.tar.xz) =3D 7519768 +SHA256 (stone_soup-0.12.2-nodeps.tar.xz) =3D d9ecb2c121596fa635fd98a3f1363= 038beabf67159c7822e79eaf4698efef274 +SIZE (stone_soup-0.12.2-nodeps.tar.xz) =3D 8661464 diff -urN games/stonesoup.orig/files/patch-AppHdr.h games/stonesoup/files/p= atch-AppHdr.h --- games/stonesoup.orig/files/patch-AppHdr.h 1970-01-01 01:00:00.000000000= +0100 +++ games/stonesoup/files/patch-AppHdr.h 2013-09-22 21:37:48.550185258 +0200 @@ -0,0 +1,11 @@ +--- ./AppHdr.h.orig 2013-06-01 04:52:08.000000000 +0200 ++++ ./AppHdr.h 2013-06-18 19:24:52.991224396 +0200 +@@ -132,7 +132,7 @@ + // + // WARNING: Filenames passed to this command *are not validated in an= y way*. + // +- // #define SOUND_PLAY_COMMAND "/usr/bin/play -v .5 \"%s\" 2>/dev/null= &" ++ %%SOUND%%#define SOUND_PLAY_COMMAND "%%LOCALBASE%%/bin/play -v .5 \"%= s\" 2>/dev/null &" +=20 + #include "libunix.h" +=20 diff -urN games/stonesoup.orig/files/patch-Makefile games/stonesoup/files/p= atch-Makefile --- games/stonesoup.orig/files/patch-Makefile 2013-09-22 21:36:41.809165963= +0200 +++ games/stonesoup/files/patch-Makefile 2013-09-22 21:37:48.550185258 +0200 @@ -1,6 +1,6 @@ ---- ./Makefile.orig 2012-09-30 23:25:31.000000000 +0200 -+++ ./Makefile 2012-10-27 20:49:08.837330946 +0200 -@@ -66,7 +66,7 @@ +--- ./Makefile.orig 2013-06-01 06:17:58.000000000 +0200 ++++ ./Makefile 2013-06-18 19:24:52.993224597 +0200 +@@ -69,7 +69,7 @@ # ask for a package with convenience libraries instead -- we'll try to= provide # them somewhere in the near future. =20 @@ -9,25 +9,16 @@ =20 # Disable GNU Make implicit rules and variables. Leaving them enabled wil= l slow # down MinGW and Cygwin builds by a very VERY noticeable degree. Besides,= we have -@@ -112,7 +112,7 @@ -=20 - else -=20 --CFOPTIMIZE :=3D -O2 -+CFOPTIMIZE :=3D -=20 - endif # USE_ICC +@@ -101,7 +101,7 @@ + # =20 -@@ -120,7 +120,7 @@ - CFOPTIMIZE +=3D -flto=3Djobserver -fwhole-program - endif =20 -CFOTHERS :=3D -pipe $(EXTERNAL_FLAGS) +CFOTHERS :=3D $(CFLAGS) CFWARN :=3D -Wall -Wformat-security CFWARN_L :=3D -Wundef =20 -@@ -133,8 +133,6 @@ +@@ -118,8 +118,6 @@ # AR =3D ar RANLIB =3D ranlib @@ -36,7 +27,19 @@ RM =3D rm -f COPY =3D cp COPY_R =3D cp -r -@@ -530,30 +528,19 @@ +@@ -530,9 +528,9 @@ + ifneq (,$(shell $(GXX) --version|grep 'g++.*4\.2\.')) + # OS X uses a buggy ancient version of gcc without fixes from even + # subsequent point releases of 4.2. +- CFOPTIMIZE :=3D -O1 ++ CFOPTIMIZE :=3D + else +- CFOPTIMIZE :=3D -O2 ++ CFOPTIMIZE :=3D + endif + endif +=20 +@@ -570,31 +568,20 @@ ifndef BUILD_LUA ifdef NO_PKGCONFIG BUILD_LUA =3D yes @@ -64,19 +67,20 @@ endif - else - LUA_PACKAGE =3D lua5.1 -- endif --endif + endif + endif -ifndef BUILD_LUA - ifndef LUA_PACKAGE - LUA_PACKAGE =3D lua5.1 - endif +- endif - INCLUDES_L +=3D $(shell $(PKGCONFIG) $(LUA_PACKAGE) --cflags-only-I) - CFLAGS_L +=3D $(shell $(PKGCONFIG) $(LUA_PACKAGE) --cflags-only-other) - LIBS +=3D $(shell $(PKGCONFIG) $(LUA_PACKAGE) --libs) - endif +-endif =20 ifndef BUILD_SQLITE -@@ -707,7 +694,7 @@ + ifeq ($(shell grep -q sqlite3_prepare $(SQLITE_INCLUDE_DIR)/sqlite3.h 2= >/dev/null && echo yes),yes) +@@ -740,7 +727,7 @@ DEFINES +=3D -DWIZARD endif ifdef NO_OPTIMIZE @@ -85,41 +89,25 @@ endif =20 ifdef PCH -@@ -831,10 +818,12 @@ +@@ -864,7 +851,7 @@ INSTALL_FONTS +=3D $(PROPORTIONAL_FONT) endif else -- SYS_PROPORTIONAL_FONT =3D $(shell find /usr/share/fonts -iname $(OUR_PR= OPORTIONAL_FONT)|head -n 1) -- ifeq (,$(SYS_PROPORTIONAL_FONT)) -- SYS_PROPORTIONAL_FONT =3D $(shell find /usr/local/share/fonts -iname = $(OUR_PROPORTIONAL_FONT)|head -n 1) -- endif -+ SYS_PROPORTIONAL_FONT =3D $(shell name=3D$(OUR_PROPORTIONAL_FONT);\ -+ {\ -+ fc-list | sed 's/: .*//' | grep -Fi "/$$name";\ -+ for dir in /usr/share/fonts /usr/local/share/fonts /usr/*/lib/X11/f= onts;\ -+ do [ -d $$dir ] && echo $$dir; done;\ -+ } 2>/dev/null | xargs -I% find % -type f -iname $$name -print | head = -n1) - ifneq (,$(SYS_PROPORTIONAL_FONT)) - ifeq (,$(COPY_FONTS)) - DEFINES +=3D -DPROPORTIONAL_FONT=3D\"$(SYS_PROPORTIONAL_FONT)\" -@@ -854,10 +843,12 @@ +- SYS_PROPORTIONAL_FONT =3D $(shell dir=3D/usr/share/fonts; [ -d $$dir ] = && find $$dir -iname $(OUR_PROPORTIONAL_FONT)|head -n 1) ++ SYS_PROPORTIONAL_FONT =3D $(shell dir=3D%%LOCALBASE%%/lib/X11/fonts; [ = -d $$dir ] && find $$dir -iname $(OUR_PROPORTIONAL_FONT)|head -n 1) + ifeq (,$(SYS_PROPORTIONAL_FONT)) + SYS_PROPORTIONAL_FONT =3D $(shell dir=3D/usr/local/share/fonts ; [ -d= $$dir ] && find $$dir -iname $(OUR_PROPORTIONAL_FONT)|head -n 1) + endif +@@ -887,7 +874,7 @@ INSTALL_FONTS +=3D $(MONOSPACED_FONT) endif else -- SYS_MONOSPACED_FONT =3D $(shell find /usr/share/fonts -iname $(OUR_MONO= SPACED_FONT)|head -n 1) -- ifeq (,$(SYS_MONOSPACED_FONT)) -- SYS_MONOSPACED_FONT =3D $(shell find /usr/local/share/fonts -iname $(= OUR_MONOSPACED_FONT)|head -n 1) -- endif -+ SYS_MONOSPACED_FONT =3D $(shell name=3D$(OUR_MONOSPACED_FONT);\ -+ {\ -+ fc-list | sed 's/: .*//' | grep -Fi "/$$name";\ -+ for dir in /usr/share/fonts /usr/local/share/fonts /usr/*/lib/X11/f= onts;\ -+ do [ -d $$dir ] && echo $$dir; done;\ -+ } 2>/dev/null | xargs -I% find % -type f -iname $$name -print | head = -n1) - ifneq (,$(SYS_MONOSPACED_FONT)) - ifeq (,$(COPY_FONTS)) - DEFINES +=3D -DMONOSPACED_FONT=3D\"$(SYS_MONOSPACED_FONT)\" -@@ -1036,7 +1027,7 @@ +- SYS_MONOSPACED_FONT =3D $(shell dir=3D/usr/share/fonts; [ -d $$dir ] &&= find $$dir -iname $(OUR_MONOSPACED_FONT)|head -n 1) ++ SYS_MONOSPACED_FONT =3D $(shell dir=3D%%LOCALBASE%%/lib/X11/fonts; [ -d= $$dir ] && find $$dir -iname $(OUR_MONOSPACED_FONT)|head -n 1) + ifeq (,$(SYS_MONOSPACED_FONT)) + SYS_MONOSPACED_FONT =3D $(shell dir=3D/usr/local/share/fonts; [ -d $$= dir ] && find $$dir -iname $(OUR_MONOSPACED_FONT)|head -n 1) + endif +@@ -1073,7 +1060,7 @@ cmd-name.h $(INI_OBJECTS) =20 SRC_PKG_BASE :=3D stone_soup @@ -128,11 +116,3 @@ MAJOR_VERSION =3D $(shell echo "$(SRC_VERSION)"|sed -r 's/-.*//;s/^([^.]+= \.[^.]+).*/\1/') =20 export SRC_VERSION -@@ -1049,6 +1040,7 @@ - greet: - @if [ ! -e $(GAME) ]; then\ - printf " * If you experience any problems building Crawl, please take = a second look\\n"\ -+ ;printf\ - " * at INSTALL.txt: the solution to your problem just might be in ther= e!\\n";\ - fi -=20 diff -urN games/stonesoup.orig/files/patch-dat__des__branches__hells.des ga= mes/stonesoup/files/patch-dat__des__branches__hells.des --- games/stonesoup.orig/files/patch-dat__des__branches__hells.des 1970-01-= 01 01:00:00.000000000 +0100 +++ games/stonesoup/files/patch-dat__des__branches__hells.des 2013-09-22 21= :37:48.551164694 +0200 @@ -0,0 +1,12 @@ +--- ./dat/des/branches/hells.des.orig 2013-06-01 04:52:08.000000000 +0200 ++++ ./dat/des/branches/hells.des 2013-06-18 19:24:52.996224493 +0200 +@@ -379,8 +379,7 @@ + KMONS: F =3D executioner + KMONS: ! =3D iron devil / skeletal warrior / hell knight / place:Zot:1 = skeleton w:15 + KMONS: ? =3D patrolling iron imp +-: dgn.delayed_decay(_G, '%', 'human corpse / human skeleton, \ +-: human corpse / human skeleton') ++: dgn.delayed_decay(_G, '%', 'human corpse / human skeleton, human corpse= / human skeleton') + : else + KMONS: 01 =3D ghost moth + KMONS: 23 =3D golden dragon diff -urN games/stonesoup.orig/files/patch-dat__des__variable__grated_commu= nity.des games/stonesoup/files/patch-dat__des__variable__grated_community.d= es --- games/stonesoup.orig/files/patch-dat__des__variable__grated_community.d= es 1970-01-01 01:00:00.000000000 +0100 +++ games/stonesoup/files/patch-dat__des__variable__grated_community.des 20= 13-09-22 21:37:48.552177483 +0200 @@ -0,0 +1,67 @@ +--- ./dat/des/variable/grated_community.des.orig 2013-06-01 04:52:08.00000= 0000 +0200 ++++ ./dat/des/variable/grated_community.des 2013-06-18 19:24:52.998224087 = +0200 +@@ -67,11 +67,7 @@ + q:5 sausage + KFEAT: C =3D distillery shop type:Miraculous suffix:Elixirs count:10 \ + greed:50 ; potion of confusion +-: kfeat("D =3D armour shop name:The_Legendary_" .. crawl.make_name() .. "= \ +-: type:Legendary suffix:Smithy count:10 greed:40 ;\ +-: damaged plate armour ego:none | damaged chain mail ego:none |\ +-: damaged long sword ego:none | damaged shield ego:none |\ +-: damaged large shield ego:none | damaged battleaxe ego:none") ++: kfeat("D =3D armour shop name:The_Legendary_" .. crawl.make_name() .. "= type:Legendary suffix:Smithy count:10 greed:40 ; damaged plate armour ego:= none | damaged chain mail ego:none | damaged long sword ego:none | damaged = shield ego:none | damaged large shield ego:none | damaged battleaxe ego:non= e") + SHUFFLE: QRSTUVX + SUBVAULT: Q : grated_community_mu_home1 + SUBVAULT: R : grated_community_mu_home2 +@@ -166,16 +162,11 @@ + KITEM: % =3D animal skin / nothing + MARKER: + =3D lua:restrict_door() + KFEAT: ~ =3D closed_door +-: dgn.delayed_decay(_G, '*', 'human skeleton / yak skeleton / elf skeleto= n /\ +-: gnome skeleton / elephant skeleton /\ +-: sheep skeleton / manticore skeleton /\ +-: w:2 nothing, animal skin') ++: dgn.delayed_decay(_G, '*', 'human skeleton / yak skeleton / elf skeleto= n / gnome skeleton / elephant skeleton / sheep skeleton / manticore skeleto= n / w:2 nothing, animal skin') + KFEAT: 8 =3D granite_statue / orcish_idol / w:5 altar_trog /\ + w:5 altar_beogh / w:1 altar_makhleb / w:4 floor + KITEM: $ =3D q:5 meat ration, giant spiked club, q:2 sausage +-: kitem("$ =3D q:" .. crawl.random_range(1, 5) .. " sausage / w:5 nothing= , \ +-: q:" .. crawl.random_range(1, 3) .. " meat ration / w:5 nothi= ng, \ +-: giant spiked club / giant club / nothing") ++: kitem("$ =3D q:" .. crawl.random_range(1, 5) .. " sausage / w:5 nothing= , q:" .. crawl.random_range(1, 3) .. " meat ration / w:5 nothing, giant spi= ked club / giant club / nothing") + : local frosty =3D crawl.random2(6) + : if frosty =3D=3D 5 then + SUBST: 1 =3D 2 +@@ -218,10 +209,8 @@ + KFEAT: * =3D altar_kikubaaqudgha / w:4 altar_sif_muna / w:1 altar_yredele= mnul + KITEM: " =3D gold, any wand / w:15 nothing, any scroll / nothing + KFEAT: 8 =3D granite_statue / w:2 fountain_blood / w:1 floor +-: kitem("? =3D q:" .. crawl.random_range(1, 3) .. " scroll of torment /\ +-: nothing, any scroll / nothing") +-: kitem("! =3D q:" .. crawl.random_range(1, 3) .. " potion of magic /\ +-: nothing, any potion / nothing") ++: kitem("? =3D q:" .. crawl.random_range(1, 3) .. " scroll of torment / n= othing, any scroll / nothing") ++: kitem("! =3D q:" .. crawl.random_range(1, 3) .. " potion of magic / not= hing, any potion / nothing") + KITEM: & =3D book of necromancy / book of death / book of unlife / w:12 n= othing + KMONS: P =3D col:darkgrey plant name:withered name_adjective = \ + tile:mons_withered_plant / col:lightgrey plant name:withered \ +@@ -233,8 +222,7 @@ + nothing + KFEAT: 8 =3D granite_statue / fountain_sparkling / fountain_blue / w:1 fl= oor + KITEM: ? =3D scroll of recharging / nothing, any scroll / nothing +-: kitem("! =3D q:" .. crawl.random_range(1, 3) .. " potion of magic /\ +-: nothing, any potion / nothing") ++: kitem("! =3D q:" .. crawl.random_range(1, 3) .. " potion of magic / not= hing, any potion / nothing") + KITEM: & =3D book of wizardry / book of power / book of party tricks /\ + book of alchemy / w:12 nothing + KMONS: P =3D plant +@@ -246,8 +234,7 @@ + potion of brilliance / nothing + KFEAT: 8 =3D granite_statue / w:1 floor + KITEM: ? =3D scroll of immolation / nothing, any scroll / nothing +-: kitem("! =3D q:" .. crawl.random_range(1, 3) .. " scroll of immolation = /\ +-: nothing, any potion / nothing") ++: kitem("! =3D q:" .. crawl.random_range(1, 3) .. " scroll of immolation = / nothing, any potion / nothing") + KITEM: & =3D book of fire / book of power / book of ice /\ + book of the tempests / w:12 nothing + KFEAT: P =3D granite_statue diff -urN games/stonesoup.orig/files/patch-files.cc games/stonesoup/files/p= atch-files.cc --- games/stonesoup.orig/files/patch-files.cc 2013-09-22 21:36:41.809165963= +0200 +++ games/stonesoup/files/patch-files.cc 2013-09-22 21:37:48.552177483 +0200 @@ -1,8 +1,8 @@ ---- ./files.cc.orig 2012-09-30 23:25:31.000000000 +0200 -+++ ./files.cc 2012-10-27 20:49:08.839666272 +0200 -@@ -618,8 +618,10 @@ +--- ./files.cc.orig 2013-06-01 04:52:08.000000000 +0200 ++++ ./files.cc 2013-06-18 19:24:53.000224795 +0200 +@@ -629,8 +629,10 @@ { - std::vector chars; + vector chars; =20 +#ifdef WIZARD if (Options.no_save) @@ -10,10 +10,10 @@ +#endif =20 #ifndef DISABLE_SAVEGAME_LISTS - std::string searchpath =3D _get_savefile_directory(); -@@ -1741,8 +1743,10 @@ + string searchpath =3D _get_savefile_directory(); +@@ -1778,8 +1780,10 @@ // returns false if a new game should start instead - static bool _restore_game(const std::string& filename) + static bool _restore_game(const string& filename) { +#ifdef WIZARD if (Options.no_save) diff -urN games/stonesoup.orig/files/patch-ng-setup.cc games/stonesoup/file= s/patch-ng-setup.cc --- games/stonesoup.orig/files/patch-ng-setup.cc 2013-09-22 21:36:41.809165= 963 +0200 +++ games/stonesoup/files/patch-ng-setup.cc 2013-09-22 21:37:48.553164640 += 0200 @@ -1,7 +1,7 @@ ---- ./ng-setup.cc.orig 2012-09-30 23:25:31.000000000 +0200 -+++ ./ng-setup.cc 2012-10-27 20:49:08.841950945 +0200 -@@ -1427,9 +1427,11 @@ - you.nemelex_sacrificing =3D true; +--- ./ng-setup.cc.orig 2013-06-01 04:52:08.000000000 +0200 ++++ ./ng-setup.cc 2013-06-18 19:24:53.002224996 +0200 +@@ -1396,9 +1396,11 @@ + init_companions(); =20 // Create the save file. +#ifdef WIZARD diff -urN games/stonesoup.orig/files/patch-rltiles__Makefile games/stonesou= p/files/patch-rltiles__Makefile --- games/stonesoup.orig/files/patch-rltiles__Makefile 2013-09-22 21:36:41.= 809165963 +0200 +++ games/stonesoup/files/patch-rltiles__Makefile 2013-09-22 21:37:48.55316= 4640 +0200 @@ -1,5 +1,5 @@ ---- ./rltiles/Makefile.orig 2012-09-30 23:25:31.000000000 +0200 -+++ ./rltiles/Makefile 2012-10-27 20:49:55.957667879 +0200 +--- ./rltiles/Makefile.orig 2013-06-01 04:52:08.000000000 +0200 ++++ ./rltiles/Makefile 2013-06-18 19:28:17.705226603 +0200 @@ -1,7 +1,7 @@ uname_S :=3D $(shell uname -s) =20 @@ -16,9 +16,9 @@ -CFLAGS :=3D -O2 -g -Wall -Wextra -Wno-parentheses -Wno-unused-parameter +L_CFLAGS :=3D $(CFLAGS) =20 - ifdef TILES - ifndef CONTRIB_SDL -@@ -29,24 +29,24 @@ + ifdef ANDROID + CXXFLAGS :=3D +@@ -35,24 +35,24 @@ PNG_LIB :=3D ../contrib/install/$(ARCH)/lib/libpng.a ../contrib/insta= ll/$(ARCH)/lib/libz.a endif =20 @@ -50,7 +50,7 @@ endif =20 # Attempt to use a full compiler name, to make -@@ -58,7 +58,7 @@ +@@ -64,7 +64,7 @@ ifeq ($(shell which $(LMACH)gcc > /dev/null 2> /dev/null && echo "Yes"),) LMACH :=3D endif @@ -59,7 +59,7 @@ =20 DELETE =3D rm -f =20 -@@ -98,7 +98,7 @@ +@@ -109,7 +109,7 @@ $(QUIET_GEN)$(TILEGEN) -c $< =20 # CFLAGS difference check @@ -68,16 +68,12 @@ =20 .cflags: .force-cflags @FLAGS=3D'$(TRACK_CFLAGS)'; \ -@@ -127,9 +127,13 @@ +@@ -138,9 +138,9 @@ distclean: clean =20 %.o: %.cc .cflags -- $(QUIET_HOSTCXX)$(HOSTCXX) $(CFLAGS) -Wp,-MMD,$*.d,-MT,$@ -c $< -o $@ -+ifdef NO_INLINE_DEPGEN -+ $(QUIET_HOSTCXX)$(HOSTCXX) $(L_CFLAGS) -Wp,-MT,$@ -c $< -o $@ -+else -+ $(QUIET_HOSTCXX)$(HOSTCXX) $(L_CFLAGS) -Wp,-MMD,$*.d,-MT,$@ -c $< -o $@ -+endif +- $(QUIET_HOSTCXX)$(HOSTCXX) $(CFLAGS) -MMD -c $< -o $@ ++ $(QUIET_HOSTCXX)$(HOSTCXX) $(L_CFLAGS) -MMD -c $< -o $@ =20 $(TILEGEN): $(OBJECTS) - $(QUIET_HOSTLINK)$(HOSTCXX) $(OBJECTS) -o $@ $(LDFLAGS) diff -urN games/stonesoup.orig/files/patch-rltiles__tool__tile.cc games/sto= nesoup/files/patch-rltiles__tool__tile.cc --- games/stonesoup.orig/files/patch-rltiles__tool__tile.cc 2013-09-22 21:3= 6:41.809165963 +0200 +++ games/stonesoup/files/patch-rltiles__tool__tile.cc 2013-09-22 21:37:48.= 554163384 +0200 @@ -1,5 +1,5 @@ ---- ./rltiles/tool/tile.cc.orig 2012-09-30 23:25:33.000000000 +0200 -+++ ./rltiles/tool/tile.cc 2012-10-27 20:49:08.845367925 +0200 +--- ./rltiles/tool/tile.cc.orig 2013-06-01 04:52:09.000000000 +0200 ++++ ./rltiles/tool/tile.cc 2013-06-18 19:24:53.005224791 +0200 @@ -125,10 +125,10 @@ if (flags[x + y * m_width]) continue; diff -urN games/stonesoup.orig/files/patch-rltiles__tool__tile_list_process= or.cc games/stonesoup/files/patch-rltiles__tool__tile_list_processor.cc --- games/stonesoup.orig/files/patch-rltiles__tool__tile_list_processor.cc = 2013-09-22 21:36:41.809165963 +0200 +++ games/stonesoup/files/patch-rltiles__tool__tile_list_processor.cc 2013-= 09-22 21:37:48.554163384 +0200 @@ -1,5 +1,5 @@ ---- ./rltiles/tool/tile_list_processor.cc.orig 2012-09-30 23:25:33.0000000= 00 +0200 -+++ ./rltiles/tool/tile_list_processor.cc 2012-10-27 20:49:08.847233795 +0= 200 +--- ./rltiles/tool/tile_list_processor.cc.orig 2013-06-01 04:52:09.0000000= 00 +0200 ++++ ./rltiles/tool/tile_list_processor.cc 2013-06-18 19:24:53.008224181 +0= 200 @@ -51,7 +51,7 @@ "" }; @@ -7,5 +7,5 @@ - if (m_sdir !=3D "" || background && m_back_sdir !=3D "") + if (m_sdir !=3D "" || (background && m_back_sdir !=3D "")) { - std::vector dirs; + vector dirs; if (m_sdir !=3D "") diff -urN games/stonesoup.orig/files/patch-startup.cc games/stonesoup/files= /patch-startup.cc --- games/stonesoup.orig/files/patch-startup.cc 2013-09-22 21:36:41.8091659= 63 +0200 +++ games/stonesoup/files/patch-startup.cc 2013-09-22 21:37:48.555162048 +0= 200 @@ -1,6 +1,6 @@ ---- ./startup.cc.orig 2012-09-30 23:25:33.000000000 +0200 -+++ ./startup.cc 2012-10-27 20:49:08.848667287 +0200 -@@ -234,8 +234,10 @@ +--- ./startup.cc.orig 2013-06-01 04:52:09.000000000 +0200 ++++ ./startup.cc 2013-06-18 19:24:53.009224484 +0200 +@@ -237,8 +237,10 @@ you.wizard =3D true; #endif // Save-less games are pointless except for tests. diff -urN games/stonesoup.orig/pkg-descr games/stonesoup/pkg-descr --- games/stonesoup.orig/pkg-descr 2013-09-22 21:36:41.810162261 +0200 +++ games/stonesoup/pkg-descr 2013-09-22 21:37:48.555162048 +0200 @@ -10,4 +10,4 @@ games/stonesoup - the traditional tty interfaced games/stonesoup-sdl - the fancy SDL interface =20 -WWW: http://crawl.develz.org/ +WWW: http://crawl.develz.org/ diff -urN games/stonesoup.orig/pkg-plist games/stonesoup/pkg-plist --- games/stonesoup.orig/pkg-plist 2013-09-22 21:36:41.809165963 +0200 +++ games/stonesoup/pkg-plist 2013-09-22 21:37:48.556162696 +0200 @@ -1,461 +1,521 @@ bin/stonesoup -%%DATADIR%%/dat/clua/autofight.lua -%%DATADIR%%/dat/clua/gearset.lua -%%DATADIR%%/dat/clua/kills.lua -%%DATADIR%%/dat/clua/runrest.lua -%%DATADIR%%/dat/clua/stash.lua -%%DATADIR%%/dat/clua/trapwalk.lua -%%DATADIR%%/dat/clua/wield.lua -%%DATADIR%%/dat/database/FAQ.txt -%%DATADIR%%/dat/database/el/monflee.txt %%DATADIR%%/dat/database/el/rand_all.txt -%%DATADIR%%/dat/database/godname.txt -%%DATADIR%%/dat/database/godspeak.txt -%%DATADIR%%/dat/database/help.txt +%%DATADIR%%/dat/database/el/monflee.txt %%DATADIR%%/dat/database/insult.txt -%%DATADIR%%/dat/database/miscname.txt +%%DATADIR%%/dat/database/shout.txt +%%DATADIR%%/dat/database/help.txt +%%DATADIR%%/dat/database/godname.txt +%%DATADIR%%/dat/database/wpnnoise.txt +%%DATADIR%%/dat/database/rand_all.txt %%DATADIR%%/dat/database/monflee.txt -%%DATADIR%%/dat/database/monname.txt -%%DATADIR%%/dat/database/monspeak.txt +%%DATADIR%%/dat/database/randname.txt %%DATADIR%%/dat/database/monspell.txt %%DATADIR%%/dat/database/pl/godspeak.txt %%DATADIR%%/dat/database/pl/miscname.txt -%%DATADIR%%/dat/database/rand_all.txt %%DATADIR%%/dat/database/rand_arm.txt -%%DATADIR%%/dat/database/rand_wpn.txt +%%DATADIR%%/dat/database/godspeak.txt %%DATADIR%%/dat/database/randbook.txt -%%DATADIR%%/dat/database/randname.txt -%%DATADIR%%/dat/database/shout.txt -%%DATADIR%%/dat/database/wpnnoise.txt -%%DATADIR%%/dat/defaults/autopickup_exceptions.txt -%%DATADIR%%/dat/defaults/food_colouring.txt -%%DATADIR%%/dat/defaults/menu_colours.txt -%%DATADIR%%/dat/defaults/messages.txt -%%DATADIR%%/dat/defaults/misc.txt -%%DATADIR%%/dat/defaults/runrest_messages.txt -%%DATADIR%%/dat/defaults/standard_colours.txt -%%DATADIR%%/dat/des/altar/altar.des -%%DATADIR%%/dat/des/altar/fedhas_garden.des -%%DATADIR%%/dat/des/altar/grunt_ashenzari_visionary.des -%%DATADIR%%/dat/des/altar/grunt_nemelex_the_gamble.des -%%DATADIR%%/dat/des/altar/kiku_cage.des -%%DATADIR%%/dat/des/altar/lugonu_bribe.des -%%DATADIR%%/dat/des/altar/overflow.des -%%DATADIR%%/dat/des/altar/trog_burn_book.des -%%DATADIR%%/dat/des/altar/trog_wizard.des -%%DATADIR%%/dat/des/altar/vehumet_trees.des -%%DATADIR%%/dat/des/altar/xom_monty_hall.des -%%DATADIR%%/dat/des/altar/yredelemnul_ordeal.des +%%DATADIR%%/dat/database/monspeak.txt +%%DATADIR%%/dat/database/rand_wpn.txt +%%DATADIR%%/dat/database/FAQ.txt +%%DATADIR%%/dat/database/monname.txt +%%DATADIR%%/dat/database/miscname.txt +%%DATADIR%%/dat/dlua/lm_1way.lua +%%DATADIR%%/dat/dlua/dungeon.lua +%%DATADIR%%/dat/dlua/v_debug.lua +%%DATADIR%%/dat/dlua/v_layouts.lua +%%DATADIR%%/dat/dlua/v_paint.lua +%%DATADIR%%/dat/dlua/lm_fog.lua +%%DATADIR%%/dat/dlua/lm_items.lua +%%DATADIR%%/dat/dlua/iter.lua +%%DATADIR%%/dat/dlua/macro.lua +%%DATADIR%%/dat/dlua/tags.lua +%%DATADIR%%/dat/dlua/lm_door.lua +%%DATADIR%%/dat/dlua/lm_mon_prop.lua +%%DATADIR%%/dat/dlua/v_shapes.lua +%%DATADIR%%/dat/dlua/luamark.lua +%%DATADIR%%/dat/dlua/init.lua +%%DATADIR%%/dat/dlua/v_rooms.lua +%%DATADIR%%/dat/dlua/point.lua +%%DATADIR%%/dat/dlua/fnwrap.lua +%%DATADIR%%/dat/dlua/lm_props.lua +%%DATADIR%%/dat/dlua/lm_timed.lua +%%DATADIR%%/dat/dlua/lm_pdesc.lua +%%DATADIR%%/dat/dlua/mapinit.lua +%%DATADIR%%/dat/dlua/test.lua +%%DATADIR%%/dat/dlua/lm_trove.lua +%%DATADIR%%/dat/dlua/sanity.lua +%%DATADIR%%/dat/dlua/util.lua +%%DATADIR%%/dat/dlua/debug.lua +%%DATADIR%%/dat/dlua/lm_trig.lua +%%DATADIR%%/dat/dlua/lm_monst.lua +%%DATADIR%%/dat/dlua/lm_toll.lua +%%DATADIR%%/dat/dlua/ziggurat.lua +%%DATADIR%%/dat/dlua/userbase.lua +%%DATADIR%%/dat/dlua/layout/zonify.lua +%%DATADIR%%/dat/dlua/layout/hyper_rooms.lua +%%DATADIR%%/dat/dlua/layout/hyper_strategy.lua +%%DATADIR%%/dat/dlua/layout/hyper_paint.lua +%%DATADIR%%/dat/dlua/layout/hyper_debug.lua +%%DATADIR%%/dat/dlua/layout/procedural.lua +%%DATADIR%%/dat/dlua/layout/hyper_place.lua +%%DATADIR%%/dat/dlua/layout/vector.lua +%%DATADIR%%/dat/dlua/layout/hyper_usage.lua +%%DATADIR%%/dat/dlua/layout/hyper_city.lua +%%DATADIR%%/dat/dlua/layout/hyper_shapes.lua +%%DATADIR%%/dat/dlua/layout/hyper.lua +%%DATADIR%%/dat/dlua/layout/hyper_decor.lua +%%DATADIR%%/dat/dlua/layout/hyper_fort.lua +%%DATADIR%%/dat/dlua/tutorial.lua +%%DATADIR%%/dat/dlua/lm_mslav.lua +%%DATADIR%%/dat/dlua/sprint.lua +%%DATADIR%%/dat/dlua/lm_tmsg.lua +%%DATADIR%%/dat/dlua/stress.lua +%%DATADIR%%/dat/dlua/loadmaps.lua +%%DATADIR%%/dat/clua/kills.lua +%%DATADIR%%/dat/clua/wield.lua +%%DATADIR%%/dat/clua/runrest.lua +%%DATADIR%%/dat/clua/autofight.lua +%%DATADIR%%/dat/clua/stash.lua +%%DATADIR%%/dat/clua/trapwalk.lua +%%DATADIR%%/dat/clua/gearset.lua +%%DATADIR%%/dat/des/tutorial/lesson1.des +%%DATADIR%%/dat/des/tutorial/lesson3.des +%%DATADIR%%/dat/des/tutorial/lesson4.des +%%DATADIR%%/dat/des/tutorial/lesson5.des +%%DATADIR%%/dat/des/tutorial/lesson2.des +%%DATADIR%%/dat/des/guide.txt +%%DATADIR%%/dat/des/entry/entry_guide.txt +%%DATADIR%%/dat/des/entry/twisted.des +%%DATADIR%%/dat/des/entry/simple.des +%%DATADIR%%/dat/des/entry/small.des +%%DATADIR%%/dat/des/entry/large.des +%%DATADIR%%/dat/des/portals/lab.des +%%DATADIR%%/dat/des/portals/ziggurat.des +%%DATADIR%%/dat/des/portals/wizlab.des +%%DATADIR%%/dat/des/portals/trove.des +%%DATADIR%%/dat/des/portals/bazaar.des +%%DATADIR%%/dat/des/portals/volcano.des +%%DATADIR%%/dat/des/portals/icecave.des +%%DATADIR%%/dat/des/portals/bailey.des +%%DATADIR%%/dat/des/portals/sewer.des +%%DATADIR%%/dat/des/portals/ossuary.des +%%DATADIR%%/dat/des/variable/mini_features.des +%%DATADIR%%/dat/des/variable/ambush.des +%%DATADIR%%/dat/des/variable/mini.des +%%DATADIR%%/dat/des/variable/grated_community.des +%%DATADIR%%/dat/des/variable/ancient_champions.des +%%DATADIR%%/dat/des/variable/lemuel_castle.des +%%DATADIR%%/dat/des/variable/large_themed.des +%%DATADIR%%/dat/des/variable/compat.des +%%DATADIR%%/dat/des/variable/tomb_raider.des +%%DATADIR%%/dat/des/variable/float.des +%%DATADIR%%/dat/des/variable/mini_monsters.des +%%DATADIR%%/dat/des/variable/geyser.des +%%DATADIR%%/dat/des/variable/cathedral_bats.des +%%DATADIR%%/dat/des/variable/dk_crumbling.des +%%DATADIR%%/dat/des/variable/large_abstract.des +%%DATADIR%%/dat/des/variable/okawaru_arena.des +%%DATADIR%%/dat/des/variable/encompass.des %%DATADIR%%/dat/des/branches/abyss.des -%%DATADIR%%/dat/des/branches/blade.des -%%DATADIR%%/dat/des/branches/crypt.des -%%DATADIR%%/dat/des/branches/dwarf.des +%%DATADIR%%/dat/des/branches/shoals.des %%DATADIR%%/dat/des/branches/elf.des +%%DATADIR%%/dat/des/branches/pan.des %%DATADIR%%/dat/des/branches/hells.des +%%DATADIR%%/dat/des/branches/vaults_rooms_standard.des +%%DATADIR%%/dat/des/branches/temple.des +%%DATADIR%%/dat/des/branches/dwarf.des +%%DATADIR%%/dat/des/branches/blade.des +%%DATADIR%%/dat/des/branches/zot.des +%%DATADIR%%/dat/des/branches/vaults_rooms_empty.des %%DATADIR%%/dat/des/branches/lair.des -%%DATADIR%%/dat/des/branches/orc.des -%%DATADIR%%/dat/des/branches/pan.des -%%DATADIR%%/dat/des/branches/shoals.des -%%DATADIR%%/dat/des/branches/slime.des %%DATADIR%%/dat/des/branches/snake.des -%%DATADIR%%/dat/des/branches/spider.des -%%DATADIR%%/dat/des/branches/swamp.des -%%DATADIR%%/dat/des/branches/temple.des +%%DATADIR%%/dat/des/branches/vaults_rooms_hard.des %%DATADIR%%/dat/des/branches/tomb.des +%%DATADIR%%/dat/des/branches/swamp.des %%DATADIR%%/dat/des/branches/vaults.des -%%DATADIR%%/dat/des/branches/zot.des +%%DATADIR%%/dat/des/branches/crypt.des +%%DATADIR%%/dat/des/branches/orc.des +%%DATADIR%%/dat/des/branches/spider.des +%%DATADIR%%/dat/des/branches/slime.des +%%DATADIR%%/dat/des/sprint/menkaure.des +%%DATADIR%%/dat/des/sprint/sprint_mu.des +%%DATADIR%%/dat/des/sprint/zigsprint.des +%%DATADIR%%/dat/des/sprint/pitsprint.des +%%DATADIR%%/dat/des/sprint/meat.des +%%DATADIR%%/dat/des/sprint/fedhas.des +%%DATADIR%%/dat/des/sprint/red_sonja.des +%%DATADIR%%/dat/des/sprint/arena_sprint.des +%%DATADIR%%/dat/des/zotdef/zotdef.des +%%DATADIR%%/dat/des/traps/xom_trap.des +%%DATADIR%%/dat/des/traps/boulders.des +%%DATADIR%%/dat/des/traps/monster_doors.des +%%DATADIR%%/dat/des/traps/grate.des +%%DATADIR%%/dat/des/traps/spider_basket.des +%%DATADIR%%/dat/des/traps/collapsing_statue.des +%%DATADIR%%/dat/des/traps/beogh_trap.des +%%DATADIR%%/dat/des/traps/rats_trap.des +%%DATADIR%%/dat/des/traps/cloud_traps.des +%%DATADIR%%/dat/des/test.des +%%DATADIR%%/dat/des/altar/xom_monty_hall.des +%%DATADIR%%/dat/des/altar/vehumet_trees.des +%%DATADIR%%/dat/des/altar/yredelemnul_ordeal.des +%%DATADIR%%/dat/des/altar/lugonu_bribe.des +%%DATADIR%%/dat/des/altar/kiku_cage.des +%%DATADIR%%/dat/des/altar/fedhas_garden.des +%%DATADIR%%/dat/des/altar/trog_burn_book.des +%%DATADIR%%/dat/des/altar/ashenzari_visionary.des +%%DATADIR%%/dat/des/altar/overflow.des +%%DATADIR%%/dat/des/altar/nemelex_the_gamble.des +%%DATADIR%%/dat/des/altar/trog_wizard.des +%%DATADIR%%/dat/des/altar/altar.des +%%DATADIR%%/dat/des/builder/rooms.des %%DATADIR%%/dat/des/builder/arena.des %%DATADIR%%/dat/des/builder/dummy.des -%%DATADIR%%/dat/des/builder/food.des +%%DATADIR%%/dat/des/builder/layout_vaults.des %%DATADIR%%/dat/des/builder/layout.des %%DATADIR%%/dat/des/builder/layout_loops.des -%%DATADIR%%/dat/des/builder/rooms.des +%%DATADIR%%/dat/des/builder/layout_pools.des +%%DATADIR%%/dat/des/builder/food.des %%DATADIR%%/dat/des/builder/shops.des +%%DATADIR%%/dat/des/builder/layout_caves.des %%DATADIR%%/dat/des/builder/uniques.des -%%DATADIR%%/dat/des/entry/entry_guide.txt -%%DATADIR%%/dat/des/entry/large.des -%%DATADIR%%/dat/des/entry/simple.des -%%DATADIR%%/dat/des/entry/small.des -%%DATADIR%%/dat/des/entry/twisted.des -%%DATADIR%%/dat/des/guide.txt -%%DATADIR%%/dat/des/portals/bailey.des -%%DATADIR%%/dat/des/portals/bazaar.des -%%DATADIR%%/dat/des/portals/icecave.des -%%DATADIR%%/dat/des/portals/lab.des -%%DATADIR%%/dat/des/portals/ossuary.des -%%DATADIR%%/dat/des/portals/sewer.des -%%DATADIR%%/dat/des/portals/trove.des -%%DATADIR%%/dat/des/portals/volcano.des -%%DATADIR%%/dat/des/portals/wizlab.des -%%DATADIR%%/dat/des/portals/ziggurat.des -%%DATADIR%%/dat/des/serial/aquarium.des -%%DATADIR%%/dat/des/serial/bayou.des %%DATADIR%%/dat/des/serial/column_ruins.des -%%DATADIR%%/dat/des/serial/corridors.des +%%DATADIR%%/dat/des/serial/undead.des +%%DATADIR%%/dat/des/serial/magic_research.des %%DATADIR%%/dat/des/serial/curves.des %%DATADIR%%/dat/des/serial/forest.des %%DATADIR%%/dat/des/serial/glass.des -%%DATADIR%%/dat/des/serial/gnoll_camp.des +%%DATADIR%%/dat/des/serial/window.des %%DATADIR%%/dat/des/serial/ice.des -%%DATADIR%%/dat/des/serial/magic_research.des -%%DATADIR%%/dat/des/serial/ponds.des +%%DATADIR%%/dat/des/serial/rogues_gallery.des +%%DATADIR%%/dat/des/serial/corridors.des +%%DATADIR%%/dat/des/serial/bayou.des +%%DATADIR%%/dat/des/serial/teleporters.des +%%DATADIR%%/dat/des/serial/gnoll_camp.des %%DATADIR%%/dat/des/serial/serial_guide.txt -%%DATADIR%%/dat/des/serial/undead.des -%%DATADIR%%/dat/des/serial/window.des -%%DATADIR%%/dat/des/sprint/menkaure.des -%%DATADIR%%/dat/des/sprint/red_sonja.des -%%DATADIR%%/dat/des/sprint/sprint_fedhas.des -%%DATADIR%%/dat/des/sprint/sprint_mu.des -%%DATADIR%%/dat/des/sprint/zigsprint.des -%%DATADIR%%/dat/des/test.des -%%DATADIR%%/dat/des/traps/beogh_trap.des -%%DATADIR%%/dat/des/traps/boulders.des -%%DATADIR%%/dat/des/traps/cloud_traps.des -%%DATADIR%%/dat/des/traps/collapsing_statue.des -%%DATADIR%%/dat/des/traps/grate.des -%%DATADIR%%/dat/des/traps/monster_doors.des -%%DATADIR%%/dat/des/traps/rats_trap.des -%%DATADIR%%/dat/des/traps/spider_basket.des -%%DATADIR%%/dat/des/traps/xom_trap.des -%%DATADIR%%/dat/des/tutorial/tutorial_lesson1.des -%%DATADIR%%/dat/des/tutorial/tutorial_lesson2.des -%%DATADIR%%/dat/des/tutorial/tutorial_lesson3.des -%%DATADIR%%/dat/des/tutorial/tutorial_lesson4.des -%%DATADIR%%/dat/des/tutorial/tutorial_lesson5.des -%%DATADIR%%/dat/des/variable/ancient_champions.des -%%DATADIR%%/dat/des/variable/cathedral_bats.des -%%DATADIR%%/dat/des/variable/dk_crumbling.des -%%DATADIR%%/dat/des/variable/encompass.des -%%DATADIR%%/dat/des/variable/evilmike_ambush.des -%%DATADIR%%/dat/des/variable/float.des -%%DATADIR%%/dat/des/variable/grunt_fire_pits.des -%%DATADIR%%/dat/des/variable/large_abstract.des -%%DATADIR%%/dat/des/variable/large_themed.des -%%DATADIR%%/dat/des/variable/lemuel_castle.des -%%DATADIR%%/dat/des/variable/mini.des -%%DATADIR%%/dat/des/variable/mini_features.des -%%DATADIR%%/dat/des/variable/mini_monsters.des -%%DATADIR%%/dat/des/variable/tomb_raider.des -%%DATADIR%%/dat/des/zotdef/zotdef.des -%%DATADIR%%/dat/descript/ability.txt -%%DATADIR%%/dat/descript/backgrounds.txt -%%DATADIR%%/dat/descript/branches.txt -%%DATADIR%%/dat/descript/cards.txt -%%DATADIR%%/dat/descript/commands.txt -%%DATADIR%%/dat/descript/cs/ability.txt -%%DATADIR%%/dat/descript/cs/branches.txt -%%DATADIR%%/dat/descript/cs/commands.txt -%%DATADIR%%/dat/descript/cs/features.txt -%%DATADIR%%/dat/descript/cs/gods.txt -%%DATADIR%%/dat/descript/cs/items.txt -%%DATADIR%%/dat/descript/cs/species.txt -%%DATADIR%%/dat/descript/cs/spells.txt -%%DATADIR%%/dat/descript/cs/unident.txt -%%DATADIR%%/dat/descript/da/items.txt -%%DATADIR%%/dat/descript/da/monsters.txt -%%DATADIR%%/dat/descript/da/species.txt -%%DATADIR%%/dat/descript/da/unident.txt -%%DATADIR%%/dat/descript/de/backgrounds.txt -%%DATADIR%%/dat/descript/de/commands.txt -%%DATADIR%%/dat/descript/de/features.txt -%%DATADIR%%/dat/descript/de/gods.txt -%%DATADIR%%/dat/descript/de/items.txt -%%DATADIR%%/dat/descript/de/monsters.txt -%%DATADIR%%/dat/descript/de/species.txt -%%DATADIR%%/dat/descript/de/unident.txt -%%DATADIR%%/dat/descript/de/unrand.txt -%%DATADIR%%/dat/descript/el/ability.txt -%%DATADIR%%/dat/descript/el/backgrounds.txt -%%DATADIR%%/dat/descript/el/gods.txt -%%DATADIR%%/dat/descript/el/items.txt -%%DATADIR%%/dat/descript/el/species.txt -%%DATADIR%%/dat/descript/el/unident.txt +%%DATADIR%%/dat/des/serial/aquarium.des +%%DATADIR%%/dat/des/serial/sigils.des +%%DATADIR%%/dat/des/serial/ponds.des +%%DATADIR%%/dat/defaults/standard_colours.txt +%%DATADIR%%/dat/defaults/menu_colours.txt +%%DATADIR%%/dat/defaults/food_colouring.txt +%%DATADIR%%/dat/defaults/autopickup_exceptions.txt +%%DATADIR%%/dat/defaults/misc.txt +%%DATADIR%%/dat/defaults/runrest_messages.txt +%%DATADIR%%/dat/defaults/messages.txt +%%DATADIR%%/dat/descript/spells.txt +%%DATADIR%%/dat/descript/features.txt +%%DATADIR%%/dat/descript/hu/species.txt +%%DATADIR%%/dat/descript/es/branches.txt %%DATADIR%%/dat/descript/es/ability.txt +%%DATADIR%%/dat/descript/es/items.txt +%%DATADIR%%/dat/descript/es/unrand.txt +%%DATADIR%%/dat/descript/es/features.txt +%%DATADIR%%/dat/descript/es/unident.txt +%%DATADIR%%/dat/descript/es/species.txt %%DATADIR%%/dat/descript/es/backgrounds.txt -%%DATADIR%%/dat/descript/es/branches.txt -%%DATADIR%%/dat/descript/es/cards.txt %%DATADIR%%/dat/descript/es/commands.txt -%%DATADIR%%/dat/descript/es/features.txt -%%DATADIR%%/dat/descript/es/gods.txt -%%DATADIR%%/dat/descript/es/items.txt %%DATADIR%%/dat/descript/es/monsters.txt -%%DATADIR%%/dat/descript/es/quotes.txt %%DATADIR%%/dat/descript/es/skills.txt -%%DATADIR%%/dat/descript/es/species.txt -%%DATADIR%%/dat/descript/es/unident.txt -%%DATADIR%%/dat/descript/es/unrand.txt -%%DATADIR%%/dat/descript/features.txt -%%DATADIR%%/dat/descript/fi/ability.txt -%%DATADIR%%/dat/descript/fi/backgrounds.txt -%%DATADIR%%/dat/descript/fi/cards.txt -%%DATADIR%%/dat/descript/fi/commands.txt -%%DATADIR%%/dat/descript/fi/features.txt -%%DATADIR%%/dat/descript/fi/items.txt -%%DATADIR%%/dat/descript/fi/monsters.txt -%%DATADIR%%/dat/descript/fi/quotes.txt -%%DATADIR%%/dat/descript/fi/species.txt -%%DATADIR%%/dat/descript/fi/spells.txt -%%DATADIR%%/dat/descript/fi/unident.txt -%%DATADIR%%/dat/descript/fi/unrand.txt -%%DATADIR%%/dat/descript/fr/ability.txt +%%DATADIR%%/dat/descript/es/cards.txt +%%DATADIR%%/dat/descript/es/gods.txt +%%DATADIR%%/dat/descript/pl/skills.txt +%%DATADIR%%/dat/descript/pl/spells.txt +%%DATADIR%%/dat/descript/pl/monsters.txt +%%DATADIR%%/dat/descript/pl/tutorial.txt +%%DATADIR%%/dat/descript/pl/unrand.txt +%%DATADIR%%/dat/descript/pl/backgrounds.txt +%%DATADIR%%/dat/descript/pl/species.txt +%%DATADIR%%/dat/descript/pl/unident.txt +%%DATADIR%%/dat/descript/pl/items.txt +%%DATADIR%%/dat/descript/pl/features.txt +%%DATADIR%%/dat/descript/lt/branches.txt +%%DATADIR%%/dat/descript/lt/skills.txt +%%DATADIR%%/dat/descript/lt/commands.txt +%%DATADIR%%/dat/descript/lt/monsters.txt +%%DATADIR%%/dat/descript/lt/backgrounds.txt +%%DATADIR%%/dat/descript/lt/species.txt +%%DATADIR%%/dat/descript/lt/unident.txt +%%DATADIR%%/dat/descript/branches.txt +%%DATADIR%%/dat/descript/cards.txt +%%DATADIR%%/dat/descript/tutorial.txt +%%DATADIR%%/dat/descript/cs/gods.txt +%%DATADIR%%/dat/descript/cs/unrand.txt +%%DATADIR%%/dat/descript/cs/commands.txt +%%DATADIR%%/dat/descript/cs/unident.txt +%%DATADIR%%/dat/descript/cs/species.txt +%%DATADIR%%/dat/descript/cs/branches.txt +%%DATADIR%%/dat/descript/cs/tutorial.txt +%%DATADIR%%/dat/descript/cs/items.txt +%%DATADIR%%/dat/descript/cs/hints.txt +%%DATADIR%%/dat/descript/cs/ability.txt +%%DATADIR%%/dat/descript/cs/spells.txt +%%DATADIR%%/dat/descript/cs/features.txt +%%DATADIR%%/dat/descript/species.txt +%%DATADIR%%/dat/descript/unident.txt +%%DATADIR%%/dat/descript/backgrounds.txt +%%DATADIR%%/dat/descript/gods.txt +%%DATADIR%%/dat/descript/fr/tutorial.txt %%DATADIR%%/dat/descript/fr/backgrounds.txt %%DATADIR%%/dat/descript/fr/branches.txt -%%DATADIR%%/dat/descript/fr/cards.txt -%%DATADIR%%/dat/descript/fr/commands.txt -%%DATADIR%%/dat/descript/fr/features.txt -%%DATADIR%%/dat/descript/fr/gods.txt +%%DATADIR%%/dat/descript/fr/ability.txt %%DATADIR%%/dat/descript/fr/items.txt -%%DATADIR%%/dat/descript/fr/monsters.txt -%%DATADIR%%/dat/descript/fr/quotes.txt -%%DATADIR%%/dat/descript/fr/skills.txt +%%DATADIR%%/dat/descript/fr/unrand.txt +%%DATADIR%%/dat/descript/fr/features.txt +%%DATADIR%%/dat/descript/fr/hints.txt %%DATADIR%%/dat/descript/fr/species.txt -%%DATADIR%%/dat/descript/fr/spells.txt %%DATADIR%%/dat/descript/fr/unident.txt -%%DATADIR%%/dat/descript/fr/unrand.txt -%%DATADIR%%/dat/descript/gods.txt -%%DATADIR%%/dat/descript/hints.txt -%%DATADIR%%/dat/descript/hu/species.txt -%%DATADIR%%/dat/descript/it/backgrounds.txt -%%DATADIR%%/dat/descript/it/gods.txt -%%DATADIR%%/dat/descript/it/skills.txt -%%DATADIR%%/dat/descript/it/species.txt +%%DATADIR%%/dat/descript/fr/cards.txt +%%DATADIR%%/dat/descript/fr/spells.txt +%%DATADIR%%/dat/descript/fr/commands.txt +%%DATADIR%%/dat/descript/fr/skills.txt +%%DATADIR%%/dat/descript/fr/monsters.txt +%%DATADIR%%/dat/descript/fr/gods.txt +%%DATADIR%%/dat/descript/skills.txt %%DATADIR%%/dat/descript/items.txt -%%DATADIR%%/dat/descript/ko/ability.txt -%%DATADIR%%/dat/descript/ko/backgrounds.txt -%%DATADIR%%/dat/descript/ko/branches.txt -%%DATADIR%%/dat/descript/ko/cards.txt -%%DATADIR%%/dat/descript/ko/commands.txt -%%DATADIR%%/dat/descript/ko/features.txt -%%DATADIR%%/dat/descript/ko/gods.txt -%%DATADIR%%/dat/descript/ko/items.txt -%%DATADIR%%/dat/descript/ko/monsters.txt -%%DATADIR%%/dat/descript/ko/quotes.txt -%%DATADIR%%/dat/descript/ko/skills.txt -%%DATADIR%%/dat/descript/ko/species.txt -%%DATADIR%%/dat/descript/ko/spells.txt -%%DATADIR%%/dat/descript/ko/unident.txt -%%DATADIR%%/dat/descript/ko/unrand.txt -%%DATADIR%%/dat/descript/lt/backgrounds.txt -%%DATADIR%%/dat/descript/lt/branches.txt -%%DATADIR%%/dat/descript/lt/commands.txt -%%DATADIR%%/dat/descript/lt/monsters.txt -%%DATADIR%%/dat/descript/lt/skills.txt -%%DATADIR%%/dat/descript/lt/species.txt -%%DATADIR%%/dat/descript/lt/unident.txt -%%DATADIR%%/dat/descript/lv/backgrounds.txt -%%DATADIR%%/dat/descript/lv/cards.txt -%%DATADIR%%/dat/descript/lv/commands.txt -%%DATADIR%%/dat/descript/lv/gods.txt -%%DATADIR%%/dat/descript/lv/items.txt +%%DATADIR%%/dat/descript/monsters.txt +%%DATADIR%%/dat/descript/el/items.txt +%%DATADIR%%/dat/descript/el/ability.txt +%%DATADIR%%/dat/descript/el/backgrounds.txt +%%DATADIR%%/dat/descript/el/species.txt +%%DATADIR%%/dat/descript/el/unident.txt +%%DATADIR%%/dat/descript/el/gods.txt +%%DATADIR%%/dat/descript/commands.txt +%%DATADIR%%/dat/descript/ja/monsters.txt +%%DATADIR%%/dat/descript/ja/unrand.txt +%%DATADIR%%/dat/descript/ja/species.txt +%%DATADIR%%/dat/descript/ja/backgrounds.txt +%%DATADIR%%/dat/descript/ja/branches.txt +%%DATADIR%%/dat/descript/ja/gods.txt +%%DATADIR%%/dat/descript/ja/items.txt +%%DATADIR%%/dat/descript/ja/spells.txt +%%DATADIR%%/dat/descript/de/species.txt +%%DATADIR%%/dat/descript/de/unident.txt +%%DATADIR%%/dat/descript/de/hints.txt +%%DATADIR%%/dat/descript/de/commands.txt +%%DATADIR%%/dat/descript/de/monsters.txt +%%DATADIR%%/dat/descript/de/unrand.txt +%%DATADIR%%/dat/descript/de/items.txt +%%DATADIR%%/dat/descript/de/ability.txt +%%DATADIR%%/dat/descript/de/skills.txt +%%DATADIR%%/dat/descript/de/gods.txt +%%DATADIR%%/dat/descript/de/features.txt +%%DATADIR%%/dat/descript/de/branches.txt +%%DATADIR%%/dat/descript/de/tutorial.txt +%%DATADIR%%/dat/descript/de/backgrounds.txt +%%DATADIR%%/dat/descript/de/cards.txt +%%DATADIR%%/dat/descript/ru/monsters.txt +%%DATADIR%%/dat/descript/ru/commands.txt +%%DATADIR%%/dat/descript/ru/spells.txt +%%DATADIR%%/dat/descript/ru/ability.txt +%%DATADIR%%/dat/descript/ru/hints.txt +%%DATADIR%%/dat/descript/ru/gods.txt +%%DATADIR%%/dat/descript/ru/skills.txt +%%DATADIR%%/dat/descript/ru/items.txt +%%DATADIR%%/dat/descript/ru/backgrounds.txt +%%DATADIR%%/dat/descript/ru/features.txt +%%DATADIR%%/dat/descript/ru/cards.txt +%%DATADIR%%/dat/descript/ru/species.txt +%%DATADIR%%/dat/descript/ru/unident.txt +%%DATADIR%%/dat/descript/ru/branches.txt +%%DATADIR%%/dat/descript/ru/tutorial.txt +%%DATADIR%%/dat/descript/ru/unrand.txt %%DATADIR%%/dat/descript/lv/monsters.txt +%%DATADIR%%/dat/descript/lv/gods.txt +%%DATADIR%%/dat/descript/lv/commands.txt %%DATADIR%%/dat/descript/lv/skills.txt %%DATADIR%%/dat/descript/lv/spells.txt +%%DATADIR%%/dat/descript/lv/hints.txt +%%DATADIR%%/dat/descript/lv/items.txt +%%DATADIR%%/dat/descript/lv/ability.txt +%%DATADIR%%/dat/descript/lv/features.txt +%%DATADIR%%/dat/descript/lv/cards.txt %%DATADIR%%/dat/descript/lv/unrand.txt -%%DATADIR%%/dat/descript/monsters.txt -%%DATADIR%%/dat/descript/pl/backgrounds.txt -%%DATADIR%%/dat/descript/pl/items.txt -%%DATADIR%%/dat/descript/pl/quotes.txt -%%DATADIR%%/dat/descript/pl/species.txt -%%DATADIR%%/dat/descript/pl/spells.txt -%%DATADIR%%/dat/descript/pl/tutorial.txt -%%DATADIR%%/dat/descript/pl/unident.txt -%%DATADIR%%/dat/descript/pl/unrand.txt -%%DATADIR%%/dat/descript/pt/commands.txt +%%DATADIR%%/dat/descript/lv/tutorial.txt +%%DATADIR%%/dat/descript/lv/backgrounds.txt +%%DATADIR%%/dat/descript/ko/gods.txt +%%DATADIR%%/dat/descript/ko/unrand.txt +%%DATADIR%%/dat/descript/ko/backgrounds.txt +%%DATADIR%%/dat/descript/ko/monsters.txt +%%DATADIR%%/dat/descript/ko/species.txt +%%DATADIR%%/dat/descript/ko/commands.txt +%%DATADIR%%/dat/descript/ko/unident.txt +%%DATADIR%%/dat/descript/ko/cards.txt +%%DATADIR%%/dat/descript/ko/hints.txt +%%DATADIR%%/dat/descript/ko/features.txt +%%DATADIR%%/dat/descript/ko/skills.txt +%%DATADIR%%/dat/descript/ko/items.txt +%%DATADIR%%/dat/descript/ko/ability.txt +%%DATADIR%%/dat/descript/ko/spells.txt +%%DATADIR%%/dat/descript/ko/tutorial.txt +%%DATADIR%%/dat/descript/ko/branches.txt %%DATADIR%%/dat/descript/pt/gods.txt -%%DATADIR%%/dat/descript/pt/items.txt %%DATADIR%%/dat/descript/pt/unident.txt -%%DATADIR%%/dat/descript/quotes.txt -%%DATADIR%%/dat/descript/ru/ability.txt -%%DATADIR%%/dat/descript/ru/backgrounds.txt -%%DATADIR%%/dat/descript/ru/branches.txt -%%DATADIR%%/dat/descript/ru/cards.txt -%%DATADIR%%/dat/descript/ru/commands.txt -%%DATADIR%%/dat/descript/ru/features.txt -%%DATADIR%%/dat/descript/ru/gods.txt -%%DATADIR%%/dat/descript/ru/items.txt -%%DATADIR%%/dat/descript/ru/monsters.txt -%%DATADIR%%/dat/descript/ru/quotes.txt -%%DATADIR%%/dat/descript/ru/skills.txt -%%DATADIR%%/dat/descript/ru/species.txt -%%DATADIR%%/dat/descript/ru/unident.txt -%%DATADIR%%/dat/descript/ru/unrand.txt -%%DATADIR%%/dat/descript/skills.txt -%%DATADIR%%/dat/descript/species.txt -%%DATADIR%%/dat/descript/spells.txt -%%DATADIR%%/dat/descript/tutorial.txt -%%DATADIR%%/dat/descript/unident.txt +%%DATADIR%%/dat/descript/pt/ability.txt +%%DATADIR%%/dat/descript/pt/items.txt +%%DATADIR%%/dat/descript/pt/commands.txt +%%DATADIR%%/dat/descript/hints.txt +%%DATADIR%%/dat/descript/fi/features.txt +%%DATADIR%%/dat/descript/fi/ability.txt +%%DATADIR%%/dat/descript/fi/unrand.txt +%%DATADIR%%/dat/descript/fi/backgrounds.txt +%%DATADIR%%/dat/descript/fi/items.txt +%%DATADIR%%/dat/descript/fi/species.txt +%%DATADIR%%/dat/descript/fi/unident.txt +%%DATADIR%%/dat/descript/fi/monsters.txt +%%DATADIR%%/dat/descript/fi/cards.txt +%%DATADIR%%/dat/descript/fi/commands.txt +%%DATADIR%%/dat/descript/fi/spells.txt +%%DATADIR%%/dat/descript/it/skills.txt +%%DATADIR%%/dat/descript/it/backgrounds.txt +%%DATADIR%%/dat/descript/it/gods.txt +%%DATADIR%%/dat/descript/it/species.txt +%%DATADIR%%/dat/descript/ability.txt +%%DATADIR%%/dat/descript/da/monsters.txt +%%DATADIR%%/dat/descript/da/skills.txt +%%DATADIR%%/dat/descript/da/species.txt +%%DATADIR%%/dat/descript/da/unident.txt +%%DATADIR%%/dat/descript/da/items.txt %%DATADIR%%/dat/descript/unrand.txt +%%DATADIR%%/dat/descript/tr/gods.txt +%%DATADIR%%/dat/descript/tr/tutorial.txt +%%DATADIR%%/dat/descript/tr/ability.txt +%%DATADIR%%/dat/descript/tr/unrand.txt +%%DATADIR%%/dat/descript/tr/items.txt +%%DATADIR%%/dat/descript/zh/gods.txt %%DATADIR%%/dat/descript/zh/ability.txt -%%DATADIR%%/dat/descript/zh/backgrounds.txt -%%DATADIR%%/dat/descript/zh/branches.txt +%%DATADIR%%/dat/descript/zh/monsters.txt %%DATADIR%%/dat/descript/zh/cards.txt +%%DATADIR%%/dat/descript/zh/backgrounds.txt +%%DATADIR%%/dat/descript/zh/unrand.txt %%DATADIR%%/dat/descript/zh/commands.txt -%%DATADIR%%/dat/descript/zh/features.txt -%%DATADIR%%/dat/descript/zh/gods.txt %%DATADIR%%/dat/descript/zh/items.txt -%%DATADIR%%/dat/descript/zh/monsters.txt -%%DATADIR%%/dat/descript/zh/skills.txt +%%DATADIR%%/dat/descript/zh/branches.txt %%DATADIR%%/dat/descript/zh/species.txt %%DATADIR%%/dat/descript/zh/unident.txt -%%DATADIR%%/dat/dlua/debug.lua -%%DATADIR%%/dat/dlua/dungeon.lua -%%DATADIR%%/dat/dlua/fnwrap.lua -%%DATADIR%%/dat/dlua/init.lua -%%DATADIR%%/dat/dlua/iter.lua -%%DATADIR%%/dat/dlua/lm_1way.lua -%%DATADIR%%/dat/dlua/lm_door.lua -%%DATADIR%%/dat/dlua/lm_flags.lua -%%DATADIR%%/dat/dlua/lm_fog.lua -%%DATADIR%%/dat/dlua/lm_items.lua -%%DATADIR%%/dat/dlua/lm_mon_prop.lua -%%DATADIR%%/dat/dlua/lm_monst.lua -%%DATADIR%%/dat/dlua/lm_mslav.lua -%%DATADIR%%/dat/dlua/lm_pdesc.lua -%%DATADIR%%/dat/dlua/lm_props.lua -%%DATADIR%%/dat/dlua/lm_timed.lua -%%DATADIR%%/dat/dlua/lm_tmsg.lua -%%DATADIR%%/dat/dlua/lm_toll.lua -%%DATADIR%%/dat/dlua/lm_trig.lua -%%DATADIR%%/dat/dlua/lm_trove.lua -%%DATADIR%%/dat/dlua/loadmaps.lua -%%DATADIR%%/dat/dlua/luamark.lua -%%DATADIR%%/dat/dlua/macro.lua -%%DATADIR%%/dat/dlua/mapinit.lua -%%DATADIR%%/dat/dlua/point.lua -%%DATADIR%%/dat/dlua/sanity.lua -%%DATADIR%%/dat/dlua/sprint.lua -%%DATADIR%%/dat/dlua/stress.lua -%%DATADIR%%/dat/dlua/tags.lua -%%DATADIR%%/dat/dlua/test.lua -%%DATADIR%%/dat/dlua/tutorial.lua -%%DATADIR%%/dat/dlua/userbase.lua -%%DATADIR%%/dat/dlua/util.lua -%%DATADIR%%/dat/dlua/ziggurat.lua -%%DATADIR%%/dat/lua/autofight.lua -%%DATADIR%%/dat/lua/gearset.lua -%%DATADIR%%/dat/lua/kills.lua -%%DATADIR%%/dat/lua/runrest.lua -%%DATADIR%%/dat/lua/stash.lua -%%DATADIR%%/dat/lua/trapwalk.lua -%%DATADIR%%/dat/lua/wield.lua -%%DATADIR%%/docs/CREDITS.txt -%%DATADIR%%/docs/aptitudes.txt -%%DATADIR%%/docs/arena.txt -%%DATADIR%%/docs/changelog.txt -%%DATADIR%%/docs/crawl_manual.txt -%%DATADIR%%/docs/develop/IRC.txt -%%DATADIR%%/docs/develop/coding_conventions.txt -%%DATADIR%%/docs/develop/gdb_tips.txt -%%DATADIR%%/docs/develop/levels/advanced.txt -%%DATADIR%%/docs/develop/levels/introduction.txt -%%DATADIR%%/docs/develop/levels/syntax.txt -%%DATADIR%%/docs/develop/levels/triggerables.txt -%%DATADIR%%/docs/develop/monster_speech.txt -%%DATADIR%%/docs/develop/new_dev_checklist.txt -%%DATADIR%%/docs/develop/patch_guide.txt -%%DATADIR%%/docs/develop/process.txt -%%DATADIR%%/docs/develop/release.txt -%%DATADIR%%/docs/develop/save_compatibility.txt -%%DATADIR%%/docs/develop/spells.txt -%%DATADIR%%/docs/develop/testing.txt -%%DATADIR%%/docs/develop/tiles_creation.txt -%%DATADIR%%/docs/fight_simulator.txt +%%DATADIR%%/dat/descript/zh/tutorial.txt +%%DATADIR%%/dat/descript/zh/hints.txt +%%DATADIR%%/dat/descript/zh/spells.txt +%%DATADIR%%/dat/descript/zh/skills.txt +%%DATADIR%%/dat/descript/zh/features.txt +%%DATADIR%%/docs/macros_guide.txt %%DATADIR%%/docs/key_changes.txt -%%DATADIR%%/docs/keybind.txt -%%DATADIR%%/docs/license/lgpl.txt -%%DATADIR%%/docs/license/libpng-LICENSE.txt +%%DATADIR%%/docs/quickstart.txt +%%DATADIR%%/docs/arena.txt %%DATADIR%%/docs/license/lualicense.txt +%%DATADIR%%/docs/license/worley.txt +%%DATADIR%%/docs/license/libpng-LICENSE.txt +%%DATADIR%%/docs/license/lgpl.txt %%DATADIR%%/docs/license/pcre_license.txt -%%DATADIR%%/docs/macros_guide.txt +%%DATADIR%%/docs/license/cc0.txt %%DATADIR%%/docs/options_guide.txt -%%DATADIR%%/docs/quickstart.txt +%%DATADIR%%/docs/aptitudes.txt +%%DATADIR%%/docs/crawl_manual.txt +%%DATADIR%%/docs/fight_simulator.txt %%DATADIR%%/docs/ssh_guide.txt +%%DATADIR%%/docs/changelog.txt +%%DATADIR%%/docs/keybind.txt %%DATADIR%%/docs/tiles_help.txt +%%DATADIR%%/docs/develop/save_compatibility.txt +%%DATADIR%%/docs/develop/android.txt +%%DATADIR%%/docs/develop/tiles_creation.txt +%%DATADIR%%/docs/develop/monster_speech.txt +%%DATADIR%%/docs/develop/testing.txt +%%DATADIR%%/docs/develop/process.txt +%%DATADIR%%/docs/develop/levels/triggerables.txt +%%DATADIR%%/docs/develop/levels/advanced.txt +%%DATADIR%%/docs/develop/levels/syntax.txt +%%DATADIR%%/docs/develop/levels/introduction.txt +%%DATADIR%%/docs/develop/coding_conventions.txt +%%DATADIR%%/docs/develop/patch_guide.txt +%%DATADIR%%/docs/develop/gdb_tips.txt +%%DATADIR%%/docs/develop/new_dev_checklist.txt +%%DATADIR%%/docs/develop/spells.txt +%%DATADIR%%/docs/develop/IRC.txt +%%DATADIR%%/docs/develop/release.txt +%%DATADIR%%/docs/CREDITS.txt %%DATADIR%%/docs/translation.txt -%%DATADIR%%/settings/0.9_monster_glyphs.txt +%%DATADIR%%/settings/no_vi_command_keys.txt %%DATADIR%%/settings/034_command_keys.txt -%%DATADIR%%/settings/034_monster_glyphs.txt +%%DATADIR%%/settings/advanced_optioneering.txt +%%DATADIR%%/settings/init.txt +%%DATADIR%%/settings/080_monster_glyphs.txt %%DATADIR%%/settings/052_monster_glyphs.txt %%DATADIR%%/settings/060_monster_glyphs.txt +%%DATADIR%%/settings/0.9_monster_glyphs.txt +%%DATADIR%%/settings/034_monster_glyphs.txt %%DATADIR%%/settings/071_monster_glyphs.txt -%%DATADIR%%/settings/080_monster_glyphs.txt -%%DATADIR%%/settings/advanced_optioneering.txt -%%DATADIR%%/settings/autopickup_exceptions.txt %%DATADIR%%/settings/dvorak_command_keys.txt -%%DATADIR%%/settings/food_colouring.txt -%%DATADIR%%/settings/init.txt -%%DATADIR%%/settings/menu_colours.txt -%%DATADIR%%/settings/messages.txt -%%DATADIR%%/settings/no_vi_command_keys.txt -%%DATADIR%%/settings/runrest_messages.txt -%%DATADIR%%/settings/standard_colours.txt -%%DATADIR%%/settings/tiles_options.txt -%%SDL%%%%DATADIR%%/dat/tiles/feat.png -%%SDL%%%%DATADIR%%/dat/tiles/floor.png -%%SDL%%%%DATADIR%%/dat/tiles/gui.png -%%SDL%%%%DATADIR%%/dat/tiles/icons.png -%%SDL%%%%DATADIR%%/dat/tiles/logo.png -%%SDL%%%%DATADIR%%/dat/tiles/main.png +%%SDL%%%%DATADIR%%/dat/tiles/title_white_noise_grabbing_the_orb.png +%%SDL%%%%DATADIR%%/dat/tiles/stone_soup_icon-win32.png +%%SDL%%%%DATADIR%%/dat/tiles/wall.png +%%SDL%%%%DATADIR%%/dat/tiles/title_denzi_undead_warrior.png +%%SDL%%%%DATADIR%%/dat/tiles/title_denzi_dragon.png %%SDL%%%%DATADIR%%/dat/tiles/player.png +%%SDL%%%%DATADIR%%/dat/tiles/title_shadyamish_octm.png +%%SDL%%%%DATADIR%%/dat/tiles/title_white_noise_entering_the_dungeon.png +%%SDL%%%%DATADIR%%/dat/tiles/icons.png +%%SDL%%%%DATADIR%%/dat/tiles/feat.png +%%SDL%%%%DATADIR%%/dat/tiles/title_pooryurik_knight.png %%SDL%%%%DATADIR%%/dat/tiles/stone_soup_icon-32x32.png +%%SDL%%%%DATADIR%%/dat/tiles/title_firemage.png +%%SDL%%%%DATADIR%%/dat/tiles/title_omndra_zot_demon.png +%%SDL%%%%DATADIR%%/dat/tiles/logo.png +%%SDL%%%%DATADIR%%/dat/tiles/floor.png %%SDL%%%%DATADIR%%/dat/tiles/stone_soup_icon-512x512.png -%%SDL%%%%DATADIR%%/dat/tiles/stone_soup_icon-win32.png -%%SDL%%%%DATADIR%%/dat/tiles/title_denzi_dragon.png -%%SDL%%%%DATADIR%%/dat/tiles/title_denzi_evil_mage.png -%%SDL%%%%DATADIR%%/dat/tiles/title_denzi_invasion.png +%%SDL%%%%DATADIR%%/dat/tiles/title_psiweapon_kiku.png %%SDL%%%%DATADIR%%/dat/tiles/title_denzi_kitchen_duty.png +%%SDL%%%%DATADIR%%/dat/tiles/title_denzi_invasion.png %%SDL%%%%DATADIR%%/dat/tiles/title_denzi_summoner.png -%%SDL%%%%DATADIR%%/dat/tiles/title_denzi_undead_warrior.png -%%SDL%%%%DATADIR%%/dat/tiles/title_firemage.png -%%SDL%%%%DATADIR%%/dat/tiles/title_omndra_zot_demon.png -%%SDL%%%%DATADIR%%/dat/tiles/title_pooryurik_knight.png -%%SDL%%%%DATADIR%%/dat/tiles/title_shadyamish_octm.png -%%SDL%%%%DATADIR%%/dat/tiles/title_white_noise_entering_the_dungeon.png -%%SDL%%%%DATADIR%%/dat/tiles/title_white_noise_grabbing_the_orb.png -%%SDL%%%%DATADIR%%/dat/tiles/wall.png +%%SDL%%%%DATADIR%%/dat/tiles/gui.png +%%SDL%%%%DATADIR%%/dat/tiles/main.png +%%SDL%%%%DATADIR%%/dat/tiles/title_denzi_evil_mage.png %%SDL%%@dirrm %%DATADIR%%/dat/tiles -@dirrm %%DATADIR%%/settings -@dirrm %%DATADIR%%/docs/license -@dirrm %%DATADIR%%/docs/develop/levels -@dirrm %%DATADIR%%/docs/develop -@dirrm %%DATADIR%%/docs -@dirrm %%DATADIR%%/dat/lua +@dirrm %%DATADIR%%/dat/database/el +@dirrm %%DATADIR%%/dat/database/pl +@dirrm %%DATADIR%%/dat/database +@dirrm %%DATADIR%%/dat/dlua/layout @dirrm %%DATADIR%%/dat/dlua -@dirrm %%DATADIR%%/dat/descript/zh -@dirrm %%DATADIR%%/dat/descript/ru -@dirrm %%DATADIR%%/dat/descript/pt +@dirrm %%DATADIR%%/dat/clua +@dirrm %%DATADIR%%/dat/des/tutorial +@dirrm %%DATADIR%%/dat/des/entry +@dirrm %%DATADIR%%/dat/des/portals +@dirrm %%DATADIR%%/dat/des/variable +@dirrm %%DATADIR%%/dat/des/branches +@dirrm %%DATADIR%%/dat/des/sprint +@dirrm %%DATADIR%%/dat/des/zotdef +@dirrm %%DATADIR%%/dat/des/traps +@dirrm %%DATADIR%%/dat/des/altar +@dirrm %%DATADIR%%/dat/des/builder +@dirrm %%DATADIR%%/dat/des/serial +@dirrm %%DATADIR%%/dat/des +@dirrm %%DATADIR%%/dat/defaults +@dirrm %%DATADIR%%/dat/descript/hu +@dirrm %%DATADIR%%/dat/descript/es @dirrm %%DATADIR%%/dat/descript/pl -@dirrm %%DATADIR%%/dat/descript/lv @dirrm %%DATADIR%%/dat/descript/lt -@dirrm %%DATADIR%%/dat/descript/ko -@dirrm %%DATADIR%%/dat/descript/it -@dirrm %%DATADIR%%/dat/descript/hu +@dirrm %%DATADIR%%/dat/descript/cs @dirrm %%DATADIR%%/dat/descript/fr -@dirrm %%DATADIR%%/dat/descript/fi -@dirrm %%DATADIR%%/dat/descript/es @dirrm %%DATADIR%%/dat/descript/el +@dirrm %%DATADIR%%/dat/descript/ja @dirrm %%DATADIR%%/dat/descript/de +@dirrm %%DATADIR%%/dat/descript/ru +@dirrm %%DATADIR%%/dat/descript/lv +@dirrm %%DATADIR%%/dat/descript/ko +@dirrm %%DATADIR%%/dat/descript/pt +@dirrm %%DATADIR%%/dat/descript/fi +@dirrm %%DATADIR%%/dat/descript/it @dirrm %%DATADIR%%/dat/descript/da -@dirrm %%DATADIR%%/dat/descript/cs +@dirrm %%DATADIR%%/dat/descript/tr +@dirrm %%DATADIR%%/dat/descript/zh @dirrm %%DATADIR%%/dat/descript -@dirrm %%DATADIR%%/dat/des/zotdef -@dirrm %%DATADIR%%/dat/des/variable -@dirrm %%DATADIR%%/dat/des/tutorial -@dirrm %%DATADIR%%/dat/des/traps -@dirrm %%DATADIR%%/dat/des/sprint -@dirrm %%DATADIR%%/dat/des/serial -@dirrm %%DATADIR%%/dat/des/portals -@dirrm %%DATADIR%%/dat/des/entry -@dirrm %%DATADIR%%/dat/des/builder -@dirrm %%DATADIR%%/dat/des/branches -@dirrm %%DATADIR%%/dat/des/altar -@dirrm %%DATADIR%%/dat/des -@dirrm %%DATADIR%%/dat/defaults -@dirrm %%DATADIR%%/dat/database/pl -@dirrm %%DATADIR%%/dat/database/el -@dirrm %%DATADIR%%/dat/database -@dirrm %%DATADIR%%/dat/clua @dirrm %%DATADIR%%/dat +@dirrm %%DATADIR%%/docs/license +@dirrm %%DATADIR%%/docs/develop/levels +@dirrm %%DATADIR%%/docs/develop +@dirrm %%DATADIR%%/docs +@dirrm %%DATADIR%%/settings @dirrm %%DATADIR%% %%PORTDOCS%%%%DOCSDIR%%/README.FreeBSD %%PORTDOCS%%@dirrm %%DOCSDIR%% --z6Eq5LdranGa6ru8-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 21:10:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id A5C4AE62 for ; Sun, 22 Sep 2013 21:10: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 840A726A9 for ; Sun, 22 Sep 2013 21:10: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 r8MLA09P070492 for ; Sun, 22 Sep 2013 21:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MLA0JZ070491; Sun, 22 Sep 2013 21:10:00 GMT (envelope-from gnats) Resent-Date: Sun, 22 Sep 2013 21:10:00 GMT Resent-Message-Id: <201309222110.r8MLA0JZ070491@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, Guido Falsi 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 6F80AE49; Sun, 22 Sep 2013 21:07:13 +0000 (UTC) (envelope-from mad@micro.madpilot.net) Received: from micro.madpilot.net (micro.madpilot.net [88.149.173.206]) by mx1.freebsd.org (Postfix) with ESMTP id 041FA269E; Sun, 22 Sep 2013 21:07:12 +0000 (UTC) Received: from micro.madpilot.net (localhost [127.0.0.1]) by micro.madpilot.net (Postfix) with ESMTP id 3cjgzc6WXKz313; Sun, 22 Sep 2013 23:00:28 +0200 (CEST) Received: from micro.madpilot.net ([127.0.0.1]) by micro.madpilot.net (micro.madpilot.net [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id O_kCo4tSi3rL; Sun, 22 Sep 2013 23:00:25 +0200 (CEST) Received: by micro.madpilot.net (Postfix, from userid 1000) id 3cjgzY57wHz312; Sun, 22 Sep 2013 23:00:25 +0200 (CEST) Message-Id: <3cjgzY57wHz312@micro.madpilot.net> Date: Sun, 22 Sep 2013 23:00:25 +0200 (CEST) From: Guido Falsi To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/182305: [PATCH] net/rdesktop: Apply iconv fixxes and convert to new options frameowork Cc: obrien@FreeBSD.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Guido Falsi List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Sep 2013 21:10:00 -0000 >Number: 182305 >Category: ports >Synopsis: [PATCH] net/rdesktop: Apply iconv fixxes and convert to new options frameowork >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Sep 22 21:10:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Guido Falsi >Release: FreeBSD 9.1-STABLE amd64 >Organization: none >Environment: System: FreeBSD micro.madpilot.net 9.1-STABLE FreeBSD 9.1-STABLE #21 r252026: Thu Jun 20 16:27:06 CEST 2013 root@micro.madpilot.net:/usr/obj/usr/src/sys/MICRO amd64 >Description: Hi, Fellow committer marino sent me oatches to allow the rdesktop port to compile correctly also on DragonFly BSD, these are the changes related to iconv support. I integrated those and converted the port to the new options framework, leaving the port's logic the same. I only added OPTIONS_DEFINE. While here I also converted to the new LIB_DEPENDS format too. Can you approve these changes? Thank you. >How-To-Repeat: >Fix: Index: Makefile =================================================================== --- Makefile (revision 327897) +++ Makefile (working copy) @@ -11,34 +11,35 @@ COMMENT= RDP client for Windows NT/2000/2003 Terminal Server LICENSE= GPLv3 + USE_XORG= x11 -USE_GMAKE= yes +USES= gmake iconv +CONFIGURE_ARGS+= ${ICONV_CONFIGURE_ARG} USE_OPENSSL= yes GNU_CONFIGURE= yes DOCS= doc/AUTHORS doc/TODO doc/*.txt MAN1= rdesktop.1 +OPTIONS_DEFINE= DOCS IPV6 RDESKTOP_DEBUG SAMPLERATE AO +RDESKTOP_DEBUG_DESC= Enable debugging + NO_STAGE= yes -.include -.if exists(${LOCALBASE}/lib/libao.so) || defined(WITH_LIBAO) -LIB_DEPENDS+= ao.4:${PORTSDIR}/audio/libao +.include + +.if exists(${LOCALBASE}/lib/libao.so) || ${PORT_OPTIONS:MAO} +LIB_DEPENDS+= libao.so:${PORTSDIR}/audio/libao .endif -.if exists(${LOCALBASE}/lib/libsamplerate.so) || defined(WITH_LIBSAMPLERATE) -LIB_DEPENDS+= samplerate.1:${PORTSDIR}/audio/libsamplerate +.if exists(${LOCALBASE}/lib/libsamplerate.so) || ${PORT_OPTIONS:MSAMPLERATE} +LIB_DEPENDS+= libsamplerate.so:${PORTSDIR}/audio/libsamplerate .endif -.if !defined(WITHOUT_RDESKTOP_IPV6) && !defined(WITHOUT_IPV6) +.if ${PORT_OPTIONS:MIPV6} CONFIGURE_ARGS+= --with-ipv6 .endif -.if defined(WITH_ICONV) -USES+= iconv -CONFIGURE_ARGS+= ${ICONV_CONFIGURE_ARG} -.endif - -.if defined(WITH_RDESKTOP_DEBUG) +.if ${PORT_OPTIONS:MRDESKTOP_DEBUG} CONFIGURE_ARGS+= --with-debug\ --with-debug-kbd\ --with-debug-rdp5\ @@ -56,9 +57,9 @@ ${INSTALL_MAN} ${WRKSRC}/doc/rdesktop.1 ${MAN1PREFIX}/man/man1 @${MKDIR} ${DATADIR}/keymaps ${INSTALL_DATA} ${WRKSRC}/keymaps/* ${DATADIR}/keymaps -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR} .endif -.include +.include >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 21:10:08 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id A3C06E8F; Sun, 22 Sep 2013 21:10:08 +0000 (UTC) (envelope-from edwin@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 7A0F626AA; Sun, 22 Sep 2013 21:10:08 +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 r8MLA8Di070628; Sun, 22 Sep 2013 21:10:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MLA8w5070627; Sun, 22 Sep 2013 21:10:08 GMT (envelope-from edwin) Date: Sun, 22 Sep 2013 21:10:08 GMT Message-Id: <201309222110.r8MLA8w5070627@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, obrien@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182305: [PATCH] net/rdesktop: Apply iconv fixxes and convert to new options frameowork 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: Sun, 22 Sep 2013 21:10:08 -0000 Synopsis: [PATCH] net/rdesktop: Apply iconv fixxes and convert to new options frameowork Responsible-Changed-From-To: freebsd-ports-bugs->obrien Responsible-Changed-By: edwin Responsible-Changed-When: Sun Sep 22 21:10:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182305 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 22 23:00: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 AF9DB5EC for ; Sun, 22 Sep 2013 23:00: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 8F66D2CED for ; Sun, 22 Sep 2013 23:00: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 r8MN00v7093410 for ; Sun, 22 Sep 2013 23:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8MN00ll093409; Sun, 22 Sep 2013 23:00:00 GMT (envelope-from gnats) Resent-Date: Sun, 22 Sep 2013 23:00:00 GMT Resent-Message-Id: <201309222300.r8MN00ll093409@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, Wolfgang Zenker 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 1DCDDEEE for ; Sun, 22 Sep 2013 22:52:24 +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 E55E02C9E for ; Sun, 22 Sep 2013 22:52:23 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8MMqMYG053876 for ; Sun, 22 Sep 2013 22:52:22 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8MMqMLc053873; Sun, 22 Sep 2013 22:52:22 GMT (envelope-from nobody) Message-Id: <201309222252.r8MMqMLc053873@oldred.freebsd.org> Date: Sun, 22 Sep 2013 22:52:22 GMT From: Wolfgang Zenker To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182307: icewm doesn't run on current 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: Sun, 22 Sep 2013 23:00:00 -0000 >Number: 182307 >Category: ports >Synopsis: icewm doesn't run on current >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Sep 22 23:00:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Wolfgang Zenker >Release: current >Organization: >Environment: FreeBSD merkur.lyx 10.0-ALPHA2 FreeBSD 10.0-ALPHA2 #8: Sat Sep 21 05:57:59 CEST 2013 wolfgang@merkur.lyx:/usr/obj/usr/src/sys/GENERIC i386 >Description: icewm does refuse to run with error message: IceWM: iconv doesn't supply (sufficient) Unicode to UTF-8 converters. Apparently icewm does not find some function in the new bsd iconv. Used libs are: $ ldd /usr/local/bin/icewm /usr/local/bin/icewm: libgdk_pixbuf_xlib-2.0.so.0 => /usr/local/lib/libgdk_pixbuf_xlib-2.0.so.0 (0x28122000) libgmodule-2.0.so.0 => /usr/local/lib/libgmodule-2.0.so.0 (0x28130000) libgdk_pixbuf-2.0.so.0 => /usr/local/lib/libgdk_pixbuf-2.0.so.0 (0x28133000) libgobject-2.0.so.0 => /usr/local/lib/libgobject-2.0.so.0 (0x28150000) libglib-2.0.so.0 => /usr/local/lib/libglib-2.0.so.0 (0x28194000) libintl.so.9 => /usr/local/lib/libintl.so.9 (0x28288000) libXinerama.so.1 => /usr/local/lib/libXinerama.so.1 (0x28291000) libSM.so.6 => /usr/local/lib/libSM.so.6 (0x28294000) libICE.so.6 => /usr/local/lib/libICE.so.6 (0x2829b000) libX11.so.6 => /usr/local/lib/libX11.so.6 (0x282b1000) libXrandr.so.2 => /usr/local/lib/libXrandr.so.2 (0x283c8000) libXrender.so.1 => /usr/local/lib/libXrender.so.1 (0x283d0000) libXext.so.6 => /usr/local/lib/libXext.so.6 (0x283d8000) libXft.so.2 => /usr/local/lib/libXft.so.2 (0x283e7000) libfreetype.so.9 => /usr/local/lib/libfreetype.so.9 (0x283fa000) libfontconfig.so.1 => /usr/local/lib/libfontconfig.so.1 (0x2847d000) libc++.so.1 => /usr/lib/libc++.so.1 (0x284bd000) libcxxrt.so.1 => /lib/libcxxrt.so.1 (0x28567000) libm.so.5 => /lib/libm.so.5 (0x2857e000) libgcc_s.so.1 => /lib/libgcc_s.so.1 (0x285a0000) libthr.so.3 => /lib/libthr.so.3 (0x285ab000) libc.so.7 => /lib/libc.so.7 (0x285cd000) libgio-2.0.so.0 => /usr/local/lib/libgio-2.0.so.0 (0x28724000) libz.so.6 => /lib/libz.so.6 (0x2886a000) libpng15.so.15 => /usr/local/lib/libpng15.so.15 (0x2887e000) libxcb.so.2 => /usr/local/lib/libxcb.so.2 (0x288aa000) libXau.so.6 => /usr/local/lib/libXau.so.6 (0x288c4000) libXdmcp.so.6 => /usr/local/lib/libXdmcp.so.6 (0x288c7000) libpthread-stubs.so.0 => /usr/local/lib/libpthread-stubs.so.0 (0x288cc000) librpcsvc.so.5 => /usr/lib/librpcsvc.so.5 (0x288ce000) libffi.so.6 => /usr/local/lib/libffi.so.6 (0x288d7000) libpcre.so.3 => /usr/local/lib/libpcre.so.3 (0x288dd000) libexpat.so.6 => /usr/local/lib/libexpat.so.6 (0x28944000) libbz2.so.4 => /usr/lib/libbz2.so.4 (0x28967000) >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 00:41:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 2DC847CF for ; Mon, 23 Sep 2013 00:41:09 +0000 (UTC) (envelope-from takefu@airport.fm) Received: from ae-osaka.co.jp (mx.ae-osaka.co.jp [210.196.184.82]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EA232226B for ; Mon, 23 Sep 2013 00:41:08 +0000 (UTC) Received: from ae-osaka.co.jp (localhost.ae-osaka.co.jp [127.0.0.1]) by ae-osaka.co.jp (Postfix) with ESMTP id 7CA45D3AC02 for ; Mon, 23 Sep 2013 09:40:58 +0900 (JST) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=airport.fm; h= message-id:date:from:reply-to:mime-version:to:subject :content-type:content-transfer-encoding; s=mail; bh=r3FhTasIgIHs qdUWaA6m1yr4HR8=; b=bpcnCwdEBf3LKSKG5AxiZiN80ggXagY0QUybOvBGwBLm EZsD9KYRTLc2SRAu5qmbBEFQJLB+m1TIoWq8Iy1dL/JwX7lPouAtduo+2v1CG3Dl mmEjL5dlom9Mt23OiWdOl3L7z+inRhCFfKC3Tww2VlEfsVcNCVG+60GMYGODeZs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=airport.fm; h=message-id :date:from:reply-to:mime-version:to:subject:content-type :content-transfer-encoding; q=dns; s=mail; b=uY+4fChxtGgUQcTXlyc q/xLvJgVFMJsNvNd6Z4gNt03nRBr2cQWdjMwvwcXKy8HU2+A6V1fO2Fcw9wLPptV QE+xRdsHfxZRrTbCU+TlpJXlq+9LwTsYlLTwbHiD/nwthmPSf4nowcpInutAbjCk Y1uVnNQCZ+8fDL44YNTJdLMk= Received: from [IPv6:2001:470:824b:a011:1d57:b4f0:7810:a2c] (unknown [IPv6:2001:470:824b:a011:1d57:b4f0:7810:a2c]) by ae-osaka.co.jp (Postfix) with ESMTPSA id 3E0CBD3AC01 for ; Mon, 23 Sep 2013 09:40:55 +0900 (JST) Message-ID: <523F8E16.2010706@airport.fm> Date: Mon, 23 Sep 2013 09:40:54 +0900 From: Takefu User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20130801 Thunderbird/17.0.8 MIME-Version: 1.0 To: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/180828: [MAINTAINER] russian/MT: update to 5.2.7,1 X-Enigmail-Version: 1.5.2 OpenPGP: id=9C3E8F56 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: takefu@airport.fm List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Sep 2013 00:41:09 -0000 Ping. -- From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 07:30:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id AA2941C5 for ; Mon, 23 Sep 2013 07: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 88C612490 for ; Mon, 23 Sep 2013 07: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 r8N7U0QN018235 for ; Mon, 23 Sep 2013 07: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 r8N7U0q7018233; Mon, 23 Sep 2013 07:30:00 GMT (envelope-from gnats) Resent-Date: Mon, 23 Sep 2013 07:30:00 GMT Resent-Message-Id: <201309230730.r8N7U0q7018233@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, "O. Hartmann" 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 ED88A185 for ; Mon, 23 Sep 2013 07:25:06 +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 DA2AD2478 for ; Mon, 23 Sep 2013 07:25:06 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8N7P6cS054047 for ; Mon, 23 Sep 2013 07:25:06 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8N7P6S9054040; Mon, 23 Sep 2013 07:25:06 GMT (envelope-from nobody) Message-Id: <201309230725.r8N7P6S9054040@oldred.freebsd.org> Date: Mon, 23 Sep 2013 07:25:06 GMT From: "O. Hartmann" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182311: devel/bugzilla[|42|44]: file permissions set wrong on installation/update 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: Mon, 23 Sep 2013 07:30:00 -0000 >Number: 182311 >Category: ports >Synopsis: devel/bugzilla[|42|44]: file permissions set wrong on installation/update >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Sep 23 07:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: O. Hartmann >Release: FreeBSD 10.0-CURRENT/amd64 >Organization: FU Berlin >Environment: >Description: Updating or installing devel/bugzilla, devel/bugzilla42 or devel/bugzilla44 leaves a non-working installation behind due to the fact most installed files have ownership root:wheel and permissions set to octal 700 or 600. This also includes essential file index.cgi, located in /usr/local/www/bugzilla[442]/. After an update of the ports on a working(!) server providing Bugzilla (devel/bugzilla), I realised that now the file ownership and permissions get set very restrictive also on devel/bugzilla (4.0.2). This wans't the case when I installed the port couple of time ago, but faced that time, that devel/bugzilla42 and devel/bugzilla44 did this nasty restrictions instead, so the choice left me with devel/bugzilla. Deleteing the port and deleting properly all remaining files including top level folder /usr/local/www/bugzilla and reinstallation of any (!) of the provided devel/bugzilla-ports ends up in the non-working state as described. Apache (2.4) always delivers End of script output before headers: index.cgi Error 500 >How-To-Repeat: Install devel/bugzilla. Configure Apache-2.2 or Apache-2.4 for the usage. Watch the result when accessing the newly setup Bugzilla server on accessing. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 07:30:08 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 976C61F7; Mon, 23 Sep 2013 07:30:08 +0000 (UTC) (envelope-from edwin@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 6C44F24B8; Mon, 23 Sep 2013 07:30:08 +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 r8N7U8bK018427; Mon, 23 Sep 2013 07:30:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8N7U8ZR018426; Mon, 23 Sep 2013 07:30:08 GMT (envelope-from edwin) Date: Mon, 23 Sep 2013 07:30:08 GMT Message-Id: <201309230730.r8N7U8ZR018426@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, bugzilla@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182311: devel/bugzilla[|42|44]: file permissions set wrong on installation/update 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: Mon, 23 Sep 2013 07:30:08 -0000 Synopsis: devel/bugzilla[|42|44]: file permissions set wrong on installation/update Responsible-Changed-From-To: freebsd-ports-bugs->bugzilla Responsible-Changed-By: edwin Responsible-Changed-When: Mon Sep 23 07:30:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182311 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 08:10: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 C4030792 for ; Mon, 23 Sep 2013 08:10: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 8A1DD26B8 for ; Mon, 23 Sep 2013 08:10: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 r8N8A00n031284 for ; Mon, 23 Sep 2013 08:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8N8A0Rg031283; Mon, 23 Sep 2013 08:10:00 GMT (envelope-from gnats) Resent-Date: Mon, 23 Sep 2013 08:10:00 GMT Resent-Message-Id: <201309230810.r8N8A0Rg031283@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, Beeblebrox 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 B5D816E9 for ; Mon, 23 Sep 2013 08:08:09 +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 8A37926A0 for ; Mon, 23 Sep 2013 08:08:09 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8N889l1004345 for ; Mon, 23 Sep 2013 08:08:09 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8N889cP004342; Mon, 23 Sep 2013 08:08:09 GMT (envelope-from nobody) Message-Id: <201309230808.r8N889cP004342@oldred.freebsd.org> Date: Mon, 23 Sep 2013 08:08:09 GMT From: Beeblebrox To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182312: audio/pulseaudio Makefile error 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: Mon, 23 Sep 2013 08:10:00 -0000 >Number: 182312 >Category: ports >Synopsis: audio/pulseaudio Makefile error >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Sep 23 08:10:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Beeblebrox >Release: 9.2-stable >Organization: >Environment: FreeBSD 9.2-PRERELEASE #1 r255586 amd64 >Description: audio/pulseaudio Makefile has minor error which prevents build. Line 24: libdbus-1.s0:${PORTSDIR}/devel/dbus \ Should be: libdbus-1.so:${PORTSDIR}/devel/dbus \ "s0" was coded instead of "so" >How-To-Repeat: >Fix: explained above >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 08:10:08 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id B09007CA; Mon, 23 Sep 2013 08:10:08 +0000 (UTC) (envelope-from edwin@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 875B926BA; Mon, 23 Sep 2013 08:10:08 +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 r8N8A8YR031420; Mon, 23 Sep 2013 08:10:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8N8A8nc031419; Mon, 23 Sep 2013 08:10:08 GMT (envelope-from edwin) Date: Mon, 23 Sep 2013 08:10:08 GMT Message-Id: <201309230810.r8N8A8nc031419@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182312: audio/pulseaudio Makefile error 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: Mon, 23 Sep 2013 08:10:08 -0000 Synopsis: audio/pulseaudio Makefile error Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Mon Sep 23 08:10:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182312 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 08:20:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id C9D169EB for ; Mon, 23 Sep 2013 08:20: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 A80312742 for ; Mon, 23 Sep 2013 08:20: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 r8N8K0mY034947 for ; Mon, 23 Sep 2013 08:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8N8K0mu034946; Mon, 23 Sep 2013 08:20:00 GMT (envelope-from gnats) Resent-Date: Mon, 23 Sep 2013 08:20:00 GMT Resent-Message-Id: <201309230820.r8N8K0mu034946@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, Trevor Caira Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 2C2C09C5 for ; Mon, 23 Sep 2013 08:16:57 +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 1811C2731 for ; Mon, 23 Sep 2013 08:16:57 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8N8Guov011823 for ; Mon, 23 Sep 2013 08:16:56 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8N8Gusf011822; Mon, 23 Sep 2013 08:16:56 GMT (envelope-from nobody) Message-Id: <201309230816.r8N8Gusf011822@oldred.freebsd.org> Date: Mon, 23 Sep 2013 08:16:56 GMT From: Trevor Caira To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182313: [new port] finance/py-stripe: Python bindings for the Stripe.com payment service 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: Mon, 23 Sep 2013 08:20:00 -0000 >Number: 182313 >Category: ports >Synopsis: [new port] finance/py-stripe: Python bindings for the Stripe.com payment service >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Sep 23 08:20:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Trevor Caira >Release: FreeBSD 9.2-RC4 amd64 >Organization: Bitbase LLC >Environment: FreeBSD tour 9.2-RC4 FreeBSD 9.2-RC4 #0 r255465: Wed Sep 11 05:11:03 UTC 2013 root@bake.isc.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: New port: finance/py-stripe Python bindings for the Stripe.com payment service REST API. >How-To-Repeat: >Fix: Shell archive attached. Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # py-stripe # py-stripe/pkg-descr # py-stripe/Makefile # py-stripe/distinfo # py-stripe/pkg-plist # echo c - py-stripe mkdir -p py-stripe > /dev/null 2>&1 echo x - py-stripe/pkg-descr sed 's/^X//' >py-stripe/pkg-descr << 'd5600ab757ce40f03ae10b2e21f98419' XPython bindings for the Stripe.com payment service REST API. X XWWW: https://github.com/stripe/stripe-python d5600ab757ce40f03ae10b2e21f98419 echo x - py-stripe/Makefile sed 's/^X//' >py-stripe/Makefile << '465811de50c92fdd4354c2cc7a16c08f' X# Created by: Trevor Caira X# $FreeBSD$ X# X XPORTNAME= stripe XPORTVERSION= 1.9.5 XCATEGORIES= finance python XMASTER_SITES= https://code.stripe.com/stripe/ XPKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} X XMAINTAINER= trevor@bitba.se XCOMMENT= Python bindings for the Stripe.com payment system X XLICENSE= MIT X XRUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=0.8.8:${PORTSDIR}/www/py-requests X XUSE_PYTHON= 2.6+ XUSE_PYDISTUTILS= easy_install X Xpost-patch: X @${REINPLACE_CMD} 's/version=version\.VERSION,/version=version.VERSION, zip_safe=False,/' \ X ${WRKSRC}/setup.py X X.include 465811de50c92fdd4354c2cc7a16c08f echo x - py-stripe/distinfo sed 's/^X//' >py-stripe/distinfo << 'bfe9c3b572fb96cc804122ec6929c5bf' XSHA256 (stripe-1.9.5.tar.gz) = 5c01bab3ae831f8eb2ad72f9337777f66abb2f952cddc417bfb31038335d746c XSIZE (stripe-1.9.5.tar.gz) = 142358 bfe9c3b572fb96cc804122ec6929c5bf echo x - py-stripe/pkg-plist sed 's/^X//' >py-stripe/pkg-plist << '7239ff836d214db9bd07aba3bfd6b4da' X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/PKG-INFO X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/SOURCES.txt X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/dependency_links.txt X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/not-zip-safe X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/requires.txt X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/top_level.txt X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/VERSION X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/stripe/__init__.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/stripe/__init__.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/stripe/__init__.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/stripe/data/ca-certificates.crt X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/stripe/importer.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/stripe/importer.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/stripe/importer.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/stripe/test/__init__.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/stripe/test/__init__.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/stripe/test/__init__.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/stripe/test/test_stripe.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/stripe/test/test_stripe.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/stripe/test/test_stripe.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/stripe/version.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/stripe/version.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/stripe/version.pyo X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% 7239ff836d214db9bd07aba3bfd6b4da exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 08:20:09 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 064F9A18; Mon, 23 Sep 2013 08:20:09 +0000 (UTC) (envelope-from edwin@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 CFCAD2743; Mon, 23 Sep 2013 08:20:08 +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 r8N8K83i035194; Mon, 23 Sep 2013 08:20:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8N8K80t035193; Mon, 23 Sep 2013 08:20:08 GMT (envelope-from edwin) Date: Mon, 23 Sep 2013 08:20:08 GMT Message-Id: <201309230820.r8N8K80t035193@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182313: [new port] finance/py-stripe: Python bindings for the Stripe.com payment service 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: Mon, 23 Sep 2013 08:20:09 -0000 Synopsis: [new port] finance/py-stripe: Python bindings for the Stripe.com payment service Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Mon Sep 23 08:20:08 UTC 2013 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182313 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 09:20:01 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 71D2BC0D for ; Mon, 23 Sep 2013 09:20:01 +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 5DC4E2ADC for ; Mon, 23 Sep 2013 09:20:01 +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 r8N9K13r047807 for ; Mon, 23 Sep 2013 09:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8N9K1An047806; Mon, 23 Sep 2013 09:20:01 GMT (envelope-from gnats) Date: Mon, 23 Sep 2013 09:20:01 GMT Message-Id: <201309230920.r8N9K1An047806@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/181887: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Sep 2013 09:20:01 -0000 The following reply was made to PR ports/181887; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/181887: commit references a PR Date: Mon, 23 Sep 2013 09:10:01 +0000 (UTC) Author: sunpoet Date: Mon Sep 23 09:09:54 2013 New Revision: 327955 URL: http://svnweb.freebsd.org/changeset/ports/327955 Log: - Add shared LIBLO and LIBOIL descriptions PR: ports/181887 Modified: head/Mk/bsd.options.desc.mk Modified: head/Mk/bsd.options.desc.mk ============================================================================== --- head/Mk/bsd.options.desc.mk Mon Sep 23 09:09:09 2013 (r327954) +++ head/Mk/bsd.options.desc.mk Mon Sep 23 09:09:54 2013 (r327955) @@ -266,7 +266,9 @@ LIBEDIT_DESC?= Command line editing via LIBEV_DESC?= High-performance events support via libev LIBEXIF_DESC?= EXIF metadata support via libexif LIBEXTRACTOR_DESC?= libextractor support +LIBLO_DESC?= Open Sound Control support via liblo LIBMNG_DESC?= MNG animated images support via libmng +LIBOIL_DESC?= Inner loop optimizations support via liboil LIBPAPER_DESC?= libpaper support LIBRSVG2_DESC?= SVG vector graphics support via librsvg2 LIBVIRT_DESC?= libvirt support _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 09:30:01 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 14223D57 for ; Mon, 23 Sep 2013 09:30:01 +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 E6E802B54 for ; Mon, 23 Sep 2013 09: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 r8N9U01X049562 for ; Mon, 23 Sep 2013 09: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 r8N9U0BK049530; Mon, 23 Sep 2013 09:30:00 GMT (envelope-from gnats) Resent-Date: Mon, 23 Sep 2013 09:30:00 GMT Resent-Message-Id: <201309230930.r8N9U0BK049530@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, Sergio Mangialardi Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 1B4FBC3D for ; Mon, 23 Sep 2013 09:20:15 +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 094812ADF for ; Mon, 23 Sep 2013 09:20:15 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8N9KE57067979 for ; Mon, 23 Sep 2013 09:20:14 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8N9KEYO067899; Mon, 23 Sep 2013 09:20:14 GMT (envelope-from nobody) Message-Id: <201309230920.r8N9KEYO067899@oldred.freebsd.org> Date: Mon, 23 Sep 2013 09:20:14 GMT From: Sergio Mangialardi To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182315: [maintainer update] Unbreak ddd on FreeBSD 10 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: Mon, 23 Sep 2013 09:30:01 -0000 >Number: 182315 >Category: ports >Synopsis: [maintainer update] Unbreak ddd on FreeBSD 10 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Sep 23 09:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Sergio Mangialardi >Release: FreeBSD 10 >Organization: >Environment: FreeBSD xxxx 10.0-CURRENT FreeBSD 10.0-CURRENT #0 r255249M: Thu Sep 5 21:09:44 CEST 2013 root@xxxx:/usr/obj/usr/src/sys/GENERIC i386 >Description: Apply a patch to unbreak the ddd compilation on FreeBSD 10 using clang as compiler. Added files: ddd/files/patch-ddd-VSLDefList.C >How-To-Repeat: >Fix: Patch attached with submission follows: Index: files/patch-ddd-VSLDefList.C =================================================================== --- files/patch-ddd-VSLDefList.C (revision 0) +++ files/patch-ddd-VSLDefList.C (working copy) @@ -0,0 +1,11 @@ +--- ddd/VSLDefList.C.orig 2013-09-23 10:38:30.000000000 +0200 ++++ ddd/VSLDefList.C 2013-09-23 10:39:12.000000000 +0200 +@@ -60,7 +60,7 @@ + { + std::ostringstream s; + s << *arg; +- VSLLib::eval_error("no suiting definition for " + f_name() + s); ++ VSLLib::eval_error("no suiting definition for " + f_name() + s.str().c_str()); + } + + return d ? d->eval(arg) : 0; Property changes on: files/patch-ddd-VSLDefList.C ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 10:00:03 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 DDDDA337 for ; Mon, 23 Sep 2013 10:00:03 +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 B17B42CE7 for ; Mon, 23 Sep 2013 10:00:03 +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 r8NA01br054793 for ; Mon, 23 Sep 2013 10:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8NA00Lf054792; Mon, 23 Sep 2013 10:00:00 GMT (envelope-from gnats) Date: Mon, 23 Sep 2013 10:00:00 GMT Message-Id: <201309231000.r8NA00Lf054792@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Aragon Gouveia Subject: Re: ports/181641: mail/ssmtp provide option for CRAM-MD5 support X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Aragon Gouveia List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Sep 2013 10:00:03 -0000 The following reply was made to PR ports/181641; it has been noted by GNATS. From: Aragon Gouveia To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/181641: mail/ssmtp provide option for CRAM-MD5 support Date: Mon, 23 Sep 2013 12:00:20 +0200 Just an update - I've got a patch in the works with these and additional changes added. Giving the PR submitter 3 days to respond to me with comments. From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 11:10:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id E747C57A for ; Mon, 23 Sep 2013 11:10: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 AD6B2230D for ; Mon, 23 Sep 2013 11:10: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 r8NBA0Nd071871 for ; Mon, 23 Sep 2013 11:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8NBA0eC071861; Mon, 23 Sep 2013 11:10:00 GMT (envelope-from gnats) Resent-Date: Mon, 23 Sep 2013 11:10:00 GMT Resent-Message-Id: <201309231110.r8NBA0eC071861@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, Uwe Pierau 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 326B4B5C for ; Mon, 23 Sep 2013 11:06:25 +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 082CC20F6 for ; Mon, 23 Sep 2013 11:06:25 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8NB6NSV065765 for ; Mon, 23 Sep 2013 11:06:23 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8NB6N35065753; Mon, 23 Sep 2013 11:06:23 GMT (envelope-from nobody) Message-Id: <201309231106.r8NB6N35065753@oldred.freebsd.org> Date: Mon, 23 Sep 2013 11:06:23 GMT From: Uwe Pierau To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182316: drop maintainership for www/mysqlphp2postgres and textproc/lacheck 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: Mon, 23 Sep 2013 11:10:01 -0000 >Number: 182316 >Category: ports >Synopsis: drop maintainership for www/mysqlphp2postgres and textproc/lacheck >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Sep 23 11:10:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Uwe Pierau >Release: none >Organization: >Environment: >Description: uwe.pierau@tu-clausthal.de is no working email address anymore. since i no longer have an email address please remove this address. thanks >How-To-Repeat: search for maintainer of www/mysqlphp2postgres and textproc/lacheck >Fix: change email address to ports@freebsd.org >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 11:10:08 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 DE9C15A9; Mon, 23 Sep 2013 11:10:08 +0000 (UTC) (envelope-from edwin@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 B3970230E; Mon, 23 Sep 2013 11:10:08 +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 r8NBA8qp072013; Mon, 23 Sep 2013 11:10:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8NBA8wg072012; Mon, 23 Sep 2013 11:10:08 GMT (envelope-from edwin) Date: Mon, 23 Sep 2013 11:10:08 GMT Message-Id: <201309231110.r8NBA8wg072012@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182316: drop maintainership for www/mysqlphp2postgres and textproc/lacheck 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: Mon, 23 Sep 2013 11:10:08 -0000 Synopsis: drop maintainership for www/mysqlphp2postgres and textproc/lacheck Class-Changed-From-To: maintainer-update->change-request Class-Changed-By: edwin Class-Changed-When: Mon Sep 23 11:10:08 UTC 2013 Class-Changed-Why: Fix category (submitter is not maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182316 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 11:10:11 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 1ACC55AE; Mon, 23 Sep 2013 11:10:11 +0000 (UTC) (envelope-from edwin@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 8E6A12311; Mon, 23 Sep 2013 11:10:10 +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 r8NBAAS3072095; Mon, 23 Sep 2013 11:10:10 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8NBAAJH072094; Mon, 23 Sep 2013 11:10:10 GMT (envelope-from edwin) Date: Mon, 23 Sep 2013 11:10:10 GMT Message-Id: <201309231110.r8NBAAJH072094@freefall.freebsd.org> To: noaddress@freebsd.de, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182316: drop maintainership for www/mysqlphp2postgres and textproc/lacheck 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: Mon, 23 Sep 2013 11:10:11 -0000 Synopsis: drop maintainership for www/mysqlphp2postgres and textproc/lacheck State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Mon Sep 23 11:10:10 UTC 2013 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182316 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 11:20:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 858BD877 for ; Mon, 23 Sep 2013 11:20:01 +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 7178423B8 for ; Mon, 23 Sep 2013 11:20:01 +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 r8NBK1fZ075261 for ; Mon, 23 Sep 2013 11:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8NBK1A2075260; Mon, 23 Sep 2013 11:20:01 GMT (envelope-from gnats) Date: Mon, 23 Sep 2013 11:20:01 GMT Message-Id: <201309231120.r8NBK1A2075260@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/182316: drop maintainership for www/mysqlphp2postgres and textproc/lacheck X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Sep 2013 11:20:01 -0000 The following reply was made to PR ports/182316; it has been noted by GNATS. From: Edwin Groothuis To: uwe.pierau@tu-clausthal.de Cc: bug-followup@FreeBSD.org Subject: Re: ports/182316: drop maintainership for www/mysqlphp2postgres and textproc/lacheck Date: Mon, 23 Sep 2013 11:10:09 UT Maintainer of www/mysqlphp2postgres, Please note that PR ports/182316 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/182316 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 12:20:01 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 10B04AF4 for ; Mon, 23 Sep 2013 12:20:01 +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 E3F8227F4 for ; Mon, 23 Sep 2013 12:20: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 r8NCK0A8090271 for ; Mon, 23 Sep 2013 12:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8NCK0QR090262; Mon, 23 Sep 2013 12:20:00 GMT (envelope-from gnats) Resent-Date: Mon, 23 Sep 2013 12:20:00 GMT Resent-Message-Id: <201309231220.r8NCK0QR090262@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, Bartek Rutkowski Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id BE81E8F9 for ; Mon, 23 Sep 2013 12:12:11 +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 A923E27A0 for ; Mon, 23 Sep 2013 12:12:11 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8NCCAYU088072 for ; Mon, 23 Sep 2013 12:12:10 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8NCCAGL088062; Mon, 23 Sep 2013 12:12:10 GMT (envelope-from nobody) Message-Id: <201309231212.r8NCCAGL088062@oldred.freebsd.org> Date: Mon, 23 Sep 2013 12:12:10 GMT From: Bartek Rutkowski To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182317: New port: databases/riak Riak is a distributed database designed for maximum availability 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: Mon, 23 Sep 2013 12:20:01 -0000 >Number: 182317 >Category: ports >Synopsis: New port: databases/riak Riak is a distributed database designed for maximum availability >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Sep 23 12:20:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Bartek Rutkowski >Release: 9.1 >Organization: Pixeware LTD >Environment: FreeBSD very.bad.daemon.666.org 9.1-RELEASE FreeBSD 9.1-RELEASE #0 r243825: Tue Dec 4 09:23:10 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: This is a new, tested port of Basho Riak distributed database, that doesnt exist in FreeBSD Ports tree. Basho is providing binary package for FreeBSD, but it is only working with legacy pkg tools, has unnecessary dependencies, doesnt have rc scripts. This port is fixing all of these issues. >How-To-Repeat: Install the port in /usr/ports/databases/riak, cwd to /usr/ports/databases/riak and run make install package deinstall clean, to verify the entire process. >Fix: Commit this port to FreeBSD Ports tree. Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # riak # riak/distinfo # riak/files # riak/files/patch-deps-erlang_js-c_src-patches-js-src-config-FreeBSD.mk.patch # riak/files/riak.in # riak/files/patch-deps-node_package-priv-base-env.sh # riak/files/patch-rel-vars.config # riak/files/patch-rel-reltool.config # riak/files/patch-deps-eleveldb-c_src-leveldb-db-version_set.cc # riak/Makefile # riak/pkg-descr # riak/pkg-plist # /usr/ports/UIDs # /usr/ports/GIDs # echo c - riak mkdir -p riak > /dev/null 2>&1 echo x - riak/distinfo sed 's/^X//' >riak/distinfo << '4521ab6e09ee03fd9b0a59d7fee17a4e' XSHA256 (riak-1.4.2.tar.gz) = 6a1fdcfc1f3f0357eeb377ead6638db4187379e3b40121cef16b517e03c6fd11 XSIZE (riak-1.4.2.tar.gz) = 13738074 4521ab6e09ee03fd9b0a59d7fee17a4e echo c - riak/files mkdir -p riak/files > /dev/null 2>&1 echo x - riak/files/patch-deps-erlang_js-c_src-patches-js-src-config-FreeBSD.mk.patch sed 's/^X//' >riak/files/patch-deps-erlang_js-c_src-patches-js-src-config-FreeBSD.mk.patch << 'efa687a59109f5f9e8beba3b6d62574b' X--- deps/erlang_js/c_src/patches/js-src-config-FreeBSD.mk.patch.orig 2013-01-29 21:13:01.000000000 +0100 X+++ deps/erlang_js/c_src/patches/js-src-config-FreeBSD.mk.patch 2013-09-12 14:59:29.000000000 +0200 X@@ -1,6 +1,6 @@ X --- c_src.orig/js/src/config/FreeBSD.mk 1969-12-31 19:00:00.000000000 -0500 X +++ c_src/js/src/config/FreeBSD.mk 2011-03-30 20:12:51.000000000 -0400 X-@@ -0,0 +1,99 @@ X+@@ -0,0 +1,100 @@ X +# -*- Mode: makefile -*- X +# X +# ***** BEGIN LICENSE BLOCK ***** X@@ -46,6 +46,7 @@ X + X +CC ?= gcc X +CCC ?= g++ X++LD = $(CC) X +CFLAGS += -Wall -Wno-format X +OS_CFLAGS = -DXP_UNIX -DSVR4 -DSYSV -D_BSD_SOURCE -DPOSIX_SOURCE -DHAVE_LOCALTIME_R X + efa687a59109f5f9e8beba3b6d62574b echo x - riak/files/riak.in sed 's/^X//' >riak/files/riak.in << 'd1c85c87da054bc4cd8e5cacbc1cd0dc' X#!/bin/sh X X# PROVIDE: riak X# REQUIRE: LOGIN cleanvar X# KEYWORD: shutdown X X# X# Add the following lines to /etc/rc.conf to enable riak: X# riak_enable (bool): Set to "NO" by default. X# Set it to "YES" to enable riak on boot. X# X X. /etc/rc.subr X Xname="riak" Xrcvar=riak_enable X Xpidfile=/var/run/riak/riak.pid X Xstart_cmd="riak_start" Xstop_cmd="riak_stop" Xrestart_cdm="riak_restart" Xstatus_cmd="riak_status" Xcommand="/usr/local/sbin/riak" X Xload_rc_config $name X X# Read rc.d config and set defaults Xload_rc_config "$name" X: ${riak_enable="NO"} X Xriak_start() X{ X echo "Starting Riak." X /usr/local/sbin/riak start X return 0 X} X Xriak_stop() X{ X echo "Stopping Riak processes" X /usr/local/sbin/riak stop X killall -9 epmd X return 0 X} X Xriak_restart() X{ X riak_stop X riak_start X return 0 X} X Xriak_status() X{ X if riak_running; then X echo "Riak is running." X return 0 X else X echo "Riak is not running" X return 1 X fi X} X Xriak_running() X{ X local pid result ps X pid=`/usr/local/sbin/riak getpid` X result=`echo $?` X if [ "$result" == 0 ]; then X ps=`ps -waux | grep ${pid} | grep riak` X result=`echo $?` X if [ "$result" ]; then X return 0 X else X return 1 X fi X else X return 1 X fi X} X Xrun_rc_command "$1" d1c85c87da054bc4cd8e5cacbc1cd0dc echo x - riak/files/patch-deps-node_package-priv-base-env.sh sed 's/^X//' >riak/files/patch-deps-node_package-priv-base-env.sh << '5493440c771d13c3b9a0fabbe3ba3d87' X--- deps/node_package/priv/base/env.sh.orig 2013-09-13 10:22:32.000000000 +0200 X+++ deps/node_package/priv/base/env.sh 2013-09-13 10:27:16.000000000 +0200 X@@ -100,7 +100,7 @@ X # read/write/delete .pid files during startup/shutdown X create_pid_dir() { X # Validate RUNNER_USER is set and they have permissions to write to /var/run X- # Don't continue if we've already sudo'd to RUNNER_USER X+ # Don't continue if we've already su'd to RUNNER_USER X if ([ "$RUNNER_USER" ] && [ "x$WHOAMI" != "x$RUNNER_USER" ]); then X if [ -w $RUN_DIR ]; then X mkdir -p $PID_DIR X@@ -161,12 +161,12 @@ X # Validate that the user running the script is the owner of the X # RUN_DIR. X if ([ "$RUNNER_USER" ] && [ "x$WHOAMI" != "x$RUNNER_USER" ]); then X- type sudo > /dev/null 2>&1 X+ type su > /dev/null 2>&1 X if [ "$?" -ne 0 ]; then X- echoerr "sudo doesn't appear to be installed and your EUID isn't $RUNNER_USER" 1>&2 X+ echoerr "su doesn't appear to be installed and your EUID isn't $RUNNER_USER" 1>&2 X exit 1 X fi X- exec sudo -H -u $RUNNER_USER -i $RUNNER_SCRIPT_DIR/$RUNNER_SCRIPT $@ X+ exec su - $RUNNER_USER -c "$RUNNER_SCRIPT_DIR/$RUNNER_SCRIPT $@" X fi X } X 5493440c771d13c3b9a0fabbe3ba3d87 echo x - riak/files/patch-rel-vars.config sed 's/^X//' >riak/files/patch-rel-vars.config << '4a99ce9ec064a2a5a5da26136c62f089' X--- rel/vars.config.orig 2013-08-29 20:13:02.000000000 +0200 X+++ rel/vars.config 2013-09-11 23:04:34.000000000 +0200 X@@ -2,11 +2,12 @@ X %% ex: ft=erlang ts=4 sw=4 et X X %% Platform-specific installation paths X-{platform_bin_dir, "./bin"}. X-{platform_data_dir, "./data"}. X-{platform_etc_dir, "./etc"}. X-{platform_lib_dir, "./lib"}. X-{platform_log_dir, "./log"}. X+{platform_bin_dir, "/usr/local/sbin"}. X+{platform_data_dir, "/var/db/riak"}. X+{platform_etc_dir, "/usr/local/etc/riak"}. X+{platform_base_dir, "/usr/local/lib/riak"}. X+{platform_lib_dir, "/usr/local/lib/riak/lib"}. X+{platform_log_dir, "/var/log/riak"}. X X %% X %% etc/app.config X@@ -47,12 +48,12 @@ X %% X %% bin/riak X %% X-{runner_script_dir, "$(cd ${0%/*} && pwd)"}. X-{runner_base_dir, "{{runner_script_dir}}/.."}. X-{runner_etc_dir, "$RUNNER_BASE_DIR/etc"}. X-{runner_log_dir, "$RUNNER_BASE_DIR/log"}. X-{runner_lib_dir, "$RUNNER_BASE_DIR/lib"}. X-{runner_patch_dir, "$RUNNER_BASE_DIR/lib/basho-patches"}. X-{pipe_dir, "/tmp/$RUNNER_BASE_DIR/"}. X-{runner_user, ""}. X+{runner_script_dir, "{{platform_bin_dir}}"}. X+{runner_base_dir, "{{platform_base_dir}}"}. X+{runner_etc_dir, "{{platform_etc_dir}}"}. X+{runner_log_dir, "{{platform_log_dir}}"}. X+{runner_lib_dir, "{{platform_lib_dir}}"}. X+{runner_patch_dir, "{{platform_lib_dir}}/basho-patches"}. X+{pipe_dir, "/tmp/riak"}. X+{runner_user, "riak"}. X {runner_wait_process, "riak_core_node_watcher"}. 4a99ce9ec064a2a5a5da26136c62f089 echo x - riak/files/patch-rel-reltool.config sed 's/^X//' >riak/files/patch-rel-reltool.config << '6a181f1be37eb08b59c87ed5e338cc1f' X--- rel/reltool.config.orig 2013-09-17 20:53:23.000000000 +0200 X+++ rel/reltool.config 2013-09-17 20:55:40.000000000 +0200 X@@ -37,8 +37,12 @@ X {boot_rel, "riak"}, X {profile, embedded}, X {excl_sys_filters, ["^bin/.*", X- "^erts.*/bin/(dialyzer|typer)"]}, X+ "^erts.*/bin/(dialyzer|typer)", X+ "^erts.*/bin/(dialyzer|typer)", X+ "^erts.*/doc", X+ "^erts.*/man"]}, X {excl_archive_filters, [".*"]}, X+ {app, mnesia, [{incl_app_filters, ["ebin/*"]}]}, X {app, cluster_info, [{incl_cond, include}]}, X {app, erlang_js, [{incl_cond, include}]}, X {app, ebloom, []}, 6a181f1be37eb08b59c87ed5e338cc1f echo x - riak/files/patch-deps-eleveldb-c_src-leveldb-db-version_set.cc sed 's/^X//' >riak/files/patch-deps-eleveldb-c_src-leveldb-db-version_set.cc << '7e68a807f20c9b1da9f831116eecc2c4' X--- deps/eleveldb/c_src/leveldb/db/version_set.cc.orig 2013-08-29 23:03:04.000000000 +0200 X+++ deps/eleveldb/c_src/leveldb/db/version_set.cc 2013-09-22 14:38:08.000000000 +0200 X@@ -2,10 +2,12 @@ X // Use of this source code is governed by a BSD-style license that can be X // found in the LICENSE file. See the AUTHORS file for names of contributors. X X+#define __STDC_CONSTANT_MACROS X #include "db/version_set.h" X X #include X #include X+#include X #include "db/filename.h" X #include "db/log_reader.h" X #include "db/log_writer.h" X@@ -53,13 +55,13 @@ X X // WARNING: m_OverlappedFiles flags need to match config::kNumOverlapFiles ... until unified X { X- {10485760, 262144000, 57671680, 209715200, 0, 300000000, true}, X- {10485760, 82914560, 57671680, 419430400, 0, 209715200, true}, X- {10485760, 104371840, 57671680, 1006632960, 200000000, 314572800, false}, X- {10485760, 125829120, 57671680, 4094304000, 3355443200, 419430400, false}, X- {10485760, 147286400, 57671680, 41943040000, 33554432000, 524288000, false}, X- {10485760, 188743680, 57671680, 419430400000, 335544320000, 629145600, false}, X- {10485760, 220200960, 57671680, 4194304000000, 3355443200000, 734003200, false} X+ {UINT64_C(10485760), UINT64_C(262144000), INT64_C(57671680), UINT64_C( 209715200), UINT64_C( 0), UINT64_C(300000000), true}, X+ {UINT64_C(10485760), UINT64_C( 82914560), INT64_C(57671680), UINT64_C( 419430400), UINT64_C( 0), UINT64_C(209715200), true}, X+ {UINT64_C(10485760), UINT64_C(104371840), INT64_C(57671680), UINT64_C( 1006632960), UINT64_C( 200000000), UINT64_C(314572800), false}, X+ {UINT64_C(10485760), UINT64_C(125829120), INT64_C(57671680), UINT64_C( 4094304000), UINT64_C( 3355443200), UINT64_C(419430400), false}, X+ {UINT64_C(10485760), UINT64_C(147286400), INT64_C(57671680), UINT64_C( 41943040000), UINT64_C( 33554432000), UINT64_C(524288000), false}, X+ {UINT64_C(10485760), UINT64_C(188743680), INT64_C(57671680), UINT64_C( 419430400000), UINT64_C( 335544320000), UINT64_C(629145600), false}, X+ {UINT64_C(10485760), UINT64_C(220200960), INT64_C(57671680), UINT64_C(4194304000000), UINT64_C(3355443200000), UINT64_C(734003200), false} X }; 7e68a807f20c9b1da9f831116eecc2c4 echo x - riak/Makefile sed 's/^X//' >riak/Makefile << 'b02557be32f458970cad61df99a940cd' X# $FreeBSD$ X XPORTNAME= riak XPORTVERSION= 1.4.2 XCATEGORIES= databases XMASTER_SITES= http://s3.amazonaws.com/downloads.basho.com/riak/1.4/${PORTVERSION}/ \ X http://downloads.basho.com.s3.amazonaws.com/riak/1.4/${PORTVERSION}/ X XMAINTAINER= ports@robakdesign.com XCOMMENT= Riak is an open source, distributed database X XBUILD_DEPENDS= ${LOCALBASE}/lib/erlang15/bin/erlc:${PORTSDIR}/lang/erlang-runtime15 X XUSES= gmake XUSE_RC_SUBR= riak X XPLIST= ${WRKDIR}/pkg-plist XPLIST_SUB+= RIAK_LOGDIR=${RIAK_LOGDIR} \ X RIAK_DBDIR=${RIAK_DBDIR} \ X RIAK_CONFDIR=${RIAK_CONFDIR} \ X RIAK_HOMEDIR=${RIAK_HOMEDIR} X XUSERS= riak XGROUPS= riak X XRIAK_CONFDIR?= ${PREFIX}/etc/${PORTNAME} XRIAK_LOGDIR?= /var/log/${PORTNAME} XRIAK_DBDIR?= /var/db/${PORTNAME} XRIAK_LIBDIR?= ${PREFIX}/lib/${PORTNAME}/lib XRIAK_HOMEDIR?= ${PREFIX}/lib/${PORTNAME} X XMAN1= riak.1 riak-admin.1 riak-debug.1 search-cmd.1 XMANCOMPRESSED= yes X XALL_TARGET= rel XMAKE_JOBS_UNSAFE=yes XMAKE_ENV= PATH=${LOCALBASE}/lib/erlang15/bin:${PATH} XNO_STAGE= yes X X.include X Xpre-install: X ${RM} -f ${PLIST} X ${CAT} ${PKGDIR}/pkg-plist >> ${PLIST} X cd ${WRKSRC}/rel/${PORTNAME}; ${FIND} releases -type f \ X | ${AWK} '{print length, $$0}' | ${SORT} -rn | ${SED} -e 's/^/lib\//' \ X | ${AWK} '{print "lib/riak/"$$2 }' >> ${PLIST} X cd ${WRKSRC}/rel/${PORTNAME}; ${FIND} erts-* -type f \ X | ${AWK} '{print length, $$0}' | ${SORT} -rn \ X | ${AWK} '{print "lib/riak/"$$2 }' >> ${PLIST} X cd ${WRKSRC}/rel; ${FIND} ${PORTNAME}/lib -type f \ X | ${AWK} '{print length, $$0}' | ${SORT} -rn | ${SED} -e 's/^/lib\//' \ X | ${AWK} '{print "lib/"$$2 }' >> ${PLIST} X cd ${WRKSRC}/rel/${PORTNAME}; ${FIND} releases -type d \ X | ${AWK} '{print length, $$0}' | ${SORT} -rn | ${SED} -e 's/^/lib\//' \ X | ${AWK} '{print "lib/riak/"$$2 }' | ${SED} -e "s/^/@dirrm\ /" >> ${PLIST} X cd ${WRKSRC}/rel/${PORTNAME}; ${FIND} erts-* -type d \ X | ${AWK} '{print length, $$0}' | ${SORT} -rn | ${SED} -e 's/^/lib\//' \ X | ${AWK} '{print "lib/riak/"$$2 }' | ${SED} -e "s/^/@dirrm\ /" >> ${PLIST} X cd ${WRKSRC}/rel; ${FIND} ${PORTNAME}/lib -type d \ X | ${AWK} '{print length, $$0}' | ${SORT} -rn | ${SED} -e 's/^/lib\//' \ X | ${AWK} '{print "lib/"$$2 }' | ${SED} -e "s/^/@dirrm\ /" >> ${PLIST} X ${ECHO} "@dirrm lib/riak" >> ${PLIST} X ${ECHO} "@cwd /" >> ${PLIST} X ${ECHO} "@dirrmtry %%RIAK_DBDIR%%" >> ${PLIST} X Xdo-install: X.for d in ${RIAK_CONFDIR} ${RIAK_LOGDIR} ${RIAK_DBDIR} ${RIAK_LIBDIR} ${RIAK_HOMEDIR} X [ -d ${d} ] || ${MKDIR} ${d} && ${CHOWN} ${USERS}:${GROUPS} ${d} X.endfor X ${INSTALL_DATA} ${WRKSRC}/rel/riak/etc/vm.args ${RIAK_CONFDIR}/vm.args.sample X ${INSTALL_DATA} ${WRKSRC}/rel/riak/etc/app.config ${RIAK_CONFDIR}/app.config.sample X ${INSTALL_DATA} ${WRKSRC}/rel/riak/etc/cert.pem ${RIAK_CONFDIR}/cert.pem.sample X ${INSTALL_DATA} ${WRKSRC}/rel/riak/etc/key.pem ${RIAK_CONFDIR}/key.pem.sample X (cd ${WRKSRC}/rel/riak/lib/ && ${COPYTREE_BIN} . ${RIAK_LIBDIR}) X (cd ${WRKSRC}/rel/riak/bin/ && ${COPYTREE_BIN} . ${PREFIX}/sbin/) X (cd ${WRKSRC}/rel/riak/lib/basho-patches && ${COPYTREE_SHARE} . ${RIAK_LIBDIR}/basho-patches) X (cd ${WRKSRC}/rel/riak/releases && ${COPYTREE_SHARE} . ${RIAK_HOMEDIR}/releases) X ${CP} -R ${WRKSRC}/rel/riak/erts-* ${RIAK_HOMEDIR} X ${CHOWN} -R ${USERS}:${GROUPS} ${PREFIX}/lib/${PORTNAME} X ${INSTALL_MAN} ${WRKSRC}/doc/man/man1/riak.1.gz ${MANPREFIX}/man/man1/ X ${INSTALL_MAN} ${WRKSRC}/doc/man/man1/riak-admin.1.gz ${MANPREFIX}/man/man1/ X ${INSTALL_MAN} ${WRKSRC}/doc/man/man1/riak-debug.1.gz ${MANPREFIX}/man/man1/ X ${INSTALL_MAN} ${WRKSRC}/doc/man/man1/search-cmd.1.gz ${MANPREFIX}/man/man1/ X Xpost-install: X @if [ ! -f ${RIAK_CONFDIR}/vm.args ]; then \ X ${CP} -p ${RIAK_CONFDIR}/vm.args.sample ${RIAK_CONFDIR}/vm.args; \ X fi X @if [ ! -f ${RIAK_CONFDIR}/app.config ]; then \ X ${CP} -p ${RIAK_CONFDIR}/app.config.sample ${RIAK_CONFDIR}/app.config; \ X fi X @if [ ! -f ${RIAK_CONFDIR}/cert.pem ]; then \ X ${CP} -p ${RIAK_CONFDIR}/cert.pem.sample ${RIAK_CONFDIR}/cert.pem; \ X fi X @if [ ! -f ${RIAK_CONFDIR}/key.pem ]; then \ X ${CP} -p ${RIAK_CONFDIR}/key.pem.sample ${RIAK_CONFDIR}/key.pem; \ X fi X X.include b02557be32f458970cad61df99a940cd echo x - riak/pkg-descr sed 's/^X//' >riak/pkg-descr << '44f2053a2ee11c9e5d0b91829dcefeb4' XRiak is a distributed database designed for maximum availability: Xso long as your client can reach one server, it should be able to Xwrite data. In most failure scenarios the data you want to read Xshould be available, albeit possibly stale. X XWWW: http://basho.com/riak/ 44f2053a2ee11c9e5d0b91829dcefeb4 echo x - riak/pkg-plist sed 's/^X//' >riak/pkg-plist << '733d416fc6a6e98a458267846eb36e05' X@stopdaemon riak Xsbin/riak Xsbin/riak-admin Xsbin/riak-debug Xsbin/search-cmd X@exec mkdir -p %%RIAK_CONFDIR%% X@exec mkdir -p %%RIAK_LOGDIR%% X@exec mkdir -p %%RIAK_DBDIR%% X@exec mkdir -p %%RIAK_HOMEDIR%% X@exec mkdir -p %%RIAK_LIBDIR%% X@unexec if cmp -s %D/%%ETCDIR%%/vm.args.sample %D/%%ETCDIR%%/vm.args; then rm -f %D/%%ETCDIR%%/vm.args; fi X%%ETCDIR%%/vm.args.sample X@exec if [ ! -f %D/%%ETCDIR%%/vm.args ] ; then cp -p %D/%F %B/vm.args; fi X@unexec if cmp -s %D/%%ETCDIR%%/app.config.sample %D/%%ETCDIR%%/app.config; then rm -f %D/%%ETCDIR%%/app.config; fi X%%ETCDIR%%/app.config.sample X@exec if [ ! -f %D/%%ETCDIR%%/app.config ] ; then cp -p %D/%F %B/app.config; fi X@unexec if cmp -s %D/%%ETCDIR%%/cert.pem.sample %D/%%ETCDIR%%/cert.pem; then rm -f %D/%%ETCDIR%%/cert.pem; fi X%%ETCDIR%%/cert.pem.sample X@exec if [ ! -f %D/%%ETCDIR%%/cert.pem ] ; then cp -p %D/%F %B/cert.pem; fi X@unexec if cmp -s %D/%%ETCDIR%%/key.pem.sample %D/%%ETCDIR%%/key.pem; then rm -f %D/%%ETCDIR%%/key.pem; fi X%%ETCDIR%%/key.pem.sample X@exec if [ ! -f %D/%%ETCDIR%%/key.pem ] ; then cp -p %D/%F %B/key.pem; fi X@dirrmtry %%ETCDIR%% X@unexec if [ -f %%RIAK_HOMEDIR%%/.erlang.cookie ] ; then rm -f %%RIAK_HOMEDIR%%/.erlang.cookie ; fi 733d416fc6a6e98a458267846eb36e05 echo x - /usr/ports/UIDs sed 's/^X//' >/usr/ports/UIDs << '70b4dd622b8f3ab6d492076615c9b30e' X# $FreeBSD: UIDs 327064 2013-09-12 13:49:24Z feld $ X# Please keep this file sorted by UID! Xoperator:*:2:5::0:0:System &:/:/usr/sbin/nologin Xsmmsp:*:25:25::0:0:Sendmail Submission User:/var/spool/clientmqueue:/usr/sbin/nologin Xbind:*:53:53::0:0:Bind Sandbox:/:/usr/sbin/nologin Xmajordom:*:54:54::0:0:Majordomo Pseudo User:/usr/local/majordomo:/nonexistent Xrdfdb:*:55:55::0:0:rdfDB Daemon:/var/db/rdfdb:/bin/sh Xspamd:*:58:58::0:0:SpamAssassin user:/var/spool/spamd:/usr/sbin/nologin Xunbound:*:59:1::0:0:unbound dns resolver:/nonexistent:/usr/sbin/nologin Xcyrus:*:60:60::0:0:the cyrus mail server:/nonexistent:/nonexistent Xgnats:*:61:1::0:0:GNATS database owner:/usr/local/share/gnats/gnats-db:/bin/sh Xproxy:*:62:62::0:0:Packet Filter pseudo-user:/nonexistent:/nonexistent Xuucp:*:66:66::0:0:UUCP pseudo-user:/var/spool/uucppublic:/usr/libexec/uucp/uucico Xxten:*:67:67::0:0:X-10 daemon:/usr/local/xten:/nonexistent Xpop:*:68:6::0:0:Post Office Owner (popper):/nonexistent:/usr/sbin/nologin Xwnn:*:69:7::0:0:Wnn:/nonexistent:/nonexistent Xpgsql:*:70:70::0:0:PostgreSQL pseudo-user:/usr/local/pgsql:/bin/sh Xoracle:*:71:71::0:0:Oracle:/usr/local/oracle7:/usr/sbin/nologin Xircd:*:72:72::0:0:IRC daemon:/nonexistent:/nonexistent Xircservices:*:73:73::0:0:IRC services:/nonexistent:/nonexistent Xsimscan:*:74:74::0:0:Simscan User:/nonexistent:/usr/sbin/nologin Xifmail:*:75:66::0:0:Ifmail user:/nonexistent:/nonexistent Xhybserv:*:76:76::0:0:HybServ Daemon:/nonexistent:/usr/sbin/nologin Xauditdistd:*:78:77::0:0:Auditdistd unprivileged user:/var/empty:/usr/sbin/nologin Xvirtuoso:*:79:79::0:0:Virtuoso Universal Server:/usr/local/virtuoso:/bin/sh Xwww:*:80:80::0:0:World Wide Web Owner:/nonexistent:/usr/sbin/nologin Xalias:*:81:81::0:0:QMail user:/var/qmail/alias:/nonexistent Xqmaild:*:82:81::0:0:QMail user:/var/qmail:/nonexistent Xqmaill:*:83:81::0:0:QMail user:/var/qmail:/nonexistent Xqmailp:*:84:81::0:0:QMail user:/var/qmail:/nonexistent Xqmailq:*:85:82::0:0:QMail user:/var/qmail:/nonexistent Xqmailr:*:86:82::0:0:QMail user:/var/qmail:/nonexistent Xqmails:*:87:82::0:0:QMail user:/var/qmail:/nonexistent Xmysql:*:88:88::0:0:MySQL Daemon:/var/db/mysql:/usr/sbin/nologin Xvpopmail:*:89:89::0:0:VPop Mail User:/usr/local/vpopmail:/nonexistent Xfirebird:*:90:90::0:0:Firebird Database Administrator:/var/db/firebird:/bin/sh Xmailman:*:91:91::0:0:Mailman User:/usr/local/mailman:/usr/sbin/nologin Xgdm:*:92:92::0:0:GNOME Display Manager:/usr/local/etc/gdm/home:/usr/sbin/nologin Xjabber:*:93:93::0:0:Jabber Daemon:/nonexistent:/nonexistent Xp4admin:*:94:94::0:0:Perforce admin:/nonexistent:/usr/sbin/nologin Xinterch:*:95:95::0:0:Interchange user:/usr/local/interchange:/usr/sbin/nologin Xsqueuer:*:96:96::0:0:SQueuer Owner:/nonexistent:/bin/sh Xmud:*:97:97::0:0:MUD Owner:/nonexistent:/bin/sh Xmsql:*:98:98::0:0:mSQL-2 pseudo-user:/var/db/msqldb:/bin/sh Xrscsi:*:99:99::0:0:Remote SCSI:/usr/local/rscsi:/usr/local/sbin/rscsi Xsquid:*:100:100::0:0:squid caching-proxy pseudo user:/var/squid:/usr/sbin/nologin Xquagga:*:101:101::0:0:Quagga route daemon pseudo user:/usr/local/etc/quagga:/usr/sbin/nologin Xganglia:*:102:102::0:0:Ganglia User:/nonexistent:/usr/sbin/nologin Xsgeadmin:*:103:103::0:0:Sun Grid Engine Admin:/nonexistent:/usr/sbin/nologin Xslimserv:*:104:104::0:0:Slim Devices SlimServer pseudo-user:/nonexistent:/usr/sbin/nologin Xdnetc:*:105:105::0:0:distributed.net client and proxy pseudo-user:/nonexistent:/usr/sbin/nologin Xclamav:*:106:106::0:0:Clamav Antivirus:/nonexistent:/usr/sbin/nologin Xcacti:*:107:107::0:0:Cacti Sandbox:/nonexistent:/usr/sbin/nologin Xwebkit:*:108:108::0:0:WebKit Default User:/usr/local/www/webkit:/bin/sh Xquickml:*:109:109::0:0:quickml Server:/nonexistent:/usr/sbin/nologin Xvscan:*:110:110::0:0:Scanning Virus Account:/var/maiad:/bin/sh Xfido:*:111:111::0:0:Fido System:/usr/local/fido:/bin/sh Xdcc:*:112:112::0:0:Distributed Checksum Clearinghouse:/nonexistent:/usr/sbin/nologin Xamavis:*:113:113::0:0:Amavis-stats Account:/nonexistent:/usr/sbin/nologin Xdhis:*:114:114::0:0:DHIS Daemon:/nonexistent:/usr/sbin/nologin X_symon:*:115:115::0:0:Symon Account:/var/empty:/usr/sbin/nologin Xhplip:*:116:116::0:0:HPLIP Server:/nonexistent:/usr/sbin/nologin Xsmokeping:*:117:117::0:0:SmokePing Daemon:/nonexistent:/usr/sbin/nologin Xircproxyd:*:118:118::0:0:Night Light IRC Proxy:/nonexistent:/usr/sbin/nologin Xmythtv:*:119:119::0:0:MythTV pseudo-user:/nonexistent:/bin/sh Xpdns_recursor:*:120:120::0:0:pdns_recursor pseudo-user:/nonexistent:/usr/sbin/nologin Xotrs:*:121:121::0:0:OTRS Administrator:/usr/local/otrs:/bin/csh Xzabbix:*:122:122::0:0:Zabbix NMS:/nonexistent:/usr/sbin/nologin X_ntp:*:123:123::0:0:NTP Daemon:/var/empty:/usr/sbin/nologin Xfetchmail:*:124:124::0:0:Fetchmail mail-retrieval daemon:/nonexistent:/usr/sbin/nologin Xpostfix:*:125:125::0:0:Postfix Mail System:/var/spool/postfix:/usr/sbin/nologin Xnavcron:*:127:127::0:0:Network Administration Visualized:/usr/local/nav:/usr/sbin/nologin Xvchat:*:128:128::0:0:VChat Conferencing System:/nonexistent:/usr/sbin/nologin X_bgpd:*:130:130::0:0:BGP Daemon:/var/empty:/usr/sbin/nologin X_ospfd:*:131:131::0:0:OSPF Daemon:/var/empty:/usr/sbin/nologin X_spamd:*:132:132::0:0:Spam Daemon:/var/empty:/usr/sbin/nologin Xfreeradius:*:133:133::0:0:FreeRADIUS Daemon:/nonexistent:/usr/sbin/nologin Xundernet:*:134:134::0:0:Undernet ircu Daemon:/nonexistent:/usr/sbin/nologin Xrabbitmq:*:135:135::0:0:RabbitMQ:/var/db/rabbitmq:/usr/sbin/nologin Xdhcpd:*:136:136::0:0:ISC DHCP daemon:/nonexistent:/usr/sbin/nologin Xmpd:*:137:137::0:0:MusicPD pseudo-user:/var/mpd:/usr/sbin/nologin Xwolfpack:*:138:138::0:0:Wolfpack Empire Server:/usr/local/share/wolfpack:/usr/sbin/nologin Xshellinabox:*:139:139::0:0:Shell In A Box:/nonexistent:/usr/sbin/nologin Xamanda:*:140:140::0:0:Amanda Daemon:/var/db/amanda:/usr/sbin/nologin Xcricket:*:141:80::0:0:Cricket Monitoring User:/usr/local/cricket:/usr/sbin/nologin Xladvd:*:142:142::0:0:Ladvd User:/var/empty:/usr/sbin/nologin Xdovecot:*:143:143::0:0:Dovecot User:/var/empty:/usr/sbin/nologin Xdovenull:*:144:144::0:0:Dovecot login User:/var/empty:/usr/sbin/nologin Xwebcamd:*:145:145::0:0:Webcamd user:/var/empty:/usr/sbin/nologin Xventrilo:*:146:146::0:0:& server:/usr/local/ventrilo-server:/usr/sbin/nologin Xkdm:*:147:147::0:0:KDE Display Manager:/nonexistent:/usr/sbin/nologin Xipv6mon:*:148:148::0:0:IPv6 Address Monitoring Daemon:/nonexistent:/usr/sbin/nologin Xavenger:*:149:149::0:0:Mail Avenger:/var/spool/avenger:/usr/sbin/nologin Xrbldns:*:153:153::0:0:rbldnsd pseudo-user:/nonexistent:/usr/sbin/nologin Xtrircd:*:154:154::0:0:& user:/usr/local/etc/tr-ircd:/usr/sbin/nologin Xsfs:*:171:171::0:0:Self-Certifying File System:/nonexistent:/usr/sbin/nologin Xagk:*:172:172::0:0:AquaGateKeeper:/nonexistent:/nonexistent Xpolipo:*:173:173::0:0:polipo web cache:/nonexistent:/usr/sbin/nologin Xflowtools:*:174:174::0:0:Flow-tools collector pseudo-user:/nonexistent:/usr/sbin/nologin Xtwms:*:175:175::0:0:tWMS pseudo-user:/nonexistent:/usr/sbin/nologin Xgdnsd:*:179:179::0:0:gDNSd pseudo-user:/nonexistent:/usr/sbin/nologin Xnagios:*:181:181::0:0:Nagios pseudo-user:/var/spool/nagios:/usr/sbin/nologin Xnoc:*:182:182::0:0:NOC pseudo-user:/usr/local/noc:/bin/sh Xicinga:*:183:183::0:0:Icinga pseudo-user:/var/spool/icinga:/usr/sbin/nologin Xdnscache:*:184:184::0:0:dnscache pseudo-user:/nonexistent:/usr/sbin/nologin Xtinydns:*:185:185::0:0:tinydns pseudo-user:/nonexistent:/usr/sbin/nologin Xdnslog:*:186:186::0:0:dnslog pseudo-user:/nonexistent:/usr/sbin/nologin Xmoinmoin:*:192:192::0:0:MoinMoin User:/nonexistent:/usr/sbin/nologin Xcups:*:193:193::0:0:Cups Owner:/nonexistent:/usr/sbin/nologin Xsaned:*:194:194::0:0:SANE Scanner Daemon:/nonexistent:/bin/sh Xradns:*:195:195::0:0:radns user:/nonexistent:/usr/sbin/nologin Xmcserver:*:199:199::0:0:Minecraft Server:/nonexistent:/bin/sh Xsympa:*:200:200::0:0:Sympa Owner:/nonexistent:/usr/sbin/nologin Xprivoxy:*:201:201::0:0:Privoxy proxy user:/nonexistent:/usr/sbin/nologin Xdspam:*:202:202::0:0:Dspam:/nonexistent:/usr/sbin/nologin Xyate:*:204:204::0:0:Yate:/nonexistent:/usr/sbin/nologin Xgnugk:*:205:205::0:0:GNU GateKeeper pseudo-user:/nonexistent:/usr/sbin/nologin Xgini:*:206:206::0:0:& streaming server:/var/log/gini:/usr/sbin/nologin X_mixminion:*:207:207::0:0:Mixminion server:/nonexistent:/usr/sbin/nologin Xshoutcast:*:210:210::0:0:Shoutcast sandbox:/nonexistent:/bin/sh Xgit:*:211:211::0:0:gitosis user:/usr/local/git:/bin/sh Xhg:*:212:212::0:0:mercurial-server user:/usr/local/hg:/bin/sh Xdrizzle:*:213:213::0:0:Drizzle daemon:/var/db/drizzle:/usr/sbin/nologin Xopendnssec:*:215:215::0:0:Opendnssec Pseudo User:/nonexistent:/usr/sbin/nologin Xbs:*:220:220::0:0:Big Sister:/usr/local/bigsister:/bin/sh Xrtpproxy:*:222:222::0:0:& user:/nonexistent:/sbin/nologin Xpostgrey:*:225:225::0:0:Postgrey Owner:/nonexistent:/usr/sbin/nologin Xsqlgrey:*:226:226::0:0:SQLgrey Owner:/nonexistent:/usr/sbin/nologin Xaprsd:*:240:240::0:0:aprsd:/nonexistent:/bin/sh Xtnc:*:241:241::0:0:aprsd:/nonexistent:/bin/sh Xprosody:*:242:242::0:0:Prosody Jabber Server:/nonexistent:/usr/sbin/nologin Xfcron:*:247:247::0:0:fcron pseudo-user:/nonexistent:/usr/sbin/nologin X_adsuck:*:253:253::0:0:Adsuck ad blocking user:/nonexistent:/usr/sbin/nologin X_tor:*:256:256::0:0:Tor anonymizing router:/var/db/tor:/usr/sbin/nologin X_smtpd:*:257:257::0:0:OpenSMTPD:/var/empty:/usr/sbin/nologin X_smtpq:*:258:257::0:0:OpenSMTPD queue user:/var/empty:/usr/sbin/nologin X_smtpf:*:259:257::0:0:OpenSMTPD filter user:/var/empty:/usr/sbin/nologin Xmeta1s:*:260:260::0:0:MeTA1 SMTPS:/nonexistent:/usr/sbin/nologin Xmeta1q:*:261:261::0:0:MeTA1 QMGR:/nonexistent:/usr/sbin/nologin Xmeta1c:*:262:262::0:0:MeTA1 SMTPC:/nonexistent:/usr/sbin/nologin Xmeta1m:*:263:263::0:0:MeTA1 misc:/nonexistent:/usr/sbin/nologin Xmeta1:*:264:264::0:0:MeTA1 other:/nonexistent:/usr/sbin/nologin Xhacluster:*:275:275::0:0:Heartbeat cluster user:/nonexistent:/usr/sbin/nologin Xfrontbase:*:276:276::0:0:FrontBase Daemon:/usr/local/FrontBase/Databases:/bin/sh Xmrtg:*:279:279::0:0:MRTG daemon:/nonexistent:/usr/sbin/nologin Xxymon:*:280:280::0:0:Xymon Monitor:/nonexistent:/usr/sbin/nologin Xprelude:*:281:281::0:0:Prelude user:/nonexistent:/usr/sbin/nologin Xspread:*:282:282::0:0:Spread user:/nonexistent:/usr/sbin/nologin Xdevmon:*:283:283::0:0:devmon monitor:/nonexistent:/usr/sbin/nologin Xvnstat:*:284:284::0:0:vnStat Network Monitor:/nonexistent:/usr/sbin/nologin Xbackuppc:*:300:300::0:0:BackupPC pseudo-user:/nonexistent:/usr/sbin/nologin X_sphinx:*:312:312::0:0:Sphinxsearch Owner:/nonexistent:/usr/sbin/nologin Xdkfilter:*:325:325::0:0:DK Filter Owner:/nonexistent:/usr/sbin/nologin X_pma:*:336:80::0:0:phpMyAdmin Owner:/nonexistent:/usr/sbin/nologin Xdaapd:*:337:337::0:0:daapd User:/nonexistent:/usr/sbin/nologin Xmurmur:*:338:338::0:0:& User:/nonexistent:/usr/sbin/nologin Xwildfire:*:340:340::0:0:Wildfire Daemon:/nonexistent:/usr/sbin/nologin Xstunnel:*:341:341::0:0:Stunnel Daemon:/nonexistent:/usr/sbin/nologin Xopenfire:*:342:342::0:0:Openfire IM Daemon:/nonexistent:/usr/sbin/nologin X_sabnzbd:*:350:350::0:0:sabnzb Daemon:/nonexistent:/usr/sbin/nologin X_iodined:*:353:353::0:0:Iodine Daemon:/nonexistent:/usr/sbin/nologin Xhttptunnel:*:361:361::0:0:httptunnel Daemon:/nonexistent:/usr/sbin/nologin Xldap:*:389:389::0:0:OpenLDAP Server:/nonexistent:/usr/sbin/nologin Xtiarra:*:398:398::0:0:Tiarra IRC Proxy:/nonexistent:/usr/sbin/nologin Xuhub:*:411:411::0:0:uHub ADC Daemon:/nonexistent:/usr/sbin/nologin Xdrweb:*:426:426::0:0:Dr.Web Mail Scanner:/nonexistent:/usr/sbin/nologin Xquasselcore:*:442:442::0:0:Quassel IRC User:/nonexistent:/usr/sbin/nologin Xcallweaver:*:444:444::0:0:Callweaver account:/var/lib/callweaver:/usr/sbin/nologin Xcourier:*:465:465::0:0:Courier Mail Server:/nonexistent:/usr/sbin/nologin Xcondor:*:466:466::0:0:& user:/home/condor:/usr/sbin/nologin Xnetmon:*:467:467::0:0:Network monitor account:/var/netmon:/usr/sbin/nologin X_bbstored:*:505:505::0:0:Box Backup Store Daemon:/nonexistent:/usr/sbin/nologin Xradmind:*:506:506::0:0:radmind User:/var/radmind:/usr/sbin/nologin Xskkserv:*:507:507::0:0:skkserv User:/nonexistent:/usr/sbin/nologin Xnullmail:*:522:522::0:0:Nullmailer Mail System:/var/spool/nullmailer:/bin/sh Xdkimproxy:*:525:525::0:0:DKIM Proxy Owner:/nonexistent:/usr/sbin/nologin Xpgbouncer:*:534:534::0:0:Pgbouncer Daemon:/nonexistent:/usr/sbin/nologin Xredis:*:535:535::0:0:Redis Daemon:/nonexistent:/usr/sbin/nologin X_flowd:*:542:542::0:0:flowd privilege separation user:/var/empty:/usr/sbin/nologin Xejabberd:*:543:543::0:0:ejabberd pseudo user:/var/spool/ejabberd:/bin/sh Xqtss:*:554:554::0:0:Darwin Streaming Server:/nonexistent:/usr/sbin/nologin Xircdru:*:555:555::0:0:Russian hybrid IRC server:/nonexistent:/bin/sh Xmessagebus:*:556:556::0:0:D-BUS Daemon User:/nonexistent:/usr/sbin/nologin Xavahi:*:558:558::0:0:Avahi Daemon User:/nonexistent:/usr/sbin/nologin Xtacacs:*:559:559::0:0:TACACS+ Daemon User:/nonexistent:/usr/sbin/nologin Xhaldaemon:*:560:560::0:0:HAL Daemon User:/nonexistent:/usr/sbin/nologin Xdistcc:*:561:561::0:0:Distcc user:/nonexistent:/usr/sbin/nologin Xpolkit:*:562:562::0:0:PolicyKit User:/nonexistent:/usr/sbin/nologin Xpulse:*:563:563::0:0:PulseAudio System User:/nonexistent:/usr/sbin/nologin Xassp:*:587:587::0:0:ASSP Anti-Spam Proxy:/var/db/assp:/usr/sbin/nologin Xavahi-autoipd:*:588:588::0:0:Avahi Autoipd Daemon user:/nonexistent:/usr/sbin/nologin X_xsi:*:600:600::0:0:XMLSysInfo User:/nonexistent:/usr/sbin/nologin X_tss:*:601:601:daemon:0:0:TrouSerS user:/var/empty:/usr/sbin/nologin X_pkcs11:*:602:602:daemon:0:0:opencryptoki user:/var/empty:/usr/sbin/nologin Xfreeswitch:*:610:610::0:0:Freeswitch user:/nonexistent:/usr/sbin/nologin X_pla:*:636:80::0:0:phpLDAPAdmin Owner:/nonexistent:/usr/sbin/nologin Xmonkeysphere:*:641:641::0:0:Monkeysphere User:/var/monkeysphere:/usr/local/bin/bash Xaox:*:666:666::0:0:Archiveopteryx user:/nonexistent:/usr/sbin/nologin Xriak:*:667:667::0:0:Riak user:/usr/local/lib/riak:/bin/sh Xbnetd:*:700:700::0:0:Bnetd user:/nonexistent:/usr/sbin/nologin Xbopm:*:717:717::0:0:Blitzed Open Proxy Monitor:/nonexistent:/bin/sh Xopenxpki:*:777:777::0:0:OpenXPKI Owner:/nonexistent:/usr/sbin/nologin Xpuppet:*:814:814::0:0:Puppet Daemon:/nonexistent:/usr/sbin/nologin Xjenkins:*:818:818::0:0:Jenkins CI:/usr/local/jenkins:/bin/sh Xopenacs:*:820:820::0:0:OpenACS Daemon User:/nonexistent:/usr/sbin/nologin Xdotlrn:*:821:821::0:0:.LRN Daemon User:/nonexistent:/usr/sbin/nologin Xpolw:*:825:825::0:0:Policyd-weight Cache Owner:/nonexistent:/sbin/nologin Xnetdisco:*:840:840::0:0:netdisco daemon:/nonexistent:/usr/sbin/nologin Xmunin:*:842:842::0:0:Munin:/var/munin:/usr/sbin/nologin Xfossy:*:901:901::0:0:FOSSology user:/usr/local/share/fossology:/usr/local/bin/bash Xbacula:*:910:910::0:0:Bacula Daemon:/var/db/bacula:/usr/sbin/nologin Xiserv:*:911:911::0:0:Iserv Daemon:/nonexistent:/usr/sbin/nologin X_sj3:*:912:912::0:0:SJ3 Daemon:/nonexistent:/usr/sbin/nologin X_relayd:*:913:913::0:0:Relay Daemon:/var/empty:/usr/sbin/nologin Xbitlbee:*:914:914::0:0:Bitlbee pseudo-user:/var/db/bitlbee:/usr/sbin/nologin Xlogcheck:*:915:915::0:0:Logcheck system account:/var/lib/logcheck:/usr/local/bin/bash X_prayer:*:917:917::0:0:Prayer Account:/nonexistent:/usr/sbin/nologin Xnefu:*:918:918::0:0:Nefu daemon:/var/db/nefu:/usr/sbin/nologin Xcouchdb:*:919:919::0:0:CouchDB Account:/var/empty:/usr/sbin/nologin Xvboxusers:*:920:920::0:0:Virtualbox user:/nonexistent:/usr/sbin/nologin Xtransmission:*:921:921::0:0:Transmission Daemon User:/usr/local/etc/transmission/home:/usr/sbin/nologin Xmongodb:*:922:922::0:0:MongoDB pseudo-user:/var/db/mongodb:/usr/sbin/nologin Xliquidsoap:*:923:923::0:0:Liquidsoap User:/nonexistent:/usr/sbin/nologin Xpostpals:*:924:924::0:0:postpals user:/nonexistent:/usr/sbin/nologin Xmfs:*:925:925::0:0:MooseFS User:/nonexistent:/usr/sbin/nologin Xminbif:*:926:926::0:0:Minbif Daemon User:/nonexistent:/usr/sbin/nologin Xkumofs:*:927:927::0:0:kumofs daemon:/nonexistent:/usr/sbin/nologin Xnslcd:*:928:928::0:0:nslcd daemon:/nonexistent:/usr/sbin/nologin Xactivemq:*:929:929::0:0:ActiveMQ Daemon:/nonexistent:/usr/sbin/nologin Xifgraph:*:930:930::0:0:ifGraph:/nonexistent:/usr/sbin/nologin Xasterisk:*:931:931::0:0:Asterisk User:/nonexistent:/usr/sbin/nologin Xsancp:*:932:932::0:0:SANCP Daemon:/var/log/sancp:/usr/sbin/nologin Xdlna:*:933:933::0:0:DLNA Daemon:/nonexistent:/usr/sbin/nologin Xtorrus:*:934:934::0:0:torrus daemon:/nonexistent:/usr/sbin/nologin Xerlyvideo:*:935:935::0:0:erlyvideo user:/nonexistent:/usr/sbin/nologin Xcrtmpserver:*:936:936::0:0:crtmpserver user:/nonexistent:/usr/sbin/nologin Xget_iplayer:*:937:937::0:0:get_iplayer user:/nonexistent:/usr/sbin/nologin Xvdr:*:938:938::0:0:vdr user:/nonexistent:/usr/sbin/nologin Xnoip:*:939:939::0:0:noip user:/nonexistent:/usr/sbin/nologin X_tcpproxy:*:940:940::0:0:tcpproxy user:/nonexistent:/usr/sbin/nologin Xcego:*:941:941::0:0:cego user:/usr/local/cego:/usr/sbin/nologin Xteamspeak:*:942:942::0:0:TeamSpeak user:/nonexistent:/usr/sbin/nologin Xdnetfold:*:943:943::0:0:& user:/nonexistent:/usr/sbin/nologin Xbbs:*:944:944::0:0:& user:/nonexistent:/usr/sbin/nologin Xdbxml:*:945:945::0:0:& user:/nonexistent:/usr/sbin/nologin Xsybase:*:946:946::0:0:& user:/usr/local/sybase-ase:/usr/sbin/nologin Xdnrd:*:948:948::0:0:& user:/nonexistent:/usr/sbin/nologin Xzenoss:*:949:949::0:0:& user:/usr/local/zenoss:/bin/sh Xopenerpd:*:951:951::0:0:Openerpd user:/nonexistent:/usr/sbin/nologin Xbitten-slave:*:952:952:daemon:0:0:Bitten slave user:/var/lib/bitten-slave:/usr/sbin/nologin X_neubot:*:953:953::0:0:neubot daemon:/nonexistent:/usr/sbin/nologin Xoops:*:954:65534::0:0:oops user:/nonexistent:/usr/sbin/nologin Xhadoop:*:955:955::0:0:hadoop user:/nonexistent:/usr/sbin/nologin Xpandora:*:956:956::0:0:Pandora FMS user:/usr/local/etc/pandora/home:/usr/sbin/nologin Xrazorback:*:957:957::0:0:Razorback user:/var/run/razorback:/usr/sbin/nologin Xgnunet:*:958:958::0:0:GNUnet daemon:/var/lib/gnunet:/usr/sbin/nologin Xc_icap:*:959:959::0:0:c-icap daemon:/var/empty:/usr/sbin/nologin Xtrytond:*:960:960::0:0:trytond daemon:/var/empty:/usr/sbin/nologin Xgearmand:*:961:961::0:0:gearmand daemon:/var/empty:/usr/sbin/nologin Xzookeeper:*:962:962::0:0:zookeeper user:/nonexistent:/usr/sbin/nologin Xfluentd:*:963:963::0:0:fluentd user:/nonexistent:/usr/sbin/nologin Xgit_daemon:*:964:964::0:0:git daemon:/nonexistent:/usr/sbin/nologin Xelasticsearch:*:965:965::0:0:elasticsearch user:/nonexistent:/usr/sbin/nologin Xossec:*:966:966::0:0:OSSEC user:/usr/local/ossec-hids:/usr/sbin/nologin Xossecm:*:967:966::0:0:OSSEC mail user:/usr/local/ossec-hids:/usr/sbin/nologin Xossecr:*:968:966::0:0:OSSEC rem user:/usr/local/ossec-hids:/usr/sbin/nologin Xkippo:*:969:969::0:0:kippo user:/nonexistent:/usr/sbin/nologin Xcolord:*:970:970::0:0:colord color management daemon:/nonexistent:/usr/sbin/nologin Xshibd:*:971:971::0:0:Shibboleth SAML daemon:/nonexistent:/usr/sbin/nologin Xplex:*:972:972::0:0:Plex Media Server:/nonexistent:/usr/sbin/nologin Xboinc:*:973:973::0:0:BOINC user:/var/db/boinc:/usr/sbin/nologin Xradicale:*:974:974::0:0:Radicale daemon:/nonexistent:/usr/sbin/nologin Xnobody:*:65534:65534::0:0:Unprivileged user:/nonexistent:/usr/sbin/nologin 70b4dd622b8f3ab6d492076615c9b30e echo x - /usr/ports/GIDs sed 's/^X//' >/usr/ports/GIDs << '85a7083bbb0ae1626d29d7a232cd8f2e' X# $FreeBSD: GIDs 327064 2013-09-12 13:49:24Z feld $ X# Please keep this file sorted by GID! Xoperator:*:5:amanda Xmail:*:6:postfix,clamav Xsmmsp:*:25: Xbind:*:53: Xrdfdb:*:55: Xspamd:*:58: Xcyrus:*:60: Xproxy:*:62: Xauthpf:*:63: Xuucp:*:66: Xxten:*:67: Xdialer:*:68: Xnetwork:*:69: Xpgsql:*:70: Xircd:*:72: Xircservices:*:73: Xsimscan:*:74: Xhybserv:*:76: Xaudit:*:77: Xvirtuoso:*:79: Xwww:*:80: Xqnofiles:*:81: Xqmail:*:82: Xmysql:*:88: Xvchkpw:*:89: Xfirebird:*:90: Xmailman:*:91: Xgdm:*:92: Xjabber:*:93: Xp4admin:*:94: Xinterch:*:95: Xsqueuer:*:96: Xmud:*:97: Xmsql:*:98: Xrscsi:*:99: Xsquid:*:100: Xquagga:*:101: Xganglia:*:102: Xsgeadmin:*:103: Xslimserv:*:104: Xdnetc:*:105: Xclamav:*:106: Xcacti:*:107: Xwebkit:*:108: Xquickml:*:109: Xvscan:*:110: Xfido:*:111: Xdcc:*:112: Xamavis:*:113: Xdhis:*:114: X_symon:*:115: Xsmokeping:*:117: Xircproxyd:*:118: Xmythtv:*:119: Xpdns:*:120: Xotrs:*:121: Xzabbix:*:122: X_ntp:*:123: Xfetchmail:*:124: Xpostfix:*:125: Xmaildrop:*:126: Xnav:*:127: Xvchat:*:128: Xvlock:*:129: X_bgpd:*:130: X_ospfd:*:131: X_spamd:*:132: Xfreeradius:*:133: Xundernet:*:134: Xrabbitmq:*:135: Xdhcpd:*:136: Xmpd:*:137: Xwolfpack:*:138: Xshellinabox:*:139: Xamanda:*:140: Xladvd:*:142: Xdovecot:*:143: Xdovenull:*:144: Xwebcamd:*:145: Xventrilo:*:146: Xkdm:*:147: Xipv6mon:*:148: Xavenger:*:149: Xrbldns:*:153: Xtrircd:*:154: Xsfs:*:171: Xagk:*:172: Xpolipo:*:173: Xflowtools:*:174: Xtwms:*:175: Xgdnsd:*:179: Xrt:*:180: Xnagios:*:181: Xnoc:*:182: Xicinga:*:183: Xdnscache:*:184: Xtinydns:*:185: Xdnslog:*:186: Xmoinmoin:*:192: Xcups:*:193: Xsaned:*:194: Xradns:*:195: Xmcserver:*:199: Xsympa:*:200: Xprivoxy:*:201: Xdspam:*:202: Xyate:*:204: Xgnugk:*:205: Xgini:*:206: X_mixminion:*:207: Xshoutcast:*:210: Xgit:*:211: Xhg:*:212: Xdrizzle:*:213: Xopendnssec:*:215: Xbs:*:220: Xrtpproxy:*:222: Xpostgrey:*:225: Xsqlgrey:*:226: Xkismet:*:229: Xaprsd:*:240: Xtnc:*:241: Xprosody:*:242: Xfcron:*:247: X_adsuck:*:253: X_tor:*:256: X_smtpd:*:257: Xmeta1s:*:260: Xmeta1q:*:261: Xmeta1c:*:262:meta1s Xmeta1m:*:263:meta1s,meta1q Xmeta1:*:264: Xhaclient:*:275: Xfrontbase:*:276: Xmrtg:*:279: Xxymon:*:280: Xprelude:*:281: Xspread:*:282: Xdevmon:*:283: Xvnstat:*:284: Xbackuppc:*:300: X_sphinx:*:312: Xdkfilter:*:325: Xdaapd:*:337: Xmurmur:*:338: Xwildfire:*:340: Xstunnel:*:341: Xopenfire:*:342: X_sabnzbd:*:350: X_iodined:*:353: Xhttptunnel:*:361: Xldap:*:389: Xtiarra:*:398: Xuhub:*:411: Xdrweb:*:426: Xquasselcore:*:442: Xcallweaver:*:444: Xcourier:*:465: Xcondor:*:466: Xnetmon:*:467: X_bbstored:*:505: Xradmind:*:506: Xskkserv:*:507: Xnullmail:*:522: Xdkimproxy:*:525: Xpgbouncer:*:534: Xredis:*:535: X_flowd:*:542: Xejabberd:*:543: Xqtss:*:554: Xircdru:*:555: Xmessagebus:*:556: Xpulse-rt:*:557: Xavahi:*:558: Xtacacs:*:559: Xhaldaemon:*:560: Xdistcc:*:561: Xpolkit:*:562: Xpulse:*:563: Xpulse-access:*:564: Xassp:*:587: Xavahi-autoipd:*:588: X_xsi:*:600: X_tss:*:601:_tss X_pkcs11:*:602:_pkcs11 Xfreeswitch:*:610: Xmonkeysphere:*:641: Xaox:*:666: Xriak:*:667: Xbnetd:*:700: Xbopm:*:717: Xopenxpki:*:777: Xpuppet:*:814: Xjenkins:*:818: Xopenacs:*:820: Xdotlrn:*:821: Xpolw:*:825: Xnetdisco:*:840: Xmunin:*:842: Xdahdi:*:843:asterisk Xfossy:*:901:www Xbacula:*:910: Xiserv:*:911: X_sj3:*:912: X_relayd:*:913: Xbitlbee:*:914: Xlogcheck:*:915: Xssmtp:*:916: Xprayer:*:917: Xnefu:*:918: Xcouchdb:*:919: Xvboxusers:*:920: Xtransmission:*:921: Xmongodb:*:922: Xliquidsoap:*:923: Xpostpals:*:924: Xmfs:*:925: Xminbif:*:926: Xkumofs:*:927: Xnslcd:*:928: Xactivemq:*:929: Xifgraph:*:930: Xasterisk:*:931: Xsancp:*:932: Xdlna:*:933: Xtorrus:*:934:www Xerlyvideo:*:935: Xcrtmpserver:*:936: Xget_iplayer:*:937: Xvdr:*:938: Xnoip:*:939: X_tcpproxy:*:940: Xcego:*:941: Xteamspeak:*:942: Xdnetfold:*:943: Xbbs:*:944: Xdbxml:*:945: Xsybase:*:946: Xgnokii:*:947: Xdnrd:*:948: Xzenoss:*:949: Xconquest:*:950: Xopenerpd:*:951: Xbitten-slave:*:952: X_neubot:*:953: Xhadoop:*:955: Xpandora:*:956: Xrazorback:*:957: Xgnunet:*:958: Xc_icap:*:959: Xtrytond:*:960: Xgearmand:*:961: Xzookeeper:*:962: Xfluentd:*:963: Xgit_daemon:*:964: Xelasticsearch:*:965: Xossec:*:966: Xkippo:*:969: Xcolord:*:970: Xshibd:*:971: Xplex:*:972: Xboinc:*:973: Xradicale:*:974: Xnogroup:*:65533: Xnobody:*:65534: 85a7083bbb0ae1626d29d7a232cd8f2e exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 12:20:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id D78AAAF6 for ; Mon, 23 Sep 2013 12:20:01 +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 B5E8827F6 for ; Mon, 23 Sep 2013 12:20:01 +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 r8NCK1e7090284 for ; Mon, 23 Sep 2013 12:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8NCK1iJ090283; Mon, 23 Sep 2013 12:20:01 GMT (envelope-from gnats) Resent-Date: Mon, 23 Sep 2013 12:20:01 GMT Resent-Message-Id: <201309231220.r8NCK1iJ090283@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, Rodrigo (ros) OSORIO 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 9FD3B917 for ; Mon, 23 Sep 2013 12:12:44 +0000 (UTC) (envelope-from rodrigo@bebik.net) Received: from smtp1-g21.free.fr (smtp1-g21.free.fr [IPv6:2a01:e0c:1:1599::10]) by mx1.freebsd.org (Postfix) with ESMTP id 194EF27AD for ; Mon, 23 Sep 2013 12:12:42 +0000 (UTC) Received: from oldfaithful.bebik.local (unknown [82.227.164.69]) by smtp1-g21.free.fr (Postfix) with ESMTP id A4CC994001E for ; Mon, 23 Sep 2013 14:12:36 +0200 (CEST) Received: by oldfaithful.bebik.local (Postfix, from userid 1001) id A870A8056E3; Mon, 23 Sep 2013 14:02:34 +0200 (CEST) Message-Id: <20130923120234.A870A8056E3@oldfaithful.bebik.local> Date: Mon, 23 Sep 2013 14:02:34 +0200 (CEST) From: Rodrigo (ros) OSORIO To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/182318: new port: www/slowcgi X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: "Rodrigo OSORIO \(ros\)" List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Sep 2013 12:20:01 -0000 >Number: 182318 >Category: ports >Synopsis: new port: www/slowcgi >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: Mon Sep 23 12:20:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Rodrigo (ros) OSORIO >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD sisko 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Add new port www/slowcgi, a small and efficient fastcgi server imported from OpenBSD[1]. I did some changes regarding the user/group used by slowcgi, I add a slowcgi/slowcgi user (see GIDs and UIDs patch) with a home located in /var/slowcgi used to chroot lowcgi. This is a nologin account. The user www has been added to the slowcgi group in order to access the socket without changing the perms. Manpage was updated to reflect that changes. [1] http://www.openbsd.org/cgi-bin/man.cgi?query=slowcgi&manpath=OpenBSD%20Current&sektion=8&format=html >How-To-Repeat: >Fix: --- slowcgi.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # slowcgi # slowcgi/files # slowcgi/files/patch-slowcgi.c # slowcgi/files/patch-slowcgi.8 # slowcgi/files/slowcgi.in # slowcgi/pkg-descr # slowcgi/distinfo # slowcgi/Makefile # echo c - slowcgi mkdir -p slowcgi > /dev/null 2>&1 echo c - slowcgi/files mkdir -p slowcgi/files > /dev/null 2>&1 echo x - slowcgi/files/patch-slowcgi.c sed 's/^X//' >slowcgi/files/patch-slowcgi.c << '99bdc35e6fa14ae10614e7063cbf1d33' X--- slowcgi.c 2013-08-30 08:10:23.000000000 +0000 X+++ slowcgi.c 2013-09-19 11:48:54.000000000 +0000 X@@ -16,12 +16,14 @@ X * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. X */ X X+#include X #include X #include X #include X #include X #include X #include X+#include X #include X #include X #include X@@ -38,7 +40,7 @@ X #include X X #define TIMEOUT_DEFAULT 120 X-#define SLOWCGI_USER "www" X+#define SLOWCGI_USER "slowcgi" X #define FCGI_RECORD_SIZE 64*1024 X #define STDOUT_DONE 1 X #define STDERR_DONE 2 X@@ -145,7 +147,7 @@ X uint8_t protocol_status; X uint8_t reserved[3]; X }__packed; X-__dead void usage(void); X+__dead2 void usage(void); X void slowcgi_listen(char *, gid_t); X void slowcgi_paused(int, short, void*); X void slowcgi_accept(int, short, void*); X@@ -211,7 +213,7 @@ X #define linfo(_f...) logger->info(_f) X #define ldebug(_f...) logger->debug(_f) X X-__dead void X+__dead2 void X usage(void) X { X extern char *__progname; X@@ -223,7 +225,7 @@ X struct slowcgi_proc slowcgi_proc; X int debug = 0; X int on = 1; X-char *fcgi_socket = "/var/www/run/slowcgi.sock"; X+char *fcgi_socket = "/var/run/slowcgi.sock"; X X int X main(int argc, char *argv[]) 99bdc35e6fa14ae10614e7063cbf1d33 echo x - slowcgi/files/patch-slowcgi.8 sed 's/^X//' >slowcgi/files/patch-slowcgi.8 << '472a45e6a25623b4419752163bf09411' X--- slowcgi.8 2013-08-26 12:10:40.000000000 +0000 X+++ slowcgi.8 2013-09-19 12:01:49.000000000 +0000 X@@ -30,13 +30,13 @@ X .Pp X .Nm X opens a socket at X-.Pa /var/www/run/slowcgi.sock , X-owned by root:www, X+.Pa /var/run/slowcgi.sock , X+owned by slowcgi:slowcgi, X with permissions 0660. X It then X .Xr chroot 8 X to X-.Pa /var/www . X+.Pa /var/slowcgi . X .Pp X The options are as follows: X .Bl -tag -width Ds 472a45e6a25623b4419752163bf09411 echo x - slowcgi/files/slowcgi.in sed 's/^X//' >slowcgi/files/slowcgi.in << '1b787b76109d21f68500cb226c500374' X#!/bin/sh X X# $FreeBSD$ X# X# PROVIDE: slowcgi X# REQUIRE: LOGIN X# KEYWORD: shutdown X# X# Add the following lines to /etc/rc.conf.local or /etc/rc.conf X# to enable this service: X# X# slowcgi_enable (bool): Set to NO by default. X# Set it to YES to enable slowcgi. X# slowcgi_socket (path): Set to /var/run/slowcgi.sock X# by default. X X. /etc/rc.subr X Xname=slowcgi Xrcvar=slowcgi_enable X Xload_rc_config $name X: ${slowcgi_enable:="NO"} X: ${slowcgi_socket="/var/run/slowcgi.sock"} X Xcommand=%%PREFIX%%/bin/${name} X Xcommand_args="-s $slowcgi_socket" Xrun_rc_command "$1" 1b787b76109d21f68500cb226c500374 echo x - slowcgi/pkg-descr sed 's/^X//' >slowcgi/pkg-descr << 'd172c179eb686787b6a57ab1c1d67bd7' XSimple and lightweight server which implements Xthe FastCGI Protocol to execute CGI scripts X XWWW: http://ftp.fr.openbsd.org/pub/OpenBSD/src/usr.sbin/slowcgi/ d172c179eb686787b6a57ab1c1d67bd7 echo x - slowcgi/distinfo sed 's/^X//' >slowcgi/distinfo << 'e6a82b58f64e4b36e6cfc2cc242b2032' XSHA256 (slowcgi-1.4.tar.gz) = 6ebd08b3f7cfc20bb2de108c13125274875cc40ee07c81e0920834c41a46b0e8 XSIZE (slowcgi-1.4.tar.gz) = 7229 e6a82b58f64e4b36e6cfc2cc242b2032 echo x - slowcgi/Makefile sed 's/^X//' >slowcgi/Makefile << '32c35e81946d890ae8fe485a00aa65a0' X# Created by: Rodrigo OSORIO X# $FreeBSD$ X XPORTNAME= slowcgi XPORTVERSION= 1.4 XCATEGORIES= www XMASTER_SITES= http://rodrigo.osorio.free.fr/freebsd/distfiles/ X XMAINTAINER= rodrigo@bebik.net XCOMMENT= Simple fastcgi server to execute CGI scripts X XLICENSE= BSD X XLIB_DEPENDS= libevent.so:${PORTSDIR}/devel/libevent X XPLIST_FILES+= bin/slowcgi XUSE_RC_SUBR= slowcgi X XMANCOMPRESSED= yes X XUSERS= slowcgi XGROUPS= slowcgi X XMAN8= slowcgi.8 X XCFLAGS+= -I${LOCALBASE}/include/event/compat -I${LOCALBASE}/include XLDFLAGS+= -L${LOCALBASE}/lib X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/${PORTNAME} X ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.8.gz ${MAN1PREFIX}/man/man8 X X.include 32c35e81946d890ae8fe485a00aa65a0 exit --- slowcgi.shar ends here --- --- slowcgi_uidgid.diff begins here --- Index: /usr/ports/UIDs =================================================================== --- /usr/ports/UIDs (revision 327609) +++ /usr/ports/UIDs (working copy) @@ -269,4 +269,5 @@ plex:*:972:972::0:0:Plex Media Server:/nonexistent:/usr/sbin/nologin boinc:*:973:973::0:0:BOINC user:/var/db/boinc:/usr/sbin/nologin radicale:*:974:974::0:0:Radicale daemon:/nonexistent:/usr/sbin/nologin +slowcgi:*:975:975::0:0:slowcgi daemon:/var/slowcgi:/usr/sbin/nologin nobody:*:65534:65534::0:0:Unprivileged user:/nonexistent:/usr/sbin/nologin Index: /usr/ports/GIDs =================================================================== --- /usr/ports/GIDs (revision 327609) +++ /usr/ports/GIDs (working copy) @@ -262,5 +262,6 @@ plex:*:972: boinc:*:973: radicale:*:974: +slowcgi:*:975:www nogroup:*:65533: nobody:*:65534: --- slowcgi_uidgid.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 12:20:21 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 1E2F1B53; Mon, 23 Sep 2013 12:20:21 +0000 (UTC) (envelope-from edwin@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 E534A281E; Mon, 23 Sep 2013 12:20:20 +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 r8NCKKW8090362; Mon, 23 Sep 2013 12:20:20 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8NCKKkc090361; Mon, 23 Sep 2013 12:20:20 GMT (envelope-from edwin) Date: Mon, 23 Sep 2013 12:20:20 GMT Message-Id: <201309231220.r8NCKKkc090361@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182318: new port: www/slowcgi 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: Mon, 23 Sep 2013 12:20:21 -0000 Synopsis: new port: www/slowcgi Class-Changed-From-To: update->change-request Class-Changed-By: edwin Class-Changed-When: Mon Sep 23 12:20:20 UTC 2013 Class-Changed-Why: Fix category (new ports should be change-requests) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182318 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 12:50:01 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 0FE6A3F2 for ; Mon, 23 Sep 2013 12:50:01 +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 CA94F29B0 for ; Mon, 23 Sep 2013 12:50: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 r8NCo0JI095498 for ; Mon, 23 Sep 2013 12:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8NCo0hY095497; Mon, 23 Sep 2013 12:50:00 GMT (envelope-from gnats) Resent-Date: Mon, 23 Sep 2013 12:50:00 GMT Resent-Message-Id: <201309231250.r8NCo0hY095497@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, Walter Hurry Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 9541E373 for ; Mon, 23 Sep 2013 12:45:00 +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 840F62970 for ; Mon, 23 Sep 2013 12:45:00 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8NCj0JF080124 for ; Mon, 23 Sep 2013 12:45:00 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8NCj0EC080119; Mon, 23 Sep 2013 12:45:00 GMT (envelope-from nobody) Message-Id: <201309231245.r8NCj0EC080119@oldred.freebsd.org> Date: Mon, 23 Sep 2013 12:45:00 GMT From: Walter Hurry To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182320: emulators/virtualbox-ose-additions will not compile on HEAD 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: Mon, 23 Sep 2013 12:50:01 -0000 >Number: 182320 >Category: ports >Synopsis: emulators/virtualbox-ose-additions will not compile on HEAD >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Sep 23 12:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Walter Hurry >Release: 10.0-ALPHA1 >Organization: >Environment: FreeBSD freebsd.vm 10.0-ALPHA1 FreeBSD 10.0-ALPHA1 #1 r255587: Mon Sep 16 09:04:09 BST 2013 root@freebsd.vm:/usr/obj/usr/src/sys/VM10 amd64 >Description: emulators/virtualbox-ose-additions will not compile. The error message is: kBuild: Installing VBoxService => /usr/ports/emulators/virtualbox-ose-additions/work/VirtualBox-4.2.18/out/freebsd.amd64/release/bin/additions/VBoxService /usr/bin/ld: cannot find -lsupc++ >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 12:50:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 8E6773F4 for ; Mon, 23 Sep 2013 12:50:01 +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 6F47F29B2 for ; Mon, 23 Sep 2013 12:50:01 +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 r8NCo1BS095564 for ; Mon, 23 Sep 2013 12:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8NCo1gb095562; Mon, 23 Sep 2013 12:50:01 GMT (envelope-from gnats) Resent-Date: Mon, 23 Sep 2013 12:50:01 GMT Resent-Message-Id: <201309231250.r8NCo1gb095562@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, Henk van Oers Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 6C99E186 for ; Mon, 23 Sep 2013 12:43:36 +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 40BB9294E for ; Mon, 23 Sep 2013 12:43:36 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8NChZV4067863 for ; Mon, 23 Sep 2013 12:43:35 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8NChZ5m067862; Mon, 23 Sep 2013 12:43:35 GMT (envelope-from nobody) Message-Id: <201309231243.r8NChZ5m067862@oldred.freebsd.org> Date: Mon, 23 Sep 2013 12:43:35 GMT From: Henk van Oers To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182321: New port: security/p5-UUID-Random Generate random uuid strings 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: Mon, 23 Sep 2013 12:50:01 -0000 >Number: 182321 >Category: ports >Synopsis: New port: security/p5-UUID-Random Generate random uuid strings >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Sep 23 12:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Henk van Oers >Release: 9.1-RELEASE-p6 >Organization: perl.nl >Environment: FreeBSD 9.1-RELEASE-p6 #0: Wed Aug 21 20:40:52 UTC 2013 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: This module generates random uuid strings. >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-UUID-Random # p5-UUID-Random/Makefile # p5-UUID-Random/pkg-plist # p5-UUID-Random/distinfo # p5-UUID-Random/pkg-descr # echo c - p5-UUID-Random mkdir -p p5-UUID-Random > /dev/null 2>&1 echo x - p5-UUID-Random/Makefile sed 's/^X//' >p5-UUID-Random/Makefile << 'e0bac718c7032d5d8a5141304fb50a45' X# Created by: Henk van Oers X# $FreeBSD$ X XPORTNAME= UUID-Random XPORTVERSION= 0.04 XCATEGORIES= security perl5 XMASTER_SITES= CPAN XPKGNAMEPREFIX= p5- X XMAINTAINER= perl@FreeBSD.org XCOMMENT= Generate random uuid strings X XLICENSE= ART10 X XUSES= perl5 XUSE_PERL5= configure X XMAN3= UUID::Random.3 X XNO_STAGE= yes X.include e0bac718c7032d5d8a5141304fb50a45 echo x - p5-UUID-Random/pkg-plist sed 's/^X//' >p5-UUID-Random/pkg-plist << 'cf96cd8706dbd6a7f98f8b46aa65a39e' X%%SITE_PERL%%/UUID/Random.pm X%%SITE_PERL%%/%%PERL_ARCH%%/auto/UUID/Random/.packlist X@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/UUID/Random X@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/UUID X@dirrmtry %%SITE_PERL%%/UUID cf96cd8706dbd6a7f98f8b46aa65a39e echo x - p5-UUID-Random/distinfo sed 's/^X//' >p5-UUID-Random/distinfo << 'd9ee74402e9055da1fd93bba4a342f97' XSHA256 (UUID-Random-0.04.tar.gz) = 9ffcdd991381ac75917cdc37172b8844e637117d32ab088f63660032d9dd83f4 XSIZE (UUID-Random-0.04.tar.gz) = 2382 d9ee74402e9055da1fd93bba4a342f97 echo x - p5-UUID-Random/pkg-descr sed 's/^X//' >p5-UUID-Random/pkg-descr << '2f5b83766ce4091366b867f914f4247f' XThis module generates random uuid strings. XIt does not satisfy any of the points listed in RFC 4122 Xbut the default format. X XIf you need RFC compliant UUID strings have a look at Data::UUID X XWWW: https://metacpan.org/module/UUID::Random 2f5b83766ce4091366b867f914f4247f exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 12:50:09 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 A549D423; Mon, 23 Sep 2013 12:50:09 +0000 (UTC) (envelope-from edwin@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 7AF0129B5; Mon, 23 Sep 2013 12:50:09 +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 r8NCo9bR095653; Mon, 23 Sep 2013 12:50:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8NCo9D3095652; Mon, 23 Sep 2013 12:50:09 GMT (envelope-from edwin) Date: Mon, 23 Sep 2013 12:50:09 GMT Message-Id: <201309231250.r8NCo9D3095652@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vbox@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182320: emulators/virtualbox-ose-additions will not compile on HEAD 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: Mon, 23 Sep 2013 12:50:09 -0000 Synopsis: emulators/virtualbox-ose-additions will not compile on HEAD Responsible-Changed-From-To: freebsd-ports-bugs->vbox Responsible-Changed-By: edwin Responsible-Changed-When: Mon Sep 23 12:50:09 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182320 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 12:50:01 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 DABDD3F6 for ; Mon, 23 Sep 2013 12:50:01 +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 BB3D129B4 for ; Mon, 23 Sep 2013 12:50:01 +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 r8NCo1fm095575 for ; Mon, 23 Sep 2013 12:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8NCo1In095574; Mon, 23 Sep 2013 12:50:01 GMT (envelope-from gnats) Resent-Date: Mon, 23 Sep 2013 12:50:01 GMT Resent-Message-Id: <201309231250.r8NCo1In095574@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, Henk van Oers Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 025983A3 for ; Mon, 23 Sep 2013 12:46:56 +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 D638F2987 for ; Mon, 23 Sep 2013 12:46:55 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8NCktlq096217 for ; Mon, 23 Sep 2013 12:46:55 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8NCktKW096213; Mon, 23 Sep 2013 12:46:55 GMT (envelope-from nobody) Message-Id: <201309231246.r8NCktKW096213@oldred.freebsd.org> Date: Mon, 23 Sep 2013 12:46:55 GMT From: Henk van Oers To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182322: New port: security/p5-UUID-Random-Patch-UseMRS use Math::Random::Secure 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: Mon, 23 Sep 2013 12:50:01 -0000 >Number: 182322 >Category: ports >Synopsis: New port: security/p5-UUID-Random-Patch-UseMRS use Math::Random::Secure >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Sep 23 12:50:01 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Henk van Oers >Release: 9.1-RELEASE-p6 >Organization: perl.nl >Environment: FreeBSD 9.1-RELEASE-p6 #0: Wed Aug 21 20:40:52 UTC 2013 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: This module generates random uuid strings. >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-UUID-Random-Patch-UseMRS # p5-UUID-Random-Patch-UseMRS/Makefile # p5-UUID-Random-Patch-UseMRS/pkg-descr # p5-UUID-Random-Patch-UseMRS/distinfo # p5-UUID-Random-Patch-UseMRS/pkg-plist # echo c - p5-UUID-Random-Patch-UseMRS mkdir -p p5-UUID-Random-Patch-UseMRS > /dev/null 2>&1 echo x - p5-UUID-Random-Patch-UseMRS/Makefile sed 's/^X//' >p5-UUID-Random-Patch-UseMRS/Makefile << 'c60496f81b163d93e70a27a6f37de05b' X# Created by: Henk van Oers X# $FreeBSD$ X XPORTNAME= UUID-Random-Patch-UseMRS XPORTVERSION= 0.01 XCATEGORIES= security perl5 XMASTER_SITES= CPAN XPKGNAMEPREFIX= p5- X XMAINTAINER= perl@FreeBSD.org XCOMMENT= Make UUID::Random use Math::Random::Secure::rand() X XLICENSE= ART10 X XBUILD_DEPENDS= p5-Math-Random-Secure>=0:${PORTSDIR}/math/p5-Math-Random-Secure \ X p5-UUID-Random>=0:${PORTSDIR}/security/p5-UUID-Random XRUN_DEPENDS:= ${BUILD_DEPENDS} X XUSES= perl5 XUSE_PERL5= modbuild X XMAN3= UUID::Random::Patch::UseMRS.3 X XNO_STAGE= yes X.include c60496f81b163d93e70a27a6f37de05b echo x - p5-UUID-Random-Patch-UseMRS/pkg-descr sed 's/^X//' >p5-UUID-Random-Patch-UseMRS/pkg-descr << '0d58d66715ee1ae079b73d3673ec478f' XThis module makes UUID::Random use rand() from Math::Random::Secure Xinstead of the default rand() that comes with Perl. XIt is useful for creating cryptographically secure UUID's. XOn the other hand, as a note, Xthis makes generate() around 20 times slower. X XAfter you use this module, use UUID::Random as usual. X XWWW: https://metacpan.org/module/UUID::Random::Patch::UseMRS 0d58d66715ee1ae079b73d3673ec478f echo x - p5-UUID-Random-Patch-UseMRS/distinfo sed 's/^X//' >p5-UUID-Random-Patch-UseMRS/distinfo << '24956a3c7a1ae0623849acd5f670381c' XSHA256 (UUID-Random-Patch-UseMRS-0.01.tar.gz) = 85f28345a9c2ee287f3c1283d5c6ec5b49a305c64c1b45bce9d8b8373a93dd73 XSIZE (UUID-Random-Patch-UseMRS-0.01.tar.gz) = 9810 24956a3c7a1ae0623849acd5f670381c echo x - p5-UUID-Random-Patch-UseMRS/pkg-plist sed 's/^X//' >p5-UUID-Random-Patch-UseMRS/pkg-plist << 'dc7ba5824db43cef3f2b2ac5a679ae5b' X%%SITE_PERL%%/UUID/Random/Patch/UseMRS.pm X@dirrmtry %%SITE_PERL%%/UUID/Random/Patch X@dirrmtry %%SITE_PERL%%/UUID/Random X@dirrmtry %%SITE_PERL%%/UUID dc7ba5824db43cef3f2b2ac5a679ae5b exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 12:50:21 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 D23E14B3; Mon, 23 Sep 2013 12:50:21 +0000 (UTC) (envelope-from edwin@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 A984E29E4; Mon, 23 Sep 2013 12:50:21 +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 r8NCoLwT095817; Mon, 23 Sep 2013 12:50:21 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8NCoL9P095816; Mon, 23 Sep 2013 12:50:21 GMT (envelope-from edwin) Date: Mon, 23 Sep 2013 12:50:21 GMT Message-Id: <201309231250.r8NCoL9P095816@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182322: New port: security/p5-UUID-Random-Patch-UseMRS use Math::Random::Secure 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: Mon, 23 Sep 2013 12:50:21 -0000 Synopsis: New port: security/p5-UUID-Random-Patch-UseMRS use Math::Random::Secure Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Mon Sep 23 12:50:21 UTC 2013 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182322 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 12:50:14 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 90499454; Mon, 23 Sep 2013 12:50:14 +0000 (UTC) (envelope-from edwin@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 6616F29DC; Mon, 23 Sep 2013 12:50:14 +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 r8NCoElR095736; Mon, 23 Sep 2013 12:50:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8NCoEt9095735; Mon, 23 Sep 2013 12:50:14 GMT (envelope-from edwin) Date: Mon, 23 Sep 2013 12:50:14 GMT Message-Id: <201309231250.r8NCoEt9095735@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182321: New port: security/p5-UUID-Random Generate random uuid strings 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: Mon, 23 Sep 2013 12:50:14 -0000 Synopsis: New port: security/p5-UUID-Random Generate random uuid strings Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Mon Sep 23 12:50:14 UTC 2013 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182321 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 13:00:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id AF36E9C6 for ; Mon, 23 Sep 2013 13:00:01 +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 8F9812A89 for ; Mon, 23 Sep 2013 13:00:01 +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 r8ND01Fb097712 for ; Mon, 23 Sep 2013 13:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8ND017O097711; Mon, 23 Sep 2013 13:00:01 GMT (envelope-from gnats) Resent-Date: Mon, 23 Sep 2013 13:00:01 GMT Resent-Message-Id: <201309231300.r8ND017O097711@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, Henk van Oers Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 7B91087C for ; Mon, 23 Sep 2013 12:53:47 +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 56C4E2A50 for ; Mon, 23 Sep 2013 12:53:47 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8NCrl9v053545 for ; Mon, 23 Sep 2013 12:53:47 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8NCrl3Q053541; Mon, 23 Sep 2013 12:53:47 GMT (envelope-from nobody) Message-Id: <201309231253.r8NCrl3Q053541@oldred.freebsd.org> Date: Mon, 23 Sep 2013 12:53:47 GMT From: Henk van Oers To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182325: New port: security/p5-Unix-Passwd-File Use (or manipulate) passwd and group entries 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: Mon, 23 Sep 2013 13:00:01 -0000 >Number: 182325 >Category: ports >Synopsis: New port: security/p5-Unix-Passwd-File Use (or manipulate) passwd and group entries >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Sep 23 13:00:01 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Henk van Oers >Release: 9.1-RELEASE-p6 >Organization: perl.nl >Environment: FreeBSD 9.1-RELEASE-p6 #0: Wed Aug 21 20:40:52 UTC 2013 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: This module can be used to read and manipulate entries in Unix system password files >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-Unix-Passwd-File # p5-Unix-Passwd-File/Makefile # p5-Unix-Passwd-File/pkg-descr # p5-Unix-Passwd-File/distinfo # p5-Unix-Passwd-File/pkg-plist # echo c - p5-Unix-Passwd-File mkdir -p p5-Unix-Passwd-File > /dev/null 2>&1 echo x - p5-Unix-Passwd-File/Makefile sed 's/^X//' >p5-Unix-Passwd-File/Makefile << 'de04d23f8d28cc5e384ed6995f96f995' X# Created by: Henk van Oers X# $FreeBSD$ X XPORTNAME= Unix-Passwd-File XPORTVERSION= 0.10 XCATEGORIES= security perl5 XMASTER_SITES= CPAN XPKGNAMEPREFIX= p5- X XMAINTAINER= perl@FreeBSD.org XCOMMENT= Use (or manipulate) passwd and group entries X XLICENSE= ART10 X XBUILD_DEPENDS= p5-File-chdir>=0:${PORTSDIR}/devel/p5-File-chdir \ X p5-File-Copy-Recursive>=0:${PORTSDIR}/devel/p5-File-Copy-Recursive \ X p5-Log-Any>=0:${PORTSDIR}/devel/p5-Log-Any \ X p5-File-Flock>=0:${PORTSDIR}/devel/p5-File-Flock \ X p5-Crypt-Password-Util>=0:${PORTSDIR}/security/p5-Crypt-Password-Util XRUN_DEPENDS= p5-Log-Any>=0:${PORTSDIR}/devel/p5-Log-Any \ X p5-File-Flock>=0:${PORTSDIR}/devel/p5-File-Flock \ X p5-Crypt-Password-Util>=0:${PORTSDIR}/security/p5-Crypt-Password-Util X XUSES= perl5 XUSE_PERL5= modbuild X XMAN3= Unix::Passwd::File.3 X XNO_STAGE= yes X.include de04d23f8d28cc5e384ed6995f96f995 echo x - p5-Unix-Passwd-File/pkg-descr sed 's/^X//' >p5-Unix-Passwd-File/pkg-descr << 'e6e975d9179a77636915705df4221f03' XThis module can be used to read and manipulate entries in Unix system Xpassword files (/etc/passwd, /etc/group, ...) but can also Xbe told to search in custom location, for testing purposes. X XWWW: https://metacpan.org/module/Unix::Passwd::File e6e975d9179a77636915705df4221f03 echo x - p5-Unix-Passwd-File/distinfo sed 's/^X//' >p5-Unix-Passwd-File/distinfo << '7c43369965a3522c7fe58abef04c4b82' XSHA256 (Unix-Passwd-File-0.10.tar.gz) = 09fb90e827d9698a3f660267df2d4f43a4a908d2efea9be72ff1770987de1559 XSIZE (Unix-Passwd-File-0.10.tar.gz) = 33978 7c43369965a3522c7fe58abef04c4b82 echo x - p5-Unix-Passwd-File/pkg-plist sed 's/^X//' >p5-Unix-Passwd-File/pkg-plist << '9a5dbecb480a790cc3f1315ba83fac1f' X%%SITE_PERL%%/Unix/Passwd/File.pm X@dirrmtry %%SITE_PERL%%/Unix/Passwd X@dirrmtry %%SITE_PERL%%/Unix 9a5dbecb480a790cc3f1315ba83fac1f exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 13:00:01 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 210689C0 for ; Mon, 23 Sep 2013 13:00:01 +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 F35B92A84 for ; Mon, 23 Sep 2013 13:00: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 r8ND00TW097689 for ; Mon, 23 Sep 2013 13:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8ND000I097688; Mon, 23 Sep 2013 13:00:00 GMT (envelope-from gnats) Resent-Date: Mon, 23 Sep 2013 13:00:00 GMT Resent-Message-Id: <201309231300.r8ND000I097688@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, James Bailie 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 16CE49A9 for ; Mon, 23 Sep 2013 12:59:27 +0000 (UTC) (envelope-from jimmy@mammothcheese.ca) Received: from nm2-vm7.access.bullet.mail.gq1.yahoo.com (nm2-vm7.access.bullet.mail.gq1.yahoo.com [216.39.63.180]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B5BA42A77 for ; Mon, 23 Sep 2013 12:59:26 +0000 (UTC) Received: from [216.39.60.176] by nm2.access.bullet.mail.gq1.yahoo.com with NNFMP; 23 Sep 2013 12:57:13 -0000 Received: from [67.195.23.147] by tm12.access.bullet.mail.gq1.yahoo.com with NNFMP; 23 Sep 2013 12:57:13 -0000 Received: from [127.0.0.1] by smtp119.sbc.mail.gq1.yahoo.com with NNFMP; 23 Sep 2013 12:57:13 -0000 Received: by localhost (sSMTP sendmail emulation); Mon, 23 Sep 2013 08:57:09 -0400 Message-Id: <22460.35727.bm@smtp119.sbc.mail.gq1.yahoo.com> Date: Mon, 23 Sep 2013 08:57:09 -0400 From: James Bailie To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/182323: Update Port: devel/libserver => 1.15 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: James Bailie List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Sep 2013 13:00:01 -0000 >Number: 182323 >Category: ports >Synopsis: Update Port: devel/libserver => 1.15 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Sep 23 13:00:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: James Bailie >Release: FreeBSD 9.1-RELEASE-p7 amd64 >Organization: >Environment: System: FreeBSD localhost 9.1-RELEASE-p7 FreeBSD 9.1-RELEASE-p7 #0: Mon Sep 9 21:34:37 UTC 2013 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: >How-To-Repeat: >Fix: --- server.diff begins here --- diff -ruN /usr/ports/devel/libserver/Makefile ./libserver/Makefile --- /usr/ports/devel/libserver/Makefile 2013-09-20 13:13:42.000000000 -0400 +++ ./libserver/Makefile 2013-09-23 08:55:05.000000000 -0400 @@ -2,7 +2,7 @@ # $FreeBSD: devel/libserver/Makefile 327724 2013-09-20 17:13:42Z bapt $ PORTNAME= libserver -PORTVERSION= 1.14 +PORTVERSION= 1.15 CATEGORIES= devel MASTER_SITES= http://www.mammothcheese.ca/ diff -ruN /usr/ports/devel/libserver/distinfo ./libserver/distinfo --- /usr/ports/devel/libserver/distinfo 2013-09-19 09:50:34.000000000 -0400 +++ ./libserver/distinfo 2013-09-23 08:55:10.000000000 -0400 @@ -1,2 +1,2 @@ -SHA256 (libserver-1.14.tar.gz) = f8ed5e88e6742eb908a1c6212030fa459dbdc4896a82694357499ffc6d18df40 -SIZE (libserver-1.14.tar.gz) = 11091 +SHA256 (libserver-1.15.tar.gz) = eea9b22e24c16197e7f07f9d1f283feab3cd5b36ea346a1590f58311b4af6fe0 +SIZE (libserver-1.15.tar.gz) = 11136 --- server.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 13:00:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 688049C2 for ; Mon, 23 Sep 2013 13:00:01 +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 472192A86 for ; Mon, 23 Sep 2013 13:00:01 +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 r8ND016m097701 for ; Mon, 23 Sep 2013 13:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8ND01hf097700; Mon, 23 Sep 2013 13:00:01 GMT (envelope-from gnats) Resent-Date: Mon, 23 Sep 2013 13:00:01 GMT Resent-Message-Id: <201309231300.r8ND01hf097700@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, James Bailie 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 0E84F97F for ; Mon, 23 Sep 2013 12:58:12 +0000 (UTC) (envelope-from jimmy@mammothcheese.ca) Received: from nm3-vm4.access.bullet.mail.gq1.yahoo.com (nm3-vm4.access.bullet.mail.gq1.yahoo.com [216.39.63.91]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B2B0A2A69 for ; Mon, 23 Sep 2013 12:58:11 +0000 (UTC) Received: from [216.39.60.165] by nm3.access.bullet.mail.gq1.yahoo.com with NNFMP; 23 Sep 2013 12:56:28 -0000 Received: from [67.195.22.108] by tm1.access.bullet.mail.gq1.yahoo.com with NNFMP; 23 Sep 2013 12:56:28 -0000 Received: from [127.0.0.1] by smtp104.rog.mail.gq1.yahoo.com with NNFMP; 23 Sep 2013 12:56:28 -0000 Received: by localhost (sSMTP sendmail emulation); Mon, 23 Sep 2013 08:56:26 -0400 Message-Id: <644149.12493.bm@smtp104.rog.mail.gq1.yahoo.com> Date: Mon, 23 Sep 2013 08:56:26 -0400 From: James Bailie To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/182324: Update Port: devel/libdombey => 2.5 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: James Bailie List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Sep 2013 13:00:01 -0000 >Number: 182324 >Category: ports >Synopsis: Update Port: devel/libdombey => 2.5 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Sep 23 13:00:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: James Bailie >Release: FreeBSD 9.1-RELEASE-p7 amd64 >Organization: >Environment: System: FreeBSD localhost 9.1-RELEASE-p7 FreeBSD 9.1-RELEASE-p7 #0: Mon Sep 9 21:34:37 UTC 2013 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: >How-To-Repeat: >Fix: --- dombey.diff begins here --- diff -ruN /usr/ports/devel/libdombey/Makefile ./libdombey/Makefile --- /usr/ports/devel/libdombey/Makefile 2013-09-20 13:13:42.000000000 -0400 +++ ./libdombey/Makefile 2013-09-23 08:54:09.000000000 -0400 @@ -2,7 +2,7 @@ # $FreeBSD: devel/libdombey/Makefile 327724 2013-09-20 17:13:42Z bapt $ PORTNAME= libdombey -PORTVERSION= 2.4 +PORTVERSION= 2.5 CATEGORIES= devel MASTER_SITES= http://www.mammothcheese.ca/ diff -ruN /usr/ports/devel/libdombey/distinfo ./libdombey/distinfo --- /usr/ports/devel/libdombey/distinfo 2013-09-19 11:35:20.000000000 -0400 +++ ./libdombey/distinfo 2013-09-23 08:54:11.000000000 -0400 @@ -1,2 +1,2 @@ -SHA256 (libdombey-2.4.tar.gz) = c883f682e0649ab16fd5d99c5a1873504f87dc0b4ecf8582261a48c2c0cbd3a5 -SIZE (libdombey-2.4.tar.gz) = 17983 +SHA256 (libdombey-2.5.tar.gz) = 78480258c576a8fbd4809ae992c517352f8810c39ba7d3c5d00e94d894d47480 +SIZE (libdombey-2.5.tar.gz) = 18033 --- dombey.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 13:00:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 66D129F7; Mon, 23 Sep 2013 13:00:09 +0000 (UTC) (envelope-from edwin@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 3D7152AB0; Mon, 23 Sep 2013 13:00:09 +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 r8ND09uU097807; Mon, 23 Sep 2013 13:00:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8ND0950097806; Mon, 23 Sep 2013 13:00:09 GMT (envelope-from edwin) Date: Mon, 23 Sep 2013 13:00:09 GMT Message-Id: <201309231300.r8ND0950097806@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182325: New port: security/p5-Unix-Passwd-File Use (or manipulate) passwd and group entries 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: Mon, 23 Sep 2013 13:00:09 -0000 Synopsis: New port: security/p5-Unix-Passwd-File Use (or manipulate) passwd and group entries Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Mon Sep 23 13:00:08 UTC 2013 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182325 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 13:00:23 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 219F3A83; Mon, 23 Sep 2013 13:00:23 +0000 (UTC) (envelope-from edwin@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 ED28B2ABE; Mon, 23 Sep 2013 13:00:22 +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 r8ND0Mjf097973; Mon, 23 Sep 2013 13:00:22 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8ND0MDX097972; Mon, 23 Sep 2013 13:00:22 GMT (envelope-from edwin) Date: Mon, 23 Sep 2013 13:00:22 GMT Message-Id: <201309231300.r8ND0MDX097972@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, tabthorpe@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182324: Update Port: devel/libdombey => 2.5 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: Mon, 23 Sep 2013 13:00:23 -0000 Synopsis: Update Port: devel/libdombey => 2.5 Responsible-Changed-From-To: freebsd-ports-bugs->tabthorpe Responsible-Changed-By: edwin Responsible-Changed-When: Mon Sep 23 13:00:22 UTC 2013 Responsible-Changed-Why: tabthorpe@ wants this submitter's PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182324 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 13:00:02 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 073819C8 for ; Mon, 23 Sep 2013 13:00:02 +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 DC41B2A8B for ; Mon, 23 Sep 2013 13:00:01 +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 r8ND01ik097723 for ; Mon, 23 Sep 2013 13:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8ND01Si097722; Mon, 23 Sep 2013 13:00:01 GMT (envelope-from gnats) Resent-Date: Mon, 23 Sep 2013 13:00:01 GMT Resent-Message-Id: <201309231300.r8ND01Si097722@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, Henk van Oers Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 7DE2B57E for ; Mon, 23 Sep 2013 12:51:00 +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 505DD29FD for ; Mon, 23 Sep 2013 12:51:00 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8NCp0ZU097969 for ; Mon, 23 Sep 2013 12:51:00 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8NCoxSc097824; Mon, 23 Sep 2013 12:50:59 GMT (envelope-from nobody) Message-Id: <201309231250.r8NCoxSc097824@oldred.freebsd.org> Date: Mon, 23 Sep 2013 12:50:59 GMT From: Henk van Oers To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182326: New port: security/p5-Crypt-Password-Util Crypt password utilities 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: Mon, 23 Sep 2013 13:00:02 -0000 >Number: 182326 >Category: ports >Synopsis: New port: security/p5-Crypt-Password-Util Crypt password utilities >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Sep 23 13:00:01 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Henk van Oers >Release: 9.1-RELEASE-p6 >Organization: perl.nl >Environment: FreeBSD 9.1-RELEASE-p6 #0: Wed Aug 21 20:40:52 UTC 2013 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Automatically choose the appropriate type and salt >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-Crypt-Password-Util # p5-Crypt-Password-Util/Makefile # p5-Crypt-Password-Util/pkg-descr # p5-Crypt-Password-Util/distinfo # p5-Crypt-Password-Util/pkg-plist # echo c - p5-Crypt-Password-Util mkdir -p p5-Crypt-Password-Util > /dev/null 2>&1 echo x - p5-Crypt-Password-Util/Makefile sed 's/^X//' >p5-Crypt-Password-Util/Makefile << '6976c91a9ebbf27c9be80936966a6522' X# Created by: Henk van Oers X# $FreeBSD$ X XPORTNAME= Crypt-Password-Util XPORTVERSION= 0.09 XCATEGORIES= security perl5 XMASTER_SITES= CPAN XPKGNAMEPREFIX= p5- X XMAINTAINER= perl@FreeBSD.org XCOMMENT= Crypt password utilities X XLICENSE= ART10 X XBUILD_DEPENDS= p5-Sort-Versions>=0:${PORTSDIR}/devel/p5-Sort-Versions \ X p5-Digest-MD5>=0:${PORTSDIR}/security/p5-Digest-MD5 \ X p5-UUID-Random-Patch-UseMRS>=0:${PORTSDIR}/security/p5-UUID-Random-Patch-UseMRS XRUN_DEPENDS= p5-Digest-MD5>=0:${PORTSDIR}/security/p5-Digest-MD5 \ X p5-UUID-Random-Patch-UseMRS>=0:${PORTSDIR}/security/p5-UUID-Random-Patch-UseMRS X XUSES= perl5 XUSE_PERL5= modbuild X XMAN3= Crypt::Password::Util.3 X XNO_STAGE= yes X.include 6976c91a9ebbf27c9be80936966a6522 echo x - p5-Crypt-Password-Util/pkg-descr sed 's/^X//' >p5-Crypt-Password-Util/pkg-descr << '37b915b7289fba71883161af2febad21' XAutomatically choose the appropriate type and salt. X XSee also Authen::Passphrase which recognizes more encodings X(but currently not SSHA256 and SSHA512). X XWWW: https://metacpan.org/module/Crypt::Password::Util 37b915b7289fba71883161af2febad21 echo x - p5-Crypt-Password-Util/distinfo sed 's/^X//' >p5-Crypt-Password-Util/distinfo << 'c8bcc034a8d3ab3537fbfe7469be733c' XSHA256 (Crypt-Password-Util-0.09.tar.gz) = 9e7c3ffb877748a201955bf95cf25cfbb134fb1b0bd906e905861e73dddf420f XSIZE (Crypt-Password-Util-0.09.tar.gz) = 11588 c8bcc034a8d3ab3537fbfe7469be733c echo x - p5-Crypt-Password-Util/pkg-plist sed 's/^X//' >p5-Crypt-Password-Util/pkg-plist << 'a70b056dd44e697869ed4b9e5be742b4' X%%SITE_PERL%%/Crypt/Password/Util.pm X@dirrmtry %%SITE_PERL%%/Crypt/Password X@dirrmtry %%SITE_PERL%%/Crypt a70b056dd44e697869ed4b9e5be742b4 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 13:00:15 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id CDB0BA2D; Mon, 23 Sep 2013 13:00:15 +0000 (UTC) (envelope-from edwin@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 A4FEC2AB6; Mon, 23 Sep 2013 13:00:15 +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 r8ND0FWK097892; Mon, 23 Sep 2013 13:00:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8ND0FWx097891; Mon, 23 Sep 2013 13:00:15 GMT (envelope-from edwin) Date: Mon, 23 Sep 2013 13:00:15 GMT Message-Id: <201309231300.r8ND0FWx097891@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, tabthorpe@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182323: Update Port: devel/libserver => 1.15 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: Mon, 23 Sep 2013 13:00:15 -0000 Synopsis: Update Port: devel/libserver => 1.15 Responsible-Changed-From-To: freebsd-ports-bugs->tabthorpe Responsible-Changed-By: edwin Responsible-Changed-When: Mon Sep 23 13:00:15 UTC 2013 Responsible-Changed-Why: tabthorpe@ wants this submitter's PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182323 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 13:00:42 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 85694B32; Mon, 23 Sep 2013 13:00:42 +0000 (UTC) (envelope-from edwin@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 5BD2C2AD3; Mon, 23 Sep 2013 13:00:42 +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 r8ND0gHB098054; Mon, 23 Sep 2013 13:00:42 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8ND0gPB098053; Mon, 23 Sep 2013 13:00:42 GMT (envelope-from edwin) Date: Mon, 23 Sep 2013 13:00:42 GMT Message-Id: <201309231300.r8ND0gPB098053@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182326: New port: security/p5-Crypt-Password-Util Crypt password utilities 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: Mon, 23 Sep 2013 13:00:42 -0000 Synopsis: New port: security/p5-Crypt-Password-Util Crypt password utilities Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Mon Sep 23 13:00:42 UTC 2013 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182326 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 13:20: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 94A60618 for ; Mon, 23 Sep 2013 13:20: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 6CA022C09 for ; Mon, 23 Sep 2013 13:20: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 r8NDK0Xw002920 for ; Mon, 23 Sep 2013 13:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8NDK0pr002919; Mon, 23 Sep 2013 13:20:00 GMT (envelope-from gnats) Resent-Date: Mon, 23 Sep 2013 13:20:00 GMT Resent-Message-Id: <201309231320.r8NDK0pr002919@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, "J.R. Oldroyd" 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 2CE0F3F9 for ; Mon, 23 Sep 2013 13:16:57 +0000 (UTC) (envelope-from jr@opal.com) Received: from mho-02-ewr.mailhop.org (mho-02-ewr.mailhop.org [204.13.248.72]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EE56C2BD6 for ; Mon, 23 Sep 2013 13:16:56 +0000 (UTC) Received: from pool-71-174-181-153.bstnma.east.verizon.net ([71.174.181.153] helo=homobox.opal.com) by mho-02-ewr.mailhop.org with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.72) (envelope-from ) id 1VO60V-00018W-Mz for FreeBSD-gnats-submit@freebsd.org; Mon, 23 Sep 2013 13:16:55 +0000 Received: from shibato.opal.com (ANice-652-1-281-215.w86-203.abo.wanadoo.fr [86.203.100.215]) (authenticated bits=0) by homobox.opal.com (8.14.4/8.14.4) with ESMTP id r8NDGnm6006495 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Mon, 23 Sep 2013 09:16:51 -0400 (EDT) (envelope-from jr@opal.com) Received: from shibato.opal.com (localhost [127.0.0.1]) by shibato.opal.com (8.14.7/8.14.7) with ESMTP id r8NDGhK1013895 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Mon, 23 Sep 2013 15:16:44 +0200 (CEST) (envelope-from jr@opal.com) Received: (from jr@localhost) by shibato.opal.com (8.14.7/8.14.7/Submit) id r8NDGhkS013894; Mon, 23 Sep 2013 15:16:43 +0200 (CEST) (envelope-from jr) Message-Id: <201309231316.r8NDGhkS013894@shibato.opal.com> Date: Mon, 23 Sep 2013 15:16:43 +0200 (CEST) From: "J.R. Oldroyd" To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/182327: multimedia/py-kaa-base: fix build problem X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: "J.R. Oldroyd" List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Sep 2013 13:20:00 -0000 >Number: 182327 >Category: ports >Synopsis: multimedia/py-kaa-base: fix build problem >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Sep 23 13:20:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: J.R. Oldroyd >Release: FreeBSD 9.2-RC4 amd64 >Organization: >Environment: System: FreeBSD xx.opal.com 9.2-RC4 FreeBSD 9.2-RC4 #3 r255488: Sat Sep 14 19:15:58 EDT 2013 xx@xx.opal.com:/usr/src/sys/amd64/compile/GENERIC+DDB amd64 >Description: Pointyhat is showing a build error. Hopefully this fixes it. >How-To-Repeat: >Fix: --- Makefile.orig 2013-09-23 15:09:51.000000000 +0200 +++ Makefile 2013-09-23 15:16:03.000000000 +0200 @@ -3,7 +3,7 @@ PORTNAME= kaa-base PORTVERSION= 0.6.0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= multimedia python MASTER_SITES= SF/freevo/${PORTNAME}/${PORTVERSION} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -12,7 +12,8 @@ COMMENT= Kaa Media Repository LIB_DEPENDS= glib-2.0:${PORTSDIR}/devel/glib20 -BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/libxml2.py:${PORTSDIR}/textproc/py-libxml2 \ +BUILD_DEPENDS= pkgconf:${PORTSDIR}/devel/pkgconf \ + ${PYTHON_SITELIBDIR}/libxml2.py:${PORTSDIR}/textproc/py-libxml2 \ ${PYTHON_SITELIBDIR}/pygame/__init__.py:${PORTSDIR}/devel/py-game RUN_DEPENDS:= ${BUILD_DEPENDS} >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 13:20:08 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 8476364D; Mon, 23 Sep 2013 13:20:08 +0000 (UTC) (envelope-from edwin@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 5AEE62C0F; Mon, 23 Sep 2013 13:20:08 +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 r8NDK80h003052; Mon, 23 Sep 2013 13:20:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8NDK8f9003051; Mon, 23 Sep 2013 13:20:08 GMT (envelope-from edwin) Date: Mon, 23 Sep 2013 13:20:08 GMT Message-Id: <201309231320.r8NDK8f9003051@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182327: multimedia/py-kaa-base: fix build problem 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: Mon, 23 Sep 2013 13:20:08 -0000 Synopsis: multimedia/py-kaa-base: fix build problem Class-Changed-From-To: change-request->maintainer-update Class-Changed-By: edwin Class-Changed-When: Mon Sep 23 13:20:08 UTC 2013 Class-Changed-Why: Fix category (submitter is maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182327 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 13:20:10 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 3BD87652; Mon, 23 Sep 2013 13:20:10 +0000 (UTC) (envelope-from edwin@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 11DFF2C12; Mon, 23 Sep 2013 13:20:10 +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 r8NDK987003133; Mon, 23 Sep 2013 13:20:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8NDK9IQ003132; Mon, 23 Sep 2013 13:20:09 GMT (envelope-from edwin) Date: Mon, 23 Sep 2013 13:20:09 GMT Message-Id: <201309231320.r8NDK9IQ003132@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182327: multimedia/py-kaa-base: fix build problem 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: Mon, 23 Sep 2013 13:20:10 -0000 Synopsis: multimedia/py-kaa-base: fix build problem Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Mon Sep 23 13:20:09 UTC 2013 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182327 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 13:46:13 2013 Return-Path: Delivered-To: freebsd-ports-bugs@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 7636C4C0 for ; Mon, 23 Sep 2013 13:46:13 +0000 (UTC) (envelope-from tracy@themes-master.com) Received: from themes-master.com (69-162-118-45.static.loomhosts.net [69.162.118.45]) by mx1.freebsd.org (Postfix) with ESMTP id 5BC602E69 for ; Mon, 23 Sep 2013 13:46:13 +0000 (UTC) Date: Mon, 23 Sep 2013 13:44:16 +0000 To: freebsd-ports-bugs@freebsd.org From: Tracy Hillman Subject: The best premium wordpress themes X-Priority: 3 MIME-Version: 1.0 Message-Id: <20130923134613.7636C4C0@hub.freebsd.org> Content-Type: text/plain; charset = "UTF-8" Content-Transfer-Encoding: 8bit X-Content-Filtered-By: Mailman/MimeDel 2.1.14 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: Mon, 23 Sep 2013 13:46:13 -0000 Dear webmaster, Not completely happy with the design of your site ? Are you looking for ways to improve it? Nowadays it is crucial to have the best looking sites in order to keep up with your competitors, improve conversion or just simply have a beautiful site. For that, we have made a selection of free premium Wordpress templates for you. Simply visit http://www.themes-master.com and download the wordpress theme you prefer. If you like our themes, dont forget to like our facebook page: https://www.facebook.com/pages/Themes-Advisor/420676298040377 Sincerely, Tracy Hillman http://www.themes-master.com/ From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 14:21:48 2013 Return-Path: Delivered-To: freebsd-ports-bugs@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 D19964BA; Mon, 23 Sep 2013 14:21:48 +0000 (UTC) (envelope-from mephius@gmail.com) Received: from mail-we0-x22f.google.com (mail-we0-x22f.google.com [IPv6:2a00:1450:400c:c03::22f]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 236862142; Mon, 23 Sep 2013 14:21:47 +0000 (UTC) Received: by mail-we0-f175.google.com with SMTP id q59so3090695wes.6 for ; Mon, 23 Sep 2013 07:21:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=RTUM8bUJG2P8LcF/K9f8q71QX6cetEW06bZB8JP/ORI=; b=imifXsXS+Ci/rP6D7R/lRGRKdw5mFFYb/Hs5094BTBxPZUNO358mckfXSeLuo/udsH 25Pr1CtWOFbgT/iyz3rMPgVbyKhtpfTaybhrtVI6MlNPLK8hIHmg5yZHOlmsJ9iLqphY JXYhkFE26RmhCrL7J5r+Dlf6vnWenngW4haW2rFFN9llBhgAnCt0jyJQhzjVYTfnFaNJ p5aZkSQKzZCnfCCuEekhd0KaK4xrf9CnvjUbD6X4EYl3xLxI81b4/diawLBI5UqS0pAv E4TMZoLPN8bPlKbwy2ONGjyxoooPIOYkQLj7VN4S5ytdHdReAhh4O3Y1waUyoQHZmLJH H1Eg== MIME-Version: 1.0 X-Received: by 10.180.160.212 with SMTP id xm20mr13567835wib.23.1379946105544; Mon, 23 Sep 2013 07:21:45 -0700 (PDT) Received: by 10.216.0.129 with HTTP; Mon, 23 Sep 2013 07:21:45 -0700 (PDT) In-Reply-To: <201309221413.r8MEDVPe084159@freefall.freebsd.org> References: <201309221413.r8MEDVPe084159@freefall.freebsd.org> Date: Mon, 23 Sep 2013 17:21:45 +0300 Message-ID: Subject: Re: ports/181215: [PATCH] www/pecl-sphinx: [SUMMARIZE CHANGES] From: Max Baryshnikov To: bdrewery@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: freebsd-ports-bugs@freebsd.org, miwi@freebsd.org 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: Mon, 23 Sep 2013 14:21:48 -0000 This PR is approved version upgrade of the port. Please, commit it. From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 14:50:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id C8DF1AED for ; Mon, 23 Sep 2013 14:50: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 8F00522D5 for ; Mon, 23 Sep 2013 14:50: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 r8NEo0I0021040 for ; Mon, 23 Sep 2013 14:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8NEo0Bs021039; Mon, 23 Sep 2013 14:50:00 GMT (envelope-from gnats) Resent-Date: Mon, 23 Sep 2013 14:50:00 GMT Resent-Message-Id: <201309231450.r8NEo0Bs021039@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, Max Baryshnikov 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 5066AA8D for ; Mon, 23 Sep 2013 14:44:19 +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 3E018228D for ; Mon, 23 Sep 2013 14:44:19 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8NEiIek059169 for ; Mon, 23 Sep 2013 14:44:18 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8NEiIp1059168; Mon, 23 Sep 2013 14:44:18 GMT (envelope-from nobody) Message-Id: <201309231444.r8NEiIp1059168@oldred.freebsd.org> Date: Mon, 23 Sep 2013 14:44:18 GMT From: Max Baryshnikov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182328: textproc/libsphinxclient/ version upgrade 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: Mon, 23 Sep 2013 14:50:00 -0000 >Number: 182328 >Category: ports >Synopsis: textproc/libsphinxclient/ version upgrade >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Sep 23 14:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Max Baryshnikov >Release: >Organization: >Environment: >Description: textproc/libsphinxclient/ version updated from 2.0.5 to 2.0.9 (latest stable) >How-To-Repeat: >Fix: Patch attached with submission follows: --- ./Makefile.orig 2013-09-23 18:35:34.000000000 +0400 +++ ./Makefile 2013-09-23 18:35:39.000000000 +0400 @@ -2,7 +2,7 @@ # $FreeBSD: textproc/libsphinxclient/Makefile 327773 2013-09-20 23:17:30Z bapt $ PORTNAME= libsphinxclient -DISTVERSION= 2.0.5 +DISTVERSION= 2.0.9 CATEGORIES= textproc databases MASTER_SITES= http://sphinxsearch.com/files/ DISTNAME= sphinx-${PORTVERSION}-release --- ./distinfo.orig 2013-09-23 18:38:44.000000000 +0400 +++ ./distinfo 2013-09-23 18:38:52.000000000 +0400 @@ -1,2 +1,2 @@ -SHA256 (sphinx-2.0.5-release.tar.gz) = 45d89b9112cf52adb2a7289df3b6f4d37371bad8f892b9da4b75b574c7e6ba90 -SIZE (sphinx-2.0.5-release.tar.gz) = 1959258 +SHA256 (sphinx-2.0.9-release.tar.gz) = c4fb5d7951bc0831e46f102d17b5f32bbde11434ce3b00b20531dfe9e646869d +SIZE (sphinx-2.0.9-release.tar.gz) = 1996939 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 16:04:13 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 8C3552D0; Mon, 23 Sep 2013 16:04:13 +0000 (UTC) (envelope-from bsam@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 61BBF272A; Mon, 23 Sep 2013 16:04:13 +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 r8NG4Dmc036708; Mon, 23 Sep 2013 16:04:13 GMT (envelope-from bsam@freefall.freebsd.org) Received: (from bsam@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8NG4DsP036707; Mon, 23 Sep 2013 16:04:13 GMT (envelope-from bsam) Date: Mon, 23 Sep 2013 16:04:13 GMT Message-Id: <201309231604.r8NG4DsP036707@freefall.freebsd.org> To: bsam@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, bsam@FreeBSD.org From: bsam@FreeBSD.org Subject: Re: ports/182315: [maintainer update] Unbreak ddd on FreeBSD 10 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: Mon, 23 Sep 2013 16:04:13 -0000 Synopsis: [maintainer update] Unbreak ddd on FreeBSD 10 Responsible-Changed-From-To: freebsd-ports-bugs->bsam Responsible-Changed-By: bsam Responsible-Changed-When: Mon Sep 23 16:04:13 UTC 2013 Responsible-Changed-Why: Take. http://www.freebsd.org/cgi/query-pr.cgi?pr=182315 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 18:09:50 2013 Return-Path: Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id CF42E870; Mon, 23 Sep 2013 18:09:50 +0000 (UTC) (envelope-from nicole@cooltrainer.org) Received: from gigadelic.cooltrainer.org (gigadelic.cooltrainer.org [IPv6:2001:470:1:41:a800:ff:fe3e:bc0d]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 900222EEB; Mon, 23 Sep 2013 18:09:50 +0000 (UTC) Received: from gigadelic.cooltrainer.org (localhost [IPv6:::1]) by gigadelic.cooltrainer.org (Postfix) with ESMTP id 65CE9780E3; Mon, 23 Sep 2013 11:09:43 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=cooltrainer.org; h=content-type:content-type:in-reply-to:references:subject :subject:mime-version:user-agent:from:from:date:date:message-id :received:received; s=mail; t=1379959775; bh=ageZvKKlKGDMUlUk1OG FEc8aBLncz86M0lohBhy/p+Y=; b=u5l1FIzw2lMKwj1SVHvl/xuANWg6hvAlPxU m4rEOaOJreWn2fW07A+XHb3b3TsSADYdxNbSzwTqkky5N0Ly1Lhg4Ua22gDiSRPj tTUqVfqc7O0+AAYR0pc5Ddsw3uPJ+UDkXae4VjU0apFrD8iKko5wEkfzc2nUhiiq Xg8PqZ7A= Received: from gigadelic.cooltrainer.org ([IPv6:::1]) by gigadelic.cooltrainer.org (gigadelic.cooltrainer.org [IPv6:::1]) (amavisd-new, port 10026) with LMTP id gJOwEtN54E2c; Mon, 23 Sep 2013 11:09:35 -0700 (PDT) Received: from nicolereid-mbp.local (unknown [IPv6:2620:0:1cfe:b:22c9:d0ff:fe2a:722]) (Authenticated sender: nicole) by gigadelic.cooltrainer.org (Postfix) with ESMTPSA id 4E09775A68; Mon, 23 Sep 2013 11:09:35 -0700 (PDT) Message-ID: <524083DF.906@cooltrainer.org> Date: Mon, 23 Sep 2013 11:09:35 -0700 From: Nicole Reid User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:17.0) Gecko/20130801 Thunderbird/17.0.8 MIME-Version: 1.0 To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/182142: [maintainer update] www/subsonic to 4.8 References: <201309160650.r8G6o06J027610@freefall.freebsd.org> In-Reply-To: <201309160650.r8G6o06J027610@freefall.freebsd.org> X-Enigmail-Version: 1.5.2 Content-Type: multipart/mixed; boundary="------------080506070801060803000708" 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: Mon, 23 Sep 2013 18:09:50 -0000 This is a multi-part message in MIME format. --------------080506070801060803000708 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit On 9/15/13 11:50 PM, FreeBSD-gnats-submit@FreeBSD.org wrote: > Forgot plist, sorry. Fixed diff attached. --------------080506070801060803000708 Content-Type: text/plain; charset=UTF-8; name="subsonic-4.8.diff.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="subsonic-4.8.diff.txt" diff -ruN subsonic-4.7/Makefile subsonic/Makefile --- subsonic-4.7/Makefile 2013-09-23 10:48:17.295512105 -0700 +++ subsonic/Makefile 2013-09-23 11:03:10.112714329 -0700 @@ -2,8 +2,7 @@ # $FreeBSD: www/subsonic/Makefile 327776 2013-09-20 23:36:50Z bapt $ PORTNAME= subsonic -PORTVERSION= 4.7 -PORTREVISION= 1 +PORTVERSION= 4.8 CATEGORIES= www java MASTER_SITES= SF DISTNAME= ${PORTNAME}-${PORTVERSION}-war @@ -14,7 +13,7 @@ BUILD_DEPENDS+= ${LOCALBASE}/apache-tomcat-6.0:${PORTSDIR}/www/tomcat6 RUN_DEPENDS+= ${JAVAJARDIR}/servlet-api.jar:${PORTSDIR}/www/servlet-api -OPTIONS_DEFINE= TRANSCODING +OPTIONS_DEFINE= TRANSCODING TRANSCODING_DESC= Transcoding with FFmpeg and LAME OPTIONS_DEFAULT= TRANSCODING diff -ruN subsonic-4.7/distinfo subsonic/distinfo --- subsonic-4.7/distinfo 2013-09-23 10:48:17.295512105 -0700 +++ subsonic/distinfo 2013-09-23 10:54:17.265509391 -0700 @@ -1,2 +1,2 @@ -SHA256 (subsonic-4.7-war.zip) = af5e77729ba9b96a896cef8fd858de140da78082e1e14d2ac9d508268469ac71 -SIZE (subsonic-4.7-war.zip) = 19936546 +SHA256 (subsonic-4.8-war.zip) = 844b92902066dc224d41288cf390ce8fecc4049cacc3044acaada2c82def81f6 +SIZE (subsonic-4.8-war.zip) = 19983403 diff -ruN subsonic-4.7/pkg-plist subsonic/pkg-plist --- subsonic-4.7/pkg-plist 2013-09-23 10:48:17.295512105 -0700 +++ subsonic/pkg-plist 2013-09-23 11:02:44.178510189 -0700 @@ -1,3 +1,4 @@ +%%WEBAPPS%%/subsonic/style/default.css %%WEBAPPS%%/subsonic/META-INF/MANIFEST.MF %%WEBAPPS%%/subsonic/META-INF/maven/net.sourceforge.subsonic/subsonic-main/pom.properties %%WEBAPPS%%/subsonic/META-INF/maven/net.sourceforge.subsonic/subsonic-main/pom.xml @@ -36,7 +37,6 @@ %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/ajax/UploadInfo.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/cache/CacheFactory.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/command/AdvancedSettingsCommand.class -%%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/command/DonateCommand.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/command/EnumHolder.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/command/GeneralSettingsCommand.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/command/MusicFolderSettingsCommand$MusicFolderInfo.class @@ -47,6 +47,7 @@ %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/command/PlayerSettingsCommand$TranscodingHolder.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/command/PlayerSettingsCommand.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/command/PodcastSettingsCommand.class +%%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/command/PremiumCommand.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/command/SearchCommand$Match.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/command/SearchCommand.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/command/UserSettingsCommand.class @@ -58,7 +59,6 @@ %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/controller/ChangeCoverArtController.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/controller/CoverArtController.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/controller/DBController.class -%%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/controller/DonateController.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/controller/DownloadController.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/controller/EditTagsController$Song.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/controller/EditTagsController.class @@ -90,6 +90,7 @@ %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/controller/PodcastReceiverAdminController.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/controller/PodcastReceiverController.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/controller/PodcastSettingsController.class +%%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/controller/PremiumController.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/controller/ProxyController.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/controller/RESTController$1.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/controller/RESTController$2.class @@ -130,6 +131,9 @@ %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/dao/AvatarDao$1.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/dao/AvatarDao$AvatarRowMapper.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/dao/AvatarDao.class +%%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/dao/BookmarkDao$1.class +%%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/dao/BookmarkDao$BookmarkRowMapper.class +%%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/dao/BookmarkDao.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/dao/DaoHelper$1.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/dao/DaoHelper.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/dao/InternetRadioDao$1.class @@ -230,17 +234,15 @@ %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/dao/schema/Uptight.png %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/dao/schema/Vinyl.png %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/dao/schema/Windows-Zealot.png -%%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/dao/scratch$1.class -%%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/dao/scratch$MyRowMapper.class -%%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/dao/scratch$Redirection.class -%%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/dao/scratch.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/domain/Album.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/domain/Artist.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/domain/Avatar.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/domain/AvatarScheme.class +%%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/domain/Bookmark.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/domain/CacheElement.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/domain/CoverArtScheme.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/domain/InternetRadio.class +%%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/domain/LicenseInfo.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/domain/MediaFile$MediaType.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/domain/MediaFile.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/domain/MediaFileComparator.class @@ -305,6 +307,7 @@ %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/i18n/ResourceBundle_ko.properties %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/i18n/ResourceBundle_mk.properties %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/i18n/ResourceBundle_nl.properties +%%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/i18n/ResourceBundle_nn.properties %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/i18n/ResourceBundle_no.properties %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/i18n/ResourceBundle_pl.properties %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/i18n/ResourceBundle_pt.properties @@ -330,6 +333,7 @@ %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/service/AudioScrobblerService$RegistrationThread.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/service/AudioScrobblerService.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/service/JukeboxService.class +%%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/service/MSMediaReceiverRegistrarService.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/service/MediaFileService.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/service/MediaScannerService$1.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/service/MediaScannerService$2.class @@ -374,6 +378,7 @@ %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/service/StatusService.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/service/TranscodingService$Parameters.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/service/TranscodingService.class +%%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/service/UPnPService.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/service/VersionService.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/service/jukebox/AudioPlayer$1.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/service/jukebox/AudioPlayer$AudioDataWriter.class @@ -391,6 +396,8 @@ %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/service/metadata/MetaData.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/service/metadata/MetaDataParser.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/service/metadata/MetaDataParserFactory.class +%%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/service/scratch.class +%%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/service/subsonic-512.png %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/taglib/EscapeJavaScriptTag.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/taglib/FormatBytesTag.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/taglib/ParamTag.class @@ -449,8 +456,8 @@ %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/util/XMLBuilder$Attribute.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/util/XMLBuilder$AttributeSet.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/util/XMLBuilder.class -%%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/validator/DonateValidator.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/validator/PasswordSettingsValidator.class +%%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/validator/PremiumValidator.class %%WEBAPPS%%/subsonic/WEB-INF/classes/net/sourceforge/subsonic/validator/UserSettingsValidator.class %%WEBAPPS%%/subsonic/WEB-INF/classes/org/json/CDL.class %%WEBAPPS%%/subsonic/WEB-INF/classes/org/json/Cookie.class @@ -479,7 +486,6 @@ %%WEBAPPS%%/subsonic/WEB-INF/jsp/coverArt.jsp %%WEBAPPS%%/subsonic/WEB-INF/jsp/createShare.jsp %%WEBAPPS%%/subsonic/WEB-INF/jsp/db.jsp -%%WEBAPPS%%/subsonic/WEB-INF/jsp/donate.jsp %%WEBAPPS%%/subsonic/WEB-INF/jsp/editTags.jsp %%WEBAPPS%%/subsonic/WEB-INF/jsp/externalPlayer.jsp %%WEBAPPS%%/subsonic/WEB-INF/jsp/generalSettings.jsp @@ -494,6 +500,7 @@ %%WEBAPPS%%/subsonic/WEB-INF/jsp/internetRadioSettings.jsp %%WEBAPPS%%/subsonic/WEB-INF/jsp/jquery.jsp %%WEBAPPS%%/subsonic/WEB-INF/jsp/left.jsp +%%WEBAPPS%%/subsonic/WEB-INF/jsp/licenseNotice.jsp %%WEBAPPS%%/subsonic/WEB-INF/jsp/login.jsp %%WEBAPPS%%/subsonic/WEB-INF/jsp/lyrics.jsp %%WEBAPPS%%/subsonic/WEB-INF/jsp/main.jsp @@ -510,6 +517,7 @@ %%WEBAPPS%%/subsonic/WEB-INF/jsp/podcast.jsp %%WEBAPPS%%/subsonic/WEB-INF/jsp/podcastReceiver.jsp %%WEBAPPS%%/subsonic/WEB-INF/jsp/podcastSettings.jsp +%%WEBAPPS%%/subsonic/WEB-INF/jsp/premium.jsp %%WEBAPPS%%/subsonic/WEB-INF/jsp/rating.jsp %%WEBAPPS%%/subsonic/WEB-INF/jsp/recover.jsp %%WEBAPPS%%/subsonic/WEB-INF/jsp/reload.jsp @@ -1281,7 +1289,6 @@ %%WEBAPPS%%/subsonic/style/black.css %%WEBAPPS%%/subsonic/style/buuftheme.css %%WEBAPPS%%/subsonic/style/coolandclean.css -%%WEBAPPS%%/subsonic/style/default.css %%WEBAPPS%%/subsonic/style/denim.css %%WEBAPPS%%/subsonic/style/groove.css %%WEBAPPS%%/subsonic/style/groove_simple.css @@ -1328,11 +1335,14 @@ %%WEBAPPS%%/subsonic/xsd/album_example_1.xml %%WEBAPPS%%/subsonic/xsd/artist_example_1.xml %%WEBAPPS%%/subsonic/xsd/artists_example_1.xml +%%WEBAPPS%%/subsonic/xsd/bookmarks_example_1.xml %%WEBAPPS%%/subsonic/xsd/chatMessages_example_1.xml %%WEBAPPS%%/subsonic/xsd/directory_example_1.xml %%WEBAPPS%%/subsonic/xsd/directory_example_2.xml %%WEBAPPS%%/subsonic/xsd/error_example_1.xml +%%WEBAPPS%%/subsonic/xsd/genres_example_1.xml %%WEBAPPS%%/subsonic/xsd/indexes_example_1.xml +%%WEBAPPS%%/subsonic/xsd/internetRadioStations_example_1.xml %%WEBAPPS%%/subsonic/xsd/jukeboxPlaylist_example_1.xml %%WEBAPPS%%/subsonic/xsd/jukeboxStatus_example_1.xml %%WEBAPPS%%/subsonic/xsd/license_example_1.xml @@ -1349,6 +1359,7 @@ %%WEBAPPS%%/subsonic/xsd/searchResult_example_1.xml %%WEBAPPS%%/subsonic/xsd/shares_example_1.xml %%WEBAPPS%%/subsonic/xsd/song_example_1.xml +%%WEBAPPS%%/subsonic/xsd/songsByGenre_example_1.xml %%WEBAPPS%%/subsonic/xsd/starred2_example_1.xml %%WEBAPPS%%/subsonic/xsd/starred_example_1.xml %%WEBAPPS%%/subsonic/xsd/subsonic-rest-api.xsd --------------080506070801060803000708-- From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 18:20: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 8BEB0FBF for ; Mon, 23 Sep 2013 18:20: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 6B4202FCB for ; Mon, 23 Sep 2013 18:20: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 r8NIK0jl067487 for ; Mon, 23 Sep 2013 18:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8NIK0gp067486; Mon, 23 Sep 2013 18:20:00 GMT (envelope-from gnats) Resent-Date: Mon, 23 Sep 2013 18:20:00 GMT Resent-Message-Id: <201309231820.r8NIK0gp067486@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, Roelof Wobben 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 F0D57CDB for ; Mon, 23 Sep 2013 18:13:26 +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 DEF642F68 for ; Mon, 23 Sep 2013 18:13:26 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8NIDQMS070864 for ; Mon, 23 Sep 2013 18:13:26 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8NIDQLF070856; Mon, 23 Sep 2013 18:13:26 GMT (envelope-from nobody) Message-Id: <201309231813.r8NIDQLF070856@oldred.freebsd.org> Date: Mon, 23 Sep 2013 18:13:26 GMT From: Roelof Wobben To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182329: pkgconf cannot be installed on 9.2-rc4 from ports 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: Mon, 23 Sep 2013 18:20:00 -0000 >Number: 182329 >Category: ports >Synopsis: pkgconf cannot be installed on 9.2-rc4 from ports >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Sep 23 18:20:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Roelof Wobben >Release: 9.2-rc4 >Organization: >Environment: >Description: When I try to run pouderie on file-roller it stops that pkgconfig cannot be installed. I run pc-bsd-9.1 When I look at the logs It looked like this: argvsplit.o fileio.o tuple.o dependency.o queue.o ========================================================================= =================================================== ========================================================================= =================================================== ========================================================================= =================================================== ===> Staging for pkgconf-0.9.3 ===> Generating temporary packing list mkdir -p /wrkdirs/usr/ports/devel/pkgconf/work/stage/usr/local/bin install -c -m755 pkgconf /wrkdirs/usr/ports/devel/pkgconf/work/stage/usr/local/bin/pkgconf mkdir -p /wrkdirs/usr/ports/devel/pkgconf/work/stage/usr/local/share/aclocal install -c -m644 ./pkg.m4 /wrkdirs/usr/ports/devel/pkgconf/work/stage/usr/local/share/aclocal/pkg.m4 /bin/ln -sf pkgconf /wrkdirs/usr/ports/devel/pkgconf/work/stage/usr/local/bin/pkg-config ====> Compressing man pages ===> Building package for pkgconf-0.9.3 tar: Failed to open '/packages/All/pkgconf-0.9.3.tbz' pkg_create: make_dist: tar command failed with code 256 Creating package /packages/All/pkgconf-0.9.3.tbz Registering depends:. Registering conflicts: pkg-config-*. Creating bzip'd tar ball in '/packages/All/pkgconf-0.9.3.tbz' *** [do-package] Error code 1 Stop in /usr/ports/devel/pkgconf. ===> Cleaning for pkgconf-0.9.3 build of /usr/ports/devel/pkgconf ended at Mon Sep 23 19:45:02 CEST 2013 build time: 00:00:03 >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 19:00:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id E4BEF960 for ; Mon, 23 Sep 2013 19:00:01 +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 AA607220C for ; Mon, 23 Sep 2013 19:00:01 +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 r8NJ012Z075164 for ; Mon, 23 Sep 2013 19:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8NJ01Gt075163; Mon, 23 Sep 2013 19:00:01 GMT (envelope-from gnats) Resent-Date: Mon, 23 Sep 2013 19:00:01 GMT Resent-Message-Id: <201309231900.r8NJ01Gt075163@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, Steve Wills 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 DB3C2905 for ; Mon, 23 Sep 2013 18:54:52 +0000 (UTC) (envelope-from swills@mouf.net) Received: from mouf.net (mouf.net [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b3]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A18F921DE for ; Mon, 23 Sep 2013 18:54:52 +0000 (UTC) Received: from meatwad.mouf.net (cpe-107-015-170-205.nc.res.rr.com [107.15.170.205]) by mouf.net (8.14.5/8.14.5) with ESMTP id r8NIsfON066891 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Mon, 23 Sep 2013 18:54:47 GMT (envelope-from swills@meatwad.mouf.net) Received: (from swills@localhost) by meatwad.mouf.net (8.14.7/8.14.5/Submit) id r8NIsfhg089338; Mon, 23 Sep 2013 18:54:41 GMT (envelope-from swills) Message-Id: <201309231854.r8NIsfhg089338@meatwad.mouf.net> Date: Mon, 23 Sep 2013 18:54:41 GMT From: Steve Wills To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/182330: [PATCH] sysutils/vpnc-scripts: patch to fix path 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: Mon, 23 Sep 2013 19:00:02 -0000 >Number: 182330 >Category: ports >Synopsis: [PATCH] sysutils/vpnc-scripts: patch to fix path >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Sep 23 19:00:01 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: FreeBSD 10.0-ALPHA2 amd64 >Organization: >Environment: System: FreeBSD meatwad.mouf.net 10.0-ALPHA2 FreeBSD 10.0-ALPHA2 #7 r255703M: Thu Sep 19 21:42:35 UTC >Description: - Fix path for hooks dir Port maintainer (zi@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_8 (mode: change, diff: SVN) >How-To-Repeat: >Fix: --- vpnc-scripts-20130311.patch begins here --- Index: Makefile =================================================================== --- Makefile (revision 328029) +++ Makefile (working copy) @@ -18,6 +18,11 @@ PLIST_FILES= sbin/vpnc-script sbin/vpnc-script-sshd sbin/vpnc-script-ptrtd NO_STAGE= yes + +post-patch: + @${REINPLACE_CMD} -e 's|\(/etc/vpnc\)|${PREFIX}\1|' \ + ${WRKSRC}/vpnc-script + do-install: ${INSTALL_SCRIPT} ${WRKSRC}/vpnc-script ${PREFIX}/sbin ${INSTALL_SCRIPT} ${WRKSRC}/vpnc-script-sshd ${PREFIX}/sbin --- vpnc-scripts-20130311.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 19:00:10 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id F067A98E; Mon, 23 Sep 2013 19:00:09 +0000 (UTC) (envelope-from edwin@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 C61A8220E; Mon, 23 Sep 2013 19:00:09 +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 r8NJ095T075242; Mon, 23 Sep 2013 19:00:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8NJ09K3075241; Mon, 23 Sep 2013 19:00:09 GMT (envelope-from edwin) Date: Mon, 23 Sep 2013 19:00:09 GMT Message-Id: <201309231900.r8NJ09K3075241@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, zi@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182330: [PATCH] sysutils/vpnc-scripts: patch to fix path 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: Mon, 23 Sep 2013 19:00:10 -0000 Synopsis: [PATCH] sysutils/vpnc-scripts: patch to fix path Responsible-Changed-From-To: freebsd-ports-bugs->zi Responsible-Changed-By: edwin Responsible-Changed-When: Mon Sep 23 19:00:09 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182330 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 19: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 A5BDA6A0 for ; Mon, 23 Sep 2013 19: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 83BED23AD for ; Mon, 23 Sep 2013 19: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 r8NJU0Wk082059 for ; Mon, 23 Sep 2013 19: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 r8NJU0Xp082058; Mon, 23 Sep 2013 19:30:00 GMT (envelope-from gnats) Resent-Date: Mon, 23 Sep 2013 19:30:00 GMT Resent-Message-Id: <201309231930.r8NJU0Xp082058@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 Hixson Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 9A2E2688 for ; Mon, 23 Sep 2013 19:27:50 +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 863F723A0 for ; Mon, 23 Sep 2013 19:27:50 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8NJRoPH001131 for ; Mon, 23 Sep 2013 19:27:50 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8NJRnMo001112; Mon, 23 Sep 2013 19:27:49 GMT (envelope-from nobody) Message-Id: <201309231927.r8NJRnMo001112@oldred.freebsd.org> Date: Mon, 23 Sep 2013 19:27:49 GMT From: John Hixson To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182331: Update pianobar from 2013.05.19 to 2013.09.15 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: Mon, 23 Sep 2013 19:30:00 -0000 >Number: 182331 >Category: ports >Synopsis: Update pianobar from 2013.05.19 to 2013.09.15 >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: Mon Sep 23 19:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: John Hixson >Release: 10.0-CURRENT >Organization: iXsystems, Inc. >Environment: FreeBSD thinkbsd 9.9-CURRENT FreeBSD 10.0-CURRENT #15 r252775:255283M: Thu Sep 5 23:15:44 PDT 2013 john@thinkbsd:/usr/obj/usr/src/sys/THINKBSD amd64 >Description: >How-To-Repeat: >Fix: Patch attached with submission follows: diff -urN /usr/ports/audio/pianobar/Makefile pianobar/Makefile --- audio/pianobar/Makefile 2013-09-02 03:06:03.000000000 -0700 +++ audio/pianobar/Makefile 2013-09-23 12:18:25.190332231 -0700 @@ -2,7 +2,7 @@ # $FreeBSD: audio/pianobar/Makefile 325966 2013-09-02 10:06:03Z bapt $ PORTNAME= pianobar -PORTVERSION= 2013.05.19 +PORTVERSION= 2013.09.15 CATEGORIES= audio MASTER_SITES= http://6xq.net/projects/${PORTNAME}/ diff -urN /usr/ports/audio/pianobar/distinfo pianobar/distinfo --- audio/pianobar/distinfo 2013-06-06 13:30:57.000000000 -0700 +++ audio/pianobar/distinfo 2013-09-23 12:15:27.068797020 -0700 @@ -1,2 +1,2 @@ -SHA256 (pianobar-2013.05.19.tar.bz2) = cf88e82663d2b0aa4d73e761506eac4f3e7bc789b57d92377acd994d785e1046 -SIZE (pianobar-2013.05.19.tar.bz2) = 50942 +SHA256 (pianobar-2013.09.15.tar.bz2) = 3f8cf25ef054acf46e519d02453a6e214cfa09661b3adc03da99ace1c6f10066 +SIZE (pianobar-2013.09.15.tar.bz2) = 52553 diff -urN /usr/ports/audio/pianobar/files/patch-Makefile pianobar/files/patch-Makefile --- audio/pianobar/files/patch-Makefile 2013-06-06 13:30:57.000000000 -0700 +++ audio/pianobar/files/patch-Makefile 2013-09-23 12:20:48.558789579 -0700 @@ -1,5 +1,6 @@ ---- Makefile.orig 2013-06-06 11:12:53.077684094 -0700 -+++ Makefile 2013-06-06 11:25:07.697666849 -0700 +diff -urN pianobar-2013.09.15.orig/Makefile pianobar-2013.09.15/Makefile +--- Makefile 2013-09-15 06:54:04.000000000 -0700 ++++ Makefile 2013-09-23 12:20:05.869414665 -0700 @@ -4,7 +4,7 @@ BINDIR:=${PREFIX}/bin LIBDIR:=${PREFIX}/lib diff -urN /usr/ports/audio/pianobar/files/patch-crypt.c pianobar/files/patch-crypt.c --- audio/pianobar/files/patch-crypt.c 2012-07-14 05:56:14.000000000 -0700 +++ audio/pianobar/files/patch-crypt.c 1969-12-31 16:00:00.000000000 -0800 @@ -1,10 +0,0 @@ ---- src/libpiano/crypt.c.orig 2012-05-06 07:33:54.000000000 -0700 -+++ src/libpiano/crypt.c 2012-05-12 19:42:13.000000000 -0700 -@@ -23,6 +23,7 @@ - - #include - #include -+#define _GCRYPT_IN_LIBGCRYPT - #include - #include - #include diff -urN /usr/ports/audio/pianobar/files/patch-crypt.h pianobar/files/patch-crypt.h --- audio/pianobar/files/patch-crypt.h 2012-07-14 05:56:14.000000000 -0700 +++ audio/pianobar/files/patch-crypt.h 1969-12-31 16:00:00.000000000 -0800 @@ -1,10 +0,0 @@ ---- src/libpiano/crypt.h.orig 2012-05-06 07:33:54.000000000 -0700 -+++ src/libpiano/crypt.h 2012-05-12 19:42:29.000000000 -0700 -@@ -24,6 +24,7 @@ - #ifndef _CRYPH_H - #define _CRYPT_H - -+#define _GCRYPT_IN_LIBGCRYPT - #include - - char *PianoDecryptString (gcry_cipher_hd_t, const char * const, diff -urN /usr/ports/audio/pianobar/files/patch-piano.h pianobar/files/patch-piano.h --- audio/pianobar/files/patch-piano.h 2012-07-14 05:56:14.000000000 -0700 +++ audio/pianobar/files/patch-piano.h 1969-12-31 16:00:00.000000000 -0800 @@ -1,10 +0,0 @@ ---- src/libpiano/piano.h.orig 2012-05-06 07:33:54.000000000 -0700 -+++ src/libpiano/piano.h 2012-05-12 19:42:41.000000000 -0700 -@@ -25,6 +25,7 @@ - #define _PIANO_H - - #include -+#define _GCRYPT_IN_LIBGCRYPT - #include - - /* this is our public API; don't expect this api to be stable as long as >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 20:20:14 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 86EF9D4C; Mon, 23 Sep 2013 20:20:14 +0000 (UTC) (envelope-from sunpoet@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 5A92126BF; Mon, 23 Sep 2013 20:20:14 +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 r8NKKE47092811; Mon, 23 Sep 2013 20:20:14 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8NKKE7t092810; Mon, 23 Sep 2013 20:20:14 GMT (envelope-from sunpoet) Date: Mon, 23 Sep 2013 20:20:14 GMT Message-Id: <201309232020.r8NKKE7t092810@freefall.freebsd.org> To: sunpoet@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: sunpoet@FreeBSD.org Subject: Re: ports/181462: [MAINTAINER] devel/pecl-ev: update to 0.2.10 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: Mon, 23 Sep 2013 20:20:14 -0000 Synopsis: [MAINTAINER] devel/pecl-ev: update to 0.2.10 Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: sunpoet Responsible-Changed-When: Mon Sep 23 20:20:14 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=181462 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 20:50:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id D7BCEDF2 for ; Mon, 23 Sep 2013 20:50: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 B571528D5 for ; Mon, 23 Sep 2013 20:50: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 r8NKo0Yi098648 for ; Mon, 23 Sep 2013 20:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8NKo0lT098646; Mon, 23 Sep 2013 20:50:00 GMT (envelope-from gnats) Resent-Date: Mon, 23 Sep 2013 20:50:00 GMT Resent-Message-Id: <201309232050.r8NKo0lT098646@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, Volodymyr Kostyrko 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 BE26DC00 for ; Mon, 23 Sep 2013 20:46:19 +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 9056528B1 for ; Mon, 23 Sep 2013 20:46:19 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8NKkItr049240 for ; Mon, 23 Sep 2013 20:46:18 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8NKkIlS049239; Mon, 23 Sep 2013 20:46:18 GMT (envelope-from nobody) Message-Id: <201309232046.r8NKkIlS049239@oldred.freebsd.org> Date: Mon, 23 Sep 2013 20:46:18 GMT From: Volodymyr Kostyrko To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182332: python packages install packed eggs which makes them unusable for running services 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: Mon, 23 Sep 2013 20:50:00 -0000 >Number: 182332 >Category: ports >Synopsis: python packages install packed eggs which makes them unusable for running services >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Sep 23 20:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Volodymyr Kostyrko >Release: stable/9 >Organization: none >Environment: FreeBSD limbo.b1t.lan 9.2-PRERELEASE FreeBSD 9.2-PRERELEASE #10 r255757M: Sat Sep 21 12:39:20 EEST 2013 arcade@limbo.b1t.lan:/usr/obj/usr/src/sys/MINIMAL amd64 >Description: Most services and daemon when started have no privileges over local file system while packed egg file should be unpacked somewhere before use. Anyway egg is a distribution format, while we are using packages with ports we don't need to stick to eggs. Possible errors would be: Traceback (most recent call last): File "build/bdist.freebsd-9.1-RELEASE-p1-amd64/egg/trac/web/api.py", line 514, in send_error data, 'text/html') File "build/bdist.freebsd-9.1-RELEASE-p1-amd64/egg/trac/web/chrome.py", line 975, in render_template template = self.load_template(filename, method=method) File "build/bdist.freebsd-9.1-RELEASE-p1-amd64/egg/trac/web/chrome.py", line 933, in load_template self.get_all_templates_dirs(), auto_reload=self.auto_reload, File "build/bdist.freebsd-9.1-RELEASE-p1-amd64/egg/trac/web/chrome.py", line 649, in get_all_templates_dirs dirs.extend(provider.get_templates_dirs() or []) File "build/bdist.freebsd-9.1-RELEASE-p1-amd64/egg/trac/web/chrome.py", line 627, in get_templates_dirs pkg_resources.resource_filename('trac', 'templates'), File "build/bdist.freebsd-9.1-RELEASE-p1-amd64/egg/pkg_resources.py", line 914, in resource_filename self, resource_name File "build/bdist.freebsd-9.1-RELEASE-p1-amd64/egg/pkg_resources.py", line 1393, in get_resource_filename return self._extract_resource(manager, zip_path) File "build/bdist.freebsd-9.1-RELEASE-p1-amd64/egg/pkg_resources.py", line 1400, in _extract_resource manager, os.path.join(zip_path, name) File "build/bdist.freebsd-9.1-RELEASE-p1-amd64/egg/pkg_resources.py", line 1418, in _extract_resource self.egg_name, self._parts(zip_path) File "build/bdist.freebsd-9.1-RELEASE-p1-amd64/egg/pkg_resources.py", line 994, in get_cache_path self.extraction_error() File "build/bdist.freebsd-9.1-RELEASE-p1-amd64/egg/pkg_resources.py", line 960, in extraction_error raise err ExtractionError: Can't extract file(s) to egg cache The following error occurred while trying to extract file(s) to the Python egg cache: [Errno 13] Permission denied: '/.python-eggs' The Python egg cache directory is currently set to: /.python-eggs Perhaps your account does not have write access to this directory? You can change the cache directory by setting the PYTHON_EGG_CACHE environment variable to point to an accessible directory. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 21:20: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 D107CA23 for ; Mon, 23 Sep 2013 21:20: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 978142A77 for ; Mon, 23 Sep 2013 21:20: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 r8NLK0aT005345 for ; Mon, 23 Sep 2013 21:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8NLK05N005344; Mon, 23 Sep 2013 21:20:00 GMT (envelope-from gnats) Resent-Date: Mon, 23 Sep 2013 21:20:00 GMT Resent-Message-Id: <201309232120.r8NLK05N005344@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, Bertram Scharpf Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 7C60476E for ; Mon, 23 Sep 2013 21:15:52 +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 533262A44 for ; Mon, 23 Sep 2013 21:15:52 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8NLFplY009221 for ; Mon, 23 Sep 2013 21:15:51 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8NLFpgu009219; Mon, 23 Sep 2013 21:15:51 GMT (envelope-from nobody) Message-Id: <201309232115.r8NLFpgu009219@oldred.freebsd.org> Date: Mon, 23 Sep 2013 21:15:51 GMT From: Bertram Scharpf To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182333: print/texlive-infra still uses SITE_PERL 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: Mon, 23 Sep 2013 21:20:00 -0000 >Number: 182333 >Category: ports >Synopsis: print/texlive-infra still uses SITE_PERL >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Sep 23 21:20:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Bertram Scharpf >Release: 9.1 >Organization: >Environment: FreeBSD [...] 9.1-STABLE FreeBSD 9.1-STABLE #0: Thu Jun 6 18:31:52 CEST 2013 [...]:/usr/obj/usr/src/sys/GENERIC i386 >Description: The Makefile does install into a directory "${SITE_PERL}/TeXLive" that will result in weird "/TeXLive" (under root). "make package" and "make deinstall" both result in errors. >How-To-Repeat: Install the port and try to deinstall it. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 21:20:08 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 9A33CA53; Mon, 23 Sep 2013 21:20:08 +0000 (UTC) (envelope-from edwin@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 717C62A9E; Mon, 23 Sep 2013 21:20:08 +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 r8NLK87a006975; Mon, 23 Sep 2013 21:20:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8NLK8eB006932; Mon, 23 Sep 2013 21:20:08 GMT (envelope-from edwin) Date: Mon, 23 Sep 2013 21:20:08 GMT Message-Id: <201309232120.r8NLK8eB006932@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, hrs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182333: print/texlive-infra still uses SITE_PERL 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: Mon, 23 Sep 2013 21:20:08 -0000 Synopsis: print/texlive-infra still uses SITE_PERL Responsible-Changed-From-To: freebsd-ports-bugs->hrs Responsible-Changed-By: edwin Responsible-Changed-When: Mon Sep 23 21:20:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182333 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 21:30:01 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 EF95AF9A for ; Mon, 23 Sep 2013 21: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 CFAD72B2A for ; Mon, 23 Sep 2013 21: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 r8NLU0pl007675 for ; Mon, 23 Sep 2013 21: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 r8NLU0WW007674; Mon, 23 Sep 2013 21:30:00 GMT (envelope-from gnats) Resent-Date: Mon, 23 Sep 2013 21:30:00 GMT Resent-Message-Id: <201309232130.r8NLU0WW007674@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, "O. Hartmann" 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 50ACEA4D for ; Mon, 23 Sep 2013 21:20:07 +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 3FC2C2A9D for ; Mon, 23 Sep 2013 21:20:07 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8NLK7P0094773 for ; Mon, 23 Sep 2013 21:20:07 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8NLK7Ro094767; Mon, 23 Sep 2013 21:20:07 GMT (envelope-from nobody) Message-Id: <201309232120.r8NLK7Ro094767@oldred.freebsd.org> Date: Mon, 23 Sep 2013 21:20:07 GMT From: "O. Hartmann" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182334: multimedia/libdv: pkg-static: lstat() ... : Not a directory 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: Mon, 23 Sep 2013 21:30:01 -0000 >Number: 182334 >Category: ports >Synopsis: multimedia/libdv: pkg-static: lstat() ... : Not a directory >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Sep 23 21:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: O. Hartmann >Release: FreeBSD 10.0-CURRENT/amd64 >Organization: FU Berlin >Environment: FreeBSD 10.0-ALPHA2 #0 r255809: Mon Sep 23 09:24:23 CEST 2013 amd64 >Description: install -o root -g wheel -m 444 'libdv.pc' '/usr/ports/multimedia/libdv/work/stage/usr/local/libdata/pkgconfig/libdv.pc' ====> Compressing man pages ===> Installing for libdv-1.0.0_4 ===> Registering installation for libdv-1.0.0_4 pkg-static: lstat(/usr/ports/multimedia/libdv/work/stage/usr/local/share/doc/libdv/AUTHORS): Not a directory pkg-static: lstat(/usr/ports/multimedia/libdv/work/stage/usr/local/share/doc/libdv/COPYING): Not a directory pkg-static: lstat(/usr/ports/multimedia/libdv/work/stage/usr/local/share/doc/libdv/COPYRIGHT): Not a directory pkg-static: lstat(/usr/ports/multimedia/libdv/work/stage/usr/local/share/doc/libdv/ChangeLog): Not a directory pkg-static: lstat(/usr/ports/multimedia/libdv/work/stage/usr/local/share/doc/libdv/NEWS): Not a directory pkg-static: lstat(/usr/ports/multimedia/libdv/work/stage/usr/local/share/doc/libdv/README): Not a directory pkg-static: lstat(/usr/ports/multimedia/libdv/work/stage/usr/local/share/doc/libdv/README.dvconnect): Not a directory pkg-static: lstat(/usr/ports/multimedia/libdv/work/stage/usr/local/share/doc/libdv/README.encoder): Not a directory pkg-static: lstat(/usr/ports/multimedia/libdv/work/stage/usr/local/share/doc/libdv/TODO): Not a directory pkg-static: lstat(/usr/ports/multimedia/libdv/work/stage/usr/local/share/doc/libdv/): Not a directory *** Error code 74 Stop. make[1]: stopped in /usr/ports/multimedia/libdv *** Error code 1 >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 21:30:09 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 0230BFD2; Mon, 23 Sep 2013 21:30:09 +0000 (UTC) (envelope-from edwin@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 CD0022B32; Mon, 23 Sep 2013 21:30:08 +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 r8NLU8Zm008350; Mon, 23 Sep 2013 21:30:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8NLU88L008314; Mon, 23 Sep 2013 21:30:08 GMT (envelope-from edwin) Date: Mon, 23 Sep 2013 21:30:08 GMT Message-Id: <201309232130.r8NLU88L008314@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, bapt@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182334: multimedia/libdv: pkg-static: lstat() ... : Not a directory 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: Mon, 23 Sep 2013 21:30:09 -0000 Synopsis: multimedia/libdv: pkg-static: lstat() ... : Not a directory Responsible-Changed-From-To: freebsd-ports-bugs->bapt Responsible-Changed-By: edwin Responsible-Changed-When: Mon Sep 23 21:30:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182334 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 21:30:02 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 DB1BFF9E for ; Mon, 23 Sep 2013 21:30:01 +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 B997C2B2E for ; Mon, 23 Sep 2013 21:30:01 +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 r8NLU1am007698 for ; Mon, 23 Sep 2013 21:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8NLU16T007697; Mon, 23 Sep 2013 21:30:01 GMT (envelope-from gnats) Resent-Date: Mon, 23 Sep 2013 21:30:01 GMT Resent-Message-Id: <201309232130.r8NLU16T007697@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, Nikolai Lifanov Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 49018B86 for ; Mon, 23 Sep 2013 21:22:09 +0000 (UTC) (envelope-from lifanov@mail.lifanov.com) Received: from mail.lifanov.com (mail.lifanov.com [206.125.175.12]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 37C3E2ABC for ; Mon, 23 Sep 2013 21:22:09 +0000 (UTC) Received: by mail.lifanov.com (Postfix, from userid 1001) id C71B51A51EB; Mon, 23 Sep 2013 21:16:06 +0000 (UTC) Message-Id: <20130923211606.C71B51A51EB@mail.lifanov.com> Date: Mon, 23 Sep 2013 21:16:06 +0000 (UTC) From: Nikolai Lifanov To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/182336: [maintainer] [patch] [stagedir] games/wtf X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Nikolai Lifanov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Sep 2013 21:30:02 -0000 >Number: 182336 >Category: ports >Synopsis: [maintainer] [patch] [stagedir] games/wtf >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Sep 23 21:30:01 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Nikolai Lifanov >Release: FreeBSD 9.1-RELEASE-p7 amd64 >Organization: >Environment: System: FreeBSD mail.lifanov.com 9.1-RELEASE-p7 FreeBSD 9.1-RELEASE-p7 #0: Mon Sep 9 21:34:37 UTC 2013 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Please update games/wtf with STAGEDIR support. >How-To-Repeat: Patch is attached. >Fix: --- patch.txt begins here --- Index: games/wtf/Makefile =================================================================== --- games/wtf/Makefile (revision 328048) +++ games/wtf/Makefile (working copy) @@ -11,20 +11,14 @@ NO_BUILD= yes -MAN6= wtf.6 - -PLIST_FILES= bin/wtf %%DATADIR%%/acronyms %%DATADIR%%/acronyms.comp -PLIST_DIRS= %%DATADIR%% - -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e 's|/usr/share/misc|${DATADIR}|g' ${WRKSRC}/wtf* do-install: - ${INSTALL_SCRIPT} ${WRKSRC}/wtf ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/wtf.6 ${PREFIX}/man/man6 - @${MKDIR} ${DATADIR} - ${INSTALL_DATA} ${WRKSRC}/acronyms ${DATADIR} - ${INSTALL_DATA} ${WRKSRC}/acronyms.comp ${DATADIR} + ${INSTALL_SCRIPT} ${WRKSRC}/wtf ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/wtf.6 ${STAGEDIR}${PREFIX}/man/man6 + @${MKDIR} ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/acronyms ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/acronyms.comp ${STAGEDIR}${DATADIR} .include Index: games/wtf/pkg-plist =================================================================== --- games/wtf/pkg-plist (revision 0) +++ games/wtf/pkg-plist (working copy) @@ -0,0 +1,5 @@ +bin/wtf +man/man6/wtf.6.gz +%%DATADIR%%/acronyms +%%DATADIR%%/acronyms.comp +@dirrmtry %%DATADIR%% --- patch.txt ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 21:30:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 8FD46F9C for ; Mon, 23 Sep 2013 21:30:01 +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 720632B2C for ; Mon, 23 Sep 2013 21:30:01 +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 r8NLU1VB007687 for ; Mon, 23 Sep 2013 21:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8NLU1xl007686; Mon, 23 Sep 2013 21:30:01 GMT (envelope-from gnats) Resent-Date: Mon, 23 Sep 2013 21:30:01 GMT Resent-Message-Id: <201309232130.r8NLU1xl007686@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, Nikolai Lifanov 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 1129FA25 for ; Mon, 23 Sep 2013 21:20:04 +0000 (UTC) (envelope-from lifanov@mail.lifanov.com) Received: from mail.lifanov.com (mail.lifanov.com [206.125.175.12]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id F3E202A79 for ; Mon, 23 Sep 2013 21:20:03 +0000 (UTC) Received: by mail.lifanov.com (Postfix, from userid 1001) id 2C5EF1A536A; Mon, 23 Sep 2013 21:20:03 +0000 (UTC) Message-Id: <20130923212003.2C5EF1A536A@mail.lifanov.com> Date: Mon, 23 Sep 2013 21:20:03 +0000 (UTC) From: Nikolai Lifanov To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/182335: [maintainer] [patch] [stagedir] sysutils/ansible X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Nikolai Lifanov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Sep 2013 21:30:01 -0000 >Number: 182335 >Category: ports >Synopsis: [maintainer] [patch] [stagedir] sysutils/ansible >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Sep 23 21:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Nikolai Lifanov >Release: FreeBSD 9.1-RELEASE-p7 amd64 >Organization: >Environment: System: FreeBSD mail.lifanov.com 9.1-RELEASE-p7 FreeBSD 9.1-RELEASE-p7 #0: Mon Sep 9 21:34:37 UTC 2013 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Please update sysutils/ansible with STAGEDIR support. This also includes a slightly re-worded pkg-message. >How-To-Repeat: See the attached patch. >Fix: --- patch.txt begins here --- Index: sysutils/ansible/Makefile =================================================================== --- sysutils/ansible/Makefile (revision 328048) +++ sysutils/ansible/Makefile (working copy) @@ -30,10 +30,7 @@ SHEBANG_FILES= ${WRKSRC}/library/*/* SUB_FILES= pkg-message -PORTEXAMPLES= * -MAN1= ansible-doc.1 ansible-playbook.1 ansible-pull.1 ansible.1 -NO_STAGE= yes post-patch-script: @${REINPLACE_CMD} -e "s|/etc/ansible|${ETCDIR}|" \ ${WRKSRC}/docs/man/man1/ansible-playbook.1 \ @@ -57,14 +54,15 @@ .include post-install: - @${MKDIR} ${MAN1PREFIX}/man/man1 - ${INSTALL_MAN} ${MAN1:S,^,${WRKSRC}/docs/man/man1/,} \ - ${MAN1PREFIX}/man/man1 + @${MKDIR} ${STAGEDIR}${MAN1PREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/docs/man/man1/*.1 \ + ${STAGEDIR}${MAN1PREFIX}/man/man1 .if ${PORT_OPTIONS:MEXAMPLES} - @${MKDIR} ${EXAMPLESDIR} + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + @${RM} ${WRKSRC}/examples/*.bak (cd ${WRKSRC}/examples/ && \ - ${COPYTREE_SHARE} \* ${EXAMPLESDIR}) + ${COPYTREE_SHARE} \* ${STAGEDIR}${EXAMPLESDIR}) @${CAT} ${PKGMESSAGE} .endif Index: sysutils/ansible/files/pkg-message.in =================================================================== --- sysutils/ansible/files/pkg-message.in (revision 328048) +++ sysutils/ansible/files/pkg-message.in (working copy) @@ -1,13 +1,11 @@ -To use ansible, you need at least a host database. -You can find a sample host database file in +To use Ansible, you need at least a host database. +If you installed examples, you will have a sample +host database and a sample configuration file: %%EXAMPLESDIR%%/hosts - -You can also find a sample configuration file in - %%EXAMPLESDIR%%/ansible.cfg -Ansible 1.3.0, includes "accelerate" mode, which is +Ansible 1.3.0+, includes "accelerate" mode, which is faster and has fewer dependencies than "fireball" mode. To use it, install security/py-keyczar. Index: sysutils/ansible/pkg-plist =================================================================== --- sysutils/ansible/pkg-plist (revision 328048) +++ sysutils/ansible/pkg-plist (working copy) @@ -2,6 +2,10 @@ bin/ansible-doc bin/ansible-playbook bin/ansible-pull +man/man1/ansible-doc.1.gz +man/man1/ansible-playbook.1.gz +man/man1/ansible-pull.1.gz +man/man1/ansible.1.gz %%PYTHON_SITELIBDIR%%/ansible/__init__.py %%PYTHON_SITELIBDIR%%/ansible/__init__.pyc %%PYTHON_SITELIBDIR%%/ansible/__init__.pyo @@ -348,31 +352,36 @@ %%DATADIR%%/web_infrastructure/django_manage %%DATADIR%%/web_infrastructure/htpasswd %%DATADIR%%/web_infrastructure/supervisorctl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ansible.cfg +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hosts +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/playbooks/README.md +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/playbooks +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%% +@dirrm %%DATADIR%%/web_infrastructure +@dirrm %%DATADIR%%/utilities +@dirrm %%DATADIR%%/system +@dirrm %%DATADIR%%/source_control +@dirrm %%DATADIR%%/packaging +@dirrm %%DATADIR%%/notification +@dirrm %%DATADIR%%/network +@dirrm %%DATADIR%%/net_infrastructure +@dirrm %%DATADIR%%/monitoring +@dirrm %%DATADIR%%/messaging +@dirrm %%DATADIR%%/inventory +@dirrm %%DATADIR%%/internal +@dirrm %%DATADIR%%/files +@dirrm %%DATADIR%%/database +@dirrm %%DATADIR%%/commands @dirrm %%DATADIR%%/cloud -@dirrm %%DATADIR%%/commands -@dirrm %%DATADIR%%/database -@dirrm %%DATADIR%%/files -@dirrm %%DATADIR%%/internal -@dirrm %%DATADIR%%/inventory -@dirrm %%DATADIR%%/messaging -@dirrm %%DATADIR%%/monitoring -@dirrm %%DATADIR%%/net_infrastructure -@dirrm %%DATADIR%%/network -@dirrm %%DATADIR%%/notification -@dirrm %%DATADIR%%/packaging -@dirrm %%DATADIR%%/source_control -@dirrm %%DATADIR%%/system -@dirrm %%DATADIR%%/utilities -@dirrm %%DATADIR%%/web_infrastructure @dirrm %%DATADIR%% -@dirrm %%PYTHON_SITELIBDIR%%/ansible/callback_plugins +@dirrm %%PYTHON_SITELIBDIR%%/ansible/utils +@dirrm %%PYTHON_SITELIBDIR%%/ansible/runner/lookup_plugins +@dirrm %%PYTHON_SITELIBDIR%%/ansible/runner/filter_plugins +@dirrm %%PYTHON_SITELIBDIR%%/ansible/runner/connection_plugins +@dirrm %%PYTHON_SITELIBDIR%%/ansible/runner/action_plugins +@dirrm %%PYTHON_SITELIBDIR%%/ansible/runner +@dirrm %%PYTHON_SITELIBDIR%%/ansible/playbook @dirrm %%PYTHON_SITELIBDIR%%/ansible/inventory/vars_plugins @dirrm %%PYTHON_SITELIBDIR%%/ansible/inventory -@dirrm %%PYTHON_SITELIBDIR%%/ansible/playbook -@dirrm %%PYTHON_SITELIBDIR%%/ansible/runner/action_plugins -@dirrm %%PYTHON_SITELIBDIR%%/ansible/runner/connection_plugins -@dirrm %%PYTHON_SITELIBDIR%%/ansible/runner/filter_plugins -@dirrm %%PYTHON_SITELIBDIR%%/ansible/runner/lookup_plugins -@dirrm %%PYTHON_SITELIBDIR%%/ansible/runner -@dirrm %%PYTHON_SITELIBDIR%%/ansible/utils +@dirrm %%PYTHON_SITELIBDIR%%/ansible/callback_plugins @dirrm %%PYTHON_SITELIBDIR%%/ansible --- patch.txt ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 23:09:10 2013 Return-Path: Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 5FA9D3B3 for ; Mon, 23 Sep 2013 23:09:10 +0000 (UTC) (envelope-from lukasz@wasikowski.net) Received: from mail.wasikowski.net (mail.wasikowski.net [IPv6:2001:6a0:1cb::b]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 173D220D3 for ; Mon, 23 Sep 2013 23:09:05 +0000 (UTC) Received: from mail.wasikowski.net (mail.wasikowski.net [IPv6:2001:6a0:1cb::b]) by mail.wasikowski.net (Postfix) with ESMTP id 67C7D2933 for ; Tue, 24 Sep 2013 01:08:53 +0200 (CEST) X-Virus-Scanned: amavisd-new at wasikowski.net Received: from mail.wasikowski.net ([91.204.91.44]) by mail.wasikowski.net (scan.wasikowski.net [91.204.91.44]) (amavisd-new, port 10026) with ESMTP id ooKzJSGLeDJC for ; Tue, 24 Sep 2013 01:08:53 +0200 (CEST) Received: from [192.168.168.1] (89-71-136-148.dynamic.chello.pl [89.71.136.148]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mail.wasikowski.net (Postfix) with ESMTPSA id 8957E2930 for ; Tue, 24 Sep 2013 01:08:52 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=wasikowski.net; s=default; t=1379977732; bh=Fbo1h6z9p3rjy94UnGeIwXP56aLLN++rBJtDs9816z0=; h=Date:From:To:References:In-Reply-To; b=BYaQerewSls3BM6DqF1T6GOC8+11TFtbaMglgzHmwNIYts9x6XuMW8lcF9UAiEL+r 0kpw9sViZIvLq0Ho1QrERGY1GKa5mVXA3fDQSctpMhQaAFVsomfFPRCOdxC3yGStdN zntzNRVx1ywiXMSUKhgxff3fGiUC6wp8Q/89HTCJG6nbw8OXX5+tJMg/814P7rzslD 3m1VbH5krU2bmz4GzGv0zRIKVIgAKpSh1tzw9154OqhOfmxoNkMboFtnx4CoUcthXC DVTMSc59YaS6T+E+cOt+F5rk1IhstWsjaw4R2UanFIFeggrBwE7nUIIoaJfyfvhBZz b8kucT60n/u3w== Message-ID: <5240CA05.9020103@wasikowski.net> Date: Tue, 24 Sep 2013 01:08:53 +0200 From: =?UTF-8?B?xYF1a2FzeiBXxIVzaWtvd3NraQ==?= User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.0 MIME-Version: 1.0 To: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/181333: Maintainer update audio/teamspeak3-server 3.0.8 References: <201309151800.r8FI00Lg058707@freefall.freebsd.org> In-Reply-To: <201309151800.r8FI00Lg058707@freefall.freebsd.org> X-Enigmail-Version: 1.5.2 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit 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: Mon, 23 Sep 2013 23:09:10 -0000 W dniu 2013-09-15 20:00, Richard Hirner pisze: > The following reply was made to PR ports/181333; it has been noted by GNATS. > > From: Richard Hirner > To: bug-followup@FreeBSD.org > Cc: > Subject: Re: ports/181333: Maintainer update audio/teamspeak3-server 3.0.8 > Date: Sun, 15 Sep 2013 19:57:03 +0200 > > Please ignore the previous patch and apply this to the current port > version (3.0.7.2) because there's already another new version (3.0.9) > and I had problems to make a patch for 3.0.8 -> 3.0.9. As 3.0.8 hasn't > been committed yet, this shouldn't be a problem. Could anyone commit this one, please? -- best regards, Lukasz Wasikowski From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 23 23:59:02 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 954CC718; Mon, 23 Sep 2013 23:59:02 +0000 (UTC) (envelope-from edwin@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 6BDAB22C4; Mon, 23 Sep 2013 23:59:02 +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 r8NNx2vE037976; Mon, 23 Sep 2013 23:59:02 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8NNx2eB037975; Mon, 23 Sep 2013 23:59:02 GMT (envelope-from edwin) Date: Mon, 23 Sep 2013 23:59:02 GMT Message-Id: <201309232359.r8NNx2eB037975@freefall.freebsd.org> To: john@ixsystems.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182331: Update audio/pianobar from 2013.05.19 to 2013.09.15 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: Mon, 23 Sep 2013 23:59:02 -0000 Synopsis: Update audio/pianobar from 2013.05.19 to 2013.09.15 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Mon Sep 23 23:59:02 UTC 2013 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182331 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 00:00:01 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 7E746755 for ; Tue, 24 Sep 2013 00:00:01 +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 6D04822D0 for ; Tue, 24 Sep 2013 00:00:01 +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 r8O001l4038211 for ; Tue, 24 Sep 2013 00:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8O001lT038210; Tue, 24 Sep 2013 00:00:01 GMT (envelope-from gnats) Date: Tue, 24 Sep 2013 00:00:01 GMT Message-Id: <201309240000.r8O001lT038210@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/182331: Update audio/pianobar from 2013.05.19 to 2013.09.15 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Sep 2013 00:00:01 -0000 The following reply was made to PR ports/182331; it has been noted by GNATS. From: Edwin Groothuis To: john@pcbsd.org Cc: bug-followup@FreeBSD.org Subject: Re: ports/182331: Update audio/pianobar from 2013.05.19 to 2013.09.15 Date: Mon, 23 Sep 2013 23:59:01 UT Maintainer of audio/pianobar, Please note that PR ports/182331 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/182331 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 00:50:01 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 98D4114C for ; Tue, 24 Sep 2013 00:50:01 +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 85BFC2505 for ; Tue, 24 Sep 2013 00:50:01 +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 r8O0o17g061159 for ; Tue, 24 Sep 2013 00:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8O0o0aX061158; Tue, 24 Sep 2013 00:50:00 GMT (envelope-from gnats) Date: Tue, 24 Sep 2013 00:50:00 GMT Message-Id: <201309240050.r8O0o0aX061158@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: John Hixson Subject: Re: ports/182331: Update audio/pianobar from 2013.05.19 to 2013.09.15 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: John Hixson List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Sep 2013 00:50:01 -0000 The following reply was made to PR ports/182331; it has been noted by GNATS. From: John Hixson To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/182331: Update audio/pianobar from 2013.05.19 to 2013.09.15 Date: Mon, 23 Sep 2013 17:43:34 -0700 On Mon, Sep 23, 2013 at 11:59:01PM +0000, Edwin Groothuis wrote: > Maintainer of audio/pianobar, > > Please note that PR ports/182331 has just been submitted. > > If it contains a patch for an upgrade, an enhancement or a bug fix > you agree on, reply to this email stating that you approve the patch > and a committer will take care of it. I approve of this message. I am in fact the same person. We are one. I am him, and he is I. - John > > The full text of the PR can be found at: > http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/182331 > > -- > Edwin Groothuis via the GNATS Auto Assign Tool > edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 01:50:02 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 9CED5BE6 for ; Tue, 24 Sep 2013 01:50:02 +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 637F82793 for ; Tue, 24 Sep 2013 01:50:02 +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 r8O1o2KX074511 for ; Tue, 24 Sep 2013 01:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8O1o2bI074510; Tue, 24 Sep 2013 01:50:02 GMT (envelope-from gnats) Resent-Date: Tue, 24 Sep 2013 01:50:02 GMT Resent-Message-Id: <201309240150.r8O1o2bI074510@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, Dmitry Marakasov 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 59CF7AFA; Tue, 24 Sep 2013 01:48:46 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from smtp.timeweb.ru (smtp.timeweb.ru [92.53.117.29]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 13C332789; Tue, 24 Sep 2013 01:48:45 +0000 (UTC) Received: from [213.148.20.85] (helo=hive.panopticon) by smtp.timeweb.ru with esmtpsa (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.76) (envelope-from ) id 1VOHjx-0002Se-Bg; Tue, 24 Sep 2013 05:48:37 +0400 Received: from hades.panopticon (hades.panopticon [192.168.0.32]) by hive.panopticon (Postfix) with ESMTP id 0AF8C180; Tue, 24 Sep 2013 05:48:37 +0400 (MSK) Received: by hades.panopticon (Postfix, from userid 1000) id D87CE212; Tue, 24 Sep 2013 05:48:36 +0400 (MSK) Message-Id: <20130924014836.D87CE212@hades.panopticon> Date: Tue, 24 Sep 2013 05:48:36 +0400 (MSK) From: Dmitry Marakasov To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/182337: [PATCH] graphics/mapserver: fails to build in presence of java Cc: wen@FreeBSD.org 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: Tue, 24 Sep 2013 01:50:02 -0000 >Number: 182337 >Category: ports >Synopsis: [PATCH] graphics/mapserver: fails to build in presence of java >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Sep 24 01:50:01 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Dmitry Marakasov >Release: FreeBSD 9.1-RELEASE-p4 amd64 >Organization: >Environment: System: FreeBSD hades.panopticon 9.1-RELEASE-p4 FreeBSD 9.1-RELEASE-p4 #0 r251956: Tue Jun 18 21:41:37 MSK >Description: In presence of java, mapserver won't build complaining that it cannot find java includes. --- checking for javac... /usr/local/bin/javac checking symlink for /usr/local/bin/javac... /usr/local/bin/javavm configure: error: cannot find java include files ===> Script "configure" failed unexpectedly. --- Full log: http://people.freebsd.org/~amdmi3/mapserver-6.2.1_3.log There's likely hidden dependency as well here, which should be made optional. Port maintainer (wen@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_8 (mode: change, diff: SVN) >How-To-Repeat: Build mapserver with java/openjdk7 installed. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 01:50:10 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 CDB1FC13; Tue, 24 Sep 2013 01:50:10 +0000 (UTC) (envelope-from edwin@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 A463D2794; Tue, 24 Sep 2013 01:50:10 +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 r8O1oAUk074588; Tue, 24 Sep 2013 01:50:10 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8O1oA90074587; Tue, 24 Sep 2013 01:50:10 GMT (envelope-from edwin) Date: Tue, 24 Sep 2013 01:50:10 GMT Message-Id: <201309240150.r8O1oA90074587@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wen@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182337: [PATCH] graphics/mapserver: fails to build in presence of java 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: Tue, 24 Sep 2013 01:50:10 -0000 Synopsis: [PATCH] graphics/mapserver: fails to build in presence of java Responsible-Changed-From-To: freebsd-ports-bugs->wen Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 24 01:50:10 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182337 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 02:10:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id E5991DCE for ; Tue, 24 Sep 2013 02:10: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 C33742839 for ; Tue, 24 Sep 2013 02:10: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 r8O2A0Sk078347 for ; Tue, 24 Sep 2013 02:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8O2A0QE078346; Tue, 24 Sep 2013 02:10:00 GMT (envelope-from gnats) Resent-Date: Tue, 24 Sep 2013 02:10:00 GMT Resent-Message-Id: <201309240210.r8O2A0QE078346@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, Steve Wills Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id A53EFD94 for ; Tue, 24 Sep 2013 02:03:13 +0000 (UTC) (envelope-from swills@mouf.net) Received: from mouf.net (mouf.net [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b3]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 50CB3281E for ; Tue, 24 Sep 2013 02:03:13 +0000 (UTC) Received: from meatwad.mouf.net (cpe-107-015-170-205.nc.res.rr.com [107.15.170.205]) by mouf.net (8.14.5/8.14.5) with ESMTP id r8O233R9073786 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Tue, 24 Sep 2013 02:03:08 GMT (envelope-from swills@meatwad.mouf.net) Received: (from swills@localhost) by meatwad.mouf.net (8.14.7/8.14.5/Submit) id r8O22r2T098144; Tue, 24 Sep 2013 02:02:53 GMT (envelope-from swills) Message-Id: <201309240202.r8O22r2T098144@meatwad.mouf.net> Date: Tue, 24 Sep 2013 02:02:53 GMT From: Steve Wills To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/182338: [PATCH] net-p2p/bitcoin: Fix build on 10.0-ALPHA2 Cc: robbak@robbak.com 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: Tue, 24 Sep 2013 02:10:01 -0000 >Number: 182338 >Category: ports >Synopsis: [PATCH] net-p2p/bitcoin: Fix build on 10.0-ALPHA2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 24 02:10:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: FreeBSD 10.0-ALPHA2 amd64 >Organization: >Environment: System: FreeBSD meatwad.mouf.net 10.0-ALPHA2 FreeBSD 10.0-ALPHA2 #7 r255703M: Thu Sep 19 21:42:35 UTC >Description: - Remove redundant declaration to fix build on 10.0-ALPHA2 Port maintainer (robbak@robbak.com) is cc'd. Generated with FreeBSD Port Tools 0.99_8 (mode: change, diff: SVN) >How-To-Repeat: >Fix: --- bitcoin-0.8.5.patch begins here --- Index: files/patch-src__serialize.h =================================================================== --- files/patch-src__serialize.h (revision 0) +++ files/patch-src__serialize.h (working copy) @@ -0,0 +1,22 @@ +--- ./src/serialize.h.orig 2013-09-24 01:50:35.661706153 +0000 ++++ ./src/serialize.h 2013-09-24 01:50:52.913703572 +0000 +@@ -895,19 +895,6 @@ + iterator insert(iterator it, const char& x=char()) { return vch.insert(it, x); } + void insert(iterator it, size_type n, const char& x) { vch.insert(it, n, x); } + +- void insert(iterator it, const_iterator first, const_iterator last) +- { +- assert(last - first >= 0); +- if (it == vch.begin() + nReadPos && (unsigned int)(last - first) <= nReadPos) +- { +- // special case for inserting at the front when there's room +- nReadPos -= (last - first); +- memcpy(&vch[nReadPos], &first[0], last - first); +- } +- else +- vch.insert(it, first, last); +- } +- + void insert(iterator it, std::vector::const_iterator first, std::vector::const_iterator last) + { + assert(last - first >= 0); Property changes on: files/patch-src__serialize.h ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property --- bitcoin-0.8.5.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 02:10:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 22E01DFF; Tue, 24 Sep 2013 02:10:09 +0000 (UTC) (envelope-from edwin@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 ED778283B; Tue, 24 Sep 2013 02:10:08 +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 r8O2A8t5078474; Tue, 24 Sep 2013 02:10:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8O2A8QX078473; Tue, 24 Sep 2013 02:10:08 GMT (envelope-from edwin) Date: Tue, 24 Sep 2013 02:10:08 GMT Message-Id: <201309240210.r8O2A8QX078473@freefall.freebsd.org> To: swills@freebsd.org, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182338: [PATCH] net-p2p/bitcoin: Fix build on 10.0-ALPHA2 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: Tue, 24 Sep 2013 02:10:09 -0000 Synopsis: [PATCH] net-p2p/bitcoin: Fix build on 10.0-ALPHA2 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Tue Sep 24 02:10:08 UTC 2013 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182338 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 02:20:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id A52D2123 for ; Tue, 24 Sep 2013 02:20:01 +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 917C228B5 for ; Tue, 24 Sep 2013 02:20:01 +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 r8O2K1bH081213 for ; Tue, 24 Sep 2013 02:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8O2K1m4081212; Tue, 24 Sep 2013 02:20:01 GMT (envelope-from gnats) Date: Tue, 24 Sep 2013 02:20:01 GMT Message-Id: <201309240220.r8O2K1m4081212@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/182338: [PATCH] net-p2p/bitcoin: Fix build on 10.0-ALPHA2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Sep 2013 02:20:01 -0000 The following reply was made to PR ports/182338; it has been noted by GNATS. From: Edwin Groothuis To: robbak@robbak.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/182338: [PATCH] net-p2p/bitcoin: Fix build on 10.0-ALPHA2 Date: Tue, 24 Sep 2013 02:10:07 UT Maintainer of net-p2p/bitcoin, Please note that PR ports/182338 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/182338 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 03:00:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 2CC21820 for ; Tue, 24 Sep 2013 03:00:01 +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 0CA3F2A2C for ; Tue, 24 Sep 2013 03:00:01 +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 r8O300jF088323 for ; Tue, 24 Sep 2013 03:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8O300af088322; Tue, 24 Sep 2013 03:00:00 GMT (envelope-from gnats) Resent-Date: Tue, 24 Sep 2013 03:00:00 GMT Resent-Message-Id: <201309240300.r8O300af088322@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, "Aryeh M. Friedman" Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 479F97B4 for ; Tue, 24 Sep 2013 02:54:14 +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 3543029FC for ; Tue, 24 Sep 2013 02:54:14 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8O2sE3W089364 for ; Tue, 24 Sep 2013 02:54:14 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8O2sEqN089362; Tue, 24 Sep 2013 02:54:14 GMT (envelope-from nobody) Message-Id: <201309240254.r8O2sEqN089362@oldred.freebsd.org> Date: Tue, 24 Sep 2013 02:54:14 GMT From: "Aryeh M. Friedman" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182340: [MAINTAINER UPDATE] devl/aegis (repost) 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: Tue, 24 Sep 2013 03:00:01 -0000 >Number: 182340 >Category: ports >Synopsis: [MAINTAINER UPDATE] devl/aegis (repost) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Sep 24 03:00:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Aryeh M. Friedman >Release: >Organization: >Environment: >Description: Whats news: -- Upgrade to 4.25 (fixes many FreeBSD related bugs including ones reported by the maintainer) -- Clean up Makefile and other port files -- Set minimum GCC to be 4.8 (less is likely ok but this works) -- Dropped Tk/Tcl as a run time dependency Notes to committer: -- Install location of manpages is known to be an issue see note in current port Makefile >How-To-Repeat: >Fix: Index: Makefile =================================================================== --- Makefile (revision 328073) +++ Makefile (working copy) @@ -1,79 +1,17 @@ -# Created by: alepulver -# $FreeBSD$ +CATEGORIES=devel +PORTNAME=aegis +DELTA=510 +PORTVERSION=4.25.D${DELTA} +MASTER_SITES=http://aegis.sourceforge.net/4.25/ +COMMENT=Transacation based version control system +MAINTAINER=aryeh.friedman@gmail.com -PORTNAME= aegis -PORTVERSION= 4.24.3 -PORTREVISION= 1 -CATEGORIES= devel -MASTER_SITES= SF +GNU_CONFIGURE= yes +USE_GNOME= libxml2 +USE_GCC=4.8+ -MAINTAINER= aryeh.friedman@gmail.com -COMMENT= Transaction-based software configuration management system +BUILD_DEPENDS= ${LOCALBASE}/bin/curl:${PORTSDIR}/ftp/curl \ +# ${LOCALBASE}/bin/gcc:${PORTSDIR}/lang/gcc48 \ + ${LOCALBASE}/bin/pdf2ps:${PORTSDIR}/print/ghostscript9-nox11 -LIB_DEPENDS= curl:${PORTSDIR}/ftp/curl -RUN_DEPENDS= tkdiff:${PORTSDIR}/textproc/tkdiff - -USES= gettext perl5 -USE_GNOME= libxml2 -USE_TK= yes -GNU_CONFIGURE= yes -CPPFLAGS+= "-I${LOCALBASE}/include" -CONFIGURE_ARGS= --with-nlsdir="${PREFIX}/share/locale" -CONFIGURE_ENV= WISH="${WISH}" -LDFLAGS+= -L${LOCALBASE}/lib -MAKE_JOBS_UNSAFE= yes - -# XXX Manpages are installed into ${DATADIR} too -- there's no easy way to -# stop this because we don't have Makefile.am provided. Maintainer will -# sort this with upstream. - -MAN1= ae-cvs-ci.1 ae-repo-ci.1 ae-sccs-put.1 ae_c.1 ae_diff2htm.1 ae_p.1 \ - aeannotate.1 aeb.1 aebisect.1 aebuffy.1 aeca.1 aecd.1 aechown.1 \ - aeclean.1 aeclone.1 aecomp.1 aecomplete.1 aecp.1 aecpu.1 aecvsserver.1 \ - aed.1 aedb.1 aedbu.1 aede.1 aede-policy.1 aedeu.1 aediff.1 \ - aedist.1 aedn.1 aeedit.1 aefa.1 aefind.1 aefinish.1 aefp.1 \ - aeget.1 aegis.1 aegis.cgi.1 aeib.1 aeibu.1 aeifail.1 aeimport.1 \ - aeintegratq.1 aeipass.1 ael.1 aelcf.1 aelic.1 aelock.1 aelpf.1 \ - aels.1 aemakegen.1 aemeasure.1 aemt.1 aemtu.1 aemv.1 aemvu.1 aena.1 \ - aenbr.1 aenbru.1 aenc.1 aencu.1 aend.1 aenf.1 aenfu.1 aeni.1 aenpa.1 \ - aenpr.1 aenrls.1 aenrv.1 aent.1 aentu.1 aepa.1 aepatch.1 \ - aepromptcmd.1 aer.1 aera.1 aerb.1 aerbu.1 aerd.1 aerect.1 \ - aerevml.1 aerfail.1 aeri.1 aerm.1 aermpr.1 aermu.1 aerpa.1 \ - aerpass.1 aerpu.1 aerrv.1 aesub.1 aesubunit.1 aesvt.1 aet.1 \ - aetar.1 aev.1 aexml.1 aexver.1 tkaeca.1 tkaegis.1 tkaenc.1 \ - tkaepa.1 tkaer.1 -MAN5= aecattr.5 aecstate.5 aedir.5 aefattr.5 aefstate.5 aegis.5 \ - aegstate.5 aelock.5 aemetrics.5 aepattr.5 aepconf.5 aepstate.5 \ - aer.5 aerptidx.5 aesub.5 aetest.5 aeuconf.5 aeustate.5 -PORTDATA= * -PORTDOCS= * - -NO_STAGE= yes -.include - -post-patch: -# Avoid "2>/dev/null" redirect in csh (ends up with empty manpath). - @${REINPLACE_CMD} -Ee 's|(MANPATH_PROG) 2>/dev/null|\1|' \ - ${WRKSRC}/configure -# Fix path to Tk interpreter. - @cd ${WRKSRC}/script && ${REINPLACE_CMD} -e 's|wish |${WISH} |' \ - aebuffy.in aecomp.in aexver.in tkaeca.in tkaegis.in tkaenc.in \ - tkaepa.in tkaer.in xaegis.in -# Import global variable "datadir" inside function (not found otherwise). - @${REINPLACE_CMD} -e 's|global lib|& datadir|' \ - ${WRKSRC}/script/xaegis.in - -post-install: -.if !defined(NOPORTDOCS) -. for dir in de en - ${MKDIR} ${DOCSDIR}/${dir} - cd ${WRKSRC}/lib/${dir} && ${INSTALL_DATA} *.ps *.txt ${DOCSDIR}/${dir} -. endfor -.endif -# Fails to reinstall because keeps track of created directories, so make it -# forget that, by recreating them on each install. - @${FIND} ${WRKSRC} -type f -name ".*dir" -delete -# Information. - @${CAT} ${PKGMESSAGE} - -.include +.include Index: distinfo =================================================================== --- distinfo (revision 328073) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (aegis-4.24.3.tar.gz) = 0ecedfbb7dbd89107c927d00ab44b9291f31257a23f9ed4dcca29c58bb8b5767 -SIZE (aegis-4.24.3.tar.gz) = 4180073 +SIZE (aegis-4.25.D510.tar.gz) = 5194355 +SHA256 (aegis-4.25.D510.tar.gz) = 53484003cf47709f2366aaecfdfa594dddd5f8ae0bd794be7d24e9ad86bf458e >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 03:01:25 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 68C569D3; Tue, 24 Sep 2013 03:01:25 +0000 (UTC) (envelope-from gjb@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 3EA5D2ABF; Tue, 24 Sep 2013 03:01:25 +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 r8O31PWe090053; Tue, 24 Sep 2013 03:01:25 GMT (envelope-from gjb@freefall.freebsd.org) Received: (from gjb@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8O31PAf090052; Tue, 24 Sep 2013 03:01:25 GMT (envelope-from gjb) Date: Tue, 24 Sep 2013 03:01:25 GMT Message-Id: <201309240301.r8O31PAf090052@freefall.freebsd.org> To: gjb@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: gjb@FreeBSD.org Subject: Re: ports/182339: [MAINTAINER UPDATE] devl/aegis 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: Tue, 24 Sep 2013 03:01:25 -0000 Synopsis: [MAINTAINER UPDATE] devl/aegis Class-Changed-From-To: sw-bug->maintainer-update Class-Changed-By: gjb Class-Changed-When: Tue Sep 24 03:00:51 UTC 2013 Class-Changed-Why: Maintainer update. Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: gjb Responsible-Changed-When: Tue Sep 24 03:00:51 UTC 2013 Responsible-Changed-Why: Ports PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=182339 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 05:09:16 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 201A3BF1; Tue, 24 Sep 2013 05:09:16 +0000 (UTC) (envelope-from edwin@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 E59FD20E1; Tue, 24 Sep 2013 05:09:15 +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 r8O59Fab014974; Tue, 24 Sep 2013 05:09:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8O59FpF014973; Tue, 24 Sep 2013 05:09:15 GMT (envelope-from edwin) Date: Tue, 24 Sep 2013 05:09:15 GMT Message-Id: <201309240509.r8O59FpF014973@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, bapt@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182329: devel/pkgconf cannot be installed on 9.2-rc4 from ports 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: Tue, 24 Sep 2013 05:09:16 -0000 Synopsis: devel/pkgconf cannot be installed on 9.2-rc4 from ports Responsible-Changed-From-To: freebsd-ports-bugs->bapt Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 24 05:09:15 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182329 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 05:10:35 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id D152FC30; Tue, 24 Sep 2013 05:10:35 +0000 (UTC) (envelope-from linimon@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 A596720EE; Tue, 24 Sep 2013 05:10:35 +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 r8O5AZQM015132; Tue, 24 Sep 2013 05:10:35 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8O5AZpl015131; Tue, 24 Sep 2013 05:10:35 GMT (envelope-from linimon) Date: Tue, 24 Sep 2013 05:10:35 GMT Message-Id: <201309240510.r8O5AZpl015131@freefall.freebsd.org> To: mephius@gmail.com, johnpupu@gmail.com, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/181215: [PATCH] www/pecl-sphinx: [SUMMARIZE CHANGES] 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: Tue, 24 Sep 2013 05:10:35 -0000 Synopsis: [PATCH] www/pecl-sphinx: [SUMMARIZE CHANGES] State-Changed-From-To: feedback->open State-Changed-By: linimon State-Changed-When: Tue Sep 24 05:10:09 UTC 2013 State-Changed-Why: Maintainer approved. http://www.freebsd.org/cgi/query-pr.cgi?pr=181215 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 05:15:51 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 92BE6CA1; Tue, 24 Sep 2013 05:15:51 +0000 (UTC) (envelope-from linimon@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 664022133; Tue, 24 Sep 2013 05:15:51 +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 r8O5Fpa5017696; Tue, 24 Sep 2013 05:15:51 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8O5Fp08017695; Tue, 24 Sep 2013 05:15:51 GMT (envelope-from linimon) Date: Tue, 24 Sep 2013 05:15:51 GMT Message-Id: <201309240515.r8O5Fp08017695@freefall.freebsd.org> To: john@pcbsd.org, john@ixsystems.com, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/182331: Update audio/pianobar from 2013.05.19 to 2013.09.15 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: Tue, 24 Sep 2013 05:15:51 -0000 Synopsis: Update audio/pianobar from 2013.05.19 to 2013.09.15 State-Changed-From-To: feedback->open State-Changed-By: linimon State-Changed-When: Tue Sep 24 05:15:11 UTC 2013 State-Changed-Why: Submitter is maintainer from another address. To submitter: the autoassigner only knows to exactly check the From: address vs. the MAINTINER line. http://www.freebsd.org/cgi/query-pr.cgi?pr=182331 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 05:42:37 2013 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 836B3DB; Tue, 24 Sep 2013 05:42:37 +0000 (UTC) (envelope-from john@ixsystems.com) Received: from mail.iXsystems.com (newknight.ixsystems.com [206.40.55.70]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 655E52289; Tue, 24 Sep 2013 05:42:36 +0000 (UTC) Received: from localhost (mail.ixsystems.com [10.2.55.1]) by mail.iXsystems.com (Postfix) with ESMTP id 8E78766ADB; Mon, 23 Sep 2013 22:42:36 -0700 (PDT) Received: from mail.iXsystems.com ([10.2.55.1]) by localhost (mail.ixsystems.com [10.2.55.1]) (maiad, port 10024) with ESMTP id 87128-03; Mon, 23 Sep 2013 22:42:27 -0700 (PDT) Received: from thinkbsd.divinix.org (unknown [10.8.0.10]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.iXsystems.com (Postfix) with ESMTPSA id D322A66AD6; Mon, 23 Sep 2013 22:42:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=ixsystems.com; s=newknight0; t=1380001347; bh=FU0uARD20zMzkMTkCs1jcxRc1qSUAhqrlAxG2QgMkaQ=; h=Date:From:To:Cc:Subject:References:In-Reply-To; b=Dvatb8b5ynQ0yLgOnO6+RdpjdKhNsv1PgcOakdczBXV4C23f8aaIL9RtgR8Rxh2++ RyqIXPknECLFk3n0C4GOlkthPY+xKMyAXrqfy6M0YE3ZVEKOwRm2gOcsf6zHb7L4Sq /J0qVCO3rpVUX0WGtczUW/FZ6yOadUNcENsGG8B4= Date: Mon, 23 Sep 2013 22:42:25 -0700 From: John Hixson To: linimon@FreeBSD.org Subject: Re: ports/182331: Update audio/pianobar from 2013.05.19 to 2013.09.15 Message-ID: <20130924054225.GE68423@thinkbsd.divinix.org> References: <201309240515.r8O5Fp08017695@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201309240515.r8O5Fp08017695@freefall.freebsd.org> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: freebsd-ports-bugs@FreeBSD.org, john@pcbsd.org 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: Tue, 24 Sep 2013 05:42:37 -0000 On Tue, Sep 24, 2013 at 05:15:51AM +0000, linimon@FreeBSD.org wrote: > Synopsis: Update audio/pianobar from 2013.05.19 to 2013.09.15 > > State-Changed-From-To: feedback->open > State-Changed-By: linimon > State-Changed-When: Tue Sep 24 05:15:11 UTC 2013 > State-Changed-Why: > Submitter is maintainer from another address. > > To submitter: the autoassigner only knows to exactly check the From: address > vs. the MAINTINER line. It's okay. I can never remember which address I use for any of this stuff anyhow ;-) - John > > http://www.freebsd.org/cgi/query-pr.cgi?pr=182331 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 07:20:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 93666507 for ; Tue, 24 Sep 2013 07:20: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 5976226CC for ; Tue, 24 Sep 2013 07:20: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 r8O7K03T050808 for ; Tue, 24 Sep 2013 07:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8O7K0JE050807; Tue, 24 Sep 2013 07:20:00 GMT (envelope-from gnats) Resent-Date: Tue, 24 Sep 2013 07:20:00 GMT Resent-Message-Id: <201309240720.r8O7K0JE050807@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, "O. Hartmann" Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id AFAEE4F1 for ; Tue, 24 Sep 2013 07:19:04 +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 9C13026C5 for ; Tue, 24 Sep 2013 07:19:04 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8O7J4eP077057 for ; Tue, 24 Sep 2013 07:19:04 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8O7J4Sq077052; Tue, 24 Sep 2013 07:19:04 GMT (envelope-from nobody) Message-Id: <201309240719.r8O7J4Sq077052@oldred.freebsd.org> Date: Tue, 24 Sep 2013 07:19:04 GMT From: "O. Hartmann" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182342: graphics/openimageio: error: no matching member function for call to 'print' 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: Tue, 24 Sep 2013 07:20:00 -0000 >Number: 182342 >Category: ports >Synopsis: graphics/openimageio: error: no matching member function for call to 'print' >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Sep 24 07:20:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: O. Hartmann >Release: FreeBSD 10.0-CURRENT/amd64 >Organization: FU Berlin >Environment: FreeBSD 10.0-ALPHA2 #0 r255817: Mon Sep 23 18:35:39 CEST 2013 amd64 no GNU libstdc++ no converters/libiconv >Description: [...] -- Build files have been written to: /usr/ports/graphics/openimageio/work/.build ===> Building for openimageio-1.2.1_1 Scanning dependencies of target OpenImageIO [ 0%] Building CXX object libOpenImageIO/CMakeFiles/OpenImageIO.dir/exif.cpp.o [ 1%] Building CXX object libOpenImageIO/CMakeFiles/OpenImageIO.dir/formatspec.cpp.o /usr/ports/graphics/openimageio/work/OpenImageIO-oiio-f7908a3/src/libOpenImageIO/formatspec.cpp:994:9: error: no matching member function for call to 'print' doc.print (result, ""); >How-To-Repeat: Try installing graphics/openimageio on 10.0-CURRENT/10.0-ALPHA2 >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 07:20:08 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 7C03553B; Tue, 24 Sep 2013 07:20:08 +0000 (UTC) (envelope-from edwin@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 5248C26CF; Tue, 24 Sep 2013 07:20:08 +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 r8O7K86C050945; Tue, 24 Sep 2013 07:20:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8O7K8tg050944; Tue, 24 Sep 2013 07:20:08 GMT (envelope-from edwin) Date: Tue, 24 Sep 2013 07:20:08 GMT Message-Id: <201309240720.r8O7K8tg050944@freefall.freebsd.org> To: ohartman@zedat.fu-berlin.de, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182342: graphics/openimageio: error: no matching member function for call to 'print' 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: Tue, 24 Sep 2013 07:20:08 -0000 Synopsis: graphics/openimageio: error: no matching member function for call to 'print' State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Tue Sep 24 07:20:08 UTC 2013 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182342 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 07:30:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 2543E62C for ; Tue, 24 Sep 2013 07:30:01 +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 12A85273E for ; Tue, 24 Sep 2013 07:30:01 +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 r8O7U0kr055001 for ; Tue, 24 Sep 2013 07: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 r8O7U0Y5055000; Tue, 24 Sep 2013 07:30:00 GMT (envelope-from gnats) Date: Tue, 24 Sep 2013 07:30:00 GMT Message-Id: <201309240730.r8O7U0Y5055000@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/182342: graphics/openimageio: error: no matching member function for call to 'print' X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Sep 2013 07:30:01 -0000 The following reply was made to PR ports/182342; it has been noted by GNATS. From: Edwin Groothuis To: FreeBSD@Shaneware.biz Cc: bug-followup@FreeBSD.org Subject: Re: ports/182342: graphics/openimageio: error: no matching member function for call to 'print' Date: Tue, 24 Sep 2013 07:20:07 UT Maintainer of graphics/openimageio, Please note that PR ports/182342 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/182342 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 08:10:01 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 921081D9 for ; Tue, 24 Sep 2013 08:10:01 +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 7D1B6299F for ; Tue, 24 Sep 2013 08:10:01 +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 r8O8A1s5068050 for ; Tue, 24 Sep 2013 08:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8O8A1SA068049; Tue, 24 Sep 2013 08:10:01 GMT (envelope-from gnats) Date: Tue, 24 Sep 2013 08:10:01 GMT Message-Id: <201309240810.r8O8A1SA068049@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Tijl Coosemans Subject: Re: ports/182220: [PATCH] graphics/opencolorio: Fix build on 10.0-ALPHA and pass poudriere testpor X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Tijl Coosemans List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Sep 2013 08:10:01 -0000 The following reply was made to PR ports/182220; it has been noted by GNATS. From: Tijl Coosemans To: Shane Ambler Cc: bug-followup@FreeBSD.org Subject: Re: ports/182220: [PATCH] graphics/opencolorio: Fix build on 10.0-ALPHA and pass poudriere testpor Date: Tue, 24 Sep 2013 10:02:58 +0200 --Sig_/ODTF94f19=gnt+Ts2hjoP+o Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable On Sat, 21 Sep 2013 09:40:01 GMT Shane Ambler wrote: > I improved the test to be more specific and added -std=3Dc++11 cxxflags > Also remove MAKE_JOBS_SAFE > Not certain that the pkg-plist changes are needed but do no harm. > =20 > diff -Nru opencolorio.orig/Makefile opencolorio/Makefile > --- opencolorio.orig/Makefile 2013-09-21 18:54:01.756081148 +0930 > +++ opencolorio/Makefile 2013-09-21 18:52:12.111081631 +0930 > @@ -3,7 +3,7 @@ > =20 > PORTNAME?=3D opencolorio > PORTVERSION=3D 1.0.8 > -PORTREVISION?=3D 0 > +PORTREVISION?=3D 1 > CATEGORIES=3D graphics multimedia > =20 > MAINTAINER?=3D FreeBSD@Shaneware.biz > @@ -29,8 +29,6 @@ > -DOCIO_BUILD_STATIC:BOOL=3DOFF \ > -DOCIO_BUILD_PYGLUE:BOOL=3DON > =20 > -MAKE_JOBS_SAFE?=3D yes > - > PLIST=3D ${PKGDIR}/pkg-plist${PKGNAMESUFFIX} > =20 > .if !defined(OCIO_TOOLS) > @@ -61,6 +59,10 @@ > CFLAGS+=3D -march=3Dpentium2 > .endif > =20 > +.if (${CXX:T} =3D=3D "clang++" && ${OSVERSION} > 902000) || ${OSVERSION}= > 1000054 > +CXXFLAGS+=3D -stdlib=3Dlibc++ -std=3Dc++11 > +.endif > + The problem with this is that now all C++ ports that link with this library have to be build with libc++ too. You can remove this entire .if block if you adjust the patch below. > post-patch: > .if defined(OCIO_TOOLS) > @${FIND} ${WRKSRC}/src/apps -name "main.cpp" -exec \ > diff -Nru opencolorio.orig/files/patch-export__OpenColorIO__OpenColorABI.= h.in opencolorio/files/patch-export__OpenColorIO__OpenColorABI.h.in > --- opencolorio.orig/files/patch-export__OpenColorIO__OpenColorABI.h.in 2= 013-09-21 18:54:01.743091115 +0930 > +++ opencolorio/files/patch-export__OpenColorIO__OpenColorABI.h.in 2013-0= 9-21 18:52:12.111081631 +0930 > @@ -1,6 +1,17 @@ > --- export/OpenColorIO/OpenColorABI.h.in.orig 2012-12-12 09:51:23.000000= 000 +1030 > -+++ export/OpenColorIO/OpenColorABI.h.in 2013-01-29 21:13:34.104857600 += 1030 > -@@ -65,7 +65,7 @@ > ++++ export/OpenColorIO/OpenColorABI.h.in 2013-09-19 22:38:40.141969294 += 0930 > +@@ -55,6 +55,10 @@ > + #include > + #define OCIO_SHARED_PTR boost::shared_ptr > + #define OCIO_DYNAMIC_POINTER_CAST boost::dynamic_pointer_cast > ++#elif __cplusplus >=3D 201103 && defined(_LIBCPP_VERSION) Remove "__cplusplus >=3D 201103 &&" here. > ++#include > ++#define OCIO_SHARED_PTR std::shared_ptr > ++#define OCIO_DYNAMIC_POINTER_CAST std::dynamic_pointer_cast > + #elif __GNUC__ >=3D 4 > + #include > + #define OCIO_SHARED_PTR std::tr1::shared_ptr > +@@ -65,7 +69,7 @@ > =20 > // If supported, define OCIOEXPORT, OCIOHIDDEN > // (used to choose which symbols to export from OpenColorIO) --Sig_/ODTF94f19=gnt+Ts2hjoP+o Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.21 (FreeBSD) iF4EAREIAAYFAlJBRzcACgkQfoCS2CCgtisBSAD/cs3QsMjd9fjHBs0kLeI9JgNQ lhr/Ax6XT4X0MFtpQ6AA/RyxVMN0h2uLDwH8LouMAeZTpxHHkGIP2urJePesYd1P =3Az6 -----END PGP SIGNATURE----- --Sig_/ODTF94f19=gnt+Ts2hjoP+o-- From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 08:10:02 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 B7FB91DA for ; Tue, 24 Sep 2013 08:10:02 +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 8B25429A0 for ; Tue, 24 Sep 2013 08:10:02 +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 r8O8A2l5068058 for ; Tue, 24 Sep 2013 08:10:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8O8A2Qh068057; Tue, 24 Sep 2013 08:10:02 GMT (envelope-from gnats) Date: Tue, 24 Sep 2013 08:10:02 GMT Message-Id: <201309240810.r8O8A2Qh068057@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Robert Backhaus Subject: Re: ports/182338: [PATCH] net-p2p/bitcoin: Fix build on 10.0-ALPHA2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Robert Backhaus List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Sep 2013 08:10:02 -0000 The following reply was made to PR ports/182338; it has been noted by GNATS. From: Robert Backhaus To: "bug-followup@freebsd.org" Cc: Subject: Re: ports/182338: [PATCH] net-p2p/bitcoin: Fix build on 10.0-ALPHA2 Date: Tue, 24 Sep 2013 18:01:28 +1000 --001a11c3e47c426bb204e71c8be3 Content-Type: text/plain; charset=ISO-8859-1 Thanks, steve. I had seen messages on that, but without an instance of 10.0A2 to test it on, and with redports having troubles, I didn't see how I could test it all. I've tested the patch on myself on everything I have available, but redports is still not working for 10-CURRENT. I'll defer to your testing and approve. Please commit. On 24 September 2013 12:10, Edwin Groothuis wrote: > Maintainer of net-p2p/bitcoin, > > Please note that PR ports/182338 has just been submitted. > > If it contains a patch for an upgrade, an enhancement or a bug fix > you agree on, reply to this email stating that you approve the patch > and a committer will take care of it. > > The full text of the PR can be found at: > http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/182338 > > -- > Edwin Groothuis via the GNATS Auto Assign Tool > edwin@FreeBSD.org > --001a11c3e47c426bb204e71c8be3 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable
Thanks, steve. I had seen messages on that, but without an= instance of 10.0A2 to test it on, and with redports having troubles, I did= n't see how I could test it all.

I've tested the= patch on myself on everything I have available, but redports is still not = working for 10-CURRENT. I'll defer to your testing and approve.

Please commit.

On 24 September 2013 12:10, Edwin Groothuis <ed= win@freebsd.org> wrote:
Maintainer of net-p2p/bitcoin,

Please note that PR ports/182338 has just been submitted.

If it contains a patch for an upgrade, an enhancement or a bug fix
you agree on, reply to this email stating that you approve the patch
and a committer will take care of it.

The full text of the PR can be found at:
=A0 =A0 http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dports/182= 338

--
Edwin Groothuis via the GNATS Auto Assign Tool
edwin@FreeBSD.org

--001a11c3e47c426bb204e71c8be3-- From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 10:30:05 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 3D63E31E for ; Tue, 24 Sep 2013 10:30:05 +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 10B8521A4 for ; Tue, 24 Sep 2013 10:30:05 +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 r8OAU1iJ099109 for ; Tue, 24 Sep 2013 10:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8OAU1tC099107; Tue, 24 Sep 2013 10:30:01 GMT (envelope-from gnats) Date: Tue, 24 Sep 2013 10:30:01 GMT Message-Id: <201309241030.r8OAU1tC099107@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Aragon Gouveia Subject: Re: ports/181641: mail/ssmtp provide option for CRAM-MD5 support X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Aragon Gouveia List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Sep 2013 10:30:05 -0000 The following reply was made to PR ports/181641; it has been noted by GNATS. From: Aragon Gouveia To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/181641: mail/ssmtp provide option for CRAM-MD5 support Date: Tue, 24 Sep 2013 12:25:22 +0200 This is a multi-part message in MIME format. --------------010108090708080801070201 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Please could attached patch be committed? --------------010108090708080801070201 Content-Type: text/plain; charset=us-ascii; name="ssmtp.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="ssmtp.txt" --- Makefile.orig 2013-09-23 11:49:39.000000000 +0200 +++ Makefile 2013-09-23 11:50:56.000000000 +0200 @@ -3,6 +3,7 @@ PORTNAME= ssmtp PORTVERSION= 2.64 +PORTREVISION= 1 CATEGORIES= mail ipv6 MASTER_SITES= ${MASTER_SITE_DEBIAN_POOL} DISTFILES= ${PORTNAME}_${PORTVERSION}.orig${EXTRACT_SUFX} @@ -22,7 +23,6 @@ SUB_FILES+= pkg-message PKGMESSAGE= ${WRKDIR}/pkg-message -CONFIGURE_ARGS= --enable-ssl --enable-md5auth MAKE_ENV+= TARGET_ARCH= CFLAGS+= -I${OPENSSLINC} LDFLAGS+= -L${OPENSSLLIB} @@ -31,16 +31,18 @@ MAN8= ssmtp.8 MAN5= ssmtp.conf.5 -OPTIONS_DEFINE= LOGFILE IPV6 USERPREFS XORIGIP -LOGFILE_DESC= log file -USERPREFS_DESC= user defined revaliases -XORIGIP_DESC= Add X-Originating-IP header +OPTIONS_DEFINE= LOGFILE IPV6 USERPREFS XORIGIP CRAMMD5 OPENSSL +OPTIONS_DEFAULT= XORIGIP CRAMMD5 OPENSSL +LOGFILE_DESC= Log file +USERPREFS_DESC= User-defined revaliases +XORIGIP_DESC= X-Originating-IP header for REMOTE_ADDR envvar +CRAMMD5_DESC= CRAM-MD5 authentication support NO_STAGE= yes .include .if ${PORT_OPTIONS:MLOGFILE} -CONFIGURE_ARGS+= --enable-logfile +CONFIGURE_ARGS+= --enable-logfile .endif .if ${PORT_OPTIONS:MXORIGIP} @@ -48,7 +50,15 @@ .endif .if ${PORT_OPTIONS:MIPV6} -CONFIGURE_ARGS+= --enable-inet6 +CONFIGURE_ARGS+= --enable-inet6 +.endif + +.if ${PORT_OPTIONS:MCRAMMD5} +CONFIGURE_ARGS+= --enable-md5auth +.endif + +.if ${PORT_OPTIONS:MOPENSSL} +CONFIGURE_ARGS+= --enable-ssl .endif .if ${PORT_OPTIONS:MUSERPREFS} --------------010108090708080801070201-- From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 11:50:02 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 2B7C3E60 for ; Tue, 24 Sep 2013 11:50:02 +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 15BE12643 for ; Tue, 24 Sep 2013 11:50:02 +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 r8OBo1pa014782 for ; Tue, 24 Sep 2013 11:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8OBo1dc014755; Tue, 24 Sep 2013 11:50:01 GMT (envelope-from gnats) Date: Tue, 24 Sep 2013 11:50:01 GMT Message-Id: <201309241150.r8OBo1dc014755@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: "O. Hartmann" Subject: Re: ports/182342: graphics/openimageio: error: no matching member function for call to 'print' X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: "O. Hartmann" List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Sep 2013 11:50:02 -0000 The following reply was made to PR ports/182342; it has been noted by GNATS. From: "O. Hartmann" To: bug-followup@FreeBSD.org, ohartman@zedat.fu-berlin.de Cc: Subject: Re: ports/182342: graphics/openimageio: error: no matching member function for call to 'print' Date: Tue, 24 Sep 2013 13:47:16 +0200 --Sig_/YXhU0RfckUOMdSPQ5HZtF+. Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Please close. Sorry, double of ports/182007. oh --Sig_/YXhU0RfckUOMdSPQ5HZtF+. Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.21 (FreeBSD) iQEcBAEBAgAGBQJSQXvKAAoJEOgBcD7A/5N84YEIAJ0LbccY1Sk415dzS+MOp33u Kiw+ImFHWhG+fEhp6XGQaHwl5sJSSFoukuJ1xuLhiVZcvKaDOFqX4s1oANv+eQVU e+MMe6SznBU8sIekIRJS2piXlQUnzwjgs5+DHyLqX00wnzPSC/QzrY93zovypTpW pBw7gWPCsf7iVsFmVN3jHc5IbmaE1ib4G9vb5wsgY6KMK2FprNvsHKSGh+RjuDfB N72bn/lbtER/QYTC7BSfjUrYE/ZxxhN335F/sEH6hoQ/ZqmHb/ZJCJjx1+I0BZD0 IxqUMkHwv2iUfFbK68Hx07GzB+uiVnP0k/rGgVo8aIaSFH9ih1O6ShhshA4GnXI= =5Oqd -----END PGP SIGNATURE----- --Sig_/YXhU0RfckUOMdSPQ5HZtF+.-- From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 12:30:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 9FD892D7 for ; Tue, 24 Sep 2013 12: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 6651B292F for ; Tue, 24 Sep 2013 12: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 r8OCU06K026482 for ; Tue, 24 Sep 2013 12: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 r8OCU0gc026481; Tue, 24 Sep 2013 12:30:00 GMT (envelope-from gnats) Resent-Date: Tue, 24 Sep 2013 12:30:00 GMT Resent-Message-Id: <201309241230.r8OCU0gc026481@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, Daniel Ylitalo 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 79D2ACF3 for ; Tue, 24 Sep 2013 12:20:00 +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 64CC32887 for ; Tue, 24 Sep 2013 12:20:00 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8OCJxQQ042701 for ; Tue, 24 Sep 2013 12:19:59 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8OCJxZS042698; Tue, 24 Sep 2013 12:19:59 GMT (envelope-from nobody) Message-Id: <201309241219.r8OCJxZS042698@oldred.freebsd.org> Date: Tue, 24 Sep 2013 12:19:59 GMT From: Daniel Ylitalo To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182344: ftp/curl: Misssing dependency in Makefile 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: Tue, 24 Sep 2013 12:30:00 -0000 >Number: 182344 >Category: ports >Synopsis: ftp/curl: Misssing dependency in Makefile >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Sep 24 12:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Daniel Ylitalo >Release: 9.1-RELEASE-p7 >Organization: 203 Webgroup AB >Environment: FreeBSD xx.xxxx.xx 9.1-RELEASE-p7 FreeBSD 9.1-RELEASE-p7 #0: Mon Sep 23 13:06:52 CEST 2013 root@xx.xxxx.xx:/usr/obj/usr/src/sys/GENERIC amd64 >Description: the ftp/curl/Makefile does not add a dependency to the security/openssl port when openssl is checked. This makes most ssl urls unusuable with curl if you have the openssl option checked in make config >How-To-Repeat: >Fix: Add security/openssl as build dependency if openssl is checked in make config >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 12:30:08 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 7AD5C309; Tue, 24 Sep 2013 12:30:08 +0000 (UTC) (envelope-from edwin@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 51A792933; Tue, 24 Sep 2013 12:30:08 +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 r8OCU8hm026622; Tue, 24 Sep 2013 12:30:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8OCU8lU026621; Tue, 24 Sep 2013 12:30:08 GMT (envelope-from edwin) Date: Tue, 24 Sep 2013 12:30:08 GMT Message-Id: <201309241230.r8OCU8lU026621@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182344: ftp/curl: Misssing dependency in Makefile 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: Tue, 24 Sep 2013 12:30:08 -0000 Synopsis: ftp/curl: Misssing dependency in Makefile Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 24 12:30:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182344 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 12:40:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id A7CF2670 for ; Tue, 24 Sep 2013 12:40: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 87B4729E8 for ; Tue, 24 Sep 2013 12:40: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 r8OCe0C1028344 for ; Tue, 24 Sep 2013 12:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8OCe0rH028343; Tue, 24 Sep 2013 12:40:00 GMT (envelope-from gnats) Resent-Date: Tue, 24 Sep 2013 12:40:00 GMT Resent-Message-Id: <201309241240.r8OCe0rH028343@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, Steve Wills 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 8A67B5FC for ; Tue, 24 Sep 2013 12:36:03 +0000 (UTC) (envelope-from swills@mouf.net) Received: from mouf.net (mouf.net [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b3]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 37A5B29B6 for ; Tue, 24 Sep 2013 12:36:03 +0000 (UTC) Received: from meatwad.mouf.net (cpe-107-015-170-205.nc.res.rr.com [107.15.170.205]) by mouf.net (8.14.5/8.14.5) with ESMTP id r8OCZrip088437 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Tue, 24 Sep 2013 12:35:58 GMT (envelope-from swills@meatwad.mouf.net) Received: (from swills@localhost) by meatwad.mouf.net (8.14.7/8.14.5/Submit) id r8OCZnKm061096; Tue, 24 Sep 2013 12:35:49 GMT (envelope-from swills) Message-Id: <201309241235.r8OCZnKm061096@meatwad.mouf.net> Date: Tue, 24 Sep 2013 12:35:49 GMT From: Steve Wills To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/182345: [PATCH] audio/chromaprint: fix build on 10.0-ALPHA2 Cc: jhale@FreeBSD.org 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: Tue, 24 Sep 2013 12:40:00 -0000 >Number: 182345 >Category: ports >Synopsis: [PATCH] audio/chromaprint: fix build on 10.0-ALPHA2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Sep 24 12:40:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: FreeBSD 10.0-ALPHA2 amd64 >Organization: >Environment: System: FreeBSD meatwad.mouf.net 10.0-ALPHA2 FreeBSD 10.0-ALPHA2 #7 r255703M: Thu Sep 19 21:42:35 UTC >Description: - Fix build on 10.0-ALPHA2 Port maintainer (jhale@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_8 (mode: change, diff: SVN) >How-To-Repeat: >Fix: --- chromaprint-0.7_1.patch begins here --- Index: Makefile =================================================================== --- Makefile (revision 328121) +++ Makefile (working copy) @@ -26,4 +26,10 @@ ${REINPLACE_CMD} -e '/pkgconfig/s|$${LIB_INSTALL_DIR}|libdata|' \ ${WRKSRC}/CMakeLists.txt -.include +.include + +.if (${CXX:T} == "clang++" && ${OSVERSION} > 902000) || ${OSVERSION} > 1000054 +CXXFLAGS+= -stdlib=libc++ -std=c++11 +.endif + +.include Index: files/patch-src__utils.h =================================================================== --- files/patch-src__utils.h (revision 0) +++ files/patch-src__utils.h (working copy) @@ -0,0 +1,10 @@ +--- src/utils.h.orig 2013-09-21 17:20:43.538723086 +0000 ++++ src/utils.h 2013-09-21 17:21:02.622721058 +0000 +@@ -30,6 +30,7 @@ + #include + #include + #include ++#include // std::fill + + #ifndef HAVE_ROUND + static inline double round(double x) Property changes on: files/patch-src__utils.h ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property --- chromaprint-0.7_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 12:40:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 0E9396A0; Tue, 24 Sep 2013 12:40:09 +0000 (UTC) (envelope-from edwin@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 D95D829EA; Tue, 24 Sep 2013 12:40:08 +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 r8OCe8Af028479; Tue, 24 Sep 2013 12:40:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8OCe8uD028478; Tue, 24 Sep 2013 12:40:08 GMT (envelope-from edwin) Date: Tue, 24 Sep 2013 12:40:08 GMT Message-Id: <201309241240.r8OCe8uD028478@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jhale@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182345: [PATCH] audio/chromaprint: fix build on 10.0-ALPHA2 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: Tue, 24 Sep 2013 12:40:09 -0000 Synopsis: [PATCH] audio/chromaprint: fix build on 10.0-ALPHA2 Responsible-Changed-From-To: freebsd-ports-bugs->jhale Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 24 12:40:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182345 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 13:10:01 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 F2FFE1DC for ; Tue, 24 Sep 2013 13:10:01 +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 C6EF42BD9 for ; Tue, 24 Sep 2013 13:10:01 +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 r8ODA1TF034268 for ; Tue, 24 Sep 2013 13:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8ODA1sT034267; Tue, 24 Sep 2013 13:10:01 GMT (envelope-from gnats) Date: Tue, 24 Sep 2013 13:10:01 GMT Message-Id: <201309241310.r8ODA1sT034267@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Nikolai Lifanov Subject: Re: ports/182336: [maintainer] [patch] [stagedir] games/wtf X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Nikolai Lifanov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Sep 2013 13:10:02 -0000 The following reply was made to PR ports/182336; it has been noted by GNATS. From: Nikolai Lifanov To: bug-followup@FreeBSD.org, lifanov@mail.lifanov.com Cc: Subject: Re: ports/182336: [maintainer] [patch] [stagedir] games/wtf Date: Tue, 24 Sep 2013 08:59:57 -0400 Please change @dirrmtry to @dirrm in the submitted patch. This was an oversight. From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 13:40: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 B9AD1B12 for ; Tue, 24 Sep 2013 13:40: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 99E762E08 for ; Tue, 24 Sep 2013 13:40: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 r8ODe0RU042708 for ; Tue, 24 Sep 2013 13:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8ODe0rG042707; Tue, 24 Sep 2013 13:40:00 GMT (envelope-from gnats) Resent-Date: Tue, 24 Sep 2013 13:40:00 GMT Resent-Message-Id: <201309241340.r8ODe0rG042707@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, Volodymyr Kostyrko Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 75983953 for ; Tue, 24 Sep 2013 13:34:39 +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 52C092DA2 for ; Tue, 24 Sep 2013 13:34:39 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8ODYcMM026393 for ; Tue, 24 Sep 2013 13:34:38 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8ODYcm7026373; Tue, 24 Sep 2013 13:34:38 GMT (envelope-from nobody) Message-Id: <201309241334.r8ODYcm7026373@oldred.freebsd.org> Date: Tue, 24 Sep 2013 13:34:38 GMT From: Volodymyr Kostyrko To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182346: mail/thunderbird - fails to build with gtk3 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: Tue, 24 Sep 2013 13:40:00 -0000 >Number: 182346 >Category: ports >Synopsis: mail/thunderbird - fails to build with gtk3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Sep 24 13:40:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Volodymyr Kostyrko >Release: stable/9 >Organization: none >Environment: FreeBSD ar1l0u 9.2-PRERELEASE FreeBSD 9.2-PRERELEASE #7 r255487M: Thu Sep 12 10:06:28 EEST 2013 arcade@ar1l0u:/usr/obj/usr/src/sys/MINIMAL amd64 >Description: gmake -C gtk2 libs nsDeviceContextSpecG.cpp gmake[6]: Entering directory `/tmp/ports/usr/ports/mail/thunderbird/work/comm-esr24/obj-x86_64-unknown-freebsd9.2/mozilla/widget/gtk2' /usr/bin/clang++ -o nsDeviceContextSpecG.o -c -I../../dist/stl_wrappers -I../../dist/system_wrappers -include /tmp/ports/usr/ports/mail/thunderbird/work/comm-esr24/mozilla/config/gcc_hidden.h -DNATIVE_THEME_SUPPORT -DMOZ_GLUE_IN_PROGRAM -DXPCOM_TRANSLATE_NSGM_ENTRY_POINT=1 -DMOZILLA_INTERNAL_API -D_IMPL_NS_COM -DEXPORT_XPT_API -DEXPORT_XPTC_API -D_IMPL_NS_GFX -D_IMPL_NS_WIDGET -DIMPL_XREAPI -DIMPL_NS_NET -DIMPL_THEBES -DSTATIC_EXPORTABLE_JS_API -DMOZ_THUNDERBIRD=1 -DNO_NSPR_10_SUPPORT -DOS_POSIX=1 -DOS_FREEBSD=1 -DOS_BSD=1 -DCAIRO_GFX -DMOZ_APP_NAME='"thunderbird"' -I/tmp/ports/usr/ports/mail/thunderbird/work/comm-esr24/mozilla/ipc/chromium/src -I/tmp/ports/usr/ports/mail/thunderbird/work/comm-esr24/mozilla/ipc/glue -I../../ipc/ipdl/_ipdlheaders -I/tmp/ports/usr/ports/mail/thunderbird/work/comm-esr24/mozilla/widget/gtk2 -I. -I../../dist/include -I/usr/local/include/nspr -I/usr/local/include/nss -I/usr/local/include/nss/nss -I/usr/local/include -I/usr/local/include -I/tmp/ports/ usr/ports/mail/thunderbird/work/comm-esr24/mozilla/widget/gtk2/../xpwidgets -I/tmp/ports/usr/ports/mail/thunderbird/work/comm-esr24/mozilla/widget/gtk2/../shared -I/tmp/ports/usr/ports/mail/thunderbird/work/comm-esr24/mozilla/layout/generic -I/tmp/ports/usr/ports/mail/thunderbird/work/comm-esr24/mozilla/layout/xul/base/src -I/tmp/ports/usr/ports/mail/thunderbird/work/comm-esr24/mozilla/other-licenses/atk-1.0 -I/tmp/ports/usr/ports/mail/thunderbird/work/comm-esr24/mozilla/widget/gtk2/../shared/x11 -fPIC -Qunused-arguments -isystem/usr/local/include -Qunused-arguments -Wall -Wpointer-arith -Woverloaded-virtual -Werror=return-type -Wtype-limits -Wempty-body -Wsign-compare -Wno-invalid-offsetof -Wno-c++0x-extensions -Wno-extended-offsetof -Wno-unknown-warning-option -Wno-return-type-c-linkage -Wno-mismatched-tags -O2 -pipe -march=native -O3 -fno-strict-aliasing -fno-exceptions -fno-strict-aliasing -fno-rtti -ffunction-sections -fdata-sections -fno-exceptions -std=gnu++0x -pipe -DNDE BUG -DTRIMMED -O2 -O3 -fomit-frame-pointer -! I/usr/local/include/cairo -I/usr/local/include/glib-2.0 -I/usr/local/include/pixman-1 -I/usr/local/include/freetype2 -I/usr/local/include/libdrm -I/usr/local/include/libpng15 -D_THREAD_SAFE -I/usr/local/include -I/usr/local/include/cairo -I/usr/local/include/glib-2.0 -I/usr/local/include/pixman-1 -I/usr/local/include/freetype2 -I/usr/local/include/libdrm -I/usr/local/include/libpng15 -D_THREAD_SAFE -I/usr/local/include -I/usr/local/include/pixman-1 -I/usr/local/include/startup-notification-1.0 -I/usr/local/include/gtk-3.0/unix-print -I/usr/local/include/gtk-3.0 -I/usr/local/include/at-spi2-atk/2.0 -I/usr/local/include/at-spi-2.0 -I/usr/local/include/dbus-1.0 -I/usr/local/include/dbus-1.0/include -I/usr/local/include/pango-1.0 -I/usr/local/include/harfbuzz -I/usr/local/include/gio-unix-2.0/ -I/usr/local/include/atk-1.0 -I/usr/local/include/cairo -I/usr/local/include/pixman-1 -I/usr/local/include/freetype2 -I/usr/local/include/libdrm -D_THREAD_SAFE -I/usr/local/include/gdk- pixbuf-2.0 -I/usr/local/include/libpng15 -pthread -I/usr/local/include/glib-2.0 -I/usr/local/include -Qunused-arguments -isystem/usr/local/include -DMOZILLA_CLIENT -include ../../mozilla-config.h -MD -MP -MF .deps/nsDeviceContextSpecG.o.pp /tmp/ports/usr/ports/mail/thunderbird/work/comm-esr24/mozilla/widget/gtk2/nsDeviceContextSpecG.cpp /tmp/ports/usr/ports/mail/thunderbird/work/comm-esr24/mozilla/widget/gtk2/nsDeviceContextSpecG.cpp:578:5: error: no matching function for call to 'gtk_print_job_send' gtk_print_job_send(mPrintJob, print_callback, mSpoolFile, ns_release_macro); ^~~~~~~~~~~~~~~~~~ /usr/local/include/gtk-3.0/unix-print/gtk/gtkprintjob.h:96:26: note: candidate function not viable: no known conversion from 'void (GtkPrintJob *, gpointer, GError *)' to 'GtkPrintJobCompleteFunc' (aka 'void (*)(GtkPrintJob *, gpointer, const GError *)') for 2nd argument void gtk_print_job_send (GtkPrintJob *job, ^ 1 error generated. gmake[6]: *** [nsDeviceContextSpecG.o] Error 1 gmake[6]: Leaving directory `/tmp/ports/usr/ports/mail/thunderbird/work/comm-esr24/obj-x86_64-unknown-freebsd9.2/mozilla/widget/gtk2' gmake[5]: *** [libs] Error 2 gmake[5]: Leaving directory `/tmp/ports/usr/ports/mail/thunderbird/work/comm-esr24/obj-x86_64-unknown-freebsd9.2/mozilla/widget' Probably the directory structure is created incorrectly as there is directory for gtk2 and no directory for gtk3. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 13:40:08 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id DED43B47; Tue, 24 Sep 2013 13:40:08 +0000 (UTC) (envelope-from edwin@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 B59A72E0D; Tue, 24 Sep 2013 13:40:08 +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 r8ODe8Ta042854; Tue, 24 Sep 2013 13:40:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8ODe8oN042853; Tue, 24 Sep 2013 13:40:08 GMT (envelope-from edwin) Date: Tue, 24 Sep 2013 13:40:08 GMT Message-Id: <201309241340.r8ODe8oN042853@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gecko@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182346: mail/thunderbird - fails to build with gtk3 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: Tue, 24 Sep 2013 13:40:08 -0000 Synopsis: mail/thunderbird - fails to build with gtk3 Responsible-Changed-From-To: freebsd-ports-bugs->gecko Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 24 13:40:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182346 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 13:40:01 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 0E7FEB18 for ; Tue, 24 Sep 2013 13:40:01 +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 E08752E0B for ; Tue, 24 Sep 2013 13:40: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 r8ODe0cL042773 for ; Tue, 24 Sep 2013 13:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8ODe0bp042772; Tue, 24 Sep 2013 13:40:00 GMT (envelope-from gnats) Resent-Date: Tue, 24 Sep 2013 13:40:00 GMT Resent-Message-Id: <201309241340.r8ODe0bp042772@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, Dmitry Marakasov Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id A3CC2971 for ; Tue, 24 Sep 2013 13:35:41 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from smtp.timeweb.ru (smtp.timeweb.ru [92.53.117.39]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 619982DAE for ; Tue, 24 Sep 2013 13:35:41 +0000 (UTC) Received: from [213.148.20.85] (helo=hive.panopticon) by smtp.timeweb.ru with esmtpsa (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.76) (envelope-from ) id 1VOSmB-0000Bp-7T for FreeBSD-gnats-submit@freebsd.org; Tue, 24 Sep 2013 17:35:39 +0400 Received: from hades.panopticon (hades.panopticon [192.168.0.32]) by hive.panopticon (Postfix) with ESMTP id D3FCD591 for ; Tue, 24 Sep 2013 17:35:38 +0400 (MSK) Received: by hades.panopticon (Postfix, from userid 1000) id B9C73303; Tue, 24 Sep 2013 17:35:38 +0400 (MSK) Message-Id: <20130924133538.B9C73303@hades.panopticon> Date: Tue, 24 Sep 2013 17:35:38 +0400 (MSK) From: Dmitry Marakasov To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/182347: install target does nothing for pkgng + staging + NO_PKG_REGISTER case X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Dmitry Marakasov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Sep 2013 13:40:01 -0000 >Number: 182347 >Category: ports >Synopsis: install target does nothing for pkgng + staging + NO_PKG_REGISTER case >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Sep 24 13:40:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Dmitry Marakasov >Release: FreeBSD 9.1-RELEASE-p4 amd64 >Organization: >Environment: System: FreeBSD hades.panopticon 9.1-RELEASE-p4 FreeBSD 9.1-RELEASE-p4 #0 r251956: Tue Jun 18 21:41:37 MSK 2013 root@hades.panopticon:/usr/obj/usr/src/sys/HADES amd64 >Description: When pkgng is used and the port supports staging, `make install` with NO_PKG_REGISTER set does nothing - no files are installed to the system. This seeminlgy happens because the package installation and pkgdb registration are now done in the same time with pkg, and whole fake-pkg target which runs this pkg is wrapped in .if !defined(NO_PKG_REGISTER): --- fake-pkg: create-manifest .if !defined(NO_PKG_REGISTER) .if defined(INSTALLS_DEPENDS) @${ECHO_MSG} "===> Registering installation for ${PKGNAME} as automatic" .else @${ECHO_MSG} "===> Registering installation for ${PKGNAME}" .endif .if defined(INSTALLS_DEPENDS) @${SETENV} FORCE_POST="${_FORCE_POST_PATTERNS}" ${PKG_CMD} -d ${STAGE_ARGS} -m ${METADIR} -f ${TMPPLIST} .else @${SETENV} FORCE_POST="${_FORCE_POST_PATTERNS}" ${PKG_CMD} ${STAGE_ARGS} -m ${METADIR} -f ${TMPPLIST} .endif @${RM} -rf ${METADIR} .else @${DO_NADA} .endif .endif --- >How-To-Repeat: Try `make install` any port with NO_PKG_REGISTER. >Fix: Likely a mode needs to be added to pkg which does installation but not registration, and it should be used in pkgng.mk Also, this probably may be achieved with using -l argument of `pkg register` and fake PKG_DBDIR, but I haven't tested. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 14:20:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 92177C10 for ; Tue, 24 Sep 2013 14:20: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 5873D20B2 for ; Tue, 24 Sep 2013 14:20: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 r8OEK0wb058982 for ; Tue, 24 Sep 2013 14:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8OEK0om058977; Tue, 24 Sep 2013 14:20:00 GMT (envelope-from gnats) Resent-Date: Tue, 24 Sep 2013 14:20:00 GMT Resent-Message-Id: <201309241420.r8OEK0om058977@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, Dmitry Sivachenko Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 43D32C0D for ; Tue, 24 Sep 2013 14:19:52 +0000 (UTC) (envelope-from mitya@husqvarna.yandex.ru) Received: from husqvarna.yandex.ru (unknown [IPv6:2a02:6b8:0:c38::8]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BCCD020AF for ; Tue, 24 Sep 2013 14:19:51 +0000 (UTC) Received: from husqvarna.yandex.ru (localhost [127.0.0.1]) by husqvarna.yandex.ru (8.14.7/8.14.7) with ESMTP id r8OEJmow009793 for ; Tue, 24 Sep 2013 18:19:48 +0400 (MSK) (envelope-from mitya@husqvarna.yandex.ru) Received: (from mitya@localhost) by husqvarna.yandex.ru (8.14.7/8.14.7/Submit) id r8OEJlax009792; Tue, 24 Sep 2013 18:19:47 +0400 (MSK) (envelope-from mitya) Message-Id: <201309241419.r8OEJlax009792@husqvarna.yandex.ru> Date: Tue, 24 Sep 2013 18:19:47 +0400 (MSK) From: Dmitry Sivachenko To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/182348: py-django requires DB backend, but it should not 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: Tue, 24 Sep 2013 14:20:00 -0000 >Number: 182348 >Category: ports >Synopsis: py-django requires DB backend, but it should not >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Sep 24 14:20:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Dmitry Sivachenko >Release: FreeBSD 9.2-PRERELEASE amd64 >Organization: >Environment: System: FreeBSD husqvarna.yandex.ru 9.2-PRERELEASE FreeBSD 9.2-PRERELEASE #0 r255811: Mon Sep 23 13:35:27 MSK 2013 mitya@husqvarna.yandex.ru:/usr/obj/place/WRK/src/sys/CAVIA amd64 >Description: py-django port requires me to select at least one DB backend. But it is not necessary to use any DB backend for many django projects. Can you please make it optional? (Now if I deselect all DB options, it tells me that config is invalid). >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 14:23:30 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id F124CC87; Tue, 24 Sep 2013 14:23:29 +0000 (UTC) (envelope-from demon@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 C4DE520FE; Tue, 24 Sep 2013 14:23:29 +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 r8OENT82061729; Tue, 24 Sep 2013 14:23:29 GMT (envelope-from demon@freefall.freebsd.org) Received: (from demon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8OENT8V061728; Tue, 24 Sep 2013 14:23:29 GMT (envelope-from demon) Date: Tue, 24 Sep 2013 14:23:29 GMT Message-Id: <201309241423.r8OENT8V061728@freefall.freebsd.org> To: demon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, lwhsu@FreeBSD.org From: demon@FreeBSD.org Subject: Re: ports/182348: py-django requires DB backend, but it should not 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: Tue, 24 Sep 2013 14:23:30 -0000 Synopsis: py-django requires DB backend, but it should not Responsible-Changed-From-To: freebsd-ports-bugs->lwhsu Responsible-Changed-By: demon Responsible-Changed-When: Tue Sep 24 14:23:07 UTC 2013 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=182348 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 15:00:01 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 B5563740 for ; Tue, 24 Sep 2013 15:00:01 +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 9374822C3 for ; Tue, 24 Sep 2013 15:00:01 +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 r8OF01UR079109 for ; Tue, 24 Sep 2013 15:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8OF01gn079107; Tue, 24 Sep 2013 15:00:01 GMT (envelope-from gnats) Date: Tue, 24 Sep 2013 15:00:01 GMT Message-Id: <201309241500.r8OF01gn079107@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Luca Pizzamiglio Subject: Re: ports/182280: devel/gdb fails to build when PYTHON option enabled X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Luca Pizzamiglio List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Sep 2013 15:00:01 -0000 The following reply was made to PR ports/182280; it has been noted by GNATS. From: Luca Pizzamiglio To: Andrew Wilcox ,bug-followup@freebsd.org Cc: Subject: Re: ports/182280: devel/gdb fails to build when PYTHON option enabled Date: Tue, 24 Sep 2013 16:49:14 +0200 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 Hi, thanks for the report! Unfortunately I'm not able to reproduce your error. I successfully build gdb with python option on a amd64 10.0-ALPHA2 and I had no further problem. I've also tried on redports using different configurations, it was always OK. Are you using some special python configuration or make.conf? The patch you're proposing is a workaround, but not a solution. I prefer to find the error and solve it. Could you try the gdb-7.6.1? (PR ports/181801, still open, but in testing) It solves also an installation issue (some installed file was not plisted) Best regards, Luca On 09/21/13 13:49, Andrew Wilcox wrote: > >> Number: 182280 >> Category: ports >> Synopsis: devel/gdb fails to build when PYTHON option enabled >> Confidential: no >> Severity: non-critical >> Priority: low >> Responsible: freebsd-ports-bugs >> State: open >> Quarter: >> Keywords: >> Date-Required: >> Class: sw-bug >> Submitter-Id: current-users >> Arrival-Date: Sat Sep 21 11:50:00 UTC 2013 >> Closed-Date: >> Last-Modified: >> Originator: Andrew Wilcox >> Release: 10.0-ALPHA2 >> Organization: > Wilcox Technologies >> Environment: > FreeBSD ind-web009.wilcox-tech.com 10.0-ALPHA2 FreeBSD 10.0-ALPHA2 #0 r255659: Wed Sep 18 02:56:32 UTC 2013 root@snap.freebsd.org:/snap/releng/10-amd64/tmp/obj/usr/src/sys/GENERIC amd64 >> Description: > Attempting to build gdb-7.6 on a server running 10.0-ALPHA2 with the PYTHON option enabled, I received the following error: > > > Configuring in ./gdb > < snip > > checking whether to use python... /usr/local/bin/python2.7 > checking for python2.7... no > configure: error: no usable python found at /usr/local/bin/python2.7 > gmake[3]: *** [configure-gdb] Error 1 > gmake[3]: Leaving directory `/usr/ports/devel/gdb/work/gdb-7.6' > gmake[2]: *** [all] Error 2 > gmake[2]: Leaving directory `/usr/ports/devel/gdb/work/gdb-7.6' > ===> Compilation failed unexpectedly. > Try to set MAKE_JOBS_UNSAFE=yes and rebuild before reporting the failure to > the maintainer. > *** Error code 1 > > Stop. > make[1]: stopped in /usr/ports/devel/gdb > *** Error code 1 > > Stop. > > > > Upon further inspection to config.log, I found the following interesting nugget: > > > configure:7953: checking whether to use python > configure:7955: result: /usr/local/bin/python2.7 > configure:8173: checking for python2.7 > configure:8191: cc -o conftest -pipe -DRL_NO_COMPAT -g -g -std=gnu89 -I/usr/local/include/python2.7 -I/usr/local/include/python2.7 > conftest.c -lncurses -lz -lm -L/usr/local/lib/python2.7/config -lintl -lutil -lm -lpython2.7 -Wl,--export-dynamic >&5 > /usr/bin/ld: cannot find -lintl > cc: error: linker command failed with exit code 1 (use -v to see invocation) >> How-To-Repeat: > # cd /usr/ports/devel/gdb > # make config > -> Select [*] PYTHON > # make >> Fix: > Attached is a very, very crude patch that just blindly adds /usr/local/lib to gdb's python-config.py script, which does allow it to compile correctly. Something more elegant is almost assuredly needed, but I'm not sure the best way to go about this. > > Patch attached with submission follows: > > *** gdb-7.6/gdb/python/python-config.old Sat Sep 21 11:33:51 2013 > --- gdb-7.6/gdb/python/python-config.py Sat Sep 21 11:34:05 2013 > *************** > *** 72,77 **** > --- 72,78 ---- > libs.insert(0, '-L' + getvar('LIBPL')) > elif os.name == 'nt': > libs.insert(0, '-L' + sysconfig.PREFIX + '/libs') > + libs.insert(0, '-L/usr/local/lib') > if getvar('LINKFORSHARED') is not None: > libs.extend(getvar('LINKFORSHARED').split()) > print (to_unix_path(' '.join(libs))) > > > >> Release-Note: >> Audit-Trail: >> Unformatted: > _______________________________________________ > freebsd-ports-bugs@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports-bugs > To unsubscribe, send any mail to "freebsd-ports-bugs-unsubscribe@freebsd.org" > -----BEGIN PGP SIGNATURE----- Version: APG v1.0.8 iQJLBAEBCAA1BQJSQaZqLhxMdWNhIFBpenphbWlnbGlvIDxsdWNhLnBpenphbWln bGlvQGdtYWlsLmNvbT4ACgkQ1r9Hhyzd6UXybg//eIJBi1z5s469SKJ/IPp9Af1L VHcbvduCyoJckLYIJmU/Km0L3HAYqPEJwkISeTSQqdNbiXz6EO+ZWCCaX5nknQpn Skyn36sbOTK012aaR5pGjfvFCHLB/YxCqaXOZX96IcJTQDmXlNjTMGBNIerEvyee KfTAxR9boP7Ouyu0U1KHZ461tDwn8X4iECQVtB501kwxCD4xPwLqDm4Mti1xGIrM 2bY5JveIWbcw9lHRXRL0yjDozFVeIEb16qTCmfWik3X+Slqe0ibfw0GgvwbD1//Z GCB0TRHmQ8OOBWvHASqb/eYDHYKm/JovSFE59xPjGI86QADudfJz6Y+8FFD2s3NQ N4ezenv0AfnSIEHLcp1GHrityDNhbZ04Ss4xYzJvjqIT8sjJ58Gh0yxZYY+w6ERX YJYdVuyZIWWYn1GGUYGQRjPhQy/tYfqsoD1GTbek/7pPu6o5AHR+kVeqIYNtCM0d NwvWWkrCGHs5Ni2diACwcmtVLbnkzennzmoaVhfC1qPpK4jK3UsmTpPg+LTPuoGZ q/3pJl+ZPVIz3162YVNm+90ERDjDYYmItcaEljPOkOHfqtXu/873D/9cpcNKjlIy 2F1bKXZC4bVdpkvP9cw4TXGiPIQzd4192dup/Ph55f0IWfSWt5gWdE+uKWhJlCjr E+qEyb9ukKkFgtLR26o= =3dIJ -----END PGP SIGNATURE----- From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 15:10: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 AD43E97F for ; Tue, 24 Sep 2013 15:10: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 7332E2386 for ; Tue, 24 Sep 2013 15:10: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 r8OFA0cg083674 for ; Tue, 24 Sep 2013 15:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8OFA0Cs083673; Tue, 24 Sep 2013 15:10:00 GMT (envelope-from gnats) Resent-Date: Tue, 24 Sep 2013 15:10:00 GMT Resent-Message-Id: <201309241510.r8OFA0Cs083673@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, "Remko C." Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 6BA3E966 for ; Tue, 24 Sep 2013 15:08:45 +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 5A318237C for ; Tue, 24 Sep 2013 15:08:45 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8OF8jgP009683 for ; Tue, 24 Sep 2013 15:08:45 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8OF8jqK009673; Tue, 24 Sep 2013 15:08:45 GMT (envelope-from nobody) Message-Id: <201309241508.r8OF8jqK009673@oldred.freebsd.org> Date: Tue, 24 Sep 2013 15:08:45 GMT From: "Remko C." To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182349: tuning-primer fails to install 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: Tue, 24 Sep 2013 15:10:00 -0000 >Number: 182349 >Category: ports >Synopsis: tuning-primer fails to install >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Sep 24 15:10:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Remko C. >Release: Not relevant >Organization: Unix Support Netherlands >Environment: Not relevant >Description: Fails to install: ===> Checking if databases/tuning-primer already installed cp: /portdistfiles/tuning-primer.sh: No such file or directory *** [do-install] Error code 1 Stop in /usr/ports/databases/tuning-primer. ===> Cleaning for tuning-primer-1.6.r1 build of /usr/ports/databases/tuning-primer ended at Tue Sep 24 16:49:10 CEST 2013 >How-To-Repeat: make -C /usr/ports/databases/tuning-primer install >Fix: Looking at the Makefile the error is in this line: do-install: @${CP} ${DISTDIR}/${PORTNAME}.sh \ ${PREFIX}/bin/${PORTNAME} This should be: do-install: @${CP} ${DISTDIR}/${PORTNAME}/${PORTVERSION}/${DISTNAME} \ ${PREFIX}/bin/${PORTNAME} >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 15:50:58 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 E9D9975C; Tue, 24 Sep 2013 15:50:58 +0000 (UTC) (envelope-from swills@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 BE33B261F; Tue, 24 Sep 2013 15:50:58 +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 r8OFowrF007595; Tue, 24 Sep 2013 15:50:58 GMT (envelope-from swills@freefall.freebsd.org) Received: (from swills@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8OFowIR007594; Tue, 24 Sep 2013 15:50:58 GMT (envelope-from swills) Date: Tue, 24 Sep 2013 15:50:58 GMT Message-Id: <201309241550.r8OFowIR007594@freefall.freebsd.org> To: swills@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, swills@FreeBSD.org From: swills@FreeBSD.org Subject: Re: ports/182183: [MAINTAINER] dns/ldns: fix build of py-ldns 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: Tue, 24 Sep 2013 15:50:59 -0000 Synopsis: [MAINTAINER] dns/ldns: fix build of py-ldns Responsible-Changed-From-To: freebsd-ports-bugs->swills Responsible-Changed-By: swills Responsible-Changed-When: Tue Sep 24 15:50:58 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=182183 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 16:05:06 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 9AF6EB29; Tue, 24 Sep 2013 16:05:06 +0000 (UTC) (envelope-from sunpoet@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 718DB2710; Tue, 24 Sep 2013 16:05:06 +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 r8OG56u5012700; Tue, 24 Sep 2013 16:05:06 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8OG55wK012694; Tue, 24 Sep 2013 16:05:05 GMT (envelope-from sunpoet) Date: Tue, 24 Sep 2013 16:05:05 GMT Message-Id: <201309241605.r8OG55wK012694@freefall.freebsd.org> To: FreeBSD@Shaneware.biz, ohartman@zedat.fu-berlin.de, sunpoet@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: sunpoet@FreeBSD.org Subject: Re: ports/182342: graphics/openimageio: error: no matching member function for call to 'print' 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: Tue, 24 Sep 2013 16:05:06 -0000 Synopsis: graphics/openimageio: error: no matching member function for call to 'print' State-Changed-From-To: feedback->closed State-Changed-By: sunpoet State-Changed-When: Tue Sep 24 16:05:05 UTC 2013 State-Changed-Why: Close at submitter's request. http://www.freebsd.org/cgi/query-pr.cgi?pr=182342 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 17:10:01 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 528F1B28 for ; Tue, 24 Sep 2013 17:10:01 +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 327502B45 for ; Tue, 24 Sep 2013 17:10:01 +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 r8OHA14f027768 for ; Tue, 24 Sep 2013 17:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8OHA1Te027767; Tue, 24 Sep 2013 17:10:01 GMT (envelope-from gnats) Resent-Date: Tue, 24 Sep 2013 17:10:01 GMT Resent-Message-Id: <201309241710.r8OHA1Te027767@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, Volodymyr Kostyrko Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id F30A2814 for ; Tue, 24 Sep 2013 17:01:11 +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 E0D912AF0 for ; Tue, 24 Sep 2013 17:01:11 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8OH1B3Q060659 for ; Tue, 24 Sep 2013 17:01:11 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8OH1BIM060610; Tue, 24 Sep 2013 17:01:11 GMT (envelope-from nobody) Message-Id: <201309241701.r8OH1BIM060610@oldred.freebsd.org> Date: Tue, 24 Sep 2013 17:01:11 GMT From: Volodymyr Kostyrko To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182351: mail/thunderbird - doesn't build with qt3 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: Tue, 24 Sep 2013 17:10:01 -0000 >Number: 182351 >Category: ports >Synopsis: mail/thunderbird - doesn't build with qt3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Sep 24 17:10:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Volodymyr Kostyrko >Release: stable/9 >Organization: none >Environment: FreeBSD ar1l0u 9.2-PRERELEASE FreeBSD 9.2-PRERELEASE #7 r255487M: Thu Sep 12 10:06:28 EEST 2013 arcade@ar1l0u:/usr/obj/usr/src/sys/MINIMAL amd64 >Description: checking for libffi >= 3.0.9... yes checking MOZ_FFI_CFLAGS... -I/usr/local/lib/libffi-3.0.13/include checking MOZ_FFI_LIBS... -L/usr/local/lib -lffi checking for icu-i18n >= 50.1... yes checking MOZ_ICU_CFLAGS... -I/usr/local/include checking MOZ_ICU_LIBS... -licui18n -L/usr/local/lib -licuuc -licudata checking for application to build... ../mail checking if app-specific confvars.sh exists... /tmp/ports/usr/ports/mail/thunderbird/work/comm-esr24/mozilla/../mail/confvars.sh checking for qmake... no /tmp/ports/usr/ports/mail/thunderbird/work/comm-esr24/mozilla/configure: -v: not found configure: error: * * * Unsupported Qt Version: ------ config.log ------ ... configure:15749: checking for hunspell configure:15756: checking MOZ_HUNSPELL_CFLAGS configure:15761: checking MOZ_HUNSPELL_LIBS configure:15953: checking for libffi >= 3.0.9 configure:15960: checking MOZ_FFI_CFLAGS configure:15965: checking MOZ_FFI_LIBS configure:16063: checking for icu-i18n >= 50.1 configure:16070: checking MOZ_ICU_CFLAGS configure:16075: checking MOZ_ICU_LIBS configure:16269: checking for application to build configure:16331: checking if app-specific confvars.sh exists configure:17190: checking for qmake configure: error: /tmp/ports/usr/ports/mail/thunderbird/work/comm-esr24/mozilla/configure failed for mozilla *** Fix above errors and then restart with "gmake -f client.mk build" Looks like configure is unaware that qmake is actually qmake-qt4. >How-To-Repeat: >Fix: Fixing qmake executable name to qmake-qt4 in configure actually gets me past this point. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 17:10:09 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 7A8B7B58; Tue, 24 Sep 2013 17:10:09 +0000 (UTC) (envelope-from edwin@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 5052E2B46; Tue, 24 Sep 2013 17:10:09 +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 r8OHA9uD027852; Tue, 24 Sep 2013 17:10:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8OHA9Nm027851; Tue, 24 Sep 2013 17:10:09 GMT (envelope-from edwin) Date: Tue, 24 Sep 2013 17:10:09 GMT Message-Id: <201309241710.r8OHA9Nm027851@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gecko@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182351: mail/thunderbird - doesn't build with qt3 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: Tue, 24 Sep 2013 17:10:09 -0000 Synopsis: mail/thunderbird - doesn't build with qt3 Responsible-Changed-From-To: freebsd-ports-bugs->gecko Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 24 17:10:09 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182351 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 17:32:26 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 8F50C2A8; Tue, 24 Sep 2013 17:32:26 +0000 (UTC) (envelope-from sunpoet@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 624DE2CA2; Tue, 24 Sep 2013 17:32:26 +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 r8OHWQun033926; Tue, 24 Sep 2013 17:32:26 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8OHWQ0R033925; Tue, 24 Sep 2013 17:32:26 GMT (envelope-from sunpoet) Date: Tue, 24 Sep 2013 17:32:26 GMT Message-Id: <201309241732.r8OHWQ0R033925@freefall.freebsd.org> To: mephius@gmail.com, sunpoet@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: sunpoet@FreeBSD.org Subject: Re: ports/181215: [PATCH] www/pecl-sphinx: [SUMMARIZE CHANGES] 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: Tue, 24 Sep 2013 17:32:26 -0000 Synopsis: [PATCH] www/pecl-sphinx: [SUMMARIZE CHANGES] Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: sunpoet Responsible-Changed-When: Tue Sep 24 17:32:25 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=181215 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 17:50:01 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 9E989D76 for ; Tue, 24 Sep 2013 17:50:01 +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 7CD9E2DCA for ; Tue, 24 Sep 2013 17:50:01 +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 r8OHo1o1035911 for ; Tue, 24 Sep 2013 17:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8OHo1Nb035910; Tue, 24 Sep 2013 17:50:01 GMT (envelope-from gnats) Resent-Date: Tue, 24 Sep 2013 17:50:01 GMT Resent-Message-Id: <201309241750.r8OHo1Nb035910@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, Tommy Scheunemann 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 1B55FD68 for ; Tue, 24 Sep 2013 17:49:32 +0000 (UTC) (envelope-from root@arrishq.net) Received: from mail1.arrishq.net (deimos.phobos.ws [84.200.4.202]) by mx1.freebsd.org (Postfix) with ESMTP id D6D2A2DC1 for ; Tue, 24 Sep 2013 17:49:31 +0000 (UTC) Received: from localhost (mail.arrishq.net [127.0.30.1]) by mail1.arrishq.net (Postfix) with ESMTP id 9EF979F08E6 for ; Tue, 24 Sep 2013 19:40:37 +0200 (CEST) Message-Id: <20130924174037.9EF979F08E6@mail1.arrishq.net> Date: Tue, 24 Sep 2013 19:40:37 +0200 (CEST) From: Tommy Scheunemann To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/182352: x11-wm/wmconfig port update X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Tommy Scheunemann List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Sep 2013 17:50:01 -0000 >Number: 182352 >Category: ports >Synopsis: x11-wm/wmconfig port update >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Sep 24 17:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Tommy Scheunemann >Release: FreeBSD 9.1-RELEASE-p7 i386 >Organization: >Environment: System: FreeBSD zeus.domain.local 9.1-RELEASE-p7 FreeBSD 9.1-RELEASE-p7 #1: Wed Sep 11 13:49:32 CEST 2013 root@zeus.domain.local:/usr/obj/usr/src/sys/ZEUS i386 >Description: Update to version 1.4.1 for x11-wm/wmconfig port >How-To-Repeat: >Fix: --- logs begins here --- diff -ruN wmconfig_old/Makefile wmconfig/Makefile --- wmconfig_old/Makefile 2013-09-19 09:57:36.000000000 +0200 +++ wmconfig/Makefile 2013-09-21 11:52:26.000000000 +0200 @@ -1,8 +1,8 @@ # Created by: Tommy Scheunemann -# $FreeBSD: head/x11-wm/wmconfig/Makefile 318187 2013-05-14 19:09:12Z rakuco $ +# $FreeBSD: head/x11-wm/wmconfig/Makefile 327786 2013-09-21 00:01:16Z bapt $ PORTNAME= wmconfig -PORTVERSION= 1.4.0 +PORTVERSION= 1.4.1 CATEGORIES= x11-wm MASTER_SITES= http://www.arrishq.net/files/ @@ -20,6 +20,7 @@ OPTIONS_DEFINE= NLS DOCS +NO_STAGE= yes .include .if ${PORT_OPTIONS:MNLS} diff -ruN wmconfig_old/distinfo wmconfig/distinfo --- wmconfig_old/distinfo 2013-07-09 13:12:06.000000000 +0200 +++ wmconfig/distinfo 2013-09-24 15:28:56.000000000 +0200 @@ -1,2 +1,2 @@ -SHA256 (wmconfig-1.4.0.tar.bz2) = d723f5b7b9c3060883ce1c3165fc6efce2602f0f1aacecdf118042be65843e14 -SIZE (wmconfig-1.4.0.tar.bz2) = 226255 +SHA256 (wmconfig-1.4.1.tar.bz2) = 90a6b5464610606cf7c6fa94fd6a93e9cea546781eb82455d34ed76bc5f5db96 +SIZE (wmconfig-1.4.1.tar.bz2) = 234499 --- logs ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 18:30:02 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 EF98DA39 for ; Tue, 24 Sep 2013 18:30:01 +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 CBCBA202A for ; Tue, 24 Sep 2013 18:30:01 +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 r8OIU1Rj047519 for ; Tue, 24 Sep 2013 18:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8OIU1K6047518; Tue, 24 Sep 2013 18:30:01 GMT (envelope-from gnats) Resent-Date: Tue, 24 Sep 2013 18:30:01 GMT Resent-Message-Id: <201309241830.r8OIU1K6047518@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, Larry Rosenman Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 57749958 for ; Tue, 24 Sep 2013 18:26:52 +0000 (UTC) (envelope-from ler@lerctr.org) Received: from thebighonker.lerctr.org (lrosenman-1-pt.tunnel.tserv8.dal1.ipv6.he.net [IPv6:2001:470:1f0e:3ad::2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 252C42FFE for ; Tue, 24 Sep 2013 18:26:52 +0000 (UTC) Received: from cpe-72-182-93-216.austin.res.rr.com ([72.182.93.216]:57804 helo=borg.lerctr.org) by thebighonker.lerctr.org with esmtpsa (TLSv1:DHE-RSA-AES256-SHA:256) (Exim 4.80.1 (FreeBSD)) (envelope-from ) id 1VOXJx-00072N-Gc for FreeBSD-gnats-submit@freebsd.org; Tue, 24 Sep 2013 13:26:51 -0500 Received: from ler by borg.lerctr.org with local (Exim 4.80.1 (FreeBSD)) (envelope-from ) id 1VOXJw-0006dZ-NS for FreeBSD-gnats-submit@freebsd.org; Tue, 24 Sep 2013 13:26:48 -0500 Message-Id: Date: Tue, 24 Sep 2013 13:26:48 -0500 From: Larry Rosenman Sender: Larry Rosenman To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/182354: devel/xdg-utils fails: STAGE issue? X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Larry Rosenman List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Sep 2013 18:30:02 -0000 >Number: 182354 >Category: ports >Synopsis: devel/xdg-utils fails: STAGE issue? >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Sep 24 18:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Larry Rosenman >Release: FreeBSD 10.0-ALPHA3 amd64 >Organization: LERCTR Consulting >Environment: System: FreeBSD borg.lerctr.org 10.0-ALPHA3 FreeBSD 10.0-ALPHA3 #59 r255855: Tue Sep 24 12:05:54 CDT 2013 root@borg.lerctr.org:/usr/obj/usr/src/sys/BORG-DTRACE amd64 >Description: $ cd /usr/ports/devel/xdg-utils $ sudo make clean Password: ===> Cleaning for xdg-utils-1.0.2.20130919 $ sudo portmaster . ===>>> Port directory: /usr/ports/devel/xdg-utils ===>>> Gathering distinfo list for installed ports ===>>> Launching 'make checksum' for devel/xdg-utils in background ===>>> Gathering dependency list for devel/xdg-utils from ports ===>>> Initial dependency check complete for devel/xdg-utils ===>>> Starting build for devel/xdg-utils <<<=== ===>>> All dependencies are up to date ===> Cleaning for xdg-utils-1.0.2.20130919 ===> xdg-utils-1.0.2.20130919 depends on file: /usr/local/sbin/pkg - found ===> Fetching all distfiles required by xdg-utils-1.0.2.20130919 for building ===> Extracting for xdg-utils-1.0.2.20130919 => SHA256 Checksum OK for xdg-utils-1.0.2.20130919.tar.xz. ===> Patching for xdg-utils-1.0.2.20130919 ===> Applying FreeBSD patches for xdg-utils-1.0.2.20130919 ===> Configuring for xdg-utils-1.0.2.20130919 ===> FreeBSD 10 autotools fix applied to /usr/ports/devel/xdg-utils/work/xdg-utils-1.0.2.20130919/configure configure: loading site script /usr/ports/Templates/config.site checking whether make sets $(MAKE)... yes checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking for xmlto... /usr/local/bin/xmlto configure: creating ./config.status config.status: creating Makefile config.status: creating scripts/Makefile config.status: creating tests/Makefile ===> Building for xdg-utils-1.0.2.20130919 --- tests --- --- scripts --- ===> Staging for xdg-utils-1.0.2.20130919 ===> Generating temporary packing list cd `dirname scripts/__install__` && /usr/bin/make install mkdir -p /usr/ports/devel/xdg-utils/work/stage/usr/local/bin for x in xdg-desktop-menu xdg-desktop-icon xdg-mime xdg-icon-resource xdg-open xdg-email xdg-screensaver xdg-settings ; do install -o root -g wheel -m 555 $x /usr/ports/devel/xdg-utils/work/stage/usr/local/bin ; done mkdir -p /usr/ports/devel/xdg-utils/work/stage/usr/local/man mkdir -p /usr/ports/devel/xdg-utils/work/stage/usr/local/man/man1 for x in man/xdg-desktop-menu.1 man/xdg-desktop-icon.1 man/xdg-mime.1 man/xdg-icon-resource.1 man/xdg-open.1 man/xdg-email.1 man/xdg-screensaver.1 man/xdg-settings.1 ; do if [ -f $x ]; then install -o root -g wheel -m 444 $x /usr/ports/devel/xdg-utils/work/stage/usr/local/man/man1 ; fi ; done cd `dirname tests/__install__` && /usr/bin/make install ====> Compressing man pages ===> Installing for xdg-utils-1.0.2.20130919 ===> Registering installation for xdg-utils-1.0.2.20130919 pkg-static: lstat(/usr/ports/devel/xdg-utils/work/stage/usr/local/xdg-desktop-icon.1): No such file or directory pkg-static: lstat(/usr/ports/devel/xdg-utils/work/stage/usr/local/xdg-desktop-menu.1): No such file or directory pkg-static: lstat(/usr/ports/devel/xdg-utils/work/stage/usr/local/xdg-email.1): No such file or directory pkg-static: lstat(/usr/ports/devel/xdg-utils/work/stage/usr/local/xdg-icon-resource.1): No such file or directory pkg-static: lstat(/usr/ports/devel/xdg-utils/work/stage/usr/local/xdg-mime.1): No such file or directory pkg-static: lstat(/usr/ports/devel/xdg-utils/work/stage/usr/local/xdg-open.1): No such file or directory pkg-static: lstat(/usr/ports/devel/xdg-utils/work/stage/usr/local/xdg-screensaver.1): No such file or directory pkg-static: lstat(/usr/ports/devel/xdg-utils/work/stage/usr/local/xdg-settings.1): No such file or directory *** Error code 74 Stop. make: stopped in /usr/ports/devel/xdg-utils ===>>> Installation of xdg-utils-1.0.2.20130919 (devel/xdg-utils) failed ===>>> Aborting update ===>>> Killing background jobs Terminated ===>>> You can restart from the point of failure with this command line: portmaster devel/xdg-utils ===>>> Exiting $ >How-To-Repeat: see above >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 18:30:10 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 41023A6A; Tue, 24 Sep 2013 18:30:10 +0000 (UTC) (envelope-from edwin@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 162F72034; Tue, 24 Sep 2013 18:30:10 +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 r8OIU9iJ047598; Tue, 24 Sep 2013 18:30:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8OIU93U047597; Tue, 24 Sep 2013 18:30:09 GMT (envelope-from edwin) Date: Tue, 24 Sep 2013 18:30:09 GMT Message-Id: <201309241830.r8OIU93U047597@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182354: devel/xdg-utils fails: STAGE issue? 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: Tue, 24 Sep 2013 18:30:10 -0000 Synopsis: devel/xdg-utils fails: STAGE issue? Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 24 18:30:09 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182354 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 19:40:01 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 08A13F62 for ; Tue, 24 Sep 2013 19:40:01 +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 DC5DE245F for ; Tue, 24 Sep 2013 19:40: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 r8OJe0lO062779 for ; Tue, 24 Sep 2013 19:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8OJe0vI062778; Tue, 24 Sep 2013 19:40:00 GMT (envelope-from gnats) Resent-Date: Tue, 24 Sep 2013 19:40:00 GMT Resent-Message-Id: <201309241940.r8OJe0vI062778@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, Leonid Nevecherya 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 053BDE18 for ; Tue, 24 Sep 2013 19:32:34 +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 CB1BC2400 for ; Tue, 24 Sep 2013 19:32:33 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8OJWX1I061097 for ; Tue, 24 Sep 2013 19:32:33 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8OJWXTX061096; Tue, 24 Sep 2013 19:32:33 GMT (envelope-from nobody) Message-Id: <201309241932.r8OJWXTX061096@oldred.freebsd.org> Date: Tue, 24 Sep 2013 19:32:33 GMT From: Leonid Nevecherya To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182356: security/clamav: make tests problem 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: Tue, 24 Sep 2013 19:40:01 -0000 >Number: 182356 >Category: ports >Synopsis: security/clamav: make tests problem >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Sep 24 19:40:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Leonid Nevecherya >Release: FreeBSD 8.4-RELEASE-p4 amd64 (i386) >Organization: >Environment: FreeBSD xxx.xx 8.4-RELEASE-p4 FreeBSD 8.4-RELEASE-p4 #0: Mon Sep 9 23:16:13 UTC 2013 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 FreeBSD xxx.xx 8.4-RELEASE-p4 FreeBSD 8.4-RELEASE-p4 #0: Mon Sep 9 23:00:58 UTC 2013 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386 On all hosts python27-2.7.5_1 < needs updating (index has 2.7.5_3) >Description: Port isn't build, if option "TESTS Run compile-time tests (req. python)" enabled. Error log: Making check in unit_tests make check_clamav check_clamd check_freshclam.sh check_sigtool.sh check_unit_vg.sh check1_clamscan.sh check2_clamd.sh check3_clamd.sh check4_clamd.sh check5_clamd_vg.sh check6_clamd_vg.sh check7_clamd_hg.sh check8_clamd_hg.sh check9_clamscan_vg.sh cp clamav.hdb usage: cp [-R [-H | -L | -P]] [-f | -i | -n] [-alpvx] source_file target_file cp [-R [-H | -L | -P]] [-f | -i | -n] [-alpvx] source_file ... target_directory *** Error code 64 Stop in /usr/ports/security/clamav/work/clamav-0.98/unit_tests. *** Error code 1 Stop in /usr/ports/security/clamav/work/clamav-0.98/unit_tests. *** Error code 1 Stop in /usr/ports/security/clamav/work/clamav-0.98. *** Error code 1 Stop in /usr/ports/security/clamav. *** Error code 1 Stop in /usr/ports/security/clamav. ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade20130924-27180-1a5gp2f env UPGRADE_TOOL=portupgrade UPGRADE_PORT=clamav-0.97.8 UPGRADE_PORT_VER=0.97.8 make ** Fix the problem and try again. ** Listing the failed packages (-:ignored / *:skipped / !:failed) ! security/clamav (clamav-0.97.8) (new compiler error) >How-To-Repeat: You need make port with option "TESTS Run compile-time tests (req. python)". >Fix: Port make fine without option "TESTS Run compile-time tests (req. python)". ;) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 19:40:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 4AB51F8F; Tue, 24 Sep 2013 19:40:09 +0000 (UTC) (envelope-from edwin@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 20C232460; Tue, 24 Sep 2013 19:40:09 +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 r8OJe8jH062861; Tue, 24 Sep 2013 19:40:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8OJe8Kx062860; Tue, 24 Sep 2013 19:40:08 GMT (envelope-from edwin) Date: Tue, 24 Sep 2013 19:40:08 GMT Message-Id: <201309241940.r8OJe8Kx062860@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, garga@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182356: security/clamav: make tests problem 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: Tue, 24 Sep 2013 19:40:09 -0000 Synopsis: security/clamav: make tests problem Responsible-Changed-From-To: freebsd-ports-bugs->garga Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 24 19:40:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182356 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 21:00:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id DCA40194 for ; Tue, 24 Sep 2013 21:00: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 BA30C2A95 for ; Tue, 24 Sep 2013 21:00: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 r8OL00fi078350 for ; Tue, 24 Sep 2013 21:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8OL00OS078349; Tue, 24 Sep 2013 21:00:00 GMT (envelope-from gnats) Resent-Date: Tue, 24 Sep 2013 21:00:00 GMT Resent-Message-Id: <201309242100.r8OL00OS078349@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, Darren Pilgrim 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 E3A25FBF for ; Tue, 24 Sep 2013 20:55:11 +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 D03762A5D for ; Tue, 24 Sep 2013 20:55:11 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8OKtBIi085527 for ; Tue, 24 Sep 2013 20:55:11 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8OKtBoS085523; Tue, 24 Sep 2013 20:55:11 GMT (envelope-from nobody) Message-Id: <201309242055.r8OKtBoS085523@oldred.freebsd.org> Date: Tue, 24 Sep 2013 20:55:11 GMT From: Darren Pilgrim To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182357: Delete mail/squirrelmail-postfixadmin-plugin port 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: Tue, 24 Sep 2013 21:00:00 -0000 >Number: 182357 >Category: ports >Synopsis: Delete mail/squirrelmail-postfixadmin-plugin port >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Sep 24 21:00:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Darren Pilgrim >Release: >Organization: >Environment: >Description: The postfixadmin plugin for SquirrelMail is now included with the "additions" collection distributed with postfix.admin. Please delete the (now redundant) mail/squirrelmail-postfixadmin-plugin port. Attached patch wipes the port files and updates MOVED and mail/Makefile. >How-To-Repeat: >Fix: Patch attached with submission follows: --- MOVED.old 2013-07-10 22:11:05.263816433 -0700 +++ MOVED 2013-09-24 11:32:39.932071040 -0700 @@ -4426,3 +4426,4 @@ devel/gnome-vfs1||2013-07-10|Has expired: No more depend on, No more supported upstream textproc/ua-ispell|ukrainian/ispell|2013-07-10|Removed because it has been moved to ukrainian/ispell 12 years ago security/openvpn20|security/openvpn|2013-07-11|Has expired: Superseded by security/openvpn +mail/squirrelmail-postfixadmin-plugin||2013-09-24|Now distributed with postfixadmin itself --- mail/Makefile.old 2013-07-07 00:24:39.293814161 -0700 +++ mail/Makefile 2013-09-24 11:33:37.462072630 -0700 @@ -691,7 +691,6 @@ SUBDIR += squirrelmail-notify-plugin SUBDIR += squirrelmail-password_forget-plugin SUBDIR += squirrelmail-plugins - SUBDIR += squirrelmail-postfixadmin-plugin SUBDIR += squirrelmail-pupdate-plugin SUBDIR += squirrelmail-qmailadmin_login-plugin SUBDIR += squirrelmail-quota_usage-plugin --- mail/squirrelmail-postfixadmin-plugin/Makefile.old 2013-07-07 00:24:32.073815741 -0700 +++ mail/squirrelmail-postfixadmin-plugin/Makefile 2013-09-24 11:36:43.032075504 -0700 @@ -1,27 +0,0 @@ -# Created by: Darren Pilgrim -# $FreeBSD: head/mail/squirrelmail-postfixadmin-plugin/Makefile 321853 2013-06-27 06:48:43Z bapt $ - -PORTNAME= postfixadmin -PORTVERSION= 2.3.0 -PORTREVISION= 2 -CATEGORIES= mail www -MASTER_SITES= http://a.aranea.brtsvcs.net/sm-pfa-plugin/ \ - http://b.aranea.brtsvcs.net/sm-pfa-plugin/ -PKGNAMEPREFIX= squirrelmail- -PKGNAMESUFFIX= -plugin -DIST_SUBDIR= squirrelmail - -MAINTAINER= ports.maintainer@evilphi.com -COMMENT= Lets users change password, vacation, and forwarding - -RUN_DEPENDS= ZendFramework>=1.9.0:${PORTSDIR}/www/zend-framework - -USE_BZIP2= yes -DEFAULT_PHP_VER= 53 - -.include "${.CURDIR}/../squirrelmail/bsd.squirrelmail.mk" - -pre-install: - ${RM} -rf ${WRKSRC}/${_SMSRCDIR}/debian - -.include --- mail/squirrelmail-postfixadmin-plugin/distinfo.old 2013-07-07 00:24:32.083813565 -0700 +++ mail/squirrelmail-postfixadmin-plugin/distinfo 2013-09-24 11:36:43.052078261 -0700 @@ -1,2 +0,0 @@ -SHA256 (squirrelmail/postfixadmin-2.3.0.tar.bz2) = dd71b85af58f54a9d3daafc8a0b52c6592561135ccb98670acebe4659029cd47 -SIZE (squirrelmail/postfixadmin-2.3.0.tar.bz2) = 18199 --- mail/squirrelmail-postfixadmin-plugin/pkg-descr.old 2013-07-07 00:24:32.083813565 -0700 +++ mail/squirrelmail-postfixadmin-plugin/pkg-descr 2013-09-24 11:36:43.072078503 -0700 @@ -1,6 +0,0 @@ -The Postfixadmin SquirrelMail plugin let users change their virtual alias, -vacation status/message and password if you are using the great postfixadmin -tool from http://high5.net/postfixadmin. This plugin uses the XmlRpc -feature of Postfix Admin v2.3 and later. - -WWW: http://squirrelmail-postfixadmin.palepurple.co.uk/ --- mail/squirrelmail-postfixadmin-plugin/pkg-plist.old 2013-07-07 00:24:32.073815741 -0700 +++ mail/squirrelmail-postfixadmin-plugin/pkg-plist 2013-09-24 11:36:43.082072619 -0700 @@ -1,45 +0,0 @@ -@unexec if [ -f %D/%%SQUIRRELDIR%%/config/config.php ]; then %D/%%SQUIRRELDIR%%/config/conf.pl --remove-plugin %%SQUIRREL_PLUGIN_NAME%%; fi -%%SQUIRRELDIR%%/plugins/postfixadmin/INSTALL -%%SQUIRRELDIR%%/plugins/postfixadmin/LICENSE.txt -%%SQUIRRELDIR%%/plugins/postfixadmin/README -%%SQUIRRELDIR%%/plugins/postfixadmin/common.php -%%SQUIRRELDIR%%/plugins/postfixadmin/config.php.sample -%%SQUIRRELDIR%%/plugins/postfixadmin/functions.inc.php -%%SQUIRRELDIR%%/plugins/postfixadmin/index.php -%%SQUIRRELDIR%%/plugins/postfixadmin/locale/build.sh -%%SQUIRRELDIR%%/plugins/postfixadmin/locale/cs_CZ/LC_MESSAGES/postfixadmin.mo -%%SQUIRRELDIR%%/plugins/postfixadmin/locale/cs_CZ/LC_MESSAGES/postfixadmin.po -%%SQUIRRELDIR%%/plugins/postfixadmin/locale/da_DK/LC_MESSAGES/postfixadmin.mo -%%SQUIRRELDIR%%/plugins/postfixadmin/locale/da_DK/LC_MESSAGES/postfixadmin.po -%%SQUIRRELDIR%%/plugins/postfixadmin/locale/de_DE/LC_MESSAGES/postfixadmin.mo -%%SQUIRRELDIR%%/plugins/postfixadmin/locale/de_DE/LC_MESSAGES/postfixadmin.po -%%SQUIRRELDIR%%/plugins/postfixadmin/locale/it_IT/LC_MESSAGES/postfixadmin.po -%%SQUIRRELDIR%%/plugins/postfixadmin/locale/nl_NL/LC_MESSAGES/postfixadmin.mo -%%SQUIRRELDIR%%/plugins/postfixadmin/locale/nl_NL/LC_MESSAGES/postfixadmin.po -%%SQUIRRELDIR%%/plugins/postfixadmin/locale/pl_PL/LC_MESSAGES/postfixadmin.mo -%%SQUIRRELDIR%%/plugins/postfixadmin/locale/pl_PL/LC_MESSAGES/postfixadmin.po -%%SQUIRRELDIR%%/plugins/postfixadmin/locale/pt_BR/LC_MESSAGES/postfixadmin.mo -%%SQUIRRELDIR%%/plugins/postfixadmin/locale/pt_BR/LC_MESSAGES/postfixadmin.po -%%SQUIRRELDIR%%/plugins/postfixadmin/po/postfixadmin.po -%%SQUIRRELDIR%%/plugins/postfixadmin/postfixadmin_changepass.php -%%SQUIRRELDIR%%/plugins/postfixadmin/postfixadmin_forward.php -%%SQUIRRELDIR%%/plugins/postfixadmin/postfixadmin_vacation.php -%%SQUIRRELDIR%%/plugins/postfixadmin/setup.php -%%SQUIRRELDIR%%/plugins/postfixadmin/version -@dirrm %%SQUIRRELDIR%%/plugins/postfixadmin/locale/cs_CZ/LC_MESSAGES -@dirrm %%SQUIRRELDIR%%/plugins/postfixadmin/locale/cs_CZ -@dirrm %%SQUIRRELDIR%%/plugins/postfixadmin/locale/da_DK/LC_MESSAGES -@dirrm %%SQUIRRELDIR%%/plugins/postfixadmin/locale/da_DK -@dirrm %%SQUIRRELDIR%%/plugins/postfixadmin/locale/de_DE/LC_MESSAGES -@dirrm %%SQUIRRELDIR%%/plugins/postfixadmin/locale/de_DE -@dirrm %%SQUIRRELDIR%%/plugins/postfixadmin/locale/it_IT/LC_MESSAGES -@dirrm %%SQUIRRELDIR%%/plugins/postfixadmin/locale/it_IT -@dirrm %%SQUIRRELDIR%%/plugins/postfixadmin/locale/nl_NL/LC_MESSAGES -@dirrm %%SQUIRRELDIR%%/plugins/postfixadmin/locale/nl_NL -@dirrm %%SQUIRRELDIR%%/plugins/postfixadmin/locale/pl_PL/LC_MESSAGES -@dirrm %%SQUIRRELDIR%%/plugins/postfixadmin/locale/pl_PL -@dirrm %%SQUIRRELDIR%%/plugins/postfixadmin/locale/pt_BR/LC_MESSAGES -@dirrm %%SQUIRRELDIR%%/plugins/postfixadmin/locale/pt_BR -@dirrm %%SQUIRRELDIR%%/plugins/postfixadmin/locale -@dirrmtry %%SQUIRRELDIR%%/plugins/postfixadmin/po -@dirrmtry %%SQUIRRELDIR%%/plugins/postfixadmin >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 21:00:03 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id A5FE819A for ; Tue, 24 Sep 2013 21:00:03 +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 798072A99 for ; Tue, 24 Sep 2013 21:00:03 +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 r8OL03a3078419 for ; Tue, 24 Sep 2013 21:00:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8OL03Ht078418; Tue, 24 Sep 2013 21:00:03 GMT (envelope-from gnats) Date: Tue, 24 Sep 2013 21:00:03 GMT Message-Id: <201309242100.r8OL03Ht078418@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Uffe Jakobsen Subject: Re: ports/179854: New port: science/pulseview X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Uffe Jakobsen List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Sep 2013 21:00:03 -0000 The following reply was made to PR ports/179854; it has been noted by GNATS. From: Uffe Jakobsen To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/179854: New port: science/pulseview Date: Tue, 24 Sep 2013 22:55:50 +0200 This port have now passed 3 months in ports-limbo... :-( If there is something wrong with this port I would really like to know. From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 21:00:05 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id CA20E19C for ; Tue, 24 Sep 2013 21:00:05 +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 9D4252A9B for ; Tue, 24 Sep 2013 21:00:05 +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 r8OL05Ix078432 for ; Tue, 24 Sep 2013 21:00:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8OL056g078431; Tue, 24 Sep 2013 21:00:05 GMT (envelope-from gnats) Date: Tue, 24 Sep 2013 21:00:05 GMT Message-Id: <201309242100.r8OL056g078431@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Uffe Jakobsen Subject: Re: ports/179853: New port: devel/libsigrok X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Uffe Jakobsen List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Sep 2013 21:00:05 -0000 The following reply was made to PR ports/179853; it has been noted by GNATS. From: Uffe Jakobsen To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/179853: New port: devel/libsigrok Date: Tue, 24 Sep 2013 22:52:40 +0200 This port have now passed 3 months in ports-limbo... :-( If there is something wrong with this port I would really like to know. From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 21:00:02 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 AC012197 for ; Tue, 24 Sep 2013 21:00:02 +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 8054B2A97 for ; Tue, 24 Sep 2013 21:00:02 +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 r8OL019X078411 for ; Tue, 24 Sep 2013 21:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8OL01pZ078410; Tue, 24 Sep 2013 21:00:01 GMT (envelope-from gnats) Date: Tue, 24 Sep 2013 21:00:01 GMT Message-Id: <201309242100.r8OL01pZ078410@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Uffe Jakobsen Subject: Re: ports/179855: New port: science/sigrok-cli X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Uffe Jakobsen List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Sep 2013 21:00:02 -0000 The following reply was made to PR ports/179855; it has been noted by GNATS. From: Uffe Jakobsen To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/179855: New port: science/sigrok-cli Date: Tue, 24 Sep 2013 22:53:47 +0200 This port have now passed 3 months in ports-limbo... :-( If there is something wrong with this port I would really like to know. From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 21:00:04 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 CAD2E19B for ; Tue, 24 Sep 2013 21:00:04 +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 9FC082A9A for ; Tue, 24 Sep 2013 21:00:04 +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 r8OL04wi078426 for ; Tue, 24 Sep 2013 21:00:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8OL040o078425; Tue, 24 Sep 2013 21:00:04 GMT (envelope-from gnats) Date: Tue, 24 Sep 2013 21:00:04 GMT Message-Id: <201309242100.r8OL040o078425@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Uffe Jakobsen Subject: Re: ports/179852: New port: devel/libsigrokdecode X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Uffe Jakobsen List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Sep 2013 21:00:04 -0000 The following reply was made to PR ports/179852; it has been noted by GNATS. From: Uffe Jakobsen To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/179852: New port: devel/libsigrokdecode Date: Tue, 24 Sep 2013 22:52:05 +0200 This port have now passed 3 months in ports-limbo... :-( If there is something wrong with this port I would really like to know. From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 21:30:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 16FCFF5A for ; Tue, 24 Sep 2013 21:30:01 +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 E90782D2E for ; Tue, 24 Sep 2013 21: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 r8OLU0Dt084990 for ; Tue, 24 Sep 2013 21: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 r8OLU0Eo084989; Tue, 24 Sep 2013 21:30:00 GMT (envelope-from gnats) Resent-Date: Tue, 24 Sep 2013 21:30:00 GMT Resent-Message-Id: <201309242130.r8OLU0Eo084989@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, Olivier Duchateau Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id EC7C19AE for ; Tue, 24 Sep 2013 21:21:31 +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 C8EE52C31 for ; Tue, 24 Sep 2013 21:21:31 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8OLLVh3006562 for ; Tue, 24 Sep 2013 21:21:31 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8OLLV6w006532; Tue, 24 Sep 2013 21:21:31 GMT (envelope-from nobody) Message-Id: <201309242121.r8OLLV6w006532@oldred.freebsd.org> Date: Tue, 24 Sep 2013 21:21:31 GMT From: Olivier Duchateau To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182358: [UPDATE] shells/mksh to R48b 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: Tue, 24 Sep 2013 21:30:01 -0000 >Number: 182358 >Category: ports >Synopsis: [UPDATE] shells/mksh to R48b >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: Tue Sep 24 21:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Olivier Duchateau >Release: >Organization: >Environment: >Description: - Update to R48b - Convert to new option framework - Remove article from the COMMENT line - Support STAGEDIR >How-To-Repeat: >Fix: Patch attached with submission follows: Index: Makefile =================================================================== --- Makefile (révision 328195) +++ Makefile (copie de travail) @@ -2,38 +2,37 @@ # $FreeBSD$ PORTNAME= mksh -DISTVERSION= R46 +DISTVERSION= R48b CATEGORIES= shells MASTER_SITES= http://www.mirbsd.org/MirOS/dist/mir/mksh/ \ http://pub.allbsd.org/MirOS/dist/mir/mksh/ DISTFILES= ${PORTNAME}-${DISTVERSION}.tgz MAINTAINER= miwi@FreeBSD.org -COMMENT= A MirBSD enhanced shell based on pdksh +COMMENT= MirBSD enhanced shell based on pdksh WRKSRC= ${WRKDIR}/${PORTNAME} -MAN1= mksh.1 +NEED_ROOT= yes -NO_STAGE= yes -.include +.include do-build: cd ${WRKSRC} && CFLAGS="${CFLAGS}" CC="${CC}" LDFLAGS="${LDFLAGS}" CPPFLAGS="${CPPFLAGS}" SHELL=${SH} ${SH} ${WRKSRC}/Build.sh -r -c lto do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/mksh ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/mksh.1 ${MANPREFIX}/man/man1 -.if !defined(NOPORTEXAMPLES) - ${MKDIR} ${EXAMPLESDIR} - ${INSTALL_DATA} ${WRKSRC}/dot.mkshrc ${EXAMPLESDIR} + ${INSTALL_PROGRAM} ${WRKSRC}/mksh ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/mksh.1 ${STAGEDIR}${MANPREFIX}/man/man1 +.if ${PORT_OPTIONS:MEXAMPLES} + ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/dot.mkshrc ${STAGEDIR}${EXAMPLESDIR} .endif post-install: @${ECHO_MSG} "updating /etc/shells" @${CP} /etc/shells /etc/shells.bak - @(${GREP} -v ${PREFIX}/bin/mksh /etc/shells.bak; \ - ${ECHO_CMD} ${PREFIX}/bin/mksh) > /etc/shells + @(${GREP} -v ${STAGEDIR}${PREFIX}/bin/mksh /etc/shells.bak; \ + ${ECHO_CMD} ${STAGEDIR}${PREFIX}/bin/mksh) > /etc/shells @${RM} /etc/shells.bak -.include +.include Index: distinfo =================================================================== --- distinfo (révision 328195) +++ distinfo (copie de travail) @@ -1,2 +1,2 @@ -SHA256 (mksh-R46.tgz) = dbe6bf60b111a962ed33eb16dffa4d726d62dc0d60ad5429f0d575fc430af05a -SIZE (mksh-R46.tgz) = 349524 +SHA256 (mksh-R48b.tgz) = e67686187ba6dfbf99b7f6b5f841dfb5cd9f980504f8b631d7d3bfd98d345792 +SIZE (mksh-R48b.tgz) = 362969 Index: pkg-plist =================================================================== --- pkg-plist (révision 328195) +++ pkg-plist (copie de travail) @@ -1,5 +1,6 @@ bin/mksh -@exec echo "updating /etc/shells"; cp /etc/shells /etc/shells.bak; (grep -v %D/%F /etc/shells.bak; echo %D/%F) >/etc/shells -@unexec echo "updating /etc/shells"; cp /etc/shells /etc/shells.bak; (grep -v %D/%F /etc/shells.bak) >/etc/shells +@exec echo "updating /etc/shells"; cp /etc/shells /etc/shells.bak; (grep -v %D/%F /etc/shells.bak; echo %D/%F) >/etc/shells; rm -f /etc/shells.bak +@unexec echo "updating /etc/shells"; cp /etc/shells /etc/shells.bak; (grep -v %D/%F /etc/shells.bak) >/etc/shells; rm -f /etc/shells.bak +man/man1/mksh.1.gz %%PORTEXAMPLES%%%%EXAMPLESDIR%%/dot.mkshrc %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%% >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 21:30:09 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 D9A5EF8D; Tue, 24 Sep 2013 21:30:09 +0000 (UTC) (envelope-from edwin@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 A51372D32; Tue, 24 Sep 2013 21:30:09 +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 r8OLU903085124; Tue, 24 Sep 2013 21:30:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8OLU9I9085123; Tue, 24 Sep 2013 21:30:09 GMT (envelope-from edwin) Date: Tue, 24 Sep 2013 21:30:09 GMT Message-Id: <201309242130.r8OLU9I9085123@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182358: [UPDATE] shells/mksh to R48b 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: Tue, 24 Sep 2013 21:30:09 -0000 Synopsis: [UPDATE] shells/mksh to R48b Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 24 21:30:09 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182358 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 21:37:11 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 D9772101; Tue, 24 Sep 2013 21:37:11 +0000 (UTC) (envelope-from olivierd@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 AB1782D95; Tue, 24 Sep 2013 21:37:11 +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 r8OLbBWH086818; Tue, 24 Sep 2013 21:37:11 GMT (envelope-from olivierd@freefall.freebsd.org) Received: (from olivierd@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8OLbB9Q086817; Tue, 24 Sep 2013 21:37:11 GMT (envelope-from olivierd) Date: Tue, 24 Sep 2013 21:37:11 GMT Message-Id: <201309242137.r8OLbB9Q086817@freefall.freebsd.org> To: olivierd@FreeBSD.org, olivierd@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: olivierd@FreeBSD.org Subject: Re: ports/181327: [UPDATE] shells/mksh to R48 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: Tue, 24 Sep 2013 21:37:11 -0000 Synopsis: [UPDATE] shells/mksh to R48 State-Changed-From-To: open->closed State-Changed-By: olivierd State-Changed-When: Tue Sep 24 21:37:11 UTC 2013 State-Changed-Why: Superseded by ports/182358 http://www.freebsd.org/cgi/query-pr.cgi?pr=181327 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 21:38:24 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 6D61113C; Tue, 24 Sep 2013 21:38:24 +0000 (UTC) (envelope-from olivierd@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 4208C2D9E; Tue, 24 Sep 2013 21:38:24 +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 r8OLcOe5086935; Tue, 24 Sep 2013 21:38:24 GMT (envelope-from olivierd@freefall.freebsd.org) Received: (from olivierd@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8OLcOrh086934; Tue, 24 Sep 2013 21:38:24 GMT (envelope-from olivierd) Date: Tue, 24 Sep 2013 21:38:24 GMT Message-Id: <201309242138.r8OLcOrh086934@freefall.freebsd.org> To: olivierd@FreeBSD.org, olivierd@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: olivierd@FreeBSD.org Subject: Re: ports/181406: [UPDATE] shells/mksh to R48b 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: Tue, 24 Sep 2013 21:38:24 -0000 Synopsis: [UPDATE] shells/mksh to R48b State-Changed-From-To: open->closed State-Changed-By: olivierd State-Changed-When: Tue Sep 24 21:38:23 UTC 2013 State-Changed-Why: Superseded by port/182358 http://www.freebsd.org/cgi/query-pr.cgi?pr=181406 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 22:10:02 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 6AC03A45 for ; Tue, 24 Sep 2013 22:10:02 +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 4837C2F9C for ; Tue, 24 Sep 2013 22:10:02 +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 r8OMA2D2092661 for ; Tue, 24 Sep 2013 22:10:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8OMA2gK092660; Tue, 24 Sep 2013 22:10:02 GMT (envelope-from gnats) Resent-Date: Tue, 24 Sep 2013 22:10:02 GMT Resent-Message-Id: <201309242210.r8OMA2gK092660@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, Klaus Aehlig 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 D99E890A for ; Tue, 24 Sep 2013 22:05:49 +0000 (UTC) (envelope-from aehlig@linta.de) Received: from linta.de (isilmar-3.linta.de [188.40.101.200]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4B1EB2F6A for ; Tue, 24 Sep 2013 22:05:48 +0000 (UTC) Received: (qmail 417 invoked by uid 10); 24 Sep 2013 21:59:05 -0000 Received: from howard.linta.de by isilmar.linta.de with BSMTP; 24 Sep 2013 21:59:05 -0000 Received: by howard.linta.de (Postfix, from userid 1001) id 618B0385563; Tue, 24 Sep 2013 23:58:50 +0200 (CEST) Message-Id: <20130924215850.618B0385563@howard.linta.de> Date: Tue, 24 Sep 2013 23:58:50 +0200 (CEST) From: Klaus Aehlig To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/182359: [patch] misc/findutils update to 4.5.12 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Klaus Aehlig List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Sep 2013 22:10:02 -0000 >Number: 182359 >Category: ports >Synopsis: [patch] misc/findutils update to 4.5.12 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Sep 24 22:10:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Klaus Aehlig >Release: FreeBSD 9.2-PRERELEASE amd64 >Organization: >Environment: System: FreeBSD howard.linta.de 9.2-PRERELEASE FreeBSD 9.2-PRERELEASE #15 r255465: Wed Sep 11 09:04:13 CEST 2013 root@howard.linta.de:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Update misc/findutils to version 4.5.12 see http://lists.gnu.org/archive/html/bug-findutils/2013-09/msg00024.html for the release announcement. >How-To-Repeat: >Fix: Apply the following patch. Note: file/patch-locate__locate.c is removed, as the fix is included in upstream version 4.5.12 --- findutils.diff begins here --- diff -ruN findutils.orig/Makefile findutils/Makefile --- findutils.orig/Makefile 2013-09-24 23:54:04.000000000 +0200 +++ findutils/Makefile 2013-09-24 23:44:52.000000000 +0200 @@ -2,7 +2,7 @@ # $FreeBSD: head/misc/findutils/Makefile 327745 2013-09-20 20:50:57Z bapt $ PORTNAME= findutils -PORTVERSION= 4.5.11 +PORTVERSION= 4.5.12 CATEGORIES= misc MASTER_SITES= ${MASTER_SITE_GNU_ALPHA} MASTER_SITE_SUBDIR= findutils diff -ruN findutils.orig/distinfo findutils/distinfo --- findutils.orig/distinfo 2013-09-24 23:54:04.000000000 +0200 +++ findutils/distinfo 2013-09-24 23:44:52.000000000 +0200 @@ -1,4 +1,4 @@ -SHA256 (findutils-4.5.11.tar.gz) = 75e823592d917f1ac853a35cf46d6deeeb3b984240331ad1723f60da1a725d22 -SIZE (findutils-4.5.11.tar.gz) = 3116431 -SHA256 (findutils-4.5.11.tar.gz.sig) = 4fd79ba6ab6acd7e340ad8878ae82112a503ef1f708fd5ba02cb94fe4a66d27f -SIZE (findutils-4.5.11.tar.gz.sig) = 152 +SHA256 (findutils-4.5.12.tar.gz) = df859eebad68c216204363f163c0e4200208ce7348f3658564a120e32e4f63de +SIZE (findutils-4.5.12.tar.gz) = 3236073 +SHA256 (findutils-4.5.12.tar.gz.sig) = 987a5a35dc97ac8141319b4306f20d483f346ceb7e25c92fd0a244e727a764d3 +SIZE (findutils-4.5.12.tar.gz.sig) = 152 diff -ruN findutils.orig/files/patch-locate__locate.c findutils/files/patch-locate__locate.c --- findutils.orig/files/patch-locate__locate.c 2013-09-24 23:54:04.000000000 +0200 +++ findutils/files/patch-locate__locate.c 1970-01-01 01:00:00.000000000 +0100 @@ -1,154 +0,0 @@ -diff locate/locate.c.orig locate/locate.c ---- locate/locate.c.orig -+++ locate/locate.c -@@ -1546,12 +1546,19 @@ opendb (const char *name) - return fd; - } - -+static void -+cleanup_quote_opts (void) -+{ -+ free (quote_opts); -+} -+ -+ - int - dolocate (int argc, char **argv, int secure_db_fd) - { -- char *path_element; -+ char *path_element = NULL; - size_t path_element_pos, path_element_len; -- const char *locate_path; -+ const char *user_selected_locate_path; - const char *db_name; - const char *path_separators = ":"; - unsigned long int found = 0uL; -@@ -1565,7 +1572,6 @@ dolocate (int argc, char **argv, int secure_db_fd) - int stats = 0; - int op_and = 0; - FILE *fp; -- int they_chose_db = 0; - bool did_stdin = false; /* Set to prevent rereading stdin. */ - - if (argv[0]) -@@ -1580,19 +1586,19 @@ dolocate (int argc, char **argv, int secure_db_fd) - textdomain (PACKAGE); - atexit (close_stdout); - -+ quote_opts = clone_quoting_options (NULL); -+ atexit (cleanup_quote_opts); -+ - limits.limit = 0; - limits.items_accepted = 0; - -- quote_opts = clone_quoting_options (NULL); - print_quoted_filename = true; - - /* We cannot simultaneously trust $LOCATE_PATH and use the - * setuid-access-controlled database,, since that could cause a leak - * of private data. - */ -- locate_path = getenv ("LOCATE_PATH"); -- if (locate_path) -- they_chose_db = 1; -+ user_selected_locate_path = getenv ("LOCATE_PATH"); - - check_existence = ACCEPT_EITHER; - -@@ -1624,8 +1630,8 @@ dolocate (int argc, char **argv, int secure_db_fd) - break; - - case 'd': -- locate_path = optarg; -- they_chose_db = 1; -+ user_selected_locate_path = optarg; -+ assert (optarg != NULL); - break; - - case 'e': -@@ -1715,7 +1721,7 @@ dolocate (int argc, char **argv, int secure_db_fd) - /* If the user gave the -d option or set LOCATE_PATH, - * relinquish access to the secure database. - */ -- if (they_chose_db) -+ if (user_selected_locate_path) - { - if (secure_db_fd >= 0) - { -@@ -1741,15 +1747,16 @@ dolocate (int argc, char **argv, int secure_db_fd) - } - } - -- - if (1 == isatty (STDOUT_FILENO)) - stdout_is_a_tty = true; - else - stdout_is_a_tty = false; - -- if (they_chose_db) -- splitstring (locate_path, path_separators, true, -- &path_element_pos, &path_element_len); -+ if (user_selected_locate_path) -+ { -+ splitstring (user_selected_locate_path, path_separators, true, -+ &path_element_pos, &path_element_len); -+ } - - /* Bail out early if limit already reached. */ - while (!use_limit || limits.limit > limits.items_accepted) -@@ -1765,10 +1772,11 @@ dolocate (int argc, char **argv, int secure_db_fd) - statistics.newline_count = - statistics.highbit_filename_count = 0u; - -- if (they_chose_db) -+ if (user_selected_locate_path) - { - /* Take the next element from the list of databases */ -- if (1 == path_element_len && '-' == locate_path[path_element_pos]) -+ if (1 == path_element_len -+ && '-' == user_selected_locate_path[path_element_pos]) - { - if (did_stdin) - { -@@ -1787,13 +1795,13 @@ dolocate (int argc, char **argv, int secure_db_fd) - { - if (0 == path_element_len - || (1 == path_element_len -- && '.' == locate_path[path_element_pos])) -+ && '.' == user_selected_locate_path[path_element_pos])) - { - db_name = LOCATE_DB; - } - else - { -- path_element = strndup (&locate_path[path_element_pos], -+ path_element = strndup (&user_selected_locate_path[path_element_pos], - path_element_len); - db_name = path_element; - } -@@ -1889,11 +1897,20 @@ dolocate (int argc, char **argv, int secure_db_fd) - free (path_element); - path_element = NULL; - } -- if (!splitstring (locate_path, path_separators, false, -- &path_element_pos, &path_element_len)) -- { -- break; -- } -+ -+ if (!user_selected_locate_path) -+ { -+ /* We're not actually iterating through the values in -+ $LOCATE_PATH so we don't want to check for the next -+ element in user_selected_locate_path (since we manually set db_name = -+ LOCATE_DB without using user_selected_locate_path). */ -+ break; -+ } -+ else if (!splitstring (user_selected_locate_path, path_separators, false, -+ &path_element_pos, &path_element_len)) -+ { -+ break; -+ } - } - - if (just_count) --- findutils.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 24 23:20:57 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 31D41CB4; Tue, 24 Sep 2013 23:20:57 +0000 (UTC) (envelope-from danilo@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 057D8239B; Tue, 24 Sep 2013 23:20:57 +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 r8ONKuff007598; Tue, 24 Sep 2013 23:20:56 GMT (envelope-from danilo@freefall.freebsd.org) Received: (from danilo@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8ONKuYr007597; Tue, 24 Sep 2013 23:20:56 GMT (envelope-from danilo) Date: Tue, 24 Sep 2013 23:20:56 GMT Message-Id: <201309242320.r8ONKuYr007597@freefall.freebsd.org> To: danilogondolfo@gmail.com, danilo@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, danilo@FreeBSD.org From: danilo@FreeBSD.org Subject: Re: ports/182240: [patch] devel/ragel: unbreak with libc++ (again) 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: Tue, 24 Sep 2013 23:20:57 -0000 Synopsis: [patch] devel/ragel: unbreak with libc++ (again) Responsible-Changed-From-To: freebsd-ports-bugs->danilo Responsible-Changed-By: danilo Responsible-Changed-When: Tue Sep 24 23:20:56 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=182240 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 01:06:29 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 85329870; Wed, 25 Sep 2013 01:06:29 +0000 (UTC) (envelope-from amdmi3@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 59DF22978; Wed, 25 Sep 2013 01:06:29 +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 r8P16TFX041680; Wed, 25 Sep 2013 01:06:29 GMT (envelope-from amdmi3@freefall.freebsd.org) Received: (from amdmi3@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8P16T1F041679; Wed, 25 Sep 2013 01:06:29 GMT (envelope-from amdmi3) Date: Wed, 25 Sep 2013 01:06:29 GMT Message-Id: <201309250106.r8P16T1F041679@freefall.freebsd.org> To: amdmi3@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, amdmi3@FreeBSD.org From: amdmi3@FreeBSD.org Subject: Re: ports/182336: [maintainer] [patch] [stagedir] games/wtf 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: Wed, 25 Sep 2013 01:06:29 -0000 Synopsis: [maintainer] [patch] [stagedir] games/wtf Responsible-Changed-From-To: freebsd-ports-bugs->amdmi3 Responsible-Changed-By: amdmi3 Responsible-Changed-When: Wed Sep 25 01:06:29 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=182336 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 01:31:35 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 22BF5DD; Wed, 25 Sep 2013 01:31:35 +0000 (UTC) (envelope-from edwin@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 EE9AE2AE7; Wed, 25 Sep 2013 01:31:34 +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 r8P1VYbs048529; Wed, 25 Sep 2013 01:31:34 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8P1VYMI048528; Wed, 25 Sep 2013 01:31:34 GMT (envelope-from edwin) Date: Wed, 25 Sep 2013 01:31:34 GMT Message-Id: <201309250131.r8P1VYMI048528@freefall.freebsd.org> To: sirdice@gmail.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182349: databases/tuning-primer fails to install 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: Wed, 25 Sep 2013 01:31:35 -0000 Synopsis: databases/tuning-primer fails to install State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Wed Sep 25 01:31:34 UTC 2013 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182349 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 01:32:31 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 4743636F; Wed, 25 Sep 2013 01:32:31 +0000 (UTC) (envelope-from linimon@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 1E71F2B04; Wed, 25 Sep 2013 01:32:31 +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 r8P1WUW6048646; Wed, 25 Sep 2013 01:32:30 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8P1WUnZ048645; Wed, 25 Sep 2013 01:32:30 GMT (envelope-from linimon) Date: Wed, 25 Sep 2013 01:32:30 GMT Message-Id: <201309250132.r8P1WUnZ048645@freefall.freebsd.org> To: robbak@robbak.com, swills@freebsd.org, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/182338: [PATCH] net-p2p/bitcoin: Fix build on 10.0-ALPHA2 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: Wed, 25 Sep 2013 01:32:31 -0000 Synopsis: [PATCH] net-p2p/bitcoin: Fix build on 10.0-ALPHA2 State-Changed-From-To: feedback->open State-Changed-By: linimon State-Changed-When: Wed Sep 25 01:32:24 UTC 2013 State-Changed-Why: Maintainer approved. http://www.freebsd.org/cgi/query-pr.cgi?pr=182338 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 01:39:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 0AA03634; Wed, 25 Sep 2013 01:39:09 +0000 (UTC) (envelope-from amdmi3@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 D35212B61; Wed, 25 Sep 2013 01:39:08 +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 r8P1d8WL049436; Wed, 25 Sep 2013 01:39:08 GMT (envelope-from amdmi3@freefall.freebsd.org) Received: (from amdmi3@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8P1d8qQ049435; Wed, 25 Sep 2013 01:39:08 GMT (envelope-from amdmi3) Date: Wed, 25 Sep 2013 01:39:08 GMT Message-Id: <201309250139.r8P1d8qQ049435@freefall.freebsd.org> To: john@pcbsd.org, amdmi3@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, amdmi3@FreeBSD.org From: amdmi3@FreeBSD.org Subject: Re: ports/182331: Update audio/pianobar from 2013.05.19 to 2013.09.15 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: Wed, 25 Sep 2013 01:39:09 -0000 Synopsis: Update audio/pianobar from 2013.05.19 to 2013.09.15 Responsible-Changed-From-To: freebsd-ports-bugs->amdmi3 Responsible-Changed-By: amdmi3 Responsible-Changed-When: Wed Sep 25 01:39:08 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=182331 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 01:40:04 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 1D69367B for ; Wed, 25 Sep 2013 01:40:04 +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 0BB892B6F for ; Wed, 25 Sep 2013 01:40:04 +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 r8P1e3EA049566 for ; Wed, 25 Sep 2013 01:40:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8P1e3xb049565; Wed, 25 Sep 2013 01:40:03 GMT (envelope-from gnats) Date: Wed, 25 Sep 2013 01:40:03 GMT Message-Id: <201309250140.r8P1e3xb049565@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/182349: databases/tuning-primer fails to install X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Sep 2013 01:40:04 -0000 The following reply was made to PR ports/182349; it has been noted by GNATS. From: Edwin Groothuis To: joehorn@gmail.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/182349: databases/tuning-primer fails to install Date: Wed, 25 Sep 2013 01:31:34 UT Maintainer of databases/tuning-primer, Please note that PR ports/182349 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/182349 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 02:00:17 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 3507AF33; Wed, 25 Sep 2013 02:00:17 +0000 (UTC) (envelope-from amdmi3@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 0BBD52C83; Wed, 25 Sep 2013 02:00:17 +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 r8P20G74054758; Wed, 25 Sep 2013 02:00:16 GMT (envelope-from amdmi3@freefall.freebsd.org) Received: (from amdmi3@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8P20GPo054734; Wed, 25 Sep 2013 02:00:16 GMT (envelope-from amdmi3) Date: Wed, 25 Sep 2013 02:00:16 GMT Message-Id: <201309250200.r8P20GPo054734@freefall.freebsd.org> To: amdmi3@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, amdmi3@FreeBSD.org From: amdmi3@FreeBSD.org Subject: Re: ports/182168: [maintainer update] sysutils/ciso clang support 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: Wed, 25 Sep 2013 02:00:17 -0000 Synopsis: [maintainer update] sysutils/ciso clang support Responsible-Changed-From-To: freebsd-ports-bugs->amdmi3 Responsible-Changed-By: amdmi3 Responsible-Changed-When: Wed Sep 25 02:00:16 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=182168 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 02:00:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id C7A9EF2E for ; Wed, 25 Sep 2013 02:00: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 A71DF2C7F for ; Wed, 25 Sep 2013 02:00: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 r8P200ls053154 for ; Wed, 25 Sep 2013 02:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8P200fc053153; Wed, 25 Sep 2013 02:00:00 GMT (envelope-from gnats) Resent-Date: Wed, 25 Sep 2013 02:00:00 GMT Resent-Message-Id: <201309250200.r8P200fc053153@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, Greg Satz 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 695FECE3 for ; Wed, 25 Sep 2013 01:51:17 +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 56E892C48 for ; Wed, 25 Sep 2013 01:51:17 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8P1pGmA064552 for ; Wed, 25 Sep 2013 01:51:16 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8P1pGL9064531; Wed, 25 Sep 2013 01:51:16 GMT (envelope-from nobody) Message-Id: <201309250151.r8P1pGL9064531@oldred.freebsd.org> Date: Wed, 25 Sep 2013 01:51:16 GMT From: Greg Satz To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182363: clamav-0.98 fails to compile due to missing spawn.h 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: Wed, 25 Sep 2013 02:00:00 -0000 >Number: 182363 >Category: ports >Synopsis: clamav-0.98 fails to compile due to missing spawn.h >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Sep 25 02:00:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Greg Satz >Release: FreeBSD 7.1 >Organization: >Environment: FreeBSD fnu.iranger.com 7.1-RELEASE-p16 FreeBSD 7.1-RELEASE-p16 #24: Fri Apr 27 07:57:26 MDT 2012 satz@fnu.iranger.com:/usr/src/sys/i386/compile/FNU i386 >Description: ===> Building for clamav-0.98 /usr/bin/make all-recursive Making all in libltdl /usr/bin/make all-am Making all in libclamav /usr/bin/make all-recursive Making all in c++ /usr/bin/make all-am CXX Program.lo CXX ThreadLocal.lo CXX Threading.lo In file included from llvm/lib/System/Program.cpp:52: llvm/lib/System/Unix/Program.inc:34:19: error: spawn.h: No such file or directory CXX TimeValue.lo In file included from llvm/lib/System/Program.cpp:52: llvm/lib/System/Unix/Program.inc:134: error: 'posix_spawn_file_actions_t' has not been declared llvm/lib/System/Unix/Program.inc: In function 'bool llvm::RedirectIO_PS(const llvm::sys::Path*, int, std::string*, int&)': llvm/lib/System/Unix/Program.inc:145: error: 'posix_spawn_file_actions_addopen' was not declared in this scope >How-To-Repeat: make in /usr/ports/security/clamav >Fix: Appears that HAS_POSIX_SPAWN isn't being unset for the older version of FreeBSD I am running. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 03:13:01 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 63F8059E; Wed, 25 Sep 2013 03:13:01 +0000 (UTC) (envelope-from edwin@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 36DD4217C; Wed, 25 Sep 2013 03:13:01 +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 r8P3D19q069494; Wed, 25 Sep 2013 03:13:01 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8P3D1kc069493; Wed, 25 Sep 2013 03:13:01 GMT (envelope-from edwin) Date: Wed, 25 Sep 2013 03:13:01 GMT Message-Id: <201309250313.r8P3D1kc069493@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, garga@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182363: security/clamav 0.98 fails to compile due to missing spawn.h 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: Wed, 25 Sep 2013 03:13:01 -0000 Synopsis: security/clamav 0.98 fails to compile due to missing spawn.h Responsible-Changed-From-To: freebsd-ports-bugs->garga Responsible-Changed-By: edwin Responsible-Changed-When: Wed Sep 25 03:13:00 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182363 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 04:18:17 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id CC8F8528; Wed, 25 Sep 2013 04:18:17 +0000 (UTC) (envelope-from amdmi3@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 A3A20247D; Wed, 25 Sep 2013 04:18:17 +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 r8P4IHXO082676; Wed, 25 Sep 2013 04:18:17 GMT (envelope-from amdmi3@freefall.freebsd.org) Received: (from amdmi3@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8P4IGJA082675; Wed, 25 Sep 2013 04:18:16 GMT (envelope-from amdmi3) Date: Wed, 25 Sep 2013 04:18:16 GMT Message-Id: <201309250418.r8P4IGJA082675@freefall.freebsd.org> To: i@levsha.me, amdmi3@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, amdmi3@FreeBSD.org From: amdmi3@FreeBSD.org Subject: Re: ports/182191: astro/qlandkartegt : 1.7.4 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: Wed, 25 Sep 2013 04:18:17 -0000 Synopsis: astro/qlandkartegt : 1.7.4 Responsible-Changed-From-To: freebsd-ports-bugs->amdmi3 Responsible-Changed-By: amdmi3 Responsible-Changed-When: Wed Sep 25 04:18:16 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=182191 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 04:33:20 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 3B222727; Wed, 25 Sep 2013 04:33:20 +0000 (UTC) (envelope-from amdmi3@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 0C9682558; Wed, 25 Sep 2013 04:33:20 +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 r8P4XJTl086272; Wed, 25 Sep 2013 04:33:19 GMT (envelope-from amdmi3@freefall.freebsd.org) Received: (from amdmi3@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8P4XJk1086271; Wed, 25 Sep 2013 04:33:19 GMT (envelope-from amdmi3) Date: Wed, 25 Sep 2013 04:33:19 GMT Message-Id: <201309250433.r8P4XJk1086271@freefall.freebsd.org> To: amdmi3@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, amdmi3@FreeBSD.org From: amdmi3@FreeBSD.org Subject: Re: ports/182335: [maintainer] [patch] [stagedir] sysutils/ansible 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: Wed, 25 Sep 2013 04:33:20 -0000 Synopsis: [maintainer] [patch] [stagedir] sysutils/ansible Responsible-Changed-From-To: freebsd-ports-bugs->amdmi3 Responsible-Changed-By: amdmi3 Responsible-Changed-When: Wed Sep 25 04:33:19 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=182335 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 04:40:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id F14989AD for ; Wed, 25 Sep 2013 04:40: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 BBBA0259C for ; Wed, 25 Sep 2013 04:40: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 r8P4e05K086433 for ; Wed, 25 Sep 2013 04:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8P4e0X3086432; Wed, 25 Sep 2013 04:40:00 GMT (envelope-from gnats) Resent-Date: Wed, 25 Sep 2013 04:40:00 GMT Resent-Message-Id: <201309250440.r8P4e0X3086432@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, Jin-Sih Lin Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 9BACB98B for ; Wed, 25 Sep 2013 04:37:16 +0000 (UTC) (envelope-from root@deep.tw) Received: from deep.tw (220-134-39-129.HINET-IP.hinet.net [220.134.39.129]) by mx1.freebsd.org (Postfix) with ESMTP id 6B030258A for ; Wed, 25 Sep 2013 04:37:15 +0000 (UTC) Received: by deep.tw (Postfix, from userid 0) id AEF465C16; Wed, 25 Sep 2013 12:28:35 +0800 (CST) Message-Id: <20130925042835.AEF465C16@deep.tw> Date: Wed, 25 Sep 2013 12:28:35 +0800 (CST) From: Jin-Sih Lin To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/182364: [MAINTAINER] www/node: update to 0.10.19 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: Wed, 25 Sep 2013 04:40:01 -0000 >Number: 182364 >Category: ports >Synopsis: [MAINTAINER] www/node: update to 0.10.19 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Sep 25 04:40:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Jin-Sih Lin >Release: FreeBSD 10.0-CURRENT i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD deep.tw 10.0-CURRENT FreeBSD 10.0-CURRENT #2 r253131: Thu Jul 11 16:55:44 CST >Description: - Update to 0.10.19 Generated with FreeBSD Port Tools 0.99_8 (mode: update, diff: suffix) >How-To-Repeat: >Fix: --- node-0.10.19.patch begins here --- diff -ruN ../node.orig/Makefile ./Makefile --- ../node.orig/Makefile 2013-09-25 10:50:52.000000000 +0800 +++ ./Makefile 2013-09-25 10:56:55.000000000 +0800 @@ -2,7 +2,7 @@ # $FreeBSD: head/www/node/Makefile 328181 2013-09-24 17:35:44Z sunpoet $ PORTNAME= node -PORTVERSION= 0.10.18 +PORTVERSION= 0.10.19 CATEGORIES= www MASTER_SITES= http://nodejs.org/dist/v${PORTVERSION}/ DISTNAME= ${PORTNAME}-v${PORTVERSION} diff -ruN ../node.orig/distinfo ./distinfo --- ../node.orig/distinfo 2013-09-05 09:51:33.000000000 +0800 +++ ./distinfo 2013-09-25 10:57:08.000000000 +0800 @@ -1,2 +1,2 @@ -SHA256 (node-v0.10.18.tar.gz) = 3ee4436473869d4d84bb5cad4352b09ace00656467eca7d6db7cd7da5b8c5495 -SIZE (node-v0.10.18.tar.gz) = 13643205 +SHA256 (node-v0.10.19.tar.gz) = e50787672cdf6afa6caeef9345ca40c4a69f96a31829a0884ea6ed63dfdde21e +SIZE (node-v0.10.19.tar.gz) = 13627909 --- node-0.10.19.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 04:40:10 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 2F0319DC; Wed, 25 Sep 2013 04:40:10 +0000 (UTC) (envelope-from edwin@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 04CEE259E; Wed, 25 Sep 2013 04:40:10 +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 r8P4e9CC088074; Wed, 25 Sep 2013 04:40:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8P4e9mW088073; Wed, 25 Sep 2013 04:40:09 GMT (envelope-from edwin) Date: Wed, 25 Sep 2013 04:40:09 GMT Message-Id: <201309250440.r8P4e9mW088073@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, swills@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182364: [MAINTAINER] www/node: update to 0.10.19 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: Wed, 25 Sep 2013 04:40:10 -0000 Synopsis: [MAINTAINER] www/node: update to 0.10.19 Responsible-Changed-From-To: freebsd-ports-bugs->swills Responsible-Changed-By: edwin Responsible-Changed-When: Wed Sep 25 04:40:09 UTC 2013 Responsible-Changed-Why: swills@ wants this submitter's PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182364 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 06:02:43 2013 Return-Path: Delivered-To: freebsd-ports-bugs@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 EAD837CD for ; Wed, 25 Sep 2013 06:02:42 +0000 (UTC) (envelope-from oimnhy@outlook.com) Received: from sam.nabble.com (sam.nabble.com [216.139.236.26]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CD7CF2988 for ; Wed, 25 Sep 2013 06:02:42 +0000 (UTC) Received: from [192.168.236.26] (helo=sam.nabble.com) by sam.nabble.com with esmtp (Exim 4.72) (envelope-from ) id 1VOiBI-0001f8-2x for freebsd-ports-bugs@freebsd.org; Tue, 24 Sep 2013 23:02:36 -0700 Date: Tue, 24 Sep 2013 23:02:36 -0700 (PDT) From: oimnhy To: freebsd-ports-bugs@freebsd.org Message-ID: <1380088956080-5846611.post@n5.nabble.com> Subject: pandora australia online store MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit 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: Wed, 25 Sep 2013 06:02:43 -0000 You have pandora australia online store observed the friends sporting appeal jewelry and also additionally you can expect to want the. Every thing you might truly know would be that you are free to choose away every one of the drops and additionally pendants concerning the bracelets you create. This offers the flexibility to create a thing that is unique to your residence and additionally a thing which will portray every thing you would like. Check away at absolutely how effortless the overall process of generating your own personal individual pieces really can be. In truth, it solely takes 4 methods. Scheduling is a good idea because we are able to comment on what you would like to make and get supplies in.Beading Inspirations is by far the perfect spot for distinctive Christmas gifts to match every single budget and taste.Besides the wide array of ready-made jewellery available including pendants and also rings, Beading Inspirations also offers every little thing you want to bring out the creative team and develop your very own present for a liked one this excellent Christmas time. In olden occasions, charms and additionally talismans had been objects enshrouded in secret and also imbued with enchanting powers. They indicated the morals, ideas and standards of the wearer of the charm, and additionally bestowing standing and additionally beauty. Regardless if you re trying to extend your undoubtedly massive collection of charms, or looking for an unmarried, mystical talisman, finding the right create appeal is a fun way to present yourself or treat your loved ones up to a unique gift idea. There are actually valuable steel drops, glass and additionally wooden beads, gemstone charms, solid gold or perhaps metallic charms, and also more. The spacer drops can feel somewhat simply or perhaps they may be able feature layouts, artwork, and ornamentation with valuable and additionally semi-precious rocks. They could be made from Murano glass taken directly into designs and motifs, as well as might also feel produced from exotic woods that are sustainably harvested from rain woodland spots. As soon as you have selected the base, the next thing so that you can decide is the clips that you would like on your own Pandora jewelry. They may be able physical appearance the same or overall look different ?almost everything as much as you. These videos must be attached to the elevated components of your Pandora jewelry. Making Pandora bracelets is a fun way to customise jewellery, that is principally because which Pandora charms are actually adorable. Pandora will keep around 600 charms, and additionally selecting is difficult since there are a lot of kinds, colours, and additionally designs of charms. The fundamental Pandora appeal is a circular bead who is either obviously or perhaps coated with designs, but Pandora charms have expanded to incorporate shaped charms and additionally fun, whimsical charms to their catalogue. Charms pandora charms online australia shaped like birdcages, tiaras, cupcakes, a hitched couple, along with a fairy tale castle are actually just a few of the cute charms there are on a Pandora elegance wristband. Sparkly Pandora charms add precisely the correct amount of bling to your band, and then a starter elegance bracelet makes a great gift item, mainly because recipient can customise the bracelet any way she wants by adding charms she interests. ----- Tiffany jewelry cheap Tiffany and co rings cheap Australia -- View this message in context: http://freebsd.1045724.n5.nabble.com/pandora-australia-online-store-tp5846611.html Sent from the freebsd-ports-bugs mailing list archive at Nabble.com. From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 06:10:54 2013 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id EA1E9918 for ; Wed, 25 Sep 2013 06:10:53 +0000 (UTC) (envelope-from oimnhy@outlook.com) Received: from sam.nabble.com (sam.nabble.com [216.139.236.26]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B464B29E5 for ; Wed, 25 Sep 2013 06:10:53 +0000 (UTC) Received: from [192.168.236.26] (helo=sam.nabble.com) by sam.nabble.com with esmtp (Exim 4.72) (envelope-from ) id 1VOiJJ-0002nl-0m for freebsd-ports-bugs@freebsd.org; Tue, 24 Sep 2013 23:10:53 -0700 Date: Tue, 24 Sep 2013 23:10:53 -0700 (PDT) From: oimnhy To: freebsd-ports-bugs@freebsd.org Message-ID: <1380089453018-5846613.post@n5.nabble.com> Subject: pandora charms online sale MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit 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: Wed, 25 Sep 2013 06:10:54 -0000 Official Stockist. Discover your favourite Pandora charms then put in to Pandora's world well-known charm bracelets. pandora charms online sale Use our businesses filters for exploring the number of impressive range of 14ct gold, sterling metallic and gemstone earrings, guys, hoops and additionally pendants to create a seek out every single event. You stock vibrant necklaces and also pendants crafted from 14ct gold, sterling metallic and a couple of tone. Rings and additionally stacking rings are actually crafted from 14ct gold, sterling metallic and also a couple tone with impressive gemstones. Mix and match to the heart's desire. The Pandora Black Crown Diamond number integrates top quality Swiss high quality with fabulous Danish layout in a good eye-catching collection of specialized Pandora watches. Combine and match see bezels and additionally secure to create your own personal design. This might be just the type of jewelry which will render a wonderful present for any woman or perhaps lady. You might mix together thoughtful combinations to create an unique present which nobody else has ever taking into account them, plus they could think of you each time the couple put in a brand new bead or perhaps charms. In general, if or when you adore unique jewelry, you will probably possess a great time looking for Pandora jewelry in Connecticut.In reality, there can be no definition for pandora bracciale. The kind of Jewelry consists of not one but two aspects, an individual is the jewelry of Pandora design the different is the jewelry of Pandora brand. Choosing the Pandora drops which you are going to adorn your band with is by far the following step. These charms come in different shapes, dimensions, and additionally features, so you can expect to definitely find anything that demonstrates the character. Today, you allow the creativity play it is game. In fact, you may select from over 600 Pandora bead designs, and also the number regularly becomes. You can update your bracelets with different Pandora beads when you like to. Charms bracelet clips are really the little components that connect the individual threads of the part together. Whenever creating your very own piece of jewelry, you have the opportunity to to choose the sorts of videos you want. In many instances,you need to have a couple of among these that is designed to fit during the a couple threaded accessories in the band itself. When there are a few options to decide on, make in your mind that a lot of are easy to open and also utilize. Today which she's really developed up, an appeal band would be that a tasteful and breathtaking gift to provide the child that has landed this girl primary massive brand new job or perhaps is making prepared for marriage. Host a special brunch or perhaps mealtime in her honor plus surprise this girl with the present. It'll be a fabulous reminder to her since she releases into her brand new job. Come with other relationships, most especially past on to a wedding. Assume this girl pleasure as she sports this girl charm bracelet along the aisle, embellished with charms that her family possess lovingly and also fastidiously picked. pandora charms online cheap are actually crafted from gold, metallic, or perhaps a mix of simultaneously important substances. Shop on the internet for every thing you ought to create your very own Pandora appeal bracelet or perhaps to have if you are a gift to a person else; begin with the band, one or two charms An additional elegance or perhaps amulet which has been applied by Catholic royalty is the Saint Benedict Medal. The amulet includes the famous Vade Vintage Satana formula and is intended to ward off Satan. ----- Tiffany jewelry cheap Tiffany and co rings cheap Australia -- View this message in context: http://freebsd.1045724.n5.nabble.com/pandora-charms-online-sale-tp5846613.html Sent from the freebsd-ports-bugs mailing list archive at Nabble.com. From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 06:50:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 10ADA343 for ; Wed, 25 Sep 2013 06:50:01 +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 E14762BBB for ; Wed, 25 Sep 2013 06:50: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 r8P6o0rQ020394 for ; Wed, 25 Sep 2013 06:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8P6o0AY020393; Wed, 25 Sep 2013 06:50:00 GMT (envelope-from gnats) Resent-Date: Wed, 25 Sep 2013 06:50:00 GMT Resent-Message-Id: <201309250650.r8P6o0AY020393@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, "O. Hartmann" Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id A557B12D for ; Wed, 25 Sep 2013 06:42:45 +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 91F192B7E for ; Wed, 25 Sep 2013 06:42:45 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8P6gjGQ095407 for ; Wed, 25 Sep 2013 06:42:45 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8P6gjWC095352; Wed, 25 Sep 2013 06:42:45 GMT (envelope-from nobody) Message-Id: <201309250642.r8P6gjWC095352@oldred.freebsd.org> Date: Wed, 25 Sep 2013 06:42:45 GMT From: "O. Hartmann" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182366: graphics/opencv: window_QT.cpp:316:5: error: use of undeclared identifier 'usleep' 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: Wed, 25 Sep 2013 06:50:01 -0000 >Number: 182366 >Category: ports >Synopsis: graphics/opencv: window_QT.cpp:316:5: error: use of undeclared identifier 'usleep' >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Sep 25 06:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: O. Hartmann >Release: FreeBSD 10.0-CURRENT/amd64 >Organization: FU Berlin >Environment: FreeBSD 10.0-ALPHA2 #0 r255817: Mon Sep 23 18:35:39 CEST 2013 amd64 >Description: [...] 12 warnings generated. [ 1%] Building CXX object modules/highgui/CMakeFiles/opencv_highgui.dir/src/loadsave.o [ 2%] Building CXX object modules/highgui/CMakeFiles/opencv_highgui.dir/src/precomp.o [ 2%] Building CXX object modules/highgui/CMakeFiles/opencv_highgui.dir/src/utils.o [ 2%] Building CXX object modules/highgui/CMakeFiles/opencv_highgui.dir/src/window.o [ 2%] Building CXX object modules/highgui/CMakeFiles/opencv_highgui.dir/src/window_QT.o /usr/ports/graphics/opencv/work/OpenCV-2.3.1/modules/highgui/src/window_QT.cpp:316:5: error: use of undeclared identifier 'usleep' usleep(1000); ^ 1 error generated. *** Error code 1 >How-To-Repeat: Try compiling graphics/opencv >Fix: Attached, you'll find a patch provided by T. Nackos fixing the problem (at least for me). Patch attached with submission follows: --- modules/highgui/src/window_QT.cpp.orig 1970-01-01 01:00:00.000000000 +0100 +++ modules/highgui/src/window_QT.cpp 2013-09-25 08:09:15.000000000 +0200 @@ -0,0 +1,3021 @@ +//IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. + +// By downloading, copying, installing or using the software you agree to this license. +// If you do not agree to this license, do not download, install, +// copy or use the software. + + +// License Agreement +// For Open Source Computer Vision Library + +//Copyright (C) 2000-2008, Intel Corporation, all rights reserved. +//Copyright (C) 2008-2010, Willow Garage Inc., all rights reserved. +//Third party copyrights are property of their respective owners. + +//Redistribution and use in source and binary forms, with or without modification, +//are permitted provided that the following conditions are met: + +// * Redistribution's of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. + +// * Redistribution's in binary form must reproduce the above copyright notice, +// this list of conditions and the following disclaimer in the documentation +// and/or other materials provided with the distribution. + +// * The name of the copyright holders may not be used to endorse or promote products +// derived from this software without specific prior written permission. + +//This software is provided by the copyright holders and contributors "as is" and +//any express or implied warranties, including, but not limited to, the implied +//warranties of merchantability and fitness for a particular purpose are disclaimed. +//In no event shall the Intel Corporation or contributors be liable for any direct, +//indirect, incidental, special, exemplary, or consequential damages +//(including, but not limited to, procurement of substitute goods or services; +//loss of use, data, or profits; or business interruption) however caused +//and on any theory of liability, whether in contract, strict liability, +//or tort (including negligence or otherwise) arising in any way out of +//the use of this software, even if advised of the possibility of such damage. + +//--------------------Google Code 2010 -- Yannick Verdie--------------------// + + +#if defined(HAVE_QT) + +#include +#include +#ifdef _WIN32 +#include +#define usleep Sleep +#else +#include +#endif + +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif + +//Static and global first +static GuiReceiver *guiMainThread = NULL; +static int parameterSystemC = 1; +static char* parameterSystemV[] = {(char*)""}; +static bool multiThreads = false; +static int last_key = -1; +QWaitCondition key_pressed; +QMutex mutexKey; +static const unsigned int threshold_zoom_img_region = 30; +//the minimum zoom value to start displaying the values in the grid +//that is also the number of pixel per grid + +static CvWinProperties* global_control_panel = NULL; +//end static and global + + + +CV_IMPL CvFont cvFontQt(const char* nameFont, int pointSize,CvScalar color,int weight,int style, int spacing) +{ + + /* + //nameFont <- only Qt + //CvScalar color <- only Qt (blue_component, green_component, red\_component[, alpha_component]) + int font_face;//<- style in Qt + const int* ascii; + const int* greek; + const int* cyrillic; + float hscale, vscale; + float shear; + int thickness;//<- weight in Qt + float dx;//spacing letter in Qt (0 default) in pixel + int line_type;//<- pointSize in Qt + */ + CvFont f = {nameFont,color,style,NULL,NULL,NULL,0,0,0,weight,spacing,pointSize}; + return f; +} + + + +CV_IMPL void cvAddText(const CvArr* img, const char* text, CvPoint org, CvFont* font) +{ + + if (!guiMainThread) + CV_Error( CV_StsNullPtr, "NULL guiReceiver (please create a window)" ); + + QMetaObject::invokeMethod(guiMainThread, + "putText", + Qt::AutoConnection, + Q_ARG(void*, (void*) img), + Q_ARG(QString,QString(text)), + Q_ARG(QPoint, QPoint(org.x,org.y)), + Q_ARG(void*,(void*) font)); +} + +double cvGetRatioWindow_QT(const char* name) +{ + + if (!guiMainThread) + CV_Error( CV_StsNullPtr, "NULL guiReceiver (please create a window)" ); + + double result = -1; + QMetaObject::invokeMethod(guiMainThread, + "getRatioWindow", + //Qt::DirectConnection, + Qt::AutoConnection, + Q_RETURN_ARG(double, result), + Q_ARG(QString, QString(name))); + return result; +} + +void cvSetRatioWindow_QT(const char* name,double prop_value) +{ + + if (!guiMainThread) + CV_Error( CV_StsNullPtr, "NULL guiReceiver (please create a window)" ); + + QMetaObject::invokeMethod(guiMainThread, + "setRatioWindow", + Qt::AutoConnection, + Q_ARG(QString, QString(name)), + Q_ARG(double, prop_value)); +} + +double cvGetPropWindow_QT(const char* name) +{ + + if (!guiMainThread) + CV_Error( CV_StsNullPtr, "NULL guiReceiver (please create a window)" ); + + double result = -1; + QMetaObject::invokeMethod(guiMainThread, + "getPropWindow", + //Qt::DirectConnection, + Qt::AutoConnection, + Q_RETURN_ARG(double, result), + Q_ARG(QString, QString(name))); + return result; +} + +void cvSetPropWindow_QT(const char* name,double prop_value) +{ + + if (!guiMainThread) + CV_Error( CV_StsNullPtr, "NULL guiReceiver (please create a window)" ); + + QMetaObject::invokeMethod(guiMainThread, + "setPropWindow", + Qt::AutoConnection, + Q_ARG(QString, QString(name)), + Q_ARG(double, prop_value)); +} + +void cvSetModeWindow_QT(const char* name, double prop_value) +{ + + if (!guiMainThread) + CV_Error( CV_StsNullPtr, "NULL guiReceiver (please create a window)" ); + + QMetaObject::invokeMethod(guiMainThread, + "toggleFullScreen", + Qt::AutoConnection, + Q_ARG(QString, QString(name)), + Q_ARG(double, prop_value)); +} + +double cvGetModeWindow_QT(const char* name) +{ + if (!guiMainThread) + CV_Error( CV_StsNullPtr, "NULL guiReceiver (please create a window)" ); + + double result = -1; + + QMetaObject::invokeMethod(guiMainThread, + "isFullScreen", + Qt::AutoConnection, + Q_RETURN_ARG(double, result), + Q_ARG(QString, QString(name))); + return result; +} + +CV_IMPL void cvDisplayOverlay(const char* name, const char* text, int delayms) +{ + if (!guiMainThread) + CV_Error( CV_StsNullPtr, "NULL guiReceiver (please create a window)" ); + + QMetaObject::invokeMethod(guiMainThread, + "displayInfo", + Qt::AutoConnection, + //Qt::DirectConnection, + Q_ARG(QString, QString(name)), + Q_ARG(QString, QString(text)), + Q_ARG(int, delayms)); + +} + +CV_IMPL void cvSaveWindowParameters(const char* name) +{ + if (!guiMainThread) + CV_Error( CV_StsNullPtr, "NULL guiReceiver (please create a window)" ); + + QMetaObject::invokeMethod(guiMainThread, + "saveWindowParameters", + Qt::AutoConnection, + Q_ARG(QString, QString(name))); +} + +CV_IMPL void cvLoadWindowParameters(const char* name) +{ + if (!guiMainThread) + CV_Error( CV_StsNullPtr, "NULL guiReceiver (please create a window)" ); + + QMetaObject::invokeMethod(guiMainThread, + "loadWindowParameters", + Qt::AutoConnection, + Q_ARG(QString, QString(name))); +} + +CV_IMPL void cvDisplayStatusBar(const char* name, const char* text, int delayms) +{ + if (!guiMainThread) + CV_Error( CV_StsNullPtr, "NULL guiReceiver (please create a window)" ); + + QMetaObject::invokeMethod(guiMainThread, + "displayStatusBar", + Qt::AutoConnection, + //Qt::DirectConnection, + Q_ARG(QString, QString(name)), + Q_ARG(QString, QString(text)), + Q_ARG(int, delayms)); +} + + +CV_IMPL int cvWaitKey( int arg ) +{ + + int result = -1; + + if (!guiMainThread) + return result; + + unsigned long delayms;//in milliseconds + if (arg<=0) + delayms = ULONG_MAX; + else + delayms = arg; + + if (multiThreads) + { + mutexKey.lock(); + if(key_pressed.wait(&mutexKey,delayms))//false if timeout + { + result = last_key; + } + last_key = -1; + mutexKey.unlock(); + + }else{ + //cannot use wait here because events will not be distributed before processEvents (the main eventLoop is broken) + //so I create a Thread for the QTimer + + if (arg>0) + guiMainThread->timer->start(arg); + + //QMutex dummy; + + while(!guiMainThread->_bTimeOut) + { + qApp->processEvents(QEventLoop::AllEvents); + + + if (!guiMainThread)//when all the windows are deleted + return result; + + mutexKey.lock(); + if (last_key != -1) + { + result = last_key; + last_key = -1; + guiMainThread->timer->stop(); + //printf("keypressed\n"); + } + mutexKey.unlock(); + + if (result!=-1) + { + break; + } + else + { + /* + * //will not work, I broke the event loop !!!! + dummy.lock(); + QWaitCondition waitCondition; + waitCondition.wait(&dummy, 2); + */ + + //to decrease CPU usage + //sleep 1 millisecond +#if defined WIN32 || defined _WIN32 || defined WIN64 || defined _WIN64 + Sleep(1); +#else + usleep(1000); +#endif + + } + } + guiMainThread->_bTimeOut = false; + + } + + return result; +} + +//Yannick Verdie +//This function is experimental and some functions (such as cvSet/getWindowProperty will not work) +//We recommend not using this function for now +CV_IMPL int cvStartLoop(int (*pt2Func)(int argc, char *argv[]), int argc, char* argv[]) +{ + multiThreads = true; + QFuture future = QtConcurrent::run(pt2Func,argc,argv); + return guiMainThread->start(); +} + +CV_IMPL void cvStopLoop() +{ + + qApp->exit(); +} + + +CvWindow* icvFindWindowByName( const char* arg ) +{ + + QPointer window; + + if( !arg ) + CV_Error( CV_StsNullPtr, "NULL name string" ); + + QString name(arg); + CvWindow* w; + CvWinModel* temp; + + //This is not a very clean way to do the stuff. Indeed, QAction automatically generate toolTil (QLabel) + //that can be grabbed here and crash the code at 'w->param_name==name'. + foreach (QWidget *widget, QApplication::topLevelWidgets()) + { + + if (widget->isWindow() && !widget->parentWidget ())//is a window without parent + { + temp = (CvWinModel*) widget; + if (temp->type == type_CvWindow) + { + w = (CvWindow*) temp; + if (name.compare(w->param_name)==0) + { + window = w; + break; + } + } + } + } + + + return window; +} + + +CvBar* icvFindBarbyName(QBoxLayout* layout, QString name_bar, typeBar type) +{ + if (!layout) + return NULL; + + CvBar* t; + + int stop_index = layout->layout()->count(); + + for (int i = 0; i < stop_index; ++i) + { + t = (CvBar*) layout->layout()->itemAt(i); + if (t->type == type && t->name_bar == name_bar) + return t; + } + + return NULL; +} + +CvTrackbar* icvFindTrackbarByName( const char* name_trackbar, const char* name_window, QBoxLayout* layout = NULL ) +{ + QString nameQt(name_trackbar); + CvBar* result = NULL; + + if (!name_window && global_control_panel)//window name is null and we have a control panel + layout = global_control_panel->myLayout; + + if (!layout) + { + QPointer w = icvFindWindowByName( name_window ); + + if( !w ) + CV_Error( CV_StsNullPtr, "NULL window handler" ); + + if ( w->param_gui_mode == CV_GUI_NORMAL) + return (CvTrackbar*) icvFindBarbyName( w->myBarLayout, nameQt, type_CvTrackbar); + + if ( w->param_gui_mode == CV_GUI_EXPANDED) + { + result = icvFindBarbyName( w->myBarLayout, nameQt, type_CvTrackbar); + + if (result) + return (CvTrackbar*) result; + + return (CvTrackbar*) icvFindBarbyName(global_control_panel->myLayout, nameQt, type_CvTrackbar); + } + + return NULL; + }else + //layout was specified + { + return (CvTrackbar*) icvFindBarbyName( layout, nameQt, type_CvTrackbar); + } +} + +CvButtonbar* icvFindButtonbarByName( const char* button_name,QBoxLayout* layout) +{ + QString nameQt(button_name); + return (CvButtonbar*) icvFindBarbyName( layout, nameQt, type_CvButtonbar); +} + +int icvInitSystem(int *c, char** v) +{ + //"For any GUI application using Qt, there is precisely one QApplication object" + if(!QApplication::instance()) + { + new QApplication(*c,v); + + qDebug()<<"init done"; + +#if defined( HAVE_QT_OPENGL ) + qDebug()<<"opengl support available"; +#endif + } + + return 0; +} + +CV_IMPL int cvInitSystem( int, char** ) +{ + icvInitSystem(¶meterSystemC, parameterSystemV); + return 0; +} + + +CV_IMPL int cvNamedWindow( const char* name, int flags ) +{ + + if (!guiMainThread) + guiMainThread = new GuiReceiver; + + if (multiThreads) + QMetaObject::invokeMethod(guiMainThread, + "createWindow", + Qt::BlockingQueuedConnection, + Q_ARG(QString, QString(name)), + Q_ARG(int, flags)); + else + guiMainThread->createWindow(QString(name),flags); + + return 1;//Dummy value +} + +CV_IMPL void cvDestroyWindow( const char* name ) +{ + if (!guiMainThread) + CV_Error( CV_StsNullPtr, "NULL guiReceiver (please create a window)" ); + + QMetaObject::invokeMethod(guiMainThread, + "destroyWindow", + //Qt::BlockingQueuedConnection, + Qt::AutoConnection, + Q_ARG(QString, QString(name)) + ); +} + + + +CV_IMPL void cvDestroyAllWindows(void) +{ + if (!guiMainThread) + CV_Error( CV_StsNullPtr, "NULL guiReceiver (please create a window)" ); + + QMetaObject::invokeMethod(guiMainThread, + "destroyAllWindow", + //Qt::BlockingQueuedConnection, + Qt::AutoConnection + ); +} + +CV_IMPL void* cvGetWindowHandle( const char* name ) +{ + if( !name ) + CV_Error( CV_StsNullPtr, "NULL name string" ); + + return (void*) icvFindWindowByName( name ); +} + +CV_IMPL const char* cvGetWindowName( void* window_handle ) +{ + + if( !window_handle ) + CV_Error( CV_StsNullPtr, "NULL window handler" ); + + return ((CvWindow*)window_handle)->windowTitle().toLatin1().data(); +} + +CV_IMPL void cvMoveWindow( const char* name, int x, int y ) +{ + + if (!guiMainThread) + CV_Error( CV_StsNullPtr, "NULL guiReceiver (please create a window)" ); + + QMetaObject::invokeMethod(guiMainThread, + "moveWindow", + //Qt::BlockingQueuedConnection, + Qt::AutoConnection, + Q_ARG(QString, QString(name)), + Q_ARG(int, x), + Q_ARG(int, y) + ); + +} + +CV_IMPL void cvResizeWindow(const char* name, int width, int height ) +{ + + if (!guiMainThread) + CV_Error( CV_StsNullPtr, "NULL guiReceiver (please create a window)" ); + + QMetaObject::invokeMethod(guiMainThread, + "resizeWindow", + //Qt::BlockingQueuedConnection, + Qt::AutoConnection, + Q_ARG(QString, QString(name)), + Q_ARG(int, width), + Q_ARG(int, height) + ); + +} + +CV_IMPL int cvCreateTrackbar2( const char* name_bar, const char* window_name, int* val, int count, CvTrackbarCallback2 on_notify, void* userdata ) +{ + if (!guiMainThread) + CV_Error( CV_StsNullPtr, "NULL guiReceiver (please create a window)" ); + + QMetaObject::invokeMethod(guiMainThread, + "addSlider2", + Qt::AutoConnection, + Q_ARG(QString, QString(name_bar)), + Q_ARG(QString, QString(window_name)), + Q_ARG(void*, (void*)val), + Q_ARG(int, count), + Q_ARG(void*, (void*)on_notify), + Q_ARG(void*, (void*)userdata) + ); + + return 1;//dummy value +} + +CV_IMPL int cvStartWindowThread() +{ + return 0; +} + +CV_IMPL int cvCreateTrackbar( const char* name_bar, const char* window_name, int* value, int count, CvTrackbarCallback on_change) +{ + if (!guiMainThread) + CV_Error( CV_StsNullPtr, "NULL guiReceiver (please create a window)" ); + + QMetaObject::invokeMethod(guiMainThread, + "addSlider", + Qt::AutoConnection, + Q_ARG(QString, QString(name_bar)), + Q_ARG(QString, QString(window_name)), + Q_ARG(void*, (void*)value), + Q_ARG(int, count), + Q_ARG(void*, (void*)on_change) + ); + + return 1;//dummy value +} + + + +CV_IMPL int cvCreateButton(const char* button_name,CvButtonCallback on_change, void* userdata , int button_type, int initial_button_state ) +{ + + if (!guiMainThread) + CV_Error( CV_StsNullPtr, "NULL guiReceiver (please create a window)" ); + + if (initial_button_state < 0 || initial_button_state > 1) + return 0; + + QMetaObject::invokeMethod(guiMainThread, + "addButton", + Qt::AutoConnection, + Q_ARG(QString, QString(button_name)), + Q_ARG(int, button_type), + Q_ARG(int, initial_button_state), + Q_ARG(void*, (void*)on_change), + Q_ARG(void*, userdata) + ); + + return 1;//dummy value +} + +CV_IMPL void cvCreateOpenGLCallback( const char* window_name, CvOpenGLCallback callbackOpenGL, void* userdata, double angle, double zmin, double zmax) +{ + if (!guiMainThread) + CV_Error( CV_StsNullPtr, "NULL guiReceiver (please create a window)" ); + + QMetaObject::invokeMethod(guiMainThread, + "setOpenGLCallback", + Qt::AutoConnection, + Q_ARG(QString, QString(window_name)), + Q_ARG(void*, (void*)callbackOpenGL), + Q_ARG(void*, userdata), + Q_ARG(double, angle), + Q_ARG(double, zmin), + Q_ARG(double, zmax) + ); +} + +CV_IMPL int cvGetTrackbarPos( const char* name_bar, const char* window_name ) +{ + int result = -1; + + QPointer t = icvFindTrackbarByName( name_bar, window_name ); + + if (t) + result = t->slider->value(); + + return result; +} + +CV_IMPL void cvSetTrackbarPos( const char* name_bar, const char* window_name, int pos ) +{ + + QPointer t = icvFindTrackbarByName( name_bar, window_name ); + + if (t) + t->slider->setValue(pos); + +} + +/* assign callback for mouse events */ +CV_IMPL void cvSetMouseCallback( const char* window_name, CvMouseCallback on_mouse,void* param ) +{ + QPointer w = icvFindWindowByName( window_name ); + + if (!w) + CV_Error(CV_StsNullPtr, "NULL window handler" ); + + w->setMouseCallBack(on_mouse, param); + +} + +CV_IMPL void cvShowImage( const char* name, const CvArr* arr ) +{ + + if (!guiMainThread) + guiMainThread = new GuiReceiver; + + QMetaObject::invokeMethod(guiMainThread, + "showImage", + //Qt::BlockingQueuedConnection, + Qt::DirectConnection, + Q_ARG(QString, QString(name)), + Q_ARG(void*, (void*)arr) + ); +} + + +//----------OBJECT---------------- + +GuiReceiver::GuiReceiver() : _bTimeOut(false), nb_windows(0) +{ + doesExternalQAppExist = (QApplication::instance() != 0); + icvInitSystem(¶meterSystemC, parameterSystemV); + + timer = new QTimer; + QObject::connect(timer, SIGNAL(timeout()), this, SLOT(timeOut())); + timer->setSingleShot(true); +} + + +void GuiReceiver::isLastWindow() +{ + if (--nb_windows <= 0) + { + delete guiMainThread;//delete global_control_panel too + guiMainThread = NULL; + if(!doesExternalQAppExist) + { + qApp->quit(); + } + } +} + +GuiReceiver::~GuiReceiver() +{ + + if (global_control_panel) + { + delete global_control_panel; + global_control_panel = NULL; + } + + delete timer; +} + +void GuiReceiver::putText(void* arr, QString text, QPoint org, void* arg2) +{ + CV_Assert(arr); + + CvMat * mat, stub; + int origin=0; + + if( CV_IS_IMAGE_HDR( arr )) + origin = ((IplImage*)arr)->origin; + + mat = cvGetMat(arr, &stub); + + int nbChannelOriginImage = cvGetElemType(mat); + + + if (nbChannelOriginImage!=CV_8UC3) return;//for now, font works only with 8UC3 + + //CvMat* image2Draw_mat = cvCreateMat( mat->rows, mat->cols, CV_8UC3 ); + QImage qimg = QImage(mat->data.ptr, mat->cols,mat->rows, mat->step,QImage::Format_RGB888); + + + //IplImage* img = (IplImage*)arg1; + + //for now, only support QImage::Format_RGB888 + //if (img->depth !=IPL_DEPTH_8U || img->nChannels != 3) + // return; + + CvFont* font = (CvFont*)arg2; + + //QImage qimg((uchar*) img->imageData, img->width, img->height,QImage::Format_RGB888); + QPainter qp(&qimg); + if (font) + { + QFont f(font->nameFont, font->line_type/*PointSize*/, font->thickness/*weight*/); + f.setStyle((QFont::Style)font->font_face/*style*/); + f.setLetterSpacing ( QFont::AbsoluteSpacing, font->dx/*spacing*/ ); + //cvScalar(blue_component, green_component, red\_component[, alpha_component]) + //Qt map non-transparent to 0xFF and transparent to 0 + //OpenCV scalar is the reverse, so 255-font->color.val[3] + qp.setPen(QColor(font->color.val[2],font->color.val[1],font->color.val[0],255-font->color.val[3])); + qp.setFont ( f ); + } + qp.drawText (org, text ); + qp.end(); + + //cvReleaseMat(&image2Draw_mat); +} + +void GuiReceiver::saveWindowParameters(QString name) +{ + QPointer w = icvFindWindowByName( name.toLatin1().data() ); + + if (w) + w->writeSettings(); +} + +void GuiReceiver::loadWindowParameters(QString name) +{ + QPointer w = icvFindWindowByName( name.toLatin1().data() ); + + if (w) + w->readSettings(); +} + +double GuiReceiver::getRatioWindow(QString name) +{ + QPointer w = icvFindWindowByName( name.toLatin1().data() ); + + + if (!w) + return -1; + + return (double)w->getView()->getRatio(); +} + +void GuiReceiver::setRatioWindow(QString name, double arg2 ) +{ + QPointer w = icvFindWindowByName( name.toLatin1().data() ); + + if (!w) + return; + + int flags = (int) arg2; + + if (w->getView()->getRatio() == flags)//nothing to do + return; + + //if valid flags + if (flags == CV_WINDOW_FREERATIO || flags == CV_WINDOW_KEEPRATIO) + w->getView()->setRatio(flags); + +} + +double GuiReceiver::getPropWindow(QString name) +{ + QPointer w = icvFindWindowByName( name.toLatin1().data() ); + + + if (!w) + return -1; + + return (double)w->param_flags; +} + +void GuiReceiver::setPropWindow(QString name, double arg2 ) +{ + QPointer w = icvFindWindowByName( name.toLatin1().data() ); + + if (!w) + return; + + int flags = (int) arg2; + + if (w->param_flags == flags)//nothing to do + return; + + + switch(flags) + { + case CV_WINDOW_NORMAL: + w->myGlobalLayout->setSizeConstraint(QLayout::SetMinAndMaxSize); + w->param_flags = flags; + + break; + case CV_WINDOW_AUTOSIZE: + w->myGlobalLayout->setSizeConstraint(QLayout::SetFixedSize); + w->param_flags = flags; + + break; + default:; + } +} + +double GuiReceiver::isFullScreen(QString name) +{ + QPointer w = icvFindWindowByName( name.toLatin1().data() ); + + if (!w) + return -1; + + if (w->isFullScreen()) + return CV_WINDOW_FULLSCREEN; + else + return CV_WINDOW_NORMAL; +} + +//accept CV_WINDOW_NORMAL or CV_WINDOW_FULLSCREEN +void GuiReceiver::toggleFullScreen(QString name, double flags ) +{ + QPointer w = icvFindWindowByName( name.toLatin1().data() ); + + if (!w) + return; + + if (w->isFullScreen() && flags == CV_WINDOW_NORMAL) + { + w->showTools(); + w->showNormal(); + return; + } + + if (!w->isFullScreen() && flags == CV_WINDOW_FULLSCREEN) + { + w->hideTools(); + w->showFullScreen(); + return; + } + +} + +void GuiReceiver::createWindow( QString name, int flags ) +{ + if (!qApp) + CV_Error(CV_StsNullPtr, "NULL session handler" ); + + // Check the name in the storage + if( icvFindWindowByName( name.toLatin1().data() )) + { + return; + } + + //QPointer w1 = + nb_windows++; + new CvWindow(name, flags); +} + +void GuiReceiver::timeOut() +{ + _bTimeOut = true; +} + +void GuiReceiver::displayInfo( QString name, QString text, int delayms ) +{ + QPointer w = icvFindWindowByName( name.toLatin1().data() ); + + if (w && delayms > 0) + w->displayInfo(text,delayms); +} + +void GuiReceiver::displayStatusBar( QString name, QString text, int delayms ) +{ + QPointer w = icvFindWindowByName( name.toLatin1().data() ); + + if (w && delayms > 0) + if (w->myStatusBar)//if statusbar was created + w->displayStatusBar(text,delayms); +} + +void GuiReceiver::showImage(QString name, void* arr) +{ + QPointer w = icvFindWindowByName( name.toLatin1().data() ); + + if (!w)//as observed in the previous implementation (W32, GTK or Carbon), create a new window is the pointer returned is null + { + cvNamedWindow( name.toLatin1().data() ); + w = icvFindWindowByName( name.toLatin1().data() ); + } + + if( w && arr ) + { + w->updateImage(arr); + + if (w->isHidden()) + w->show(); + } + else + { + CV_Error(CV_StsNullPtr, "Do nothing (Window or Image NULL)"); + } +} + +void GuiReceiver::destroyWindow(QString name) +{ + QPointer w = icvFindWindowByName( name.toLatin1().data() ); + + if (w) + { + w->close(); + //in not-multiThreads mode, looks like the window is hidden but not deleted + //so I do it manually + //otherwise QApplication do it for me if the exec command was executed (in multiThread mode) + if (!multiThreads) + delete w; + } +} + +void GuiReceiver::destroyAllWindow() +{ + if (!qApp) + CV_Error(CV_StsNullPtr, "NULL session handler" ); + + if (multiThreads) + { + // WARNING: this could even close windows from an external parent app + //#TODO check externalQAppExists and in case it does, close windows carefully, + // i.e. apply the className-check from below... + qApp->closeAllWindows(); + } + else + { + bool isWidgetDeleted = true; + while(isWidgetDeleted) + { + isWidgetDeleted = false; + QWidgetList list = QApplication::topLevelWidgets(); + for (int i = 0; i < list.count(); i++) + { + QObject *obj = list.at(i); + if (obj->metaObject ()->className () == QString("CvWindow")) + { + delete obj; + isWidgetDeleted = true; + break; + } + } + } + } + +} + +void GuiReceiver::setOpenGLCallback(QString window_name, void* callbackOpenGL, void* userdata, double angle, double zmin, double zmax) +{ + QPointer w = icvFindWindowByName( window_name.toLatin1().data() ); + + if (w && callbackOpenGL) + w->setOpenGLCallback((CvOpenGLCallback) callbackOpenGL, userdata,angle,zmin,zmax); +} + +void GuiReceiver::moveWindow(QString name, int x, int y) +{ + QPointer w = icvFindWindowByName( name.toLatin1().data() ); + + if (w) + w->move(x,y); + +} + +void GuiReceiver::resizeWindow(QString name, int width, int height) +{ + QPointer w = icvFindWindowByName( name.toLatin1().data() ); + + if (w) + { + w->showNormal(); + w->resize(width, height); + } +} + +void GuiReceiver::enablePropertiesButtonEachWindow() +{ + CvWindow* w; + CvWinModel* temp; + + //For each window, enable window property button + foreach (QWidget *widget, QApplication::topLevelWidgets()) + { + + if (widget->isWindow() && !widget->parentWidget ())//is a window without parent + { + temp = (CvWinModel*) widget; + if (temp->type == type_CvWindow) + { + w = (CvWindow*) widget; + //active window properties button + w->vect_QActions[9]->setDisabled(false); + } + } + } +} + +void GuiReceiver::addButton(QString button_name, int button_type, int initial_button_state , void* on_change, void* userdata) +{ + + if (!global_control_panel) + return; + QPointer b;// = icvFindButtonbarByName( button_name.toLatin1().data(), global_control_panel->myLayout ); + + //if (b)//button with this name already exist + // return; + + + if (global_control_panel->myLayout->count() == 0)//if that is the first button attach to the control panel, create a new button bar + { + + b = CvWindow::createButtonbar(button_name);//the bar has the name of the first button attached to it + enablePropertiesButtonEachWindow(); + + }else{ + CvBar* lastbar = (CvBar*) global_control_panel->myLayout->itemAt(global_control_panel->myLayout->count()-1); + + if (lastbar->type == type_CvTrackbar)//if last bar is a trackbar, create a new buttonbar, else, attach to the current bar + b = CvWindow::createButtonbar(button_name);//the bar has the name of the first button attached to it + else + b = (CvButtonbar*) lastbar; + + } + + b->addButton( button_name,(CvButtonCallback) on_change, userdata, button_type, initial_button_state); +} + +void GuiReceiver::addSlider2(QString bar_name, QString window_name, void* value, int count, void* on_change, void *userdata) +{ + QBoxLayout *layout = NULL; + QPointer w; + if (window_name != "") + { + w = icvFindWindowByName( window_name.toLatin1().data() ); + + if (!w) + return; + }else{ + if (global_control_panel) + layout = global_control_panel->myLayout; + } + + QPointer t = icvFindTrackbarByName( bar_name.toLatin1().data() , window_name.toLatin1().data(), layout ); + + if (t)//trackbar exists + return; + + if (!value) + CV_Error(CV_StsNullPtr, "NULL value pointer" ); + + if (count<= 0)//count is the max value of the slider, so must be bigger than 0 + CV_Error(CV_StsNullPtr, "Max value of the slider must be bigger than 0" ); + + CvWindow::addSlider2(w,bar_name,(int*)value,count,(CvTrackbarCallback2) on_change, userdata); +} + +void GuiReceiver::addSlider(QString bar_name, QString window_name, void* value, int count, void* on_change) +{ + QBoxLayout *layout = NULL; + QPointer w; + if (window_name != "") + { + w = icvFindWindowByName( window_name.toLatin1().data() ); + + if (!w) + return; + }else{ + if (global_control_panel) + layout = global_control_panel->myLayout; + } + + QPointer t = icvFindTrackbarByName( bar_name.toLatin1().data() , window_name.toLatin1().data(), layout ); + + if (t)//trackbar exists + return; + + if (!value) + CV_Error(CV_StsNullPtr, "NULL value pointer" ); + + if (count<= 0)//count is the max value of the slider, so must be bigger than 0 + CV_Error(CV_StsNullPtr, "Max value of the slider must be bigger than 0" ); + + CvWindow::addSlider(w,bar_name,(int*)value,count,(CvTrackbarCallback) on_change); +} + +int GuiReceiver::start() +{ + return qApp->exec(); +} + +CvTrackbar::CvTrackbar(CvWindow* arg, QString name, int* value, int count, CvTrackbarCallback2 on_change, void* data ) +{ + callback = NULL; + callback2 = on_change; + userdata = data; + + construc_trackbar(arg,name, value, count); +} + +CvTrackbar::CvTrackbar(CvWindow* arg, QString name, int* value, int count, CvTrackbarCallback on_change ) +{ + callback = on_change; + callback2 = NULL; + userdata = NULL; + + construc_trackbar(arg,name, value, count); +} + +void CvTrackbar::construc_trackbar(CvWindow* arg, QString name, int* value, int count) +{ + type=type_CvTrackbar; + myparent = arg; + name_bar = name; + setObjectName(name_bar); + dataSlider = value; + + slider = new QSlider(Qt::Horizontal); + slider->setFocusPolicy(Qt::StrongFocus); + slider->setMinimum(0); + slider->setMaximum(count); + slider->setPageStep(5); + slider->setValue(*value); + slider->setTickPosition(QSlider::TicksBelow); + + + //Change style of the Slider + //slider->setStyleSheet(str_Trackbar_css); + + QFile qss(":/stylesheet-trackbar"); + if (qss.open(QFile::ReadOnly)) + { + slider->setStyleSheet(QLatin1String(qss.readAll())); + qss.close(); + } + + + //this next line does not work if we change the style with a stylesheet, why ? (bug in QT ?) + //slider->setTickPosition(QSlider::TicksBelow); + label = new QPushButton; + label->setFlat(true); + setLabel(slider->value()); + + + QObject::connect( slider, SIGNAL( valueChanged( int ) ),this, SLOT( update( int ) ) ); + + QObject::connect( label, SIGNAL( clicked() ),this, SLOT( createDialog() )); + + //label->setStyleSheet("QPushButton:disabled {color: black}"); + + addWidget(label,Qt::AlignLeft);//name + value + addWidget(slider,Qt::AlignCenter);//slider +} + +void CvTrackbar::createDialog() +{ + + bool ok= false; + + //crash if I access the values directly and give them to QInputDialog, so do a copy first. + int value = slider->value(); + int step = slider->singleStep(); + int min = slider->minimum(); + int max = slider->maximum(); + + int i = +#if QT_VERSION >= 0x040500 + QInputDialog::getInt +#else + QInputDialog::getInteger +#endif + (this->parentWidget(), + tr("Slider %1").arg(name_bar), + tr("New value:"), + value, + min, + max, + step, + &ok); + + if (ok) + slider->setValue(i); + +} + +void CvTrackbar::update(int myvalue) +{ + setLabel(myvalue); + + *dataSlider = myvalue; + if (callback) + { + callback(myvalue); + return; + } + + if (callback2) + { + callback2(myvalue,userdata); + return; + } +} + +void CvTrackbar::setLabel(int myvalue) +{ + QString nameNormalized = name_bar.leftJustified( 10, ' ', true ); + QString valueMaximum = QString("%1").arg(slider->maximum()); + QString str = QString("%1 (%2/%3)").arg(nameNormalized).arg(myvalue,valueMaximum.length(),10,QChar('0')).arg(valueMaximum); + label->setText(str); +} + +CvTrackbar::~CvTrackbar() +{ + delete slider; + delete label; +} + + + + +//here CvButtonbar class +CvButtonbar::CvButtonbar(QWidget* arg, QString arg2) +{ + type=type_CvButtonbar; + myparent = arg; + name_bar = arg2; + setObjectName(name_bar); + + group_button = new QButtonGroup; + + /* + label = new QLabel; + setLabel(); + addWidget(label,Qt::AlignLeft ); + */ +} + +CvButtonbar::~CvButtonbar() +{ + QLayoutItem *child; + + while ((child = takeAt(0)) != 0) + delete child; + + delete group_button; +} + +void CvButtonbar::setLabel() +{ + QString nameNormalized = name_bar.leftJustified( 10, ' ', true ); + label->setText(nameNormalized); +} + +void CvButtonbar::addButton( QString name, CvButtonCallback call, void* userdata, int button_type, int initial_button_state) +{ + QString button_name = name; + + if (button_name == "") + button_name = tr("button %1").arg(this->count()); + + QPointer button; + + if (button_type == CV_PUSH_BUTTON) + button = (QAbstractButton*) new CvPushButton(this, button_name,call, userdata); + + if (button_type == CV_CHECKBOX) + button = (QAbstractButton*) new CvCheckBox(this, button_name,call, userdata, initial_button_state); + + if (button_type == CV_RADIOBOX) + { + button = (QAbstractButton*) new CvRadioButton(this, button_name,call, userdata, initial_button_state); + group_button->addButton(button); + } + + if (button) + { + if (button_type == CV_PUSH_BUTTON) + QObject::connect( button, SIGNAL( clicked(bool) ),button, SLOT( callCallBack(bool) )); + else + QObject::connect( button, SIGNAL( toggled(bool) ),button, SLOT( callCallBack(bool) )); + addWidget(button,Qt::AlignCenter); + } +} + + +//buttons here +CvPushButton::CvPushButton(CvButtonbar* arg1, QString arg2, CvButtonCallback arg3, void* arg4) +{ + myparent = arg1; + button_name = arg2; + callback = arg3; + userdata=arg4; + + setObjectName(button_name); + setText(button_name); + + if (isChecked()) + callCallBack(true); +} + +void CvPushButton::callCallBack(bool checked) +{ + if (callback) + callback(checked,userdata); +} + +CvCheckBox::CvCheckBox(CvButtonbar* arg1, QString arg2, CvButtonCallback arg3, void* arg4, int initial_button_state) +{ + myparent = arg1; + button_name = arg2; + callback = arg3; + userdata=arg4; + + setObjectName(button_name); + setCheckState((initial_button_state == 1?Qt::Checked:Qt::Unchecked)); + setText(button_name); + + if (isChecked()) + callCallBack(true); +} + +void CvCheckBox::callCallBack(bool checked) +{ + if (callback) + callback(checked,userdata); +} + +CvRadioButton::CvRadioButton(CvButtonbar* arg1, QString arg2, CvButtonCallback arg3, void* arg4, int initial_button_state) +{ + myparent = arg1; + button_name = arg2; + callback = arg3; + userdata=arg4; + + setObjectName(button_name); + setChecked(initial_button_state); + setText(button_name); + + if (isChecked()) + callCallBack(true); +} + +void CvRadioButton::callCallBack(bool checked) +{ + if (callback) + callback(checked,userdata); +} + + + + +//here CvWinProperties class +CvWinProperties::CvWinProperties(QString name_paraWindow, QObject* parent) +{ + //setParent(parent); + type = type_CvWinProperties; + setWindowFlags(Qt::Tool); + setContentsMargins(0,0,0,0); + setWindowTitle(name_paraWindow); + setObjectName(name_paraWindow); + resize(100,50); + + myLayout = new QBoxLayout(QBoxLayout::TopToBottom); + myLayout->setObjectName(QString::fromUtf8("boxLayout")); + myLayout->setContentsMargins(0, 0, 0, 0); + myLayout->setSpacing(0); + myLayout->setMargin(0); + myLayout->setSizeConstraint(QLayout::SetFixedSize); + setLayout(myLayout); + + hide(); +} + +void CvWinProperties::closeEvent ( QCloseEvent * e ) +{ + e->accept();//intersept the close event (not sure I really need it) + //an hide event is also sent. I will intercept it and do some processing +} + +void CvWinProperties::showEvent ( QShowEvent * event ) +{ + //why -1,-1 ?: do this trick because the first time the code is run, + //no value pos was saved so we let Qt move the window in the middle of its parent (event ignored). + //then hide will save the last position and thus, we want to retreive it (event accepted). + QPoint mypos(-1,-1); + QSettings settings("OpenCV2", this->windowTitle()); + mypos = settings.value("pos", mypos).toPoint(); + + if (mypos.x()>=0) + { + move(mypos); + event->accept(); + } + else{ + event->ignore(); + } +} + +void CvWinProperties::hideEvent ( QHideEvent * event ) +{ + QSettings settings("OpenCV2", this->windowTitle()); + settings.setValue("pos", pos());//there is an offset of 6 pixels (so the window's position is wrong -- why ?) + event->accept(); +} + +CvWinProperties::~CvWinProperties() +{ + //clear the setting pos + QSettings settings("OpenCV2", this->windowTitle()); + settings.remove("pos"); + + QLayoutItem *child; + if (myLayout) + { + while ((child = myLayout->takeAt(0)) != 0) + delete child; + + delete myLayout; + } +} + + +//Here CvWindow class +CvWindow::CvWindow(QString arg, int arg2) +{ + type = type_CvWindow; + moveToThread(qApp->instance()->thread()); + param_name = arg; + + param_flags = arg2 & 0x0000000F; + param_gui_mode = arg2 & 0x000000F0; + param_ratio_mode = arg2 & 0x00000F00; + + //setAttribute(Qt::WA_DeleteOnClose);//in other case, does not release memory + setContentsMargins(0,0,0,0); + setWindowTitle(param_name); + setObjectName(param_name); + + resize(400,300); + setMinimumSize(1,1); + + //1: create control panel + if (!global_control_panel) + global_control_panel = createParameterWindow(); + + //2: Layouts + createBarLayout(); + createGlobalLayout(); + + //3: my view + int mode_display = CV_MODE_NORMAL; +#if defined( HAVE_QT_OPENGL ) + mode_display = CV_MODE_OPENGL; +#endif + createView(mode_display, param_ratio_mode); + + //4: shortcuts and actions + createActions(); + createShortcuts(); + + //5: toolBar and statusbar + if (param_gui_mode == CV_GUI_EXPANDED) + { + createToolBar(); + createStatusBar(); + } + + + //Now attach everything + if (myToolBar) + myGlobalLayout->addWidget(myToolBar,Qt::AlignCenter); + + myGlobalLayout->addWidget(myview,Qt::AlignCenter); + + myGlobalLayout->addLayout(myBarLayout,Qt::AlignCenter); + + if (myStatusBar) + myGlobalLayout->addWidget(myStatusBar,Qt::AlignCenter); + + setLayout(myGlobalLayout); + show(); + +} + +CvWindow::~CvWindow() +{ + + QLayoutItem *child; + + if (myGlobalLayout) + { + while ((child = myGlobalLayout->takeAt(0)) != 0) + delete child; + + delete myGlobalLayout; + } + + if (myBarLayout) + { + while ((child = myBarLayout->takeAt(0)) != 0) + delete child; + + delete myBarLayout; + } + + if (myStatusBar) + { + delete myStatusBar; + delete myStatusBar_msg; + } + + if (myToolBar) + { + for (int i=0;iisLastWindow(); +} + + + +CvButtonbar* CvWindow::createButtonbar(QString name_bar) +{ + QPointer t = new CvButtonbar(global_control_panel,name_bar); + t->setAlignment(Qt::AlignHCenter); + + QPointer myLayout = global_control_panel->myLayout; + + myLayout->insertLayout(myLayout->count(),t); + + return t; +} + + +void CvWindow::hideTools() +{ + if (myToolBar) + myToolBar->hide(); + + if (myStatusBar) + myStatusBar->hide(); + + if (global_control_panel) + global_control_panel->hide(); +} + +void CvWindow::showTools() +{ + if (myToolBar) + myToolBar->show(); + + if (myStatusBar) + myStatusBar->show(); + +} + +CvWinProperties* CvWindow::createParameterWindow() +{ + QString name_paraWindow =QFileInfo(QApplication::applicationFilePath()).fileName()+" settings"; + + CvWinProperties *result = new CvWinProperties(name_paraWindow,guiMainThread); + return result; +} + +void CvWindow::displayPropertiesWin() +{ + if (global_control_panel->isHidden()) + global_control_panel->show(); + else + global_control_panel->hide(); +} + +void CvWindow::createActions() +{ + vect_QActions.resize(10); + + //if the shortcuts are changed in window_QT.h, we need to update the tooltip manually + vect_QActions[0] = new QAction(QIcon(":/left-icon"),"Panning left (CTRL+arrowLEFT)",this); + vect_QActions[0]->setIconVisibleInMenu(true); + QObject::connect( vect_QActions[0],SIGNAL(triggered()),myview, SLOT( siftWindowOnLeft() )); + + vect_QActions[1] = new QAction(QIcon(":/right-icon"),"Panning right (CTRL+arrowRIGHT)",this); + vect_QActions[1]->setIconVisibleInMenu(true); + QObject::connect( vect_QActions[1],SIGNAL(triggered()),myview, SLOT( siftWindowOnRight() )); + + vect_QActions[2] = new QAction(QIcon(":/up-icon"),"Panning up (CTRL+arrowUP)",this); + vect_QActions[2]->setIconVisibleInMenu(true); + QObject::connect( vect_QActions[2],SIGNAL(triggered()),myview, SLOT( siftWindowOnUp() )); + + vect_QActions[3] = new QAction(QIcon(":/down-icon"),"Panning down (CTRL+arrowDOWN)",this); + vect_QActions[3]->setIconVisibleInMenu(true); + QObject::connect( vect_QActions[3],SIGNAL(triggered()),myview, SLOT( siftWindowOnDown() )); + + vect_QActions[4] = new QAction(QIcon(":/zoom_x1-icon"),"Zoom x1 (CTRL+P)",this); + vect_QActions[4]->setIconVisibleInMenu(true); + QObject::connect( vect_QActions[4],SIGNAL(triggered()),myview, SLOT( resetZoom() )); + + vect_QActions[5] = new QAction(QIcon(":/imgRegion-icon"),tr("Zoom x%1 (see label) (CTRL+X)") + .arg(threshold_zoom_img_region) + ,this); + vect_QActions[5]->setIconVisibleInMenu(true); + QObject::connect( vect_QActions[5],SIGNAL(triggered()),myview, SLOT( imgRegion() )); + + vect_QActions[6] = new QAction(QIcon(":/zoom_in-icon"),tr("Zoom in (CTRL++)"),this); + vect_QActions[6]->setIconVisibleInMenu(true); + QObject::connect( vect_QActions[6],SIGNAL(triggered()),myview, SLOT( ZoomIn() )); + + vect_QActions[7] = new QAction(QIcon(":/zoom_out-icon"),tr("Zoom out (CTRL+-)"),this); + vect_QActions[7]->setIconVisibleInMenu(true); + QObject::connect( vect_QActions[7],SIGNAL(triggered()),myview, SLOT( ZoomOut() )); + + vect_QActions[8] = new QAction(QIcon(":/save-icon"),tr("Save current image (CTRL+S)"),this); + vect_QActions[8]->setIconVisibleInMenu(true); + QObject::connect( vect_QActions[8],SIGNAL(triggered()),myview, SLOT( saveView() )); + + vect_QActions[9] = new QAction(QIcon(":/properties-icon"),tr("Display properties window (CTRL+P)"),this); + vect_QActions[9]->setIconVisibleInMenu(true); + QObject::connect( vect_QActions[9],SIGNAL(triggered()),this, SLOT( displayPropertiesWin() )); + + if (global_control_panel->myLayout->count() == 0) + vect_QActions[9]->setDisabled(true); +} + + +void CvWindow::createShortcuts() +{ + vect_QShortcuts.resize(10); + + vect_QShortcuts[0] = new QShortcut(shortcut_panning_left, this); + QObject::connect( vect_QShortcuts[0], SIGNAL( activated ()),myview, SLOT( siftWindowOnLeft() )); + vect_QShortcuts[1] = new QShortcut(shortcut_panning_right, this); + QObject::connect( vect_QShortcuts[1], SIGNAL( activated ()),myview, SLOT( siftWindowOnRight() )); + vect_QShortcuts[2] = new QShortcut(shortcut_panning_up, this); + QObject::connect(vect_QShortcuts[2], SIGNAL( activated ()),myview, SLOT( siftWindowOnUp() )); + vect_QShortcuts[3] = new QShortcut(shortcut_panning_down, this); + QObject::connect(vect_QShortcuts[3], SIGNAL( activated ()),myview, SLOT( siftWindowOnDown() )); + + vect_QShortcuts[4] = new QShortcut(shortcut_zoom_normal, this); + QObject::connect( vect_QShortcuts[4], SIGNAL( activated ()),myview, SLOT( resetZoom( ) )); + vect_QShortcuts[5] = new QShortcut(shortcut_zoom_imgRegion, this); + QObject::connect( vect_QShortcuts[5], SIGNAL( activated ()),myview, SLOT( imgRegion( ) )); + vect_QShortcuts[6] = new QShortcut(shortcut_zoom_in, this); + QObject::connect( vect_QShortcuts[6], SIGNAL( activated ()),myview, SLOT( ZoomIn() )); + vect_QShortcuts[7] = new QShortcut(shortcut_zoom_out, this); + QObject::connect(vect_QShortcuts[7], SIGNAL( activated ()),myview, SLOT( ZoomOut() )); + vect_QShortcuts[8] = new QShortcut(shortcut_save_img, this); + QObject::connect( vect_QShortcuts[8], SIGNAL( activated ()),myview, SLOT( saveView( ) )); + vect_QShortcuts[9] = new QShortcut(shortcut_properties_win, this); + QObject::connect( vect_QShortcuts[9], SIGNAL( activated ()),this, SLOT( displayPropertiesWin() )); +} + +void CvWindow::createToolBar() +{ + myToolBar = new QToolBar(this); + myToolBar->setFloatable(false);//is not a window + myToolBar->setFixedHeight(28); + myToolBar->setMinimumWidth(1); + + foreach (QAction *a, vect_QActions) + myToolBar->addAction(a); +} + +void CvWindow::createStatusBar() +{ + myStatusBar = new QStatusBar(this); + myStatusBar->setSizeGripEnabled(false); + myStatusBar->setFixedHeight(20); + myStatusBar->setMinimumWidth(1); + myStatusBar_msg = new QLabel; + + + //I comment this because if we change the style, myview (the picture) + //will not be the correct size anymore (will lost 2 pixel because of the borders) + + //myStatusBar_msg->setFrameStyle(QFrame::Raised); + + + myStatusBar_msg->setAlignment(Qt::AlignHCenter); + myStatusBar->addWidget(myStatusBar_msg); +} + +void CvWindow::createGlobalLayout() +{ + myGlobalLayout = new QBoxLayout(QBoxLayout::TopToBottom); + myGlobalLayout->setObjectName(QString::fromUtf8("boxLayout")); + myGlobalLayout->setContentsMargins(0, 0, 0, 0); + myGlobalLayout->setSpacing(0); + myGlobalLayout->setMargin(0); + setMinimumSize(1,1); + + if (param_flags == CV_WINDOW_AUTOSIZE) + myGlobalLayout->setSizeConstraint(QLayout::SetFixedSize); + + if (param_flags == CV_WINDOW_NORMAL) + myGlobalLayout->setSizeConstraint(QLayout::SetMinAndMaxSize); +} + +void CvWindow::createBarLayout() +{ + myBarLayout = new QBoxLayout(QBoxLayout::TopToBottom); + myBarLayout->setObjectName(QString::fromUtf8("barLayout")); + myBarLayout->setContentsMargins(0, 0, 0, 0); + myBarLayout->setSpacing(0); + myBarLayout->setMargin(0); +} + + +void CvWindow::createView(int mode, int ratio) +{ + //mode = CV_MODE_NORMAL or CV_MODE_OPENGL + //ratio = CV_WINDOW_KEEPRATIO or CV_WINDOW_FREERATIO + myview = new ViewPort(this, mode,ratio);//parent, mode_display, keep_aspect_ratio + myview->setAlignment(Qt::AlignHCenter); +} + +void CvWindow::setOpenGLCallback(CvOpenGLCallback func,void* userdata, double angle, double zmin, double zmax) +{ + myview->setOpenGLCallback(func,userdata, angle, zmin, zmax ); +} + +ViewPort* CvWindow::getView() +{ + return myview; +} + +void CvWindow::displayInfo(QString text,int delayms) +{ + myview->startDisplayInfo(text, delayms); +} + +void CvWindow::displayStatusBar(QString text,int delayms) +{ + myStatusBar->showMessage(text,delayms); +} + +void CvWindow::updateImage(void* arr) +{ + myview->updateImage(arr); +} + +void CvWindow::setMouseCallBack(CvMouseCallback m, void* param) +{ + myview->setMouseCallBack(m,param); +} + +//addSlider2 is static +void CvWindow::addSlider2(CvWindow* w,QString name, int* value, int count,CvTrackbarCallback2 on_change, void* userdata) +{ + QPointer t = new CvTrackbar(w,name,value, count, on_change, userdata); + t->setAlignment(Qt::AlignHCenter); + + QPointer myLayout; + + if (w) + { + myLayout = w->myBarLayout; + } + else + { + myLayout = global_control_panel->myLayout; + + //if first one, enable control panel + if (myLayout->count() == 0) + guiMainThread->enablePropertiesButtonEachWindow(); + } + + myLayout->insertLayout( myLayout->count(),t); + + +} + +//addSlider is static +void CvWindow::addSlider(CvWindow* w,QString name, int* value, int count,CvTrackbarCallback on_change) +{ + QPointer t = new CvTrackbar(w,name,value, count, on_change); + t->setAlignment(Qt::AlignHCenter); + + QPointer myLayout; + + if (w) + { + myLayout = w->myBarLayout; + } + else + { + myLayout = global_control_panel->myLayout; + + //if first one, enable control panel + if (myLayout->count() == 0) + guiMainThread->enablePropertiesButtonEachWindow(); + } + + myLayout->insertLayout( myLayout->count(),t); + + +} + +//Need more test here ! +void CvWindow::keyPressEvent(QKeyEvent *event) +{ + //see http://doc.trolltech.com/4.6/qt.html#Key-enum + int key = event->key(); + //bool goodKey = false; + bool goodKey = true; + + Qt::Key qtkey = static_cast(key); + char asciiCode = QTest::keyToAscii(qtkey); + if(asciiCode != 0) + { + key = static_cast(asciiCode); + } + + //control plus (Z, +, -, up, down, left, right) are used for zoom/panning functions + if (event->modifiers() != Qt::ControlModifier && goodKey) + { + mutexKey.lock(); + last_key = key; + //last_key = event->nativeVirtualKey (); + mutexKey.unlock(); + key_pressed.wakeAll(); + //event->accept(); + } + + QWidget::keyPressEvent(event); +} + +//TODO: load CV_GUI flag (done) and act accordingly (create win property if needed and attach trackbars) +void CvWindow::readSettings() +{ + //organisation and application's name + QSettings settings("OpenCV2", QFileInfo(QApplication::applicationFilePath()).fileName()); + QPoint pos = settings.value("pos", QPoint(200, 200)).toPoint(); + QSize size = settings.value("size", QSize(400, 400)).toSize(); + //param_name = settings.value("name_window",param_name).toString(); + param_flags = settings.value("mode_resize",param_flags).toInt(); + param_gui_mode = settings.value("mode_gui",param_gui_mode).toInt(); + + param_ratio_mode = settings.value("mode_ratio",param_ratio_mode).toInt(); + myview->param_keepRatio = settings.value("view_aspectRatio",myview->param_keepRatio).toInt(); + + param_flags = settings.value("mode_resize",param_flags).toInt(); + qreal m11 = settings.value("matrix_view.m11",myview->param_matrixWorld.m11()).toDouble(); + qreal m12 = settings.value("matrix_view.m12",myview->param_matrixWorld.m12()).toDouble(); + qreal m13 = settings.value("matrix_view.m13",myview->param_matrixWorld.m13()).toDouble(); + qreal m21 = settings.value("matrix_view.m21",myview->param_matrixWorld.m21()).toDouble(); + qreal m22 = settings.value("matrix_view.m22",myview->param_matrixWorld.m22()).toDouble(); + qreal m23 = settings.value("matrix_view.m23",myview->param_matrixWorld.m23()).toDouble(); + qreal m31 = settings.value("matrix_view.m31",myview->param_matrixWorld.m31()).toDouble(); + qreal m32 = settings.value("matrix_view.m32",myview->param_matrixWorld.m32()).toDouble(); + qreal m33 = settings.value("matrix_view.m33",myview->param_matrixWorld.m33()).toDouble(); + myview->param_matrixWorld = QTransform(m11,m12,m13,m21,m22,m23,m31,m32,m33); + + //trackbar here + icvLoadTrackbars(&settings); + + resize(size); + move(pos); + + if (global_control_panel) + { + icvLoadControlPanel(); + global_control_panel->move(settings.value("posPanel", global_control_panel->pos()).toPoint()); + } +} + +void CvWindow::writeSettings() +{ + //organisation and application's name + QSettings settings("OpenCV2", QFileInfo(QApplication::applicationFilePath()).fileName()); + //settings.setValue("name_window",param_name); + settings.setValue("pos", pos()); + settings.setValue("size", size()); + settings.setValue("mode_resize",param_flags); + settings.setValue("mode_gui",param_gui_mode); + + settings.setValue("param_ratio_mode",param_ratio_mode); + settings.setValue("view_aspectRatio",myview->param_keepRatio); + + settings.setValue("matrix_view.m11",myview->param_matrixWorld.m11()); + settings.setValue("matrix_view.m12",myview->param_matrixWorld.m12()); + settings.setValue("matrix_view.m13",myview->param_matrixWorld.m13()); + settings.setValue("matrix_view.m21",myview->param_matrixWorld.m21()); + settings.setValue("matrix_view.m22",myview->param_matrixWorld.m22()); + settings.setValue("matrix_view.m23",myview->param_matrixWorld.m23()); + settings.setValue("matrix_view.m31",myview->param_matrixWorld.m31()); + settings.setValue("matrix_view.m32",myview->param_matrixWorld.m32()); + settings.setValue("matrix_view.m33",myview->param_matrixWorld.m33()); + + icvSaveTrackbars(&settings); + + + if (global_control_panel) + { + icvSaveControlPanel(); + settings.setValue("posPanel", global_control_panel->pos()); + } +} + +void CvWindow::icvLoadControlPanel() +{ + QSettings settings("OpenCV2", QFileInfo(QApplication::applicationFilePath()).fileName()+" control panel"); + int size = settings.beginReadArray("bars"); + int subsize; + CvBar* t; + if (size == global_control_panel->myLayout->layout()->count()) + for (int i = 0; i < size; ++i) { + t = (CvBar*) global_control_panel->myLayout->layout()->itemAt(i); + settings.setArrayIndex(i); + if (t->type == type_CvTrackbar) + { + if (t->name_bar == settings.value("namebar").toString()) + { + ((CvTrackbar*)t)->slider->setValue(settings.value("valuebar").toInt()); + } + } + if (t->type == type_CvButtonbar) + { + subsize = settings.beginReadArray(QString("buttonbar")+i); + + if ( subsize == ((CvButtonbar*)t)->layout()->count() ) + icvLoadButtonbar((CvButtonbar*)t,&settings); + + settings.endArray(); + } + } + settings.endArray(); +} + +void CvWindow::icvSaveControlPanel() +{ + QSettings settings("OpenCV2", QFileInfo(QApplication::applicationFilePath()).fileName()+" control panel"); + settings.beginWriteArray("bars"); + + CvBar* t; + for (int i = 0; i < global_control_panel->myLayout->layout()->count(); ++i) { + t = (CvBar*) global_control_panel->myLayout->layout()->itemAt(i); + settings.setArrayIndex(i); + if (t->type == type_CvTrackbar) + { + settings.setValue("namebar", QString(t->name_bar)); + settings.setValue("valuebar",((CvTrackbar*)t)->slider->value()); + } + if (t->type == type_CvButtonbar) + { + settings.beginWriteArray(QString("buttonbar")+i); + icvSaveButtonbar((CvButtonbar*)t,&settings); + settings.endArray(); + } + } + settings.endArray(); +} + +void CvWindow::icvSaveButtonbar(CvButtonbar* b,QSettings *settings) +{ + QWidget* temp; + QString myclass; + for (int i = 0; i < b->layout()->count(); ++i) { + settings->setArrayIndex(i); + temp = (QWidget*) b->layout()->itemAt(i)->widget(); + myclass = QString(temp->metaObject ()->className ()); + if (myclass == "CvPushButton") + { + CvPushButton* button = (CvPushButton*) temp; + settings->setValue("namebutton", QString(button->text()) ); + settings->setValue("valuebutton", int(button->isChecked())); + } + + if (myclass == "CvCheckBox") + { + CvCheckBox* button = (CvCheckBox*) temp; + settings->setValue("namebutton", QString(button->text()) ); + settings->setValue("valuebutton", int(button->isChecked())); + } + + if (myclass == "CvRadioButton") + { + CvRadioButton* button = (CvRadioButton*) temp; + settings->setValue("namebutton", QString(button->text()) ); + settings->setValue("valuebutton", int(button->isChecked())); + } + } +} + +void CvWindow::icvLoadButtonbar(CvButtonbar* b,QSettings *settings) +{ + QWidget* temp; + QString myclass; + for (int i = 0; i < b->layout()->count(); ++i) + { + settings->setArrayIndex(i); + temp = (QWidget*) b->layout()->itemAt(i)->widget(); + myclass = QString(temp->metaObject ()->className ()); + if (myclass == "CvPushButton") + { + CvPushButton* button = (CvPushButton*) temp; + if (button->text() == settings->value("namebutton").toString()) + button->setChecked(settings->value("valuebutton").toInt()); + } + + if (myclass == "CvCheckBox") + { + CvCheckBox* button = (CvCheckBox*) temp; + if (button->text() == settings->value("namebutton").toString()) + button->setChecked(settings->value("valuebutton").toInt()); + } + + if (myclass == "CvRadioButton") + { + CvRadioButton* button = (CvRadioButton*) temp; + if (button->text() == settings->value("namebutton").toString()) + button->setChecked(settings->value("valuebutton").toInt()); + } + + } +} + + +void CvWindow::icvLoadTrackbars(QSettings *settings) +{ + int size = settings->beginReadArray("trackbars"); + QPointer t; + + //trackbar are saved in the same order, so no need to use icvFindTrackbarByName + + if (myBarLayout->layout()->count() == size)//if not the same number, the window saved and loaded is not the same (nb trackbar not equal) + for (int i = 0; i < size; ++i) + { + settings->setArrayIndex(i); + t = (CvTrackbar*) myBarLayout->layout()->itemAt(i); + + if (t->name_bar == settings->value("name").toString()) + t->slider->setValue(settings->value("value").toInt()); + + } + settings->endArray(); + +} + +void CvWindow::icvSaveTrackbars(QSettings *settings) +{ + QPointer t; + + settings->beginWriteArray("trackbars"); + + for (int i = 0; i < myBarLayout->layout()->count(); ++i) { + t = (CvTrackbar*) myBarLayout->layout()->itemAt(i); + settings->setArrayIndex(i); + settings->setValue("name", t->name_bar); + settings->setValue("value", t->slider->value()); + } + settings->endArray(); +} + + + + + + + +//Here is ViewPort class +ViewPort::ViewPort(CvWindow* arg, int arg2, int arg3) +{ + centralWidget = arg, + setParent(centralWidget); + mode_display = arg2; + param_keepRatio = arg3; + + + //setAlignment(Qt::AlignLeft | Qt::AlignTop); + setContentsMargins(0,0,0,0); + setMinimumSize(1,1); + + setObjectName(QString::fromUtf8("graphicsView")); + timerDisplay = new QTimer(this); + timerDisplay->setSingleShot(true); + connect(timerDisplay, SIGNAL(timeout()), this, SLOT(stopDisplayInfo())); + drawInfo = false; + positionGrabbing = QPointF(0,0); + positionCorners = QRect(0,0,size().width(),size().height()); + on_mouse = NULL; + mouseCoordinate = QPoint(-1,-1); + on_openGL_draw3D = NULL; + + //no border + setStyleSheet( "QGraphicsView { border-style: none; }" ); + +#if defined( HAVE_QT_OPENGL ) + + if ( mode_display == CV_MODE_OPENGL) + { + myGL = new QGLWidget(QGLFormat(QGL::SampleBuffers)); + setViewport(myGL); + if (param_keepRatio == CV_WINDOW_KEEPRATIO) + { + //TODO: fix this bug: + //::::blinking in OpenGL with CV_WINDOW_KEEPRATIO:::: + //The raison is that to move the widget in the middle and resize it manually to keep the aspect ratio, + //we resize in resizeEvent() and use a trick not to be blocked in an infinity loop. + //This is working fine if the viewport is not OpenGL, however we have two rendering with OpenGL. + //The first rendering with the widget not moved in the midle (so stuck in top left), then the final and correct rendering. + //This two rendering are visible with OpenGL and CV_WINDOW_KEEPRATIO but not with native rendering (why ???) + + //I tried to use Qt::AlignCenter of the layout manager but the widget does not expand anymore + //I tried to center with painter.drawImage (in draw2D), but the imgRegion and all other function using the size of the widget will not work anymore. + startDisplayInfo("WARNING: For now, you cannot use OpenGL rendering with CV_WINDOW_KEEPRATIO, so we changed to CV_WINDOW_FREERATIO", 5000); + setRatio(CV_WINDOW_FREERATIO); + } + + //setViewport(new QGLWidget()); + angle = DEFAULT_ANGLE; + zmin = DEFAULT_ZMIN; + zmax = DEFAULT_ZMAX; + initGL(); + } + +#endif + + image2Draw_mat = cvCreateMat( viewport()->width(),viewport()->height(), CV_8UC3 ); + + nbChannelOriginImage = 0; + cvZero(image2Draw_mat); + + setInteractive(false); + setMouseTracking (true);//receive mouse event everytime + +} + +ViewPort::~ViewPort() +{ + if (image2Draw_mat) + + cvReleaseMat(&image2Draw_mat); + + +//#if defined( HAVE_QT_OPENGL ) +// if (myGL) +// delete myGL; +//#endif; + + delete timerDisplay; +} + +void ViewPort::contextMenuEvent(QContextMenuEvent *event) +{ + if (centralWidget->vect_QActions.size() > 0) + { + QMenu menu(this); + foreach (QAction *a, centralWidget->vect_QActions) + menu.addAction(a); + // menu.popup(event->globalPos()); + menu.exec(event->globalPos()); + } +} + +//can save as JPG, JPEG, BMP, PNG +void ViewPort::saveView() +{ + QDate date_d = QDate::currentDate (); + QString date_s = date_d.toString("dd.MM.yyyy"); + QString name_s = centralWidget->param_name+"_screenshot_"+date_s; + + QString fileName = QFileDialog::getSaveFileName(this, tr("Save File %1").arg(name_s), + name_s+".png", + tr("Images (*.png *.jpg *.bmp *.jpeg)")); + + if (!fileName.isEmpty ())//save the picture + { + QString extension = fileName.right(3); + + +#if defined( HAVE_QT_OPENGL ) + image2Draw_qt_resized = ((QGLWidget*)viewport())->grabFrameBuffer(); +#else + // (no need anymore) create the image resized to receive the 'screenshot' + // image2Draw_qt_resized = QImage(viewport()->width(), viewport()->height(),QImage::Format_RGB888); + + QPainter saveimage(&image2Draw_qt_resized); + this->render(&saveimage); +#endif + + // Save it.. + if (QString::compare(extension, "png", Qt::CaseInsensitive) == 0) + { + image2Draw_qt_resized.save(fileName, "PNG"); + return; + } + + if (QString::compare(extension, "jpg", Qt::CaseInsensitive) == 0) + { + image2Draw_qt_resized.save(fileName, "JPG"); + return; + } + + if (QString::compare(extension, "bmp", Qt::CaseInsensitive) == 0) + { + image2Draw_qt_resized.save(fileName, "BMP"); + return; + } + + if (QString::compare(extension, "jpeg", Qt::CaseInsensitive) == 0) + { + image2Draw_qt_resized.save(fileName, "JPEG"); + return; + } + + CV_Error(CV_StsNullPtr, "file extension not recognized, please choose between JPG, JPEG, BMP or PNG"); + } +} + +void ViewPort::setRatio(int flags) +{ + centralWidget->param_ratio_mode = flags; + param_keepRatio = flags; + updateGeometry(); + viewport()->update(); +} + +void ViewPort::imgRegion() +{ + scaleView( (threshold_zoom_img_region/param_matrixWorld.m11()-1)*5,QPointF(size().width()/2,size().height()/2)); +} + +int ViewPort::getRatio() +{ + return param_keepRatio; +} + +void ViewPort::resetZoom() +{ + param_matrixWorld.reset(); + controlImagePosition(); +} + +void ViewPort::ZoomIn() +{ + scaleView( 0.5,QPointF(size().width()/2,size().height()/2)); +} + +void ViewPort::ZoomOut() +{ + scaleView( -0.5,QPointF(size().width()/2,size().height()/2)); +} + +//Note: move 2 percent of the window +void ViewPort::siftWindowOnLeft() +{ + float delta = 2*width()/(100.0*param_matrixWorld.m11()); + moveView(QPointF(delta,0)); +} + +//Note: move 2 percent of the window +void ViewPort::siftWindowOnRight() +{ + float delta = -2*width()/(100.0*param_matrixWorld.m11()); + moveView(QPointF(delta,0)); +} + +//Note: move 2 percent of the window +void ViewPort::siftWindowOnUp() +{ + float delta = 2*height()/(100.0*param_matrixWorld.m11()); + moveView(QPointF(0,delta)); +} + +//Note: move 2 percent of the window +void ViewPort::siftWindowOnDown() +{ + float delta = -2*height()/(100.0*param_matrixWorld.m11()); + moveView(QPointF(0,delta)); +} + +void ViewPort::startDisplayInfo(QString text, int delayms) +{ + if (timerDisplay->isActive()) + stopDisplayInfo(); + + infoText = text; + timerDisplay->start(delayms); + drawInfo = true; +} + +void ViewPort::stopDisplayInfo() +{ + timerDisplay->stop(); + drawInfo = false; +} + +inline bool ViewPort::isSameSize(IplImage* img1,IplImage* img2) +{ + return img1->width == img2->width && img1->height == img2->height; +} + +void ViewPort::updateImage(const CvArr *arr) +{ + //if (!arr) + //CV_Error(CV_StsNullPtr, "NULL arr pointer (in showImage)" ); + CV_Assert(arr); + + CvMat * mat, stub; + int origin=0; + + if( CV_IS_IMAGE_HDR( arr )) + origin = ((IplImage*)arr)->origin; + + mat = cvGetMat(arr, &stub); + + //IplImage* tempImage = (IplImage*)arr; + + if( CV_IS_IMAGE_HDR( arr )) + origin = ((IplImage*)arr)->origin; + + if (!CV_ARE_SIZES_EQ(image2Draw_mat,mat)) + { + cvReleaseMat(&image2Draw_mat); + //the image in ipl (to do a deep copy with cvCvtColor) + image2Draw_mat = cvCreateMat( mat->rows, mat->cols, CV_8UC3 ); + image2Draw_qt = QImage(image2Draw_mat->data.ptr, image2Draw_mat->cols,image2Draw_mat->rows, image2Draw_mat->step,QImage::Format_RGB888); + + //use to compute mouse coordinate, I need to update the ratio here and in resizeEvent + ratioX=width()/float(image2Draw_mat->cols); + ratioY=height()/float(image2Draw_mat->rows); + + updateGeometry(); + } + + nbChannelOriginImage = cvGetElemType(mat); + + cvConvertImage(mat,image2Draw_mat,(origin != 0 ? CV_CVTIMG_FLIP : 0) + CV_CVTIMG_SWAP_RB ); + + viewport()->update(); +} + +void ViewPort::setMouseCallBack(CvMouseCallback m, void* param) +{ + on_mouse = m; + on_mouse_param = param; +} + +#if defined( HAVE_QT_OPENGL ) +void ViewPort::setOpenGLCallback(CvOpenGLCallback func, void* userdata, double angle_arg, double zmin_arg, double zmax_arg) +{ + //avoid unreferenced formal parameter warning with vs 2008 + //http://msdn.microsoft.com/en-en/library/26kb9fy0%28VS.80%29.aspx + on_openGL_draw3D = func; + on_openGL_param = userdata; + + if (angle_arg > 0) + angle = angle_arg; + else + angle = DEFAULT_ANGLE; + + + if (zmin_arg >= 0) + zmin = zmin_arg; + else + zmin = DEFAULT_ZMIN; + + + if (zmax_arg > 0) + zmax = zmax_arg; + else + zmax = DEFAULT_ZMAX; +} +#else +void ViewPort::setOpenGLCallback(CvOpenGLCallback, void*, double, double, double) +{ +} +#endif + +void ViewPort::controlImagePosition() +{ + qreal left, top, right, bottom; + + //after check top-left, bottom right corner to avoid getting "out" during zoom/panning + param_matrixWorld.map(0,0,&left,&top); + + if (left > 0) + { + param_matrixWorld.translate(-left,0); + left = 0; + } + if (top > 0) + { + param_matrixWorld.translate(0,-top); + top = 0; + } + //------- + + QSize sizeImage = size(); + param_matrixWorld.map(sizeImage.width(),sizeImage.height(),&right,&bottom); + if (right < sizeImage.width()) + { + param_matrixWorld.translate(sizeImage.width()-right,0); + right = sizeImage.width(); + } + if (bottom < sizeImage.height()) + { + param_matrixWorld.translate(0,sizeImage.height()-bottom); + bottom = sizeImage.height(); + } + + //save corner position + positionCorners.setTopLeft(QPoint(left,top)); + positionCorners.setBottomRight(QPoint(right,bottom)); + //save also the inv matrix + matrixWorld_inv = param_matrixWorld.inverted(); + + //viewport()->update(); +} + +void ViewPort::moveView(QPointF delta) +{ + param_matrixWorld.translate(delta.x(),delta.y()); + controlImagePosition(); + viewport()->update(); +} + +//factor is -0.5 (zoom out) or 0.5 (zoom in) +void ViewPort::scaleView(qreal factor,QPointF center) +{ + factor/=5;//-0.1 <-> 0.1 + factor+=1;//0.9 <-> 1.1 + + //limit zoom out --- + if (param_matrixWorld.m11()==1 && factor < 1) + return; + + if (param_matrixWorld.m11()*factor<1) + factor = 1/param_matrixWorld.m11(); + + + //limit zoom int --- + if (param_matrixWorld.m11()>100 && factor > 1) + return; + + //inverse the transform + int a, b; + matrixWorld_inv.map(center.x(),center.y(),&a,&b); + + param_matrixWorld.translate(a-factor*a,b-factor*b); + param_matrixWorld.scale(factor,factor); + + controlImagePosition(); + + //display new zoom + if (centralWidget->myStatusBar) + centralWidget->displayStatusBar(tr("Zoom: %1%").arg(param_matrixWorld.m11()*100),1000); + + if (param_matrixWorld.m11()>1) + setCursor(Qt::OpenHandCursor); + else + unsetCursor(); +} + +void ViewPort::wheelEvent(QWheelEvent *event) +{ + scaleView( event->delta() / 240.0,event->pos()); + viewport()->update(); +} + +void ViewPort::mousePressEvent(QMouseEvent *event) +{ + int cv_event = -1, flags = 0; + QPoint pt = event->pos(); + + //icvmouseHandler: pass parameters for cv_event, flags + icvmouseHandler(event, mouse_down, cv_event, flags); + icvmouseProcessing(QPointF(pt), cv_event, flags); + + if (param_matrixWorld.m11()>1) + { + setCursor(Qt::ClosedHandCursor); + positionGrabbing = event->pos(); + } + + QWidget::mousePressEvent(event); +} + +void ViewPort::mouseReleaseEvent(QMouseEvent *event) +{ + int cv_event = -1, flags = 0; + QPoint pt = event->pos(); + + //icvmouseHandler: pass parameters for cv_event, flags + icvmouseHandler(event, mouse_up, cv_event, flags); + icvmouseProcessing(QPointF(pt), cv_event, flags); + + if (param_matrixWorld.m11()>1) + setCursor(Qt::OpenHandCursor); + + QWidget::mouseReleaseEvent(event); +} + +void ViewPort::mouseDoubleClickEvent(QMouseEvent *event) +{ + int cv_event = -1, flags = 0; + QPoint pt = event->pos(); + + //icvmouseHandler: pass parameters for cv_event, flags + icvmouseHandler(event, mouse_dbclick, cv_event, flags); + icvmouseProcessing(QPointF(pt), cv_event, flags); + + QWidget::mouseDoubleClickEvent(event); +} + +void ViewPort::mouseMoveEvent(QMouseEvent *event) +{ + int cv_event = CV_EVENT_MOUSEMOVE, flags = 0; + QPoint pt = event->pos(); + + //icvmouseHandler: pass parameters for cv_event, flags + icvmouseHandler(event, mouse_move, cv_event, flags); + icvmouseProcessing(QPointF(pt), cv_event, flags); + + if (param_matrixWorld.m11()>1 && event->buttons() == Qt::LeftButton) + { + QPointF dxy = (pt - positionGrabbing)/param_matrixWorld.m11(); + positionGrabbing = event->pos(); + moveView(dxy); + } + + //I update the statusbar here because if the user does a cvWaitkey(0) (like with inpaint.cpp) + //the status bar will only be repaint when a click occurs. + if (centralWidget->myStatusBar) + viewport()->update(); + + QWidget::mouseMoveEvent(event); +} + + +/*void ViewPort::dragMoveEvent(QDragMoveEvent *event) +{ + QPoint pt = event->pos(); + + //icvmouseHandler: pass parameters for cv_event, flags + icvmouseProcessing(QPointF(pt), CV_EVENT_MOUSEMOVE, CV_EVENT_FLAG_LBUTTON); + + if (param_matrixWorld.m11()>1) + { + QPointF dxy = (pt - positionGrabbing)/param_matrixWorld.m11(); + positionGrabbing = event->pos(); + moveView(dxy); + } + + //I update the statusbar here because if the user does a cvWaitkey(0) (like with inpaint.cpp) + //the status bar will only be repaint when a click occurs. + if (centralWidget->myStatusBar) + viewport()->update(); + + QWidget::dragMoveEvent(event); +}*/ + + +//up, down, dclick, move +void ViewPort::icvmouseHandler(QMouseEvent *event, type_mouse_event category, int &cv_event, int &flags) +{ + Qt::KeyboardModifiers modifiers = event->modifiers(); + Qt::MouseButtons buttons = event->buttons(); + + flags = 0; + if(modifiers & Qt::ShiftModifier) + flags |= CV_EVENT_FLAG_SHIFTKEY; + if(modifiers & Qt::ControlModifier) + flags |= CV_EVENT_FLAG_CTRLKEY; + if(modifiers & Qt::AltModifier) + flags |= CV_EVENT_FLAG_ALTKEY; + + if(buttons & Qt::LeftButton) + flags |= CV_EVENT_FLAG_LBUTTON; + if(buttons & Qt::RightButton) + flags |= CV_EVENT_FLAG_RBUTTON; + if(buttons & Qt::MidButton) + flags |= CV_EVENT_FLAG_MBUTTON; + + cv_event = CV_EVENT_MOUSEMOVE; + switch(event->button()) + { + case Qt::LeftButton: + cv_event = tableMouseButtons[category][0]; + flags |= CV_EVENT_FLAG_LBUTTON; + break; + case Qt::RightButton: + cv_event = tableMouseButtons[category][1]; + flags |= CV_EVENT_FLAG_RBUTTON; + break; + case Qt::MidButton: + cv_event = tableMouseButtons[category][2]; + flags |= CV_EVENT_FLAG_MBUTTON; + break; + default:; + } +} + +void ViewPort::icvmouseProcessing(QPointF pt, int cv_event, int flags) +{ + //to convert mouse coordinate + qreal pfx, pfy; + matrixWorld_inv.map(pt.x(),pt.y(),&pfx,&pfy); + + mouseCoordinate.rx()=floor(pfx/ratioX); + mouseCoordinate.ry()=floor(pfy/ratioY); + + if (on_mouse) + on_mouse( cv_event, mouseCoordinate.x(), + mouseCoordinate.y(), flags, on_mouse_param ); +} + +QSize ViewPort::sizeHint() const +{ + if(image2Draw_mat) + return QSize(image2Draw_mat->cols,image2Draw_mat->rows); + else + return QGraphicsView::sizeHint(); +} + +void ViewPort::resizeEvent ( QResizeEvent *event) +{ + + controlImagePosition(); + + //use to compute mouse coordinate, I need to update the ratio here and in resizeEvent + ratioX=width()/float(image2Draw_mat->cols); + ratioY=height()/float(image2Draw_mat->rows); + + + if(param_keepRatio == CV_WINDOW_KEEPRATIO)//to keep the same aspect ratio + { + QSize newSize = QSize(image2Draw_mat->cols,image2Draw_mat->rows); + newSize.scale(event->size(),Qt::KeepAspectRatio); + + //imageWidth/imageHeight = newWidth/newHeight +/- epsilon + //ratioX = ratioY +/- epsilon + //||ratioX - ratioY|| = epsilon + if (fabs(ratioX - ratioY)*100> ratioX)//avoid infinity loop / epsilon = 1% of ratioX + { + resize(newSize); + + //move to the middle + //newSize get the delta offset to place the picture in the middle of its parent + newSize= (event->size()-newSize)/2; + + //if the toolbar is displayed, avoid drawing myview on top of it + if (centralWidget->myToolBar) + if(!centralWidget->myToolBar->isHidden()) + newSize +=QSize(0,centralWidget->myToolBar->height()); + + move(newSize.width(),newSize.height()); + } + } + + return QGraphicsView::resizeEvent(event); +} + +void ViewPort::paintEvent(QPaintEvent* event) +{ + + QPainter myPainter(viewport()); + myPainter.setWorldTransform(param_matrixWorld); + + draw2D(&myPainter); + +#if defined( HAVE_QT_OPENGL ) + if ( mode_display == CV_MODE_OPENGL && on_openGL_draw3D) + { + myPainter.save(); // Needed when using the GL1 engine + myPainter.beginNativePainting(); // Needed when using the GL2 engine + + setGL(width(),height()); + on_openGL_draw3D(on_openGL_param); + unsetGL(); + + myPainter.endNativePainting(); // Needed when using the GL2 engine + myPainter.restore(); // Needed when using the GL1 engine + } +#endif + + //Now disable matrixWorld for overlay display + myPainter.setWorldMatrixEnabled (false ); + + //in mode zoom/panning + if (param_matrixWorld.m11()>1) + { + + if (param_matrixWorld.m11()>=threshold_zoom_img_region) + { + if (centralWidget->param_flags == CV_WINDOW_NORMAL) + startDisplayInfo("WARNING: The values displayed are the resized image's values. If you want the original image's values, use CV_WINDOW_AUTOSIZE", 1000); + + drawImgRegion(&myPainter); + } + + drawViewOverview(&myPainter); + } + + //for information overlay + if (drawInfo) + drawInstructions(&myPainter); + + //for statusbar + if (centralWidget->myStatusBar) + drawStatusBar(); + + QGraphicsView::paintEvent(event); +} + +void ViewPort::draw2D(QPainter *painter) +{ + image2Draw_qt = QImage(image2Draw_mat->data.ptr, image2Draw_mat->cols, image2Draw_mat->rows,image2Draw_mat->step,QImage::Format_RGB888); + image2Draw_qt_resized = image2Draw_qt.scaled(viewport()->width(),viewport()->height(),Qt::IgnoreAspectRatio,Qt::FastTransformation);//Qt::SmoothTransformation); + painter->drawImage(0,0,image2Draw_qt_resized); +} + +//only if CV_8UC1 or CV_8UC3 +void ViewPort::drawStatusBar() +{ + if (nbChannelOriginImage!=CV_8UC1 && nbChannelOriginImage!=CV_8UC3) + return; + + if (mouseCoordinate.x()>=0 && + mouseCoordinate.y()>=0 && + mouseCoordinate.x()=0 && mouseCoordinate.y()>=0) + { + QRgb rgbValue = image2Draw_qt.pixel(mouseCoordinate); + + if (nbChannelOriginImage==CV_8UC3 ) + { + centralWidget->myStatusBar_msg->setText(tr("(x=%1, y=%2) ~ ") + .arg(mouseCoordinate.x()) + .arg(mouseCoordinate.y())+ + tr("R:%3 ").arg(qRed(rgbValue))+//.arg(value.val[0])+ + tr("G:%4 ").arg(qGreen(rgbValue))+//.arg(value.val[1])+ + tr("B:%5").arg(qBlue(rgbValue))//.arg(value.val[2]) + ); + } + + if (nbChannelOriginImage==CV_8UC1) + { + //all the channel have the same value (because of cvconvertimage), so only the r channel is dsplayed + centralWidget->myStatusBar_msg->setText(tr("(x=%1, y=%2) ~ ") + .arg(mouseCoordinate.x()) + .arg(mouseCoordinate.y())+ + tr("L:%3 ").arg(qRed(rgbValue)) + ); + } + } +} + +//accept only CV_8UC1 and CV_8UC8 image for now +void ViewPort::drawImgRegion(QPainter *painter) +{ + + if (nbChannelOriginImage!=CV_8UC1 && nbChannelOriginImage!=CV_8UC3) + return; + + qreal offsetX = param_matrixWorld.dx()/param_matrixWorld.m11(); + offsetX = offsetX - floor(offsetX); + qreal offsetY = param_matrixWorld.dy()/param_matrixWorld.m11(); + offsetY = offsetY - floor(offsetY); + + QSize view = size(); + QVarLengthArray linesX; + for (qreal x = offsetX*param_matrixWorld.m11(); x < view.width(); x += param_matrixWorld.m11() ) + linesX.append(QLineF(x, 0, x, view.height())); + + QVarLengthArray linesY; + for (qreal y = offsetY*param_matrixWorld.m11(); y < view.height(); y += param_matrixWorld.m11() ) + linesY.append(QLineF(0, y, view.width(), y)); + + + QFont f = painter->font(); + int original_font_size = f.pointSize(); + //change font size + //f.setPointSize(4+(param_matrixWorld.m11()-threshold_zoom_img_region)/5); + f.setPixelSize(10+(param_matrixWorld.m11()-threshold_zoom_img_region)/5); + painter->setFont(f); + QString val; + QRgb rgbValue; + + QPointF point1;//sorry, I do not know how to name it + QPointF point2;//idem + + for (int j=-1;j= 0 && point2.y() >= 0) + rgbValue = image2Draw_qt_resized.pixel(QPoint(point2.x(),point2.y())); + else + rgbValue = qRgb(0,0,0); + + if (nbChannelOriginImage==CV_8UC3) + { + //for debug + /* + val = tr("%1 %2").arg(point2.x()).arg(point2.y()); + painter->setPen(QPen(Qt::black, 1)); + painter->drawText(QRect(point1.x(),point1.y(),param_matrixWorld.m11(),param_matrixWorld.m11()/2), + Qt::AlignCenter, val); + */ + + val = tr("%1").arg(qRed(rgbValue)); + painter->setPen(QPen(Qt::red, 1)); + painter->drawText(QRect(point1.x(),point1.y(),param_matrixWorld.m11(),param_matrixWorld.m11()/3), + Qt::AlignCenter, val); + + val = tr("%1").arg(qGreen(rgbValue)); + painter->setPen(QPen(Qt::green, 1)); + painter->drawText(QRect(point1.x(),point1.y()+param_matrixWorld.m11()/3,param_matrixWorld.m11(),param_matrixWorld.m11()/3), + Qt::AlignCenter, val); + + val = tr("%1").arg(qBlue(rgbValue)); + painter->setPen(QPen(Qt::blue, 1)); + painter->drawText(QRect(point1.x(),point1.y()+2*param_matrixWorld.m11()/3,param_matrixWorld.m11(),param_matrixWorld.m11()/3), + Qt::AlignCenter, val); + + } + + if (nbChannelOriginImage==CV_8UC1) + { + + val = tr("%1").arg(qRed(rgbValue)); + painter->drawText(QRect(point1.x(),point1.y(),param_matrixWorld.m11(),param_matrixWorld.m11()), + Qt::AlignCenter, val); + } + } + + painter->setPen(QPen(Qt::black, 1)); + painter->drawLines(linesX.data(), linesX.size()); + painter->drawLines(linesY.data(), linesY.size()); + + //restore font size + f.setPointSize(original_font_size); + painter->setFont(f); + +} + +void ViewPort::drawViewOverview(QPainter *painter) +{ + QSize viewSize = size(); + viewSize.scale ( 100, 100,Qt::KeepAspectRatio ); + + const int margin = 5; + + //draw the image's location + painter->setBrush(QColor(0, 0, 0, 127)); + painter->setPen(Qt::darkGreen); + painter->drawRect(QRect(width()-viewSize.width()-margin, 0,viewSize.width(),viewSize.height())); + + //daw the view's location inside the image + qreal ratioSize = 1/param_matrixWorld.m11(); + qreal ratioWindow = (qreal)(viewSize.height())/(qreal)(size().height()); + painter->setPen(Qt::darkBlue); + painter->drawRect(QRectF(width()-viewSize.width()-positionCorners.left()*ratioSize*ratioWindow-margin, + -positionCorners.top()*ratioSize*ratioWindow, + (viewSize.width()-1)*ratioSize, + (viewSize.height()-1)*ratioSize) + ); +} + +void ViewPort::drawInstructions(QPainter *painter) +{ + QFontMetrics metrics = QFontMetrics(font()); + int border = qMax(4, metrics.leading()); + + QRect rect = metrics.boundingRect(0, 0, width() - 2*border, int(height()*0.125), + Qt::AlignCenter | Qt::TextWordWrap, infoText); + painter->setRenderHint(QPainter::TextAntialiasing); + painter->fillRect(QRect(0, 0, width(), rect.height() + 2*border), + QColor(0, 0, 0, 127)); + painter->setPen(Qt::white); + painter->fillRect(QRect(0, 0, width(), rect.height() + 2*border), + QColor(0, 0, 0, 127)); + + painter->drawText((width() - rect.width())/2, border, + rect.width(), rect.height(), + Qt::AlignCenter | Qt::TextWordWrap, infoText); +} + + + + + + + + + + + + + + +#if defined( HAVE_QT_OPENGL )//all this section -> not tested + +void ViewPort::initGL() +{ + glShadeModel( GL_SMOOTH ); + glHint( GL_PERSPECTIVE_CORRECTION_HINT, GL_NICEST ); + glEnable( GL_TEXTURE_2D ); + glEnable( GL_CULL_FACE ); + glEnable( GL_DEPTH_TEST ); +} + +//from http://steinsoft.net/index.php?site=Programming/Code%20Snippets/OpenGL/gluperspective +//do not want to link glu +void ViewPort::icvgluPerspective(GLdouble fovy, GLdouble aspect, GLdouble zNear, GLdouble zFar) +{ + GLdouble xmin, xmax, ymin, ymax; + + ymax = zNear * tan(fovy * M_PI / 360.0); + ymin = -ymax; + xmin = ymin * aspect; + xmax = ymax * aspect; + + + glFrustum(xmin, xmax, ymin, ymax, zNear, zFar); +} + + +void ViewPort::setGL(int width, int height) +{ + glMatrixMode(GL_PROJECTION); + glPushMatrix(); + glLoadIdentity(); + icvgluPerspective(angle, float(width) / float(height), zmin, zmax); + glMatrixMode(GL_MODELVIEW); + glPushMatrix(); + glLoadIdentity(); +} + +void ViewPort::unsetGL() +{ + glPopMatrix(); + glMatrixMode(GL_PROJECTION); + glPopMatrix(); +} +#endif + +#endif >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 06:50:12 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 8AD9C386; Wed, 25 Sep 2013 06:50:12 +0000 (UTC) (envelope-from edwin@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 605D82BC1; Wed, 25 Sep 2013 06:50:12 +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 r8P6oCx3020537; Wed, 25 Sep 2013 06:50:12 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8P6oCV9020536; Wed, 25 Sep 2013 06:50:12 GMT (envelope-from edwin) Date: Wed, 25 Sep 2013 06:50:12 GMT Message-Id: <201309250650.r8P6oCV9020536@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jhale@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182366: graphics/opencv: window_QT.cpp:316:5: error: use of undeclared identifier 'usleep' 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: Wed, 25 Sep 2013 06:50:12 -0000 Synopsis: graphics/opencv: window_QT.cpp:316:5: error: use of undeclared identifier 'usleep' Responsible-Changed-From-To: freebsd-ports-bugs->jhale Responsible-Changed-By: edwin Responsible-Changed-When: Wed Sep 25 06:50:12 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182366 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 09:10:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id C6F106B7 for ; Wed, 25 Sep 2013 09:10:01 +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 9AF462484 for ; Wed, 25 Sep 2013 09:10:01 +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 r8P9A163059256 for ; Wed, 25 Sep 2013 09:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8P9A1Jg059255; Wed, 25 Sep 2013 09:10:01 GMT (envelope-from gnats) Date: Wed, 25 Sep 2013 09:10:01 GMT Message-Id: <201309250910.r8P9A1Jg059255@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Tommy Scheunemann Subject: Re: ports/182352: x11-wm/wmconfig port update X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Tommy Scheunemann List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Sep 2013 09:10:01 -0000 The following reply was made to PR ports/182352; it has been noted by GNATS. From: Tommy Scheunemann To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/182352: x11-wm/wmconfig port update Date: Wed, 25 Sep 2013 11:07:15 +0200 (CEST) This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. --8323329-182524507-1380100038=:1559 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII Sorry, the local proxy cache gave the wrong .bz2 archive. The attached patch has the correct checksum and size. --8323329-182524507-1380100038=:1559 Content-Type: TEXT/PLAIN; charset=US-ASCII; name=log Content-Transfer-Encoding: BASE64 Content-ID: Content-Description: Content-Disposition: attachment; filename=log ZGlmZiAtcnVOIHdtY29uZmlnX29sZC9NYWtlZmlsZSB3bWNvbmZpZy9NYWtl ZmlsZQ0KLS0tIHdtY29uZmlnX29sZC9NYWtlZmlsZQkyMDEzLTA5LTE5IDA5 OjU3OjM2LjAwMDAwMDAwMCArMDIwMA0KKysrIHdtY29uZmlnL01ha2VmaWxl CTIwMTMtMDktMjEgMTE6NTI6MjYuMDAwMDAwMDAwICswMjAwDQpAQCAtMSw4 ICsxLDggQEANCiAjIENyZWF0ZWQgYnk6IFRvbW15IFNjaGV1bmVtYW5uIDxu ZXRAYXJyaXNocS5vcmc+DQotIyAkRnJlZUJTRDogaGVhZC94MTEtd20vd21j b25maWcvTWFrZWZpbGUgMzE4MTg3IDIwMTMtMDUtMTQgMTk6MDk6MTJaIHJh a3VjbyAkDQorIyAkRnJlZUJTRDogaGVhZC94MTEtd20vd21jb25maWcvTWFr ZWZpbGUgMzI3Nzg2IDIwMTMtMDktMjEgMDA6MDE6MTZaIGJhcHQgJA0KIA0K IFBPUlROQU1FPQl3bWNvbmZpZw0KLVBPUlRWRVJTSU9OPQkxLjQuMA0KK1BP UlRWRVJTSU9OPQkxLjQuMQ0KIENBVEVHT1JJRVM9CXgxMS13bQ0KIE1BU1RF Ul9TSVRFUz0JaHR0cDovL3d3dy5hcnJpc2hxLm5ldC9maWxlcy8NCiANCkBA IC0yMCw2ICsyMCw3IEBADQogDQogT1BUSU9OU19ERUZJTkU9CU5MUyBET0NT DQogDQorTk9fU1RBR0U9CXllcw0KIC5pbmNsdWRlIDxic2QucG9ydC5vcHRp b25zLm1rPg0KIA0KIC5pZiAke1BPUlRfT1BUSU9OUzpNTkxTfQ0KZGlmZiAt cnVOIHdtY29uZmlnX29sZC9kaXN0aW5mbyB3bWNvbmZpZy9kaXN0aW5mbw0K LS0tIHdtY29uZmlnX29sZC9kaXN0aW5mbwkyMDEzLTA3LTA5IDEzOjEyOjA2 LjAwMDAwMDAwMCArMDIwMA0KKysrIHdtY29uZmlnL2Rpc3RpbmZvCTIwMTMt MDktMjUgMTE6MDI6MzYuMDAwMDAwMDAwICswMjAwDQpAQCAtMSwyICsxLDIg QEANCi1TSEEyNTYgKHdtY29uZmlnLTEuNC4wLnRhci5iejIpID0gZDcyM2Y1 YjdiOWMzMDYwODgzY2UxYzMxNjVmYzZlZmNlMjYwMmYwZjFhYWNlY2RmMTE4 MDQyYmU2NTg0M2UxNA0KLVNJWkUgKHdtY29uZmlnLTEuNC4wLnRhci5iejIp ID0gMjI2MjU1DQorU0hBMjU2ICh3bWNvbmZpZy0xLjQuMS50YXIuYnoyKSA9 IDg0NTc3Y2M1MTRhODI3OTgxODBjOTM5NjI1YjIwZGZlZjU5NWE3NDZkNjFj NzBlZDBjZGVkN2EzNDgxODhiNmYNCitTSVpFICh3bWNvbmZpZy0xLjQuMS50 YXIuYnoyKSA9IDIzMjM1MQ0K --8323329-182524507-1380100038=:1559-- From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 09:20: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 97D2F943 for ; Wed, 25 Sep 2013 09:20: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 786522521 for ; Wed, 25 Sep 2013 09:20: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 r8P9K0l0061914 for ; Wed, 25 Sep 2013 09:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8P9K0Cw061913; Wed, 25 Sep 2013 09:20:00 GMT (envelope-from gnats) Resent-Date: Wed, 25 Sep 2013 09:20:00 GMT Resent-Message-Id: <201309250920.r8P9K0Cw061913@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, Olivier Duchateau 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 4BE00883 for ; Wed, 25 Sep 2013 09:18:03 +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 2242E250A for ; Wed, 25 Sep 2013 09:18:03 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8P9I2Xl055058 for ; Wed, 25 Sep 2013 09:18:02 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8P9I2Pn055057; Wed, 25 Sep 2013 09:18:02 GMT (envelope-from nobody) Message-Id: <201309250918.r8P9I2Pn055057@oldred.freebsd.org> Date: Wed, 25 Sep 2013 09:18:02 GMT From: Olivier Duchateau To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182367: [UPDATE] devel/libgee to 0.10.5 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: Wed, 25 Sep 2013 09:20:00 -0000 >Number: 182367 >Category: ports >Synopsis: [UPDATE] devel/libgee to 0.10.5 >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: Wed Sep 25 09:20:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Olivier Duchateau >Release: >Organization: >Environment: >Description: - Update to 0.10.5 (the latest stable release, which supports Vala 0.20) - Support STAGEDIR - Sort pkg-plist - Switch to USES= gmake >How-To-Repeat: >Fix: Patch attached with submission follows: Index: Makefile =================================================================== --- Makefile (révision 328257) +++ Makefile (copie de travail) @@ -3,22 +3,21 @@ # $MCom: ports/devel/libgee/Makefile,v 1.13 2012/10/14 20:47:22 kwm Exp $ PORTNAME= libgee -PORTVERSION= 0.8.5 +PORTVERSION= 0.10.5 CATEGORIES= devel MASTER_SITES= GNOME MAINTAINER= kwm@FreeBSD.org COMMENT= GObject collection library -BUILD_DEPENDS= gobject-introspection>=0.9.0:${PORTSDIR}/devel/gobject-introspection +BUILD_DEPENDS= gobject-introspection>=0.9.0:${PORTSDIR}/devel/gobject-introspection \ + valac:${PORTSDIR}/lang/vala GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-introspection=yes -USE_GMAKE= yes USE_XZ= yes USE_GNOME= glib20 gnomehier gnomehack -USES= pkgconfig +USES= pkgconfig gmake USE_LDCONFIG= yes -NO_STAGE= yes .include Index: distinfo =================================================================== --- distinfo (révision 328257) +++ distinfo (copie de travail) @@ -1,2 +1,2 @@ -SHA256 (libgee-0.8.5.tar.xz) = f1349ca82dc5da49c98ce14020f1ed7bd41d8826d4c72526d1a46f82d99e5c09 -SIZE (libgee-0.8.5.tar.xz) = 583804 +SHA256 (libgee-0.10.5.tar.xz) = 84d801cac35cb93ae779e77cab8c379c31a3b30b55a5fb021af2008a38f87b15 +SIZE (libgee-0.10.5.tar.xz) = 626524 Index: pkg-plist =================================================================== --- pkg-plist (révision 328257) +++ pkg-plist (copie de travail) @@ -1,8 +1,8 @@ include/gee-0.8/gee.h +lib/girepository-1.0/Gee-0.8.typelib lib/libgee-0.8.la lib/libgee-0.8.so -lib/libgee-0.8.so.2 -lib/girepository-1.0/Gee-0.8.typelib +lib/libgee-0.8.so.4 libdata/pkgconfig/gee-0.8.pc share/gir-1.0/Gee-0.8.gir share/vala/vapi/gee-0.8.vapi >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 09:20:08 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 BC7DE987; Wed, 25 Sep 2013 09:20:08 +0000 (UTC) (envelope-from edwin@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 93B442527; Wed, 25 Sep 2013 09:20:08 +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 r8P9K8OC062048; Wed, 25 Sep 2013 09:20:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8P9K8iq062047; Wed, 25 Sep 2013 09:20:08 GMT (envelope-from edwin) Date: Wed, 25 Sep 2013 09:20:08 GMT Message-Id: <201309250920.r8P9K8iq062047@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kwm@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182367: [UPDATE] devel/libgee to 0.10.5 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: Wed, 25 Sep 2013 09:20:08 -0000 Synopsis: [UPDATE] devel/libgee to 0.10.5 Responsible-Changed-From-To: freebsd-ports-bugs->kwm Responsible-Changed-By: edwin Responsible-Changed-When: Wed Sep 25 09:20:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182367 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 09:50:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id E846A377 for ; Wed, 25 Sep 2013 09:50: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 CA0562770 for ; Wed, 25 Sep 2013 09:50: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 r8P9o0a1067393 for ; Wed, 25 Sep 2013 09:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8P9o0FQ067392; Wed, 25 Sep 2013 09:50:00 GMT (envelope-from gnats) Resent-Date: Wed, 25 Sep 2013 09:50:00 GMT Resent-Message-Id: <201309250950.r8P9o0FQ067392@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, Sten Spans 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 43F57175 for ; Wed, 25 Sep 2013 09:42:49 +0000 (UTC) (envelope-from sten@mx1.blinkenlights.nl) Received: from mx1.blinkenlights.nl (mx1.blinkenlights.nl [IPv6:2a02:898:17:8000::25]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 07DB126C7 for ; Wed, 25 Sep 2013 09:42:48 +0000 (UTC) Received: by mx1.blinkenlights.nl (Postfix, from userid 1001) id F152B1141C; Wed, 25 Sep 2013 11:42:38 +0200 (CEST) Message-Id: <20130925094238.F152B1141C@mx1.blinkenlights.nl> Date: Wed, 25 Sep 2013 11:42:38 +0200 (CEST) From: Sten Spans To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/182368: dns/powerdns-recursor: update to 3.5.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Sten Spans List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Sep 2013 09:50:01 -0000 >Number: 182368 >Category: ports >Synopsis: dns/powerdns-recursor: update to 3.5.3 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Sep 25 09:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Sten Spans >Release: FreeBSD 9.1-RELEASE-p4 amd64 >Organization: >Environment: System: FreeBSD towel.blinkenlights.nl 9.1-RELEASE-p4 FreeBSD 9.1-RELEASE-p4 #0: Mon Jun 17 11:42:37 UTC 2013 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: The following patch updates the port to 3.5.3 Changelog is here: http://doc.powerdns.com/html/changelog.html#changelog-recursor-3.5.3 >How-To-Repeat: >Fix: diff -Nru foo/Makefile powerdns-recursor/Makefile --- foo/Makefile 2013-09-25 11:28:50.000000000 +0200 +++ powerdns-recursor/Makefile 2013-09-25 11:28:26.000000000 +0200 @@ -2,7 +2,7 @@ # $FreeBSD: dns/powerdns-recursor/Makefile 318527 2013-05-19 14:27:56Z rakuco $ PORTNAME= powerdns-recursor -PORTVERSION= 3.5.1 +PORTVERSION= 3.5.3 CATEGORIES= dns ipv6 MASTER_SITES= http://downloads.powerdns.com/releases/ \ http://mirrors.evolva.ro/powerdns.com/releases/ diff -Nru foo/distinfo powerdns-recursor/distinfo --- foo/distinfo 2013-05-19 16:27:56.000000000 +0200 +++ powerdns-recursor/distinfo 2013-09-25 11:29:40.000000000 +0200 @@ -1,2 +1,2 @@ -SHA256 (pdns-recursor-3.5.1.tar.bz2) = 30655996d1963e259d4fc8648184031bf9cb83f64510d0b00539d3ce698b2824 -SIZE (pdns-recursor-3.5.1.tar.bz2) = 176413 +SHA256 (pdns-recursor-3.5.3.tar.bz2) = 192c0b47a1cfcdccaa88d70fd33766a4c381f4223f966416f15e169df5d58eaa +SIZE (pdns-recursor-3.5.3.tar.bz2) = 176298 diff -Nru foo/files/patch-manpages powerdns-recursor/files/patch-manpages --- foo/files/patch-manpages 2013-05-19 16:27:56.000000000 +0200 +++ powerdns-recursor/files/patch-manpages 2013-09-25 11:33:28.000000000 +0200 @@ -4,8 +4,8 @@ .\" Source: \ \& 3.0 .\" Language: English .\" --.TH "REC_CONTROL" "1" "05/03/2013" "\ \& 3\&.0" "\ \&" -+.TH "REC_CONTROL" "8" "05/03/2013" "\ \& 3\&.0" "\ \&" +-.TH "REC_CONTROL" "1" "09/17/2013" "\ \& 3\&.0" "\ \&" ++.TH "REC_CONTROL" "8" "09/17/2013" "\ \& 3\&.0" "\ \&" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -33,8 +33,8 @@ .\" Source: \ \& 3.0 .\" Language: English .\" --.TH "PDNS_RECURSOR" "1" "05/03/2013" "\ \& 3\&.0" "\ \&" -+.TH "PDNS_RECURSOR" "8" "05/03/2013" "\ \& 3\&.0" "\ \&" +-.TH "PDNS_RECURSOR" "1" "09/17/2013" "\ \& 3\&.0" "\ \&" ++.TH "PDNS_RECURSOR" "8" "09/17/2013" "\ \& 3\&.0" "\ \&" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 10:27:22 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 364D7ED0; Wed, 25 Sep 2013 10:27:22 +0000 (UTC) (envelope-from bdrewery@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 08E8429D4; Wed, 25 Sep 2013 10:27:22 +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 r8PARLY6076123; Wed, 25 Sep 2013 10:27:21 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8PARL5Z076122; Wed, 25 Sep 2013 05:27:21 -0500 (CDT) (envelope-from bdrewery) Date: Wed, 25 Sep 2013 05:27:21 -0500 (CDT) Message-Id: <201309251027.r8PARL5Z076122@freefall.freebsd.org> To: bdrewery@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, bdrewery@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/182317: New port: databases/riak Riak is a distributed database designed for maximum availability 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: Wed, 25 Sep 2013 10:27:22 -0000 Synopsis: New port: databases/riak Riak is a distributed database designed for maximum availability Responsible-Changed-From-To: freebsd-ports-bugs->bdrewery Responsible-Changed-By: bdrewery Responsible-Changed-When: Wed Sep 25 05:27:21 CDT 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=182317 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 10:30:01 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 2708BFA3 for ; Wed, 25 Sep 2013 10:30:01 +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 E746E2A03 for ; Wed, 25 Sep 2013 10: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 r8PAU0Uj076310 for ; Wed, 25 Sep 2013 10: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 r8PAU0Q7076309; Wed, 25 Sep 2013 10:30:00 GMT (envelope-from gnats) Resent-Date: Wed, 25 Sep 2013 10:30:00 GMT Resent-Message-Id: <201309251030.r8PAU0Q7076309@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, Guillaume Bibaut Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 2A1D4DB9 for ; Wed, 25 Sep 2013 10:25:03 +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 1807029BB for ; Wed, 25 Sep 2013 10:25:03 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8PAP2ZA080925 for ; Wed, 25 Sep 2013 10:25:02 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8PAP2u6080901; Wed, 25 Sep 2013 10:25:02 GMT (envelope-from nobody) Message-Id: <201309251025.r8PAP2u6080901@oldred.freebsd.org> Date: Wed, 25 Sep 2013 10:25:02 GMT From: Guillaume Bibaut To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182369: devel/llvm does not compile with 9.1-RELEASE default clang (3.1) 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: Wed, 25 Sep 2013 10:30:01 -0000 >Number: 182369 >Category: ports >Synopsis: devel/llvm does not compile with 9.1-RELEASE default clang (3.1) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Sep 25 10:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Guillaume Bibaut >Release: 9.1-RELEASE >Organization: - >Environment: FreeBSD bsd-current 9.1-RELEASE-p7 FreeBSD 9.1-RELEASE-p7 #0: Mon Sep 9 21:34:37 UTC 2013 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: I've set up a poudriere jail to use the default clang installed with 9.1-RELEASE to build packages. For some time it was compiling everything, but for a week now I'm not able to build devel/llvm with that default clang. I can see with that it compiles nicely with gcc 4.2.1. >How-To-Repeat: install a freebsd 9.1-release vm, and install poudriere create a jail like this : # poudriere jail -c -j 91Rclang -v 9.1-RELEASE -a amd64 # poudriere jail -u -j 91Rclang # mkdir /usr/local/etc/poudriere.d # cat << EOF >> /usr/local/etc/poudriere.d/91Rclang-make.conf WITH_PKGNG=yes CC=clang CXX=clang++ CPP=clang-cpp NO_WERROR= WERROR= EOF default options for ports is ok # poudriere bulk -j 91Rclang devel/llvm And here is the end of the llvm build log : ===> Building for llvm-3.2_3 llvm[0]: Constructing LLVMBuild project information. gmake[1]: Entering directory `/wrkdirs/usr/ports/devel/llvm/work/llvm-3.2.src/lib/Support' llvm[1]: Compiling APFloat.cpp for Release build In file included from APFloat.cpp:15: In file included from /wrkdirs/usr/ports/devel/llvm/work/llvm-3.2.src/include/llvm/ADT/APFloat.h:104: In file included from /wrkdirs/usr/ports/devel/llvm/work/llvm-3.2.src/include/llvm/ADT/APInt.h:18: In file included from /wrkdirs/usr/ports/devel/llvm/work/llvm-3.2.src/include/llvm/ADT/ArrayRef.h:13: /wrkdirs/usr/ports/devel/llvm/work/llvm-3.2.src/include/llvm/ADT/SmallVector.h:183:22: error: no member named 'move' in namespace 'std' *Dest = ::std::move(*I); ~~~~~~~^ /wrkdirs/usr/ports/devel/llvm/work/llvm-3.2.src/include/llvm/ADT/SmallVector.h:198:24: error: no member named 'move' in namespace 'std' *--Dest = ::std::move(*--E); ~~~~~~~^ /wrkdirs/usr/ports/devel/llvm/work/llvm-3.2.src/include/llvm/ADT/SmallVector.h:211:39: error: no member named 'move' in namespace 'std' ::new ((void*) &*Dest) T(::std::move(*I)); ~~~~~~~^ /wrkdirs/usr/ports/devel/llvm/work/llvm-3.2.src/include/llvm/ADT/SmallVector.h:246:44: error: no member named 'move' in namespace 'std' ::new ((void*) this->end()) T(::std::move(Elt)); ~~~~~~~^ /wrkdirs/usr/ports/devel/llvm/work/llvm-3.2.src/include/llvm/ADT/SmallVector.h:426:23: error: no member named 'move' in namespace 'std' T Result = ::std::move(this->back()); ~~~~~~~^ /wrkdirs/usr/ports/devel/llvm/work/llvm-3.2.src/include/llvm/ADT/SmallVector.h:501:30: error: no member named 'move' in namespace 'std' this->push_back(::std::move(Elt)); ~~~~~~~^ /wrkdirs/usr/ports/devel/llvm/work/llvm-3.2.src/include/llvm/ADT/SmallVector.h:510:44: error: no member named 'move' in namespace 'std' ::new ((void*) this->end()) T(::std::move(this->back())); ~~~~~~~^ /wrkdirs/usr/ports/devel/llvm/work/llvm-3.2.src/include/llvm/ADT/SmallVector.h:521:19: error: no member named 'move' in namespace 'std' *I = ::std::move(*EltPtr); ~~~~~~~^ /wrkdirs/usr/ports/devel/llvm/work/llvm-3.2.src/include/llvm/ADT/SmallVector.h:904:44: error: no member named 'move' in namespace 'std' SmallVectorImpl::operator=(::std::move(RHS)); ~~~~~~~^ /wrkdirs/usr/ports/devel/llvm/work/llvm-3.2.src/include/llvm/ADT/SmallVector.h:908:42: error: no member named 'move' in namespace 'std' SmallVectorImpl::operator=(::std::move(RHS)); ~~~~~~~^ 10 errors generated. gmake[1]: *** [/wrkdirs/usr/ports/devel/llvm/work/llvm-3.2.src/lib/Support/Release/APFloat.o] Error 1 gmake[1]: Leaving directory `/wrkdirs/usr/ports/devel/llvm/work/llvm-3.2.src/lib/Support' gmake: *** [all] Error 1 *** [do-build] Error code 1 Stop in /usr/ports/devel/llvm. >Fix: - >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 10:30:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 8A463FD5; Wed, 25 Sep 2013 10:30:09 +0000 (UTC) (envelope-from edwin@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 613722A29; Wed, 25 Sep 2013 10:30:09 +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 r8PAU9b8076395; Wed, 25 Sep 2013 10:30:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8PAU9QX076394; Wed, 25 Sep 2013 10:30:09 GMT (envelope-from edwin) Date: Wed, 25 Sep 2013 10:30:09 GMT Message-Id: <201309251030.r8PAU9QX076394@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, brooks@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182369: devel/llvm does not compile with 9.1-RELEASE default clang (3.1) 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: Wed, 25 Sep 2013 10:30:09 -0000 Synopsis: devel/llvm does not compile with 9.1-RELEASE default clang (3.1) Responsible-Changed-From-To: freebsd-ports-bugs->brooks Responsible-Changed-By: edwin Responsible-Changed-When: Wed Sep 25 10:30:09 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182369 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 10:50: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 AA1A96C5 for ; Wed, 25 Sep 2013 10:50: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 8A4092B23 for ; Wed, 25 Sep 2013 10:50: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 r8PAo0uv080030 for ; Wed, 25 Sep 2013 10:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8PAo0Vh080029; Wed, 25 Sep 2013 10:50:00 GMT (envelope-from gnats) Resent-Date: Wed, 25 Sep 2013 10:50:00 GMT Resent-Message-Id: <201309251050.r8PAo0Vh080029@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, Vitaly Magerya Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 067B85ED for ; Wed, 25 Sep 2013 10:46:07 +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 D8D132AF9 for ; Wed, 25 Sep 2013 10:46:06 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8PAk64I043021 for ; Wed, 25 Sep 2013 10:46:06 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8PAk6oQ043020; Wed, 25 Sep 2013 10:46:06 GMT (envelope-from nobody) Message-Id: <201309251046.r8PAk6oQ043020@oldred.freebsd.org> Date: Wed, 25 Sep 2013 10:46:06 GMT From: Vitaly Magerya To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182370: Update devel/lightning from 2.0.0 to 2.0.1 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: Wed, 25 Sep 2013 10:50:00 -0000 >Number: 182370 >Category: ports >Synopsis: Update devel/lightning from 2.0.0 to 2.0.1 >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: Wed Sep 25 10:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Vitaly Magerya >Release: >Organization: >Environment: >Description: Update devel/lightning to 2.0.1. This fixes some bugs, and incorporates patches we applied locally. The announcement is at [1], reports logs are at [2]. [1] https://lists.gnu.org/archive/html/lightning/2013-09/msg00006.html [2] https://redports.org/buildarchive/20130925101800-5120/ >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN lightning.orig/Makefile lightning/Makefile --- lightning.orig/Makefile 2013-09-20 20:13:42.000000000 +0300 +++ lightning/Makefile 2013-09-25 13:08:35.000000000 +0300 @@ -2,7 +2,7 @@ # $FreeBSD: devel/lightning/Makefile 327724 2013-09-20 17:13:42Z bapt $ PORTNAME= lightning -PORTVERSION= 2.0.0 +PORTVERSION= 2.0.1 CATEGORIES= devel MASTER_SITES= GNU MASTER_SITE_SUBDIR= ${PORTNAME} diff -ruN lightning.orig/distinfo lightning/distinfo --- lightning.orig/distinfo 2013-09-02 20:17:28.000000000 +0300 +++ lightning/distinfo 2013-09-25 13:09:04.000000000 +0300 @@ -1,2 +1,2 @@ -SHA256 (lightning-2.0.0.tar.gz) = e41736c5c6c40eeb194e3f9fec3209e86f07f9471d0aacc5d35c1c8e55621054 -SIZE (lightning-2.0.0.tar.gz) = 852571 +SHA256 (lightning-2.0.1.tar.gz) = 6513a793937db5b1df62a8cf75ad2195143107efdab914d69f77e3fc6e4e81b1 +SIZE (lightning-2.0.1.tar.gz) = 861965 diff -ruN lightning.orig/files/patch-configure lightning/files/patch-configure --- lightning.orig/files/patch-configure 2013-09-02 20:17:28.000000000 +0300 +++ lightning/files/patch-configure 1970-01-01 03:00:00.000000000 +0300 @@ -1,19 +0,0 @@ ---- configure.orig 2013-08-23 21:12:43.000000000 +0300 -+++ configure 2013-08-25 15:53:56.000000000 +0300 -@@ -11650,6 +11650,7 @@ - fi - - case "$host_os" in -+ *freebsd*) SHLIB="" ;; - *hpux*) SHLIB="-ldld" ;; - *) SHLIB="-ldl" ;; - esac -@@ -11657,7 +11658,7 @@ - - cpu= - case "$target_cpu" in -- i?86|x86_64) cpu=x86 ;; -+ i?86|x86_64|amd64) cpu=x86 ;; - *arm*) cpu=arm ;; - *mips*) cpu=mips ;; - *powerpc*) cpu=ppc ;; diff -ruN lightning.orig/files/patch-include-lightning.h lightning/files/patch-include-lightning.h --- lightning.orig/files/patch-include-lightning.h 2013-09-02 20:17:28.000000000 +0300 +++ lightning/files/patch-include-lightning.h 1970-01-01 03:00:00.000000000 +0300 @@ -1,11 +0,0 @@ ---- include/lightning.h.orig 2013-09-02 13:38:10.000000000 +0300 -+++ include/lightning.h 2013-09-02 14:57:27.000000000 +0300 -@@ -38,7 +38,7 @@ - # define __WORDSIZE WORDSIZE - # elif defined(__SIZEOF_POINTER__) /* ppc aix */ - # define __WORDSIZE (__SIZEOF_POINTER__ << 3) --# elif defined(_ILP32) /* hppa hp-ux */ -+# elif defined(_ILP32) || defined(__i386__) /* hppa hp-ux, i386 gcc 4.2 */ - # define __WORDSIZE 32 - # elif defined(_LP64) /* ia64 hp-ux (with cc +DD64) */ - # define __WORDSIZE 64 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 12:15:29 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 28256E54; Wed, 25 Sep 2013 12:15:29 +0000 (UTC) (envelope-from wg@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 F0E7220EC; Wed, 25 Sep 2013 12:15:28 +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 r8PCFSFh002690; Wed, 25 Sep 2013 12:15:28 GMT (envelope-from wg@freefall.freebsd.org) Received: (from wg@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8PCFSAB002689; Wed, 25 Sep 2013 12:15:28 GMT (envelope-from wg) Date: Wed, 25 Sep 2013 12:15:28 GMT Message-Id: <201309251215.r8PCFSAB002689@freefall.freebsd.org> To: wg@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wg@FreeBSD.org From: wg@FreeBSD.org Subject: Re: ports/182370: Update devel/lightning from 2.0.0 to 2.0.1 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: Wed, 25 Sep 2013 12:15:29 -0000 Synopsis: Update devel/lightning from 2.0.0 to 2.0.1 Responsible-Changed-From-To: freebsd-ports-bugs->wg Responsible-Changed-By: wg Responsible-Changed-When: Wed Sep 25 12:15:28 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=182370 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 12:15:41 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id CA8D7E82; Wed, 25 Sep 2013 12:15:41 +0000 (UTC) (envelope-from wg@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 A004420ED; Wed, 25 Sep 2013 12:15:41 +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 r8PCFftj002783; Wed, 25 Sep 2013 12:15:41 GMT (envelope-from wg@freefall.freebsd.org) Received: (from wg@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8PCFfjd002782; Wed, 25 Sep 2013 12:15:41 GMT (envelope-from wg) Date: Wed, 25 Sep 2013 12:15:41 GMT Message-Id: <201309251215.r8PCFfjd002782@freefall.freebsd.org> To: wg@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wg@FreeBSD.org From: wg@FreeBSD.org Subject: Re: ports/182359: [patch] misc/findutils update to 4.5.12 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: Wed, 25 Sep 2013 12:15:41 -0000 Synopsis: [patch] misc/findutils update to 4.5.12 Responsible-Changed-From-To: freebsd-ports-bugs->wg Responsible-Changed-By: wg Responsible-Changed-When: Wed Sep 25 12:15:41 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=182359 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 12:17:12 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id A26D3FF7; Wed, 25 Sep 2013 12:17:12 +0000 (UTC) (envelope-from wg@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 77991211C; Wed, 25 Sep 2013 12:17:12 +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 r8PCHCgm002890; Wed, 25 Sep 2013 12:17:12 GMT (envelope-from wg@freefall.freebsd.org) Received: (from wg@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8PCHC0e002889; Wed, 25 Sep 2013 12:17:12 GMT (envelope-from wg) Date: Wed, 25 Sep 2013 12:17:12 GMT Message-Id: <201309251217.r8PCHC0e002889@freefall.freebsd.org> To: wg@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wg@FreeBSD.org From: wg@FreeBSD.org Subject: Re: ports/182368: dns/powerdns-recursor: update to 3.5.3 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: Wed, 25 Sep 2013 12:17:12 -0000 Synopsis: dns/powerdns-recursor: update to 3.5.3 Responsible-Changed-From-To: freebsd-ports-bugs->wg Responsible-Changed-By: wg Responsible-Changed-When: Wed Sep 25 12:17:12 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=182368 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 12:19:35 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 4CA221F9; Wed, 25 Sep 2013 12:19:35 +0000 (UTC) (envelope-from wg@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 218602143; Wed, 25 Sep 2013 12:19:35 +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 r8PCJYm3003014; Wed, 25 Sep 2013 12:19:34 GMT (envelope-from wg@freefall.freebsd.org) Received: (from wg@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8PCJYOt003013; Wed, 25 Sep 2013 12:19:34 GMT (envelope-from wg) Date: Wed, 25 Sep 2013 12:19:34 GMT Message-Id: <201309251219.r8PCJYOt003013@freefall.freebsd.org> To: wg@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wg@FreeBSD.org From: wg@FreeBSD.org Subject: Re: ports/182246: [MAINTAINER] dns/opendnssec: update to 1.3.15 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: Wed, 25 Sep 2013 12:19:35 -0000 Synopsis: [MAINTAINER] dns/opendnssec: update to 1.3.15 Responsible-Changed-From-To: freebsd-ports-bugs->wg Responsible-Changed-By: wg Responsible-Changed-When: Wed Sep 25 12:19:34 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=182246 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 13:00:03 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 A3EECEA1 for ; Wed, 25 Sep 2013 13:00:03 +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 821DB23DD for ; Wed, 25 Sep 2013 13:00:03 +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 r8PD02OO011040 for ; Wed, 25 Sep 2013 13:00:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8PD02mt011039; Wed, 25 Sep 2013 13:00:02 GMT (envelope-from gnats) Resent-Date: Wed, 25 Sep 2013 13:00:02 GMT Resent-Message-Id: <201309251300.r8PD02mt011039@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, Iouri Ivliev Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 4BEBCE81 for ; Wed, 25 Sep 2013 12:58:52 +0000 (UTC) (envelope-from yury@esterdev.com) Received: from smaug.esterdev.com (smaug.esterdev.com [95.167.0.35]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2B5B723CB for ; Wed, 25 Sep 2013 12:58:50 +0000 (UTC) Received: from smaug.esterdev.com (localhost [127.0.0.1]) by smaug.esterdev.com (8.14.7/8.14.7) with ESMTP id r8PCsdvB005996; Wed, 25 Sep 2013 16:54:39 +0400 (MSK) (envelope-from yury@smaug.esterdev.com) Received: (from yury@localhost) by smaug.esterdev.com (8.14.7/8.14.7/Submit) id r8PCsdSn005995; Wed, 25 Sep 2013 16:54:39 +0400 (MSK) (envelope-from yury) Message-Id: <201309251254.r8PCsdSn005995@smaug.esterdev.com> Date: Wed, 25 Sep 2013 16:54:39 +0400 (MSK) From: Iouri Ivliev To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/182371: ports-mgmt/pkg_replace: fixup pattrn matching in pkg_glob() function Cc: Ken DEGUCHI X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Iouri Ivliev List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Sep 2013 13:00:03 -0000 >Number: 182371 >Category: ports >Synopsis: ports-mgmt/pkg_replace: fixup pattrn matching in pkg_glob() function >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Sep 25 13:00:01 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Iouri Ivliev >Release: FreeBSD 8.4-STABLE amd64 >Organization: EsterDev, Ltd. >Environment: System: FreeBSD smaug.esterdev.com 8.4-STABLE FreeBSD 8.4-STABLE #0: Sun Sep 8 23:02:52 UTC 2013 root@smaug.esterdev.com:/usr/obj/usr/src/sys/SMAUG amd64 >Description: When an old pkg tools used, pkg_replace trying to find an installed package looking the subdirectories containing the "+CONTENTS" file in "${PKG_DBDIR}". Shell pattern used to match subdirectory corresponding the package. However, some packages may not matches the pattern. IMHO, more accurate results can be obtained using pkg_info with the extended regular expression (-X key). Patch in the "Fix:" section replaces shell pattern matching with "pkg_info -EX " command. Also this patch fixes use of unset variabel (preserved_files). >How-To-Repeat: $ pkg_info -Ex pkg_replace pkg_replace-0.8.0_2 $ for p in python2 liblqr-1 xorg-fonts-75dpi; do echo pkg_replace:; pkg_replace -n $p; echo pkg_info:; pkg_info -EX "^$p-([a-z]?[0-9]+\.)?([a-z]?[0-9]*[a-z]?\.?)*([_,][0-9]+)*\$"; done pkg_replace: ** No such installed package: python2 pkg_info: python2-2 pkg_replace: ** No such installed package: liblqr-1 pkg_info: liblqr-1-0.4.1_5 pkg_replace: ** No such installed package: xorg-fonts-75dpi pkg_info: xorg-fonts-75dpi-7.7 >Fix: --- ports-mgmt__pkg_replace.diff begins here --- diff -ruN ports-mgmt/pkg_replace.orig/files/patch-pkg_replace_pkgng ports-mgmt/pkg_replace/files/patch-pkg_replace_pkgng --- ports-mgmt/pkg_replace.orig/files/patch-pkg_replace_pkgng 2013-09-25 14:50:58.577970511 +0400 +++ ports-mgmt/pkg_replace/files/patch-pkg_replace_pkgng 2013-09-25 13:51:52.558672626 +0400 @@ -1,5 +1,5 @@ ---- sbin/pkg_replace/pkg_replace.sh.orig 2007-01-25 21:55:46.000000000 +0900 -+++ sbin/pkg_replace/pkg_replace.sh 2013-09-03 06:58:43.000000000 +0900 +--- sbin/pkg_replace/pkg_replace.sh.orig 2007-01-25 12:55:46.000000000 +0000 ++++ sbin/pkg_replace/pkg_replace.sh 2013-09-25 09:49:37.926799231 +0000 @@ -125,14 +125,27 @@ : ${PACKAGEROOT="ftp://ftp.NetBSD.org"} : ${PKG_SUFX=".tgz"} @@ -96,45 +96,66 @@ pkg_name=$1 pkg_pkgdir=${PKG_DBDIR}/$1 -@@ -526,10 +558,27 @@ +@@ -518,7 +550,7 @@ + } + + pkg_glob() { +- local p _var _arg _pattern _deps _req_by ++ local p _var _arg _pattern _deps _req_by _pkgs + + _var=$1; shift + eval ${_var}= +@@ -526,30 +558,27 @@ for _arg in ${1+"$@"}; do _pattern=${_arg#${PKG_DBDIR}/} + if is_yes ${use_pkgng}; then -+ for p in `${PKG_INFO} -g "${_pattern}" 2>/dev/null`; do -+ if is_yes ${opt_depends}; then -+ pkg_depends '_deps' "$p" -+ eval ${_var}=\"\$${_var} \${_deps}\" -+ fi -+ -+ eval ${_var}=\"\$${_var} \$p\" - -+ if is_yes ${opt_required_by}; then -+ pkg_required_by '_req_by' "$p" -+ eval ${_var}=\"\$${_var} \${_req_by}\" -+ fi -+ done -+ if [ -z "${pkgs}" ]; then -+ warn "No such installed package: ${_arg}" -+ fi ++ _pkgs="$(${PKG_INFO} -g "${_pattern}" 2>/dev/null || :)" + else - case ${_pattern} in ++ _pattern="$(echo "${_pattern}" | sed -Ee 's/(\\)?([.+])/\\\2/g')" ++ _pkgs="$(${PKG_INFO} -EX "^${_pattern}-([a-z]?[0-9]+\.)?([a-z]?[0-9]*[a-z]?\.?)*([_,][0-9]+)*\$" 2>/dev/null || :)" ++ fi ++ if [ -z "${_pkgs}" ]; then ++ warn "No such installed package: ${_arg}" ++ continue ++ fi ++ for p in ${_pkgs}; do ++ if is_yes ${opt_depends}; then ++ pkg_depends '_deps' "$p" ++ eval ${_var}=\"\$${_var} \${_deps}\" ++ fi + +- case ${_pattern} in - *\**|*-pl[0-9]*|*-[0-9]*[0-9.][a-z]|*-[0-9]*[0-9]) ;; - *) _pattern="${_pattern}-[0-9]*[0-9a-z]" ;; -+ *\**|*-[0-9]*|*-[brv.][0-9]*|*-a.[0-9]*|*-pl[0-9]*|*-b.r[0-9]*|*-cr.[a-z]*) ;; -+ *) _pattern="${_pattern}-[0-9]*[0-9a-zA-Z]" ;; - esac - - for p in ${PKG_DBDIR}/${_pattern}/+CONTENTS; do -@@ -552,6 +601,7 @@ - warn "No such installed package: ${_arg}" +- esac +- +- for p in ${PKG_DBDIR}/${_pattern}/+CONTENTS; do +- if [ -e "$p" ]; then +- p=${p#${PKG_DBDIR}/} +- p=${p%/+CONTENTS} +- +- if is_yes ${opt_depends}; then +- pkg_depends '_deps' "$p" +- eval ${_var}=\"\$${_var} \${_deps}\" +- fi +- +- eval ${_var}=\"\$${_var} \$p\" ++ eval ${_var}=\"\$${_var} \$p\" + +- if is_yes ${opt_required_by}; then +- pkg_required_by '_req_by' "$p" +- eval ${_var}=\"\$${_var} \${_req_by}\" +- fi +- else +- warn "No such installed package: ${_arg}" ++ if is_yes ${opt_required_by}; then ++ pkg_required_by '_req_by' "$p" ++ eval ${_var}=\"\$${_var} \${_req_by}\" fi done -+ fi done - - set -f -@@ -568,6 +618,12 @@ +@@ -568,6 +597,12 @@ done < "${PKG_DBDIR}/$2/+REQUIRING" fi #else @@ -147,7 +168,7 @@ if [ -r "${PKG_DBDIR}/$2/+CONTENTS" ]; then while read X; do case $X in -@@ -588,6 +644,12 @@ +@@ -588,6 +623,12 @@ pkg_required_by() { local X @@ -160,7 +181,7 @@ eval $1= if [ -r "${PKG_DBDIR}/$2/+REQUIRED_BY" ]; then while read X; do -@@ -597,7 +659,7 @@ +@@ -597,7 +638,7 @@ } pkg_sort() { @@ -169,7 +190,7 @@ _var=$1; shift _sorted= -@@ -612,7 +674,13 @@ +@@ -612,7 +653,13 @@ *" ${_arg} "*) continue ;; esac @@ -184,7 +205,7 @@ pkg_depends '_deps' "${_arg}" for p in ${_deps}; do -@@ -715,7 +783,7 @@ +@@ -715,7 +762,7 @@ if empty ${_log}; then try "$@" || return $? else @@ -193,7 +214,7 @@ { try "$@" || echo $? > "${_cookie}"; } | tee -a "${_log}" || warn "tee(1) failed." -@@ -757,9 +825,11 @@ +@@ -757,9 +804,11 @@ info "Installing '$1'" case $1 in @@ -206,7 +227,7 @@ xtry "${2-}" ${PKG_ADD} ${install_args} "$1" || return 1 ;; -@@ -795,7 +865,11 @@ +@@ -795,7 +844,11 @@ deinstall_args= is_yes ${opt_force} && deinstall_args="-f" @@ -218,7 +239,7 @@ #ifdef WITH_PKGSRC if [ -e "${PKG_DBDIR}/$1/+PRESERVE" ]; then -@@ -915,7 +989,11 @@ +@@ -915,7 +968,11 @@ *) subdir="${OS_MAJOR}-stable" ;; esac @@ -230,7 +251,7 @@ #endif #endif uri="${PACKAGEROOT}${uri_path}${pkg}" -@@ -987,7 +1065,11 @@ +@@ -987,7 +1044,11 @@ return 1 fi #else @@ -242,7 +263,7 @@ #endif #endif } -@@ -1031,12 +1113,17 @@ +@@ -1031,12 +1092,17 @@ } preserve_libs() { @@ -262,7 +283,16 @@ case ${file##*/} in lib*.so.[0-9]*) if [ -f "${file}" ]; then -@@ -1080,20 +1167,30 @@ +@@ -1055,7 +1121,7 @@ + clean_libs() { + local delete_files file dest + +- if empty ${preserved_files} || ! is_yes ${opt_preserve_libs}; then ++ if ! is_yes ${opt_preserve_libs} || empty ${preserved_files}; then + return 0 + fi + +@@ -1080,20 +1146,30 @@ fix_dependencies() { #ifndef WITH_PKGSRC #ifndef WITH_OPENBSD @@ -295,7 +325,7 @@ fi fi done -@@ -1102,6 +1199,11 @@ +@@ -1102,6 +1178,11 @@ } update_dependencies() { @@ -307,7 +337,7 @@ local p req_by pkg_required_by 'req_by' "$2" -@@ -1114,6 +1216,7 @@ +@@ -1114,6 +1195,7 @@ update_pkgdep "$p" "$1-[^-]*" "$2" || return 1 done fi @@ -315,7 +345,7 @@ } have_pkgdep() { -@@ -1122,7 +1225,7 @@ +@@ -1122,7 +1204,7 @@ if [ -r "${PKG_DBDIR}/$1/+CONTENTS" ]; then while read X; do case $X in @@ -324,7 +354,7 @@ return 0 ;; [!@]*) break ;; esac -@@ -1134,7 +1237,7 @@ +@@ -1134,7 +1216,7 @@ update_pkgdep() { update_file "${PKG_DBDIR}/$1/+CONTENTS" \ @@ -333,7 +363,7 @@ } delete_pkgdep() { -@@ -1325,7 +1428,7 @@ +@@ -1325,7 +1407,7 @@ init_install() { case $1 in @@ -342,7 +372,7 @@ set_pkg_vars_for_binary "$1" || return 1 ;; /*) set_port_vars "$1" || return 1 ;; *) set_port_vars "${PORTSDIR}/$1" || return 1 ;; -@@ -1351,7 +1454,7 @@ +@@ -1351,7 +1433,7 @@ done case ${replace_with} in @@ -351,7 +381,7 @@ pkg_binary=${replace_with} ;; ?*) pkg_portdir=${replace_with} -@@ -1428,6 +1531,12 @@ +@@ -1428,6 +1510,12 @@ do_replace() { local pkg_log pkg_tmpdir old_package old_required_by preserved_files @@ -364,7 +394,7 @@ init_replace "$1" || { status=skipped; return 0; } if [ "${cur_pkg_name}" != "${pkg_name}" ]; then -@@ -1482,7 +1591,9 @@ +@@ -1482,7 +1570,9 @@ fi pkg_tmpdir="${tmpdir}/${cur_pkg_name}" @@ -374,7 +404,7 @@ if ! find_package 'old_package' "${cur_pkg_name}"; then old_package="${pkg_tmpdir}/${cur_pkg_name}${PKG_SUFX}" -@@ -1491,7 +1602,11 @@ +@@ -1491,7 +1581,11 @@ if ! { create_dir "${pkg_tmpdir}" && backup_package "${cur_pkg_name}" "${old_package}" && @@ -387,7 +417,7 @@ preserve_libs "${cur_pkg_name}" }; then log="backup error" -@@ -1503,6 +1618,9 @@ +@@ -1503,6 +1597,9 @@ if install_package "${pkg_binary:-${pkg_portdir}}" "${pkg_log}"; then status=done cur_pkg_pkgdir=${PKG_DBDIR}/${pkg_name} @@ -397,7 +427,7 @@ else log="install error" restore_package "${old_package}" || { -@@ -1515,8 +1633,10 @@ +@@ -1515,8 +1612,10 @@ log="deinstall error" fi @@ -408,7 +438,7 @@ process_package "${old_package}" || warn "Failed to keep the old version." clean_libs || -@@ -1527,7 +1647,11 @@ +@@ -1527,7 +1626,11 @@ case ${status} in done) fix_dependencies "${pkg_name}" || return 1 --- ports-mgmt__pkg_replace.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 13:00:12 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 51C27ED2; Wed, 25 Sep 2013 13:00:12 +0000 (UTC) (envelope-from edwin@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 2967B23E0; Wed, 25 Sep 2013 13:00:12 +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 r8PD0CS1011114; Wed, 25 Sep 2013 13:00:12 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8PD0Bxr011113; Wed, 25 Sep 2013 13:00:11 GMT (envelope-from edwin) Date: Wed, 25 Sep 2013 13:00:11 GMT Message-Id: <201309251300.r8PD0Bxr011113@freefall.freebsd.org> To: ii@any.com.ru, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182371: ports-mgmt/pkg_replace: fixup pattrn matching in pkg_glob() function 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: Wed, 25 Sep 2013 13:00:12 -0000 Synopsis: ports-mgmt/pkg_replace: fixup pattrn matching in pkg_glob() function State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Wed Sep 25 13:00:11 UTC 2013 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182371 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 13:10:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 8205C31F for ; Wed, 25 Sep 2013 13:10:01 +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 6D3D82478 for ; Wed, 25 Sep 2013 13:10:01 +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 r8PDA12D013174 for ; Wed, 25 Sep 2013 13:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8PDA1nd013173; Wed, 25 Sep 2013 13:10:01 GMT (envelope-from gnats) Date: Wed, 25 Sep 2013 13:10:01 GMT Message-Id: <201309251310.r8PDA1nd013173@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/182371: ports-mgmt/pkg_replace: fixup pattrn matching in pkg_glob() function X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Sep 2013 13:10:01 -0000 The following reply was made to PR ports/182371; it has been noted by GNATS. From: Edwin Groothuis To: kdeguchi@sz.tokoha-u.ac.jp Cc: bug-followup@FreeBSD.org Subject: Re: ports/182371: ports-mgmt/pkg_replace: fixup pattrn matching in pkg_glob() function Date: Wed, 25 Sep 2013 13:00:11 UT Maintainer of ports-mgmt/pkg_replace, Please note that PR ports/182371 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/182371 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 13:30:01 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 DB966B72 for ; Wed, 25 Sep 2013 13:30:01 +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 A140A25BA for ; Wed, 25 Sep 2013 13:30:01 +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 r8PDU19J017733 for ; Wed, 25 Sep 2013 13:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8PDU1AC017732; Wed, 25 Sep 2013 13:30:01 GMT (envelope-from gnats) Resent-Date: Wed, 25 Sep 2013 13:30:01 GMT Resent-Message-Id: <201309251330.r8PDU1AC017732@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, Jake Guffey 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 1018883E for ; Wed, 25 Sep 2013 13:25:02 +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 F23402571 for ; Wed, 25 Sep 2013 13:25:01 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8PDP19H023430 for ; Wed, 25 Sep 2013 13:25:01 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8PDP1S2023339; Wed, 25 Sep 2013 13:25:01 GMT (envelope-from nobody) Message-Id: <201309251325.r8PDP1S2023339@oldred.freebsd.org> Date: Wed, 25 Sep 2013 13:25:01 GMT From: Jake Guffey To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182372: sysutils/fusefs-libs fails to build for package 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: Wed, 25 Sep 2013 13:30:01 -0000 >Number: 182372 >Category: ports >Synopsis: sysutils/fusefs-libs fails to build for package >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Sep 25 13:30:01 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Jake Guffey >Release: 9.0-RELEASE >Organization: eProtex >Environment: FreeBSD ePBLDSRV01X.eprotex.com 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Wed Feb 1 20:10:54 UTC 2012 root@build.eprotex.com:/usr/obj/nanobsd.epshield001/usr/src/sys/EPSHIELD-USB amd64 >Description: The pkg-plist for sysutils/fusefs-libs contains spaces between the %%PORTDOCS%% and %%DOCSDIR%% macros, causing "make package" to fail. I would have added the patch as an attachment but it's only two affected lines. >How-To-Repeat: Update the local ports tree cd /usr/ports/sysutils/fusefs-libs make package >Fix: diff -Nur fusefs-libs.orig/pkg-plist fusefs-libs/pkg-plist --- fusefs-libs.orig/pkg-plist 2013-09-25 13:19:55.676924745 +0000 +++ fusefs-libs/pkg-plist 2013-09-25 13:12:25.060924367 +0000 @@ -22,7 +22,7 @@ man/man1/ulockmgr_server.1.gz man/man8/mount.fuse.8.gz @dirrm include/fuse -%%PORTDOCS%% %%DOCSDIR%%/libs/how-fuse-works -%%PORTDOCS%% %%DOCSDIR%%/libs/kernel.txt +%%PORTDOCS%%%%DOCSDIR%%/libs/how-fuse-works +%%PORTDOCS%%%%DOCSDIR%%/libs/kernel.txt %%PORTDOCS%%@dirrm %%DOCSDIR%%/libs %%PORTDOCS%%@dirrmtry %%DOCSDIR%% >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 13:30:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 978F7BA3; Wed, 25 Sep 2013 13:30:09 +0000 (UTC) (envelope-from edwin@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 6E65725BE; Wed, 25 Sep 2013 13:30:09 +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 r8PDU9CF017813; Wed, 25 Sep 2013 13:30:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8PDU9BZ017812; Wed, 25 Sep 2013 13:30:09 GMT (envelope-from edwin) Date: Wed, 25 Sep 2013 13:30:09 GMT Message-Id: <201309251330.r8PDU9BZ017812@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, bapt@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182372: sysutils/fusefs-libs fails to build for package 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: Wed, 25 Sep 2013 13:30:09 -0000 Synopsis: sysutils/fusefs-libs fails to build for package Responsible-Changed-From-To: freebsd-ports-bugs->bapt Responsible-Changed-By: edwin Responsible-Changed-When: Wed Sep 25 13:30:09 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182372 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 13:46:10 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 67C9380; Wed, 25 Sep 2013 13:46:10 +0000 (UTC) (envelope-from wg@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 3CD5A26BF; Wed, 25 Sep 2013 13:46:10 +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 r8PDkAJ1021320; Wed, 25 Sep 2013 13:46:10 GMT (envelope-from wg@freefall.freebsd.org) Received: (from wg@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8PDkAa2021319; Wed, 25 Sep 2013 13:46:10 GMT (envelope-from wg) Date: Wed, 25 Sep 2013 13:46:10 GMT Message-Id: <201309251346.r8PDkAa2021319@freefall.freebsd.org> To: wg@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wg@FreeBSD.org From: wg@FreeBSD.org Subject: Re: ports/182290: [Patch] Update games/klavaro to version 1.9.9 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: Wed, 25 Sep 2013 13:46:10 -0000 Synopsis: [Patch] Update games/klavaro to version 1.9.9 Responsible-Changed-From-To: freebsd-ports-bugs->wg Responsible-Changed-By: wg Responsible-Changed-When: Wed Sep 25 13:46:09 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=182290 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 14:07:29 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 926188D2; Wed, 25 Sep 2013 14:07:29 +0000 (UTC) (envelope-from pluknet@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 6742E2853; Wed, 25 Sep 2013 14:07:29 +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 r8PE7TVa025435; Wed, 25 Sep 2013 14:07:29 GMT (envelope-from pluknet@freefall.freebsd.org) Received: (from pluknet@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8PE7T7E025434; Wed, 25 Sep 2013 14:07:29 GMT (envelope-from pluknet) Date: Wed, 25 Sep 2013 14:07:29 GMT Message-Id: <201309251407.r8PE7T7E025434@freefall.freebsd.org> To: pluknet@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: pluknet@FreeBSD.org Subject: Re: ports/182373: [patch] editors/joe: segv in jmacs mode with n files opened 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: Wed, 25 Sep 2013 14:07:29 -0000 Synopsis: [patch] editors/joe: segv in jmacs mode with n files opened Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: pluknet Responsible-Changed-When: Wed Sep 25 14:06:02 UTC 2013 Responsible-Changed-Why: Ports PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=182373 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 14:30:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 3CC42FBC for ; Wed, 25 Sep 2013 14:30:01 +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 1A57C29A6 for ; Wed, 25 Sep 2013 14:30:01 +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 r8PEU06w030180 for ; Wed, 25 Sep 2013 14: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 r8PEU0Bh030179; Wed, 25 Sep 2013 14:30:00 GMT (envelope-from gnats) Resent-Date: Wed, 25 Sep 2013 14:30:00 GMT Resent-Message-Id: <201309251430.r8PEU0Bh030179@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, Yasuhiro KIMURA Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 2ED33FB4 for ; Wed, 25 Sep 2013 14:29:07 +0000 (UTC) (envelope-from yasu@home.utahime.org) Received: from gate.utahime.jp (ipq210.utahime.jp [183.180.29.210]) by mx1.freebsd.org (Postfix) with ESMTP id F2E1B29A1 for ; Wed, 25 Sep 2013 14:29:06 +0000 (UTC) Received: from eastasia.home.utahime.org (eastasia.home.utahime.org [192.168.174.1]) by gate.utahime.jp (Postfix) with ESMTP id 56C0C61FAE; Wed, 25 Sep 2013 23:28:58 +0900 (JST) Received: from eastasia.home.utahime.org (localhost [127.0.0.1]) by localhost-backdoor.home.utahime.org (Postfix) with ESMTP id 3538C4E654; Wed, 25 Sep 2013 23:28:58 +0900 (JST) Received: from rolling-vm-freebsd1.home.utahime.org (rolling-vm-freebsd1.home.utahime.org [192.168.174.51]) by eastasia.home.utahime.org (Postfix) with ESMTP id 1A4C24E62F; Wed, 25 Sep 2013 23:28:58 +0900 (JST) Received: by rolling-vm-freebsd1.home.utahime.org (Postfix, from userid 1000) id 0EFBA1C2B2F; Wed, 25 Sep 2013 23:28:58 +0900 (JST) Message-Id: <20130925142858.0EFBA1C2B2F@rolling-vm-freebsd1.home.utahime.org> Date: Wed, 25 Sep 2013 23:28:58 +0900 (JST) From: Yasuhiro KIMURA To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/182374: [MAINTAINER] devel/psvn: add staging support 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: Wed, 25 Sep 2013 14:30:01 -0000 >Number: 182374 >Category: ports >Synopsis: [MAINTAINER] devel/psvn: add staging support >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Sep 25 14:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Yasuhiro KIMURA >Release: FreeBSD 9.1-RELEASE-p7 amd64 >Organization: >Environment: System: FreeBSD xxxx 9.1-RELEASE-p7 FreeBSD 9.1-RELEASE-p7 #0 r255449: Tue Sep 10 22:52:11 JST 2013 xxxx amd64 >Description: Add staging support. >How-To-Repeat: >Fix: --- patch-psvn begins here --- Index: Makefile =================================================================== --- Makefile (revision 328266) +++ Makefile (working copy) @@ -28,9 +28,8 @@ ${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME}/psvn.elc PLIST_DIRS= ${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME} -ELISPDIR= ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME} +ELISPDIR= ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME} -NO_STAGE= yes do-build: cd ${WRKSRC}; ${EMACS_CMD} -batch -q -f batch-byte-compile psvn.el @@ -38,7 +37,4 @@ ${MKDIR} ${ELISPDIR} ${INSTALL_DATA} ${WRKSRC}/psvn.* ${ELISPDIR} -post-install: - @${CAT} ${PKGMESSAGE} - .include --- patch-psvn ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 14:50:01 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 E9A44642 for ; Wed, 25 Sep 2013 14:50: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 C702D2AEE for ; Wed, 25 Sep 2013 14:50: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 r8PEo0um033682 for ; Wed, 25 Sep 2013 14:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8PEo0FP033681; Wed, 25 Sep 2013 14:50:00 GMT (envelope-from gnats) Resent-Date: Wed, 25 Sep 2013 14:50:00 GMT Resent-Message-Id: <201309251450.r8PEo0FP033681@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, Yasuhiro KIMURA Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id B21CD3DD for ; Wed, 25 Sep 2013 14:40:21 +0000 (UTC) (envelope-from yasu@home.utahime.org) Received: from gate.utahime.jp (ipq210.utahime.jp [183.180.29.210]) by mx1.freebsd.org (Postfix) with ESMTP id 7FA2A2A5D for ; Wed, 25 Sep 2013 14:40:21 +0000 (UTC) Received: from eastasia.home.utahime.org (mail.home.utahime.org [192.168.174.1]) by gate.utahime.jp (Postfix) with ESMTP id 6414D61F9D; Wed, 25 Sep 2013 23:40:20 +0900 (JST) Received: from eastasia.home.utahime.org (localhost [127.0.0.1]) by localhost-backdoor.home.utahime.org (Postfix) with ESMTP id 38F784E653; Wed, 25 Sep 2013 23:40:20 +0900 (JST) Received: from rolling-vm-freebsd1.home.utahime.org (rolling-vm-freebsd1.home.utahime.org [192.168.174.51]) by eastasia.home.utahime.org (Postfix) with ESMTP id 124A14E62F; Wed, 25 Sep 2013 23:40:20 +0900 (JST) Received: by rolling-vm-freebsd1.home.utahime.org (Postfix, from userid 1000) id F09631C2B2F; Wed, 25 Sep 2013 23:40:19 +0900 (JST) Message-Id: <20130925144019.F09631C2B2F@rolling-vm-freebsd1.home.utahime.org> Date: Wed, 25 Sep 2013 23:40:19 +0900 (JST) From: Yasuhiro KIMURA To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/182375: [MAINTAINER] irc/riece: add staging support 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: Wed, 25 Sep 2013 14:50:01 -0000 >Number: 182375 >Category: ports >Synopsis: [MAINTAINER] irc/riece: add staging support >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Sep 25 14:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Yasuhiro KIMURA >Release: FreeBSD 9.1-RELEASE-p7 amd64 >Organization: >Environment: System: FreeBSD xxxx 9.1-RELEASE-p7 FreeBSD 9.1-RELEASE-p7 #0 r255449: Tue Sep 10 22:52:11 JST 2013 xxxx amd64 >Description: Add staging support. >How-To-Repeat: >Fix: --- patch-riece begins here --- Index: Makefile =================================================================== --- Makefile (revision 328266) +++ Makefile (working copy) @@ -15,26 +15,24 @@ LICENSE= GPLv3 +USES= gmake USE_EMACS= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-emacs=${EMACS_CMD} \ - --with-lispdir=${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} -USE_GMAKE= yes + --with-lispdir=${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} OPTIONS_DEFINE= DOCS INFO= riece-en riece-ja -NO_STAGE= yes .include post-install: .if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${DOCSDIR} + ${MKDIR} ${STAGEDIR}${DOCSDIR} .for f in AUTHORS ChangeLog NEWS NEWS.ja README README.ja doc/HACKING doc/HACKING.ja - ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR} .endfor .endif - @${CAT} ${PKGMESSAGE} .include --- patch-riece ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 15:08:58 2013 Return-Path: Delivered-To: freebsd-ports-bugs@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 EADC4A99; Wed, 25 Sep 2013 15:08:57 +0000 (UTC) (envelope-from yasu@utahime.org) Received: from gate.utahime.jp (ipq210.utahime.jp [183.180.29.210]) by mx1.freebsd.org (Postfix) with ESMTP id 8CD162C5E; Wed, 25 Sep 2013 15:08:57 +0000 (UTC) Received: from eastasia.home.utahime.org (eastasia.home.utahime.org [192.168.174.1]) by gate.utahime.jp (Postfix) with ESMTP id 978CF61FAE; Thu, 26 Sep 2013 00:08:56 +0900 (JST) Received: from eastasia.home.utahime.org (localhost [127.0.0.1]) by localhost-backdoor.home.utahime.org (Postfix) with ESMTP id 737C94E652; Thu, 26 Sep 2013 00:08:56 +0900 (JST) Received: from [192.168.174.2] (rolling.home.utahime.org [192.168.174.2]) by eastasia.home.utahime.org (Postfix) with ESMTPA id 564254E62F; Thu, 26 Sep 2013 00:08:56 +0900 (JST) Message-ID: <5242FC83.3010806@utahime.org> Date: Thu, 26 Sep 2013 00:08:51 +0900 From: Yasuhiro KIMURA User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.0 MIME-Version: 1.0 To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/182285: [PATCH] japanese/csrd: take maintainership and etc. References: <201309211940.r8LJe0Ol012941@freefall.freebsd.org> In-Reply-To: <201309211940.r8LJe0Ol012941@freefall.freebsd.org> Content-Type: multipart/mixed; boundary="------------090702000501000404040706" X-Virus-Scanned: ClamAV using ClamSMTP 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: Wed, 25 Sep 2013 15:08:58 -0000 This is a multi-part message in MIME format. --------------090702000501000404040706 Content-Type: text/plain; charset=ISO-2022-JP Content-Transfer-Encoding: 7bit Staging support is added. So please commit attached patch instead of original one. Regards. --------------090702000501000404040706 Content-Type: text/plain; charset=Shift_JIS; name="patch-ja-csrd" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="patch-ja-csrd" SW5kZXg6IE1ha2VmaWxlCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KLS0tIE1ha2VmaWxlCShyZXZpc2lvbiAz MjgyNjYpCisrKyBNYWtlZmlsZQkod29ya2luZyBjb3B5KQpAQCAtMywyMSArMyw0OCBAQAog CiBQT1JUTkFNRT0JY3NyZAogUE9SVFZFUlNJT049CTEuMAorUE9SVFJFVklTSU9OPQkxCiBD QVRFR09SSUVTPQlqYXBhbmVzZQogTUFTVEVSX1NJVEVTPQlodHRwOi8vb3BlbmxhYi5yaW5n LmdyLmpwL2VkaWN0L2NzcmQvCiAKLU1BSU5UQUlORVI9CXBvcnRzQEZyZWVCU0Qub3JnCitQ QVRDSF9TSVRFUz0JaHR0cDovL2dyZWVuLnJpYmJvbi50by9+aWthenVoaXJvL2RpYy9maWxl cy8KK1BBVENIRklMRVM9CWNzcmQuYy5kaWZmLmd6CisKK01BSU5UQUlORVI9CXlhc3VAdXRh aGltZS5vcmcKIENPTU1FTlQ9CVV0aWxpdHkgZm9yIFNob2dha3VrYW4gUmFuZG9tIEhvdXNl IEVuZ2xpc2gtSmFwYW5lc2UgRGljdGlvbmFyeQogCitMSUNFTlNFPQlQVUJMSUNfRE9NQUlO CitMSUNFTlNFX05BTUU9CVB1YmxpYyBEb21haW4KK0xJQ0VOU0VfRklMRT0JJHtXUktTUkN9 L2NzcmQuZG9jCitMSUNFTlNFX1BFUk1TPQlkaXN0LW1pcnJvciBkaXN0LXNlbGwgcGtnLW1p cnJvciBwa2ctc2VsbCBhdXRvLWFjY2VwdAorCiBNQUtFRklMRT0JbWFrZWZpbGUudW54CiBB TExfVEFSR0VUPQljc3JkCiAKLU5PX1NUQUdFPQl5ZXMKK09QVElPTlNfREVGSU5FPQlET0NT CisKK1BMSVNUX0RJUlM9CSUlREFUQURJUiUlCitQTElTVF9GSUxFUz0JYmluL2NzcmQgJSVE QVRBRElSJSUvY3NyZC5mbXQgJSVEQVRBRElSJSUvY3NyZC5nYWkgXAorCQklJURBVEFESVIl JS9xdWlldC5mbXQgJSVEQVRBRElSJSUvcXVpZXQuZ2FpCisKK1BPUlRET0NTPQlSRUFETUUg Y3NyZC5kb2MKKworU1VCX0ZJTEVTPQlwa2ctbWVzc2FnZQorCisuaW5jbHVkZSA8YnNkLnBv cnQub3B0aW9ucy5taz4KKwogZG8taW5zdGFsbDoKLQkke0lOU1RBTExfUFJPR1JBTX0gJHtX UktTUkN9L2NzcmQgJHtQUkVGSVh9L2JpbgotCSR7SU5TVEFMTF9EQVRBfSAke1dSS1NSQ30v Y3NyZC5mbXQgJHtQUkVGSVh9L2xpYgotCSR7SU5TVEFMTF9EQVRBfSAke1dSS1NSQ30vY3Ny ZC5nYWkgJHtQUkVGSVh9L2xpYgotCSR7TUtESVJ9ICR7UFJFRklYfS9zaGFyZS9kb2MvJHtQ S0dOQU1FfQotCSR7SU5TVEFMTF9EQVRBfSAke1dSS1NSQ30vY3NyZC5kb2MgJHtQUkVGSVh9 L3NoYXJlL2RvYy8ke1BLR05BTUV9CisJJHtJTlNUQUxMX1BST0dSQU19ICR7V1JLU1JDfS9j c3JkICR7U1RBR0VESVJ9JHtQUkVGSVh9L2JpbgorCSR7TUtESVJ9ICR7U1RBR0VESVJ9JHtE QVRBRElSfQorCSR7SU5TVEFMTF9EQVRBfSAke1dSS1NSQ30vY3NyZC5mbXQgJHtTVEFHRURJ Un0ke0RBVEFESVJ9CisJJHtJTlNUQUxMX0RBVEF9ICR7V1JLU1JDfS9jc3JkLmdhaSAke1NU QUdFRElSfSR7REFUQURJUn0KKwkke0lOU1RBTExfREFUQX0gJHtXUktTUkN9L3F1aWV0LmZt dCAke1NUQUdFRElSfSR7REFUQURJUn0KKwkke0lOU1RBTExfREFUQX0gJHtXUktTUkN9L3F1 aWV0LmdhaSAke1NUQUdFRElSfSR7REFUQURJUn0KKy5pZiAke1BPUlRfT1BUSU9OUzpNRE9D U30KKwkke01LRElSfSAke1NUQUdFRElSfSR7RE9DU0RJUn0KKy5mb3IgZiBpbiAke1BPUlRE T0NTfQorCSR7SU5TVEFMTF9EQVRBfSAke1dSS1NSQ30vJHtmfSAke1NUQUdFRElSfSR7RE9D U0RJUn0KKy5lbmRmb3IKKy5lbmRpZgogCiAuaW5jbHVkZSA8YnNkLnBvcnQubWs+CkluZGV4 OiBkaXN0aW5mbwo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09Ci0tLSBkaXN0aW5mbwkocmV2aXNpb24gMzI4MjY2 KQorKysgZGlzdGluZm8JKHdvcmtpbmcgY29weSkKQEAgLTEsMiArMSw0IEBACiBTSEEyNTYg KGNzcmQtMS4wLnRhci5neikgPSA0OTljNGY0MWU1ZjcwZTU0ZTM4NDk3MmJhODExZWQ5MDY1 NDAyZjQ0MGFmYjgzMjg2MDBkZDFkZDczMzUzNjlhCiBTSVpFIChjc3JkLTEuMC50YXIuZ3op ID0gNDQ5NTUKK1NIQTI1NiAoY3NyZC5jLmRpZmYuZ3opID0gYTNkZmQzZDZhZDk3Y2UzYTJl NTUzOWQwNGM0MDRmMzlhYjlmNWVjZDI3NTM4MmU0ZTFmZTkyNzU0YTY2NTI1MAorU0laRSAo Y3NyZC5jLmRpZmYuZ3opID0gMjc3CkluZGV4OiBmaWxlcy9wa2ctbWVzc2FnZS5pbgo9PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09Ci0tLSBmaWxlcy9wa2ctbWVzc2FnZS5pbgkocmV2aXNpb24gMCkKKysrIGZp bGVzL3BrZy1tZXNzYWdlLmluCSh3b3JraW5nIGNvcHkpCkBAIC0wLDAgKzEsOSBAQAorKioq KioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioq KioqKioqKioqKioqKgorSWYgRE9DUyBvcHRpb24gaXMgZW5hYmxlZCB0aGVuIHlvdSBjYW4g Z2V0IG1vcmUgaW5mb3JtYXRpb24gZnJvbSB0aGUKK2ZvbGxvd2luZyBkb2N1bWVudCAoRVVD LUpQIGlzIHVzZWQgYXMgZmlsZSBjaGFyc2V0KToKKworJSVET0NTRElSJSUvY3NyZC5kb2MK KworW0V4YW1wbGUgb2YgJSVQUkVGSVglJS9ldGMvY3NyZC5yY10KKy1kIC9jZHJvbS9kYXRh IC1mICUlREFUQURJUiUlL2NzcmQuZm10IC1nICUlREFUQURJUiUlL2NzcmQuZ2FpCisqKioq KioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioq KioqKioqKioqKioqCgpQcm9wZXJ0eSBjaGFuZ2VzIG9uOiBmaWxlcy9wa2ctbWVzc2FnZS5p bgpfX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19f X19fX19fX19fX19fX19fCkFkZGVkOiBzdm46bWltZS10eXBlCiMjIC0wLDAgKzEgIyMKK3Rl eHQvcGxhaW4KXCBObyBuZXdsaW5lIGF0IGVuZCBvZiBwcm9wZXJ0eQpBZGRlZDogZmJzZDpu b2tleXdvcmRzCiMjIC0wLDAgKzEgIyMKK3llcwpcIE5vIG5ld2xpbmUgYXQgZW5kIG9mIHBy b3BlcnR5CkFkZGVkOiBzdm46ZW9sLXN0eWxlCiMjIC0wLDAgKzEgIyMKK25hdGl2ZQpcIE5v IG5ld2xpbmUgYXQgZW5kIG9mIHByb3BlcnR5CkluZGV4OiBwa2ctZGVzY3IKPT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PQotLS0gcGtnLWRlc2NyCShyZXZpc2lvbiAzMjgyNjYpCisrKyBwa2ctZGVzY3IJKHdv cmtpbmcgY29weSkKQEAgLTEsMTAgKzEsNCBAQAogQ1NSRCBpcyBhIHV0aWxpdHkgZm9yIFNo b2dha3VrYW4gUmFuZG9tIEhvdXNlIEVuZ2xpc2gtSmFwYW5lc2UKIERpY3Rpb25hcnkgb24g VU5JWCBvciBNUy1ET1MgYm94LgogCi1Zb3UgY2FuIGdldCBtb3JlIGluZm9ybWF0aW9uIGZy b20gdGhlIGZvbGxvd2luZyBkb2N1bWVudC4KLSR7UFJFRklYfS9zaGFyZS9kb2MvamEtY3Ny ZC0xLjAvY3NyZC5kb2MKLQotW0V4YW1wbGUgb2YgJHtQUkVGSVh9L2V0Yy9jc3JkLnJjXQot LWQvY2Ryb20vZGF0YSAtZi91c3IvbG9jYWwvbGliL2NzcmQuZm10IC1nL3Vzci9sb2NhbC9s aWIvY3NyZC5nYWkKLQogV1dXOiBodHRwOi8vb3BlbmxhYi5yaW5nLmdyLmpwL2VkaWN0LwpJ bmRleDogcGtnLXBsaXN0Cj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KLS0tIHBrZy1wbGlzdAkocmV2aXNpb24g MzI4MjY2KQorKysgcGtnLXBsaXN0CSh3b3JraW5nIGNvcHkpCkBAIC0xLDUgKzAsMCBAQAot YmluL2NzcmQKLWxpYi9jc3JkLmZtdAotbGliL2NzcmQuZ2FpCi1zaGFyZS9kb2MvamEtY3Ny ZC0xLjAvY3NyZC5kb2MKLUBkaXJybSBzaGFyZS9kb2MvamEtY3NyZC0xLjAK --------------090702000501000404040706-- From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 15:10:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id A474BC43 for ; Wed, 25 Sep 2013 15:10:01 +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 807CE2C84 for ; Wed, 25 Sep 2013 15:10:01 +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 r8PFA1n5037647 for ; Wed, 25 Sep 2013 15:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8PFA1Ug037646; Wed, 25 Sep 2013 15:10:01 GMT (envelope-from gnats) Date: Wed, 25 Sep 2013 15:10:01 GMT Message-Id: <201309251510.r8PFA1Ug037646@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Yasuhiro KIMURA Subject: Re: ports/182285: [PATCH] japanese/csrd: take maintainership and etc. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Yasuhiro KIMURA List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Sep 2013 15:10:01 -0000 The following reply was made to PR ports/182285; it has been noted by GNATS. From: Yasuhiro KIMURA To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/182285: [PATCH] japanese/csrd: take maintainership and etc. Date: Thu, 26 Sep 2013 00:08:51 +0900 This is a multi-part message in MIME format. --------------090702000501000404040706 Content-Type: text/plain; charset=ISO-2022-JP Content-Transfer-Encoding: 7bit Staging support is added. So please commit attached patch instead of original one. Regards. --------------090702000501000404040706 Content-Type: text/plain; charset=Shift_JIS; name="patch-ja-csrd" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="patch-ja-csrd" SW5kZXg6IE1ha2VmaWxlCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KLS0tIE1ha2VmaWxlCShyZXZpc2lvbiAz MjgyNjYpCisrKyBNYWtlZmlsZQkod29ya2luZyBjb3B5KQpAQCAtMywyMSArMyw0OCBAQAog CiBQT1JUTkFNRT0JY3NyZAogUE9SVFZFUlNJT049CTEuMAorUE9SVFJFVklTSU9OPQkxCiBD QVRFR09SSUVTPQlqYXBhbmVzZQogTUFTVEVSX1NJVEVTPQlodHRwOi8vb3BlbmxhYi5yaW5n LmdyLmpwL2VkaWN0L2NzcmQvCiAKLU1BSU5UQUlORVI9CXBvcnRzQEZyZWVCU0Qub3JnCitQ QVRDSF9TSVRFUz0JaHR0cDovL2dyZWVuLnJpYmJvbi50by9+aWthenVoaXJvL2RpYy9maWxl cy8KK1BBVENIRklMRVM9CWNzcmQuYy5kaWZmLmd6CisKK01BSU5UQUlORVI9CXlhc3VAdXRh aGltZS5vcmcKIENPTU1FTlQ9CVV0aWxpdHkgZm9yIFNob2dha3VrYW4gUmFuZG9tIEhvdXNl IEVuZ2xpc2gtSmFwYW5lc2UgRGljdGlvbmFyeQogCitMSUNFTlNFPQlQVUJMSUNfRE9NQUlO CitMSUNFTlNFX05BTUU9CVB1YmxpYyBEb21haW4KK0xJQ0VOU0VfRklMRT0JJHtXUktTUkN9 L2NzcmQuZG9jCitMSUNFTlNFX1BFUk1TPQlkaXN0LW1pcnJvciBkaXN0LXNlbGwgcGtnLW1p cnJvciBwa2ctc2VsbCBhdXRvLWFjY2VwdAorCiBNQUtFRklMRT0JbWFrZWZpbGUudW54CiBB TExfVEFSR0VUPQljc3JkCiAKLU5PX1NUQUdFPQl5ZXMKK09QVElPTlNfREVGSU5FPQlET0NT CisKK1BMSVNUX0RJUlM9CSUlREFUQURJUiUlCitQTElTVF9GSUxFUz0JYmluL2NzcmQgJSVE QVRBRElSJSUvY3NyZC5mbXQgJSVEQVRBRElSJSUvY3NyZC5nYWkgXAorCQklJURBVEFESVIl JS9xdWlldC5mbXQgJSVEQVRBRElSJSUvcXVpZXQuZ2FpCisKK1BPUlRET0NTPQlSRUFETUUg Y3NyZC5kb2MKKworU1VCX0ZJTEVTPQlwa2ctbWVzc2FnZQorCisuaW5jbHVkZSA8YnNkLnBv cnQub3B0aW9ucy5taz4KKwogZG8taW5zdGFsbDoKLQkke0lOU1RBTExfUFJPR1JBTX0gJHtX UktTUkN9L2NzcmQgJHtQUkVGSVh9L2JpbgotCSR7SU5TVEFMTF9EQVRBfSAke1dSS1NSQ30v Y3NyZC5mbXQgJHtQUkVGSVh9L2xpYgotCSR7SU5TVEFMTF9EQVRBfSAke1dSS1NSQ30vY3Ny ZC5nYWkgJHtQUkVGSVh9L2xpYgotCSR7TUtESVJ9ICR7UFJFRklYfS9zaGFyZS9kb2MvJHtQ S0dOQU1FfQotCSR7SU5TVEFMTF9EQVRBfSAke1dSS1NSQ30vY3NyZC5kb2MgJHtQUkVGSVh9 L3NoYXJlL2RvYy8ke1BLR05BTUV9CisJJHtJTlNUQUxMX1BST0dSQU19ICR7V1JLU1JDfS9j c3JkICR7U1RBR0VESVJ9JHtQUkVGSVh9L2JpbgorCSR7TUtESVJ9ICR7U1RBR0VESVJ9JHtE QVRBRElSfQorCSR7SU5TVEFMTF9EQVRBfSAke1dSS1NSQ30vY3NyZC5mbXQgJHtTVEFHRURJ Un0ke0RBVEFESVJ9CisJJHtJTlNUQUxMX0RBVEF9ICR7V1JLU1JDfS9jc3JkLmdhaSAke1NU QUdFRElSfSR7REFUQURJUn0KKwkke0lOU1RBTExfREFUQX0gJHtXUktTUkN9L3F1aWV0LmZt dCAke1NUQUdFRElSfSR7REFUQURJUn0KKwkke0lOU1RBTExfREFUQX0gJHtXUktTUkN9L3F1 aWV0LmdhaSAke1NUQUdFRElSfSR7REFUQURJUn0KKy5pZiAke1BPUlRfT1BUSU9OUzpNRE9D U30KKwkke01LRElSfSAke1NUQUdFRElSfSR7RE9DU0RJUn0KKy5mb3IgZiBpbiAke1BPUlRE T0NTfQorCSR7SU5TVEFMTF9EQVRBfSAke1dSS1NSQ30vJHtmfSAke1NUQUdFRElSfSR7RE9D U0RJUn0KKy5lbmRmb3IKKy5lbmRpZgogCiAuaW5jbHVkZSA8YnNkLnBvcnQubWs+CkluZGV4 OiBkaXN0aW5mbwo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09Ci0tLSBkaXN0aW5mbwkocmV2aXNpb24gMzI4MjY2 KQorKysgZGlzdGluZm8JKHdvcmtpbmcgY29weSkKQEAgLTEsMiArMSw0IEBACiBTSEEyNTYg KGNzcmQtMS4wLnRhci5neikgPSA0OTljNGY0MWU1ZjcwZTU0ZTM4NDk3MmJhODExZWQ5MDY1 NDAyZjQ0MGFmYjgzMjg2MDBkZDFkZDczMzUzNjlhCiBTSVpFIChjc3JkLTEuMC50YXIuZ3op ID0gNDQ5NTUKK1NIQTI1NiAoY3NyZC5jLmRpZmYuZ3opID0gYTNkZmQzZDZhZDk3Y2UzYTJl NTUzOWQwNGM0MDRmMzlhYjlmNWVjZDI3NTM4MmU0ZTFmZTkyNzU0YTY2NTI1MAorU0laRSAo Y3NyZC5jLmRpZmYuZ3opID0gMjc3CkluZGV4OiBmaWxlcy9wa2ctbWVzc2FnZS5pbgo9PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09Ci0tLSBmaWxlcy9wa2ctbWVzc2FnZS5pbgkocmV2aXNpb24gMCkKKysrIGZp bGVzL3BrZy1tZXNzYWdlLmluCSh3b3JraW5nIGNvcHkpCkBAIC0wLDAgKzEsOSBAQAorKioq KioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioq KioqKioqKioqKioqKgorSWYgRE9DUyBvcHRpb24gaXMgZW5hYmxlZCB0aGVuIHlvdSBjYW4g Z2V0IG1vcmUgaW5mb3JtYXRpb24gZnJvbSB0aGUKK2ZvbGxvd2luZyBkb2N1bWVudCAoRVVD LUpQIGlzIHVzZWQgYXMgZmlsZSBjaGFyc2V0KToKKworJSVET0NTRElSJSUvY3NyZC5kb2MK KworW0V4YW1wbGUgb2YgJSVQUkVGSVglJS9ldGMvY3NyZC5yY10KKy1kIC9jZHJvbS9kYXRh IC1mICUlREFUQURJUiUlL2NzcmQuZm10IC1nICUlREFUQURJUiUlL2NzcmQuZ2FpCisqKioq KioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioq KioqKioqKioqKioqCgpQcm9wZXJ0eSBjaGFuZ2VzIG9uOiBmaWxlcy9wa2ctbWVzc2FnZS5p bgpfX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19f X19fX19fX19fX19fX19fCkFkZGVkOiBzdm46bWltZS10eXBlCiMjIC0wLDAgKzEgIyMKK3Rl eHQvcGxhaW4KXCBObyBuZXdsaW5lIGF0IGVuZCBvZiBwcm9wZXJ0eQpBZGRlZDogZmJzZDpu b2tleXdvcmRzCiMjIC0wLDAgKzEgIyMKK3llcwpcIE5vIG5ld2xpbmUgYXQgZW5kIG9mIHBy b3BlcnR5CkFkZGVkOiBzdm46ZW9sLXN0eWxlCiMjIC0wLDAgKzEgIyMKK25hdGl2ZQpcIE5v IG5ld2xpbmUgYXQgZW5kIG9mIHByb3BlcnR5CkluZGV4OiBwa2ctZGVzY3IKPT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PQotLS0gcGtnLWRlc2NyCShyZXZpc2lvbiAzMjgyNjYpCisrKyBwa2ctZGVzY3IJKHdv cmtpbmcgY29weSkKQEAgLTEsMTAgKzEsNCBAQAogQ1NSRCBpcyBhIHV0aWxpdHkgZm9yIFNo b2dha3VrYW4gUmFuZG9tIEhvdXNlIEVuZ2xpc2gtSmFwYW5lc2UKIERpY3Rpb25hcnkgb24g VU5JWCBvciBNUy1ET1MgYm94LgogCi1Zb3UgY2FuIGdldCBtb3JlIGluZm9ybWF0aW9uIGZy b20gdGhlIGZvbGxvd2luZyBkb2N1bWVudC4KLSR7UFJFRklYfS9zaGFyZS9kb2MvamEtY3Ny ZC0xLjAvY3NyZC5kb2MKLQotW0V4YW1wbGUgb2YgJHtQUkVGSVh9L2V0Yy9jc3JkLnJjXQot LWQvY2Ryb20vZGF0YSAtZi91c3IvbG9jYWwvbGliL2NzcmQuZm10IC1nL3Vzci9sb2NhbC9s aWIvY3NyZC5nYWkKLQogV1dXOiBodHRwOi8vb3BlbmxhYi5yaW5nLmdyLmpwL2VkaWN0LwpJ bmRleDogcGtnLXBsaXN0Cj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KLS0tIHBrZy1wbGlzdAkocmV2aXNpb24g MzI4MjY2KQorKysgcGtnLXBsaXN0CSh3b3JraW5nIGNvcHkpCkBAIC0xLDUgKzAsMCBAQAot YmluL2NzcmQKLWxpYi9jc3JkLmZtdAotbGliL2NzcmQuZ2FpCi1zaGFyZS9kb2MvamEtY3Ny ZC0xLjAvY3NyZC5kb2MKLUBkaXJybSBzaGFyZS9kb2MvamEtY3NyZC0xLjAK --------------090702000501000404040706-- From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 15:30:01 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 340CBE94 for ; Wed, 25 Sep 2013 15:30:01 +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 EE1EC2D87 for ; Wed, 25 Sep 2013 15: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 r8PFU0Kn042223 for ; Wed, 25 Sep 2013 15: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 r8PFU0jc042211; Wed, 25 Sep 2013 15:30:00 GMT (envelope-from gnats) Resent-Date: Wed, 25 Sep 2013 15:30:00 GMT Resent-Message-Id: <201309251530.r8PFU0jc042211@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, Volodymyr Kostyrko Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 2E388DF8 for ; Wed, 25 Sep 2013 15:21:07 +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 02F702D4A for ; Wed, 25 Sep 2013 15:21:07 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8PFL5j4026393 for ; Wed, 25 Sep 2013 15:21:05 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8PFL53P026390; Wed, 25 Sep 2013 15:21:05 GMT (envelope-from nobody) Message-Id: <201309251521.r8PFL53P026390@oldred.freebsd.org> Date: Wed, 25 Sep 2013 15:21:05 GMT From: Volodymyr Kostyrko To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182376: www/trac-hierwiki - too old, doesn't work with current trac 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: Wed, 25 Sep 2013 15:30:01 -0000 >Number: 182376 >Category: ports >Synopsis: www/trac-hierwiki - too old, doesn't work with current trac >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: Wed Sep 25 15:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Volodymyr Kostyrko >Release: releng/9.1 >Organization: none >Environment: FreeBSD faz.tandem.local 9.1-RELEASE-p4 FreeBSD 9.1-RELEASE-p4 #1 r252064M: Fri Jun 21 22:40:22 EEST 2013 arcade@faz.tandem.local:/usr/obj/usr/src/sys/MINIMAL amd64 >Description: The plugin is severely outdated, provided version can't work with Trac >0.11 (and we have 1.0 in ports). >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 15:30:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 0EB2CEC7; Wed, 25 Sep 2013 15:30:09 +0000 (UTC) (envelope-from edwin@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 C7F312D8D; Wed, 25 Sep 2013 15:30:08 +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 r8PFU8hp042327; Wed, 25 Sep 2013 15:30:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8PFU8Ls042326; Wed, 25 Sep 2013 15:30:08 GMT (envelope-from edwin) Date: Wed, 25 Sep 2013 15:30:08 GMT Message-Id: <201309251530.r8PFU8Ls042326@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, glarkin@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182376: www/trac-hierwiki - too old, doesn't work with current trac 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: Wed, 25 Sep 2013 15:30:09 -0000 Synopsis: www/trac-hierwiki - too old, doesn't work with current trac Responsible-Changed-From-To: freebsd-ports-bugs->glarkin Responsible-Changed-By: edwin Responsible-Changed-When: Wed Sep 25 15:30:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182376 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 15:30:01 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 A2796E96 for ; Wed, 25 Sep 2013 15:30:01 +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 6AAB42D8A for ; Wed, 25 Sep 2013 15:30:01 +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 r8PFU18e042246 for ; Wed, 25 Sep 2013 15:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8PFU1FR042245; Wed, 25 Sep 2013 15:30:01 GMT (envelope-from gnats) Resent-Date: Wed, 25 Sep 2013 15:30:01 GMT Resent-Message-Id: <201309251530.r8PFU1FR042245@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, Nikolai Lifanov Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 936BDE19 for ; Wed, 25 Sep 2013 15:23:39 +0000 (UTC) (envelope-from lifanov@mail.lifanov.com) Received: from mail.lifanov.com (mail.lifanov.com [206.125.175.12]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 81B5F2D5C for ; Wed, 25 Sep 2013 15:23:39 +0000 (UTC) Received: by mail.lifanov.com (Postfix, from userid 1001) id CEBC51A5411; Wed, 25 Sep 2013 15:23:38 +0000 (UTC) Message-Id: <20130925152338.CEBC51A5411@mail.lifanov.com> Date: Wed, 25 Sep 2013 15:23:38 +0000 (UTC) From: Nikolai Lifanov To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/182377: [bug] mail/thunderbird needs a pkgconfig file X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Nikolai Lifanov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Sep 2013 15:30:01 -0000 >Number: 182377 >Category: ports >Synopsis: [bug] mail/thunderbird needs a pkgconfig file >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Sep 25 15:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Nikolai Lifanov >Release: FreeBSD 9.2-RC4 amd64 >Organization: >Environment: System: FreeBSD 9.2-RC4 FreeBSD 9.2-RC4 #0 r255465: Wed Sep 11 05:11:03 UTC 2013 root@bake.isc.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: After last update, Thunderbird can no longer find libldap60.so I also have libxul and firefox installed, which avoid this problem. Creating a file '/usr/local/libdata/ldconfig/thunderbird' with contents /usr/local/lib/thunderbird makes it able to find the correct libldap60.so library. mail/thunderbird port should probably make use of USE_LDCONFIG= $ thunderbird XPCOMGlueLoad error for file /usr/local/lib/thunderbird/libxul.so: Shared object "libldap60.so" not found, required by "libxul.so" Couldn't load XPCOM. >How-To-Repeat: Ports tree revision: 328296 Options : TEST : off PULSEAUDIO : off PROFILE : off PGO : off OPTIMIZED_CFLAGS: on LOGGING : on LIGHTNING : on LIBPROXY : on GSTREAMER : on GNOMEVFS2 : off GNOMEUI : off GIO : on GCONF : off ENIGMAIL : on DEBUG : off DBUS : on ALSA : on >Fix: Add /usr/local/lib/thunderbird to ldconfig path, possibly by making use of USE_LDCOFNIG= macro. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 15:30:22 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 8084DF28; Wed, 25 Sep 2013 15:30:22 +0000 (UTC) (envelope-from edwin@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 452C72DB6; Wed, 25 Sep 2013 15:30:22 +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 r8PFUMkx042415; Wed, 25 Sep 2013 15:30:22 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8PFUMHf042414; Wed, 25 Sep 2013 15:30:22 GMT (envelope-from edwin) Date: Wed, 25 Sep 2013 15:30:22 GMT Message-Id: <201309251530.r8PFUMHf042414@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gecko@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182377: [bug] mail/thunderbird needs a pkgconfig file 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: Wed, 25 Sep 2013 15:30:22 -0000 Synopsis: [bug] mail/thunderbird needs a pkgconfig file Responsible-Changed-From-To: freebsd-ports-bugs->gecko Responsible-Changed-By: edwin Responsible-Changed-When: Wed Sep 25 15:30:21 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182377 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 15:30:32 2013 Return-Path: Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 5EB2FF68; Wed, 25 Sep 2013 15:30:32 +0000 (UTC) (envelope-from yasu@utahime.org) Received: from gate.utahime.jp (ipq210.utahime.jp [183.180.29.210]) by mx1.freebsd.org (Postfix) with ESMTP id E1A9D2DBD; Wed, 25 Sep 2013 15:30:31 +0000 (UTC) Received: from eastasia.home.utahime.org (mail.home.utahime.org [192.168.174.1]) by gate.utahime.jp (Postfix) with ESMTP id C656E61FAE; Thu, 26 Sep 2013 00:30:29 +0900 (JST) Received: from eastasia.home.utahime.org (localhost [127.0.0.1]) by localhost-backdoor.home.utahime.org (Postfix) with ESMTP id A1E2C4E62F; Thu, 26 Sep 2013 00:30:29 +0900 (JST) Received: from [192.168.174.2] (rolling.home.utahime.org [192.168.174.2]) by eastasia.home.utahime.org (Postfix) with ESMTPA id 84F054E654; Thu, 26 Sep 2013 00:30:29 +0900 (JST) Message-ID: <52430195.8020108@utahime.org> Date: Thu, 26 Sep 2013 00:30:29 +0900 From: Yasuhiro KIMURA User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.0 MIME-Version: 1.0 To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/182284: [PATCH] devel/magit: change directory of elisp files and etc. References: <201309211740.r8LHe0f2086028@freefall.freebsd.org> <523E8EC6.60207@utahime.org> In-Reply-To: <523E8EC6.60207@utahime.org> Content-Type: multipart/mixed; boundary="------------030200020601040802050002" X-Virus-Scanned: ClamAV using ClamSMTP 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: Wed, 25 Sep 2013 15:30:32 -0000 This is a multi-part message in MIME format. --------------030200020601040802050002 Content-Type: text/plain; charset=Shift_JIS Content-Transfer-Encoding: 7bit Staging support is added. So please commit attached patch instead of previous ones. Regards. --------------030200020601040802050002 Content-Type: text/plain; charset=Shift_JIS; name="patch-magit" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="patch-magit" SW5kZXg6IE1ha2VmaWxlCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KLS0tIE1ha2VmaWxlCShyZXZpc2lvbiAz MjgyNjYpCisrKyBNYWtlZmlsZQkod29ya2luZyBjb3B5KQpAQCAtMSwxOSArMSwzNCBAQAor IyBDcmVhdGVkIGJ5OiBKdW4gS3VyaXlhbWEgPGt1cml5YW1hQEZyZWVCU0Qub3JnPgogIyAk RnJlZUJTRCQKIAogUE9SVE5BTUU9CW1hZ2l0CiBQT1JUVkVSU0lPTj0JMS4yLjAKLVBPUlRS RVZJU0lPTj0JMQorUE9SVFJFVklTSU9OPQkyCiBDQVRFR09SSUVTPQlkZXZlbCBlbGlzcAog TUFTVEVSX1NJVEVTPQkke01BU1RFUl9TSVRFX0xPQ0FMfSBcCiAJCWh0dHA6Ly9jbG91ZC5n aXRodWIuY29tL2Rvd25sb2Fkcy9tYWdpdC9tYWdpdC8KIE1BU1RFUl9TSVRFX1NVQkRJUj0J a3VyaXlhbWEKK1BLR05BTUVTVUZGSVg9CS0ke0VNQUNTX1BPUlRfTkFNRX0KIAogTUFJTlRB SU5FUj0Ja3VyaXlhbWFARnJlZUJTRC5vcmcKIENPTU1FTlQ9CUludGVyZmFjZSB0byBHaXQg Zm9yIEVtYWNzCiAKK0xJQ0VOU0U9CUdGREwgR1BMdjMKK0xJQ0VOU0VfQ09NQj0JbXVsdGkK KworUlVOX0RFUEVORFM9CWdpdD4wOiR7UE9SVFNESVJ9L2RldmVsL2dpdAorCitVU0VTPQkJ Z21ha2UKIFVTRV9FTUFDUz0JWUVTCi1VU0VfR01BS0U9CVlFUwogSU5GTz0JCW1hZ2l0CiAK LU5PX1NUQUdFPQl5ZXMKK0VMSVNQRElSPQkke0VNQUNTX1ZFUlNJT05fU0lURV9MSVNQRElS fS8ke1BPUlROQU1FfQorCitNQUtFX0VOVis9CUVMSVNQRElSPSR7U1RBR0VESVJ9JHtQUkVG SVh9LyR7RUxJU1BESVJ9IFwKKwkJSU5GT0RJUj0ke1NUQUdFRElSfSR7UFJFRklYfS8ke0lO Rk9fUEFUSH0KK1BMSVNUX1NVQis9CUVMSVNQRElSPSR7RUxJU1BESVJ9CisKK3Bvc3QtaW5z dGFsbDoKKwlAJHtDQVR9ICR7UEtHTUVTU0FHRX0KKwogLmluY2x1ZGUgPGJzZC5wb3J0Lm1r PgpJbmRleDogZmlsZXMvcGF0Y2gtTWFrZWZpbGUKPT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQotLS0gZmlsZXMv cGF0Y2gtTWFrZWZpbGUJKHJldmlzaW9uIDMyODI2NikKKysrIGZpbGVzL3BhdGNoLU1ha2Vm aWxlCSh3b3JraW5nIGNvcHkpCkBAIC0xLDIxICsxLDMwIEBACi0tLS0gTWFrZWZpbGUub3Jp ZwkyMDEyLTAyLTI1IDIwOjExOjA4LjE1OTcxMTEwMiArMDkwMAotKysrIE1ha2VmaWxlCTIw MTItMDItMjUgMjA6MTM6MzQuMTUyMzk4NjI0ICswOTAwCi1AQCAtNjEsMTMgKzYxLDEzIEBA CistLS0gTWFrZWZpbGUub3JpZwkyMDEyLTA5LTI1IDA0OjQxOjE5LjAwMDAwMDAwMCArMDkw MAorKysrIE1ha2VmaWxlCTIwMTMtMDktMjEgMjM6MDE6MDQuMDAwMDAwMDAwICswOTAwCitA QCAtMSw1ICsxLDUgQEAKKyBWRVJTSU9OPTEuMi4wCistRU1BQ1M9ZW1hY3MKKysjRU1BQ1M9 ZW1hY3MKKyBQUkVGSVg9L3Vzci9sb2NhbAorIFNZU0NPTkZESVI9L2V0YworIEVMUz1tYWdp dC5lbCBtYWdpdC1zdm4uZWwgbWFnaXQtdG9wZ2l0LmVsIG1hZ2l0LXN0Z2l0LmVsIG1hZ2l0 LWtleS1tb2RlLmVsIG1hZ2l0LWJpc2VjdC5lbCBtYWdpdC13aXAuZWwgcmViYXNlLW1vZGUu ZWwgbWFnaXQtYmxhbWUuZWwKK0BAIC02NCwxNSArNjQsMTMgQEAKKyBpbnN0YWxsOiBpbnN0 YWxsX2NvcmUgaW5zdGFsbF9kb2NzCisgCiAgaW5zdGFsbF9jb3JlOiBjb3JlCi0gCW1rZGly IC1wICQoREVTVERJUikkKFBSRUZJWCkvc2hhcmUvZW1hY3Mvc2l0ZS1saXNwCi0gCWluc3Rh bGwgLW0gNjQ0ICQoRUxTKSAkKEVMQ1MpICQoREVTVERJUikkKFBSRUZJWCkvc2hhcmUvZW1h Y3Mvc2l0ZS1saXNwCistCW1rZGlyIC1wICQoREVTVERJUikkKFBSRUZJWCkvc2hhcmUvZW1h Y3Mvc2l0ZS1saXNwCistCWluc3RhbGwgLW0gNjQ0ICQoRUxTKSAkKEVMQ1MpICQoREVTVERJ UikkKFBSRUZJWCkvc2hhcmUvZW1hY3Mvc2l0ZS1saXNwCiAtCW1rZGlyIC1wICQoREVTVERJ UikkKFNZU0NPTkZESVIpL2VtYWNzL3NpdGUtc3RhcnQuZAogLQlpbnN0YWxsIC1tIDY0NCA1 MG1hZ2l0LmVsICQoREVTVERJUikkKFNZU0NPTkZESVIpL2VtYWNzL3NpdGUtc3RhcnQuZC81 MG1hZ2l0LmVsCi0rCW1rZGlyIC1wICQoREVTVERJUikkKFBSRUZJWCkkKFNZU0NPTkZESVIp L2VtYWNzL3NpdGUtc3RhcnQuZAotKwlpbnN0YWxsIC1tIDY0NCA1MG1hZ2l0LmVsICQoREVT VERJUikkKFBSRUZJWCkkKFNZU0NPTkZESVIpL2VtYWNzL3NpdGUtc3RhcnQuZC81MG1hZ2l0 LmVsCisrCW1rZGlyIC1wICQoRUxJU1BESVIpCisrCWluc3RhbGwgLW0gNjQ0ICQoRUxTKSAk KEVMQ1MpICQoRUxJU1BESVIpCiAgCiAgaW5zdGFsbF9kb2NzOiBkb2NzCiAtCW1rZGlyIC1w ICQoREVTVERJUikkKFBSRUZJWCkvc2hhcmUvaW5mbwogLQlpbnN0YWxsIC1tIDY0NCBtYWdp dC5pbmZvICQoREVTVERJUikkKFBSRUZJWCkvc2hhcmUvaW5mbwogLQlpbnN0YWxsLWluZm8g LS1pbmZvLWRpcj0kKERFU1RESVIpJChQUkVGSVgpL3NoYXJlL2luZm8gJChERVNURElSKSQo UFJFRklYKS9zaGFyZS9pbmZvL21hZ2l0LmluZm8KLSsJbWtkaXIgLXAgJChERVNURElSKSQo UFJFRklYKS9pbmZvCi0rCWluc3RhbGwgLW0gNjQ0IG1hZ2l0LmluZm8gJChERVNURElSKSQo UFJFRklYKS9pbmZvCi0rCWluc3RhbGwtaW5mbyAtLWluZm8tZGlyPSQoREVTVERJUikkKFBS RUZJWCkvaW5mbyAkKERFU1RESVIpJChQUkVGSVgpL2luZm8vbWFnaXQuaW5mbworKwlta2Rp ciAtcCAkKElORk9ESVIpCisrCWluc3RhbGwgLW0gNjQ0IG1hZ2l0LmluZm8gJChJTkZPRElS KQorKwlpbnN0YWxsLWluZm8gLS1pbmZvLWRpcj0kKElORk9ESVIpICQoSU5GT0RJUikvbWFn aXQuaW5mbwogIAogIGluc3RhbGxfY29udHJpYjogY29udHJpYgogIAlta2RpciAtcCAkKERF U1RESVIpJChQUkVGSVgpL3NoYXJlL2VtYWNzL3NpdGUtbGlzcApJbmRleDogcGtnLWRlc2Ny Cj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT0KLS0tIHBrZy1kZXNjcgkocmV2aXNpb24gMzI4MjY2KQorKysgcGtn LWRlc2NyCSh3b3JraW5nIGNvcHkpCkBAIC00LDQgKzQsNCBAQAogY2hhbmdlcy4gIFRoZXJl IGlzIHN1cHBvcnQgZm9yIGNoZXJyeSBwaWNraW5nLCByZXZlcnRpbmcsIG1lcmdpbmcsCiBy ZWJhc2luZywgYW5kIG90aGVyIGNvbW1vbiBHaXQgb3BlcmF0aW9ucy4KIAotV1dXOiBodHRw Oi8vcGhpbGphY2tzb24uZ2l0aHViLmNvbS9tYWdpdC8KK1dXVzogaHR0cDovL21hZ2l0Lmdp dGh1Yi5pby9tYWdpdC8KSW5kZXg6IHBrZy1tZXNzYWdlCj09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KLS0tIHBr Zy1tZXNzYWdlCShyZXZpc2lvbiAwKQorKysgcGtnLW1lc3NhZ2UJKHdvcmtpbmcgY29weSkK QEAgLTAsMCArMSw2IEBACisqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioq KioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqCitUbyB1c2UgTWFnaXQsIHlvdSBz aG91bGQgYWRkIGZvbGxvd2luZyBsaW5lIHRvIHlvdXIgLmVtYWNzIGZpbGU6CisKKyhyZXF1 aXJlICdtYWdpdCkKKworKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioq KioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKgoKUHJvcGVydHkgY2hhbmdlcyBvbjog cGtnLW1lc3NhZ2UKX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19f X19fX19fX19fX19fX19fX19fX19fX19fXwpBZGRlZDogc3ZuOm1pbWUtdHlwZQojIyAtMCww ICsxICMjCit0ZXh0L3BsYWluClwgTm8gbmV3bGluZSBhdCBlbmQgb2YgcHJvcGVydHkKQWRk ZWQ6IGZic2Q6bm9rZXl3b3JkcwojIyAtMCwwICsxICMjCit5ZXMKXCBObyBuZXdsaW5lIGF0 IGVuZCBvZiBwcm9wZXJ0eQpBZGRlZDogc3ZuOmVvbC1zdHlsZQojIyAtMCwwICsxICMjCitu YXRpdmUKXCBObyBuZXdsaW5lIGF0IGVuZCBvZiBwcm9wZXJ0eQpJbmRleDogcGtnLXBsaXN0 Cj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT0KLS0tIHBrZy1wbGlzdAkocmV2aXNpb24gMzI4MjY2KQorKysgcGtn LXBsaXN0CSh3b3JraW5nIGNvcHkpCkBAIC0xLDIxICsxLDE5IEBACi1ldGMvZW1hY3Mvc2l0 ZS1zdGFydC5kLzUwbWFnaXQuZWwKLXNoYXJlL2VtYWNzL3NpdGUtbGlzcC9tYWdpdC1iaXNl Y3QuZWwKLXNoYXJlL2VtYWNzL3NpdGUtbGlzcC9tYWdpdC1iaXNlY3QuZWxjCi1zaGFyZS9l bWFjcy9zaXRlLWxpc3AvbWFnaXQtYmxhbWUuZWwKLXNoYXJlL2VtYWNzL3NpdGUtbGlzcC9t YWdpdC1ibGFtZS5lbGMKLXNoYXJlL2VtYWNzL3NpdGUtbGlzcC9tYWdpdC1rZXktbW9kZS5l bAotc2hhcmUvZW1hY3Mvc2l0ZS1saXNwL21hZ2l0LWtleS1tb2RlLmVsYwotc2hhcmUvZW1h Y3Mvc2l0ZS1saXNwL21hZ2l0LXN0Z2l0LmVsCi1zaGFyZS9lbWFjcy9zaXRlLWxpc3AvbWFn aXQtc3RnaXQuZWxjCi1zaGFyZS9lbWFjcy9zaXRlLWxpc3AvbWFnaXQtc3ZuLmVsCi1zaGFy ZS9lbWFjcy9zaXRlLWxpc3AvbWFnaXQtc3ZuLmVsYwotc2hhcmUvZW1hY3Mvc2l0ZS1saXNw L21hZ2l0LXRvcGdpdC5lbAotc2hhcmUvZW1hY3Mvc2l0ZS1saXNwL21hZ2l0LXRvcGdpdC5l bGMKLXNoYXJlL2VtYWNzL3NpdGUtbGlzcC9tYWdpdC13aXAuZWwKLXNoYXJlL2VtYWNzL3Np dGUtbGlzcC9tYWdpdC13aXAuZWxjCi1zaGFyZS9lbWFjcy9zaXRlLWxpc3AvbWFnaXQuZWwK LXNoYXJlL2VtYWNzL3NpdGUtbGlzcC9tYWdpdC5lbGMKLXNoYXJlL2VtYWNzL3NpdGUtbGlz cC9yZWJhc2UtbW9kZS5lbAotc2hhcmUvZW1hY3Mvc2l0ZS1saXNwL3JlYmFzZS1tb2RlLmVs YwotQGRpcnJtdHJ5IGV0Yy9lbWFjcy9zaXRlLXN0YXJ0LmQKLUBkaXJybXRyeSBldGMvZW1h Y3MKKyUlRUxJU1BESVIlJS9tYWdpdC1iaXNlY3QuZWwKKyUlRUxJU1BESVIlJS9tYWdpdC1i aXNlY3QuZWxjCislJUVMSVNQRElSJSUvbWFnaXQtYmxhbWUuZWwKKyUlRUxJU1BESVIlJS9t YWdpdC1ibGFtZS5lbGMKKyUlRUxJU1BESVIlJS9tYWdpdC1rZXktbW9kZS5lbAorJSVFTElT UERJUiUlL21hZ2l0LWtleS1tb2RlLmVsYworJSVFTElTUERJUiUlL21hZ2l0LXN0Z2l0LmVs CislJUVMSVNQRElSJSUvbWFnaXQtc3RnaXQuZWxjCislJUVMSVNQRElSJSUvbWFnaXQtc3Zu LmVsCislJUVMSVNQRElSJSUvbWFnaXQtc3ZuLmVsYworJSVFTElTUERJUiUlL21hZ2l0LXRv cGdpdC5lbAorJSVFTElTUERJUiUlL21hZ2l0LXRvcGdpdC5lbGMKKyUlRUxJU1BESVIlJS9t YWdpdC13aXAuZWwKKyUlRUxJU1BESVIlJS9tYWdpdC13aXAuZWxjCislJUVMSVNQRElSJSUv bWFnaXQuZWwKKyUlRUxJU1BESVIlJS9tYWdpdC5lbGMKKyUlRUxJU1BESVIlJS9yZWJhc2Ut bW9kZS5lbAorJSVFTElTUERJUiUlL3JlYmFzZS1tb2RlLmVsYworQGRpcnJtICUlRUxJU1BE SVIlJQo= --------------030200020601040802050002-- From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 16:10:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 9AAC9D41 for ; Wed, 25 Sep 2013 16:10: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 794A7201D for ; Wed, 25 Sep 2013 16:10: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 r8PGA0P0049902 for ; Wed, 25 Sep 2013 16:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8PGA0dv049901; Wed, 25 Sep 2013 16:10:00 GMT (envelope-from gnats) Resent-Date: Wed, 25 Sep 2013 16:10:00 GMT Resent-Message-Id: <201309251610.r8PGA0dv049901@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, Kozlov Sergey Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id EBBF4CDC for ; Wed, 25 Sep 2013 16:06:14 +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 D957D2FEE for ; Wed, 25 Sep 2013 16:06:14 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8PG6EHb088345 for ; Wed, 25 Sep 2013 16:06:14 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8PG6E8s088344; Wed, 25 Sep 2013 16:06:14 GMT (envelope-from nobody) Message-Id: <201309251606.r8PG6E8s088344@oldred.freebsd.org> Date: Wed, 25 Sep 2013 16:06:14 GMT From: Kozlov Sergey To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182378: [patch] devel/py-RPyC new version 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: Wed, 25 Sep 2013 16:10:00 -0000 >Number: 182378 >Category: ports >Synopsis: [patch] devel/py-RPyC new version >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Sep 25 16:10:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Kozlov Sergey >Release: 9.1-RELEASE-p7 >Organization: ARC >Environment: FreeBSD sonya 9.1-RELEASE-p7 FreeBSD 9.1-RELEASE-p7 #4: Tue Sep 10 18:39:35 EEST 2013 root@sonya:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Updated port to RPyC-3.2.3 Changes: Makefile: - MASTER_SITES changed to CHEESESHOP only, because SF site is no longer avaliable - no need to change default DISTNAME anymore - no dos-like line endings detected, so USE_DOS2UNIX no longer needed - RPyC can work with many python versions, changed USE_PYTHON to simple "yes" - non-default PYDISTUTILS_PKGNAME actually breaks the installation, removed pkg-descr: - Changed to single space after WWW: due to porttools warning - Old WWW is a redirect to new one, changed. Port tested with FreeBSD Port Tools 0.99_8, looks fine >How-To-Repeat: >Fix: Patch attached with submission follows: Index: Makefile =================================================================== --- Makefile (revision 328296) +++ Makefile (working copy) @@ -2,12 +2,10 @@ # $FreeBSD$ PORTNAME= rpyc -PORTVERSION= 3.1.0 +PORTVERSION= 3.2.3 CATEGORIES= devel python -MASTER_SITES= SF/${PORTNAME}/files/main/${PORTVERSION} \ - CHEESESHOP +MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -DISTNAME= RPyC-${PORTVERSION} MAINTAINER= wenheping@gmail.com COMMENT= Remote Python Call @@ -14,10 +12,8 @@ LICENSE= MIT -USE_DOS2UNIX= yes -USE_PYTHON= 2.7 +USE_PYTHON= yes USE_PYDISTUTILS= yes -PYDISTUTILS_PKGNAME= RPyC NO_STAGE= yes .include Index: distinfo =================================================================== --- distinfo (revision 328296) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (RPyC-3.1.0.tar.gz) = ea6b54b100df8433927f1d654b242170885fd0060a58ba145f9f703c8758cbbf -SIZE (RPyC-3.1.0.tar.gz) = 32573 +SHA256 (rpyc-3.2.3.tar.gz) = 80782d78863bc4f803b2534452dc37c5dcb6e85230af77fe0ce5a0206e37f661 +SIZE (rpyc-3.2.3.tar.gz) = 48371 Index: pkg-descr =================================================================== --- pkg-descr (revision 328296) +++ pkg-descr (working copy) @@ -5,4 +5,4 @@ to overcome the physical boundaries between processes and computers, so that remote objects can be manipulated as if they were local. -WWW: http://rpyc.wikidot.com/ +WWW: http://rpyc.readthedocs.org/ Index: pkg-plist =================================================================== --- pkg-plist (revision 328296) +++ pkg-plist (working copy) @@ -1,6 +1,5 @@ bin/rpyc_classic.py bin/rpyc_registry.py -bin/rpyc_vdbconf.py %%PYTHON_SITELIBDIR%%/rpyc/__init__.py %%PYTHON_SITELIBDIR%%/rpyc/__init__.pyc %%PYTHON_SITELIBDIR%%/rpyc/__init__.pyo @@ -43,6 +42,15 @@ %%PYTHON_SITELIBDIR%%/rpyc/lib/compat.py %%PYTHON_SITELIBDIR%%/rpyc/lib/compat.pyc %%PYTHON_SITELIBDIR%%/rpyc/lib/compat.pyo +%%PYTHON_SITELIBDIR%%/rpyc/scripts/__init__.py +%%PYTHON_SITELIBDIR%%/rpyc/scripts/__init__.pyc +%%PYTHON_SITELIBDIR%%/rpyc/scripts/__init__.pyo +%%PYTHON_SITELIBDIR%%/rpyc/scripts/rpyc_classic.py +%%PYTHON_SITELIBDIR%%/rpyc/scripts/rpyc_classic.pyc +%%PYTHON_SITELIBDIR%%/rpyc/scripts/rpyc_classic.pyo +%%PYTHON_SITELIBDIR%%/rpyc/scripts/rpyc_registry.py +%%PYTHON_SITELIBDIR%%/rpyc/scripts/rpyc_registry.pyc +%%PYTHON_SITELIBDIR%%/rpyc/scripts/rpyc_registry.pyo %%PYTHON_SITELIBDIR%%/rpyc/utils/__init__.py %%PYTHON_SITELIBDIR%%/rpyc/utils/__init__.pyc %%PYTHON_SITELIBDIR%%/rpyc/utils/__init__.pyo @@ -64,10 +72,14 @@ %%PYTHON_SITELIBDIR%%/rpyc/utils/server.py %%PYTHON_SITELIBDIR%%/rpyc/utils/server.pyc %%PYTHON_SITELIBDIR%%/rpyc/utils/server.pyo +%%PYTHON_SITELIBDIR%%/rpyc/utils/ssh.py +%%PYTHON_SITELIBDIR%%/rpyc/utils/ssh.pyc +%%PYTHON_SITELIBDIR%%/rpyc/utils/ssh.pyo %%PYTHON_SITELIBDIR%%/rpyc/version.py %%PYTHON_SITELIBDIR%%/rpyc/version.pyc %%PYTHON_SITELIBDIR%%/rpyc/version.pyo @dirrm %%PYTHON_SITELIBDIR%%/rpyc/utils +@dirrm %%PYTHON_SITELIBDIR%%/rpyc/scripts @dirrm %%PYTHON_SITELIBDIR%%/rpyc/lib @dirrm %%PYTHON_SITELIBDIR%%/rpyc/core @dirrm %%PYTHON_SITELIBDIR%%/rpyc >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 16:10:08 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 E8A1AD70; Wed, 25 Sep 2013 16:10:08 +0000 (UTC) (envelope-from edwin@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 BE893201E; Wed, 25 Sep 2013 16:10:08 +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 r8PGA8xT050037; Wed, 25 Sep 2013 16:10:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8PGA8cO050036; Wed, 25 Sep 2013 16:10:08 GMT (envelope-from edwin) Date: Wed, 25 Sep 2013 16:10:08 GMT Message-Id: <201309251610.r8PGA8cO050036@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wen@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182378: [patch] devel/py-RPyC new version 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: Wed, 25 Sep 2013 16:10:09 -0000 Synopsis: [patch] devel/py-RPyC new version Responsible-Changed-From-To: freebsd-ports-bugs->wen Responsible-Changed-By: edwin Responsible-Changed-When: Wed Sep 25 16:10:08 UTC 2013 Responsible-Changed-Why: wenheping@gmail.com => wen@ (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182378 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 17:10:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id A3DC53A6 for ; Wed, 25 Sep 2013 17:10: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 808AF2467 for ; Wed, 25 Sep 2013 17:10: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 r8PHA0ZN062600 for ; Wed, 25 Sep 2013 17:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8PHA0fU062599; Wed, 25 Sep 2013 17:10:00 GMT (envelope-from gnats) Resent-Date: Wed, 25 Sep 2013 17:10:00 GMT Resent-Message-Id: <201309251710.r8PHA0fU062599@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, Sean Collins 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 A5265F3E for ; Wed, 25 Sep 2013 17:01:02 +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 939BF23F7 for ; Wed, 25 Sep 2013 17:01:02 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8PH12uH034152 for ; Wed, 25 Sep 2013 17:01:02 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8PH127g034151; Wed, 25 Sep 2013 17:01:02 GMT (envelope-from nobody) Message-Id: <201309251701.r8PH127g034151@oldred.freebsd.org> Date: Wed, 25 Sep 2013 17:01:02 GMT From: Sean Collins To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182379: bitlbee otr compilation failure 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: Wed, 25 Sep 2013 17:10:00 -0000 >Number: 182379 >Category: ports >Synopsis: bitlbee otr compilation failure >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Sep 25 17:10:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Sean Collins >Release: -CURRENT >Organization: >Environment: FreeBSD daishi.seanmcollins.com 10.0-CURRENT FreeBSD 10.0-CURRENT #6 a230433: Tue Sep 10 10:57:30 EDT 2013 root@daishi.seanmcollins.com:/usr/obj/usr/src/sys/DAISHI amd64 >Description: * Linking twitter_mod.o gmake[4]: Leaving directory `/usr/ports/irc/bitlbee/work/bitlbee-3.2/protocols/twitter' * Linking protocols.o gmake[3]: Leaving directory `/usr/ports/irc/bitlbee/work/bitlbee-3.2/protocols' gmake -C doc gmake[3]: Entering directory `/usr/ports/irc/bitlbee/work/bitlbee-3.2/doc' # Only build the docs if this is a bzr checkout test ! -d ../.bzr || gmake -C user-guide gmake[3]: Leaving directory `/usr/ports/irc/bitlbee/work/bitlbee-3.2/doc' * Linking lib.o gmake[3]: Leaving directory `/usr/ports/irc/bitlbee/work/bitlbee-3.2/lib' * Linking bitlbee protocols/protocols.o: In function `prplcb_xfer_new': ft.c:(.text+0x3620): warning: warning: mktemp() possibly used unsafely; consider using mkstemp() /usr/bin/ld: d: invalid DSO for symbol `gcry_error_from_errno' definition /usr/local/lib/libgcrypt.so.19: could not read symbols: Bad value cc: error: linker command failed with exit code 1 (use -v to see invocation) gmake[2]: *** [bitlbee] Error 1 gmake[2]: Leaving directory `/usr/ports/irc/bitlbee/work/bitlbee-3.2' ===> Compilation failed unexpectedly. Try to set MAKE_JOBS_UNSAFE=yes and rebuild before reporting the failure to the maintainer. *** Error code 1 Stop. make[1]: stopped in /usr/ports/irc/bitlbee *** Error code 1 Stop. make: stopped in /usr/ports/irc/bitlbee >How-To-Repeat: Enable OTR support in the bitlbee port >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 18:20:01 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 29510943 for ; Wed, 25 Sep 2013 18:20:01 +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 079FF28EA for ; Wed, 25 Sep 2013 18:20:01 +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 r8PIK0i1081553 for ; Wed, 25 Sep 2013 18:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8PIK0N7081551; Wed, 25 Sep 2013 18:20:00 GMT (envelope-from gnats) Resent-Date: Wed, 25 Sep 2013 18:20:00 GMT Resent-Message-Id: <201309251820.r8PIK0N7081551@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, mohawk 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 407932CD for ; Wed, 25 Sep 2013 18:12:38 +0000 (UTC) (envelope-from mohawk@bsdsx.fr) Received: from mx2.bsdsx.fr (unknown [IPv6:2a02:27d0:100:f205:a642::9]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DB0E32837 for ; Wed, 25 Sep 2013 18:12:37 +0000 (UTC) Received: from mx2.bsdsx.fr (mx2.bsdsx.fr [172.16.0.9]) by mx2.bsdsx.fr (8.14.5/8.14.5) with ESMTP id r8PICY6D040769 for ; Wed, 25 Sep 2013 20:12:34 +0200 (CEST) (envelope-from mohawk@mx2.bsdsx.fr) Received: (from mohawk@localhost) by mx2.bsdsx.fr (8.14.5/8.14.5/Submit) id r8PICYFH040768; Wed, 25 Sep 2013 20:12:34 +0200 (CEST) (envelope-from mohawk) Message-Id: <201309251812.r8PICYFH040768@mx2.bsdsx.fr> Date: Wed, 25 Sep 2013 20:12:34 +0200 (CEST) From: mohawk To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/182381: [Maintainer Update] www/mohawk to 2.0.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: mohawk List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Sep 2013 18:20:01 -0000 >Number: 182381 >Category: ports >Synopsis: [Maintainer Update] www/mohawk to 2.0.8 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Sep 25 18:20:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: mohawk >Release: FreeBSD 9.1-RELEASE-p3 amd64 >Organization: >Environment: System: FreeBSD mx2.bsdsx.fr 9.1-RELEASE-p3 FreeBSD 9.1-RELEASE-p3 #0: Mon Apr 29 18:27:25 UTC 2013 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Fix parse url with '+' or '%' >How-To-Repeat: >Fix: --- mohawk_2.0.8.diff begins here --- diff -ruN mohawk.orig/Makefile mohawk/Makefile --- mohawk.orig/Makefile 2013-09-25 19:40:13.315327933 +0200 +++ mohawk/Makefile 2013-09-25 19:40:33.380328767 +0200 @@ -1,7 +1,7 @@ # $FreeBSD: head/www/mohawk/Makefile 327776 2013-09-20 23:36:50Z bapt $ PORTNAME= mohawk -PORTVERSION= 2.0.7 +PORTVERSION= 2.0.8 CATEGORIES= www ipv6 MASTER_SITES= http://fossil.etoilebsd.net/mohawk/tarball/ \ http://fossil.bsdsx.fr/mohawk/tarball/ diff -ruN mohawk.orig/distinfo mohawk/distinfo --- mohawk.orig/distinfo 2013-09-25 19:40:13.316327297 +0200 +++ mohawk/distinfo 2013-09-25 19:41:10.437328704 +0200 @@ -1,2 +1,2 @@ -SHA256 (mohawk-2.0.7.tar.gz?uuid=2.0.7) = 41db3f33d6c37f4345989512b7b966d8f6a919ce4f348b5b55f27f1b1430856e -SIZE (mohawk-2.0.7.tar.gz?uuid=2.0.7) = 36376 +SHA256 (mohawk-2.0.8.tar.gz?uuid=2.0.8) = 2d77ba2cdc8b9ea6acfe35aebfbfe3661644fabb72d53df5ea10a26af83ece3c +SIZE (mohawk-2.0.8.tar.gz?uuid=2.0.8) = 37764 --- mohawk_2.0.8.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 18:38:40 2013 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id C9862F5; Wed, 25 Sep 2013 18:38:40 +0000 (UTC) (envelope-from demelier.david@gmail.com) Received: from mail-wg0-x234.google.com (mail-wg0-x234.google.com [IPv6:2a00:1450:400c:c00::234]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3F1A02A4D; Wed, 25 Sep 2013 18:38:40 +0000 (UTC) Received: by mail-wg0-f52.google.com with SMTP id m15so66255wgh.31 for ; Wed, 25 Sep 2013 11:38:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type; bh=gtTU3t9BTYvniVr5UKHQd3FN3LDlHIYScQGAKgELMjk=; b=g0ccWBmVC9ho55pt28DMFACb/ApVgh5bsfY84Vpi+EIFrlbA5Y/90J6Cbzst8kQwMK tVRSLpNrHp/bjuRw65RvG9VkOVuZwnzHUEw16OOm4OMb76tPQk4NlTWwzIoAuK1htHxx k6QShw+HvqTRfW1dwoi8MMKlE4Kzv1eUk6you/kLsryMxS48pPTMfvSnKjYcXTmE0z28 Q2Kc5EMeuf+sVlgLnoWtkN2snXkoHKDkrA595xVgypvSSnblVzEwmn8YYoqvdhq62umK 8JVWy0nsAUaqa+ozmqRXBkmvHOceSoecTzng4TUMEU0IM39oLZRdJ/9wlQubZ5tCCj8K 611w== X-Received: by 10.194.120.68 with SMTP id la4mr16279174wjb.33.1380134318562; Wed, 25 Sep 2013 11:38:38 -0700 (PDT) Received: from [192.168.0.10] (171.33.91.91.rev.sfr.net. [91.91.33.171]) by mx.google.com with ESMTPSA id jf2sm20511901wic.2.1969.12.31.16.00.00 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 25 Sep 2013 11:38:38 -0700 (PDT) Message-ID: <52432DA5.3070002@gmail.com> Date: Wed, 25 Sep 2013 20:38:29 +0200 From: David Demelier User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130830 Thunderbird/17.0.8 MIME-Version: 1.0 To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: [patch] Re: ports/182215: audio/mumble: no sound, failed to load CELT plugins References: <201309182040.r8IKe0nW089397@freefall.freebsd.org> In-Reply-To: <201309182040.r8IKe0nW089397@freefall.freebsd.org> Content-Type: multipart/mixed; boundary="------------050305060101080604090807" 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: Wed, 25 Sep 2013 18:38:41 -0000 This is a multi-part message in MIME format. --------------050305060101080604090807 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit On 18.09.2013 22:40, FreeBSD-gnats-submit@FreeBSD.org wrote: > Thank you very much for your problem report. > It has the internal identification `ports/182215'. > The individual assigned to look at your > report is: freebsd-ports-bugs. > > You can access the state of your problem report at any time > via this link: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=182215 > >> Category: ports >> Responsible: freebsd-ports-bugs >> Synopsis: audio/mumble: no sound, failed to load CELT plugins >> Arrival-Date: Wed Sep 18 20:40:00 UTC 2013 It seems that the installation of libcelt0 renamed to libcelt-mumble caused the issue. For now no other port install libcelt.so.0.(7|11).0 so I install just like the application should do. Please commit it as soon as possible as the port is just unusable yet. Regards --------------050305060101080604090807 Content-Type: text/x-patch; name="mumble.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="mumble.diff" --- Makefile.orig 2013-09-25 19:45:14.000000000 +0200 +++ Makefile 2013-09-25 19:48:06.000000000 +0200 @@ -58,8 +58,8 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/release/mumble ${PREFIX}/bin - ${INSTALL_LIB} ${WRKSRC}/release/libcelt0.so.0.11.0 ${PREFIX}/lib/libcelt-mumble.so.0.11.0 - ${INSTALL_LIB} ${WRKSRC}/release/libcelt0.so.0.7.0 ${PREFIX}/lib/libcelt-mumble.so.0.7.0 + ${INSTALL_LIB} ${WRKSRC}/release/libcelt0.so.0.11.0 ${PREFIX}/lib/libcelt0.so.0.11.0 + ${INSTALL_LIB} ${WRKSRC}/release/libcelt0.so.0.7.0 ${PREFIX}/lib/libcelt0.so.0.7.0 ${INSTALL_LIB} ${WRKSRC}/release/libmumble.so.1.2.4 ${PREFIX}/lib/libmumble.so.1.2.4 ${LN} -s ${PREFIX}/lib/libmumble.so.1.2.4 ${PREFIX}/lib/libmumble.so ${LN} -s ${PREFIX}/lib/libmumble.so.1.2.4 ${PREFIX}/lib/libmumble.so.1 --- pkg-plist.orig 2013-09-25 19:47:46.000000000 +0200 +++ pkg-plist 2013-09-25 19:47:56.000000000 +0200 @@ -1,6 +1,6 @@ bin/mumble -lib/libcelt-mumble.so.0.11.0 -lib/libcelt-mumble.so.0.7.0 +lib/libcelt0.so.0.11.0 +lib/libcelt0.so.0.7.0 lib/libmumble.so lib/libmumble.so.1 lib/libmumble.so.1.2 --------------050305060101080604090807-- From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 18:40:02 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 1B1A515F for ; Wed, 25 Sep 2013 18:40:02 +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 E15642A60 for ; Wed, 25 Sep 2013 18:40:01 +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 r8PIe1iF085217 for ; Wed, 25 Sep 2013 18:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8PIe1ji085216; Wed, 25 Sep 2013 18:40:01 GMT (envelope-from gnats) Date: Wed, 25 Sep 2013 18:40:01 GMT Message-Id: <201309251840.r8PIe1ji085216@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: David Demelier Subject: [patch] Re: ports/182215: audio/mumble: no sound, failed to load CELT plugins X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: David Demelier List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Sep 2013 18:40:02 -0000 The following reply was made to PR ports/182215; it has been noted by GNATS. From: David Demelier To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: [patch] Re: ports/182215: audio/mumble: no sound, failed to load CELT plugins Date: Wed, 25 Sep 2013 20:38:29 +0200 This is a multi-part message in MIME format. --------------050305060101080604090807 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit On 18.09.2013 22:40, FreeBSD-gnats-submit@FreeBSD.org wrote: > Thank you very much for your problem report. > It has the internal identification `ports/182215'. > The individual assigned to look at your > report is: freebsd-ports-bugs. > > You can access the state of your problem report at any time > via this link: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=182215 > >> Category: ports >> Responsible: freebsd-ports-bugs >> Synopsis: audio/mumble: no sound, failed to load CELT plugins >> Arrival-Date: Wed Sep 18 20:40:00 UTC 2013 It seems that the installation of libcelt0 renamed to libcelt-mumble caused the issue. For now no other port install libcelt.so.0.(7|11).0 so I install just like the application should do. Please commit it as soon as possible as the port is just unusable yet. Regards --------------050305060101080604090807 Content-Type: text/x-patch; name="mumble.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="mumble.diff" --- Makefile.orig 2013-09-25 19:45:14.000000000 +0200 +++ Makefile 2013-09-25 19:48:06.000000000 +0200 @@ -58,8 +58,8 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/release/mumble ${PREFIX}/bin - ${INSTALL_LIB} ${WRKSRC}/release/libcelt0.so.0.11.0 ${PREFIX}/lib/libcelt-mumble.so.0.11.0 - ${INSTALL_LIB} ${WRKSRC}/release/libcelt0.so.0.7.0 ${PREFIX}/lib/libcelt-mumble.so.0.7.0 + ${INSTALL_LIB} ${WRKSRC}/release/libcelt0.so.0.11.0 ${PREFIX}/lib/libcelt0.so.0.11.0 + ${INSTALL_LIB} ${WRKSRC}/release/libcelt0.so.0.7.0 ${PREFIX}/lib/libcelt0.so.0.7.0 ${INSTALL_LIB} ${WRKSRC}/release/libmumble.so.1.2.4 ${PREFIX}/lib/libmumble.so.1.2.4 ${LN} -s ${PREFIX}/lib/libmumble.so.1.2.4 ${PREFIX}/lib/libmumble.so ${LN} -s ${PREFIX}/lib/libmumble.so.1.2.4 ${PREFIX}/lib/libmumble.so.1 --- pkg-plist.orig 2013-09-25 19:47:46.000000000 +0200 +++ pkg-plist 2013-09-25 19:47:56.000000000 +0200 @@ -1,6 +1,6 @@ bin/mumble -lib/libcelt-mumble.so.0.11.0 -lib/libcelt-mumble.so.0.7.0 +lib/libcelt0.so.0.11.0 +lib/libcelt0.so.0.7.0 lib/libmumble.so lib/libmumble.so.1 lib/libmumble.so.1.2 --------------050305060101080604090807-- From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 20:04:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 07E619E0; Wed, 25 Sep 2013 20:04:09 +0000 (UTC) (envelope-from culot@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 CF18F2002; Wed, 25 Sep 2013 20:04:08 +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 r8PK48Jg002950; Wed, 25 Sep 2013 20:04:08 GMT (envelope-from culot@freefall.freebsd.org) Received: (from culot@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8PK48Cw002949; Wed, 25 Sep 2013 20:04:08 GMT (envelope-from culot) Date: Wed, 25 Sep 2013 20:04:08 GMT Message-Id: <201309252004.r8PK48Cw002949@freefall.freebsd.org> To: culot@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, culot@FreeBSD.org From: culot@FreeBSD.org Subject: Re: ports/182381: [Maintainer Update] www/mohawk to 2.0.8 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: Wed, 25 Sep 2013 20:04:09 -0000 Synopsis: [Maintainer Update] www/mohawk to 2.0.8 Responsible-Changed-From-To: freebsd-ports-bugs->culot Responsible-Changed-By: culot Responsible-Changed-When: Wed Sep 25 20:04:08 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=182381 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 20:20:01 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 CB7BF237 for ; Wed, 25 Sep 2013 20:20:01 +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 A8AD32129 for ; Wed, 25 Sep 2013 20:20:01 +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 r8PKK1OX006233 for ; Wed, 25 Sep 2013 20:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8PKK1EL006232; Wed, 25 Sep 2013 20:20:01 GMT (envelope-from gnats) Resent-Date: Wed, 25 Sep 2013 20:20:01 GMT Resent-Message-Id: <201309252020.r8PKK1EL006232@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, Maxim Samsonov Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 94D3E201 for ; Wed, 25 Sep 2013 20:19:50 +0000 (UTC) (envelope-from xors@mailup.net) Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5A0D72122 for ; Wed, 25 Sep 2013 20:19:49 +0000 (UTC) Received: from compute4.internal (compute4.nyi.mail.srv.osa [10.202.2.44]) by gateway1.nyi.mail.srv.osa (Postfix) with ESMTP id 78DEF22554; Wed, 25 Sep 2013 16:19:44 -0400 (EDT) Received: from frontend1 ([10.202.2.160]) by compute4.internal (MEProxy); Wed, 25 Sep 2013 16:19:44 -0400 Received: from oak.spinney.org (unknown [37.110.157.84]) by mail.messagingengine.com (Postfix) with ESMTPA id C8A49C00E87 for ; Wed, 25 Sep 2013 16:19:43 -0400 (EDT) Received: by oak.spinney.org (Postfix, from userid 1001) id 2AD7220B6; Thu, 26 Sep 2013 00:19:42 +0400 (MSK) Message-Id: <20130925201942.2AD7220B6@oak.spinney.org> Date: Thu, 26 Sep 2013 00:19:42 +0400 (MSK) From: Maxim Samsonov To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/182383: [MAINTAINER-UPDATE]: graphics/apvlv Convert to stage and options helpers X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Maxim Samsonov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Sep 2013 20:20:02 -0000 >Number: 182383 >Category: ports >Synopsis: [MAINTAINER-UPDATE]: graphics/apvlv Convert to stage and options helpers >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Sep 25 20:20:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Maxim Samsonov >Release: FreeBSD 9.2-STABLE amd64 >Organization: >Environment: >Description: - Add staging support - Use options helpers >How-To-Repeat: >Fix: --- graphics_apvlv.patch begins here --- diff --git a/graphics/apvlv/Makefile b/graphics/apvlv/Makefile --- a/graphics/apvlv/Makefile +++ b/graphics/apvlv/Makefile @@ -22,28 +22,16 @@ -DAPVLV_WITH_UMD=OFF \ -DAPVLV_WITH_TXT=ON -MAN1= apvlv.1 - OPTIONS_DEFINE= DJVU WEBKIT -DJVU_DESC= Build with DjVu support -WEBKIT_DESC= Build with WebKit support +DJVU_DESC= DjVu document support -NO_STAGE= yes -.include +DJVU_CMAKE_ON= -DAPVLV_WITH_DJVU=ON +DJVU_CMAKE_OFF= -DAPVLV_WITH_DJVU=OFF +DJVU_LIB_DEPENDS= djvulibre:${PORTSDIR}/graphics/djvulibre -.if ${PORT_OPTIONS:MDJVU} -CMAKE_ARGS+= -DAPVLV_WITH_DJVU=ON -LIB_DEPENDS+= djvulibre:${PORTSDIR}/graphics/djvulibre -.else -CMAKE_ARGS+= -DAPVLV_WITH_DJVU=OFF -.endif - -.if ${PORT_OPTIONS:MWEBKIT} -CMAKE_ARGS+= -DAPVLV_WITH_HTML=ON -LIB_DEPENDS+= webkitgtk-1.0:${PORTSDIR}/www/webkit-gtk2 -.else -CMAKE_ARGS+= -DAPVLV_WITH_HTML=OFF -.endif +WEBKIT_CMAKE_ON= -DAPVLV_WITH_HTML=ON +WEBKIT_CMAKE_OFF= -DAPVLV_WITH_HTML=OFF +WEBKIT_LIB_DEPENDS= webkitgtk-1.0:${PORTSDIR}/www/webkit-gtk2 .include diff --git a/graphics/apvlv/pkg-plist b/graphics/apvlv/pkg-plist --- a/graphics/apvlv/pkg-plist +++ b/graphics/apvlv/pkg-plist @@ -1,5 +1,6 @@ bin/apvlv etc/apvlvrc +man/man1/apvlv.1.gz %%DOCSDIR%%/Startup.pdf %%DOCSDIR%%/Startup.tex %%DOCSDIR%%/apvlvrc.example --- graphics_apvlv.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 21:56:18 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 9A068F81; Wed, 25 Sep 2013 21:56:18 +0000 (UTC) (envelope-from wg@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 6F29A27A6; Wed, 25 Sep 2013 21:56:18 +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 r8PLuIiU026370; Wed, 25 Sep 2013 21:56:18 GMT (envelope-from wg@freefall.freebsd.org) Received: (from wg@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8PLuILg026369; Wed, 25 Sep 2013 21:56:18 GMT (envelope-from wg) Date: Wed, 25 Sep 2013 21:56:18 GMT Message-Id: <201309252156.r8PLuILg026369@freefall.freebsd.org> To: wg@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wg@FreeBSD.org From: wg@FreeBSD.org Subject: Re: ports/182374: [MAINTAINER] devel/psvn: add staging support 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: Wed, 25 Sep 2013 21:56:18 -0000 Synopsis: [MAINTAINER] devel/psvn: add staging support Responsible-Changed-From-To: freebsd-ports-bugs->wg Responsible-Changed-By: wg Responsible-Changed-When: Wed Sep 25 21:56:18 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=182374 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 21:56:57 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 01B78FBD; Wed, 25 Sep 2013 21:56:57 +0000 (UTC) (envelope-from wg@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 CB63327AB; Wed, 25 Sep 2013 21:56:56 +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 r8PLuuIL026470; Wed, 25 Sep 2013 21:56:56 GMT (envelope-from wg@freefall.freebsd.org) Received: (from wg@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8PLuuw7026469; Wed, 25 Sep 2013 21:56:56 GMT (envelope-from wg) Date: Wed, 25 Sep 2013 21:56:56 GMT Message-Id: <201309252156.r8PLuuw7026469@freefall.freebsd.org> To: wg@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wg@FreeBSD.org From: wg@FreeBSD.org Subject: Re: ports/182375: [MAINTAINER] irc/riece: add staging support 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: Wed, 25 Sep 2013 21:56:57 -0000 Synopsis: [MAINTAINER] irc/riece: add staging support Responsible-Changed-From-To: freebsd-ports-bugs->wg Responsible-Changed-By: wg Responsible-Changed-When: Wed Sep 25 21:56:56 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=182375 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 21:58:06 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 B8C44CC; Wed, 25 Sep 2013 21:58:06 +0000 (UTC) (envelope-from wg@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 8E7AF27C4; Wed, 25 Sep 2013 21:58:06 +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 r8PLw6Ln026581; Wed, 25 Sep 2013 21:58:06 GMT (envelope-from wg@freefall.freebsd.org) Received: (from wg@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8PLw6EU026580; Wed, 25 Sep 2013 21:58:06 GMT (envelope-from wg) Date: Wed, 25 Sep 2013 21:58:06 GMT Message-Id: <201309252158.r8PLw6EU026580@freefall.freebsd.org> To: wg@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wg@FreeBSD.org From: wg@FreeBSD.org Subject: Re: ports/182383: [MAINTAINER-UPDATE]: graphics/apvlv Convert to stage and options helpers 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: Wed, 25 Sep 2013 21:58:06 -0000 Synopsis: [MAINTAINER-UPDATE]: graphics/apvlv Convert to stage and options helpers Responsible-Changed-From-To: freebsd-ports-bugs->wg Responsible-Changed-By: wg Responsible-Changed-When: Wed Sep 25 21:58:06 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=182383 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 22:10:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id DCF852E5 for ; Wed, 25 Sep 2013 22:10: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 A33A02867 for ; Wed, 25 Sep 2013 22:10: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 r8PMA0lb028747 for ; Wed, 25 Sep 2013 22:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8PMA0DM028746; Wed, 25 Sep 2013 22:10:00 GMT (envelope-from gnats) Resent-Date: Wed, 25 Sep 2013 22:10:00 GMT Resent-Message-Id: <201309252210.r8PMA0DM028746@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, Ashley Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id EC7602D3 for ; Wed, 25 Sep 2013 22:09:33 +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 DA82B285E for ; Wed, 25 Sep 2013 22:09:33 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8PM9X5C030146 for ; Wed, 25 Sep 2013 22:09:33 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8PM9Xo2030142; Wed, 25 Sep 2013 22:09:33 GMT (envelope-from nobody) Message-Id: <201309252209.r8PM9Xo2030142@oldred.freebsd.org> Date: Wed, 25 Sep 2013 22:09:33 GMT From: Ashley To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182384: linux-sun-jdk16 won't build with demos & samples 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: Wed, 25 Sep 2013 22:10:00 -0000 >Number: 182384 >Category: ports >Synopsis: linux-sun-jdk16 won't build with demos & samples >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Sep 25 22:10:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Ashley >Release: 9.1 >Organization: >Environment: FreeBSD shikai 9.1-RELEASE FreeBSD 9.1-RELEASE #0 r246901M: Sun Feb 17 21:31:30 EST 2013 root@shikai:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Compiling linux-jdk-16 with 'Install demos and samples' does not work: ===> linux-sun-jdk-1.6.0.45 You must manually fetch the J2SE demos and samples for the Linux platform (jdk-6u45-linux-i586-demos.tar.gz) from http://www.oracle.com/technetwork/java/javase/downloads/index.html, place it in /usr/ports/distfiles and then run make again. *** [all] Error code 1 File jdk-6u45-linux-i586-demos.tar.gz does not exist at "http://www.oracle.com/technetwork/java/javase/downloads/index.html" Unless I'm missing something, the latest demo file is : jdk-6u35-linux-i586-demos.tar.gz >How-To-Repeat: >Fix: I'm not sure who uses these files or what they use them for, but perhaps pointing to jdk-6u35-linux-i586-demos.tar.gz would be adequate? >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 00:10:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id CFFCB791 for ; Thu, 26 Sep 2013 00:10:01 +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 BB8102E9E for ; Thu, 26 Sep 2013 00:10:01 +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 r8Q0A1Do059434 for ; Thu, 26 Sep 2013 00:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8Q0A0h2059431; Thu, 26 Sep 2013 00:10:00 GMT (envelope-from gnats) Date: Thu, 26 Sep 2013 00:10:00 GMT Message-Id: <201309260010.r8Q0A0h2059431@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Ken DEGUCHI Subject: Re: ports/182371: ports-mgmt/pkg_replace: fixup pattrn matching in pkg_glob() function X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Ken DEGUCHI List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Sep 2013 00:10:02 -0000 The following reply was made to PR ports/182371; it has been noted by GNATS. From: Ken DEGUCHI To: , Cc: Subject: Re: ports/182371: ports-mgmt/pkg_replace: fixup pattrn matching in pkg_glob() function Date: Thu, 26 Sep 2013 09:07:33 +0900 --Multipart=_Thu__26_Sep_2013_09_07_33_+0900_GB2+18knyZZWGN8h Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Thanks for this patch. Then I made a patch as follows - Fix pattern matching in pkg_glob function. - Add support for staging. - Download patch file from my web site. --Multipart=_Thu__26_Sep_2013_09_07_33_+0900_GB2+18knyZZWGN8h Content-Type: text/plain; name="patch-pkg_replace.txt" Content-Disposition: attachment; filename="patch-pkg_replace.txt" Content-Transfer-Encoding: 7bit diff -ur /var/cache/portshaker/ports/ports-mgmt/pkg_replace/Makefile pkg_replace/Makefile --- /var/cache/portshaker/ports/ports-mgmt/pkg_replace/Makefile 2013-09-23 07:03:25.927883718 +0900 +++ pkg_replace/Makefile 2013-09-26 06:34:01.775885132 +0900 @@ -3,11 +3,14 @@ PORTNAME= pkg_replace PORTVERSION= 0.8.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= ports-mgmt MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_JP} MASTER_SITE_SUBDIR=portutil/22116 +PATCH_SITES= http://member.tokoha-u.ac.jp/~kdeguchi/download/ +PATCHFILES= patch-sbin-pkg_replace-pkg_replace.sh + MAINTAINER= kdeguchi@sz.tokoha-u.ac.jp COMMENT= Utility for upgrading installed packages @@ -15,8 +18,7 @@ MAKE_ARGS= PREFIX="${PREFIX}" \ PORTSDIR="${PORTSDIR}" PKG_DBDIR="${PKG_DBDIR}" -MAN1= pkg_replace.1 -MANCOMPRESSED= maybe +#MANCOMPRESSED= maybe OPTIONS_DEFINE= ZSH @@ -29,13 +31,8 @@ OPTIONS_SUB= yes -NO_STAGE= yes .include -.if ${PORT_OPTIONS:MPKGDB_FIX} -MAN1+= pkgdb_fix.1 -.endif - post-patch: .if ${PORT_OPTIONS:MPKGDB_FIX} @${REINPLACE_CMD} -e 's/pkg_replace/pkg_replace pkgdb_fix/;' ${WRKSRC}/sbin/Makefile @@ -44,4 +41,9 @@ @${REINPLACE_CMD} -e 's/^ sbin \\$$/ sbin/;s/^ share$$//;' ${WRKSRC}/Makefile .endif +pre-install: +.if ${PORT_OPTIONS:MZSH} + ${MKDIR} ${STAGEDIR}${LOCALBASE}/share/zsh/site-functions +.endif + .include diff -ur /var/cache/portshaker/ports/ports-mgmt/pkg_replace/distinfo pkg_replace/distinfo --- /var/cache/portshaker/ports/ports-mgmt/pkg_replace/distinfo 2012-08-23 06:57:58.000000000 +0900 +++ pkg_replace/distinfo 2013-09-26 06:02:20.736882949 +0900 @@ -1,2 +1,4 @@ SHA256 (pkg_replace-0.8.0.tar.bz2) = 3092f5fc0d18529eb5d38776941c0ee4d0073ecb524ab17671c81ca69c29e214 SIZE (pkg_replace-0.8.0.tar.bz2) = 17296 +SHA256 (patch-sbin-pkg_replace-pkg_replace.sh) = 30a4f9037c1d2ffbc3b8076bec9be47e67ea0beb9c85687597e8d36845bbcc56 +SIZE (patch-sbin-pkg_replace-pkg_replace.sh) = 11124 Only in /var/cache/portshaker/ports/ports-mgmt/pkg_replace/: files diff -ur /var/cache/portshaker/ports/ports-mgmt/pkg_replace/pkg-plist pkg_replace/pkg-plist --- /var/cache/portshaker/ports/ports-mgmt/pkg_replace/pkg-plist 2013-09-21 05:42:45.047884361 +0900 +++ pkg_replace/pkg-plist 2013-09-26 06:35:49.075884766 +0900 @@ -1,6 +1,9 @@ +etc/pkg_replace.conf.sample +man/man1/pkg_replace.1.gz +%%PKGDB_FIX%%man/man1/pkgdb_fix.1.gz sbin/pkg_replace %%PKGDB_FIX%%sbin/pkgdb_fix -etc/pkg_replace.conf.sample %%ZSH%%share/zsh/site-functions/_pkg_replace %%ZSH%%@unexec [ -f %D/bin/zsh ] || rmdir %D/share/zsh/site-functions 2>/dev/null || true +%%ZSH%%@dirrmtry share/zsh/site-functions %%ZSH%%@dirrmtry share/zsh --Multipart=_Thu__26_Sep_2013_09_07_33_+0900_GB2+18knyZZWGN8h-- From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 00:30:01 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 8FC9FA51 for ; Thu, 26 Sep 2013 00:30:01 +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 63E1C2F8D for ; Thu, 26 Sep 2013 00:30:01 +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 r8Q0U1g1067412 for ; Thu, 26 Sep 2013 00:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8Q0U1xI067411; Thu, 26 Sep 2013 00:30:01 GMT (envelope-from gnats) Date: Thu, 26 Sep 2013 00:30:01 GMT Message-Id: <201309260030.r8Q0U1xI067411@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Ken DEGUCHI Subject: Re: ports/182371: ports-mgmt/pkg_replace: fixup pattrn matching in pkg_glob() function X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Ken DEGUCHI List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Sep 2013 00:30:01 -0000 The following reply was made to PR ports/182371; it has been noted by GNATS. From: Ken DEGUCHI To: , Cc: Subject: Re: ports/182371: ports-mgmt/pkg_replace: fixup pattrn matching in pkg_glob() function Date: Thu, 26 Sep 2013 09:28:58 +0900 --Multipart=_Thu__26_Sep_2013_09_28_58_+0900_tiFsq5yt=0eJ3XLp Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Sorry, I forgot to delete a patch file in "files" directory. --Multipart=_Thu__26_Sep_2013_09_28_58_+0900_tiFsq5yt=0eJ3XLp Content-Type: text/plain; name="patch-pkg_replace.txt" Content-Disposition: attachment; filename="patch-pkg_replace.txt" Content-Transfer-Encoding: 7bit diff -Nur pkg_replace.orig/Makefile pkg_replace/Makefile --- pkg_replace.orig/Makefile 2013-09-23 07:03:25.927883718 +0900 +++ pkg_replace/Makefile 2013-09-26 06:42:16.314885105 +0900 @@ -3,11 +3,14 @@ PORTNAME= pkg_replace PORTVERSION= 0.8.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= ports-mgmt MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_JP} MASTER_SITE_SUBDIR=portutil/22116 +PATCH_SITES= http://member.tokoha-u.ac.jp/~kdeguchi/download/ +PATCHFILES= patch-sbin-pkg_replace-pkg_replace.sh + MAINTAINER= kdeguchi@sz.tokoha-u.ac.jp COMMENT= Utility for upgrading installed packages @@ -15,8 +18,7 @@ MAKE_ARGS= PREFIX="${PREFIX}" \ PORTSDIR="${PORTSDIR}" PKG_DBDIR="${PKG_DBDIR}" -MAN1= pkg_replace.1 -MANCOMPRESSED= maybe +#MANCOMPRESSED= maybe OPTIONS_DEFINE= ZSH @@ -29,13 +31,8 @@ OPTIONS_SUB= yes -NO_STAGE= yes .include -.if ${PORT_OPTIONS:MPKGDB_FIX} -MAN1+= pkgdb_fix.1 -.endif - post-patch: .if ${PORT_OPTIONS:MPKGDB_FIX} @${REINPLACE_CMD} -e 's/pkg_replace/pkg_replace pkgdb_fix/;' ${WRKSRC}/sbin/Makefile @@ -44,4 +41,9 @@ @${REINPLACE_CMD} -e 's/^ sbin \\$$/ sbin/;s/^ share$$//;' ${WRKSRC}/Makefile .endif +pre-install: +.if ${PORT_OPTIONS:MZSH} + ${MKDIR} ${STAGEDIR}${LOCALBASE}/share/zsh/site-functions +.endif + .include diff -Nur pkg_replace.orig/distinfo pkg_replace/distinfo --- pkg_replace.orig/distinfo 2012-08-23 06:57:58.000000000 +0900 +++ pkg_replace/distinfo 2013-09-26 06:02:20.736882949 +0900 @@ -1,2 +1,4 @@ SHA256 (pkg_replace-0.8.0.tar.bz2) = 3092f5fc0d18529eb5d38776941c0ee4d0073ecb524ab17671c81ca69c29e214 SIZE (pkg_replace-0.8.0.tar.bz2) = 17296 +SHA256 (patch-sbin-pkg_replace-pkg_replace.sh) = 30a4f9037c1d2ffbc3b8076bec9be47e67ea0beb9c85687597e8d36845bbcc56 +SIZE (patch-sbin-pkg_replace-pkg_replace.sh) = 11124 diff -Nur pkg_replace.orig/files/patch-pkg_replace_pkgng pkg_replace/files/patch-pkg_replace_pkgng --- pkg_replace.orig/files/patch-pkg_replace_pkgng 2013-09-23 07:03:26.068883357 +0900 +++ pkg_replace/files/patch-pkg_replace_pkgng 1970-01-01 09:00:00.000000000 +0900 @@ -1,423 +0,0 @@ ---- sbin/pkg_replace/pkg_replace.sh.orig 2007-01-25 21:55:46.000000000 +0900 -+++ sbin/pkg_replace/pkg_replace.sh 2013-09-03 06:58:43.000000000 +0900 -@@ -125,14 +125,27 @@ - : ${PACKAGEROOT="ftp://ftp.NetBSD.org"} - : ${PKG_SUFX=".tgz"} - #else -+ : ${use_pkgng="`/usr/bin/make -f/usr/share/mk/bsd.port.mk -V WITH_PKGNG`"} -+ if [ "x${use_pkgng}" = "xdevel" ]; then -+ use_pkgng="yes" -+ fi - : ${PORTSDIR="/usr/ports"} -+ if is_yes ${use_pkgng}; then -+ : ${PKGREPOSITORY="/var/cache/pkg/All"} -+ else - : ${PKGREPOSITORY="${PORTSDIR}/packages/All"} -+ fi - #ifdef WITH_OPENBSD - : ${PACKAGEROOT="ftp://ftp.OpenBSD.org"} - : ${PKG_SUFX=".tgz"} - #else -+ if is_yes ${use_pkgng}; then -+ : ${PACKAGEROOT="http://pkgbeta.FreeBSD.org"} -+ : ${PKG_SUFX=".txz"} -+ else - : ${PACKAGEROOT="ftp://ftp.FreeBSD.org"} - : ${PKG_SUFX=".tbz"} -+ fi - #endif - #endif - : ${PKG_BACKUP_DIR=${PKGREPOSITORY}} -@@ -152,10 +165,18 @@ - } - - init_pkgtools() { -+ if is_yes ${use_pkgng}; then -+ PKG_ADD="pkg add" -+ PKG_CREATE="pkg create" -+ PKG_DELETE="pkg delete" -+ PKG_INFO="pkg info" -+ PKG_SET="pkg set" -+ else - PKG_ADD="pkg_add" - PKG_CREATE="pkg_create" - PKG_DELETE="pkg_delete" - PKG_INFO="pkg_info" -+ fi - MAKE="@MAKE@" - } - -@@ -213,7 +234,7 @@ - expand_path 'file' "${p##*=}" - file_exist "${file}" || continue - p=${p%=*} ;; -- *.t[bg]z) -+ *.t[bgx]z) - expand_path 'file' "$p" - get_pkgname_for_binary 'p' "${file}" || continue - p=${p%-*} ;; -@@ -423,6 +444,7 @@ - file_exist "$2" || return 1 - - case $2 in -+ *.txz) _opt=J ;; - *.tbz) _opt=j ;; - *.tgz) _opt=z ;; - *) return 1 ;; -@@ -434,6 +456,7 @@ - #ifdef WITH_OPENBSD - X=`@TAR@ x${_opt}f "$2" -O "+CONTENTS" | - #else -+ is_yes ${use_pkgng} && X=`${PKG_INFO} -F "$2"` || - X=`@TAR@ x${_opt}f "$2" -O --fast-read "+CONTENTS" | - #endif - #endif -@@ -467,6 +490,11 @@ - done < "${PKG_DBDIR}/$2/+BUILD_INFO" - fi - #else -+ if is_yes ${use_pkgng}; then -+ X=`${PKG_INFO} -qo $2` -+ eval $1=\$X -+ return 0 -+ fi - if [ -r "${PKG_DBDIR}/$2/+CONTENTS" ]; then - while read X; do - case $X in -@@ -488,7 +516,11 @@ - } - - set_pkg_vars() { -+ if is_yes ${use_pkgng}; then -+ ${PKG_INFO} -e $1 || return 1 -+ else - [ -d "${PKG_DBDIR}/$1" ] || return 1 -+ fi - - pkg_name=$1 - pkg_pkgdir=${PKG_DBDIR}/$1 -@@ -526,10 +558,27 @@ - - for _arg in ${1+"$@"}; do - _pattern=${_arg#${PKG_DBDIR}/} -+ if is_yes ${use_pkgng}; then -+ for p in `${PKG_INFO} -g "${_pattern}" 2>/dev/null`; do -+ if is_yes ${opt_depends}; then -+ pkg_depends '_deps' "$p" -+ eval ${_var}=\"\$${_var} \${_deps}\" -+ fi -+ -+ eval ${_var}=\"\$${_var} \$p\" - -+ if is_yes ${opt_required_by}; then -+ pkg_required_by '_req_by' "$p" -+ eval ${_var}=\"\$${_var} \${_req_by}\" -+ fi -+ done -+ if [ -z "${pkgs}" ]; then -+ warn "No such installed package: ${_arg}" -+ fi -+ else - case ${_pattern} in -- *\**|*-pl[0-9]*|*-[0-9]*[0-9.][a-z]|*-[0-9]*[0-9]) ;; -- *) _pattern="${_pattern}-[0-9]*[0-9a-z]" ;; -+ *\**|*-[0-9]*|*-[brv.][0-9]*|*-a.[0-9]*|*-pl[0-9]*|*-b.r[0-9]*|*-cr.[a-z]*) ;; -+ *) _pattern="${_pattern}-[0-9]*[0-9a-zA-Z]" ;; - esac - - for p in ${PKG_DBDIR}/${_pattern}/+CONTENTS; do -@@ -552,6 +601,7 @@ - warn "No such installed package: ${_arg}" - fi - done -+ fi - done - - set -f -@@ -568,6 +618,12 @@ - done < "${PKG_DBDIR}/$2/+REQUIRING" - fi - #else -+ if is_yes ${use_pkgng}; then -+ X=`${PKG_INFO} -qd $2` -+ eval $1=\"\${X}\" -+ return 0 -+ fi -+ - if [ -r "${PKG_DBDIR}/$2/+CONTENTS" ]; then - while read X; do - case $X in -@@ -588,6 +644,12 @@ - pkg_required_by() { - local X - -+ if is_yes ${use_pkgng}; then -+ X=`${PKG_INFO} -qr $2` -+ eval $1=\"\$X\" -+ return 0 -+ fi -+ - eval $1= - if [ -r "${PKG_DBDIR}/$2/+REQUIRED_BY" ]; then - while read X; do -@@ -597,7 +659,7 @@ - } - - pkg_sort() { -- local p _var _sorted _unsorted _arg _deps -+ local p _var _sorted _unsorted _arg _deps _deplist - - _var=$1; shift - _sorted= -@@ -612,7 +674,13 @@ - *" ${_arg} "*) continue ;; - esac - -- if [ -s "${PKG_DBDIR}/${_arg}/+REQUIRED_BY" ]; then -+ _deplist= -+ if is_yes ${use_pkgng}; then -+ _deplist=`${PKG_INFO} -qr ${_arg}` -+ else -+ _deplist="${PKG_DBDIR}/${_arg}/+REQUIRED_BY" -+ fi -+ if [ -s "${_deplist}" ]; then - pkg_depends '_deps' "${_arg}" - - for p in ${_deps}; do -@@ -715,7 +783,7 @@ - if empty ${_log}; then - try "$@" || return $? - else -- _cookie="${tmpdir}/.$1_failed" -+ _cookie="${tmpdir}/.${1##*/}_failed" - - { try "$@" || echo $? > "${_cookie}"; } | tee -a "${_log}" || - warn "tee(1) failed." -@@ -757,9 +825,11 @@ - info "Installing '$1'" - - case $1 in -- *.t[bg]z) -+ *.t[bgx]z) - is_yes ${opt_force} && install_args="-f" -+ if ! is_yes ${use_pkgng}; then - is_yes ${opt_verbose} && install_args="${install_args} -v" -+ fi - - xtry "${2-}" ${PKG_ADD} ${install_args} "$1" || return 1 - ;; -@@ -795,7 +865,11 @@ - - deinstall_args= - is_yes ${opt_force} && deinstall_args="-f" -+ if is_yes ${use_pkgng}; then -+ deinstall_args="${deinstall_args} -y" -+ else - is_yes ${opt_verbose} && deinstall_args="${deinstall_args} -v" -+ fi - - #ifdef WITH_PKGSRC - if [ -e "${PKG_DBDIR}/$1/+PRESERVE" ]; then -@@ -915,7 +989,11 @@ - *) subdir="${OS_MAJOR}-stable" ;; - esac - -+ if is_yes ${use_pkgng}; then -+ uri_path=/freebsd-${OS_MAJOR}-${ARCH}/latest/All/ -+ else - uri_path="/pub/FreeBSD/ports/${ARCH}/packages-${subdir}/All/" -+ fi - #endif - #endif - uri="${PACKAGEROOT}${uri_path}${pkg}" -@@ -987,7 +1065,11 @@ - return 1 - fi - #else -+ if is_yes ${use_pkgng}; then -+ try ${PKG_CREATE} -f ${PKG_SUFX} -o "${2%/*}" "$1" || return 1 -+ else - try ${PKG_CREATE} -b "$1" "$2" || return 1 -+ fi - #endif - #endif - } -@@ -1031,12 +1113,17 @@ - } - - preserve_libs() { -- local file -+ local file pkg_info_opts - - is_yes ${opt_preserve_libs} || return 0 - -+ if is_yes ${use_pkgng}; then -+ pkg_info_opts='-ql' -+ else -+ pkg_info_opts='-qL' -+ fi - preserved_files= -- for file in $(${PKG_INFO} -qL "$1"); do -+ for file in $(${PKG_INFO} ${pkg_info_opts} "$1"); do - case ${file##*/} in - lib*.so.[0-9]*) - if [ -f "${file}" ]; then -@@ -1080,20 +1167,30 @@ - fix_dependencies() { - #ifndef WITH_PKGSRC - #ifndef WITH_OPENBSD -- local p deps newdep opt_depends opt_required_by -+ local p deps newdep opt_depends opt_required_by dep_installed - - opt_depends=NO - opt_required_by=NO - pkg_depends 'deps' "$1" - - for p in ${deps}; do -- if [ ! -d "${PKG_DBDIR}/$p" ]; then -+ dep_installed=no -+ if is_yes ${use_pkgng}; then -+ ${PKG_INFO} -e $p && dep_installed=yes || dep_installed=no -+ else -+ [ -d "${PKG_DBDIR}/$p" ] && dep_installed=yes || dep_installed=no -+ fi -+ if ! is_yes ${dep_installed}; then - pkg_glob 'newdep' "${p%-*}" 2>/dev/null - - if empty ${newdep}; then - warn "'$1' depends on '$p', but it is NOT installed!" - else -+ if is_yes ${use_pkgng}; then -+ ${PKG_SET} -y -o `${PKG_INFO} -qo $1`:`${PKG_INFO} -qo $p` || return 1 -+ else - update_pkgdep "$1" "$p" "${newdep##* }" || return 1 -+ fi - fi - fi - done -@@ -1102,6 +1199,11 @@ - } - - update_dependencies() { -+ if is_yes ${use_pkgng}; then -+ info "Updating the dependencies" -+ [ "x$1" = "x$2" ] && return 0 || ${PKG_SET} -y -o $1:$2 -+ info " $1 -> $2" -+ else - local p req_by - - pkg_required_by 'req_by' "$2" -@@ -1114,6 +1216,7 @@ - update_pkgdep "$p" "$1-[^-]*" "$2" || return 1 - done - fi -+ fi - } - - have_pkgdep() { -@@ -1122,7 +1225,7 @@ - if [ -r "${PKG_DBDIR}/$1/+CONTENTS" ]; then - while read X; do - case $X in -- @pkgdep\ $2-[0-9]*|@pkgdep\ $2-pl[0-9]*) -+ @pkgdep\ $2-[0-9]*|@pkgdep\ $2-[brv.][0-9]*|@pkgdep\ $2-a.[0-9]*|@pkgdep\ $2-pl[0-9]*|@pkgdep\ $2-b.r[0-9]*|@pkgdep\ $2-cr.[a-z]*) - return 0 ;; - [!@]*) break ;; - esac -@@ -1134,7 +1237,7 @@ - - update_pkgdep() { - update_file "${PKG_DBDIR}/$1/+CONTENTS" \ -- "s/^@pkgdep $2\$/@pkgdep $3/" || return 1 -+ "/^@pkgdep $2\$/,/^@comment DEPORIGIN:/ { s|^@pkgdep $2\$|@pkgdep $3|; s|^@comment DEPORIGIN:.*\$|@comment DEPORIGIN:${pkg_origin}|; }" || return 1 - } - - delete_pkgdep() { -@@ -1325,7 +1428,7 @@ - - init_install() { - case $1 in -- *.t[bg]z) -+ *.t[bgx]z) - set_pkg_vars_for_binary "$1" || return 1 ;; - /*) set_port_vars "$1" || return 1 ;; - *) set_port_vars "${PORTSDIR}/$1" || return 1 ;; -@@ -1351,7 +1454,7 @@ - done - - case ${replace_with} in -- *.t[bg]z) -+ *.t[bgx]z) - pkg_binary=${replace_with} ;; - ?*) - pkg_portdir=${replace_with} -@@ -1428,6 +1531,12 @@ - do_replace() { - local pkg_log pkg_tmpdir old_package old_required_by preserved_files - -+ if is_yes ${use_pkgng}; then -+ local old_origin new_origin -+ old_origin= -+ new_origin= -+ fi -+ - init_replace "$1" || { status=skipped; return 0; } - - if [ "${cur_pkg_name}" != "${pkg_name}" ]; then -@@ -1482,7 +1591,9 @@ - fi - - pkg_tmpdir="${tmpdir}/${cur_pkg_name}" -+ if ! is_yes ${use_pkgng}; then - old_required_by="${pkg_tmpdir}/+REQUIRED_BY" -+ fi - - if ! find_package 'old_package' "${cur_pkg_name}"; then - old_package="${pkg_tmpdir}/${cur_pkg_name}${PKG_SUFX}" -@@ -1491,7 +1602,11 @@ - if ! { - create_dir "${pkg_tmpdir}" && - backup_package "${cur_pkg_name}" "${old_package}" && -- backup_file "${cur_pkg_pkgdir}/+REQUIRED_BY" "${old_required_by}" && -+ if is_yes ${use_pkgng}; then -+ old_origin=`${PKG_INFO} -qo ${cur_pkg_name}` || return 1 -+ else -+ backup_file "${cur_pkg_pkgdir}/+REQUIRED_BY" "${old_required_by}" -+ fi && - preserve_libs "${cur_pkg_name}" - }; then - log="backup error" -@@ -1503,6 +1618,9 @@ - if install_package "${pkg_binary:-${pkg_portdir}}" "${pkg_log}"; then - status=done - cur_pkg_pkgdir=${PKG_DBDIR}/${pkg_name} -+ if is_yes ${use_pkgng}; then -+ new_origin=`${PKG_INFO} -qo ${pkg_name}` -+ fi - else - log="install error" - restore_package "${old_package}" || { -@@ -1515,8 +1633,10 @@ - log="deinstall error" - fi - -+ if ! is_yes ${use_pkgng}; then - restore_file "${old_required_by}" "${cur_pkg_pkgdir}/+REQUIRED_BY" || - warn "Failed to restore the +REQUIRED_BY file." -+ fi - process_package "${old_package}" || - warn "Failed to keep the old version." - clean_libs || -@@ -1527,7 +1647,11 @@ - case ${status} in - done) - fix_dependencies "${pkg_name}" || return 1 -- update_dependencies "${cur_pkg_name%-*}" "${pkg_name}" || return 1 ;; -+ if is_yes ${use_pkgng}; then -+ update_dependencies "${old_origin}" "${new_origin}" || return 1 -+ else -+ update_dependencies "${cur_pkg_name%-*}" "${pkg_name}" || return 1 -+ fi ;; - *) - return 1 ;; - esac diff -Nur pkg_replace.orig/pkg-plist pkg_replace/pkg-plist --- pkg_replace.orig/pkg-plist 2013-09-21 05:42:45.047884361 +0900 +++ pkg_replace/pkg-plist 2013-09-26 06:35:49.075884766 +0900 @@ -1,6 +1,9 @@ +etc/pkg_replace.conf.sample +man/man1/pkg_replace.1.gz +%%PKGDB_FIX%%man/man1/pkgdb_fix.1.gz sbin/pkg_replace %%PKGDB_FIX%%sbin/pkgdb_fix -etc/pkg_replace.conf.sample %%ZSH%%share/zsh/site-functions/_pkg_replace %%ZSH%%@unexec [ -f %D/bin/zsh ] || rmdir %D/share/zsh/site-functions 2>/dev/null || true +%%ZSH%%@dirrmtry share/zsh/site-functions %%ZSH%%@dirrmtry share/zsh --Multipart=_Thu__26_Sep_2013_09_28_58_+0900_tiFsq5yt=0eJ3XLp-- From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 01:09:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 707AEF6B; Thu, 26 Sep 2013 01:09:01 +0000 (UTC) (envelope-from edwin@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 470852182; Thu, 26 Sep 2013 01:09:01 +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 r8Q191YA076622; Thu, 26 Sep 2013 01:09:01 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8Q191lw076621; Thu, 26 Sep 2013 01:09:01 GMT (envelope-from edwin) Date: Thu, 26 Sep 2013 01:09:01 GMT Message-Id: <201309260109.r8Q191lw076621@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-java@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182384: java/linux-sun-jdk16 won't build with demos & samples 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: Thu, 26 Sep 2013 01:09:01 -0000 Synopsis: java/linux-sun-jdk16 won't build with demos & samples Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-java Responsible-Changed-By: edwin Responsible-Changed-When: Thu Sep 26 01:09:01 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182384 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 01:08:59 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id BD350F69; Thu, 26 Sep 2013 01:08:59 +0000 (UTC) (envelope-from edwin@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 92EF52181; Thu, 26 Sep 2013 01:08:59 +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 r8Q18xRA076541; Thu, 26 Sep 2013 01:08:59 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8Q18xJt076540; Thu, 26 Sep 2013 01:08:59 GMT (envelope-from edwin) Date: Thu, 26 Sep 2013 01:08:59 GMT Message-Id: <201309260108.r8Q18xJt076540@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182384: java/linux-sun-jdk16 won't build with demos & samples 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: Thu, 26 Sep 2013 01:08:59 -0000 Synopsis: java/linux-sun-jdk16 won't build with demos & samples Class-Changed-From-To: maintainer-update->change-request Class-Changed-By: edwin Class-Changed-When: Thu Sep 26 01:08:59 UTC 2013 Class-Changed-Why: Fix category (submitter is not maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182384 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 01:12:43 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id C431A119; Thu, 26 Sep 2013 01:12:43 +0000 (UTC) (envelope-from edwin@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 9B5BB21E4; Thu, 26 Sep 2013 01:12:43 +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 r8Q1Chbo078405; Thu, 26 Sep 2013 01:12:43 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8Q1ChbE078404; Thu, 26 Sep 2013 01:12:43 GMT (envelope-from edwin) Date: Thu, 26 Sep 2013 01:12:43 GMT Message-Id: <201309260112.r8Q1ChbE078404@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, brix@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182379: irc/bitlbee otr compilation failure 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: Thu, 26 Sep 2013 01:12:43 -0000 Synopsis: irc/bitlbee otr compilation failure Responsible-Changed-From-To: freebsd-ports-bugs->brix Responsible-Changed-By: edwin Responsible-Changed-When: Thu Sep 26 01:12:43 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182379 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 01: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 C887D482 for ; Thu, 26 Sep 2013 01: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 AA8DE230F for ; Thu, 26 Sep 2013 01: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 r8Q1U0Ta081908 for ; Thu, 26 Sep 2013 01: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 r8Q1U0B3081907; Thu, 26 Sep 2013 01:30:00 GMT (envelope-from gnats) Resent-Date: Thu, 26 Sep 2013 01:30:00 GMT Resent-Message-Id: <201309260130.r8Q1U0B3081907@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, Hon-Yu Lawrence Cheung Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 1529F339 for ; Thu, 26 Sep 2013 01:19:43 +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 03572227A for ; Thu, 26 Sep 2013 01:19:43 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8Q1JgLH070953 for ; Thu, 26 Sep 2013 01:19:42 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8Q1Jgd3070932; Thu, 26 Sep 2013 01:19:42 GMT (envelope-from nobody) Message-Id: <201309260119.r8Q1Jgd3070932@oldred.freebsd.org> Date: Thu, 26 Sep 2013 01:19:42 GMT From: Hon-Yu Lawrence Cheung To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182386: mail/thunderbird-i18n: fail to build at install stage 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: Thu, 26 Sep 2013 01:30:00 -0000 >Number: 182386 >Category: ports >Synopsis: mail/thunderbird-i18n: fail to build at install stage >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Sep 26 01:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Hon-Yu Lawrence Cheung >Release: FreeBSD 9.2 RC-4 >Organization: >Environment: FreeBSD headquarter.honyucheung.net 9.2-RC4 FreeBSD 9.2-RC4 #4 r255465: Wed Sep 11 13:36:08 HKT 2013 root@headquarter.honyucheung.net:/usr/obj/usr/src/sys/HEADQUARTER amd64 >Description: I build mail/thunderbird-i18n by poudriere tool but it failed at install stage with following error message. ############################################################################### ===> Returning to build of thunderbird-i18n-24.0 ===> thunderbird-i18n-24.0 depends on package: xpi-quick-locale-switcher>=0 - not found ===> Verifying install for xpi-quick-locale-switcher>=0 in /usr/ports/www/xpi-quick-locale-switcher ===> Installing existing package /packages/All/xpi-quick-locale-switcher-1.7.8.5.txz Installing xpi-quick-locale-switcher-1.7.8.5... done ===> Returning to build of thunderbird-i18n-24.0 =========================================================================== =================================================== ===> thunderbird-i18n-24.0 cannot install: Thunderbird versions mismatch: thunderbird- is installed and wanted version is thunderbird-24. *** [install] Error code 1 Stop in /usr/ports/mail/thunderbird-i18n. ===> Cleaning for thunderbird-i18n-24.0 >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 01:30:08 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 A49524B4; Thu, 26 Sep 2013 01:30:08 +0000 (UTC) (envelope-from edwin@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 7CF322313; Thu, 26 Sep 2013 01:30:08 +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 r8Q1U8kn082042; Thu, 26 Sep 2013 01:30:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8Q1U824082041; Thu, 26 Sep 2013 01:30:08 GMT (envelope-from edwin) Date: Thu, 26 Sep 2013 01:30:08 GMT Message-Id: <201309260130.r8Q1U824082041@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gecko@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182386: mail/thunderbird-i18n: fail to build at install stage 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: Thu, 26 Sep 2013 01:30:08 -0000 Synopsis: mail/thunderbird-i18n: fail to build at install stage Responsible-Changed-From-To: freebsd-ports-bugs->gecko Responsible-Changed-By: edwin Responsible-Changed-When: Thu Sep 26 01:30:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182386 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 03:40:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id BE3F3B5F for ; Thu, 26 Sep 2013 03:40: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 9DED42945 for ; Thu, 26 Sep 2013 03:40: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 r8Q3e0aR003569 for ; Thu, 26 Sep 2013 03:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8Q3e0gx003568; Thu, 26 Sep 2013 03:40:00 GMT (envelope-from gnats) Resent-Date: Thu, 26 Sep 2013 03:40:00 GMT Resent-Message-Id: <201309260340.r8Q3e0gx003568@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, Ken DEGUCHI Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 16412ABC for ; Thu, 26 Sep 2013 03:31:28 +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 E02B22914 for ; Thu, 26 Sep 2013 03:31:27 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8Q3VRsa081556 for ; Thu, 26 Sep 2013 03:31:27 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8Q3VRwG081536; Thu, 26 Sep 2013 03:31:27 GMT (envelope-from nobody) Message-Id: <201309260331.r8Q3VRwG081536@oldred.freebsd.org> Date: Thu, 26 Sep 2013 03:31:27 GMT From: Ken DEGUCHI To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182388: [maintainer update] ports-mgmt/pkg_replace 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: Thu, 26 Sep 2013 03:40:00 -0000 >Number: 182388 >Category: ports >Synopsis: [maintainer update] ports-mgmt/pkg_replace >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Sep 26 03:40:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Ken DEGUCHI >Release: FreeBSD 9.2-PRERELEASE >Organization: TOKOHA University >Environment: FreeBSD lagrange.tokoha-u.ac.jp 9.2-PRERELEASE FreeBSD 9.2-PRERELEASE #103 r255729M: Fri Sep 20 18:34:49 JST 2013 root@lagrange.tokoha-u.ac.jp:/usr/obj/usr/src/sys/LAGRANGE amd64 >Description: - Add support for staging. - Download a patch file from my web site and remove a patch file in "files" directory. - Fix pattern matching in pkg_glob function. Please see http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/182371 >How-To-Repeat: Please see http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/182371 >Fix: Patch attached with submission follows: diff -Nur pkg_replace.org/Makefile pkg_replace/Makefile --- pkg_replace.org/Makefile 2013-09-23 07:03:25.927883718 +0900 +++ pkg_replace/Makefile 2013-09-26 12:15:57.214883005 +0900 @@ -3,11 +3,14 @@ PORTNAME= pkg_replace PORTVERSION= 0.8.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= ports-mgmt MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_JP} MASTER_SITE_SUBDIR=portutil/22116 +PATCH_SITES= http://member.tokoha-u.ac.jp/~kdeguchi/download/ +PATCHFILES= ${PKGNAME}.patch + MAINTAINER= kdeguchi@sz.tokoha-u.ac.jp COMMENT= Utility for upgrading installed packages @@ -15,8 +18,7 @@ MAKE_ARGS= PREFIX="${PREFIX}" \ PORTSDIR="${PORTSDIR}" PKG_DBDIR="${PKG_DBDIR}" -MAN1= pkg_replace.1 -MANCOMPRESSED= maybe +#MANCOMPRESSED= maybe OPTIONS_DEFINE= ZSH @@ -29,13 +31,8 @@ OPTIONS_SUB= yes -NO_STAGE= yes .include -.if ${PORT_OPTIONS:MPKGDB_FIX} -MAN1+= pkgdb_fix.1 -.endif - post-patch: .if ${PORT_OPTIONS:MPKGDB_FIX} @${REINPLACE_CMD} -e 's/pkg_replace/pkg_replace pkgdb_fix/;' ${WRKSRC}/sbin/Makefile @@ -44,4 +41,9 @@ @${REINPLACE_CMD} -e 's/^ sbin \\$$/ sbin/;s/^ share$$//;' ${WRKSRC}/Makefile .endif +pre-install: +.if ${PORT_OPTIONS:MZSH} + ${MKDIR} ${STAGEDIR}${LOCALBASE}/share/zsh/site-functions +.endif + .include diff -Nur pkg_replace.org/distinfo pkg_replace/distinfo --- pkg_replace.org/distinfo 2012-08-23 06:57:58.000000000 +0900 +++ pkg_replace/distinfo 2013-09-26 12:10:31.594897938 +0900 @@ -1,2 +1,4 @@ SHA256 (pkg_replace-0.8.0.tar.bz2) = 3092f5fc0d18529eb5d38776941c0ee4d0073ecb524ab17671c81ca69c29e214 SIZE (pkg_replace-0.8.0.tar.bz2) = 17296 +SHA256 (pkg_replace-0.8.0_3.patch) = cfa2adb3643a8684281143e4c241b8597510251730657816d68926701615ae98 +SIZE (pkg_replace-0.8.0_3.patch) = 11125 diff -Nur pkg_replace.org/files/patch-pkg_replace_pkgng pkg_replace/files/patch-pkg_replace_pkgng --- pkg_replace.org/files/patch-pkg_replace_pkgng 2013-09-23 07:03:26.068883357 +0900 +++ pkg_replace/files/patch-pkg_replace_pkgng 1970-01-01 09:00:00.000000000 +0900 @@ -1,423 +0,0 @@ ---- sbin/pkg_replace/pkg_replace.sh.orig 2007-01-25 21:55:46.000000000 +0900 -+++ sbin/pkg_replace/pkg_replace.sh 2013-09-03 06:58:43.000000000 +0900 -@@ -125,14 +125,27 @@ - : ${PACKAGEROOT="ftp://ftp.NetBSD.org"} - : ${PKG_SUFX=".tgz"} - #else -+ : ${use_pkgng="`/usr/bin/make -f/usr/share/mk/bsd.port.mk -V WITH_PKGNG`"} -+ if [ "x${use_pkgng}" = "xdevel" ]; then -+ use_pkgng="yes" -+ fi - : ${PORTSDIR="/usr/ports"} -+ if is_yes ${use_pkgng}; then -+ : ${PKGREPOSITORY="/var/cache/pkg/All"} -+ else - : ${PKGREPOSITORY="${PORTSDIR}/packages/All"} -+ fi - #ifdef WITH_OPENBSD - : ${PACKAGEROOT="ftp://ftp.OpenBSD.org"} - : ${PKG_SUFX=".tgz"} - #else -+ if is_yes ${use_pkgng}; then -+ : ${PACKAGEROOT="http://pkgbeta.FreeBSD.org"} -+ : ${PKG_SUFX=".txz"} -+ else - : ${PACKAGEROOT="ftp://ftp.FreeBSD.org"} - : ${PKG_SUFX=".tbz"} -+ fi - #endif - #endif - : ${PKG_BACKUP_DIR=${PKGREPOSITORY}} -@@ -152,10 +165,18 @@ - } - - init_pkgtools() { -+ if is_yes ${use_pkgng}; then -+ PKG_ADD="pkg add" -+ PKG_CREATE="pkg create" -+ PKG_DELETE="pkg delete" -+ PKG_INFO="pkg info" -+ PKG_SET="pkg set" -+ else - PKG_ADD="pkg_add" - PKG_CREATE="pkg_create" - PKG_DELETE="pkg_delete" - PKG_INFO="pkg_info" -+ fi - MAKE="@MAKE@" - } - -@@ -213,7 +234,7 @@ - expand_path 'file' "${p##*=}" - file_exist "${file}" || continue - p=${p%=*} ;; -- *.t[bg]z) -+ *.t[bgx]z) - expand_path 'file' "$p" - get_pkgname_for_binary 'p' "${file}" || continue - p=${p%-*} ;; -@@ -423,6 +444,7 @@ - file_exist "$2" || return 1 - - case $2 in -+ *.txz) _opt=J ;; - *.tbz) _opt=j ;; - *.tgz) _opt=z ;; - *) return 1 ;; -@@ -434,6 +456,7 @@ - #ifdef WITH_OPENBSD - X=`@TAR@ x${_opt}f "$2" -O "+CONTENTS" | - #else -+ is_yes ${use_pkgng} && X=`${PKG_INFO} -F "$2"` || - X=`@TAR@ x${_opt}f "$2" -O --fast-read "+CONTENTS" | - #endif - #endif -@@ -467,6 +490,11 @@ - done < "${PKG_DBDIR}/$2/+BUILD_INFO" - fi - #else -+ if is_yes ${use_pkgng}; then -+ X=`${PKG_INFO} -qo $2` -+ eval $1=\$X -+ return 0 -+ fi - if [ -r "${PKG_DBDIR}/$2/+CONTENTS" ]; then - while read X; do - case $X in -@@ -488,7 +516,11 @@ - } - - set_pkg_vars() { -+ if is_yes ${use_pkgng}; then -+ ${PKG_INFO} -e $1 || return 1 -+ else - [ -d "${PKG_DBDIR}/$1" ] || return 1 -+ fi - - pkg_name=$1 - pkg_pkgdir=${PKG_DBDIR}/$1 -@@ -526,10 +558,27 @@ - - for _arg in ${1+"$@"}; do - _pattern=${_arg#${PKG_DBDIR}/} -+ if is_yes ${use_pkgng}; then -+ for p in `${PKG_INFO} -g "${_pattern}" 2>/dev/null`; do -+ if is_yes ${opt_depends}; then -+ pkg_depends '_deps' "$p" -+ eval ${_var}=\"\$${_var} \${_deps}\" -+ fi -+ -+ eval ${_var}=\"\$${_var} \$p\" - -+ if is_yes ${opt_required_by}; then -+ pkg_required_by '_req_by' "$p" -+ eval ${_var}=\"\$${_var} \${_req_by}\" -+ fi -+ done -+ if [ -z "${pkgs}" ]; then -+ warn "No such installed package: ${_arg}" -+ fi -+ else - case ${_pattern} in -- *\**|*-pl[0-9]*|*-[0-9]*[0-9.][a-z]|*-[0-9]*[0-9]) ;; -- *) _pattern="${_pattern}-[0-9]*[0-9a-z]" ;; -+ *\**|*-[0-9]*|*-[brv.][0-9]*|*-a.[0-9]*|*-pl[0-9]*|*-b.r[0-9]*|*-cr.[a-z]*) ;; -+ *) _pattern="${_pattern}-[0-9]*[0-9a-zA-Z]" ;; - esac - - for p in ${PKG_DBDIR}/${_pattern}/+CONTENTS; do -@@ -552,6 +601,7 @@ - warn "No such installed package: ${_arg}" - fi - done -+ fi - done - - set -f -@@ -568,6 +618,12 @@ - done < "${PKG_DBDIR}/$2/+REQUIRING" - fi - #else -+ if is_yes ${use_pkgng}; then -+ X=`${PKG_INFO} -qd $2` -+ eval $1=\"\${X}\" -+ return 0 -+ fi -+ - if [ -r "${PKG_DBDIR}/$2/+CONTENTS" ]; then - while read X; do - case $X in -@@ -588,6 +644,12 @@ - pkg_required_by() { - local X - -+ if is_yes ${use_pkgng}; then -+ X=`${PKG_INFO} -qr $2` -+ eval $1=\"\$X\" -+ return 0 -+ fi -+ - eval $1= - if [ -r "${PKG_DBDIR}/$2/+REQUIRED_BY" ]; then - while read X; do -@@ -597,7 +659,7 @@ - } - - pkg_sort() { -- local p _var _sorted _unsorted _arg _deps -+ local p _var _sorted _unsorted _arg _deps _deplist - - _var=$1; shift - _sorted= -@@ -612,7 +674,13 @@ - *" ${_arg} "*) continue ;; - esac - -- if [ -s "${PKG_DBDIR}/${_arg}/+REQUIRED_BY" ]; then -+ _deplist= -+ if is_yes ${use_pkgng}; then -+ _deplist=`${PKG_INFO} -qr ${_arg}` -+ else -+ _deplist="${PKG_DBDIR}/${_arg}/+REQUIRED_BY" -+ fi -+ if [ -s "${_deplist}" ]; then - pkg_depends '_deps' "${_arg}" - - for p in ${_deps}; do -@@ -715,7 +783,7 @@ - if empty ${_log}; then - try "$@" || return $? - else -- _cookie="${tmpdir}/.$1_failed" -+ _cookie="${tmpdir}/.${1##*/}_failed" - - { try "$@" || echo $? > "${_cookie}"; } | tee -a "${_log}" || - warn "tee(1) failed." -@@ -757,9 +825,11 @@ - info "Installing '$1'" - - case $1 in -- *.t[bg]z) -+ *.t[bgx]z) - is_yes ${opt_force} && install_args="-f" -+ if ! is_yes ${use_pkgng}; then - is_yes ${opt_verbose} && install_args="${install_args} -v" -+ fi - - xtry "${2-}" ${PKG_ADD} ${install_args} "$1" || return 1 - ;; -@@ -795,7 +865,11 @@ - - deinstall_args= - is_yes ${opt_force} && deinstall_args="-f" -+ if is_yes ${use_pkgng}; then -+ deinstall_args="${deinstall_args} -y" -+ else - is_yes ${opt_verbose} && deinstall_args="${deinstall_args} -v" -+ fi - - #ifdef WITH_PKGSRC - if [ -e "${PKG_DBDIR}/$1/+PRESERVE" ]; then -@@ -915,7 +989,11 @@ - *) subdir="${OS_MAJOR}-stable" ;; - esac - -+ if is_yes ${use_pkgng}; then -+ uri_path=/freebsd-${OS_MAJOR}-${ARCH}/latest/All/ -+ else - uri_path="/pub/FreeBSD/ports/${ARCH}/packages-${subdir}/All/" -+ fi - #endif - #endif - uri="${PACKAGEROOT}${uri_path}${pkg}" -@@ -987,7 +1065,11 @@ - return 1 - fi - #else -+ if is_yes ${use_pkgng}; then -+ try ${PKG_CREATE} -f ${PKG_SUFX} -o "${2%/*}" "$1" || return 1 -+ else - try ${PKG_CREATE} -b "$1" "$2" || return 1 -+ fi - #endif - #endif - } -@@ -1031,12 +1113,17 @@ - } - - preserve_libs() { -- local file -+ local file pkg_info_opts - - is_yes ${opt_preserve_libs} || return 0 - -+ if is_yes ${use_pkgng}; then -+ pkg_info_opts='-ql' -+ else -+ pkg_info_opts='-qL' -+ fi - preserved_files= -- for file in $(${PKG_INFO} -qL "$1"); do -+ for file in $(${PKG_INFO} ${pkg_info_opts} "$1"); do - case ${file##*/} in - lib*.so.[0-9]*) - if [ -f "${file}" ]; then -@@ -1080,20 +1167,30 @@ - fix_dependencies() { - #ifndef WITH_PKGSRC - #ifndef WITH_OPENBSD -- local p deps newdep opt_depends opt_required_by -+ local p deps newdep opt_depends opt_required_by dep_installed - - opt_depends=NO - opt_required_by=NO - pkg_depends 'deps' "$1" - - for p in ${deps}; do -- if [ ! -d "${PKG_DBDIR}/$p" ]; then -+ dep_installed=no -+ if is_yes ${use_pkgng}; then -+ ${PKG_INFO} -e $p && dep_installed=yes || dep_installed=no -+ else -+ [ -d "${PKG_DBDIR}/$p" ] && dep_installed=yes || dep_installed=no -+ fi -+ if ! is_yes ${dep_installed}; then - pkg_glob 'newdep' "${p%-*}" 2>/dev/null - - if empty ${newdep}; then - warn "'$1' depends on '$p', but it is NOT installed!" - else -+ if is_yes ${use_pkgng}; then -+ ${PKG_SET} -y -o `${PKG_INFO} -qo $1`:`${PKG_INFO} -qo $p` || return 1 -+ else - update_pkgdep "$1" "$p" "${newdep##* }" || return 1 -+ fi - fi - fi - done -@@ -1102,6 +1199,11 @@ - } - - update_dependencies() { -+ if is_yes ${use_pkgng}; then -+ info "Updating the dependencies" -+ [ "x$1" = "x$2" ] && return 0 || ${PKG_SET} -y -o $1:$2 -+ info " $1 -> $2" -+ else - local p req_by - - pkg_required_by 'req_by' "$2" -@@ -1114,6 +1216,7 @@ - update_pkgdep "$p" "$1-[^-]*" "$2" || return 1 - done - fi -+ fi - } - - have_pkgdep() { -@@ -1122,7 +1225,7 @@ - if [ -r "${PKG_DBDIR}/$1/+CONTENTS" ]; then - while read X; do - case $X in -- @pkgdep\ $2-[0-9]*|@pkgdep\ $2-pl[0-9]*) -+ @pkgdep\ $2-[0-9]*|@pkgdep\ $2-[brv.][0-9]*|@pkgdep\ $2-a.[0-9]*|@pkgdep\ $2-pl[0-9]*|@pkgdep\ $2-b.r[0-9]*|@pkgdep\ $2-cr.[a-z]*) - return 0 ;; - [!@]*) break ;; - esac -@@ -1134,7 +1237,7 @@ - - update_pkgdep() { - update_file "${PKG_DBDIR}/$1/+CONTENTS" \ -- "s/^@pkgdep $2\$/@pkgdep $3/" || return 1 -+ "/^@pkgdep $2\$/,/^@comment DEPORIGIN:/ { s|^@pkgdep $2\$|@pkgdep $3|; s|^@comment DEPORIGIN:.*\$|@comment DEPORIGIN:${pkg_origin}|; }" || return 1 - } - - delete_pkgdep() { -@@ -1325,7 +1428,7 @@ - - init_install() { - case $1 in -- *.t[bg]z) -+ *.t[bgx]z) - set_pkg_vars_for_binary "$1" || return 1 ;; - /*) set_port_vars "$1" || return 1 ;; - *) set_port_vars "${PORTSDIR}/$1" || return 1 ;; -@@ -1351,7 +1454,7 @@ - done - - case ${replace_with} in -- *.t[bg]z) -+ *.t[bgx]z) - pkg_binary=${replace_with} ;; - ?*) - pkg_portdir=${replace_with} -@@ -1428,6 +1531,12 @@ - do_replace() { - local pkg_log pkg_tmpdir old_package old_required_by preserved_files - -+ if is_yes ${use_pkgng}; then -+ local old_origin new_origin -+ old_origin= -+ new_origin= -+ fi -+ - init_replace "$1" || { status=skipped; return 0; } - - if [ "${cur_pkg_name}" != "${pkg_name}" ]; then -@@ -1482,7 +1591,9 @@ - fi - - pkg_tmpdir="${tmpdir}/${cur_pkg_name}" -+ if ! is_yes ${use_pkgng}; then - old_required_by="${pkg_tmpdir}/+REQUIRED_BY" -+ fi - - if ! find_package 'old_package' "${cur_pkg_name}"; then - old_package="${pkg_tmpdir}/${cur_pkg_name}${PKG_SUFX}" -@@ -1491,7 +1602,11 @@ - if ! { - create_dir "${pkg_tmpdir}" && - backup_package "${cur_pkg_name}" "${old_package}" && -- backup_file "${cur_pkg_pkgdir}/+REQUIRED_BY" "${old_required_by}" && -+ if is_yes ${use_pkgng}; then -+ old_origin=`${PKG_INFO} -qo ${cur_pkg_name}` || return 1 -+ else -+ backup_file "${cur_pkg_pkgdir}/+REQUIRED_BY" "${old_required_by}" -+ fi && - preserve_libs "${cur_pkg_name}" - }; then - log="backup error" -@@ -1503,6 +1618,9 @@ - if install_package "${pkg_binary:-${pkg_portdir}}" "${pkg_log}"; then - status=done - cur_pkg_pkgdir=${PKG_DBDIR}/${pkg_name} -+ if is_yes ${use_pkgng}; then -+ new_origin=`${PKG_INFO} -qo ${pkg_name}` -+ fi - else - log="install error" - restore_package "${old_package}" || { -@@ -1515,8 +1633,10 @@ - log="deinstall error" - fi - -+ if ! is_yes ${use_pkgng}; then - restore_file "${old_required_by}" "${cur_pkg_pkgdir}/+REQUIRED_BY" || - warn "Failed to restore the +REQUIRED_BY file." -+ fi - process_package "${old_package}" || - warn "Failed to keep the old version." - clean_libs || -@@ -1527,7 +1647,11 @@ - case ${status} in - done) - fix_dependencies "${pkg_name}" || return 1 -- update_dependencies "${cur_pkg_name%-*}" "${pkg_name}" || return 1 ;; -+ if is_yes ${use_pkgng}; then -+ update_dependencies "${old_origin}" "${new_origin}" || return 1 -+ else -+ update_dependencies "${cur_pkg_name%-*}" "${pkg_name}" || return 1 -+ fi ;; - *) - return 1 ;; - esac diff -Nur pkg_replace.org/pkg-plist pkg_replace/pkg-plist --- pkg_replace.org/pkg-plist 2013-09-21 05:42:45.047884361 +0900 +++ pkg_replace/pkg-plist 2013-09-26 06:35:49.075884766 +0900 @@ -1,6 +1,9 @@ +etc/pkg_replace.conf.sample +man/man1/pkg_replace.1.gz +%%PKGDB_FIX%%man/man1/pkgdb_fix.1.gz sbin/pkg_replace %%PKGDB_FIX%%sbin/pkgdb_fix -etc/pkg_replace.conf.sample %%ZSH%%share/zsh/site-functions/_pkg_replace %%ZSH%%@unexec [ -f %D/bin/zsh ] || rmdir %D/share/zsh/site-functions 2>/dev/null || true +%%ZSH%%@dirrmtry share/zsh/site-functions %%ZSH%%@dirrmtry share/zsh >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 03:50: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 BD92DC37 for ; Thu, 26 Sep 2013 03:50: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 9D020297E for ; Thu, 26 Sep 2013 03:50: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 r8Q3o0dk003833 for ; Thu, 26 Sep 2013 03:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8Q3o0Uv003832; Thu, 26 Sep 2013 03:50:00 GMT (envelope-from gnats) Resent-Date: Thu, 26 Sep 2013 03:50:00 GMT Resent-Message-Id: <201309260350.r8Q3o0Uv003832@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 Chen 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 959BAC1D; Thu, 26 Sep 2013 03:48:45 +0000 (UTC) (envelope-from johnpupu@www.johnpupu.tw) Received: from www.johnpupu.tw (60-199-173-18.static.tfn.net.tw [60.199.173.18]) by mx1.freebsd.org (Postfix) with ESMTP id 5E6752972; Thu, 26 Sep 2013 03:48:43 +0000 (UTC) Received: from www.johnpupu.tw (localhost [127.0.0.1]) by www.johnpupu.tw (Postfix) with ESMTP id 2BC6F536003; Thu, 26 Sep 2013 11:39:32 +0800 (CST) Received: (from root@localhost) by www.johnpupu.tw (8.14.5/8.14.5/Submit) id r8Q3dW9r086954; Thu, 26 Sep 2013 11:39:32 +0800 (CST) (envelope-from johnpupu) Message-Id: <201309260339.r8Q3dW9r086954@www.johnpupu.tw> Date: Thu, 26 Sep 2013 11:39:32 +0800 (CST) From: John Chen To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/182389: [PATCH] graphics/pecl-imagick: [SUMMARIZE CHANGES] Cc: mm@freebsd.org 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: Thu, 26 Sep 2013 03:50:00 -0000 >Number: 182389 >Category: ports >Synopsis: [PATCH] graphics/pecl-imagick: [SUMMARIZE CHANGES] >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Sep 26 03:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: John Chen >Release: FreeBSD 9.1-RELEASE amd64 >Organization: Watcher >Environment: System: FreeBSD www.johnpupu.tw 9.1-RELEASE FreeBSD 9.1-RELEASE #0 r243825: Tue Dec 4 09:23:10 >Description: [DESCRIBE CHANGES] Port maintainer (mm@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: suffix) Redports: http://redports.org/buildarchive/20130926024900-3417/ >How-To-Repeat: >Fix: --- pecl-imagick-3.1.2.patch begins here --- diff -ruN --exclude=CVS ../pecl-imagick.orig/Makefile ./Makefile --- ../pecl-imagick.orig/Makefile 2013-09-22 09:11:41.000000000 +0800 +++ ./Makefile 2013-09-26 10:10:40.000000000 +0800 @@ -2,8 +2,7 @@ # $FreeBSD: head/graphics/pecl-imagick/Makefile 327733 2013-09-20 18:35:44Z bapt $ PORTNAME= imagick -DISTVERSION= 3.1.0RC2 -PORTREVISION= 1 +DISTVERSION= 3.1.2 CATEGORIES= graphics MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- @@ -13,14 +12,14 @@ MAINTAINER= mm@FreeBSD.org COMMENT= Provides a wrapper to the ImageMagick/GraphicsMagick library +LICENSE= PHP301 + .if !defined(WITHOUT_X11) LIB_DEPENDS= MagickWand:${PORTSDIR}/graphics/ImageMagick .else LIB_DEPENDS= MagickWand:${PORTSDIR}/graphics/ImageMagick-nox11 .endif -LICENSE= PHP301 - USE_PHP= yes USE_PHPEXT= yes diff -ruN --exclude=CVS ../pecl-imagick.orig/distinfo ./distinfo --- ../pecl-imagick.orig/distinfo 2013-08-10 23:54:13.000000000 +0800 +++ ./distinfo 2013-09-26 10:10:42.000000000 +0800 @@ -1,2 +1,2 @@ -SHA256 (PECL/imagick-3.1.0RC2.tgz) = 0dbb7e5df61845f8eab68505711b9efcdc98cfaff96dcb982c7f8931dd9e8a31 -SIZE (PECL/imagick-3.1.0RC2.tgz) = 93264 +SHA256 (PECL/imagick-3.1.2.tgz) = 528769ac304a0bbe9a248811325042188c9d16e06de16f111fee317c85a36c93 +SIZE (PECL/imagick-3.1.2.tgz) = 94657 --- pecl-imagick-3.1.2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 03:50:09 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 496F3C6A; Thu, 26 Sep 2013 03:50:09 +0000 (UTC) (envelope-from edwin@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 1F6EC2982; Thu, 26 Sep 2013 03:50:09 +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 r8Q3o8qd003967; Thu, 26 Sep 2013 03:50:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8Q3o8C3003966; Thu, 26 Sep 2013 03:50:08 GMT (envelope-from edwin) Date: Thu, 26 Sep 2013 03:50:08 GMT Message-Id: <201309260350.r8Q3o8C3003966@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, mm@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182389: [PATCH] graphics/pecl-imagick: [SUMMARIZE CHANGES] 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: Thu, 26 Sep 2013 03:50:09 -0000 Synopsis: [PATCH] graphics/pecl-imagick: [SUMMARIZE CHANGES] Responsible-Changed-From-To: freebsd-ports-bugs->mm Responsible-Changed-By: edwin Responsible-Changed-When: Thu Sep 26 03:50:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182389 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 04:50:01 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 1AB06383 for ; Thu, 26 Sep 2013 04:50:01 +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 EBDF42AC5 for ; Thu, 26 Sep 2013 04:50: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 r8Q4o0Eu006724 for ; Thu, 26 Sep 2013 04:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8Q4o0Yr006723; Thu, 26 Sep 2013 04:50:00 GMT (envelope-from gnats) Resent-Date: Thu, 26 Sep 2013 04:50:00 GMT Resent-Message-Id: <201309260450.r8Q4o0Yr006723@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, Yasuhiro KIMURA 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 9C44033B for ; Thu, 26 Sep 2013 04:46:43 +0000 (UTC) (envelope-from yasu@home.utahime.org) Received: from gate.utahime.jp (ipq210.utahime.jp [183.180.29.210]) by mx1.freebsd.org (Postfix) with ESMTP id 6BE2A2AB5 for ; Thu, 26 Sep 2013 04:46:42 +0000 (UTC) Received: from eastasia.home.utahime.org (eastasia.home.utahime.org [192.168.174.1]) by gate.utahime.jp (Postfix) with ESMTP id 39F7061F9D; Thu, 26 Sep 2013 13:46:40 +0900 (JST) Received: from eastasia.home.utahime.org (localhost [127.0.0.1]) by localhost-backdoor.home.utahime.org (Postfix) with ESMTP id 186CD4E653; Thu, 26 Sep 2013 13:46:40 +0900 (JST) Received: from rolling-vm-freebsd1.home.utahime.org (rolling-vm-freebsd1.home.utahime.org [192.168.174.51]) by eastasia.home.utahime.org (Postfix) with ESMTP id F14D94E62F; Thu, 26 Sep 2013 13:46:39 +0900 (JST) Received: by rolling-vm-freebsd1.home.utahime.org (Postfix, from userid 1000) id E5FE11C2ADD; Thu, 26 Sep 2013 13:46:39 +0900 (JST) Message-Id: <20130926044639.E5FE11C2ADD@rolling-vm-freebsd1.home.utahime.org> Date: Thu, 26 Sep 2013 13:46:39 +0900 (JST) From: Yasuhiro KIMURA To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/182390: [MAINTAINER] japanese/eb: add staging support 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: Thu, 26 Sep 2013 04:50:01 -0000 >Number: 182390 >Category: ports >Synopsis: [MAINTAINER] japanese/eb: add staging support >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Sep 26 04:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Yasuhiro KIMURA >Release: FreeBSD 9.1-RELEASE-p7 amd64 >Organization: >Environment: System: FreeBSD 9.1-RELEASE-p7 xxxx FreeBSD 9.1-RELEASE-p7 #0 r255449: Tue Sep 10 22:52:11 JST 2013 xxxx amd64 >Description: Add staging support. >How-To-Repeat: >Fix: --- patch-ja-eb begins here --- Index: Makefile =================================================================== --- Makefile (revision 328328) +++ Makefile (working copy) @@ -69,13 +69,12 @@ USES= perl5 GNU_CONFIGURE= yes USE_LDCONFIG= yes -CONFIGURE_ARGS= --with-pkgdocdir=${DOCSDIR} +CONFIGURE_ARGS= --with-pkgdocdir=${STAGEDIR}${DOCSDIR} OPTIONS_DEFINE= DOCS NLS -APPENDIXDIR= ${DATADIR}/appendix +APPENDIXDIR= ${STAGEDIR}${DATADIR}/appendix -NO_STAGE= yes .include .if ${PORT_OPTIONS:MNLS} @@ -102,9 +101,9 @@ post-install: (cd ${WRKDIR}/appendix && ${COPYTREE_SHARE} \* ${APPENDIXDIR} ) .if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} .for doc in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/doc/${doc} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/${doc} ${STAGEDIR}${DOCSDIR} .endfor .endif --- patch-ja-eb ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 05:00: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 A3AE4530 for ; Thu, 26 Sep 2013 05:00: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 811C02B15 for ; Thu, 26 Sep 2013 05:00: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 r8Q5005V007014 for ; Thu, 26 Sep 2013 05:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8Q5005p007013; Thu, 26 Sep 2013 05:00:00 GMT (envelope-from gnats) Resent-Date: Thu, 26 Sep 2013 05:00:00 GMT Resent-Message-Id: <201309260500.r8Q5005p007013@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, Yasuhiro KIMURA Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id C9F5E4EE for ; Thu, 26 Sep 2013 04:57:24 +0000 (UTC) (envelope-from yasu@home.utahime.org) Received: from gate.utahime.jp (ipq210.utahime.jp [183.180.29.210]) by mx1.freebsd.org (Postfix) with ESMTP id 999F62AFF for ; Thu, 26 Sep 2013 04:57:24 +0000 (UTC) Received: from eastasia.home.utahime.org (mail.home.utahime.org [192.168.174.1]) by gate.utahime.jp (Postfix) with ESMTP id 5299C61F9D; Thu, 26 Sep 2013 13:57:23 +0900 (JST) Received: from eastasia.home.utahime.org (localhost [127.0.0.1]) by localhost-backdoor.home.utahime.org (Postfix) with ESMTP id 3115A4E653; Thu, 26 Sep 2013 13:57:23 +0900 (JST) Received: from rolling-vm-freebsd1.home.utahime.org (rolling-vm-freebsd1.home.utahime.org [192.168.174.51]) by eastasia.home.utahime.org (Postfix) with ESMTP id 15B694E62F; Thu, 26 Sep 2013 13:57:23 +0900 (JST) Received: by rolling-vm-freebsd1.home.utahime.org (Postfix, from userid 1000) id 10FFA1C2ADD; Thu, 26 Sep 2013 13:57:23 +0900 (JST) Message-Id: <20130926045723.10FFA1C2ADD@rolling-vm-freebsd1.home.utahime.org> Date: Thu, 26 Sep 2013 13:57:23 +0900 (JST) From: Yasuhiro KIMURA To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/182391: [MAINTAINER] japanese/eblook: add staging support. 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: Thu, 26 Sep 2013 05:00:00 -0000 >Number: 182391 >Category: ports >Synopsis: [MAINTAINER] japanese/eblook: add staging support. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Sep 26 05:00:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Yasuhiro KIMURA >Release: FreeBSD 9.1-RELEASE-p7 amd64 >Organization: >Environment: System: FreeBSD xxxx 9.1-RELEASE-p7 FreeBSD 9.1-RELEASE-p7 #0 r255449: Tue Sep 10 22:52:11 JST 2013 xxxx amd64 >Description: - Add staging support. - Convert to new LIB_DEPENDS format. >How-To-Repeat: >Fix: --- patch-ja-eblook begins here --- Index: Makefile =================================================================== --- Makefile (revision 328328) +++ Makefile (working copy) @@ -13,7 +13,7 @@ LICENSE= GPLv2 -LIB_DEPENDS= eb:${PORTSDIR}/japanese/eb +LIB_DEPENDS= libeb.so:${PORTSDIR}/japanese/eb GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-eb-includes=${PREFIX}/include \ @@ -23,14 +23,13 @@ OPTIONS_DEFINE= DOCS -NO_STAGE= yes .include post-install: .if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${DOCSDIR} + ${MKDIR} ${STAGEDIR}${DOCSDIR} for i in AUTHORS COPYING ChangeLog NEWS README ; do \ - ${INSTALL_DATA} ${WRKSRC}/$${i} ${DOCSDIR} ;\ + ${INSTALL_DATA} ${WRKSRC}/$${i} ${STAGEDIR}${DOCSDIR} ;\ done .endif --- patch-ja-eblook ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 05:10:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id D81BA7A7 for ; Thu, 26 Sep 2013 05:10:01 +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 9CE102B72 for ; Thu, 26 Sep 2013 05:10:01 +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 r8Q5A1DS007595 for ; Thu, 26 Sep 2013 05:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8Q5A1rx007594; Thu, 26 Sep 2013 05:10:01 GMT (envelope-from gnats) Resent-Date: Thu, 26 Sep 2013 05:10:01 GMT Resent-Message-Id: <201309260510.r8Q5A1rx007594@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, Mohamad Fauzie Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id C826271D for ; Thu, 26 Sep 2013 05:06:27 +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 B5D582B51 for ; Thu, 26 Sep 2013 05:06:27 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8Q56RDx069237 for ; Thu, 26 Sep 2013 05:06:27 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8Q56Rkp069223; Thu, 26 Sep 2013 05:06:27 GMT (envelope-from nobody) Message-Id: <201309260506.r8Q56Rkp069223@oldred.freebsd.org> Date: Thu, 26 Sep 2013 05:06:27 GMT From: Mohamad Fauzie To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182392: make py-graphtool (does not build) 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: Thu, 26 Sep 2013 05:10:01 -0000 >Number: 182392 >Category: ports >Synopsis: make py-graphtool (does not build) >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: Thu Sep 26 05:10:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Mohamad Fauzie >Release: FreeBSD 9 >Organization: Keio Univ >Environment: FreeBSD sfc-monitor.ai3.net 9.2-PRERELEASE FreeBSD 9.2-PRERELEASE #151 r255570: Sun Sep 15 04:41:42 JST 2013 dikshie@sfc-monitor.ai3.net:/usr/obj/usr/src/sys/MONITOR amd64 >Description: the plain vanilla py-graphtool does not build in FreeBSD (using base gcc and clang). I decided to mark this port as broken since I need time to investigate the root cause. >How-To-Repeat: >Fix: Patch attached with submission follows: --- Makefile.orig 2013-09-26 13:56:38.000000000 +0900 +++ Makefile 2013-09-26 13:57:26.000000000 +0900 @@ -16,7 +16,7 @@ ${PYTHON_PKGNAMEPREFIX}scipy>=0.8.0:${PORTSDIR}/science/py-scipy LIB_DEPENDS= boost_python:${PORTSDIR}/devel/boost-python-libs \ boost_graph:${PORTSDIR}/devel/boost-libs \ - CGAL.5:${PORTSDIR}/math/cgal + CGAL.10:${PORTSDIR}/math/cgal USE_BZIP2= yes USE_GCC= yes @@ -29,6 +29,8 @@ NO_STAGE= yes .include +BROKEN= fails to build + .if ${ARCH} == "powerpc" BROKEN= Does not compile on powerpc: exhausts virtual memory .endif >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 05:40:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 8AEA6CCF for ; Thu, 26 Sep 2013 05:40: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 6698D2C57 for ; Thu, 26 Sep 2013 05:40: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 r8Q5e0Vx009271 for ; Thu, 26 Sep 2013 05:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8Q5e0gu009270; Thu, 26 Sep 2013 05:40:00 GMT (envelope-from gnats) Resent-Date: Thu, 26 Sep 2013 05:40:00 GMT Resent-Message-Id: <201309260540.r8Q5e0gu009270@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, Yasuhiro KIMURA 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 ABD57BCA for ; Thu, 26 Sep 2013 05:34:51 +0000 (UTC) (envelope-from yasu@home.utahime.org) Received: from gate.utahime.jp (ipq210.utahime.jp [183.180.29.210]) by mx1.freebsd.org (Postfix) with ESMTP id 7C3E22C2E for ; Thu, 26 Sep 2013 05:34:51 +0000 (UTC) Received: from eastasia.home.utahime.org (eastasia.home.utahime.org [192.168.174.1]) by gate.utahime.jp (Postfix) with ESMTP id 27BED61F9D; Thu, 26 Sep 2013 14:34:50 +0900 (JST) Received: from eastasia.home.utahime.org (localhost [127.0.0.1]) by localhost-backdoor.home.utahime.org (Postfix) with ESMTP id 004084E653; Thu, 26 Sep 2013 14:34:49 +0900 (JST) Received: from rolling-vm-freebsd1.home.utahime.org (rolling-vm-freebsd1.home.utahime.org [192.168.174.51]) by eastasia.home.utahime.org (Postfix) with ESMTP id D8FA34E62F; Thu, 26 Sep 2013 14:34:49 +0900 (JST) Received: by rolling-vm-freebsd1.home.utahime.org (Postfix, from userid 1000) id D4B9F1C2AE7; Thu, 26 Sep 2013 14:34:49 +0900 (JST) Message-Id: <20130926053449.D4B9F1C2AE7@rolling-vm-freebsd1.home.utahime.org> Date: Thu, 26 Sep 2013 14:34:49 +0900 (JST) From: Yasuhiro KIMURA To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/182393: [MAINTAINER] japanese/ebnetd: add staging support and etc. 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: Thu, 26 Sep 2013 05:40:00 -0000 >Number: 182393 >Category: ports >Synopsis: [MAINTAINER] japanese/ebnetd: add staging support and etc. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Sep 26 05:40:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Yasuhiro KIMURA >Release: FreeBSD 9.1-RELEASE-p7 amd64 >Organization: >Environment: System: FreeBSD xxxx 9.1-RELEASE-p7 FreeBSD 9.1-RELEASE-p7 #0 r255449: Tue Sep 10 22:52:11 JST 2013 xxxx amd64 >Description: - Add staging support. - Add Created-by header in Makefile. - Convert to new LIB_DEPENDS format. - Use @dirrmtry instead of @unexec rmdir. >How-To-Repeat: >Fix: --- patch-ja-ebnetd begins here --- Index: Makefile =================================================================== --- Makefile (revision 328328) +++ Makefile (working copy) @@ -1,3 +1,4 @@ +# Created by: Motoyuki Kasahara # $FreeBSD$ PORTNAME= ebnetd @@ -11,7 +12,7 @@ LICENSE= GPLv2 -LIB_DEPENDS= eb:${PORTSDIR}/japanese/eb +LIB_DEPENDS= libeb.so:${PORTSDIR}/japanese/eb GNU_CONFIGURE= yes CONFIGURE_ARGS= --localstatedir=${RUNDIR} --with-logdir=${LOGDIR} @@ -26,10 +27,4 @@ INFO= ebnetd ebnetd-ja -NO_STAGE= yes -post-install: - @${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL - @${ECHO} - @${CAT} ${PKGMESSAGE} - .include Index: pkg-plist =================================================================== --- pkg-plist (revision 328328) +++ pkg-plist (working copy) @@ -15,4 +15,4 @@ sbin/ndtpcontrol sbin/ndtpd @exec mkdir -m 0755 -p %%EBNETD_RUNDIR%% -@unexec rmdir %%EBNETD_RUNDIR%% +@dirrmtry %%EBNETD_RUNDIR%% --- patch-ja-ebnetd ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 05:50:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id C981BF1A for ; Thu, 26 Sep 2013 05:50: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 A63662CC5 for ; Thu, 26 Sep 2013 05:50: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 r8Q5o0jl009540 for ; Thu, 26 Sep 2013 05:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8Q5o09O009539; Thu, 26 Sep 2013 05:50:00 GMT (envelope-from gnats) Resent-Date: Thu, 26 Sep 2013 05:50:00 GMT Resent-Message-Id: <201309260550.r8Q5o09O009539@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, "Pavel M." Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id CBCB3EC9 for ; Thu, 26 Sep 2013 05:47:14 +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 B94322CB1 for ; Thu, 26 Sep 2013 05:47:14 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8Q5lD13029071 for ; Thu, 26 Sep 2013 05:47:13 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8Q5lDQD029070; Thu, 26 Sep 2013 05:47:13 GMT (envelope-from nobody) Message-Id: <201309260547.r8Q5lDQD029070@oldred.freebsd.org> Date: Thu, 26 Sep 2013 05:47:13 GMT From: "Pavel M." To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182394: Update audio/teamspeak3-server 3.0.7.2 -> 3.0.9 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: Thu, 26 Sep 2013 05:50:00 -0000 >Number: 182394 >Category: ports >Synopsis: Update audio/teamspeak3-server 3.0.7.2 -> 3.0.9 >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: Thu Sep 26 05:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Pavel M. >Release: >Organization: >Environment: >Description: New TeamSpeak 3 server version. >How-To-Repeat: >Fix: Patch attached with submission follows: --- /usr/ports/audio/teamspeak3-server/Makefile 2013-09-20 18:36:35.000000000 +0400 +++ /root/teamspeak3-server/Makefile 2013-09-26 09:24:19.624587991 +0400 @@ -2,7 +2,7 @@ # $FreeBSD: audio/teamspeak3-server/Makefile 327706 2013-09-20 14:36:35Z bapt $ PORTNAME= teamspeak3-server -PORTVERSION= 3.0.7.2 +PORTVERSION= 3.0.9 PORTEPOCH= 1 CATEGORIES= audio net MASTER_SITES= http://teamspeak.gameserver.gamed.de/ts3/releases/${PORTVERSION}/ \ --- /usr/ports/audio/teamspeak3-server/distinfo 2013-07-06 14:36:22.000000000 +0400 +++ /root/teamspeak3-server/distinfo 2013-09-26 09:28:52.791577044 +0400 @@ -1,4 +1,4 @@ -SHA256 (teamspeak3-server_freebsd-amd64-3.0.7.2.tar.gz) = 967fccbd2fa5d1ddd964455ea82dfeae052f1309bc26c646ca90c21016be5c66 -SIZE (teamspeak3-server_freebsd-amd64-3.0.7.2.tar.gz) = 4429373 -SHA256 (teamspeak3-server_freebsd-x86-3.0.7.2.tar.gz) = d360d5014b166412fbaea9b914cd582d8568cd369898d73a367515c7d4a26a37 -SIZE (teamspeak3-server_freebsd-x86-3.0.7.2.tar.gz) = 4927457 +SHA256 (teamspeak3-server_freebsd-amd64-3.0.9.tar.gz) = f631be5e2e758c358eca4d3f08231e6808ca6481f9b2aa2c1d42e88c548520da +SIZE (teamspeak3-server_freebsd-amd64-3.0.9.tar.gz) = 4381801 +SHA256 (teamspeak3-server_freebsd-x86-3.0.9.tar.gz) = 4fb500f54fc53390e96cd77a62b4909f56f61d14bf1c955a87ff9c95a5862506 +SIZE (teamspeak3-server_freebsd-x86-3.0.9.tar.gz) = 4901154 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 05:50:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 41A84F4C; Thu, 26 Sep 2013 05:50:09 +0000 (UTC) (envelope-from edwin@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 1799F2CC7; Thu, 26 Sep 2013 05:50:09 +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 r8Q5o8M0009678; Thu, 26 Sep 2013 05:50:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8Q5o8g9009677; Thu, 26 Sep 2013 05:50:08 GMT (envelope-from edwin) Date: Thu, 26 Sep 2013 05:50:08 GMT Message-Id: <201309260550.r8Q5o8g9009677@freefall.freebsd.org> To: admin@onlyfriends.info, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182394: Update audio/teamspeak3-server 3.0.7.2 -> 3.0.9 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: Thu, 26 Sep 2013 05:50:09 -0000 Synopsis: Update audio/teamspeak3-server 3.0.7.2 -> 3.0.9 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Thu Sep 26 05:50:08 UTC 2013 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182394 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 06:00:01 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 BB714363 for ; Thu, 26 Sep 2013 06:00:01 +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 A8D892D52 for ; Thu, 26 Sep 2013 06:00:01 +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 r8Q601Wh010025 for ; Thu, 26 Sep 2013 06:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8Q601Zn010024; Thu, 26 Sep 2013 06:00:01 GMT (envelope-from gnats) Date: Thu, 26 Sep 2013 06:00:01 GMT Message-Id: <201309260600.r8Q601Zn010024@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/182394: Update audio/teamspeak3-server 3.0.7.2 -> 3.0.9 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Sep 2013 06:00:01 -0000 The following reply was made to PR ports/182394; it has been noted by GNATS. From: Edwin Groothuis To: hirner@bitfire.at Cc: bug-followup@FreeBSD.org Subject: Re: ports/182394: Update audio/teamspeak3-server 3.0.7.2 -> 3.0.9 Date: Thu, 26 Sep 2013 05:50:08 UT Maintainer of audio/teamspeak3-server, Please note that PR ports/182394 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/182394 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 06:20:01 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 0F66EBC6 for ; Thu, 26 Sep 2013 06:20:01 +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 E045D2EE4 for ; Thu, 26 Sep 2013 06:20: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 r8Q6K0iT015186 for ; Thu, 26 Sep 2013 06:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8Q6K0fY015185; Thu, 26 Sep 2013 06:20:00 GMT (envelope-from gnats) Resent-Date: Thu, 26 Sep 2013 06:20:00 GMT Resent-Message-Id: <201309260620.r8Q6K0fY015185@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, Yasuhiro KIMURA 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 4027D775 for ; Thu, 26 Sep 2013 06:11:20 +0000 (UTC) (envelope-from yasu@home.utahime.org) Received: from gate.utahime.jp (ipq210.utahime.jp [183.180.29.210]) by mx1.freebsd.org (Postfix) with ESMTP id 121D22E39 for ; Thu, 26 Sep 2013 06:11:19 +0000 (UTC) Received: from eastasia.home.utahime.org (mail.home.utahime.org [192.168.174.1]) by gate.utahime.jp (Postfix) with ESMTP id 0E2E261F9D; Thu, 26 Sep 2013 15:11:18 +0900 (JST) Received: from eastasia.home.utahime.org (localhost [127.0.0.1]) by localhost-backdoor.home.utahime.org (Postfix) with ESMTP id D72D74E653; Thu, 26 Sep 2013 15:11:17 +0900 (JST) Received: from rolling-vm-freebsd1.home.utahime.org (rolling-vm-freebsd1.home.utahime.org [192.168.174.51]) by eastasia.home.utahime.org (Postfix) with ESMTP id B22254E62F; Thu, 26 Sep 2013 15:11:17 +0900 (JST) Received: by rolling-vm-freebsd1.home.utahime.org (Postfix, from userid 1000) id 9C0ED1C2AF4; Thu, 26 Sep 2013 15:11:17 +0900 (JST) Message-Id: <20130926061117.9C0ED1C2AF4@rolling-vm-freebsd1.home.utahime.org> Date: Thu, 26 Sep 2013 15:11:17 +0900 (JST) From: Yasuhiro KIMURA To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/182395: [MAINTAINER] japanese/lookup: add staging support. 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: Thu, 26 Sep 2013 06:20:01 -0000 >Number: 182395 >Category: ports >Synopsis: [MAINTAINER] japanese/lookup: add staging support. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Sep 26 06:20:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Yasuhiro KIMURA >Release: FreeBSD 9.1-RELEASE-p7 amd64 >Organization: >Environment: System: FreeBSD xxxx 9.1-RELEASE-p7 FreeBSD 9.1-RELEASE-p7 #0 r255449: Tue Sep 10 22:52:11 JST 2013 xxxx amd64 >Description: - Add staging support. - Remove definition of unused variable PORTINFODIR. >How-To-Repeat: >Fix: --- patch-ja-lookup begins here --- Index: Makefile =================================================================== --- Makefile (revision 328328) +++ Makefile (working copy) @@ -17,17 +17,14 @@ INFO?= lookup lookup-guide -NO_STAGE= yes .include .if (${EMACS_PORT_NAME} == "xemacs21-mule") EMACSDIR= ${PREFIX}/lib/xemacs/site-packages ELISPDIR= ${EMACSDIR}/lisp/lookup -PORTINFODIR= ${EMACSDIR}/info MANIFEST= MANIFEST.lookup .else ELISPDIR= ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/lookup -PORTINFODIR= ${PREFIX}/info PLIST_SUB= ELISPDIR=${EMACS_VERSION_SITE_LISPDIR} .endif HAS_CONFIGURE= yes --- patch-ja-lookup ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 06:25:49 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 ED509CC2; Thu, 26 Sep 2013 06:25:49 +0000 (UTC) (envelope-from edwin@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 C19962F1F; Thu, 26 Sep 2013 06:25:49 +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 r8Q6PnwK015415; Thu, 26 Sep 2013 06:25:49 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8Q6PnQi015414; Thu, 26 Sep 2013 06:25:49 GMT (envelope-from edwin) Date: Thu, 26 Sep 2013 06:25:49 GMT Message-Id: <201309260625.r8Q6PnQi015414@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182392: make math/py-graphtool (does not build) 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: Thu, 26 Sep 2013 06:25:50 -0000 Synopsis: make math/py-graphtool (does not build) Class-Changed-From-To: update->maintainer-update Class-Changed-By: edwin Class-Changed-When: Thu Sep 26 06:25:49 UTC 2013 Class-Changed-Why: Fix category (submitter is maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182392 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 06:25:51 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id C5C62CC4; Thu, 26 Sep 2013 06:25:51 +0000 (UTC) (envelope-from edwin@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 9A3352F20; Thu, 26 Sep 2013 06:25:51 +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 r8Q6PpTr015496; Thu, 26 Sep 2013 06:25:51 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8Q6PpPH015495; Thu, 26 Sep 2013 06:25:51 GMT (envelope-from edwin) Date: Thu, 26 Sep 2013 06:25:51 GMT Message-Id: <201309260625.r8Q6PpPH015495@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182392: make math/py-graphtool (does not build) 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: Thu, 26 Sep 2013 06:25:51 -0000 Synopsis: make math/py-graphtool (does not build) Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Thu Sep 26 06:25:51 UTC 2013 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182392 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 07:00:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id A3896C8D for ; Thu, 26 Sep 2013 07:00: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 7F5A62160 for ; Thu, 26 Sep 2013 07:00: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 r8Q700v5020447 for ; Thu, 26 Sep 2013 07:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8Q700MV020446; Thu, 26 Sep 2013 07:00:00 GMT (envelope-from gnats) Resent-Date: Thu, 26 Sep 2013 07:00:00 GMT Resent-Message-Id: <201309260700.r8Q700MV020446@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, Yasuhiro KIMURA Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 71323B43 for ; Thu, 26 Sep 2013 06:55:36 +0000 (UTC) (envelope-from yasu@home.utahime.org) Received: from gate.utahime.jp (ipq210.utahime.jp [183.180.29.210]) by mx1.freebsd.org (Postfix) with ESMTP id 41645212B for ; Thu, 26 Sep 2013 06:55:35 +0000 (UTC) Received: from eastasia.home.utahime.org (eastasia.home.utahime.org [192.168.174.1]) by gate.utahime.jp (Postfix) with ESMTP id 224E361F9D; Thu, 26 Sep 2013 15:55:35 +0900 (JST) Received: from eastasia.home.utahime.org (localhost [127.0.0.1]) by localhost-backdoor.home.utahime.org (Postfix) with ESMTP id EB6D94E653; Thu, 26 Sep 2013 15:55:34 +0900 (JST) Received: from rolling-vm-freebsd1.home.utahime.org (rolling-vm-freebsd1.home.utahime.org [192.168.174.51]) by eastasia.home.utahime.org (Postfix) with ESMTP id C59D84E62F; Thu, 26 Sep 2013 15:55:34 +0900 (JST) Received: by rolling-vm-freebsd1.home.utahime.org (Postfix, from userid 1000) id B00001C2AF4; Thu, 26 Sep 2013 15:55:34 +0900 (JST) Message-Id: <20130926065534.B00001C2AF4@rolling-vm-freebsd1.home.utahime.org> Date: Thu, 26 Sep 2013 15:55:34 +0900 (JST) From: Yasuhiro KIMURA To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/182396: [MAINTAINER] japanese/mecab: add staging support 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: Thu, 26 Sep 2013 07:00:00 -0000 >Number: 182396 >Category: ports >Synopsis: [MAINTAINER] japanese/mecab: add staging support >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Sep 26 07:00:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Yasuhiro KIMURA >Release: FreeBSD 9.1-RELEASE-p7 amd64 >Organization: >Environment: System: FreeBSD xxxx 9.1-RELEASE-p7 FreeBSD 9.1-RELEASE-p7 #0 r255449: Tue Sep 10 22:52:11 JST 2013 xxxx amd64 >Description: Add staging support. >How-To-Repeat: >Fix: --- patch-ja-mecab begins here --- Index: Makefile =================================================================== --- Makefile (revision 328328) +++ Makefile (working copy) @@ -31,7 +31,6 @@ OPTIONS_DEFINE= DOCS -NO_STAGE= yes .include post-patch: @@ -46,16 +45,12 @@ ${CHMOD} a+x ${WRKSRC}/install-sh post-install: - @if [ ! -f ${PREFIX}/etc/mecabrc ]; then \ - ${INSTALL_DATA} ${PREFIX}/etc/mecabrc.dist ${PREFIX}/etc/mecabrc; \ - fi .if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${DOCSDIR} + ${MKDIR} ${STAGEDIR}${DOCSDIR} .for f in ${PORTDOCS:N*.html} - ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}/ + ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR} .endfor - ${INSTALL_DATA} ${WRKSRC}/doc/*.html ${DOCSDIR}/ + ${INSTALL_DATA} ${WRKSRC}/doc/*.html ${STAGEDIR}${DOCSDIR} .endif - @${CAT} ${PKGMESSAGE} .include --- patch-ja-mecab ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 07:00:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id CB14DC90 for ; Thu, 26 Sep 2013 07:00:01 +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 B6D2A2162 for ; Thu, 26 Sep 2013 07:00:01 +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 r8Q701ge020507 for ; Thu, 26 Sep 2013 07:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8Q701q4020506; Thu, 26 Sep 2013 07:00:01 GMT (envelope-from gnats) Date: Thu, 26 Sep 2013 07:00:01 GMT Message-Id: <201309260700.r8Q701q4020506@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Scot Hetzel Subject: Re: ports/182283: audio/akode*: Fix build with Clang and newer versions of GCC X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Scot Hetzel List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Sep 2013 07:00:01 -0000 The following reply was made to PR ports/182283; it has been noted by GNATS. From: Scot Hetzel To: bug-followup@freebsd.org Cc: Subject: Re: ports/182283: audio/akode*: Fix build with Clang and newer versions of GCC Date: Thu, 26 Sep 2013 01:53:12 -0500 --047d7bdc9a48daa03204e743d276 Content-Type: text/plain; charset=ISO-8859-1 Here is the final patch: - Fix build with clang by avoiding shadowing in template definitions (Obtained from NetBSD's pkgsrc) - Add missing includes for , to allow akode to build with newer versions of GCC. - Fix OPTIONS_DEFAULT as it had the XIPH option misspelled - Use a central patch directory for all akode* ports (PATCHDIR=${MASTERSITE}/../akode/files) - Simplify the akode-plugins-* ports by removing the do-{build,install} targets from the ports Makefile -- The do-{build,install} targets did the same thing as the ones in the bsd.port.mk -- This should allow the ports to use the new staging area (NO_STAGE could be removed from the Makefiles) - fix several portlint errors in the ports I have tested the new staging area for these ports using: make -DFORCE_STAGE stage make -DFORCE_STAGE check-orphans make -DFORCE_STAGE package I didn't notice any issue. NOTE: - If FORCE_STAGE is used, the dependencies will need to be installed first (without FORCE_STAGE) as most of them are not ready for the new staging area. List of changed, added, removed files: M akode/Makefile A akode/files/patch-akode-akodeplay-akodeplay.cpp A akode/files/patch-akode-lib-auto_sink.cpp A akode/files/patch-akode-lib-converter.cpp A akode/files/patch-akode-lib-crossfader.cpp A akode/files/patch-akode-lib-fast_resampler.cpp A akode/files/patch-akode-lib-magic.cpp A akode/files/patch-akode-lib-player.cpp A akode/files/patch-akode-lib-volumefilter.cpp A akode/files/patch-akode__plugins__Makefile.in A akode/files/patch-akode__plugins__ffmpeg_decoder__ffmpeg_decoder.cpp A akode/files/patch-akode__plugins__polyp_sink__polyp_sink.cpp A akode/files/patch-akode__plugins__xiph_decoder__flac113_decoder.cpp A akode/files/patch-akode__plugins__xiph_decoder__speex_decoder.cpp A akode/files/patch-configure M akode-plugins-ffmpeg/Makefile D akode-plugins-ffmpeg/files D akode-plugins-ffmpeg/files/patch-akode_Makefile.in D akode-plugins-ffmpeg/files/patch-akode__plugins__ffmpeg_decoder__ffmpeg_decoder.cpp D akode-plugins-ffmpeg/files/patch-akode_plugins-Makefile.in D akode-plugins-ffmpeg/pkg-plist M akode-plugins-jack/Makefile D akode-plugins-jack/files D akode-plugins-jack/files/patch-akode_Makefile.in D akode-plugins-jack/files/patch-akode_plugins-Makefile.in D akode-plugins-jack/pkg-plist M akode-plugins-mpc/Makefile D akode-plugins-mpc/files D akode-plugins-mpc/files/patch-akode_Makefile.in D akode-plugins-mpc/files/patch-akode_plugins-Makefile.in M akode-plugins-mpeg/Makefile D akode-plugins-mpeg/files D akode-plugins-mpeg/files/patch-akode_Makefile.in D akode-plugins-mpeg/files/patch-akode_plugins-Makefile.in M akode-plugins-oss/Makefile D akode-plugins-oss/files D akode-plugins-oss/files/patch-akode_Makefile.in D akode-plugins-oss/files/patch-akode_plugins-Makefile.in M akode-plugins-pulseaudio/Makefile D akode-plugins-pulseaudio/files D akode-plugins-pulseaudio/files/patch-akode_Makefile.in D akode-plugins-pulseaudio/files/patch-akode__polyp_sink__polyp_sink.cpp D akode-plugins-pulseaudio/files/patch-akode_plugins-Makefile.in D akode-plugins-pulseaudio/files/patch-configure M akode-plugins-resampler/Makefile D akode-plugins-resampler/files D akode-plugins-resampler/files/patch-akode_Makefile.in D akode-plugins-resampler/files/patch-akode_plugins-Makefile.in M akode-plugins-xiph/Makefile D akode-plugins-xiph/files D akode-plugins-xiph/files/patch-akode_Makefile.in D akode-plugins-xiph/files/patch-akode_plugins-Makefile.in D akode-plugins-xiph/files/patch-akode_plugins_xiph__decoder_flac113__decoder.cpp D akode-plugins-xiph/files/patch-akode_plugins_xiph__decoder_speex__decoder.cpp D akode-plugins-xiph/files/patch-configure --047d7bdc9a48daa03204e743d276 Content-Type: application/octet-stream; name="akode.diff3" Content-Disposition: attachment; filename="akode.diff3" Content-Transfer-Encoding: base64 X-Attachment-Id: f_hm1l2row1 SW5kZXg6IGFrb2RlL01ha2VmaWxlDQo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09DQotLS0gYWtvZGUvTWFrZWZpbGUJKHJl dmlzaW9uIDMyODMwOSkNCisrKyBha29kZS9NYWtlZmlsZQkod29ya2luZyBjb3B5KQ0KQEAgLTE5 LDEwICsxOSwxMSBAQA0KIA0KIENPTkZMSUNUUz0Ja2RlbXVsdGltZWRpYS0zLlsxLTNdKg0KIA0K LU9QVElPTlNfREVGSU5FPQlGRk1QRUcgSkFDSyBNUEMgTVBFRyBPU1MgUkVTQU1QTEVSIFhJUEgN Ci1PUFRJT05TX0RFRkFVTFQ9CU1QQyBNUEVHIE9TUyBSRVNBTVBMRVIgWElQDQorT1BUSU9OU19E RUZJTkU9CUZGTVBFRyBKQUNLIE1QQyBNUEVHIE9TUyBQVUxTRUFVRElPIFJFU0FNUExFUiBYSVBI DQorT1BUSU9OU19ERUZBVUxUPQlNUEMgTVBFRyBPU1MgUkVTQU1QTEVSIFhJUEgNCiANCiBNUENf REVTQz0JTW9ua2V5J3MgQXVkaW8gZGVjb2RlciBwbHVnaW4NCitNUEVHX0RFU0M9CU1QRUcgQXVk aW8gZGVjb2RlciBwbHVnaW4NCiBSRVNBTVBMRVJfREVTQz0JUmVzYW1wbGVyIHByb2Nlc3Npbmcg cGx1Z2luDQogWElQSF9ERVNDPQlGTEFDL1NwZWV4L1ZvcmJpcyBkZWNvZGVyIHBsdWdpbg0KIA0K QEAgLTMwLDcgKzMxLDYgQEANCiBVU0VTPQkJZ21ha2UNCiBVU0VfQVVUT1RPT0xTPQlsaWJsdGRs IGxpYnRvb2wNCiBVU0VfQlpJUDI9CXllcw0KLVVTRV9HQ0M9CWFueQ0KIFdSS1NSQz0JCSR7V1JL RElSfS8ke1BPUlROQU1FfS0ke1BPUlRWRVJTSU9OfQ0KIFVTRV9MRENPTkZJRz0JeWVzDQogDQpA QCAtNjAsNiArNjAsMTAgQEANCiBSVU5fREVQRU5EUys9CSR7TE9DQUxCQVNFfS9saWIvbGliYWtv ZGVfb3NzX3Npbmsuc286JHtQT1JUU0RJUn0vYXVkaW8vYWtvZGUtcGx1Z2lucy1vc3MNCiAuZW5k aWYNCiANCisuaWYgJHtQT1JUX09QVElPTlM6TVBVTFNFQVVESU99DQorUlVOX0RFUEVORFMrPQkk e0xPQ0FMQkFTRX0vbGliL2xpYmFrb2RlX3BvbHlwX3Npbmsuc286JHtQT1JUU0RJUn0vYXVkaW8v YWtvZGUtcGx1Z2lucy1wdWxzZWF1ZGlvDQorLmVuZGlmDQorDQogLmlmICR7UE9SVF9PUFRJT05T Ok1SRVNBTVBMRVJ9DQogUlVOX0RFUEVORFMrPQkke0xPQ0FMQkFTRX0vbGliL2xpYmFrb2RlX3Ny Y19yZXNhbXBsZXIuc286JHtQT1JUU0RJUn0vYXVkaW8vYWtvZGUtcGx1Z2lucy1yZXNhbXBsZXIN CiAuZW5kaWYNCkluZGV4OiBha29kZS9maWxlcy9wYXRjaC1ha29kZS1ha29kZXBsYXktYWtvZGVw bGF5LmNwcA0KPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PQ0KLS0tIGFrb2RlL2ZpbGVzL3BhdGNoLWFrb2RlLWFrb2RlcGxh eS1ha29kZXBsYXkuY3BwCShyZXZpc2lvbiAwKQ0KKysrIGFrb2RlL2ZpbGVzL3BhdGNoLWFrb2Rl LWFrb2RlcGxheS1ha29kZXBsYXkuY3BwCSh3b3JraW5nIGNvcHkpDQpAQCAtMCwwICsxLDEwIEBA DQorLS0tIGFrb2RlL2Frb2RlcGxheS9ha29kZXBsYXkuY3BwLW9yaWcJMjAwNi0xMS0wNiAwNzoy MDo1Mi4wMDAwMDAwMDAgLTA2MDANCisrKysgYWtvZGUvYWtvZGVwbGF5L2Frb2RlcGxheS5jcHAJ MjAxMy0wOS0xOSAwODoxNDoyOC4wMDAwMDAwMDAgLTA1MDANCitAQCAtMTksNiArMTksNyBAQA0K KyAqLw0KKyANCisgI2luY2x1ZGUgPGlvc3RyZWFtPg0KKysjaW5jbHVkZSA8Y3N0ZGxpYj4NCisg DQorICNpbmNsdWRlICIuLi9saWIvYWtvZGVsaWIuaCINCisgI2luY2x1ZGUgIi4uL2xpYi9wbGF5 ZXIuaCINCkluZGV4OiBha29kZS9maWxlcy9wYXRjaC1ha29kZS1saWItYXV0b19zaW5rLmNwcA0K PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PQ0KLS0tIGFrb2RlL2ZpbGVzL3BhdGNoLWFrb2RlLWxpYi1hdXRvX3NpbmsuY3Bw CShyZXZpc2lvbiAwKQ0KKysrIGFrb2RlL2ZpbGVzL3BhdGNoLWFrb2RlLWxpYi1hdXRvX3Npbmsu Y3BwCSh3b3JraW5nIGNvcHkpDQpAQCAtMCwwICsxLDEwIEBADQorLS0tIGFrb2RlL2xpYi9hdXRv X3NpbmsuY3BwLW9yaWcJMjAwNS0xMC0yNiAwODo1MDoyOS4wMDAwMDAwMDAgLTA1MDANCisrKysg YWtvZGUvbGliL2F1dG9fc2luay5jcHAJMjAxMy0wOS0xOSAwMzoyNTo0Ny4wMDAwMDAwMDAgLTA1 MDANCitAQCAtMjIsNiArMjIsNyBAQA0KKyAjaW5jbHVkZSAiYXV0b19zaW5rLmgiDQorIA0KKyAj aW5jbHVkZSA8aW9zdHJlYW0+DQorKyNpbmNsdWRlIDxjc3RkbGliPg0KKyANCisgbmFtZXNwYWNl IGFLb2RlIHsNCisgDQpJbmRleDogYWtvZGUvZmlsZXMvcGF0Y2gtYWtvZGUtbGliLWNvbnZlcnRl ci5jcHANCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT0NCi0tLSBha29kZS9maWxlcy9wYXRjaC1ha29kZS1saWItY29udmVy dGVyLmNwcAkocmV2aXNpb24gMCkNCisrKyBha29kZS9maWxlcy9wYXRjaC1ha29kZS1saWItY29u dmVydGVyLmNwcAkod29ya2luZyBjb3B5KQ0KQEAgLTAsMCArMSwxMSBAQA0KKy0tLSBha29kZS9s aWIvY29udmVydGVyLmNwcC1vcmlnCTIwMDYtMDctMjIgMTE6MzU6MzEuMDAwMDAwMDAwIC0wNTAw DQorKysrIGFrb2RlL2xpYi9jb252ZXJ0ZXIuY3BwCTIwMTMtMDktMTkgMDg6NDk6MzAuMDAwMDAw MDAwIC0wNTAwDQorQEAgLTI2LDcgKzI2LDcgQEANCisgDQorIENvbnZlcnRlcjo6Q29udmVydGVy KGludCBzYW1wbGVfd2lkdGgpIDogbV9zYW1wbGVfd2lkdGgoc2FtcGxlX3dpZHRoKSB7fQ0KKyAN CistdGVtcGxhdGU8dHlwZW5hbWUgVCwgdHlwZW5hbWUgUywgdGVtcGxhdGU8dHlwZW5hbWUgVD4g Y2xhc3MgQXJpdGhtVCwgdGVtcGxhdGU8dHlwZW5hbWUgUz4gY2xhc3MgQXJpdGhtUz4NCisrdGVt cGxhdGU8dHlwZW5hbWUgVCwgdHlwZW5hbWUgUywgdGVtcGxhdGU8dHlwZW5hbWUgVT4gY2xhc3Mg QXJpdGhtVCwgdGVtcGxhdGU8dHlwZW5hbWUgVT4gY2xhc3MgQXJpdGhtUz4NCisgc3RhdGljIGJv b2wgX19kb0ZyYW1lRlAoQXVkaW9GcmFtZSogaW4sIEF1ZGlvRnJhbWUqIG91dCwgaW50IHNhbXBs ZV93aWR0aCkNCisgew0KKyAgICAgQXVkaW9Db25maWd1cmF0aW9uIGNvbmZpZyA9ICppbjsNCklu ZGV4OiBha29kZS9maWxlcy9wYXRjaC1ha29kZS1saWItY3Jvc3NmYWRlci5jcHANCj09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT0NCi0tLSBha29kZS9maWxlcy9wYXRjaC1ha29kZS1saWItY3Jvc3NmYWRlci5jcHAJKHJldmlz aW9uIDApDQorKysgYWtvZGUvZmlsZXMvcGF0Y2gtYWtvZGUtbGliLWNyb3NzZmFkZXIuY3BwCSh3 b3JraW5nIGNvcHkpDQpAQCAtMCwwICsxLDIwIEBADQorLS0tIGFrb2RlL2xpYi9jcm9zc2ZhZGVy LmNwcC1vcmlnCTIwMDUtMTAtMjAgMTU6NDc6MTcuMDAwMDAwMDAwIC0wNTAwDQorKysrIGFrb2Rl L2xpYi9jcm9zc2ZhZGVyLmNwcAkyMDEzLTA5LTE5IDA4OjUyOjQ2LjAwMDAwMDAwMCAtMDUwMA0K K0BAIC0yNyw3ICsyNyw3IEBADQorIENyb3NzRmFkZXI6OkNyb3NzRmFkZXIodW5zaWduZWQgaW50 IHRpbWUpIDogdGltZSh0aW1lKSxwb3MoMCkge30NCisgDQorIC8vIFQgaXMgdGhlIGlucHV0L291 dHB1dCB0eXBlLCBTIGlzIHRoZSBmYXN0IGFyaXRobWV0aWNzIHR5cGUsIERpdiBpcyBhIGRpdmlz aW9uIG1ldGhvZA0KKy10ZW1wbGF0ZTx0eXBlbmFtZSBULCB0eXBlbmFtZSBTLCB0ZW1wbGF0ZTx0 eXBlbmFtZSBTPiBjbGFzcyBBcml0aG0+DQorK3RlbXBsYXRlPHR5cGVuYW1lIFQsIHR5cGVuYW1l IFMsIHRlbXBsYXRlPHR5cGVuYW1lIFU+IGNsYXNzIEFyaXRobT4NCisgc3RhdGljIGJvb2wgX2Rv RnJhbWUoQXVkaW9GcmFtZSogaW4sIGludCYgcG9zLCBBdWRpb0ZyYW1lKiBmcmFtZSkNCisgew0K KyAgICAgVCoqIGluZGF0YTEgPSAoVCoqKWluLT5kYXRhOw0KK0BAIC02Niw3ICs2Niw3IEBADQor IH0NCisgDQorIC8vIFQgaXMgdGhlIGlucHV0L291dHB1dCB0eXBlLCBTIGlzIHRoZSBmYXN0IGFy aXRobWV0aWNzIHR5cGUsIEFyaXRobSBkZWZpbmVzIGRldmlzaW9ucw0KKy10ZW1wbGF0ZTx0eXBl bmFtZSBULCB0eXBlbmFtZSBTLCB0ZW1wbGF0ZTx0eXBlbmFtZSBTPiBjbGFzcyBBcml0aG0+DQor K3RlbXBsYXRlPHR5cGVuYW1lIFQsIHR5cGVuYW1lIFMsIHRlbXBsYXRlPHR5cGVuYW1lIFU+IGNs YXNzIEFyaXRobT4NCisgc3RhdGljIGJvb2wgX3JlYWRGcmFtZShBdWRpb0ZyYW1lKiBpbiwgaW50 JiBwb3MsIEF1ZGlvRnJhbWUqIGZyYW1lKQ0KKyB7DQorICAgICBUKiogaW5kYXRhID0gKFQqKilm cmFtZS0+ZGF0YTsNCkluZGV4OiBha29kZS9maWxlcy9wYXRjaC1ha29kZS1saWItZmFzdF9yZXNh bXBsZXIuY3BwDQo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09DQotLS0gYWtvZGUvZmlsZXMvcGF0Y2gtYWtvZGUtbGliLWZh c3RfcmVzYW1wbGVyLmNwcAkocmV2aXNpb24gMCkNCisrKyBha29kZS9maWxlcy9wYXRjaC1ha29k ZS1saWItZmFzdF9yZXNhbXBsZXIuY3BwCSh3b3JraW5nIGNvcHkpDQpAQCAtMCwwICsxLDExIEBA DQorLS0tIGFrb2RlL2xpYi9mYXN0X3Jlc2FtcGxlci5jcHAtb3JpZwkyMDA2LTA1LTI2IDEzOjM3 OjE3LjAwMDAwMDAwMCAtMDUwMA0KKysrKyBha29kZS9saWIvZmFzdF9yZXNhbXBsZXIuY3BwCTIw MTMtMDktMTkgMDg6NTQ6NTEuMDAwMDAwMDAwIC0wNTAwDQorQEAgLTM3LDcgKzM3LDcgQEANCisg Ly8gQSBmYXN0IHJlc2FtcGxpbmcgYnkgbGluZWFyIGludGVycG9sYXRpb24NCisgLy8gSSBhc3N1 bWUgeW91IGtub3cgYmluYXJ5IGFyaXRobWV0aWNzIGFuZCBjb252ZXJ0aW9ucyBpZiB5b3UncmUg cmVhZGluZyB0aGlzDQorIC8vIFQgaXMgdGhlIGlucHV0L291dHB1dCB0eXBlLCBBcml0aG0gZGVm aW5lcyB0aGUgdXNlZCBhcml0aG1ldGljDQorLXRlbXBsYXRlPHR5cGVuYW1lIFQsIHR5cGVuYW1l IFMsIHRlbXBsYXRlPHR5cGVuYW1lIFM+IGNsYXNzIEFyaXRobT4NCisrdGVtcGxhdGU8dHlwZW5h bWUgVCwgdHlwZW5hbWUgUywgdGVtcGxhdGU8dHlwZW5hbWUgVT4gY2xhc3MgQXJpdGhtPg0KKyBz dGF0aWMgYm9vbCBfZG9CdWZmZXIoQXVkaW9GcmFtZSogaW4sIEF1ZGlvRnJhbWUqIG91dCwgZmxv YXQgc3BlZWQsIHVuc2lnbmVkIHNhbXBsZV9yYXRlKQ0KKyB7DQorICAgICB1bnNpZ25lZCBsb25n IHZ0X3Bvc19zdGFydCA9IDA7ICAvLyB2aXJ0dWFsIHBvc2l0aW9ucyBvZiBuZXcgc2FtcGxlDQpJ bmRleDogYWtvZGUvZmlsZXMvcGF0Y2gtYWtvZGUtbGliLW1hZ2ljLmNwcA0KPT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQ0K LS0tIGFrb2RlL2ZpbGVzL3BhdGNoLWFrb2RlLWxpYi1tYWdpYy5jcHAJKHJldmlzaW9uIDApDQor KysgYWtvZGUvZmlsZXMvcGF0Y2gtYWtvZGUtbGliLW1hZ2ljLmNwcAkod29ya2luZyBjb3B5KQ0K QEAgLTAsMCArMSwxMCBAQA0KKy0tLSBha29kZS9saWIvbWFnaWMuY3BwLW9yaWcJMjAwNS0xMC0y MCAxNTo0NzoxNy4wMDAwMDAwMDAgLTA1MDANCisrKysgYWtvZGUvbGliL21hZ2ljLmNwcAkyMDEz LTA5LTE5IDA4OjA4OjU4LjAwMDAwMDAwMCAtMDUwMA0KK0BAIC0yMiw2ICsyMiw3IEBADQorICNp bmNsdWRlICJtYWdpYy5oIg0KKyAjaW5jbHVkZSAiZmlsZS5oIg0KKyAjaW5jbHVkZSA8aW9zdHJl YW0+DQorKyNpbmNsdWRlIDxjc3RyaW5nPg0KKyB1c2luZyBzdGQ6OmNlcnI7DQorIA0KKyBuYW1l c3BhY2UgYUtvZGUgew0KSW5kZXg6IGFrb2RlL2ZpbGVzL3BhdGNoLWFrb2RlLWxpYi1wbGF5ZXIu Y3BwDQo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09DQotLS0gYWtvZGUvZmlsZXMvcGF0Y2gtYWtvZGUtbGliLXBsYXllci5j cHAJKHJldmlzaW9uIDApDQorKysgYWtvZGUvZmlsZXMvcGF0Y2gtYWtvZGUtbGliLXBsYXllci5j cHAJKHdvcmtpbmcgY29weSkNCkBAIC0wLDAgKzEsMTAgQEANCistLS0gYWtvZGUvbGliL3BsYXll ci5jcHAtb3JpZwkyMDA2LTExLTA1IDA4OjM3OjQ4LjAwMDAwMDAwMCAtMDYwMA0KKysrKyBha29k ZS9saWIvcGxheWVyLmNwcAkyMDEzLTA5LTE5IDA4OjA2OjM3LjAwMDAwMDAwMCAtMDUwMA0KK0BA IC0yMSw2ICsyMSw3IEBADQorICNpbmNsdWRlIDxwdGhyZWFkLmg+DQorICNpbmNsdWRlIDxzZW1h cGhvcmUuaD4NCisgI2luY2x1ZGUgPGFzc2VydC5oPg0KKysjaW5jbHVkZSA8Y3N0cmluZz4NCisg DQorICNpbmNsdWRlICJhdWRpb2ZyYW1lLmgiDQorICNpbmNsdWRlICJhdWRpb2J1ZmZlci5oIg0K SW5kZXg6IGFrb2RlL2ZpbGVzL3BhdGNoLWFrb2RlLWxpYi12b2x1bWVmaWx0ZXIuY3BwDQo9PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09DQotLS0gYWtvZGUvZmlsZXMvcGF0Y2gtYWtvZGUtbGliLXZvbHVtZWZpbHRlci5jcHAJ KHJldmlzaW9uIDApDQorKysgYWtvZGUvZmlsZXMvcGF0Y2gtYWtvZGUtbGliLXZvbHVtZWZpbHRl ci5jcHAJKHdvcmtpbmcgY29weSkNCkBAIC0wLDAgKzEsMTEgQEANCistLS0gYWtvZGUvbGliL3Zv bHVtZWZpbHRlci5jcHAtb3JpZwkyMDA1LTEwLTIwIDE1OjQ3OjE3LjAwMDAwMDAwMCAtMDUwMA0K KysrKyBha29kZS9saWIvdm9sdW1lZmlsdGVyLmNwcAkyMDEzLTA5LTE5IDA4OjU2OjM3LjAwMDAw MDAwMCAtMDUwMA0KK0BAIC0yOSw3ICsyOSw3IEBADQorIFZvbHVtZUZpbHRlcjo6Vm9sdW1lRmls dGVyKCkgOiBtX3ZvbHVtZSgwKSB7fQ0KKyANCisgLy8gVCBpcyB0aGUgaW5wdXQvb3V0cHV0IHR5 cGUsIFMgaXMgdGhlIGZhc3QgYXJpdGhtZXRpY3MgdHlwZSwgQXJpdGhtIGlzIGEgZGl2aXNpb24g ZGVmaW5pdGlvbg0KKy10ZW1wbGF0ZTx0eXBlbmFtZSBULCB0eXBlbmFtZSBTLCB0ZW1wbGF0ZTx0 eXBlbmFtZSBTPiBjbGFzcyBBcml0aG0+DQorK3RlbXBsYXRlPHR5cGVuYW1lIFQsIHR5cGVuYW1l IFMsIHRlbXBsYXRlPHR5cGVuYW1lIFU+IGNsYXNzIEFyaXRobT4NCisgc3RhdGljIGJvb2wgX2Rv RnJhbWUoQXVkaW9GcmFtZSogaW4sIEF1ZGlvRnJhbWUqIG91dCwgaW50IHZvbHVtZSkNCisgew0K KyAgICAgVCoqIGluZGF0YSA9IChUKiopaW4tPmRhdGE7DQpJbmRleDogYWtvZGUvZmlsZXMvcGF0 Y2gtYWtvZGVfX3BsdWdpbnNfX01ha2VmaWxlLmluDQo9PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09DQotLS0gYWtvZGUvZmls ZXMvcGF0Y2gtYWtvZGVfX3BsdWdpbnNfX01ha2VmaWxlLmluCShyZXZpc2lvbiAwKQ0KKysrIGFr b2RlL2ZpbGVzL3BhdGNoLWFrb2RlX19wbHVnaW5zX19NYWtlZmlsZS5pbgkod29ya2luZyBjb3B5 KQ0KQEAgLTAsMCArMSwxNSBAQA0KKy0tLSBha29kZS9wbHVnaW5zL01ha2VmaWxlLmluLm9yaWcJ VHVlIE5vdiAyOSAxODoxMDoyMCAyMDA1DQorKysrIGFrb2RlL3BsdWdpbnMvTWFrZWZpbGUuaW4J VHVlIE5vdiAyOSAxODoxMDo0NSAyMDA1DQorQEAgLTI1MiwxMSArMjUyLDcgQEANCisgQGluY2x1 ZGVfc3VuX3NpbmtfVFJVRUBBS09ERV9TVU5fU0lOSyA9IHN1bl9zaW5rDQorIEBpbmNsdWRlX2ph Y2tfc2lua19UUlVFQEFLT0RFX0pBQ0tfU0lOSyA9IGphY2tfc2luaw0KKyBAaW5jbHVkZV9wb2x5 cF9zaW5rX1RSVUVAQUtPREVfUE9MWVBfU0lOSyA9IHBvbHlwX3NpbmsNCistU1VCRElSUyA9ICQo QUtPREVfTVBDX0RFQ09ERVIpICQoQUtPREVfWElQSF9ERUNPREVSKSBcDQorLSAgICAgICAgICQo QUtPREVfTVBFR19ERUNPREVSKSAkKEFLT0RFX0ZGTVBFR19ERUNPREVSKSBcDQorLSAgICAgICAg ICQoQUtPREVfQUxTQV9TSU5LKSAkKEFLT0RFX09TU19TSU5LKSAkKEFLT0RFX1NVTl9TSU5LKSBc DQorLSAgICAgICAgICQoQUtPREVfSkFDS19TSU5LKSAkKEFLT0RFX1BPTFlQX1NJTkspIFwNCist ICAgICAgICAgJChBS09ERV9TUkNfUkVTQU1QTEVSKQ0KKytTVUJESVJTID0gJSVTVUJESVJTJSUN CisgDQorICM+LSBhbGw6IGFsbC1yZWN1cnNpdmUNCisgIz4rIDENCkluZGV4OiBha29kZS9maWxl cy9wYXRjaC1ha29kZV9fcGx1Z2luc19fZmZtcGVnX2RlY29kZXJfX2ZmbXBlZ19kZWNvZGVyLmNw cA0KPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PQ0KLS0tIGFrb2RlL2ZpbGVzL3BhdGNoLWFrb2RlX19wbHVnaW5zX19mZm1w ZWdfZGVjb2Rlcl9fZmZtcGVnX2RlY29kZXIuY3BwCShyZXZpc2lvbiAwKQ0KKysrIGFrb2RlL2Zp bGVzL3BhdGNoLWFrb2RlX19wbHVnaW5zX19mZm1wZWdfZGVjb2Rlcl9fZmZtcGVnX2RlY29kZXIu Y3BwCSh3b3JraW5nIGNvcHkpDQpAQCAtMCwwICsxLDIwIEBADQorLS0tIGFrb2RlL3BsdWdpbnMv ZmZtcGVnX2RlY29kZXIvZmZtcGVnX2RlY29kZXIuY3BwLm9yaWcJMjAwNi0wOC0xMCAxNTozNzoy MC4wMDAwMDAwMDAgLTAzMDANCisrKysgYWtvZGUvcGx1Z2lucy9mZm1wZWdfZGVjb2Rlci9mZm1w ZWdfZGVjb2Rlci5jcHAJMjAwOS0xMS0xMyAyMjo0OToxMi4wMDAwMDAwMDAgLTAyMDANCitAQCAt NDUsNyArNDUsNyBAQA0KKyAgICAgICAgIGFLb2RlOjpGaWxlICpmaWxlID0gKGFLb2RlOjpGaWxl KilvcGFxdWU7DQorICAgICAgICAgcmV0dXJuIGZpbGUtPndyaXRlKChjaGFyKilidWYsIHNpemUp Ow0KKyAgICAgfQ0KKy0gICAgc3RhdGljIG9mZnNldF90IGFrb2RlX3NlZWsodm9pZCogb3BhcXVl LCBvZmZzZXRfdCBwb3MsIGludCB3aGVuY2UpDQorKyAgICBzdGF0aWMgaW50NjRfdCBha29kZV9z ZWVrKHZvaWQqIG9wYXF1ZSwgaW50NjRfdCBwb3MsIGludCB3aGVuY2UpDQorICAgICB7DQorICAg ICAgICAgYUtvZGU6OkZpbGUgKmZpbGUgPSAoYUtvZGU6OkZpbGUqKW9wYXF1ZTsNCisgICAgICAg ICByZXR1cm4gZmlsZS0+c2Vlayhwb3MsIHdoZW5jZSk7DQorQEAgLTMxNCw3ICszMTQsNyBAQA0K KyAgICAgYXNzZXJ0KGQtPnBhY2tldC5zdHJlYW1faW5kZXggPT0gZC0+YXVkaW9TdHJlYW0pOw0K KyANCisgcmV0cnk6DQorLSAgICBpbnQgbGVuID0gYXZjb2RlY19kZWNvZGVfYXVkaW8oIGQtPmlj LT5zdHJlYW1zW2QtPmF1ZGlvU3RyZWFtXS0+Y29kZWMsDQorKyAgICBpbnQgbGVuID0gYXZjb2Rl Y19kZWNvZGVfYXVkaW8yKCBkLT5pYy0+c3RyZWFtc1tkLT5hdWRpb1N0cmVhbV0tPmNvZGVjLA0K KyAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAoc2hvcnQqKWQtPmJ1ZmZlciwg JmQtPmJ1ZmZlcl9zaXplLA0KKyAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBk LT5wYWNrZXREYXRhLCBkLT5wYWNrZXRTaXplICk7DQorIA0KSW5kZXg6IGFrb2RlL2ZpbGVzL3Bh dGNoLWFrb2RlX19wbHVnaW5zX19wb2x5cF9zaW5rX19wb2x5cF9zaW5rLmNwcA0KPT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PQ0KLS0tIGFrb2RlL2ZpbGVzL3BhdGNoLWFrb2RlX19wbHVnaW5zX19wb2x5cF9zaW5rX19wb2x5 cF9zaW5rLmNwcAkocmV2aXNpb24gMCkNCisrKyBha29kZS9maWxlcy9wYXRjaC1ha29kZV9fcGx1 Z2luc19fcG9seXBfc2lua19fcG9seXBfc2luay5jcHAJKHdvcmtpbmcgY29weSkNCkBAIC0wLDAg KzEsMjAgQEANCistLS0gYWtvZGUvcGx1Z2lucy9wb2x5cF9zaW5rL3BvbHlwX3NpbmsuY3BwLm9y aWcJU3VuIEp1biAxMCAxMzoyMzowMyAyMDA3DQorKysrIGFrb2RlL3BsdWdpbnMvcG9seXBfc2lu ay9wb2x5cF9zaW5rLmNwcAlTdW4gSnVuIDEwIDEzOjI0OjEzIDIwMDcNCitAQCAtMjUsNyArMjUs NyBAQA0KKyAjZWxpZiBkZWZpbmVkKEhBVkVfSU5UVFlQRVNfSCkNCisgI2luY2x1ZGUgPGludHR5 cGVzLmg+DQorICNlbmRpZg0KKy0jaW5jbHVkZSA8cG9seXAvcG9seXBsaWItc2ltcGxlLmg+DQor KyNpbmNsdWRlIDxwdWxzZS9zaW1wbGUuaD4NCisgDQorICNpbmNsdWRlICJhdWRpb2ZyYW1lLmgi DQorICNpbmNsdWRlICJhdWRpb2J1ZmZlci5oIg0KK0BAIC01OSw3ICs1OSw3IEBADQorIA0KKyBi b29sIFBvbHlwU2luazo6b3BlbigpIHsNCisgICAgIGludCBlcnJvciA9IDA7DQorLSAgICBtX2Rh dGEtPnNlcnZlciA9IHBhX3NpbXBsZV9uZXcoMCwgImFrb2RlLWNsaWVudCIsIFBBX1NUUkVBTV9Q TEFZQkFDSywgMCwgIiIsICZtX2RhdGEtPnNhbXBsZV9zcGVjLCAwLCAyNTUsICZlcnJvciApOw0K KysgICAgbV9kYXRhLT5zZXJ2ZXIgPSBwYV9zaW1wbGVfbmV3KDAsICJha29kZS1jbGllbnQiLCBQ QV9TVFJFQU1fUExBWUJBQ0ssIDAsICIiLCAmbV9kYXRhLT5zYW1wbGVfc3BlYywgMCwgMCwgJmVy cm9yICk7DQorICAgICBpZiAoIW1fZGF0YS0+c2VydmVyIHx8IGVycm9yICE9IDApIHsNCisgICAg ICAgICBtX2RhdGEtPmVycm9yID0gdHJ1ZTsNCisgICAgICAgICBjbG9zZSgpOw0KSW5kZXg6IGFr b2RlL2ZpbGVzL3BhdGNoLWFrb2RlX19wbHVnaW5zX194aXBoX2RlY29kZXJfX2ZsYWMxMTNfZGVj b2Rlci5jcHANCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT0NCi0tLSBha29kZS9maWxlcy9wYXRjaC1ha29kZV9fcGx1Z2lu c19feGlwaF9kZWNvZGVyX19mbGFjMTEzX2RlY29kZXIuY3BwCShyZXZpc2lvbiAwKQ0KKysrIGFr b2RlL2ZpbGVzL3BhdGNoLWFrb2RlX19wbHVnaW5zX194aXBoX2RlY29kZXJfX2ZsYWMxMTNfZGVj b2Rlci5jcHAJKHdvcmtpbmcgY29weSkNCkBAIC0wLDAgKzEsMTEgQEANCistLS0gYWtvZGUvcGx1 Z2lucy94aXBoX2RlY29kZXIvZmxhYzExM19kZWNvZGVyLmNwcC5vcmlnCTIwMDgtMDMtMjcgMTY6 MTE6MjYuMDAwMDAwMDAwICswMTAwDQorKysrIGFrb2RlL3BsdWdpbnMveGlwaF9kZWNvZGVyL2Zs YWMxMTNfZGVjb2Rlci5jcHAJMjAwOC0wMy0yNyAxNjoxMTo0Ni4wMDAwMDAwMDAgKzAxMDANCitA QCAtMTA4LDcgKzEwOCw3IEBAIHN0cnVjdCBGTEFDRGVjb2Rlcjo6cHJpdmF0ZV9kYXRhIHsNCisg c3RhdGljIEZMQUNfX1N0cmVhbURlY29kZXJSZWFkU3RhdHVzIGZsYWNfcmVhZF9jYWxsYmFjaygN CisgICAgICAgICBjb25zdCBGTEFDX19TdHJlYW1EZWNvZGVyICosDQorICAgICAgICAgRkxBQ19f Ynl0ZSBidWZmZXJbXSwNCistICAgICAgICB1bnNpZ25lZCAqYnl0ZXMsDQorKyAgICAgICAgc2l6 ZV90ICpieXRlcywNCisgICAgICAgICB2b2lkICpjbGllbnRfZGF0YSkNCisgew0KKyAgICAgRkxB Q0RlY29kZXI6OnByaXZhdGVfZGF0YSAqZGF0YSA9IChGTEFDRGVjb2Rlcjo6cHJpdmF0ZV9kYXRh KiljbGllbnRfZGF0YTsNCkluZGV4OiBha29kZS9maWxlcy9wYXRjaC1ha29kZV9fcGx1Z2luc19f eGlwaF9kZWNvZGVyX19zcGVleF9kZWNvZGVyLmNwcA0KPT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQ0KLS0tIGFrb2RlL2Zp bGVzL3BhdGNoLWFrb2RlX19wbHVnaW5zX194aXBoX2RlY29kZXJfX3NwZWV4X2RlY29kZXIuY3Bw CShyZXZpc2lvbiAwKQ0KKysrIGFrb2RlL2ZpbGVzL3BhdGNoLWFrb2RlX19wbHVnaW5zX194aXBo X2RlY29kZXJfX3NwZWV4X2RlY29kZXIuY3BwCSh3b3JraW5nIGNvcHkpDQpAQCAtMCwwICsxLDE3 IEBADQorLS0tIGFrb2RlL3BsdWdpbnMveGlwaF9kZWNvZGVyL3NwZWV4X2RlY29kZXIuY3BwLm9y aWcNCisrKysgYWtvZGUvcGx1Z2lucy94aXBoX2RlY29kZXIvc3BlZXhfZGVjb2Rlci5jcHANCitA QCAtMjUsMTAgKzI1LDEwIEBADQorIGV4dGVybiAiQyIgew0KKyAjaW5jbHVkZSA8c3RyaW5nLmg+ DQorICNpbmNsdWRlIDxzdGRsaWIuaD4NCistI2luY2x1ZGUgPHNwZWV4Lmg+DQorLSNpbmNsdWRl IDxzcGVleF9oZWFkZXIuaD4NCistI2luY2x1ZGUgPHNwZWV4X2NhbGxiYWNrcy5oPg0KKy0jaW5j bHVkZSA8c3BlZXhfc3RlcmVvLmg+DQorKyNpbmNsdWRlIDxzcGVleC9zcGVleC5oPg0KKysjaW5j bHVkZSA8c3BlZXgvc3BlZXhfaGVhZGVyLmg+DQorKyNpbmNsdWRlIDxzcGVleC9zcGVleF9jYWxs YmFja3MuaD4NCisrI2luY2x1ZGUgPHNwZWV4L3NwZWV4X3N0ZXJlby5oPg0KKyAjaW5jbHVkZSA8 b2dnL29nZy5oPg0KKyB9DQorIA0KSW5kZXg6IGFrb2RlL2ZpbGVzL3BhdGNoLWNvbmZpZ3VyZQ0K PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PQ0KLS0tIGFrb2RlL2ZpbGVzL3BhdGNoLWNvbmZpZ3VyZQkocmV2aXNpb24gMCkN CisrKyBha29kZS9maWxlcy9wYXRjaC1jb25maWd1cmUJKHdvcmtpbmcgY29weSkNCkBAIC0wLDAg KzEsNDcgQEANCistLS0gY29uZmlndXJlLm9yaWcNCisrKysgY29uZmlndXJlDQorQEAgLTIyMjAw LDggKzIyMjAwLDggQEANCisgY2F0ID4+Y29uZnRlc3QuJGFjX2V4dCA8PF9BQ0VPRg0KKyAvKiBl bmQgY29uZmRlZnMuaC4gICovDQorIA0KKy0gICAgICAgICAgICAgICAgI2luY2x1ZGUgPHNwZWV4 Lmg+DQorLSAgICAgICAgICAgICAgICAjaW5jbHVkZSA8c3BlZXhfY2FsbGJhY2tzLmg+DQorKyAg ICAgICAgICAgICAgICAjaW5jbHVkZSA8c3BlZXgvc3BlZXguaD4NCisrICAgICAgICAgICAgICAg ICNpbmNsdWRlIDxzcGVleC9zcGVleF9jYWxsYmFja3MuaD4NCisgICAgICAgICAgICAgICAgICNp bmNsdWRlIDxvZ2cvb2dnLmg+DQorIA0KKyBpbnQNCitAQCAtMjIzNTAsMTAgKzIyMzUwLDEwIEBA DQorIGNhdCA+PmNvbmZ0ZXN0LiRhY19leHQgPDxfQUNFT0YNCisgLyogZW5kIGNvbmZkZWZzLmgu ICAqLw0KKyANCistICAgICAgICAgICAgICAgICNpbmNsdWRlIDxzcGVleC5oPg0KKy0gICAgICAg ICAgICAgICAgI2luY2x1ZGUgPHNwZWV4X2NhbGxiYWNrcy5oPg0KKy0gICAgICAgICAgICAgICAg I2luY2x1ZGUgPHNwZWV4X2VjaG8uaD4NCistICAgICAgICAgICAgICAgICNpbmNsdWRlIDxzcGVl eF9wcmVwcm9jZXNzLmg+DQorKyAgICAgICAgICAgICAgICAjaW5jbHVkZSA8c3BlZXgvc3BlZXgu aD4NCisrICAgICAgICAgICAgICAgICNpbmNsdWRlIDxzcGVleC9zcGVleF9jYWxsYmFja3MuaD4N CisrICAgICAgICAgICAgICAgICNpbmNsdWRlIDxzcGVleC9zcGVleF9lY2hvLmg+DQorKyAgICAg ICAgICAgICAgICAjaW5jbHVkZSA8c3BlZXgvc3BlZXhfcHJlcHJvY2Vzcy5oPg0KKyAgICAgICAg ICAgICAgICAgI2luY2x1ZGUgPG9nZy9vZ2cuaD4NCisgDQorIGludA0KK0BAIC0yNTUwNiwxMiAr MjU1MDYsMTIgQEANCisgDQorIA0KKyBpZiB0ZXN0ICJ4JHBvbHlwYXVkaW9fdGVzdCIgPSAieHll cyIgOyB0aGVuDQorLXsgZWNobyAiJGFzX21lOiRMSU5FTk86IGNoZWNraW5nIGZvciBQb2x5cGF1 ZGlvIDAuNyBvciBsYXRlciIgPiY1DQorLWVjaG8gJEVDSE9fTiAiY2hlY2tpbmcgZm9yIFBvbHlw YXVkaW8gMC43IG9yIGxhdGVyLi4uICRFQ0hPX0MiID4mNjsgfQ0KKy1pZiAkUEtHX0NPTkZJRyAt LWF0bGVhc3QtdmVyc2lvbiAwLjcgcG9seXBsaWItc2ltcGxlID4vZGV2L251bGwgMj4mMSA7IHRo ZW4NCistICBQT0xZUF9DRkxBR1M9ImAkUEtHX0NPTkZJRyAtLWNmbGFncyBwb2x5cGxpYi1zaW1w bGVgIg0KKy0gIFBPTFlQX0xJQkFERD0iYCRQS0dfQ09ORklHIC0tbGlicy1vbmx5LWwgcG9seXBs aWItc2ltcGxlYCINCistICBQT0xZUF9MREZMQUdTPSJgJFBLR19DT05GSUcgLS1saWJzLW9ubHkt TCBwb2x5cGxpYi1zaW1wbGVgIg0KKyt7IGVjaG8gIiRhc19tZTokTElORU5POiBjaGVja2luZyBm b3IgUHVsc2VhdWRpbyAwLjkuMiBvciBsYXRlciIgPiY1DQorK2VjaG8gJEVDSE9fTiAiY2hlY2tp bmcgZm9yIFB1bHNlYXVkaW8gMC45LjIgb3IgbGF0ZXIuLi4gJEVDSE9fQyIgPiY2OyB9DQorK2lm ICRQS0dfQ09ORklHIC0tYXRsZWFzdC12ZXJzaW9uIDAuOS4yIGxpYnB1bHNlLXNpbXBsZSA+L2Rl di9udWxsIDI+JjEgOyB0aGVuDQorKyAgUE9MWVBfQ0ZMQUdTPSJgJFBLR19DT05GSUcgLS1jZmxh Z3MgbGlicHVsc2Utc2ltcGxlYCINCisrICBQT0xZUF9MSUJBREQ9ImAkUEtHX0NPTkZJRyAtLWxp YnMtb25seS1sIGxpYnB1bHNlLXNpbXBsZWAiDQorKyAgUE9MWVBfTERGTEFHUz0iYCRQS0dfQ09O RklHIC0tbGlicy1vbmx5LUwgbGlicHVsc2Utc2ltcGxlYCINCisgICBoYXZlX3BvbHlwPXllcw0K KyAgIHsgZWNobyAiJGFzX21lOiRMSU5FTk86IHJlc3VsdDogeWVzIiA+JjUNCisgZWNobyAiJHtF Q0hPX1R9eWVzIiA+JjY7IH0NCkluZGV4OiBha29kZS1wbHVnaW5zLWZmbXBlZy9NYWtlZmlsZQ0K PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PQ0KLS0tIGFrb2RlLXBsdWdpbnMtZmZtcGVnL01ha2VmaWxlCShyZXZpc2lvbiAz MjgzMDkpDQorKysgYWtvZGUtcGx1Z2lucy1mZm1wZWcvTWFrZWZpbGUJKHdvcmtpbmcgY29weSkN CkBAIC0xMCwxMCArMTAsMTEgQEANCiAJCSR7TUFTVEVSX1NJVEVfTE9DQUx9DQogTUFTVEVSX1NJ VEVfU1VCRElSPQlsYXN6bG9mDQogUEtHTkFNRVNVRkZJWD0JLXBsdWdpbnMtJHtQT1JUTkFNRVNV Rlh9DQotRElTVE5BTUU9ICAgICAgIDMwMzc1LWFrb2RlLSR7UE9SVFZFUlNJT059DQorRElTVE5B TUU9CTMwMzc1LWFrb2RlLSR7UE9SVFZFUlNJT059DQogDQogTUFJTlRBSU5FUj0Jc3doZXR6ZWxA Z21haWwuY29tDQogQ09NTUVOVD0JRkZNUEVHIGRlY29kZXIgcGx1Z2luIGZvciBha29kZQ0KKw0K IExJQ0VOU0U9CUxHUEwyMA0KIExJQ0VOU0VfRklMRT0JJHtXUktTUkN9L0NPUFlJTkcNCiANCkBA IC0yMSwxNyArMjIsMjQgQEANCiANCiBDT05GTElDVFM9CWtkZW11bHRpbWVkaWEtMy5bMS0zXSoN CiANCi1OT19TVEFHRT0JeWVzDQorUEFUQ0hESVI9CSR7TUFTVEVSRElSfS8uLi9ha29kZS9maWxl cw0KK1dSS1NSQz0JCSR7V1JLRElSfS9ha29kZS0ke1BPUlRWRVJTSU9OfQ0KK0JVSUxEX1dSS1NS Qz0JJHtXUktTUkN9L2Frb2RlDQorSU5TVEFMTF9XUktTUkM9CSR7V1JLU1JDfS9ha29kZS9wbHVn aW5zLyR7UExVR0lOfQ0KKw0KIFBMVUdJTj0JCWZmbXBlZ19kZWNvZGVyDQogUE9SVE5BTUVTVUZY PQkke1BMVUdJTjpTL19zaW5rLy86Uy9fZGVjb2Rlci8vOlMvc3JjXy8vfQ0KIA0KK05PX1NUQUdF PQl5ZXMNCiBVU0VTPQkJZ21ha2UNCi1VU0VfQVVUT1RPT0xTPQlsaWJsdGRsDQotVVNFX0FVVE9U T09MUz0JbGlidG9vbA0KK1VTRV9BVVRPVE9PTFM9CWxpYmx0ZGwgbGlidG9vbA0KIFVTRV9CWklQ Mj0JeWVzDQotV1JLU1JDPQkJJHtXUktESVJ9L2Frb2RlLSR7UE9SVFZFUlNJT059DQogVVNFX0xE Q09ORklHPQl5ZXMNCiANCitQTElTVF9GSUxFUz0JbGliL2xpYmFrb2RlXyR7UExVR0lOfS5hIFwN CisJCWxpYi9saWJha29kZV8ke1BMVUdJTn0ubGEgXA0KKwkJbGliL2xpYmFrb2RlXyR7UExVR0lO fS5zbw0KKw0KIExERkxBR1MrPQktTCR7V1JLU1JDfS9ha29kZS9saWIvLmxpYnMNCiBDT05GSUdV UkVfQVJHUys9LS13aXRoLWV4dHJhLWxpYnM9JHtMT0NBTEJBU0V9L2xpYiBcDQogCQktLXdpdGgt ZXh0cmEtaW5jbHVkZXM9JHtMT0NBTEJBU0V9L2luY2x1ZGUNCkBAIC0zOSwxNCArNDcsMTAgQEAN CiBwb3N0LXBhdGNoOg0KIAlAJHtTRVRFTlZ9IFRaPVVUQyBcDQogCSR7VE9VQ0h9IC10IDIwMDYw NzIyMjIxNy4wMSAke1dSS1NSQ30vYWtvZGUvbGliL2Frb2RlX2V4cG9ydC5oLmluDQorCSR7UkVJ TlBMQUNFX0NNRH0gLWUgJ3N8XlNVQkRJUlMgPS4qfFNVQkRJUlMgPSBsaWIgcGx1Z2luc3xnJyBc DQorCQkke1dSS1NSQ30vYWtvZGUvTWFrZWZpbGUuaW4NCiANCiBwcmUtY29uZmlndXJlOg0KIAlA JHtSRUlOUExBQ0VfQ01EfSAtZSAnc0AlJVNVQkRJUlMlJUAke1BMVUdJTn1AZycgJHtXUktTUkN9 L2Frb2RlL3BsdWdpbnMvTWFrZWZpbGUuaW4NCiANCi1kby1idWlsZDoNCi0JY2QgJHtXUktTUkN9 L2Frb2RlICYmICR7R01BS0V9DQotDQotZG8taW5zdGFsbDoNCi0JY2QgJHtXUktTUkN9L2Frb2Rl L3BsdWdpbnMvJHtQTFVHSU59ICYmICR7R01BS0V9IGluc3RhbGwNCi0NCiAuaW5jbHVkZSA8YnNk LnBvcnQubWs+DQpJbmRleDogYWtvZGUtcGx1Z2lucy1mZm1wZWcvZmlsZXMvcGF0Y2gtYWtvZGVf TWFrZWZpbGUuaW4NCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT0NCi0tLSBha29kZS1wbHVnaW5zLWZmbXBlZy9maWxlcy9w YXRjaC1ha29kZV9NYWtlZmlsZS5pbgkocmV2aXNpb24gMzI4MzA5KQ0KKysrIGFrb2RlLXBsdWdp bnMtZmZtcGVnL2ZpbGVzL3BhdGNoLWFrb2RlX01ha2VmaWxlLmluCSh3b3JraW5nIGNvcHkpDQpA QCAtMSwxMSArMCwwIEBADQotLS0tIGFrb2RlL01ha2VmaWxlLmluLm9yaWcJVHVlIE5vdiAyOSAx Nzo1MToxOSAyMDA1DQotKysrIGFrb2RlL01ha2VmaWxlLmluCVR1ZSBOb3YgMjkgMTc6NTE6MDUg MjAwNQ0KLUBAIC0yNDcsNyArMjQ3LDcgQEANCi0gdW5zZXJtYWtlX2VuYWJsZV9wY2hfRkFMU0Ug PSBAdW5zZXJtYWtlX2VuYWJsZV9wY2hfRkFMU0VADQotIHVuc2VybWFrZV9lbmFibGVfcGNoX1RS VUUgPSBAdW5zZXJtYWtlX2VuYWJsZV9wY2hfVFJVRUANCi0gYmluX1NDUklQVFMgPSBha29kZS1j b25maWcNCi0tU1VCRElSUyA9IGxpYiBwbHVnaW5zIGFrb2RlcGxheQ0KLStTVUJESVJTID0gbGli IHBsdWdpbnMNCi0gIz4tIGFsbDogYWxsLXJlY3Vyc2l2ZQ0KLSAjPisgMQ0KLSBhbGw6IGRvY3Mt YW0gIGFsbC1yZWN1cnNpdmUNCkluZGV4OiBha29kZS1wbHVnaW5zLWZmbXBlZy9maWxlcy9wYXRj aC1ha29kZV9fcGx1Z2luc19fZmZtcGVnX2RlY29kZXJfX2ZmbXBlZ19kZWNvZGVyLmNwcA0KPT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PQ0KLS0tIGFrb2RlLXBsdWdpbnMtZmZtcGVnL2ZpbGVzL3BhdGNoLWFrb2RlX19wbHVn aW5zX19mZm1wZWdfZGVjb2Rlcl9fZmZtcGVnX2RlY29kZXIuY3BwCShyZXZpc2lvbiAzMjgzMDkp DQorKysgYWtvZGUtcGx1Z2lucy1mZm1wZWcvZmlsZXMvcGF0Y2gtYWtvZGVfX3BsdWdpbnNfX2Zm bXBlZ19kZWNvZGVyX19mZm1wZWdfZGVjb2Rlci5jcHAJKHdvcmtpbmcgY29weSkNCkBAIC0xLDIw ICswLDAgQEANCi0tLS0gLi9ha29kZS9wbHVnaW5zL2ZmbXBlZ19kZWNvZGVyL2ZmbXBlZ19kZWNv ZGVyLmNwcC5vcmlnCTIwMDYtMDgtMTAgMTU6Mzc6MjAuMDAwMDAwMDAwIC0wMzAwDQotKysrIC4v YWtvZGUvcGx1Z2lucy9mZm1wZWdfZGVjb2Rlci9mZm1wZWdfZGVjb2Rlci5jcHAJMjAwOS0xMS0x MyAyMjo0OToxMi4wMDAwMDAwMDAgLTAyMDANCi1AQCAtNDUsNyArNDUsNyBAQA0KLSAgICAgICAg IGFLb2RlOjpGaWxlICpmaWxlID0gKGFLb2RlOjpGaWxlKilvcGFxdWU7DQotICAgICAgICAgcmV0 dXJuIGZpbGUtPndyaXRlKChjaGFyKilidWYsIHNpemUpOw0KLSAgICAgfQ0KLS0gICAgc3RhdGlj IG9mZnNldF90IGFrb2RlX3NlZWsodm9pZCogb3BhcXVlLCBvZmZzZXRfdCBwb3MsIGludCB3aGVu Y2UpDQotKyAgICBzdGF0aWMgaW50NjRfdCBha29kZV9zZWVrKHZvaWQqIG9wYXF1ZSwgaW50NjRf dCBwb3MsIGludCB3aGVuY2UpDQotICAgICB7DQotICAgICAgICAgYUtvZGU6OkZpbGUgKmZpbGUg PSAoYUtvZGU6OkZpbGUqKW9wYXF1ZTsNCi0gICAgICAgICByZXR1cm4gZmlsZS0+c2Vlayhwb3Ms IHdoZW5jZSk7DQotQEAgLTMxNCw3ICszMTQsNyBAQA0KLSAgICAgYXNzZXJ0KGQtPnBhY2tldC5z dHJlYW1faW5kZXggPT0gZC0+YXVkaW9TdHJlYW0pOw0KLSANCi0gcmV0cnk6DQotLSAgICBpbnQg bGVuID0gYXZjb2RlY19kZWNvZGVfYXVkaW8oIGQtPmljLT5zdHJlYW1zW2QtPmF1ZGlvU3RyZWFt XS0+Y29kZWMsDQotKyAgICBpbnQgbGVuID0gYXZjb2RlY19kZWNvZGVfYXVkaW8yKCBkLT5pYy0+ c3RyZWFtc1tkLT5hdWRpb1N0cmVhbV0tPmNvZGVjLA0KLSAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAoc2hvcnQqKWQtPmJ1ZmZlciwgJmQtPmJ1ZmZlcl9zaXplLA0KLSAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBkLT5wYWNrZXREYXRhLCBkLT5wYWNrZXRT aXplICk7DQotIA0KSW5kZXg6IGFrb2RlLXBsdWdpbnMtZmZtcGVnL2ZpbGVzL3BhdGNoLWFrb2Rl X3BsdWdpbnMtTWFrZWZpbGUuaW4NCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0NCi0tLSBha29kZS1wbHVnaW5zLWZmbXBl Zy9maWxlcy9wYXRjaC1ha29kZV9wbHVnaW5zLU1ha2VmaWxlLmluCShyZXZpc2lvbiAzMjgzMDkp DQorKysgYWtvZGUtcGx1Z2lucy1mZm1wZWcvZmlsZXMvcGF0Y2gtYWtvZGVfcGx1Z2lucy1NYWtl ZmlsZS5pbgkod29ya2luZyBjb3B5KQ0KQEAgLTEsMTUgKzAsMCBAQA0KLS0tLSBha29kZS9wbHVn aW5zL01ha2VmaWxlLmluLm9yaWcJVHVlIE5vdiAyOSAxODoxMDoyMCAyMDA1DQotKysrIGFrb2Rl L3BsdWdpbnMvTWFrZWZpbGUuaW4JVHVlIE5vdiAyOSAxODoxMDo0NSAyMDA1DQotQEAgLTI1Miwx MSArMjUyLDcgQEANCi0gQGluY2x1ZGVfc3VuX3NpbmtfVFJVRUBBS09ERV9TVU5fU0lOSyA9IHN1 bl9zaW5rDQotIEBpbmNsdWRlX2phY2tfc2lua19UUlVFQEFLT0RFX0pBQ0tfU0lOSyA9IGphY2tf c2luaw0KLSBAaW5jbHVkZV9wb2x5cF9zaW5rX1RSVUVAQUtPREVfUE9MWVBfU0lOSyA9IHBvbHlw X3NpbmsNCi0tU1VCRElSUyA9ICQoQUtPREVfTVBDX0RFQ09ERVIpICQoQUtPREVfWElQSF9ERUNP REVSKSBcDQotLSAgICAgICAgICQoQUtPREVfTVBFR19ERUNPREVSKSAkKEFLT0RFX0ZGTVBFR19E RUNPREVSKSBcDQotLSAgICAgICAgICQoQUtPREVfQUxTQV9TSU5LKSAkKEFLT0RFX09TU19TSU5L KSAkKEFLT0RFX1NVTl9TSU5LKSBcDQotLSAgICAgICAgICQoQUtPREVfSkFDS19TSU5LKSAkKEFL T0RFX1BPTFlQX1NJTkspIFwNCi0tICAgICAgICAgJChBS09ERV9TUkNfUkVTQU1QTEVSKQ0KLStT VUJESVJTID0gJSVTVUJESVJTJSUNCi0gDQotICM+LSBhbGw6IGFsbC1yZWN1cnNpdmUNCi0gIz4r IDENCkluZGV4OiBha29kZS1wbHVnaW5zLWZmbXBlZy9wa2ctcGxpc3QNCj09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0NCi0t LSBha29kZS1wbHVnaW5zLWZmbXBlZy9wa2ctcGxpc3QJKHJldmlzaW9uIDMyODMwOSkNCisrKyBh a29kZS1wbHVnaW5zLWZmbXBlZy9wa2ctcGxpc3QJKHdvcmtpbmcgY29weSkNCkBAIC0xLDMgKzAs MCBAQA0KLWxpYi9saWJha29kZV9mZm1wZWdfZGVjb2Rlci5hDQotbGliL2xpYmFrb2RlX2ZmbXBl Z19kZWNvZGVyLmxhDQotbGliL2xpYmFrb2RlX2ZmbXBlZ19kZWNvZGVyLnNvDQpJbmRleDogYWtv ZGUtcGx1Z2lucy1qYWNrL01ha2VmaWxlDQo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09DQotLS0gYWtvZGUtcGx1Z2lucy1q YWNrL01ha2VmaWxlCShyZXZpc2lvbiAzMjgzMDkpDQorKysgYWtvZGUtcGx1Z2lucy1qYWNrL01h a2VmaWxlCSh3b3JraW5nIGNvcHkpDQpAQCAtMSwxNyArMSwxOSBAQA0KICMgQ3JlYXRlZCBieTog TWljaGFlbCBOb3R0ZWJyb2NrIDxsb2ZpQEZyZWVCU0Qub3JnPg0KICMgJEZyZWVCU0QkDQogDQot UE9SVE5BTUU9CWFrb2RlLXBsdWdpbnMtJHtQT1JUTkFNRVNVRlh9DQorUE9SVE5BTUU9CWFrb2Rl DQogUE9SVFZFUlNJT049CTIuMC4yDQogUE9SVEVQT0NIPQkxDQogQ0FURUdPUklFUz0JYXVkaW8g a2RlDQogTUFTVEVSX1NJVEVTPQlodHRwOi8vd3d3LmtkZS1hcHBzLm9yZy9DT05URU5UL2NvbnRl bnQtZmlsZXMvIFwNCiAJCSR7TUFTVEVSX1NJVEVfTE9DQUx9DQotTUFTVEVSX1NJVEVfU1VCRElS PWxhc3psb2YNCitNQVNURVJfU0lURV9TVUJESVI9CWxhc3psb2YNCitQS0dOQU1FU1VGRklYPQkt cGx1Z2lucy0ke1BPUlROQU1FU1VGWH0NCiBESVNUTkFNRT0JMzAzNzUtYWtvZGUtJHtQT1JUVkVS U0lPTn0NCiANCiBNQUlOVEFJTkVSPQlzd2hldHplbEBnbWFpbC5jb20NCiBDT01NRU5UPQlKYWNr IG91dHB1dCBwbHVnaW4gZm9yIGFrb2RlDQorDQogTElDRU5TRT0JTEdQTDIwDQogTElDRU5TRV9G SUxFPQkke1dSS1NSQ30vQ09QWUlORw0KIA0KQEAgLTE5LDE3ICsyMSwyNCBAQA0KIA0KIENPTkZM SUNUUz0Ja2RlbXVsdGltZWRpYS0zLlsxLTNdKg0KIA0KLU5PX1NUQUdFPQl5ZXMNCitQQVRDSERJ Uj0JJHtNQVNURVJESVJ9Ly4uL2Frb2RlL2ZpbGVzDQorV1JLU1JDPQkJJHtXUktESVJ9L2Frb2Rl LSR7UE9SVFZFUlNJT059DQorQlVJTERfV1JLU1JDPQkke1dSS1NSQ30vYWtvZGUNCitJTlNUQUxM X1dSS1NSQz0JJHtXUktTUkN9L2Frb2RlL3BsdWdpbnMvJHtQTFVHSU59DQorDQogUExVR0lOPQkJ amFja19zaW5rDQogUE9SVE5BTUVTVUZYPQkke1BMVUdJTjpTL19zaW5rLy86Uy9fZGVjb2Rlci8v OlMvc3JjXy8vfQ0KIA0KK05PX1NUQUdFPQl5ZXMNCiBVU0VTPQkJZ21ha2UNCi1VU0VfQVVUT1RP T0xTPQlsaWJsdGRsDQotVVNFX0FVVE9UT09MUz0JbGlidG9vbA0KK1VTRV9BVVRPVE9PTFM9CWxp Ymx0ZGwgbGlidG9vbA0KIFVTRV9CWklQMj0JeWVzDQotV1JLU1JDPQkJJHtXUktESVJ9L2Frb2Rl LSR7UE9SVFZFUlNJT059DQogVVNFX0xEQ09ORklHPQl5ZXMNCiANCitQTElTVF9GSUxFUz0JbGli L2xpYmFrb2RlXyR7UExVR0lOfS5hIFwNCisJCWxpYi9saWJha29kZV8ke1BMVUdJTn0ubGEgXA0K KwkJbGliL2xpYmFrb2RlXyR7UExVR0lOfS5zbw0KKw0KIExERkxBR1MrPQktTCR7V1JLU1JDfS9h a29kZS9saWIvLmxpYnMNCiBDT05GSUdVUkVfQVJHUys9LS13aXRoLWV4dHJhLWxpYnM9JHtMT0NB TEJBU0V9L2xpYiBcDQogCQktLXdpdGgtZXh0cmEtaW5jbHVkZXM9JHtMT0NBTEJBU0V9L2luY2x1 ZGUNCkBAIC0zNywxNCArNDYsMTAgQEANCiBwb3N0LXBhdGNoOg0KIAlAJHtTRVRFTlZ9IFRaPVVU QyBcDQogCSR7VE9VQ0h9IC10IDIwMDYwNzIyMjIxNy4wMSAke1dSS1NSQ30vYWtvZGUvbGliL2Fr b2RlX2V4cG9ydC5oLmluDQorCSR7UkVJTlBMQUNFX0NNRH0gLWUgJ3N8XlNVQkRJUlMgPS4qfFNV QkRJUlMgPSBsaWIgcGx1Z2luc3xnJyBcDQorCQkke1dSS1NSQ30vYWtvZGUvTWFrZWZpbGUuaW4N CiANCiBwcmUtY29uZmlndXJlOg0KIAlAJHtSRUlOUExBQ0VfQ01EfSAtZSAnc0AlJVNVQkRJUlMl JUAke1BMVUdJTn1AZycgJHtXUktTUkN9L2Frb2RlL3BsdWdpbnMvTWFrZWZpbGUuaW4NCiANCi1k by1idWlsZDoNCi0JY2QgJHtXUktTUkN9L2Frb2RlICYmICR7R01BS0V9DQotDQotZG8taW5zdGFs bDoNCi0JY2QgJHtXUktTUkN9L2Frb2RlL3BsdWdpbnMvJHtQTFVHSU59ICYmICR7R01BS0V9IGlu c3RhbGwNCi0NCiAuaW5jbHVkZSA8YnNkLnBvcnQubWs+DQpJbmRleDogYWtvZGUtcGx1Z2lucy1q YWNrL2ZpbGVzL3BhdGNoLWFrb2RlX01ha2VmaWxlLmluDQo9PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09DQotLS0gYWtvZGUt cGx1Z2lucy1qYWNrL2ZpbGVzL3BhdGNoLWFrb2RlX01ha2VmaWxlLmluCShyZXZpc2lvbiAzMjgz MDkpDQorKysgYWtvZGUtcGx1Z2lucy1qYWNrL2ZpbGVzL3BhdGNoLWFrb2RlX01ha2VmaWxlLmlu CSh3b3JraW5nIGNvcHkpDQpAQCAtMSwxMSArMCwwIEBADQotLS0tIGFrb2RlL01ha2VmaWxlLmlu Lm9yaWcJVHVlIE5vdiAyOSAxNzo1MToxOSAyMDA1DQotKysrIGFrb2RlL01ha2VmaWxlLmluCVR1 ZSBOb3YgMjkgMTc6NTE6MDUgMjAwNQ0KLUBAIC0yNDcsNyArMjQ3LDcgQEANCi0gdW5zZXJtYWtl X2VuYWJsZV9wY2hfRkFMU0UgPSBAdW5zZXJtYWtlX2VuYWJsZV9wY2hfRkFMU0VADQotIHVuc2Vy bWFrZV9lbmFibGVfcGNoX1RSVUUgPSBAdW5zZXJtYWtlX2VuYWJsZV9wY2hfVFJVRUANCi0gYmlu X1NDUklQVFMgPSBha29kZS1jb25maWcNCi0tU1VCRElSUyA9IGxpYiBwbHVnaW5zIGFrb2RlcGxh eQ0KLStTVUJESVJTID0gbGliIHBsdWdpbnMNCi0gIz4tIGFsbDogYWxsLXJlY3Vyc2l2ZQ0KLSAj PisgMQ0KLSBhbGw6IGRvY3MtYW0gIGFsbC1yZWN1cnNpdmUNCkluZGV4OiBha29kZS1wbHVnaW5z LWphY2svZmlsZXMvcGF0Y2gtYWtvZGVfcGx1Z2lucy1NYWtlZmlsZS5pbg0KPT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQ0K LS0tIGFrb2RlLXBsdWdpbnMtamFjay9maWxlcy9wYXRjaC1ha29kZV9wbHVnaW5zLU1ha2VmaWxl LmluCShyZXZpc2lvbiAzMjgzMDkpDQorKysgYWtvZGUtcGx1Z2lucy1qYWNrL2ZpbGVzL3BhdGNo LWFrb2RlX3BsdWdpbnMtTWFrZWZpbGUuaW4JKHdvcmtpbmcgY29weSkNCkBAIC0xLDE1ICswLDAg QEANCi0tLS0gYWtvZGUvcGx1Z2lucy9NYWtlZmlsZS5pbi5vcmlnCVR1ZSBOb3YgMjkgMTg6MTA6 MjAgMjAwNQ0KLSsrKyBha29kZS9wbHVnaW5zL01ha2VmaWxlLmluCVR1ZSBOb3YgMjkgMTg6MTA6 NDUgMjAwNQ0KLUBAIC0yNTIsMTEgKzI1Miw3IEBADQotIEBpbmNsdWRlX3N1bl9zaW5rX1RSVUVA QUtPREVfU1VOX1NJTksgPSBzdW5fc2luaw0KLSBAaW5jbHVkZV9qYWNrX3NpbmtfVFJVRUBBS09E RV9KQUNLX1NJTksgPSBqYWNrX3NpbmsNCi0gQGluY2x1ZGVfcG9seXBfc2lua19UUlVFQEFLT0RF X1BPTFlQX1NJTksgPSBwb2x5cF9zaW5rDQotLVNVQkRJUlMgPSAkKEFLT0RFX01QQ19ERUNPREVS KSAkKEFLT0RFX1hJUEhfREVDT0RFUikgXA0KLS0gICAgICAgICAkKEFLT0RFX01QRUdfREVDT0RF UikgJChBS09ERV9GRk1QRUdfREVDT0RFUikgXA0KLS0gICAgICAgICAkKEFLT0RFX0FMU0FfU0lO SykgJChBS09ERV9PU1NfU0lOSykgJChBS09ERV9TVU5fU0lOSykgXA0KLS0gICAgICAgICAkKEFL T0RFX0pBQ0tfU0lOSykgJChBS09ERV9QT0xZUF9TSU5LKSBcDQotLSAgICAgICAgICQoQUtPREVf U1JDX1JFU0FNUExFUikNCi0rU1VCRElSUyA9ICUlU1VCRElSUyUlDQotIA0KLSAjPi0gYWxsOiBh bGwtcmVjdXJzaXZlDQotICM+KyAxDQpJbmRleDogYWtvZGUtcGx1Z2lucy1qYWNrL3BrZy1wbGlz dA0KPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PQ0KLS0tIGFrb2RlLXBsdWdpbnMtamFjay9wa2ctcGxpc3QJKHJldmlzaW9u IDMyODMwOSkNCisrKyBha29kZS1wbHVnaW5zLWphY2svcGtnLXBsaXN0CSh3b3JraW5nIGNvcHkp DQpAQCAtMSwzICswLDAgQEANCi1saWIvbGliYWtvZGVfamFja19zaW5rLmENCi1saWIvbGliYWtv ZGVfamFja19zaW5rLmxhDQotbGliL2xpYmFrb2RlX2phY2tfc2luay5zbw0KSW5kZXg6IGFrb2Rl LXBsdWdpbnMtbXBjL01ha2VmaWxlDQo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09DQotLS0gYWtvZGUtcGx1Z2lucy1tcGMv TWFrZWZpbGUJKHJldmlzaW9uIDMyODMwOSkNCisrKyBha29kZS1wbHVnaW5zLW1wYy9NYWtlZmls ZQkod29ya2luZyBjb3B5KQ0KQEAgLTEsNyArMSw3IEBADQogIyBDcmVhdGVkIGJ5OiBNaWNoYWVs IE5vdHRlYnJvY2sgPGxvZmlARnJlZUJTRC5vcmc+DQogIyAkRnJlZUJTRCQNCiANCi1QT1JUTkFN RT0JYWtvZGUtcGx1Z2lucy0ke1BPUlROQU1FU1VGWH0NCitQT1JUTkFNRT0JYWtvZGUNCiBQT1JU VkVSU0lPTj0JMi4wLjINCiBQT1JURVBPQ0g9CTENCiBDQVRFR09SSUVTPQlhdWRpbyBrZGUNCkBA IC04LDMwICs4LDM0IEBADQogTUFTVEVSX1NJVEVTPSAgIGh0dHA6Ly93d3cua2RlLWFwcHMub3Jn L0NPTlRFTlQvY29udGVudC1maWxlcy8gXA0KIAkJJHtNQVNURVJfU0lURV9MT0NBTH0NCiBNQVNU RVJfU0lURV9TVUJESVI9CWxhc3psb2YNCitQS0dOQU1FU1VGRklYPQktcGx1Z2lucy0ke1BPUlRO QU1FU1VGWH0NCiBESVNUTkFNRT0JMzAzNzUtYWtvZGUtJHtQT1JUVkVSU0lPTn0NCiANCiBNQUlO VEFJTkVSPQlzd2hldHplbEBnbWFpbC5jb20NCiBDT01NRU5UPQlNdXNlcGFjayBkZWNvZGVyIHBs dWdpbiBmb3IgYWtvZGUNCisNCiBMSUNFTlNFPQlMR1BMMjANCiBMSUNFTlNFX0ZJTEU9CSR7V1JL U1JDfS9DT1BZSU5HDQogDQogQ09ORkxJQ1RTPQlrZGVtdWx0aW1lZGlhLTMuWzEtM10qDQogDQot Tk9fU1RBR0U9CXllcw0KK1BBVENIRElSPQkke01BU1RFUkRJUn0vLi4vYWtvZGUvZmlsZXMNCitX UktTUkM9CQkke1dSS0RJUn0vYWtvZGUtJHtQT1JUVkVSU0lPTn0NCitCVUlMRF9XUktTUkM9CSR7 V1JLU1JDfS9ha29kZQ0KK0lOU1RBTExfV1JLU1JDPQkke1dSS1NSQ30vYWtvZGUvcGx1Z2lucy8k e1BMVUdJTn0NCisNCiBQTFVHSU49CQltcGNfZGVjb2Rlcg0KIFBPUlROQU1FU1VGWD0JJHtQTFVH SU46Uy9fc2luay8vOlMvX2RlY29kZXIvLzpTL3NyY18vL30NCiANCitOT19TVEFHRT0JeWVzDQog VVNFUz0JCWdtYWtlDQotVVNFX0FVVE9UT09MUz0JbGlibHRkbA0KLVVTRV9BVVRPVE9PTFM9CWxp YnRvb2wNCitVU0VfQVVUT1RPT0xTPQlsaWJsdGRsIGxpYnRvb2wNCiBVU0VfQlpJUDI9CXllcw0K LVVTRV9HQ0M9CWFueQ0KLVdSS1NSQz0JCSR7V1JLRElSfS9ha29kZS0ke1BPUlRWRVJTSU9OfQ0K IFVTRV9MRENPTkZJRz0JeWVzDQogDQotUExJU1RfRklMRVM9CWxpYi9saWJha29kZV9tcGNfZGVj b2Rlci5hIFwNCi0JCWxpYi9saWJha29kZV9tcGNfZGVjb2Rlci5sYSBcDQotCQlsaWIvbGliYWtv ZGVfbXBjX2RlY29kZXIuc28NCitQTElTVF9GSUxFUz0JbGliL2xpYmFrb2RlXyR7UExVR0lOfS5h IFwNCisJCWxpYi9saWJha29kZV8ke1BMVUdJTn0ubGEgXA0KKwkJbGliL2xpYmFrb2RlXyR7UExV R0lOfS5zbw0KIA0KIExERkxBR1MrPQktTCR7V1JLU1JDfS9ha29kZS9saWIvLmxpYnMNCiBDT05G SUdVUkVfQVJHUys9LS13aXRoLWV4dHJhLWxpYnM9JHtMT0NBTEJBU0V9L2xpYiBcDQpAQCAtNDAs MTQgKzQ0LDEwIEBADQogcG9zdC1wYXRjaDoNCiAJQCR7U0VURU5WfSBUWj1VVEMgXA0KIAkke1RP VUNIfSAtdCAyMDA2MDcyMjIyMTcuMDEgJHtXUktTUkN9L2Frb2RlL2xpYi9ha29kZV9leHBvcnQu aC5pbg0KKwkke1JFSU5QTEFDRV9DTUR9IC1lICdzfF5TVUJESVJTID0uKnxTVUJESVJTID0gbGli IHBsdWdpbnN8ZycgXA0KKwkJJHtXUktTUkN9L2Frb2RlL01ha2VmaWxlLmluDQogDQogcHJlLWNv bmZpZ3VyZToNCiAJQCR7UkVJTlBMQUNFX0NNRH0gLWUgJ3NAJSVTVUJESVJTJSVAJHtQTFVHSU59 QGcnICR7V1JLU1JDfS9ha29kZS9wbHVnaW5zL01ha2VmaWxlLmluDQogDQotZG8tYnVpbGQ6DQot CWNkICR7V1JLU1JDfS9ha29kZSAmJiAke0dNQUtFfQ0KLQ0KLWRvLWluc3RhbGw6DQotCWNkICR7 V1JLU1JDfS9ha29kZS9wbHVnaW5zLyR7UExVR0lOfSAmJiAke0dNQUtFfSBpbnN0YWxsDQotDQog LmluY2x1ZGUgPGJzZC5wb3J0Lm1rPg0KSW5kZXg6IGFrb2RlLXBsdWdpbnMtbXBjL2ZpbGVzL3Bh dGNoLWFrb2RlX01ha2VmaWxlLmluDQo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09DQotLS0gYWtvZGUtcGx1Z2lucy1tcGMv ZmlsZXMvcGF0Y2gtYWtvZGVfTWFrZWZpbGUuaW4JKHJldmlzaW9uIDMyODMwOSkNCisrKyBha29k ZS1wbHVnaW5zLW1wYy9maWxlcy9wYXRjaC1ha29kZV9NYWtlZmlsZS5pbgkod29ya2luZyBjb3B5 KQ0KQEAgLTEsMTEgKzAsMCBAQA0KLS0tLSBha29kZS9NYWtlZmlsZS5pbi5vcmlnCVR1ZSBOb3Yg MjkgMTc6NTE6MTkgMjAwNQ0KLSsrKyBha29kZS9NYWtlZmlsZS5pbglUdWUgTm92IDI5IDE3OjUx OjA1IDIwMDUNCi1AQCAtMjQ3LDcgKzI0Nyw3IEBADQotIHVuc2VybWFrZV9lbmFibGVfcGNoX0ZB TFNFID0gQHVuc2VybWFrZV9lbmFibGVfcGNoX0ZBTFNFQA0KLSB1bnNlcm1ha2VfZW5hYmxlX3Bj aF9UUlVFID0gQHVuc2VybWFrZV9lbmFibGVfcGNoX1RSVUVADQotIGJpbl9TQ1JJUFRTID0gYWtv ZGUtY29uZmlnDQotLVNVQkRJUlMgPSBsaWIgcGx1Z2lucyBha29kZXBsYXkNCi0rU1VCRElSUyA9 IGxpYiBwbHVnaW5zDQotICM+LSBhbGw6IGFsbC1yZWN1cnNpdmUNCi0gIz4rIDENCi0gYWxsOiBk b2NzLWFtICBhbGwtcmVjdXJzaXZlDQpJbmRleDogYWtvZGUtcGx1Z2lucy1tcGMvZmlsZXMvcGF0 Y2gtYWtvZGVfcGx1Z2lucy1NYWtlZmlsZS5pbg0KPT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQ0KLS0tIGFrb2RlLXBsdWdp bnMtbXBjL2ZpbGVzL3BhdGNoLWFrb2RlX3BsdWdpbnMtTWFrZWZpbGUuaW4JKHJldmlzaW9uIDMy ODMwOSkNCisrKyBha29kZS1wbHVnaW5zLW1wYy9maWxlcy9wYXRjaC1ha29kZV9wbHVnaW5zLU1h a2VmaWxlLmluCSh3b3JraW5nIGNvcHkpDQpAQCAtMSwxNSArMCwwIEBADQotLS0tIGFrb2RlL3Bs dWdpbnMvTWFrZWZpbGUuaW4ub3JpZwlUdWUgTm92IDI5IDE4OjEwOjIwIDIwMDUNCi0rKysgYWtv ZGUvcGx1Z2lucy9NYWtlZmlsZS5pbglUdWUgTm92IDI5IDE4OjEwOjQ1IDIwMDUNCi1AQCAtMjUy LDExICsyNTIsNyBAQA0KLSBAaW5jbHVkZV9zdW5fc2lua19UUlVFQEFLT0RFX1NVTl9TSU5LID0g c3VuX3NpbmsNCi0gQGluY2x1ZGVfamFja19zaW5rX1RSVUVAQUtPREVfSkFDS19TSU5LID0gamFj a19zaW5rDQotIEBpbmNsdWRlX3BvbHlwX3NpbmtfVFJVRUBBS09ERV9QT0xZUF9TSU5LID0gcG9s eXBfc2luaw0KLS1TVUJESVJTID0gJChBS09ERV9NUENfREVDT0RFUikgJChBS09ERV9YSVBIX0RF Q09ERVIpIFwNCi0tICAgICAgICAgJChBS09ERV9NUEVHX0RFQ09ERVIpICQoQUtPREVfRkZNUEVH X0RFQ09ERVIpIFwNCi0tICAgICAgICAgJChBS09ERV9BTFNBX1NJTkspICQoQUtPREVfT1NTX1NJ TkspICQoQUtPREVfU1VOX1NJTkspIFwNCi0tICAgICAgICAgJChBS09ERV9KQUNLX1NJTkspICQo QUtPREVfUE9MWVBfU0lOSykgXA0KLS0gICAgICAgICAkKEFLT0RFX1NSQ19SRVNBTVBMRVIpDQot K1NVQkRJUlMgPSAlJVNVQkRJUlMlJQ0KLSANCi0gIz4tIGFsbDogYWxsLXJlY3Vyc2l2ZQ0KLSAj PisgMQ0KSW5kZXg6IGFrb2RlLXBsdWdpbnMtbXBlZy9NYWtlZmlsZQ0KPT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQ0KLS0t IGFrb2RlLXBsdWdpbnMtbXBlZy9NYWtlZmlsZQkocmV2aXNpb24gMzI4MzA5KQ0KKysrIGFrb2Rl LXBsdWdpbnMtbXBlZy9NYWtlZmlsZQkod29ya2luZyBjb3B5KQ0KQEAgLTEsNyArMSw3IEBADQog IyBDcmVhdGVkIGJ5OiBNaWNoYWVsIE5vdHRlYnJvY2sgPGxvZmlARnJlZUJTRC5vcmc+DQogIyAk RnJlZUJTRCQNCiANCi1QT1JUTkFNRT0JYWtvZGUtcGx1Z2lucy0ke1BPUlROQU1FU1VGWH0NCitQ T1JUTkFNRT0JYWtvZGUNCiBQT1JUVkVSU0lPTj0JMi4wLjINCiBQT1JURVBPQ0g9CTENCiBDQVRF R09SSUVTPQlhdWRpbyBrZGUNCkBAIC04LDEwICs4LDEyIEBADQogTUFTVEVSX1NJVEVTPQlodHRw Oi8vd3d3LmtkZS1hcHBzLm9yZy9DT05URU5UL2NvbnRlbnQtZmlsZXMvIFwNCiAJCSR7TUFTVEVS X1NJVEVfTE9DQUx9DQogTUFTVEVSX1NJVEVfU1VCRElSPQlsYXN6bG9mDQorUEtHTkFNRVNVRkZJ WD0JLXBsdWdpbnMtJHtQT1JUTkFNRVNVRlh9DQogRElTVE5BTUU9CTMwMzc1LWFrb2RlLSR7UE9S VFZFUlNJT059DQogDQogTUFJTlRBSU5FUj0Jc3doZXR6ZWxAZ21haWwuY29tDQogQ09NTUVOVD0J TVBFRyBhdWRpbyBkZWNvZGVyIHBsdWdpbiBmb3IgYWtvZGUNCisNCiBMSUNFTlNFPQlMR1BMMjAN CiBMSUNFTlNFX0ZJTEU9CSR7V1JLU1JDfS9DT1BZSU5HDQogDQpAQCAtMTksMjEgKzIxLDIzIEBA DQogDQogQ09ORkxJQ1RTPQlrZGVtdWx0aW1lZGlhLTMuWzEtM10qDQogDQotTk9fU1RBR0U9CXll cw0KK1BBVENIRElSPQkke01BU1RFUkRJUn0vLi4vYWtvZGUvZmlsZXMNCitXUktTUkM9CQkke1dS S0RJUn0vYWtvZGUtJHtQT1JUVkVSU0lPTn0NCitCVUlMRF9XUktTUkM9CSR7V1JLU1JDfS9ha29k ZQ0KK0lOU1RBTExfV1JLU1JDPQkke1dSS1NSQ30vYWtvZGUvcGx1Z2lucy8ke1BMVUdJTn0NCisN CiBQTFVHSU49CQltcGVnX2RlY29kZXINCiBQT1JUTkFNRVNVRlg9CSR7UExVR0lOOlMvX3Npbmsv LzpTL19kZWNvZGVyLy86Uy9zcmNfLy99DQogDQorTk9fU1RBR0U9CXllcw0KIFVTRVM9CQlnbWFr ZQ0KLVVTRV9BVVRPVE9PTFM9CWxpYmx0ZGwNCi1VU0VfQVVUT1RPT0xTPQlsaWJ0b29sDQorVVNF X0FVVE9UT09MUz0JbGlibHRkbCBsaWJ0b29sDQogVVNFX0JaSVAyPQl5ZXMNCi1VU0VfR0NDPQlh bnkNCi1XUktTUkM9CQkke1dSS0RJUn0vYWtvZGUtJHtQT1JUVkVSU0lPTn0NCiBVU0VfTERDT05G SUc9CXllcw0KIA0KLVBMSVNUX0ZJTEVTPQlsaWIvbGliYWtvZGVfbXBlZ19kZWNvZGVyLmEgXA0K LQkJbGliL2xpYmFrb2RlX21wZWdfZGVjb2Rlci5sYSBcDQotCQlsaWIvbGliYWtvZGVfbXBlZ19k ZWNvZGVyLnNvDQorUExJU1RfRklMRVM9CWxpYi9saWJha29kZV8ke1BMVUdJTn0uYSBcDQorCQls aWIvbGliYWtvZGVfJHtQTFVHSU59LmxhIFwNCisJCWxpYi9saWJha29kZV8ke1BMVUdJTn0uc28N CiANCiBMREZMQUdTKz0JLUwke1dSS1NSQ30vYWtvZGUvbGliLy5saWJzDQogQ09ORklHVVJFX0FS R1MrPS0td2l0aC1leHRyYS1saWJzPSR7TE9DQUxCQVNFfS9saWIgXA0KQEAgLTQyLDE0ICs0Niwx MCBAQA0KIHBvc3QtcGF0Y2g6DQogCUAke1NFVEVOVn0gVFo9VVRDIFwNCiAJJHtUT1VDSH0gLXQg MjAwNjA3MjIyMjE3LjAxICR7V1JLU1JDfS9ha29kZS9saWIvYWtvZGVfZXhwb3J0LmguaW4NCisJ JHtSRUlOUExBQ0VfQ01EfSAtZSAnc3xeU1VCRElSUyA9Lip8U1VCRElSUyA9IGxpYiBwbHVnaW5z fGcnIFwNCisJCSR7V1JLU1JDfS9ha29kZS9NYWtlZmlsZS5pbg0KIA0KIHByZS1jb25maWd1cmU6 DQogCUAke1JFSU5QTEFDRV9DTUR9IC1lICdzQCUlU1VCRElSUyUlQCR7UExVR0lOfUBnJyAke1dS S1NSQ30vYWtvZGUvcGx1Z2lucy9NYWtlZmlsZS5pbg0KIA0KLWRvLWJ1aWxkOg0KLQljZCAke1dS S1NSQ30vYWtvZGUgJiYgJHtHTUFLRX0NCi0NCi1kby1pbnN0YWxsOg0KLQljZCAke1dSS1NSQ30v YWtvZGUvcGx1Z2lucy8ke1BMVUdJTn0gJiYgJHtHTUFLRX0gaW5zdGFsbA0KLQ0KIC5pbmNsdWRl IDxic2QucG9ydC5taz4NCkluZGV4OiBha29kZS1wbHVnaW5zLW1wZWcvZmlsZXMvcGF0Y2gtYWtv ZGVfTWFrZWZpbGUuaW4NCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT0NCi0tLSBha29kZS1wbHVnaW5zLW1wZWcvZmlsZXMv cGF0Y2gtYWtvZGVfTWFrZWZpbGUuaW4JKHJldmlzaW9uIDMyODMwOSkNCisrKyBha29kZS1wbHVn aW5zLW1wZWcvZmlsZXMvcGF0Y2gtYWtvZGVfTWFrZWZpbGUuaW4JKHdvcmtpbmcgY29weSkNCkBA IC0xLDExICswLDAgQEANCi0tLS0gYWtvZGUvTWFrZWZpbGUuaW4ub3JpZwlUdWUgTm92IDI5IDE3 OjUxOjE5IDIwMDUNCi0rKysgYWtvZGUvTWFrZWZpbGUuaW4JVHVlIE5vdiAyOSAxNzo1MTowNSAy MDA1DQotQEAgLTI0Nyw3ICsyNDcsNyBAQA0KLSB1bnNlcm1ha2VfZW5hYmxlX3BjaF9GQUxTRSA9 IEB1bnNlcm1ha2VfZW5hYmxlX3BjaF9GQUxTRUANCi0gdW5zZXJtYWtlX2VuYWJsZV9wY2hfVFJV RSA9IEB1bnNlcm1ha2VfZW5hYmxlX3BjaF9UUlVFQA0KLSBiaW5fU0NSSVBUUyA9IGFrb2RlLWNv bmZpZw0KLS1TVUJESVJTID0gbGliIHBsdWdpbnMgYWtvZGVwbGF5DQotK1NVQkRJUlMgPSBsaWIg cGx1Z2lucw0KLSAjPi0gYWxsOiBhbGwtcmVjdXJzaXZlDQotICM+KyAxDQotIGFsbDogZG9jcy1h bSAgYWxsLXJlY3Vyc2l2ZQ0KSW5kZXg6IGFrb2RlLXBsdWdpbnMtbXBlZy9maWxlcy9wYXRjaC1h a29kZV9wbHVnaW5zLU1ha2VmaWxlLmluDQo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09DQotLS0gYWtvZGUtcGx1Z2lucy1t cGVnL2ZpbGVzL3BhdGNoLWFrb2RlX3BsdWdpbnMtTWFrZWZpbGUuaW4JKHJldmlzaW9uIDMyODMw OSkNCisrKyBha29kZS1wbHVnaW5zLW1wZWcvZmlsZXMvcGF0Y2gtYWtvZGVfcGx1Z2lucy1NYWtl ZmlsZS5pbgkod29ya2luZyBjb3B5KQ0KQEAgLTEsMTUgKzAsMCBAQA0KLS0tLSBha29kZS9wbHVn aW5zL01ha2VmaWxlLmluLm9yaWcJVHVlIE5vdiAyOSAxODoxMDoyMCAyMDA1DQotKysrIGFrb2Rl L3BsdWdpbnMvTWFrZWZpbGUuaW4JVHVlIE5vdiAyOSAxODoxMDo0NSAyMDA1DQotQEAgLTI1Miwx MSArMjUyLDcgQEANCi0gQGluY2x1ZGVfc3VuX3NpbmtfVFJVRUBBS09ERV9TVU5fU0lOSyA9IHN1 bl9zaW5rDQotIEBpbmNsdWRlX2phY2tfc2lua19UUlVFQEFLT0RFX0pBQ0tfU0lOSyA9IGphY2tf c2luaw0KLSBAaW5jbHVkZV9wb2x5cF9zaW5rX1RSVUVAQUtPREVfUE9MWVBfU0lOSyA9IHBvbHlw X3NpbmsNCi0tU1VCRElSUyA9ICQoQUtPREVfTVBDX0RFQ09ERVIpICQoQUtPREVfWElQSF9ERUNP REVSKSBcDQotLSAgICAgICAgICQoQUtPREVfTVBFR19ERUNPREVSKSAkKEFLT0RFX0ZGTVBFR19E RUNPREVSKSBcDQotLSAgICAgICAgICQoQUtPREVfQUxTQV9TSU5LKSAkKEFLT0RFX09TU19TSU5L KSAkKEFLT0RFX1NVTl9TSU5LKSBcDQotLSAgICAgICAgICQoQUtPREVfSkFDS19TSU5LKSAkKEFL T0RFX1BPTFlQX1NJTkspIFwNCi0tICAgICAgICAgJChBS09ERV9TUkNfUkVTQU1QTEVSKQ0KLStT VUJESVJTID0gJSVTVUJESVJTJSUNCi0gDQotICM+LSBhbGw6IGFsbC1yZWN1cnNpdmUNCi0gIz4r IDENCkluZGV4OiBha29kZS1wbHVnaW5zLW9zcy9NYWtlZmlsZQ0KPT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQ0KLS0tIGFr b2RlLXBsdWdpbnMtb3NzL01ha2VmaWxlCShyZXZpc2lvbiAzMjgzMDkpDQorKysgYWtvZGUtcGx1 Z2lucy1vc3MvTWFrZWZpbGUJKHdvcmtpbmcgY29weSkNCkBAIC0xLDcgKzEsNyBAQA0KICMgQ3Jl YXRlZCBieTogTWljaGFlbCBOb3R0ZWJyb2NrIDxsb2ZpQEZyZWVCU0Qub3JnPg0KICMgJEZyZWVC U0QkDQogDQotUE9SVE5BTUU9CWFrb2RlLXBsdWdpbnMtJHtQT1JUTkFNRVNVRlh9DQorUE9SVE5B TUU9CWFrb2RlDQogUE9SVFZFUlNJT049CTIuMC4yDQogUE9SVEVQT0NIPQkxDQogQ0FURUdPUklF Uz0JYXVkaW8ga2RlDQpAQCAtOCwzMCArOCwzNCBAQA0KIE1BU1RFUl9TSVRFUz0JaHR0cDovL3d3 dy5rZGUtYXBwcy5vcmcvQ09OVEVOVC9jb250ZW50LWZpbGVzLyBcDQogCQkke01BU1RFUl9TSVRF X0xPQ0FMfQ0KIE1BU1RFUl9TSVRFX1NVQkRJUj0JbGFzemxvZg0KK1BLR05BTUVTVUZGSVg9CS1w bHVnaW5zLSR7UE9SVE5BTUVTVUZYfQ0KIERJU1ROQU1FPQkzMDM3NS1ha29kZS0ke1BPUlRWRVJT SU9OfQ0KIA0KIE1BSU5UQUlORVI9CXN3aGV0emVsQGdtYWlsLmNvbQ0KIENPTU1FTlQ9CU9TUyBv dXRwdXQgcGx1Z2luIGZvciBha29kZQ0KKw0KIExJQ0VOU0U9CUxHUEwyMA0KIExJQ0VOU0VfRklM RT0JJHtXUktTUkN9L0NPUFlJTkcNCiANCiBDT05GTElDVFM9CWtkZW11bHRpbWVkaWEtMy5bMS0z XSoNCiANCitQQVRDSERJUj0JJHtNQVNURVJESVJ9Ly4uL2Frb2RlL2ZpbGVzDQorV1JLU1JDPQkJ JHtXUktESVJ9L2Frb2RlLSR7UE9SVFZFUlNJT059DQorQlVJTERfV1JLU1JDPQkke1dSS1NSQ30v YWtvZGUNCitJTlNUQUxMX1dSS1NSQz0JJHtXUktTUkN9L2Frb2RlL3BsdWdpbnMvJHtQTFVHSU59 DQorDQogUExVR0lOPQkJb3NzX3NpbmsNCiBQT1JUTkFNRVNVRlg9CSR7UExVR0lOOlMvX3Npbmsv LzpTL19kZWNvZGVyLy86Uy9zcmNfLy99DQogDQogTk9fU1RBR0U9CXllcw0KIFVTRVM9CQlnbWFr ZQ0KLVVTRV9BVVRPVE9PTFM9CWxpYmx0ZGwNCi1VU0VfQVVUT1RPT0xTPQlsaWJ0b29sDQorVVNF X0FVVE9UT09MUz0JbGlibHRkbCBsaWJ0b29sDQogVVNFX0JaSVAyPQl5ZXMNCi1VU0VfR0NDPQlh bnkNCi1XUktTUkM9CQkke1dSS0RJUn0vYWtvZGUtJHtQT1JUVkVSU0lPTn0NCiBVU0VfTERDT05G SUc9CXllcw0KIA0KLVBMSVNUX0ZJTEVTPQlsaWIvbGliYWtvZGVfb3NzX3NpbmsuYSBcDQotCQls aWIvbGliYWtvZGVfb3NzX3NpbmsubGEgXA0KLQkJbGliL2xpYmFrb2RlX29zc19zaW5rLnNvDQor UExJU1RfRklMRVM9CWxpYi9saWJha29kZV8ke1BMVUdJTn0uYSBcDQorCQlsaWIvbGliYWtvZGVf JHtQTFVHSU59LmxhIFwNCisJCWxpYi9saWJha29kZV8ke1BMVUdJTn0uc28NCiANCiBMREZMQUdT Kz0JLUwke1dSS1NSQ30vYWtvZGUvbGliLy5saWJzDQogQ09ORklHVVJFX0FSR1MrPS0td2l0aC1l eHRyYS1saWJzPSR7TE9DQUxCQVNFfS9saWIgXA0KQEAgLTQwLDE0ICs0NCwxMCBAQA0KIHBvc3Qt cGF0Y2g6DQogCUAke1NFVEVOVn0gVFo9VVRDIFwNCiAJJHtUT1VDSH0gLXQgMjAwNjA3MjIyMjE3 LjAxICR7V1JLU1JDfS9ha29kZS9saWIvYWtvZGVfZXhwb3J0LmguaW4NCisJJHtSRUlOUExBQ0Vf Q01EfSAtZSAnc3xeU1VCRElSUyA9Lip8U1VCRElSUyA9IGxpYiBwbHVnaW5zfGcnIFwNCisJCSR7 V1JLU1JDfS9ha29kZS9NYWtlZmlsZS5pbg0KIA0KIHByZS1jb25maWd1cmU6DQogCUAke1JFSU5Q TEFDRV9DTUR9IC1lICdzQCUlU1VCRElSUyUlQCR7UExVR0lOfUBnJyAke1dSS1NSQ30vYWtvZGUv cGx1Z2lucy9NYWtlZmlsZS5pbg0KIA0KLWRvLWJ1aWxkOg0KLQljZCAke1dSS1NSQ30vYWtvZGUg JiYgJHtHTUFLRX0NCi0NCi1kby1pbnN0YWxsOg0KLQljZCAke1dSS1NSQ30vYWtvZGUvcGx1Z2lu cy8ke1BMVUdJTn0gJiYgJHtHTUFLRX0gaW5zdGFsbA0KLQ0KIC5pbmNsdWRlIDxic2QucG9ydC5t az4NCkluZGV4OiBha29kZS1wbHVnaW5zLW9zcy9maWxlcy9wYXRjaC1ha29kZV9NYWtlZmlsZS5p bg0KPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PQ0KLS0tIGFrb2RlLXBsdWdpbnMtb3NzL2ZpbGVzL3BhdGNoLWFrb2RlX01h a2VmaWxlLmluCShyZXZpc2lvbiAzMjgzMDkpDQorKysgYWtvZGUtcGx1Z2lucy1vc3MvZmlsZXMv cGF0Y2gtYWtvZGVfTWFrZWZpbGUuaW4JKHdvcmtpbmcgY29weSkNCkBAIC0xLDExICswLDAgQEAN Ci0tLS0gYWtvZGUvTWFrZWZpbGUuaW4ub3JpZwlUdWUgTm92IDI5IDE3OjUxOjE5IDIwMDUNCi0r KysgYWtvZGUvTWFrZWZpbGUuaW4JVHVlIE5vdiAyOSAxNzo1MTowNSAyMDA1DQotQEAgLTI0Nyw3 ICsyNDcsNyBAQA0KLSB1bnNlcm1ha2VfZW5hYmxlX3BjaF9GQUxTRSA9IEB1bnNlcm1ha2VfZW5h YmxlX3BjaF9GQUxTRUANCi0gdW5zZXJtYWtlX2VuYWJsZV9wY2hfVFJVRSA9IEB1bnNlcm1ha2Vf ZW5hYmxlX3BjaF9UUlVFQA0KLSBiaW5fU0NSSVBUUyA9IGFrb2RlLWNvbmZpZw0KLS1TVUJESVJT ID0gbGliIHBsdWdpbnMgYWtvZGVwbGF5DQotK1NVQkRJUlMgPSBsaWIgcGx1Z2lucw0KLSAjPi0g YWxsOiBhbGwtcmVjdXJzaXZlDQotICM+KyAxDQotIGFsbDogZG9jcy1hbSAgYWxsLXJlY3Vyc2l2 ZQ0KSW5kZXg6IGFrb2RlLXBsdWdpbnMtb3NzL2ZpbGVzL3BhdGNoLWFrb2RlX3BsdWdpbnMtTWFr ZWZpbGUuaW4NCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT0NCi0tLSBha29kZS1wbHVnaW5zLW9zcy9maWxlcy9wYXRjaC1h a29kZV9wbHVnaW5zLU1ha2VmaWxlLmluCShyZXZpc2lvbiAzMjgzMDkpDQorKysgYWtvZGUtcGx1 Z2lucy1vc3MvZmlsZXMvcGF0Y2gtYWtvZGVfcGx1Z2lucy1NYWtlZmlsZS5pbgkod29ya2luZyBj b3B5KQ0KQEAgLTEsMTUgKzAsMCBAQA0KLS0tLSBha29kZS9wbHVnaW5zL01ha2VmaWxlLmluLm9y aWcJVHVlIE5vdiAyOSAxODoxMDoyMCAyMDA1DQotKysrIGFrb2RlL3BsdWdpbnMvTWFrZWZpbGUu aW4JVHVlIE5vdiAyOSAxODoxMDo0NSAyMDA1DQotQEAgLTI1MiwxMSArMjUyLDcgQEANCi0gQGlu Y2x1ZGVfc3VuX3NpbmtfVFJVRUBBS09ERV9TVU5fU0lOSyA9IHN1bl9zaW5rDQotIEBpbmNsdWRl X2phY2tfc2lua19UUlVFQEFLT0RFX0pBQ0tfU0lOSyA9IGphY2tfc2luaw0KLSBAaW5jbHVkZV9w b2x5cF9zaW5rX1RSVUVAQUtPREVfUE9MWVBfU0lOSyA9IHBvbHlwX3NpbmsNCi0tU1VCRElSUyA9 ICQoQUtPREVfTVBDX0RFQ09ERVIpICQoQUtPREVfWElQSF9ERUNPREVSKSBcDQotLSAgICAgICAg ICQoQUtPREVfTVBFR19ERUNPREVSKSAkKEFLT0RFX0ZGTVBFR19ERUNPREVSKSBcDQotLSAgICAg ICAgICQoQUtPREVfQUxTQV9TSU5LKSAkKEFLT0RFX09TU19TSU5LKSAkKEFLT0RFX1NVTl9TSU5L KSBcDQotLSAgICAgICAgICQoQUtPREVfSkFDS19TSU5LKSAkKEFLT0RFX1BPTFlQX1NJTkspIFwN Ci0tICAgICAgICAgJChBS09ERV9TUkNfUkVTQU1QTEVSKQ0KLStTVUJESVJTID0gJSVTVUJESVJT JSUNCi0gDQotICM+LSBhbGw6IGFsbC1yZWN1cnNpdmUNCi0gIz4rIDENCkluZGV4OiBha29kZS1w bHVnaW5zLXB1bHNlYXVkaW8vTWFrZWZpbGUNCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0NCi0tLSBha29kZS1wbHVnaW5z LXB1bHNlYXVkaW8vTWFrZWZpbGUJKHJldmlzaW9uIDMyODMwOSkNCisrKyBha29kZS1wbHVnaW5z LXB1bHNlYXVkaW8vTWFrZWZpbGUJKHdvcmtpbmcgY29weSkNCkBAIC0xLDcgKzEsNyBAQA0KICMg Q3JlYXRlZCBieTogU2NvdCBXLiBIZXR6ZWwgPHN3aGV0emVsQGdtYWlsLmNvbT4NCiAjICRGcmVl QlNEJA0KIA0KLVBPUlROQU1FPQlha29kZS1wbHVnaW5zLSR7UE9SVE5BTUVTVUZYfQ0KK1BPUlRO QU1FPQlha29kZQ0KIFBPUlRWRVJTSU9OPQkyLjAuMg0KIFBPUlRSRVZJU0lPTj0JNQ0KIENBVEVH T1JJRVM9CWF1ZGlvIGtkZQ0KQEAgLTgsMTAgKzgsMTIgQEANCiBNQVNURVJfU0lURVM9CWh0dHA6 Ly93d3cua2RlLWFwcHMub3JnL0NPTlRFTlQvY29udGVudC1maWxlcy8gXA0KIAkJJHtNQVNURVJf U0lURV9MT0NBTH0NCiBNQVNURVJfU0lURV9TVUJESVI9CWxhc3psb2YNCitQS0dOQU1FU1VGRklY PQktcGx1Z2lucy0ke1BPUlROQU1FU1VGWH0NCiBESVNUTkFNRT0JMzAzNzUtYWtvZGUtJHtQT1JU VkVSU0lPTn0NCiANCiBNQUlOVEFJTkVSPQlzd2hldHplbEBnbWFpbC5jb20NCiBDT01NRU5UPQlQ dWxzZWF1ZGlvIG91dHB1dCBwbHVnaW4gZm9yIGFrb2RlDQorDQogTElDRU5TRT0JTEdQTDIwDQog TElDRU5TRV9GSUxFPQkke1dSS1NSQ30vQ09QWUlORw0KIA0KQEAgLTE5LDE5ICsyMSwyNCBAQA0K IA0KIENPTkZMSUNUUz0Ja2RlbXVsdGltZWRpYS0zLlsxLTNdKiBha29kZS1wbHVnaW5zLXBvbHlw YXVkaW8tWzAtOV0qDQogDQorUEFUQ0hESVI9CSR7TUFTVEVSRElSfS8uLi9ha29kZS9maWxlcw0K K1dSS1NSQz0JCSR7V1JLRElSfS9ha29kZS0ke1BPUlRWRVJTSU9OfQ0KK0JVSUxEX1dSS1NSQz0J JHtXUktTUkN9L2Frb2RlDQorSU5TVEFMTF9XUktTUkM9CSR7V1JLU1JDfS9ha29kZS9wbHVnaW5z LyR7UExVR0lOfQ0KKw0KIFBMVUdJTj0JCXBvbHlwX3NpbmsNCiBQT1JUTkFNRVNVRlg9CXB1bHNl YXVkaW8NCiANCiBOT19TVEFHRT0JeWVzDQogVVNFUz0JCWdtYWtlDQotVVNFX0FVVE9UT09MUz0J bGlibHRkbA0KLVVTRV9BVVRPVE9PTFM9CWxpYnRvb2wNCitVU0VfQVVUT1RPT0xTPQlsaWJsdGRs IGxpYnRvb2wNCisjVVNFX0FVVE9UT09MUz0JbGlidG9vbA0KIFVTRV9CWklQMj0JeWVzDQotV1JL U1JDPQkJJHtXUktESVJ9L2Frb2RlLSR7UE9SVFZFUlNJT059DQogVVNFX0xEQ09ORklHPQl5ZXMN CiANCi1QTElTVF9GSUxFUz0JbGliL2xpYmFrb2RlX3BvbHlwX3NpbmsuYSBsaWIvbGliYWtvZGVf cG9seXBfc2luay5sYSBcDQotCQlsaWIvbGliYWtvZGVfcG9seXBfc2luay5zbw0KK1BMSVNUX0ZJ TEVTPQlsaWIvbGliYWtvZGVfJHtQTFVHSU59LmEgXA0KKwkJbGliL2xpYmFrb2RlXyR7UExVR0lO fS5sYSBcDQorCQlsaWIvbGliYWtvZGVfJHtQTFVHSU59LnNvDQogDQogTERGTEFHUys9CS1MJHtX UktTUkN9L2Frb2RlL2xpYi8ubGlicw0KIENPTkZJR1VSRV9BUkdTKz0tLXdpdGgtZXh0cmEtbGli cz0ke0xPQ0FMQkFTRX0vbGliIFwNCkBAIC00MCwxNCArNDcsMTAgQEANCiBwb3N0LXBhdGNoOg0K IAlAJHtTRVRFTlZ9IFRaPVVUQyBcDQogCSR7VE9VQ0h9IC10IDIwMDYwNzIyMjIxNy4wMSAke1dS S1NSQ30vYWtvZGUvbGliL2Frb2RlX2V4cG9ydC5oLmluDQorCSR7UkVJTlBMQUNFX0NNRH0gLWUg J3N8XlNVQkRJUlMgPS4qfFNVQkRJUlMgPSBsaWIgcGx1Z2luc3xnJyBcDQorCQkke1dSS1NSQ30v YWtvZGUvTWFrZWZpbGUuaW4NCiANCiBwcmUtY29uZmlndXJlOg0KIAlAJHtSRUlOUExBQ0VfQ01E fSAtZSAnc0AlJVNVQkRJUlMlJUAke1BMVUdJTn1AZycgJHtXUktTUkN9L2Frb2RlL3BsdWdpbnMv TWFrZWZpbGUuaW4NCiANCi1kby1idWlsZDoNCi0JY2QgJHtXUktTUkN9L2Frb2RlICYmICR7R01B S0V9DQotDQotZG8taW5zdGFsbDoNCi0JY2QgJHtXUktTUkN9L2Frb2RlL3BsdWdpbnMvJHtQTFVH SU59ICYmICR7R01BS0V9IGluc3RhbGwNCi0NCiAuaW5jbHVkZSA8YnNkLnBvcnQubWs+DQpJbmRl eDogYWtvZGUtcGx1Z2lucy1wdWxzZWF1ZGlvL2ZpbGVzL3BhdGNoLWFrb2RlX01ha2VmaWxlLmlu DQo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09DQotLS0gYWtvZGUtcGx1Z2lucy1wdWxzZWF1ZGlvL2ZpbGVzL3BhdGNoLWFr b2RlX01ha2VmaWxlLmluCShyZXZpc2lvbiAzMjgzMDkpDQorKysgYWtvZGUtcGx1Z2lucy1wdWxz ZWF1ZGlvL2ZpbGVzL3BhdGNoLWFrb2RlX01ha2VmaWxlLmluCSh3b3JraW5nIGNvcHkpDQpAQCAt MSwxMSArMCwwIEBADQotLS0tIGFrb2RlL01ha2VmaWxlLmluLm9yaWcJVHVlIE5vdiAyOSAxNzo1 MToxOSAyMDA1DQotKysrIGFrb2RlL01ha2VmaWxlLmluCVR1ZSBOb3YgMjkgMTc6NTE6MDUgMjAw NQ0KLUBAIC0yNDcsNyArMjQ3LDcgQEANCi0gdW5zZXJtYWtlX2VuYWJsZV9wY2hfRkFMU0UgPSBA dW5zZXJtYWtlX2VuYWJsZV9wY2hfRkFMU0VADQotIHVuc2VybWFrZV9lbmFibGVfcGNoX1RSVUUg PSBAdW5zZXJtYWtlX2VuYWJsZV9wY2hfVFJVRUANCi0gYmluX1NDUklQVFMgPSBha29kZS1jb25m aWcNCi0tU1VCRElSUyA9IGxpYiBwbHVnaW5zIGFrb2RlcGxheQ0KLStTVUJESVJTID0gbGliIHBs dWdpbnMNCi0gIz4tIGFsbDogYWxsLXJlY3Vyc2l2ZQ0KLSAjPisgMQ0KLSBhbGw6IGRvY3MtYW0g IGFsbC1yZWN1cnNpdmUNCkluZGV4OiBha29kZS1wbHVnaW5zLXB1bHNlYXVkaW8vZmlsZXMvcGF0 Y2gtYWtvZGVfX3BvbHlwX3NpbmtfX3BvbHlwX3NpbmsuY3BwDQo9PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09DQotLS0gYWtv ZGUtcGx1Z2lucy1wdWxzZWF1ZGlvL2ZpbGVzL3BhdGNoLWFrb2RlX19wb2x5cF9zaW5rX19wb2x5 cF9zaW5rLmNwcAkocmV2aXNpb24gMzI4MzA5KQ0KKysrIGFrb2RlLXBsdWdpbnMtcHVsc2VhdWRp by9maWxlcy9wYXRjaC1ha29kZV9fcG9seXBfc2lua19fcG9seXBfc2luay5jcHAJKHdvcmtpbmcg Y29weSkNCkBAIC0xLDIwICswLDAgQEANCi0tLS0gYWtvZGUvcGx1Z2lucy9wb2x5cF9zaW5rL3Bv bHlwX3NpbmsuY3BwLm9yaWcJU3VuIEp1biAxMCAxMzoyMzowMyAyMDA3DQotKysrIGFrb2RlL3Bs dWdpbnMvcG9seXBfc2luay9wb2x5cF9zaW5rLmNwcAlTdW4gSnVuIDEwIDEzOjI0OjEzIDIwMDcN Ci1AQCAtMjUsNyArMjUsNyBAQA0KLSAjZWxpZiBkZWZpbmVkKEhBVkVfSU5UVFlQRVNfSCkNCi0g I2luY2x1ZGUgPGludHR5cGVzLmg+DQotICNlbmRpZg0KLS0jaW5jbHVkZSA8cG9seXAvcG9seXBs aWItc2ltcGxlLmg+DQotKyNpbmNsdWRlIDxwdWxzZS9zaW1wbGUuaD4NCi0gDQotICNpbmNsdWRl ICJhdWRpb2ZyYW1lLmgiDQotICNpbmNsdWRlICJhdWRpb2J1ZmZlci5oIg0KLUBAIC01OSw3ICs1 OSw3IEBADQotIA0KLSBib29sIFBvbHlwU2luazo6b3BlbigpIHsNCi0gICAgIGludCBlcnJvciA9 IDA7DQotLSAgICBtX2RhdGEtPnNlcnZlciA9IHBhX3NpbXBsZV9uZXcoMCwgImFrb2RlLWNsaWVu dCIsIFBBX1NUUkVBTV9QTEFZQkFDSywgMCwgIiIsICZtX2RhdGEtPnNhbXBsZV9zcGVjLCAwLCAy NTUsICZlcnJvciApOw0KLSsgICAgbV9kYXRhLT5zZXJ2ZXIgPSBwYV9zaW1wbGVfbmV3KDAsICJh a29kZS1jbGllbnQiLCBQQV9TVFJFQU1fUExBWUJBQ0ssIDAsICIiLCAmbV9kYXRhLT5zYW1wbGVf c3BlYywgMCwgMCwgJmVycm9yICk7DQotICAgICBpZiAoIW1fZGF0YS0+c2VydmVyIHx8IGVycm9y ICE9IDApIHsNCi0gICAgICAgICBtX2RhdGEtPmVycm9yID0gdHJ1ZTsNCi0gICAgICAgICBjbG9z ZSgpOw0KSW5kZXg6IGFrb2RlLXBsdWdpbnMtcHVsc2VhdWRpby9maWxlcy9wYXRjaC1ha29kZV9w bHVnaW5zLU1ha2VmaWxlLmluDQo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09DQotLS0gYWtvZGUtcGx1Z2lucy1wdWxzZWF1 ZGlvL2ZpbGVzL3BhdGNoLWFrb2RlX3BsdWdpbnMtTWFrZWZpbGUuaW4JKHJldmlzaW9uIDMyODMw OSkNCisrKyBha29kZS1wbHVnaW5zLXB1bHNlYXVkaW8vZmlsZXMvcGF0Y2gtYWtvZGVfcGx1Z2lu cy1NYWtlZmlsZS5pbgkod29ya2luZyBjb3B5KQ0KQEAgLTEsMTUgKzAsMCBAQA0KLS0tLSBha29k ZS9wbHVnaW5zL01ha2VmaWxlLmluLm9yaWcJVHVlIE5vdiAyOSAxODoxMDoyMCAyMDA1DQotKysr IGFrb2RlL3BsdWdpbnMvTWFrZWZpbGUuaW4JVHVlIE5vdiAyOSAxODoxMDo0NSAyMDA1DQotQEAg LTI1MiwxMSArMjUyLDcgQEANCi0gQGluY2x1ZGVfc3VuX3NpbmtfVFJVRUBBS09ERV9TVU5fU0lO SyA9IHN1bl9zaW5rDQotIEBpbmNsdWRlX2phY2tfc2lua19UUlVFQEFLT0RFX0pBQ0tfU0lOSyA9 IGphY2tfc2luaw0KLSBAaW5jbHVkZV9wb2x5cF9zaW5rX1RSVUVAQUtPREVfUE9MWVBfU0lOSyA9 IHBvbHlwX3NpbmsNCi0tU1VCRElSUyA9ICQoQUtPREVfTVBDX0RFQ09ERVIpICQoQUtPREVfWElQ SF9ERUNPREVSKSBcDQotLSAgICAgICAgICQoQUtPREVfTVBFR19ERUNPREVSKSAkKEFLT0RFX0ZG TVBFR19ERUNPREVSKSBcDQotLSAgICAgICAgICQoQUtPREVfQUxTQV9TSU5LKSAkKEFLT0RFX09T U19TSU5LKSAkKEFLT0RFX1NVTl9TSU5LKSBcDQotLSAgICAgICAgICQoQUtPREVfSkFDS19TSU5L KSAkKEFLT0RFX1BPTFlQX1NJTkspIFwNCi0tICAgICAgICAgJChBS09ERV9TUkNfUkVTQU1QTEVS KQ0KLStTVUJESVJTID0gJSVTVUJESVJTJSUNCi0gDQotICM+LSBhbGw6IGFsbC1yZWN1cnNpdmUN Ci0gIz4rIDENCkluZGV4OiBha29kZS1wbHVnaW5zLXB1bHNlYXVkaW8vZmlsZXMvcGF0Y2gtY29u ZmlndXJlDQo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09DQotLS0gYWtvZGUtcGx1Z2lucy1wdWxzZWF1ZGlvL2ZpbGVzL3Bh dGNoLWNvbmZpZ3VyZQkocmV2aXNpb24gMzI4MzA5KQ0KKysrIGFrb2RlLXBsdWdpbnMtcHVsc2Vh dWRpby9maWxlcy9wYXRjaC1jb25maWd1cmUJKHdvcmtpbmcgY29weSkNCkBAIC0xLDIxICswLDAg QEANCi0tLS0gY29uZmlndXJlLm9yaWcJRnJpIEFwciAgNiAwODoyMzoyMiAyMDA3DQotKysrIGNv bmZpZ3VyZQlUdWUgTWF5IDI3IDAyOjEyOjQ5IDIwMDgNCi1AQCAtMjU1MDYsMTIgKzI1NTA2LDEy IEBADQotIA0KLSANCi0gaWYgdGVzdCAieCRwb2x5cGF1ZGlvX3Rlc3QiID0gInh5ZXMiIDsgdGhl bg0KLS17IGVjaG8gIiRhc19tZTokTElORU5POiBjaGVja2luZyBmb3IgUG9seXBhdWRpbyAwLjcg b3IgbGF0ZXIiID4mNQ0KLS1lY2hvICRFQ0hPX04gImNoZWNraW5nIGZvciBQb2x5cGF1ZGlvIDAu NyBvciBsYXRlci4uLiAkRUNIT19DIiA+JjY7IH0NCi0taWYgJFBLR19DT05GSUcgLS1hdGxlYXN0 LXZlcnNpb24gMC43IHBvbHlwbGliLXNpbXBsZSA+L2Rldi9udWxsIDI+JjEgOyB0aGVuDQotLSAg UE9MWVBfQ0ZMQUdTPSJgJFBLR19DT05GSUcgLS1jZmxhZ3MgcG9seXBsaWItc2ltcGxlYCINCi0t ICBQT0xZUF9MSUJBREQ9ImAkUEtHX0NPTkZJRyAtLWxpYnMtb25seS1sIHBvbHlwbGliLXNpbXBs ZWAiDQotLSAgUE9MWVBfTERGTEFHUz0iYCRQS0dfQ09ORklHIC0tbGlicy1vbmx5LUwgcG9seXBs aWItc2ltcGxlYCINCi0reyBlY2hvICIkYXNfbWU6JExJTkVOTzogY2hlY2tpbmcgZm9yIFB1bHNl YXVkaW8gMC45LjIgb3IgbGF0ZXIiID4mNQ0KLStlY2hvICRFQ0hPX04gImNoZWNraW5nIGZvciBQ dWxzZWF1ZGlvIDAuOS4yIG9yIGxhdGVyLi4uICRFQ0hPX0MiID4mNjsgfQ0KLStpZiAkUEtHX0NP TkZJRyAtLWF0bGVhc3QtdmVyc2lvbiAwLjkuMiBsaWJwdWxzZS1zaW1wbGUgPi9kZXYvbnVsbCAy PiYxIDsgdGhlbg0KLSsgIFBPTFlQX0NGTEFHUz0iYCRQS0dfQ09ORklHIC0tY2ZsYWdzIGxpYnB1 bHNlLXNpbXBsZWAiDQotKyAgUE9MWVBfTElCQUREPSJgJFBLR19DT05GSUcgLS1saWJzLW9ubHkt bCBsaWJwdWxzZS1zaW1wbGVgIg0KLSsgIFBPTFlQX0xERkxBR1M9ImAkUEtHX0NPTkZJRyAtLWxp YnMtb25seS1MIGxpYnB1bHNlLXNpbXBsZWAiDQotICAgaGF2ZV9wb2x5cD15ZXMNCi0gICB7IGVj aG8gIiRhc19tZTokTElORU5POiByZXN1bHQ6IHllcyIgPiY1DQotIGVjaG8gIiR7RUNIT19UfXll cyIgPiY2OyB9DQpJbmRleDogYWtvZGUtcGx1Z2lucy1yZXNhbXBsZXIvTWFrZWZpbGUNCj09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT0NCi0tLSBha29kZS1wbHVnaW5zLXJlc2FtcGxlci9NYWtlZmlsZQkocmV2aXNpb24gMzI4 MzA5KQ0KKysrIGFrb2RlLXBsdWdpbnMtcmVzYW1wbGVyL01ha2VmaWxlCSh3b3JraW5nIGNvcHkp DQpAQCAtMSw3ICsxLDcgQEANCiAjIENyZWF0ZWQgYnk6IE1pY2hhZWwgTm90dGVicm9jayA8bG9m aUBGcmVlQlNELm9yZz4NCiAjICRGcmVlQlNEJA0KIA0KLVBPUlROQU1FPQlha29kZS1wbHVnaW5z LSR7UE9SVE5BTUVTVUZYfQ0KK1BPUlROQU1FPQlha29kZQ0KIFBPUlRWRVJTSU9OPQkyLjAuMg0K IFBPUlRFUE9DSD0JMQ0KIENBVEVHT1JJRVM9CWF1ZGlvIGtkZQ0KQEAgLTgsMTAgKzgsMTIgQEAN CiBNQVNURVJfU0lURVM9CWh0dHA6Ly93d3cua2RlLWFwcHMub3JnL0NPTlRFTlQvY29udGVudC1m aWxlcy8gXA0KIAkJJHtNQVNURVJfU0lURV9MT0NBTH0NCiBNQVNURVJfU0lURV9TVUJESVI9CWxh c3psb2YNCitQS0dOQU1FU1VGRklYPQktcGx1Z2lucy0ke1BPUlROQU1FU1VGWH0NCiBESVNUTkFN RT0JMzAzNzUtYWtvZGUtJHtQT1JUVkVSU0lPTn0NCiANCiBNQUlOVEFJTkVSPQlzd2hldHplbEBn bWFpbC5jb20NCiBDT01NRU5UPQlSZXNhbXBsZXIgcGx1Z2luIGZvciBha29kZQ0KKw0KIExJQ0VO U0U9CUxHUEwyMA0KIExJQ0VOU0VfRklMRT0JJHtXUktTUkN9L0NPUFlJTkcNCiANCkBAIC0xOSwy MSArMjEsMjMgQEANCiANCiBDT05GTElDVFM9CWtkZW11bHRpbWVkaWEtMy5bMS0zXSoNCiANCitQ QVRDSERJUj0JJHtNQVNURVJESVJ9Ly4uL2Frb2RlL2ZpbGVzDQorV1JLU1JDPQkJJHtXUktESVJ9 L2Frb2RlLSR7UE9SVFZFUlNJT059DQorQlVJTERfV1JLU1JDPQkke1dSS1NSQ30vYWtvZGUNCitJ TlNUQUxMX1dSS1NSQz0JJHtXUktTUkN9L2Frb2RlL3BsdWdpbnMvJHtQTFVHSU59DQorDQogUExV R0lOPQkJc3JjX3Jlc2FtcGxlcg0KIFBPUlROQU1FU1VGWD0JJHtQTFVHSU46Uy9fc2luay8vOlMv X2RlY29kZXIvLzpTL3NyY18vL30NCiANCiBOT19TVEFHRT0JeWVzDQogVVNFUz0JCWdtYWtlDQot VVNFX0FVVE9UT09MUz0JbGlibHRkbA0KLVVTRV9BVVRPVE9PTFM9CWxpYnRvb2wNCitVU0VfQVVU T1RPT0xTPQlsaWJsdGRsIGxpYnRvb2wNCiBVU0VfQlpJUDI9CXllcw0KLVVTRV9HQ0M9CWFueQ0K LVdSS1NSQz0JCSR7V1JLRElSfS9ha29kZS0ke1BPUlRWRVJTSU9OfQ0KIFVTRV9MRENPTkZJRz0J eWVzDQogDQotUExJU1RfRklMRVM9CWxpYi9saWJha29kZV9zcmNfcmVzYW1wbGVyLmEgXA0KLQkJ bGliL2xpYmFrb2RlX3NyY19yZXNhbXBsZXIubGEgXA0KLQkJbGliL2xpYmFrb2RlX3NyY19yZXNh bXBsZXIuc28NCitQTElTVF9GSUxFUz0JbGliL2xpYmFrb2RlXyR7UExVR0lOfS5hIFwNCisJCWxp Yi9saWJha29kZV8ke1BMVUdJTn0ubGEgXA0KKwkJbGliL2xpYmFrb2RlXyR7UExVR0lOfS5zbw0K IA0KIExERkxBR1MrPQktTCR7V1JLU1JDfS9ha29kZS9saWIvLmxpYnMNCiBDT05GSUdVUkVfQVJH Uys9LS13aXRoLWV4dHJhLWxpYnM9JHtMT0NBTEJBU0V9L2xpYiBcDQpAQCAtNDIsMTQgKzQ2LDEw IEBADQogcG9zdC1wYXRjaDoNCiAJQCR7U0VURU5WfSBUWj1VVEMgXA0KIAkke1RPVUNIfSAtdCAy MDA2MDcyMjIyMTcuMDEgJHtXUktTUkN9L2Frb2RlL2xpYi9ha29kZV9leHBvcnQuaC5pbg0KKwkk e1JFSU5QTEFDRV9DTUR9IC1lICdzfF5TVUJESVJTID0uKnxTVUJESVJTID0gbGliIHBsdWdpbnN8 ZycgXA0KKwkJJHtXUktTUkN9L2Frb2RlL01ha2VmaWxlLmluDQogDQogcHJlLWNvbmZpZ3VyZToN CiAJQCR7UkVJTlBMQUNFX0NNRH0gLWUgJ3NAJSVTVUJESVJTJSVAJHtQTFVHSU59QGcnICR7V1JL U1JDfS9ha29kZS9wbHVnaW5zL01ha2VmaWxlLmluDQogDQotZG8tYnVpbGQ6DQotCWNkICR7V1JL U1JDfS9ha29kZSAmJiAke0dNQUtFfQ0KLQ0KLWRvLWluc3RhbGw6DQotCWNkICR7V1JLU1JDfS9h a29kZS9wbHVnaW5zLyR7UExVR0lOfSAmJiAke0dNQUtFfSBpbnN0YWxsDQotDQogLmluY2x1ZGUg PGJzZC5wb3J0Lm1rPg0KSW5kZXg6IGFrb2RlLXBsdWdpbnMtcmVzYW1wbGVyL2ZpbGVzL3BhdGNo LWFrb2RlX01ha2VmaWxlLmluDQo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09DQotLS0gYWtvZGUtcGx1Z2lucy1yZXNhbXBs ZXIvZmlsZXMvcGF0Y2gtYWtvZGVfTWFrZWZpbGUuaW4JKHJldmlzaW9uIDMyODMwOSkNCisrKyBh a29kZS1wbHVnaW5zLXJlc2FtcGxlci9maWxlcy9wYXRjaC1ha29kZV9NYWtlZmlsZS5pbgkod29y a2luZyBjb3B5KQ0KQEAgLTEsMTEgKzAsMCBAQA0KLS0tLSBha29kZS9NYWtlZmlsZS5pbi5vcmln CVR1ZSBOb3YgMjkgMTc6NTE6MTkgMjAwNQ0KLSsrKyBha29kZS9NYWtlZmlsZS5pbglUdWUgTm92 IDI5IDE3OjUxOjA1IDIwMDUNCi1AQCAtMjQ3LDcgKzI0Nyw3IEBADQotIHVuc2VybWFrZV9lbmFi bGVfcGNoX0ZBTFNFID0gQHVuc2VybWFrZV9lbmFibGVfcGNoX0ZBTFNFQA0KLSB1bnNlcm1ha2Vf ZW5hYmxlX3BjaF9UUlVFID0gQHVuc2VybWFrZV9lbmFibGVfcGNoX1RSVUVADQotIGJpbl9TQ1JJ UFRTID0gYWtvZGUtY29uZmlnDQotLVNVQkRJUlMgPSBsaWIgcGx1Z2lucyBha29kZXBsYXkNCi0r U1VCRElSUyA9IGxpYiBwbHVnaW5zDQotICM+LSBhbGw6IGFsbC1yZWN1cnNpdmUNCi0gIz4rIDEN Ci0gYWxsOiBkb2NzLWFtICBhbGwtcmVjdXJzaXZlDQpJbmRleDogYWtvZGUtcGx1Z2lucy1yZXNh bXBsZXIvZmlsZXMvcGF0Y2gtYWtvZGVfcGx1Z2lucy1NYWtlZmlsZS5pbg0KPT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQ0K LS0tIGFrb2RlLXBsdWdpbnMtcmVzYW1wbGVyL2ZpbGVzL3BhdGNoLWFrb2RlX3BsdWdpbnMtTWFr ZWZpbGUuaW4JKHJldmlzaW9uIDMyODMwOSkNCisrKyBha29kZS1wbHVnaW5zLXJlc2FtcGxlci9m aWxlcy9wYXRjaC1ha29kZV9wbHVnaW5zLU1ha2VmaWxlLmluCSh3b3JraW5nIGNvcHkpDQpAQCAt MSwxNSArMCwwIEBADQotLS0tIGFrb2RlL3BsdWdpbnMvTWFrZWZpbGUuaW4ub3JpZwlUdWUgTm92 IDI5IDE4OjEwOjIwIDIwMDUNCi0rKysgYWtvZGUvcGx1Z2lucy9NYWtlZmlsZS5pbglUdWUgTm92 IDI5IDE4OjEwOjQ1IDIwMDUNCi1AQCAtMjUyLDExICsyNTIsNyBAQA0KLSBAaW5jbHVkZV9zdW5f c2lua19UUlVFQEFLT0RFX1NVTl9TSU5LID0gc3VuX3NpbmsNCi0gQGluY2x1ZGVfamFja19zaW5r X1RSVUVAQUtPREVfSkFDS19TSU5LID0gamFja19zaW5rDQotIEBpbmNsdWRlX3BvbHlwX3Npbmtf VFJVRUBBS09ERV9QT0xZUF9TSU5LID0gcG9seXBfc2luaw0KLS1TVUJESVJTID0gJChBS09ERV9N UENfREVDT0RFUikgJChBS09ERV9YSVBIX0RFQ09ERVIpIFwNCi0tICAgICAgICAgJChBS09ERV9N UEVHX0RFQ09ERVIpICQoQUtPREVfRkZNUEVHX0RFQ09ERVIpIFwNCi0tICAgICAgICAgJChBS09E RV9BTFNBX1NJTkspICQoQUtPREVfT1NTX1NJTkspICQoQUtPREVfU1VOX1NJTkspIFwNCi0tICAg ICAgICAgJChBS09ERV9KQUNLX1NJTkspICQoQUtPREVfUE9MWVBfU0lOSykgXA0KLS0gICAgICAg ICAkKEFLT0RFX1NSQ19SRVNBTVBMRVIpDQotK1NVQkRJUlMgPSAlJVNVQkRJUlMlJQ0KLSANCi0g Iz4tIGFsbDogYWxsLXJlY3Vyc2l2ZQ0KLSAjPisgMQ0KSW5kZXg6IGFrb2RlLXBsdWdpbnMteGlw aC9NYWtlZmlsZQ0KPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PQ0KLS0tIGFrb2RlLXBsdWdpbnMteGlwaC9NYWtlZmlsZQko cmV2aXNpb24gMzI4MzA5KQ0KKysrIGFrb2RlLXBsdWdpbnMteGlwaC9NYWtlZmlsZQkod29ya2lu ZyBjb3B5KQ0KQEAgLTEsNyArMSw3IEBADQogIyBDcmVhdGVkIGJ5OiBNaWNoYWVsIE5vdHRlYnJv Y2sgPGxvZmlARnJlZUJTRC5vcmc+DQogIyAkRnJlZUJTRCQNCiANCi1QT1JUTkFNRT0JYWtvZGUt cGx1Z2lucy0ke1BPUlROQU1FU1VGWH0NCitQT1JUTkFNRT0JYWtvZGUNCiBQT1JUVkVSU0lPTj0J Mi4wLjINCiBQT1JUUkVWSVNJT049CTUNCiBQT1JURVBPQ0g9CTENCkBAIC05LDEwICs5LDEyIEBA DQogTUFTVEVSX1NJVEVTPQlodHRwOi8vd3d3LmtkZS1hcHBzLm9yZy9DT05URU5UL2NvbnRlbnQt ZmlsZXMvIFwNCiAJCSR7TUFTVEVSX1NJVEVfTE9DQUx9DQogTUFTVEVSX1NJVEVfU1VCRElSPQls YXN6bG9mDQorUEtHTkFNRVNVRkZJWD0JLXBsdWdpbnMtJHtQT1JUTkFNRVNVRlh9DQogRElTVE5B TUU9CTMwMzc1LWFrb2RlLSR7UE9SVFZFUlNJT059DQogDQogTUFJTlRBSU5FUj0Jc3doZXR6ZWxA Z21haWwuY29tDQogQ09NTUVOVD0JRkxBQy9TcGVleC9Wb3JiaXMgZGVjb2RlciBwbHVnaW4gZm9y IGFrb2RlDQorDQogTElDRU5TRT0JTEdQTDIwDQogTElDRU5TRV9GSUxFPQkke1dSS1NSQ30vQ09Q WUlORw0KIA0KQEAgLTIzLDIxICsyNSwyMyBAQA0KIA0KIENPTkZMSUNUUz0Ja2RlbXVsdGltZWRp YS0zLlsxLTNdKg0KIA0KK1BBVENIRElSPQkke01BU1RFUkRJUn0vLi4vYWtvZGUvZmlsZXMNCitX UktTUkM9CQkke1dSS0RJUn0vYWtvZGUtJHtQT1JUVkVSU0lPTn0NCitCVUlMRF9XUktTUkM9CSR7 V1JLU1JDfS9ha29kZQ0KK0lOU1RBTExfV1JLU1JDPQkke1dSS1NSQ30vYWtvZGUvcGx1Z2lucy8k e1BMVUdJTn0NCisNCiBQTFVHSU49CQl4aXBoX2RlY29kZXINCiBQT1JUTkFNRVNVRlg9CSR7UExV R0lOOlMvX3NpbmsvLzpTL19kZWNvZGVyLy86Uy9zcmNfLy99DQogDQogTk9fU1RBR0U9CXllcw0K IFVTRVM9CQlnbWFrZQ0KLVVTRV9BVVRPVE9PTFM9CWxpYmx0ZGwNCi1VU0VfQVVUT1RPT0xTPQls aWJ0b29sDQorVVNFX0FVVE9UT09MUz0JbGlibHRkbCBsaWJ0b29sDQogVVNFX0JaSVAyPQl5ZXMN Ci1VU0VfR0NDPQlhbnkNCi1XUktTUkM9CQkke1dSS0RJUn0vYWtvZGUtJHtQT1JUVkVSU0lPTn0N CiBVU0VfTERDT05GSUc9CXllcw0KIA0KLVBMSVNUX0ZJTEVTPQlsaWIvbGliYWtvZGVfeGlwaF9k ZWNvZGVyLmEgXA0KLQkJbGliL2xpYmFrb2RlX3hpcGhfZGVjb2Rlci5sYSBcDQotCQlsaWIvbGli YWtvZGVfeGlwaF9kZWNvZGVyLnNvDQorUExJU1RfRklMRVM9CWxpYi9saWJha29kZV8ke1BMVUdJ Tn0uYSBcDQorCQlsaWIvbGliYWtvZGVfJHtQTFVHSU59LmxhIFwNCisJCWxpYi9saWJha29kZV8k e1BMVUdJTn0uc28NCiANCiBMREZMQUdTKz0JLUwke1dSS1NSQ30vYWtvZGUvbGliLy5saWJzDQog Q09ORklHVVJFX0FSR1MrPS0td2l0aC1leHRyYS1saWJzPSR7TE9DQUxCQVNFfS9saWIgXA0KQEAg LTQ2LDE0ICs1MCwxMCBAQA0KIHBvc3QtcGF0Y2g6DQogCUAke1NFVEVOVn0gVFo9VVRDIFwNCiAJ JHtUT1VDSH0gLXQgMjAwNjA3MjIyMjE3LjAxICR7V1JLU1JDfS9ha29kZS9saWIvYWtvZGVfZXhw b3J0LmguaW4NCisJJHtSRUlOUExBQ0VfQ01EfSAtZSAnc3xeU1VCRElSUyA9Lip8U1VCRElSUyA9 IGxpYiBwbHVnaW5zfGcnIFwNCisJCSR7V1JLU1JDfS9ha29kZS9NYWtlZmlsZS5pbg0KIA0KIHBy ZS1jb25maWd1cmU6DQogCUAke1JFSU5QTEFDRV9DTUR9IC1lICdzQCUlU1VCRElSUyUlQCR7UExV R0lOfUBnJyAke1dSS1NSQ30vYWtvZGUvcGx1Z2lucy9NYWtlZmlsZS5pbg0KIA0KLWRvLWJ1aWxk Og0KLQljZCAke1dSS1NSQ30vYWtvZGUgJiYgJHtHTUFLRX0NCi0NCi1kby1pbnN0YWxsOg0KLQlj ZCAke1dSS1NSQ30vYWtvZGUvcGx1Z2lucy8ke1BMVUdJTn0gJiYgJHtHTUFLRX0gaW5zdGFsbA0K LQ0KIC5pbmNsdWRlIDxic2QucG9ydC5taz4NCkluZGV4OiBha29kZS1wbHVnaW5zLXhpcGgvZmls ZXMvcGF0Y2gtYWtvZGVfTWFrZWZpbGUuaW4NCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0NCi0tLSBha29kZS1wbHVnaW5z LXhpcGgvZmlsZXMvcGF0Y2gtYWtvZGVfTWFrZWZpbGUuaW4JKHJldmlzaW9uIDMyODMwOSkNCisr KyBha29kZS1wbHVnaW5zLXhpcGgvZmlsZXMvcGF0Y2gtYWtvZGVfTWFrZWZpbGUuaW4JKHdvcmtp bmcgY29weSkNCkBAIC0xLDExICswLDAgQEANCi0tLS0gYWtvZGUvTWFrZWZpbGUuaW4ub3JpZwlU dWUgTm92IDI5IDE3OjUxOjE5IDIwMDUNCi0rKysgYWtvZGUvTWFrZWZpbGUuaW4JVHVlIE5vdiAy OSAxNzo1MTowNSAyMDA1DQotQEAgLTI0Nyw3ICsyNDcsNyBAQA0KLSB1bnNlcm1ha2VfZW5hYmxl X3BjaF9GQUxTRSA9IEB1bnNlcm1ha2VfZW5hYmxlX3BjaF9GQUxTRUANCi0gdW5zZXJtYWtlX2Vu YWJsZV9wY2hfVFJVRSA9IEB1bnNlcm1ha2VfZW5hYmxlX3BjaF9UUlVFQA0KLSBiaW5fU0NSSVBU UyA9IGFrb2RlLWNvbmZpZw0KLS1TVUJESVJTID0gbGliIHBsdWdpbnMgYWtvZGVwbGF5DQotK1NV QkRJUlMgPSBsaWIgcGx1Z2lucw0KLSAjPi0gYWxsOiBhbGwtcmVjdXJzaXZlDQotICM+KyAxDQot IGFsbDogZG9jcy1hbSAgYWxsLXJlY3Vyc2l2ZQ0KSW5kZXg6IGFrb2RlLXBsdWdpbnMteGlwaC9m aWxlcy9wYXRjaC1ha29kZV9wbHVnaW5zLU1ha2VmaWxlLmluDQo9PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09DQotLS0gYWtv ZGUtcGx1Z2lucy14aXBoL2ZpbGVzL3BhdGNoLWFrb2RlX3BsdWdpbnMtTWFrZWZpbGUuaW4JKHJl dmlzaW9uIDMyODMwOSkNCisrKyBha29kZS1wbHVnaW5zLXhpcGgvZmlsZXMvcGF0Y2gtYWtvZGVf cGx1Z2lucy1NYWtlZmlsZS5pbgkod29ya2luZyBjb3B5KQ0KQEAgLTEsMTUgKzAsMCBAQA0KLS0t LSBha29kZS9wbHVnaW5zL01ha2VmaWxlLmluLm9yaWcJVHVlIE5vdiAyOSAxODoxMDoyMCAyMDA1 DQotKysrIGFrb2RlL3BsdWdpbnMvTWFrZWZpbGUuaW4JVHVlIE5vdiAyOSAxODoxMDo0NSAyMDA1 DQotQEAgLTI1MiwxMSArMjUyLDcgQEANCi0gQGluY2x1ZGVfc3VuX3NpbmtfVFJVRUBBS09ERV9T VU5fU0lOSyA9IHN1bl9zaW5rDQotIEBpbmNsdWRlX2phY2tfc2lua19UUlVFQEFLT0RFX0pBQ0tf U0lOSyA9IGphY2tfc2luaw0KLSBAaW5jbHVkZV9wb2x5cF9zaW5rX1RSVUVAQUtPREVfUE9MWVBf U0lOSyA9IHBvbHlwX3NpbmsNCi0tU1VCRElSUyA9ICQoQUtPREVfTVBDX0RFQ09ERVIpICQoQUtP REVfWElQSF9ERUNPREVSKSBcDQotLSAgICAgICAgICQoQUtPREVfTVBFR19ERUNPREVSKSAkKEFL T0RFX0ZGTVBFR19ERUNPREVSKSBcDQotLSAgICAgICAgICQoQUtPREVfQUxTQV9TSU5LKSAkKEFL T0RFX09TU19TSU5LKSAkKEFLT0RFX1NVTl9TSU5LKSBcDQotLSAgICAgICAgICQoQUtPREVfSkFD S19TSU5LKSAkKEFLT0RFX1BPTFlQX1NJTkspIFwNCi0tICAgICAgICAgJChBS09ERV9TUkNfUkVT QU1QTEVSKQ0KLStTVUJESVJTID0gJSVTVUJESVJTJSUNCi0gDQotICM+LSBhbGw6IGFsbC1yZWN1 cnNpdmUNCi0gIz4rIDENCkluZGV4OiBha29kZS1wbHVnaW5zLXhpcGgvZmlsZXMvcGF0Y2gtYWtv ZGVfcGx1Z2luc194aXBoX19kZWNvZGVyX2ZsYWMxMTNfX2RlY29kZXIuY3BwDQo9PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 DQotLS0gYWtvZGUtcGx1Z2lucy14aXBoL2ZpbGVzL3BhdGNoLWFrb2RlX3BsdWdpbnNfeGlwaF9f ZGVjb2Rlcl9mbGFjMTEzX19kZWNvZGVyLmNwcAkocmV2aXNpb24gMzI4MzA5KQ0KKysrIGFrb2Rl LXBsdWdpbnMteGlwaC9maWxlcy9wYXRjaC1ha29kZV9wbHVnaW5zX3hpcGhfX2RlY29kZXJfZmxh YzExM19fZGVjb2Rlci5jcHAJKHdvcmtpbmcgY29weSkNCkBAIC0xLDExICswLDAgQEANCi0tLS0g YWtvZGUvcGx1Z2lucy94aXBoX2RlY29kZXIvZmxhYzExM19kZWNvZGVyLmNwcC5vcmlnCTIwMDgt MDMtMjcgMTY6MTE6MjYuMDAwMDAwMDAwICswMTAwDQotKysrIGFrb2RlL3BsdWdpbnMveGlwaF9k ZWNvZGVyL2ZsYWMxMTNfZGVjb2Rlci5jcHAJMjAwOC0wMy0yNyAxNjoxMTo0Ni4wMDAwMDAwMDAg KzAxMDANCi1AQCAtMTA4LDcgKzEwOCw3IEBAIHN0cnVjdCBGTEFDRGVjb2Rlcjo6cHJpdmF0ZV9k YXRhIHsNCi0gc3RhdGljIEZMQUNfX1N0cmVhbURlY29kZXJSZWFkU3RhdHVzIGZsYWNfcmVhZF9j YWxsYmFjaygNCi0gICAgICAgICBjb25zdCBGTEFDX19TdHJlYW1EZWNvZGVyICosDQotICAgICAg ICAgRkxBQ19fYnl0ZSBidWZmZXJbXSwNCi0tICAgICAgICB1bnNpZ25lZCAqYnl0ZXMsDQotKyAg ICAgICAgc2l6ZV90ICpieXRlcywNCi0gICAgICAgICB2b2lkICpjbGllbnRfZGF0YSkNCi0gew0K LSAgICAgRkxBQ0RlY29kZXI6OnByaXZhdGVfZGF0YSAqZGF0YSA9IChGTEFDRGVjb2Rlcjo6cHJp dmF0ZV9kYXRhKiljbGllbnRfZGF0YTsNCkluZGV4OiBha29kZS1wbHVnaW5zLXhpcGgvZmlsZXMv cGF0Y2gtYWtvZGVfcGx1Z2luc194aXBoX19kZWNvZGVyX3NwZWV4X19kZWNvZGVyLmNwcA0KPT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PQ0KLS0tIGFrb2RlLXBsdWdpbnMteGlwaC9maWxlcy9wYXRjaC1ha29kZV9wbHVnaW5z X3hpcGhfX2RlY29kZXJfc3BlZXhfX2RlY29kZXIuY3BwCShyZXZpc2lvbiAzMjgzMDkpDQorKysg YWtvZGUtcGx1Z2lucy14aXBoL2ZpbGVzL3BhdGNoLWFrb2RlX3BsdWdpbnNfeGlwaF9fZGVjb2Rl cl9zcGVleF9fZGVjb2Rlci5jcHAJKHdvcmtpbmcgY29weSkNCkBAIC0xLDIwICswLDAgQEANCi0N Ci0kRnJlZUJTRCQNCi0NCi0tLS0gYWtvZGUvcGx1Z2lucy94aXBoX2RlY29kZXIvc3BlZXhfZGVj b2Rlci5jcHAub3JpZw0KLSsrKyBha29kZS9wbHVnaW5zL3hpcGhfZGVjb2Rlci9zcGVleF9kZWNv ZGVyLmNwcA0KLUBAIC0yNSwxMCArMjUsMTAgQEANCi0gZXh0ZXJuICJDIiB7DQotICNpbmNsdWRl IDxzdHJpbmcuaD4NCi0gI2luY2x1ZGUgPHN0ZGxpYi5oPg0KLS0jaW5jbHVkZSA8c3BlZXguaD4N Ci0tI2luY2x1ZGUgPHNwZWV4X2hlYWRlci5oPg0KLS0jaW5jbHVkZSA8c3BlZXhfY2FsbGJhY2tz Lmg+DQotLSNpbmNsdWRlIDxzcGVleF9zdGVyZW8uaD4NCi0rI2luY2x1ZGUgPHNwZWV4L3NwZWV4 Lmg+DQotKyNpbmNsdWRlIDxzcGVleC9zcGVleF9oZWFkZXIuaD4NCi0rI2luY2x1ZGUgPHNwZWV4 L3NwZWV4X2NhbGxiYWNrcy5oPg0KLSsjaW5jbHVkZSA8c3BlZXgvc3BlZXhfc3RlcmVvLmg+DQot ICNpbmNsdWRlIDxvZ2cvb2dnLmg+DQotIH0NCi0gDQpJbmRleDogYWtvZGUtcGx1Z2lucy14aXBo L2ZpbGVzL3BhdGNoLWNvbmZpZ3VyZQ0KPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQ0KLS0tIGFrb2RlLXBsdWdpbnMteGlw aC9maWxlcy9wYXRjaC1jb25maWd1cmUJKHJldmlzaW9uIDMyODMwOSkNCisrKyBha29kZS1wbHVn aW5zLXhpcGgvZmlsZXMvcGF0Y2gtY29uZmlndXJlCSh3b3JraW5nIGNvcHkpDQpAQCAtMSwzMSAr MCwwIEBADQotDQotJEZyZWVCU0QkDQotDQotLS0tIGNvbmZpZ3VyZS5vcmlnDQotKysrIGNvbmZp Z3VyZQ0KLUBAIC0yMjIwMCw4ICsyMjIwMCw4IEBADQotIGNhdCA+PmNvbmZ0ZXN0LiRhY19leHQg PDxfQUNFT0YNCi0gLyogZW5kIGNvbmZkZWZzLmguICAqLw0KLSANCi0tICAgICAgICAgICAgICAg ICNpbmNsdWRlIDxzcGVleC5oPg0KLS0gICAgICAgICAgICAgICAgI2luY2x1ZGUgPHNwZWV4X2Nh bGxiYWNrcy5oPg0KLSsgICAgICAgICAgICAgICAgI2luY2x1ZGUgPHNwZWV4L3NwZWV4Lmg+DQot KyAgICAgICAgICAgICAgICAjaW5jbHVkZSA8c3BlZXgvc3BlZXhfY2FsbGJhY2tzLmg+DQotICAg ICAgICAgICAgICAgICAjaW5jbHVkZSA8b2dnL29nZy5oPg0KLSANCi0gaW50DQotQEAgLTIyMzUw LDEwICsyMjM1MCwxMCBAQA0KLSBjYXQgPj5jb25mdGVzdC4kYWNfZXh0IDw8X0FDRU9GDQotIC8q IGVuZCBjb25mZGVmcy5oLiAgKi8NCi0gDQotLSAgICAgICAgICAgICAgICAjaW5jbHVkZSA8c3Bl ZXguaD4NCi0tICAgICAgICAgICAgICAgICNpbmNsdWRlIDxzcGVleF9jYWxsYmFja3MuaD4NCi0t ICAgICAgICAgICAgICAgICNpbmNsdWRlIDxzcGVleF9lY2hvLmg+DQotLSAgICAgICAgICAgICAg ICAjaW5jbHVkZSA8c3BlZXhfcHJlcHJvY2Vzcy5oPg0KLSsgICAgICAgICAgICAgICAgI2luY2x1 ZGUgPHNwZWV4L3NwZWV4Lmg+DQotKyAgICAgICAgICAgICAgICAjaW5jbHVkZSA8c3BlZXgvc3Bl ZXhfY2FsbGJhY2tzLmg+DQotKyAgICAgICAgICAgICAgICAjaW5jbHVkZSA8c3BlZXgvc3BlZXhf ZWNoby5oPg0KLSsgICAgICAgICAgICAgICAgI2luY2x1ZGUgPHNwZWV4L3NwZWV4X3ByZXByb2Nl c3MuaD4NCi0gICAgICAgICAgICAgICAgICNpbmNsdWRlIDxvZ2cvb2dnLmg+DQotIA0KLSBpbnQN Cg== --047d7bdc9a48daa03204e743d276-- From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 07:00:02 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 5906BC92 for ; Thu, 26 Sep 2013 07:00:02 +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 386AF2164 for ; Thu, 26 Sep 2013 07:00:02 +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 r8Q7024J020518 for ; Thu, 26 Sep 2013 07:00:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8Q702if020517; Thu, 26 Sep 2013 07:00:02 GMT (envelope-from gnats) Resent-Date: Thu, 26 Sep 2013 07:00:02 GMT Resent-Message-Id: <201309260700.r8Q702if020517@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, Sten Spans Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 2779FB06 for ; Thu, 26 Sep 2013 06:54:45 +0000 (UTC) (envelope-from sten@mx1.blinkenlights.nl) Received: from mx1.blinkenlights.nl (mx1.blinkenlights.nl [IPv6:2a02:898:17:8000::25]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DF926211F for ; Thu, 26 Sep 2013 06:54:44 +0000 (UTC) Received: by mx1.blinkenlights.nl (Postfix, from userid 1001) id 9CA8B1141C; Thu, 26 Sep 2013 08:54:41 +0200 (CEST) Message-Id: <20130926065441.9CA8B1141C@mx1.blinkenlights.nl> Date: Thu, 26 Sep 2013 08:54:41 +0200 (CEST) From: Sten Spans To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/182397: net/ladvd: fix undeclared _POSIX_HOST_NAME_MAX on HEAD X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Sten Spans List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Sep 2013 07:00:02 -0000 >Number: 182397 >Category: ports >Synopsis: net/ladvd: fix undeclared _POSIX_HOST_NAME_MAX on HEAD >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Sep 26 07:00:01 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Sten Spans >Release: FreeBSD 9.1-RELEASE-p4 amd64 >Organization: >Environment: System: FreeBSD towel.blinkenlights.nl 9.1-RELEASE-p4 FreeBSD 9.1-RELEASE-p4 #0: Mon Jun 17 11:42:37 UTC 2013 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: [REL - head-amd64-default][net/ladvd] Failed for ladvd-1.0.2 in build You are receiving this mail as a port that you maintain is failing to build on the FreeBSD package build server. Please investigate the failure and submit a PR to fix build. Maintainer: sten@blinkenlights.nl Last committer: bapt@FreeBSD.org Ident: $FreeBSD: head/net/ladvd/Makefile 327755 2013-09-20 22:10:23Z bapt $ Log URL: http://beefy2.isc.freebsd.org/bulk/head-amd64-default/2013-09-26_00h44m15s/l ogs/ladvd-1.0.2.log >How-To-Repeat: >Fix: Add limits.h include to cli.c diff -Nru ladvd.orig/Makefile ladvd/Makefile --- ladvd.orig/Makefile 2012-11-17 07:00:04.000000000 +0100 +++ ladvd/Makefile 2013-09-26 08:49:24.000000000 +0200 @@ -7,6 +7,7 @@ PORTNAME= ladvd PORTVERSION= 1.0.2 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= GOOGLE_CODE \ http://blinkenlights.nl/software/ladvd/ diff -Nru ladvd.orig/files/patch-limits.h ladvd/files/patch-limits.h --- ladvd.orig/files/patch-limits.h 1970-01-01 01:00:00.000000000 +0100 +++ ladvd/files/patch-limits.h 2013-09-26 08:47:25.000000000 +0200 @@ -0,0 +1,10 @@ +--- src/cli.c.orig 2013-09-26 08:46:08.000000000 +0200 ++++ src/cli.c 2013-09-26 08:46:22.000000000 +0200 +@@ -24,6 +24,7 @@ + #include + #include + #include ++#include + + extern struct proto protos[]; + int status = EXIT_SUCCESS; >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 07:20: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 EF0ED86B for ; Thu, 26 Sep 2013 07:20: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 B0E5522D0 for ; Thu, 26 Sep 2013 07:20: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 r8Q7K0eh023409 for ; Thu, 26 Sep 2013 07:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8Q7K0mj023408; Thu, 26 Sep 2013 07:20:00 GMT (envelope-from gnats) Resent-Date: Thu, 26 Sep 2013 07:20:00 GMT Resent-Message-Id: <201309260720.r8Q7K0mj023408@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, Yasuhiro KIMURA Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 7F3E7333 for ; Thu, 26 Sep 2013 07:11:34 +0000 (UTC) (envelope-from yasu@home.utahime.org) Received: from gate.utahime.jp (ipq210.utahime.jp [183.180.29.210]) by mx1.freebsd.org (Postfix) with ESMTP id 4F8142225 for ; Thu, 26 Sep 2013 07:11:33 +0000 (UTC) Received: from eastasia.home.utahime.org (mail.home.utahime.org [192.168.174.1]) by gate.utahime.jp (Postfix) with ESMTP id AB5CD61FAE; Thu, 26 Sep 2013 16:11:32 +0900 (JST) Received: from eastasia.home.utahime.org (localhost [127.0.0.1]) by localhost-backdoor.home.utahime.org (Postfix) with ESMTP id 89F3E4E654; Thu, 26 Sep 2013 16:11:32 +0900 (JST) Received: from rolling-vm-freebsd1.home.utahime.org (rolling-vm-freebsd1.home.utahime.org [192.168.174.51]) by eastasia.home.utahime.org (Postfix) with ESMTP id 6EAC24E62F; Thu, 26 Sep 2013 16:11:32 +0900 (JST) Received: by rolling-vm-freebsd1.home.utahime.org (Postfix, from userid 1000) id 6A3741C2B11; Thu, 26 Sep 2013 16:11:32 +0900 (JST) Message-Id: <20130926071132.6A3741C2B11@rolling-vm-freebsd1.home.utahime.org> Date: Thu, 26 Sep 2013 16:11:32 +0900 (JST) From: Yasuhiro KIMURA To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/182398: [MAINTAINER] japanese/mecab-ipadic: add staging support 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: Thu, 26 Sep 2013 07:20:01 -0000 >Number: 182398 >Category: ports >Synopsis: [MAINTAINER] japanese/mecab-ipadic: add staging support >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Sep 26 07:20:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Yasuhiro KIMURA >Release: FreeBSD 9.1-RELEASE-p7 amd64 >Organization: >Environment: System: FreeBSD xxxx 9.1-RELEASE-p7 FreeBSD 9.1-RELEASE-p7 #0 r255449: Tue Sep 10 22:52:11 JST 2013 xxxx amd64 >Description: Add staging support. >How-To-Repeat: >Fix: --- patch-ja-mecab-ipadic begins here --- Index: Makefile =================================================================== --- Makefile (revision 328328) +++ Makefile (working copy) @@ -33,7 +33,6 @@ SHIFTJIS_DESC= Use SHIFT-JIS as dictionary charset. UTF8_DESC= Use UTF-8 as dictionary charset. -NO_STAGE= yes .include .if ${PORT_OPTIONS:MEUCJP} --- patch-ja-mecab-ipadic ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 07:20:01 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 E9AED86A for ; Thu, 26 Sep 2013 07:20: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 C6EA222D3 for ; Thu, 26 Sep 2013 07:20: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 r8Q7K0hL023457 for ; Thu, 26 Sep 2013 07:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8Q7K0N3023446; Thu, 26 Sep 2013 07:20:00 GMT (envelope-from gnats) Resent-Date: Thu, 26 Sep 2013 07:20:00 GMT Resent-Message-Id: <201309260720.r8Q7K0N3023446@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, Yasuhiro KIMURA Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 9DF236C7 for ; Thu, 26 Sep 2013 07:18:23 +0000 (UTC) (envelope-from yasu@home.utahime.org) Received: from gate.utahime.jp (ipq210.utahime.jp [183.180.29.210]) by mx1.freebsd.org (Postfix) with ESMTP id 6E1412292 for ; Thu, 26 Sep 2013 07:18:23 +0000 (UTC) Received: from eastasia.home.utahime.org (eastasia.home.utahime.org [192.168.174.1]) by gate.utahime.jp (Postfix) with ESMTP id B097461F9D; Thu, 26 Sep 2013 16:18:21 +0900 (JST) Received: from eastasia.home.utahime.org (localhost [127.0.0.1]) by localhost-backdoor.home.utahime.org (Postfix) with ESMTP id 859DA4E653; Thu, 26 Sep 2013 16:18:21 +0900 (JST) Received: from rolling-vm-freebsd1.home.utahime.org (rolling-vm-freebsd1.home.utahime.org [192.168.174.51]) by eastasia.home.utahime.org (Postfix) with ESMTP id 5FAB54E62F; Thu, 26 Sep 2013 16:18:21 +0900 (JST) Received: by rolling-vm-freebsd1.home.utahime.org (Postfix, from userid 1000) id 491C61C2B10; Thu, 26 Sep 2013 16:18:21 +0900 (JST) Message-Id: <20130926071821.491C61C2B10@rolling-vm-freebsd1.home.utahime.org> Date: Thu, 26 Sep 2013 16:18:21 +0900 (JST) From: Yasuhiro KIMURA To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/182399: [MAINTAINER] mail/c-sig: add staging support 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: Thu, 26 Sep 2013 07:20:01 -0000 >Number: 182399 >Category: ports >Synopsis: [MAINTAINER] mail/c-sig: add staging support >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Sep 26 07:20:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Yasuhiro KIMURA >Release: FreeBSD 9.1-RELEASE-p7 amd64 >Organization: >Environment: System: FreeBSD xxxx 9.1-RELEASE-p7 FreeBSD 9.1-RELEASE-p7 #0 r255449: Tue Sep 10 22:52:11 JST 2013 xxxx amd64 >Description: Add staging support. >How-To-Repeat: >Fix: --- patch-c-sig begins here --- Index: Makefile =================================================================== --- Makefile (revision 328328) +++ Makefile (working copy) @@ -23,7 +23,6 @@ LISPDIR= ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME} -NO_STAGE= yes .include do-build: @@ -30,12 +29,12 @@ cd ${WRKSRC}; ${EMACS_CMD} -batch -q -f batch-byte-compile c-sig.el do-install: - ${MKDIR} ${LISPDIR} - ${INSTALL_DATA} ${WRKSRC}/c-sig.el* ${LISPDIR} + ${MKDIR} ${STAGEDIR}${LISPDIR} + ${INSTALL_DATA} ${WRKSRC}/c-sig.el* ${STAGEDIR}${LISPDIR} .if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${DOCSDIR} + ${MKDIR} ${STAGEDIR}${DOCSDIR} .for file in c-sig-eng.faq c-sig-eng.man c-sig-jp.faq c-sig-jp.man - ${INSTALL_MAN} ${WRKSRC}/${file} ${DOCSDIR} + ${INSTALL_MAN} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR} .endfor .endif --- patch-c-sig ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 07:30:01 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 5E19AD34 for ; Thu, 26 Sep 2013 07:30:01 +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 20E422394 for ; Thu, 26 Sep 2013 07:30:01 +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 r8Q7U0Gp025864 for ; Thu, 26 Sep 2013 07: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 r8Q7U0j6025863; Thu, 26 Sep 2013 07:30:00 GMT (envelope-from gnats) Resent-Date: Thu, 26 Sep 2013 07:30:00 GMT Resent-Message-Id: <201309260730.r8Q7U0j6025863@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, Yasuhiro KIMURA 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 A8BC5BD6 for ; Thu, 26 Sep 2013 07:25:36 +0000 (UTC) (envelope-from yasu@home.utahime.org) Received: from gate.utahime.jp (ipq210.utahime.jp [183.180.29.210]) by mx1.freebsd.org (Postfix) with ESMTP id 786C62356 for ; Thu, 26 Sep 2013 07:25:36 +0000 (UTC) Received: from eastasia.home.utahime.org (mail.home.utahime.org [192.168.174.1]) by gate.utahime.jp (Postfix) with ESMTP id 887CD61FAE; Thu, 26 Sep 2013 16:25:35 +0900 (JST) Received: from eastasia.home.utahime.org (localhost [127.0.0.1]) by localhost-backdoor.home.utahime.org (Postfix) with ESMTP id 674584E654; Thu, 26 Sep 2013 16:25:35 +0900 (JST) Received: from rolling-vm-freebsd1.home.utahime.org (rolling-vm-freebsd1.home.utahime.org [192.168.174.51]) by eastasia.home.utahime.org (Postfix) with ESMTP id 4C47F4E62F; Thu, 26 Sep 2013 16:25:35 +0900 (JST) Received: by rolling-vm-freebsd1.home.utahime.org (Postfix, from userid 1000) id 481131C2B12; Thu, 26 Sep 2013 16:25:35 +0900 (JST) Message-Id: <20130926072535.481131C2B12@rolling-vm-freebsd1.home.utahime.org> Date: Thu, 26 Sep 2013 16:25:35 +0900 (JST) From: Yasuhiro KIMURA To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/182400: [MAINTAINER] mail/py-authres: add staging support 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: Thu, 26 Sep 2013 07:30:01 -0000 >Number: 182400 >Category: ports >Synopsis: [MAINTAINER] mail/py-authres: add staging support >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Sep 26 07:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Yasuhiro KIMURA >Release: FreeBSD 9.1-RELEASE-p7 amd64 >Organization: >Environment: System: FreeBSD xxxx 9.1-RELEASE-p7 FreeBSD 9.1-RELEASE-p7 #0 r255449: Tue Sep 10 22:52:11 JST 2013 xxxx amd64 >Description: Add staging support. >How-To-Repeat: >Fix: --- patch-py-authres begins here --- Index: Makefile =================================================================== --- Makefile (revision 328328) +++ Makefile (working copy) @@ -21,13 +21,12 @@ PORTDOCS= CHANGES README -NO_STAGE= yes .include post-install: .if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${DOCSDIR}/ - cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}/ + ${MKDIR} ${STAGEDIR}${DOCSDIR} + cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR} .endif .include --- patch-py-authres ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 07:30:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id C2137D66; Thu, 26 Sep 2013 07:30:09 +0000 (UTC) (envelope-from edwin@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 984E12398; Thu, 26 Sep 2013 07:30:09 +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 r8Q7U9Cc025996; Thu, 26 Sep 2013 07:30:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8Q7U92X025995; Thu, 26 Sep 2013 07:30:09 GMT (envelope-from edwin) Date: Thu, 26 Sep 2013 07:30:09 GMT Message-Id: <201309260730.r8Q7U92X025995@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182400: [MAINTAINER] mail/py-authres: add staging support 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: Thu, 26 Sep 2013 07:30:09 -0000 Synopsis: [MAINTAINER] mail/py-authres: add staging support Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Thu Sep 26 07:30:09 UTC 2013 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182400 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 08:30:02 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 877EA98A for ; Thu, 26 Sep 2013 08:30:02 +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 5B47527CA for ; Thu, 26 Sep 2013 08:30:02 +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 r8Q8U1XF036535 for ; Thu, 26 Sep 2013 08:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8Q8U1Ke036534; Thu, 26 Sep 2013 08:30:01 GMT (envelope-from gnats) Date: Thu, 26 Sep 2013 08:30:01 GMT Message-Id: <201309260830.r8Q8U1Ke036534@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Jurij Ivliev Subject: Re: ports/182371: ports-mgmt/pkg_replace: fixup pattrn matching in pkg_glob() function X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Jurij Ivliev List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Sep 2013 08:30:02 -0000 The following reply was made to PR ports/182371; it has been noted by GNATS. From: Jurij Ivliev To: Ken DEGUCHI Cc: bug-followup@FreeBSD.org Subject: Re: ports/182371: ports-mgmt/pkg_replace: fixup pattrn matching in pkg_glob() function Date: Thu, 26 Sep 2013 12:02:17 +0400 On Thu, Sep 26, 2013 at 09:28:58AM +0900, Ken DEGUCHI wrote: > Sorry, I forgot to delete a patch file in "files" directory. > diff -Nur pkg_replace.orig/Makefile pkg_replace/Makefile Thank you, this works for me. From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 09:20:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id AE55B6C5 for ; Thu, 26 Sep 2013 09:20: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 8C27E2BF0 for ; Thu, 26 Sep 2013 09:20: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 r8Q9K084039175 for ; Thu, 26 Sep 2013 09:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8Q9K0lV039174; Thu, 26 Sep 2013 09:20:00 GMT (envelope-from gnats) Resent-Date: Thu, 26 Sep 2013 09:20:00 GMT Resent-Message-Id: <201309260920.r8Q9K0lV039174@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, Nicolai Petri 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 45664632 for ; Thu, 26 Sep 2013 09:18: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 337F02BD6 for ; Thu, 26 Sep 2013 09:18: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 r8Q9IqMD071224 for ; Thu, 26 Sep 2013 09:18:52 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8Q9Iqm1071208; Thu, 26 Sep 2013 09:18:52 GMT (envelope-from nobody) Message-Id: <201309260918.r8Q9Iqm1071208@oldred.freebsd.org> Date: Thu, 26 Sep 2013 09:18:52 GMT From: Nicolai Petri To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182402: Fix and update SNMP++ port 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: Thu, 26 Sep 2013 09:20:00 -0000 >Number: 182402 >Category: ports >Synopsis: Fix and update SNMP++ port >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Sep 26 09:20:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Nicolai Petri >Release: 9.1-STABLE >Organization: N Possible >Environment: FreeBSD edge.petri.cc 9.1-STABLE FreeBSD 9.1-STABLE #3: Fri Jun 21 02:14:48 CEST 2013 root@edge.petri.cc:/usr/obj/usr/src/sys/FEVER amd64 >Description: Update to latest release and fix build under clang only enviroments >How-To-Repeat: >Fix: apply attached patch Patch attached with submission follows: --- Makefile.orig 2013-09-26 11:05:40.653706748 +0200 +++ Makefile 2013-09-26 11:13:30.150707065 +0200 @@ -6,12 +6,12 @@ # PORTNAME= snmp++ -PORTVERSION= 3.2.25 +PORTVERSION= 3.3.0 CATEGORIES= net-mgmt MASTER_SITES= http://www.agentpp.com/ DISTNAME= ${PORTNAME}v${PORTVERSION} -MAINTAINER= nicolai@catpipe.net +MAINTAINER= nicolai@petri.dk COMMENT= SNMP C++ library with V3 support MAKEFILE= Makefile.FreeBSD @@ -24,6 +24,6 @@ ${CP} ${FILESDIR}/Makefile.FreeBSD ${WRKSRC} post-install: - ${LN} -sf ${PREFIX}/lib/libsnmp++.so.2.0.0 ${PREFIX}/lib/libsnmp++.so + ${LN} -sf ${PREFIX}/lib/libsnmp++.so.3.3.0 ${PREFIX}/lib/libsnmp++.so .include --- files/Makefile.FreeBSD.orig 2013-09-26 10:57:10.103722951 +0200 +++ files/Makefile.FreeBSD 2013-09-26 11:04:10.770704788 +0200 @@ -39,10 +39,4 @@ LDFLAGS = $(CFLAGS) SHARED = -fPIC -shared -# -# Compilation rules -# -CC = g++ -LD = ld - include common.mk --- pkg-plist.orig 2013-09-26 11:14:40.140711660 +0200 +++ pkg-plist 2013-09-26 11:14:51.996709070 +0200 @@ -36,5 +36,5 @@ include/snmp_pp/vb.h lib/libsnmp++.a lib/libsnmp++.so -lib/libsnmp++.so.2.0.0 +lib/libsnmp++.so.3.3.0 @dirrm include/snmp_pp >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 11:30:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 02020573 for ; Thu, 26 Sep 2013 11:30:01 +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 D4B482425 for ; Thu, 26 Sep 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 r8QBU0WF046235 for ; Thu, 26 Sep 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 r8QBU0Nn046234; Thu, 26 Sep 2013 11:30:00 GMT (envelope-from gnats) Resent-Date: Thu, 26 Sep 2013 11:30:00 GMT Resent-Message-Id: <201309261130.r8QBU0Nn046234@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, Alexander Moisseev Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 3042955A for ; Thu, 26 Sep 2013 11:28:52 +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 1BDDD2419 for ; Thu, 26 Sep 2013 11:28:52 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8QBSphS001339 for ; Thu, 26 Sep 2013 11:28:51 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8QBSpCA001335; Thu, 26 Sep 2013 11:28:51 GMT (envelope-from nobody) Message-Id: <201309261128.r8QBSpCA001335@oldred.freebsd.org> Date: Thu, 26 Sep 2013 11:28:51 GMT From: Alexander Moisseev To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182403: New port: sysutils/p5-BackupPC-XS Perl extension for BackupPC libraries 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: Thu, 26 Sep 2013 11:30:01 -0000 >Number: 182403 >Category: ports >Synopsis: New port: sysutils/p5-BackupPC-XS Perl extension for BackupPC libraries >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Sep 26 11:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Alexander Moisseev >Release: >Organization: >Environment: >Description: BackupPC::XS implements various BackupPC functions in a perl-callable module. This module is required for BackupPC V4+. >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-BackupPC-XS # p5-BackupPC-XS/Makefile # p5-BackupPC-XS/pkg-descr # p5-BackupPC-XS/files # p5-BackupPC-XS/files/patch-Makefile.PL # p5-BackupPC-XS/distinfo # p5-BackupPC-XS/pkg-plist # echo c - p5-BackupPC-XS mkdir -p p5-BackupPC-XS > /dev/null 2>&1 echo x - p5-BackupPC-XS/Makefile sed 's/^X//' >p5-BackupPC-XS/Makefile << '6551cab4e3f0d5434913a0c543920945' X# Created by: Alexander Moisseev X# $FreeBSD$ X XPORTNAME= BackupPC-XS XPORTVERSION= 0.20 XCATEGORIES= sysutils perl5 XMASTER_SITES= SF XMASTER_SITE_SUBDIR= backuppc/backuppc-beta/4.0.0alpha2 XPKGNAMEPREFIX= p5- X XMAINTAINER= moiseev@mezonplus.ru XCOMMENT= Perl extension for BackupPC libraries X XUSES= perl5 XUSE_PERL5= configure X XMAN3= BackupPC::XS.3 XMAN3PREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} X XNO_STAGE= yes X XMAKE_JOBS_UNSAFE=yes X X.include 6551cab4e3f0d5434913a0c543920945 echo x - p5-BackupPC-XS/pkg-descr sed 's/^X//' >p5-BackupPC-XS/pkg-descr << 'fd38ab8862030e654e7642569dae35fb' XBackupPC::XS implements various BackupPC functions in a perl-callable module. XThis module is required for BackupPC V4+. X XWWW: http://backuppc.sourceforge.net fd38ab8862030e654e7642569dae35fb echo c - p5-BackupPC-XS/files mkdir -p p5-BackupPC-XS/files > /dev/null 2>&1 echo x - p5-BackupPC-XS/files/patch-Makefile.PL sed 's/^X//' >p5-BackupPC-XS/files/patch-Makefile.PL << '998ba72f42e23dc828c5241b19b56b08' X--- Makefile.PL.orig 2013-05-26 11:32:01.000000000 +0400 X+++ Makefile.PL 2013-09-26 09:38:14.000000000 +0400 X@@ -14,10 +14,6 @@ X bpc_refCount$(OBJ_EXT) X ]; X $object =~ s/[\n\r\s]+/ /g; X-my $ldfrom = $object; X-$ldfrom =~ s{(\w+)/}{}g; X-$ldfrom .= ' zlib/libzlib$(LIB_EXT)'; X-$ldfrom .= ' md5/libmd5$(LIB_EXT)'; X X WriteMakefile( X NAME => 'BackupPC::XS', X@@ -28,7 +24,7 @@ X DEFINE => '', # e.g., '-DHAVE_SOMETHING' X INC => '-I.', # e.g., '-I. -I/usr/include/other' X OBJECT => $object, X- LDFROM => $ldfrom, X+ MYEXTLIB => 'zlib/libzlib$(LIB_EXT) md5/libmd5$(LIB_EXT)', X DIR => ['md5', 'zlib'], X depend => { 'BackupPC_XS.o' => 'config.h' }, X clean => { FILES => "config.log config.status config.h" }, X@@ -38,7 +34,7 @@ X return <<'EOF'; X X zlib/libzlib$(LIB_EXT): zlib/Makefile config.h X- cd md5 && $(MAKE) $(PASSTHRU) X+ cd zlib && $(MAKE) $(PASSTHRU) X X md5/libmd5$(LIB_EXT): md5/Makefile config.h X cd md5 && $(MAKE) $(PASSTHRU) 998ba72f42e23dc828c5241b19b56b08 echo x - p5-BackupPC-XS/distinfo sed 's/^X//' >p5-BackupPC-XS/distinfo << '1d1eac473c56912ef6262cb97715a745' XSHA256 (BackupPC-XS-0.20.tar.gz) = b80745bac2a0d8c3d8e4c0be72d68e2d4450926f065d8b9af62cbee555d83f87 XSIZE (BackupPC-XS-0.20.tar.gz) = 281081 1d1eac473c56912ef6262cb97715a745 echo x - p5-BackupPC-XS/pkg-plist sed 's/^X//' >p5-BackupPC-XS/pkg-plist << '7830c9547c3f687baba5432075c6908f' Xlib/perl5/site_perl/%%PERL_VERSION%%/%%PERL_ARCH%%/BackupPC/XS.pm Xlib/perl5/site_perl/%%PERL_VERSION%%/%%PERL_ARCH%%/auto/BackupPC/XS/.packlist Xlib/perl5/site_perl/%%PERL_VERSION%%/%%PERL_ARCH%%/auto/BackupPC/XS/XS.bs Xlib/perl5/site_perl/%%PERL_VERSION%%/%%PERL_ARCH%%/auto/BackupPC/XS/XS.so X@dirrm lib/perl5/site_perl/%%PERL_VERSION%%/%%PERL_ARCH%%/auto/BackupPC/XS X@dirrmtry lib/perl5/site_perl/%%PERL_VERSION%%/%%PERL_ARCH%%/auto/BackupPC X@dirrmtry lib/perl5/site_perl/%%PERL_VERSION%%/%%PERL_ARCH%%/BackupPC 7830c9547c3f687baba5432075c6908f exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 11:30:11 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 0897F5B1; Thu, 26 Sep 2013 11:30:11 +0000 (UTC) (envelope-from edwin@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 D3AEE2429; Thu, 26 Sep 2013 11:30:10 +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 r8QBUAel046445; Thu, 26 Sep 2013 11:30:10 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QBUASr046444; Thu, 26 Sep 2013 11:30:10 GMT (envelope-from edwin) Date: Thu, 26 Sep 2013 11:30:10 GMT Message-Id: <201309261130.r8QBUASr046444@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182403: New port: sysutils/p5-BackupPC-XS Perl extension for BackupPC libraries 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: Thu, 26 Sep 2013 11:30:11 -0000 Synopsis: New port: sysutils/p5-BackupPC-XS Perl extension for BackupPC libraries Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Thu Sep 26 11:30:10 UTC 2013 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182403 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 11:30:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 4A97A5AF; Thu, 26 Sep 2013 11:30:09 +0000 (UTC) (envelope-from edwin@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 21BAC2428; Thu, 26 Sep 2013 11:30:09 +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 r8QBU9EK046363; Thu, 26 Sep 2013 11:30:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QBU8gm046362; Thu, 26 Sep 2013 11:30:08 GMT (envelope-from edwin) Date: Thu, 26 Sep 2013 11:30:08 GMT Message-Id: <201309261130.r8QBU8gm046362@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182403: New port: sysutils/p5-BackupPC-XS Perl extension for BackupPC libraries 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: Thu, 26 Sep 2013 11:30:09 -0000 Synopsis: New port: sysutils/p5-BackupPC-XS Perl extension for BackupPC libraries Class-Changed-From-To: maintainer-update->change-request Class-Changed-By: edwin Class-Changed-When: Thu Sep 26 11:30:08 UTC 2013 Class-Changed-Why: Fix category (new ports should be change-requests) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182403 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 11:40:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id CB5E2909 for ; Thu, 26 Sep 2013 11:40: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 91E6A24BC for ; Thu, 26 Sep 2013 11:40: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 r8QBe06N046675 for ; Thu, 26 Sep 2013 11:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QBe0d5046674; Thu, 26 Sep 2013 11:40:00 GMT (envelope-from gnats) Resent-Date: Thu, 26 Sep 2013 11:40:00 GMT Resent-Message-Id: <201309261140.r8QBe0d5046674@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, Sascha Holzleiter 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 D16977BF for ; Thu, 26 Sep 2013 11:38:44 +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 BF7E22480 for ; Thu, 26 Sep 2013 11:38:44 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8QBchIJ010338 for ; Thu, 26 Sep 2013 11:38:43 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8QBchb3010335; Thu, 26 Sep 2013 11:38:43 GMT (envelope-from nobody) Message-Id: <201309261138.r8QBchb3010335@oldred.freebsd.org> Date: Thu, 26 Sep 2013 11:38:43 GMT From: Sascha Holzleiter To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182404: devel/subversion: missing pkg-config when build with poudriere 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: Thu, 26 Sep 2013 11:40:00 -0000 >Number: 182404 >Category: ports >Synopsis: devel/subversion: missing pkg-config when build with poudriere >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Sep 26 11:40:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Sascha Holzleiter >Release: 9.1-RELEASE-p7 >Organization: >Environment: 9.1-RELEASE-p7 FreeBSD 9.1-RELEASE-p7 #0: Mon Sep 9 21:34:37 UTC 2013 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Building devel/subversion within poudriere throws a pkg-config not found at the configure stage: configure: error: cannot find pkg-config ===> Script "configure" failed unexpectedly. I tried to add USES+= pkgconfig in Makefile.common but that didn't help. The full poudriere log can be found here: http://snippets.blumenschaender.de/subversion-1.8.3.log >How-To-Repeat: Building devel/subversion with a 9.1-RELEASE poudriere jail >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 11:40:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 3722A937; Thu, 26 Sep 2013 11:40:09 +0000 (UTC) (envelope-from edwin@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 0D43724BE; Thu, 26 Sep 2013 11:40:09 +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 r8QBe8JP046811; Thu, 26 Sep 2013 11:40:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QBe8V8046810; Thu, 26 Sep 2013 11:40:08 GMT (envelope-from edwin) Date: Thu, 26 Sep 2013 11:40:08 GMT Message-Id: <201309261140.r8QBe8V8046810@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, lev@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182404: devel/subversion: missing pkg-config when build with poudriere 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: Thu, 26 Sep 2013 11:40:09 -0000 Synopsis: devel/subversion: missing pkg-config when build with poudriere Responsible-Changed-From-To: freebsd-ports-bugs->lev Responsible-Changed-By: edwin Responsible-Changed-When: Thu Sep 26 11:40:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182404 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 12:00:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 6A96CB38 for ; Thu, 26 Sep 2013 12:00:01 +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 49B082562 for ; Thu, 26 Sep 2013 12:00:01 +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 r8QC01qr047514 for ; Thu, 26 Sep 2013 12:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QC01we047512; Thu, 26 Sep 2013 12:00:01 GMT (envelope-from gnats) Resent-Date: Thu, 26 Sep 2013 12:00:01 GMT Resent-Message-Id: <201309261200.r8QC01we047512@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, Alexander Panyuskin 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 27C14AC4 for ; Thu, 26 Sep 2013 11:54:05 +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 145A42531 for ; Thu, 26 Sep 2013 11:54:05 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8QBs44i020072 for ; Thu, 26 Sep 2013 11:54:04 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8QBs44I020056; Thu, 26 Sep 2013 11:54:04 GMT (envelope-from nobody) Message-Id: <201309261154.r8QBs44I020056@oldred.freebsd.org> Date: Thu, 26 Sep 2013 11:54:04 GMT From: Alexander Panyuskin To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182405: error to build graphics/poppler-glib 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: Thu, 26 Sep 2013 12:00:01 -0000 >Number: 182405 >Category: ports >Synopsis: error to build graphics/poppler-glib >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Sep 26 12:00:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Alexander Panyuskin >Release: FreeBSD 10.0-ALPHA3 #0 r255867M >Organization: none >Environment: FreeBSD scorpion.kiev.ua 10.0-ALPHA3 FreeBSD 10.0-ALPHA3 #0 r255867M: Wed Sep 25 16:26:13 EEST 2013 root@scorpion.kiev.ua:/usr/obj/usr/src/sys/Kernel amd64 >Description: ===>>> Starting build for graphics/poppler-glib <<<=== ===>>> All dependencies are up to date ===> Cleaning for poppler-glib-0.22.2 ===> License GPLv2 accepted by the user ===> Fetching all distfiles required by poppler-glib-0.22.2 for building ===> Extracting for poppler-glib-0.22.2 => SHA256 Checksum OK for poppler-0.22.2.tar.gz. ===> Patching for poppler-glib-0.22.2 ===> poppler-glib-0.22.2 depends on package: libtool>=2.4 - found ===> Applying FreeBSD patches for poppler-glib-0.22.2 ===> poppler-glib-0.22.2 depends on executable: g-ir-scanner - found ===> poppler-glib-0.22.2 depends on executable: gmake - found ===> poppler-glib-0.22.2 depends on executable: pkgconf - found ===> poppler-glib-0.22.2 depends on package: libtool>=2.4 - found ===> poppler-glib-0.22.2 depends on shared library: jpeg - found ===> poppler-glib-0.22.2 depends on shared library: fontconfig - found ===> poppler-glib-0.22.2 depends on shared library: lcms2 - found ===> poppler-glib-0.22.2 depends on shared library: poppler - found ===> poppler-glib-0.22.2 depends on shared library: cairo - found ===> poppler-glib-0.22.2 depends on shared library: glib-2.0 - found ===> poppler-glib-0.22.2 depends on shared library: pcre - found ===> poppler-glib-0.22.2 depends on shared library: xml2.5 - found ===> Configuring for poppler-glib-0.22.2 ===> FreeBSD 10 autotools fix applied to /usr/ports/graphics/poppler-glib/work/poppler-0.22.2/configure ===> FreeBSD 10 autotools fix applied to /usr/ports/graphics/poppler-glib/work/poppler-0.22.2/m4/libtool.m4 ===> FreeBSD 10 autotools fix applied to /usr/ports/graphics/poppler-glib/work/poppler-0.22.2/aclocal.m4 configure: loading site script /usr/ports/Templates/config.site checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) /usr/bin/awk checking whether gmake sets $(MAKE)... yes checking whether gmake supports nested variables... yes checking for style of include used by gmake... GNU checking for gcc... cc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether cc accepts -g... yes checking for cc option to accept ISO C89... none needed checking dependency style of cc... gcc3 checking how to run the C preprocessor... cc -E checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/egrep checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking whether byte ordering is bigendian... no checking build system type... amd64-portbld-freebsd10.0 checking host system type... amd64-portbld-freebsd10.0 checking how to print strings... printf checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for fgrep... (cached) /usr/bin/fgrep checking for ld used by cc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... (cached) 262144 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... no checking how to convert amd64-portbld-freebsd10.0 file names to amd64-portbld-freebsd10.0 format... func_convert_file_noop checking how to convert amd64-portbld-freebsd10.0 file names to toolchain format... func_convert_file_noop checking for /usr/bin/ld option to reload object files... -r checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for dlltool... dlltool checking how to associate runtime and link libraries... printf %s\n checking for ar... ar checking for archiver @FILE support... no checking for strip... strip checking for ranlib... ranlib checking command to parse /usr/bin/nm -B output from cc object... ok checking for sysroot... no checking for mt... mt checking if mt is a manifest tool... no checking for dlfcn.h... (cached) yes checking for objdir... .libs checking if cc supports -fno-rtti -fno-exceptions... yes checking for cc option to produce PIC... -fPIC -DPIC checking if cc PIC flag -fPIC -DPIC works... yes checking if cc static flag -static works... yes checking if cc supports -c -o file.o... yes checking if cc supports -c -o file.o... (cached) yes checking whether the cc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... freebsd10.0 ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking for gcc... (cached) cc checking whether we are using the GNU C compiler... (cached) yes checking whether cc accepts -g... (cached) yes checking for cc option to accept ISO C89... (cached) none needed checking dependency style of cc... (cached) gcc3 checking whether we are using the GNU C++ compiler... yes checking whether c++ accepts -g... yes checking dependency style of c++... gcc3 checking how to run the C++ preprocessor... c++ -E checking for ld used by c++... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking whether the c++ linker (/usr/bin/ld) supports shared libraries... yes checking for c++ option to produce PIC... -fPIC -DPIC checking if c++ PIC flag -fPIC -DPIC works... yes checking if c++ static flag -static works... yes checking if c++ supports -c -o file.o... yes checking if c++ supports -c -o file.o... (cached) yes checking whether the c++ linker (/usr/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... freebsd10.0 ld.so checking how to hardcode library paths into programs... immediate checking for library containing strerror... none required checking for cc option to accept ISO C99... none needed checking for cc option to accept ISO Standard C... (cached) none needed checking whether we are using the GNU C++ compiler... (cached) yes checking whether c++ accepts -g... (cached) yes checking dependency style of c++... (cached) gcc3 checking pkg-config is at least version 0.9.0... yes checking for the pthreads library -lpthreads... no checking whether pthreads work without any flags... yes checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE checking if more special flags are required for pthreads... -D_THREAD_SAFE checking for X... libraries , headers checking for gethostbyname... (cached) yes checking for connect... yes checking for remove... yes checking for shmat... yes checking for IceConnectionNumber in -lICE... yes checking for dirent.h that defines DIR... yes checking for library containing opendir... none required checking for stdint.h... (cached) yes checking whether gettimeofday is declared... (cached) yes checking for gettimeofday... (cached) yes checking for localtime_r... yes checking for gmtime_r... yes checking for rand_r... yes checking for gethostbyname... (cached) yes checking for nanosleep... yes checking for LIBOPENJPEG... no checking for opj_cio_open in -lopenjpeg... yes checking openjpeg.h usability... yes checking openjpeg.h presence... yes checking for openjpeg.h... yes checking for TIFFOpen in -ltiff... yes checking tiffio.h usability... yes checking tiffio.h presence... yes checking for tiffio.h... yes checking for popen... yes checking for mkstemp... (cached) yes checking for mkstemps... yes checking for special C compiler options needed for large files... no checking for _FILE_OFFSET_BITS value needed for large files... no checking for _LARGEFILE_SOURCE value needed for large files... no checking for fseek64... no checking for ftell64... no checking for inflate in -lz... yes checking for zlib.h... (cached) yes checking for libjpeg6b... no checking for libjpeg... -ljpeg checking jpeglib.h usability... yes checking jpeglib.h presence... yes checking for jpeglib.h... yes checking libjpeg.h works correctly... ok checking for LIBPNG... yes checking for FREETYPE... yes checking which font configuration to use... fontconfig checking for FONTCONFIG... yes checking for CAIRO... yes checking for PDFTOCAIRO... yes checking for fcntl.h... (cached) yes checking for sys/mman.h... (cached) yes checking for sys/stat.h... (cached) yes checking for POPPLER_GLIB... yes checking for gobject-introspection... yes checking for glib-mkenums... /usr/local/bin/glib-mkenums checking for gtkdoc-check... /usr/local/bin/gtkdoc-check checking for gtkdoc-rebase... /usr/local/bin/gtkdoc-rebase checking for gtkdoc-mkpdf... /usr/local/bin/gtkdoc-mkpdf checking whether to build gtk-doc documentation... no checking for iconv... yes checking for working iconv... yes checking for iconv declaration... extern size_t iconv (iconv_t cd, const char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); checking for LCMS... yes checking for test data in /usr/ports/graphics/poppler-glib/work/poppler-0.22.2/./../test... no configure: WARNING: No test data found in /usr/ports/graphics/poppler-glib/work/poppler-0.22.2/./../test. You will not be able to run 'make check' successfully. The test data is not included in the source packages and is also not part of the main git repository. Instead, you can checkout the test data from its own git repository with: git clone git://git.freedesktop.org/git/poppler/test You should checkout the test data as a sibling of your poppler source folder or specify the location of your checkout with --with-testdatadir=/path/to/checkoutdir/test. configure: creating ./config.status config.status: creating Makefile config.status: creating goo/Makefile config.status: creating fofi/Makefile config.status: creating splash/Makefile config.status: creating poppler/Makefile config.status: creating utils/Makefile config.status: creating glib/Makefile config.status: creating glib/poppler-features.h config.status: creating glib/reference/Makefile config.status: creating glib/reference/version.xml config.status: creating glib/demo/Makefile config.status: creating test/Makefile config.status: creating qt4/Makefile config.status: creating qt4/src/Makefile config.status: creating qt4/tests/Makefile config.status: creating qt4/demos/Makefile config.status: creating cpp/Makefile config.status: creating cpp/poppler-version.h config.status: creating cpp/tests/Makefile config.status: creating poppler.pc config.status: creating poppler-uninstalled.pc config.status: creating poppler-cairo.pc config.status: creating poppler-cairo-uninstalled.pc config.status: creating poppler-splash.pc config.status: creating poppler-splash-uninstalled.pc config.status: creating poppler-glib.pc config.status: creating poppler-glib-uninstalled.pc config.status: creating poppler-qt4.pc config.status: creating poppler-qt4-uninstalled.pc config.status: creating poppler-cpp.pc config.status: creating poppler-cpp-uninstalled.pc config.status: creating config.h config.status: creating poppler/poppler-config.h config.status: executing depfiles commands config.status: executing libtool commands Building poppler with support for: font configuration: fontconfig splash output: yes cairo output: yes qt4 wrapper: no glib wrapper: yes introspection: yes cpp wrapper: yes use gtk-doc: no use libjpeg: yes use libpng: yes use libtiff: yes use zlib: yes use libcurl: no use libopenjpeg: yes use cms: yes with lcms2 command line utils: no test data dir: /usr/ports/graphics/poppler-glib/work/poppler-0.22.2/./../test Warning: Using zlib is not totally safe ===> Building for poppler-glib-0.22.2 gmake[1]: ÷ÈÏÄ × ËÁÔÁÌÏÇ `/usr/ports/graphics/poppler-glib/work/poppler-0.22.2/poppler' CXX CairoFontEngine.lo In file included from CairoFontEngine.cc:39: ./CairoFontEngine.h:98:11: warning: private field 'doc' is not used [-Wunused-private-field] PDFDoc *doc; ^ 1 warning generated. CXX CairoOutputDev.lo CairoOutputDev.cc:1626:29: warning: cast from 'unsigned char *' to 'uint32_t *' (aka 'unsigned int *') increases required alignment from 1 to 4 [-Wcast-align] uint32_t *source_data = (uint32_t*)cairo_image_surface_get_data(source); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ CairoOutputDev.cc:2386:12: warning: cast from 'unsigned char *' to 'unsigned int *' increases required alignment from 1 to 4 [-Wcast-align] dest = (unsigned int *) (buffer + y * row_stride); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ CairoOutputDev.cc:2536:12: warning: cast from 'unsigned char *' to 'unsigned int *' increases required alignment from 1 to 4 [-Wcast-align] dest = (unsigned int *) (buffer + y * row_stride); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ CairoOutputDev.cc:2765:26: warning: cast from 'unsigned char *' to 'uint32_t *' (aka 'unsigned int *') increases required alignment from 1 to 4 [-Wcast-align] uint32_t *dest = (uint32_t *) (buffer + y * stride); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 4 warnings generated. CXX CairoRescaleBox.lo CairoRescaleBox.cc:283:10: warning: cast from 'unsigned char *' to 'unsigned int *' increases required alignment from 1 to 4 [-Wcast-align] dest = (unsigned int *)cairo_image_surface_get_data (dest_surface); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 1 warning generated. CXXLD libpoppler-cairo.la gmake[1]: ÷ÙÈÏÄ ÉÚ ËÁÔÁÌÏÇÁ `/usr/ports/graphics/poppler-glib/work/poppler-0.22.2/poppler' gmake[1]: ÷ÈÏÄ × ËÁÔÁÌÏÇ `/usr/ports/graphics/poppler-glib/work/poppler-0.22.2/glib' GEN stamp-poppler-enums.h gmake all-recursive gmake[2]: ÷ÈÏÄ × ËÁÔÁÌÏÇ `/usr/ports/graphics/poppler-glib/work/poppler-0.22.2/glib' Making all in . gmake[3]: ÷ÈÏÄ × ËÁÔÁÌÏÇ `/usr/ports/graphics/poppler-glib/work/poppler-0.22.2/glib' CC poppler-enums.lo CXX poppler-action.lo CXX poppler-date.lo CXX poppler-document.lo CXX poppler-page.lo CXX poppler-attachment.lo poppler-attachment.cc:123:65: warning: cast from 'GTime *' (aka 'int *') to 'time_t *' (aka 'long *') increases required alignment from 4 to 8 [-Wcast-align] _poppler_convert_pdf_date_to_gtime (embFile->createDate (), (time_t *)&attachment->ctime); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ poppler-attachment.cc:125:62: warning: cast from 'GTime *' (aka 'int *') to 'time_t *' (aka 'long *') increases required alignment from 4 to 8 [-Wcast-align] _poppler_convert_pdf_date_to_gtime (embFile->modDate (), (time_t *)&attachment->mtime); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2 warnings generated. CXX poppler-form-field.lo CXX poppler-annot.lo CXX poppler-layer.lo CXX poppler-media.lo CXX poppler-movie.lo CXX poppler-cached-file-loader.lo CXX poppler-input-stream.lo CXX poppler.lo CXXLD libpoppler-glib.la c++: warning: argument unused during compilation: '-pthread' c++: warning: argument unused during compilation: '-pthread' c++: warning: argument unused during compilation: '-pthread' c++: warning: argument unused during compilation: '-pthread' GISCAN Poppler-0.18.gir /usr/local/lib/libpoppler.so: undefined reference to `std::__1::__vector_base_common::__throw_length_error() const' /usr/local/lib/libpoppler.so: undefined reference to `std::__1::__vector_base_common::__throw_out_of_range() const' cc: error: linker command failed with exit code 1 (use -v to see invocation) linking of temporary binary failed: Command '['/bin/sh', '/usr/ports/graphics/poppler-glib/work/gnome-libtool', '--mode=link', '--tag=CC', '--silent', 'cc', '-o', '/usr/ports/graphics/poppler-glib/work/poppler-0.22.2/glib/tmp-introspectbHU38O/Poppler-0.18', '-export-dynamic', '-Wall', '-Oz', '-march=athlon64-sse3', '-mtune=athlon64-sse3', '-pipe', '-Qunused-arguments', '-Qunused-parameter', '-Wformat', '-Wformat-security', '-L/usr/local/lib', '-pthread', '/usr/ports/graphics/poppler-glib/work/poppler-0.22.2/glib/tmp-introspectbHU38O/Poppler-0.18.o', '-L.', 'libpoppler-glib.la', '-lgio-2.0', '-lgobject-2.0', '-Wl,--export-dynamic', '-lgmodule-2.0', '-pthread', '-L/usr/local/lib', '-lglib-2.0', '-lintl']' returned non-zero exit status 1 gmake[3]: *** [Poppler-0.18.gir] Error 1 >How-To-Repeat: portmaster graphics/poppler-glib >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 12:00:03 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 0D2EDBE9 for ; Thu, 26 Sep 2013 12:00:03 +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 E15C92564 for ; Thu, 26 Sep 2013 12:00:02 +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 r8QC02Z7047535 for ; Thu, 26 Sep 2013 12:00:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QC021R047534; Thu, 26 Sep 2013 12:00:02 GMT (envelope-from gnats) Resent-Date: Thu, 26 Sep 2013 12:00:02 GMT Resent-Message-Id: <201309261200.r8QC021R047534@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, Alan Hicks 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 48899ADE for ; Thu, 26 Sep 2013 11:56:18 +0000 (UTC) (envelope-from alan@p-o.co.uk) Received: from avasout05.plus.net (avasout05.plus.net [84.93.230.250]) by mx1.freebsd.org (Postfix) with ESMTP id AC752253D for ; Thu, 26 Sep 2013 11:56:17 +0000 (UTC) Received: from mail.p-o.co.uk ([80.229.143.200]) by avasout05 with smtp id Vnt61m0024Ke75s01nt7so; Thu, 26 Sep 2013 12:53:07 +0100 Received: from alan by p-o.co.uk with local (Exim 4.80.1 (FreeBSD)) (envelope-from ) id 1VPA49-000DmG-Om for FreeBSD-gnats-submit@freebsd.org; Thu, 26 Sep 2013 12:49:05 +0100 Message-Id: Date: Thu, 26 Sep 2013 12:49:05 +0100 From: Alan Hicks To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/182406: [Maintainer patch] Upgrade mail/dbmail to 3.1.7 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Alan Hicks List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Sep 2013 12:00:03 -0000 >Number: 182406 >Category: ports >Synopsis: [Maintainer patch] Upgrade mail/dbmail to 3.1.7 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Sep 26 12:00:01 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Alan Hicks >Release: FreeBSD 9.1-RELEASE-p7 i386 >Organization: >Environment: System: FreeBSD schnittke.p-o.co.uk 9.1-RELEASE-p7 FreeBSD 9.1-RELEASE-p7 #0: Mon Sep 9 21:23:37 UTC 2013 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: Upgrade dbmail from 3.1.6 to 3.1.7 >How-To-Repeat: >Fix: Apply patch Fixes minor bugs including - POP3 sometimes failed due to a missing final line - orphaned rows in the headervalues and headernames tables are now cleaned --- dbmail-316-317.diff begins here --- diff -ur dbmail/Makefile dbmail/Makefile --- dbmail/Makefile 2013-09-20 20:59:12.000000000 +0100 +++ dbmail/Makefile 2013-09-26 12:17:21.000000000 +0100 @@ -2,7 +2,7 @@ # $FreeBSD: mail/dbmail/Makefile 327742 2013-09-20 19:59:12Z bapt $ PORTNAME= dbmail -PORTVERSION= 3.1.6 +PORTVERSION= 3.1.7 CATEGORIES= mail MASTER_SITES= http://www.dbmail.org/download/3.1/ diff -ur dbmail/distinfo dbmail/distinfo --- dbmail/distinfo 2013-09-14 07:51:08.000000000 +0100 +++ dbmail/distinfo 2013-09-26 12:17:34.000000000 +0100 @@ -1,2 +1,2 @@ -SHA256 (dbmail-3.1.6.tar.gz) = 380fc123c8e6cfca7e9c06892d501ddea61c36f88e567d133202c16bf265a71a -SIZE (dbmail-3.1.6.tar.gz) = 2394514 +SHA256 (dbmail-3.1.7.tar.gz) = 657965a87a217495b2bd5f292ef1b4948e85d195e54e9c0e4981d46cf72427aa +SIZE (dbmail-3.1.7.tar.gz) = 2395315 --- dbmail-316-317.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 12:00:09 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 CB7E3C94; Thu, 26 Sep 2013 12:00:09 +0000 (UTC) (envelope-from edwin@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 A283B2568; Thu, 26 Sep 2013 12:00:09 +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 r8QC09Ve047619; Thu, 26 Sep 2013 12:00:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QC0914047618; Thu, 26 Sep 2013 12:00:09 GMT (envelope-from edwin) Date: Thu, 26 Sep 2013 12:00:09 GMT Message-Id: <201309261200.r8QC0914047618@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182405: error to build graphics/poppler-glib 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: Thu, 26 Sep 2013 12:00:09 -0000 Synopsis: error to build graphics/poppler-glib Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Thu Sep 26 12:00:09 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182405 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 12:50: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 C5510AC6 for ; Thu, 26 Sep 2013 12:50: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 8B4BD27CE for ; Thu, 26 Sep 2013 12:50: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 r8QCo0EU053822 for ; Thu, 26 Sep 2013 12:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QCo0TS053821; Thu, 26 Sep 2013 12:50:00 GMT (envelope-from gnats) Resent-Date: Thu, 26 Sep 2013 12:50:00 GMT Resent-Message-Id: <201309261250.r8QCo0TS053821@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, Bertram Scharpf 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 446A697C for ; Thu, 26 Sep 2013 12:48:47 +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 3211D27A5 for ; Thu, 26 Sep 2013 12:48:47 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8QCmkm3065366 for ; Thu, 26 Sep 2013 12:48:46 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8QCmkVZ065363; Thu, 26 Sep 2013 12:48:46 GMT (envelope-from nobody) Message-Id: <201309261248.r8QCmkVZ065363@oldred.freebsd.org> Date: Thu, 26 Sep 2013 12:48:46 GMT From: Bertram Scharpf To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182407: sysutils/fusefs-libs crashes when option DOCS is on 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: Thu, 26 Sep 2013 12:50:00 -0000 >Number: 182407 >Category: ports >Synopsis: sysutils/fusefs-libs crashes when option DOCS is on >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Sep 26 12:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Bertram Scharpf >Release: 9.1 >Organization: >Environment: FreeBSD ... 9.1-STABLE FreeBSD 9.1-STABLE #0: Thu Jun 6 18:31:52 CEST 2013 ...:/usr/obj/usr/src/sys/GENERIC i386 >Description: # make install [...] ====> Compressing man pages ===> Building package for fusefs-libs-2.9.3_1 tar: share/doc/fusefs/libs/how-fuse-works: Cannot stat: No such file or directory tar: share/doc/fusefs/libs/kernel.txt: Cannot stat: No such file or directory tar: Error exit delayed from previous errors. pkg_create: make_dist: tar command failed with code 256 Creating package /usr/ports/packages/All/fusefs-libs-2.9.3_1.tbz Registering depends: libiconv-1.14_1. Creating bzip'd tar ball in '/usr/ports/packages/All/fusefs-libs-2.9.3_1.tbz' *** [do-package] Error code 1 Stop in /usr/ports/sysutils/fusefs-libs. *** [install] Error code 1 Stop in /usr/ports/sysutils/fusefs-libs. >How-To-Repeat: # make config Check on the DOCS option # make install >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 12:50:09 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 52DF8AF7; Thu, 26 Sep 2013 12:50:09 +0000 (UTC) (envelope-from edwin@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 2839A27D4; Thu, 26 Sep 2013 12:50:09 +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 r8QCo9nd053962; Thu, 26 Sep 2013 12:50:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QCo8tv053961; Thu, 26 Sep 2013 12:50:08 GMT (envelope-from edwin) Date: Thu, 26 Sep 2013 12:50:08 GMT Message-Id: <201309261250.r8QCo8tv053961@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, bapt@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182407: sysutils/fusefs-libs crashes when option DOCS is on 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: Thu, 26 Sep 2013 12:50:09 -0000 Synopsis: sysutils/fusefs-libs crashes when option DOCS is on Responsible-Changed-From-To: freebsd-ports-bugs->bapt Responsible-Changed-By: edwin Responsible-Changed-When: Thu Sep 26 12:50:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182407 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 12:56: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 7A017D58; Thu, 26 Sep 2013 12:56:00 +0000 (UTC) (envelope-from wg@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 4B7A32826; Thu, 26 Sep 2013 12:56: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 r8QCu06q054294; Thu, 26 Sep 2013 12:56:00 GMT (envelope-from wg@freefall.freebsd.org) Received: (from wg@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QCu0B5054293; Thu, 26 Sep 2013 12:56:00 GMT (envelope-from wg) Date: Thu, 26 Sep 2013 12:56:00 GMT Message-Id: <201309261256.r8QCu0B5054293@freefall.freebsd.org> To: wg@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wg@FreeBSD.org From: wg@FreeBSD.org Subject: Re: ports/182393: [MAINTAINER] japanese/ebnetd: add staging support and etc. 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: Thu, 26 Sep 2013 12:56:00 -0000 Synopsis: [MAINTAINER] japanese/ebnetd: add staging support and etc. Responsible-Changed-From-To: freebsd-ports-bugs->wg Responsible-Changed-By: wg Responsible-Changed-When: Thu Sep 26 12:55:59 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=182393 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 12:56:16 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 D8B47D8A; Thu, 26 Sep 2013 12:56:16 +0000 (UTC) (envelope-from wg@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 ADFEB2829; Thu, 26 Sep 2013 12:56:16 +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 r8QCuG5B054392; Thu, 26 Sep 2013 12:56:16 GMT (envelope-from wg@freefall.freebsd.org) Received: (from wg@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QCuGID054391; Thu, 26 Sep 2013 12:56:16 GMT (envelope-from wg) Date: Thu, 26 Sep 2013 12:56:16 GMT Message-Id: <201309261256.r8QCuGID054391@freefall.freebsd.org> To: wg@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wg@FreeBSD.org From: wg@FreeBSD.org Subject: Re: ports/182406: [Maintainer patch] Upgrade mail/dbmail to 3.1.7 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: Thu, 26 Sep 2013 12:56:16 -0000 Synopsis: [Maintainer patch] Upgrade mail/dbmail to 3.1.7 Responsible-Changed-From-To: freebsd-ports-bugs->wg Responsible-Changed-By: wg Responsible-Changed-When: Thu Sep 26 12:56:16 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=182406 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 12:56:34 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 C5640DBD; Thu, 26 Sep 2013 12:56:34 +0000 (UTC) (envelope-from wg@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 9A976282D; Thu, 26 Sep 2013 12:56:34 +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 r8QCuYel054483; Thu, 26 Sep 2013 12:56:34 GMT (envelope-from wg@freefall.freebsd.org) Received: (from wg@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QCuYnD054482; Thu, 26 Sep 2013 12:56:34 GMT (envelope-from wg) Date: Thu, 26 Sep 2013 12:56:34 GMT Message-Id: <201309261256.r8QCuYnD054482@freefall.freebsd.org> To: wg@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wg@FreeBSD.org From: wg@FreeBSD.org Subject: Re: ports/182399: [MAINTAINER] mail/c-sig: add staging support 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: Thu, 26 Sep 2013 12:56:34 -0000 Synopsis: [MAINTAINER] mail/c-sig: add staging support Responsible-Changed-From-To: freebsd-ports-bugs->wg Responsible-Changed-By: wg Responsible-Changed-When: Thu Sep 26 12:56:34 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=182399 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 13:50:04 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 0D55A5DA for ; Thu, 26 Sep 2013 13:50:04 +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 E38142B06 for ; Thu, 26 Sep 2013 13:50:03 +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 r8QDo2kc057807 for ; Thu, 26 Sep 2013 13:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QDo25I057806; Thu, 26 Sep 2013 13:50:02 GMT (envelope-from gnats) Resent-Date: Thu, 26 Sep 2013 13:50:02 GMT Resent-Message-Id: <201309261350.r8QDo25I057806@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, Michael Gmelin 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 17CBC389 for ; Thu, 26 Sep 2013 13:47:49 +0000 (UTC) (envelope-from freebsd@grem.de) Received: from mail.grem.de (outcast.grem.de [213.239.217.27]) by mx1.freebsd.org (Postfix) with SMTP id 1FC9D2ADE for ; Thu, 26 Sep 2013 13:47:47 +0000 (UTC) Received: (qmail 75050 invoked by uid 0); 26 Sep 2013 13:47:40 -0000 Message-Id: <20130926134740.75049.qmail@mail.grem.de> Date: 26 Sep 2013 13:47:40 -0000 From: Michael Gmelin To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/182408: [PATCH] databases/mariadb55-server: Allow building mariadb with libc++ and clang 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: Thu, 26 Sep 2013 13:50:04 -0000 >Number: 182408 >Category: ports >Synopsis: [PATCH] databases/mariadb55-server: Allow building mariadb with libc++ and clang >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Sep 26 13:50:01 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Michael Gmelin >Release: FreeBSD 9.1-RELEASE-p2 amd64 >Organization: Grem Equity GmbH >Environment: System: FreeBSD bsd64.grem.de 9.1-RELEASE-p2 FreeBSD 9.1-RELEASE-p2 #5 r249052M: Fri May 31 17:50:16 UTC >Description: Those trivial patches allow building mariadb55-server using system clang and libc++. CXX=clang++ CXXFLAGS+= -std=c++11 -stdlib=libc++ They're similar to the patches to mysql55-server from last year [1], plus a few extra spaces around string literals, which are required by C++11. Nothing dramatic and no need to bump the revision. I'm aware of the ongoing work to update the port to 5.5.33a [2], most likely these patches will still apply and I would appreciate if they could get committed soon. [1] http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/171546 [2] http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/182287 Port maintainer (never@nevermind.kiev.ua) is cc'd. Generated with FreeBSD Port Tools 0.99_7 (mode: change, diff: suffix) >How-To-Repeat: >Fix: --- mariadb-server-5.5.31.patch begins here --- diff -ruN ../mariadb55-server.orig/files/patch-sql_item_subselect.cc ./files/patch-sql_item_subselect.cc --- ../mariadb55-server.orig/files/patch-sql_item_subselect.cc 1970-01-01 01:00:00.000000000 +0100 +++ ./files/patch-sql_item_subselect.cc 2013-09-26 15:24:02.000000000 +0200 @@ -0,0 +1,11 @@ +--- sql/item_subselect.cc.orig 2013-05-21 22:09:51.000000000 +0000 ++++ sql/item_subselect.cc 2013-09-26 13:13:01.105197491 +0000 +@@ -1317,7 +1317,7 @@ + Item_subselect() + { + DBUG_ENTER("Item_exists_subselect::Item_exists_subselect"); +- bool val_bool(); ++// bool val_bool(); + init(select_lex, new select_exists_subselect(this)); + max_columns= UINT_MAX; + null_value= FALSE; //can't be NULL diff -ruN ../mariadb55-server.orig/files/patch-sql_sql_trigger.cc ./files/patch-sql_sql_trigger.cc --- ../mariadb55-server.orig/files/patch-sql_sql_trigger.cc 1970-01-01 01:00:00.000000000 +0100 +++ ./files/patch-sql_sql_trigger.cc 2013-09-26 15:24:02.000000000 +0200 @@ -0,0 +1,50 @@ +--- sql/sql_trigger.cc.orig 2013-05-21 22:09:51.000000000 +0000 ++++ sql/sql_trigger.cc 2013-09-26 13:15:55.450195525 +0000 +@@ -192,32 +192,32 @@ + { + { + { C_STRING_WITH_LEN("triggers") }, +- my_offsetof(class Table_triggers_list, definitions_list), ++ static_cast(my_offsetof(class Table_triggers_list, definitions_list)), + FILE_OPTIONS_STRLIST + }, + { + { C_STRING_WITH_LEN("sql_modes") }, +- my_offsetof(class Table_triggers_list, definition_modes_list), ++ static_cast(my_offsetof(class Table_triggers_list, definition_modes_list)), + FILE_OPTIONS_ULLLIST + }, + { + { C_STRING_WITH_LEN("definers") }, +- my_offsetof(class Table_triggers_list, definers_list), ++ static_cast(my_offsetof(class Table_triggers_list, definers_list)), + FILE_OPTIONS_STRLIST + }, + { + { C_STRING_WITH_LEN("client_cs_names") }, +- my_offsetof(class Table_triggers_list, client_cs_names), ++ static_cast(my_offsetof(class Table_triggers_list, client_cs_names)), + FILE_OPTIONS_STRLIST + }, + { + { C_STRING_WITH_LEN("connection_cl_names") }, +- my_offsetof(class Table_triggers_list, connection_cl_names), ++ static_cast(my_offsetof(class Table_triggers_list, connection_cl_names)), + FILE_OPTIONS_STRLIST + }, + { + { C_STRING_WITH_LEN("db_cl_names") }, +- my_offsetof(class Table_triggers_list, db_cl_names), ++ static_cast(my_offsetof(class Table_triggers_list, db_cl_names)), + FILE_OPTIONS_STRLIST + }, + { { 0, 0 }, 0, FILE_OPTIONS_STRING } +@@ -226,7 +226,7 @@ + File_option sql_modes_parameters= + { + { C_STRING_WITH_LEN("sql_modes") }, +- my_offsetof(class Table_triggers_list, definition_modes_list), ++ static_cast(my_offsetof(class Table_triggers_list, definition_modes_list)), + FILE_OPTIONS_ULLLIST + }; + diff -ruN ../mariadb55-server.orig/files/patch-sql_sql_view.cc ./files/patch-sql_sql_view.cc --- ../mariadb55-server.orig/files/patch-sql_sql_view.cc 1970-01-01 01:00:00.000000000 +0100 +++ ./files/patch-sql_sql_view.cc 2013-09-26 15:24:02.000000000 +0200 @@ -0,0 +1,63 @@ +--- sql/sql_view.cc.orig 2013-05-21 22:09:51.000000000 +0000 ++++ sql/sql_view.cc 2013-09-26 13:16:16.065195172 +0000 +@@ -742,46 +742,46 @@ + */ + static File_option view_parameters[]= + {{{ C_STRING_WITH_LEN("query")}, +- my_offsetof(TABLE_LIST, select_stmt), ++ static_cast(my_offsetof(TABLE_LIST, select_stmt)), + FILE_OPTIONS_ESTRING}, + {{ C_STRING_WITH_LEN("md5")}, +- my_offsetof(TABLE_LIST, md5), ++ static_cast(my_offsetof(TABLE_LIST, md5)), + FILE_OPTIONS_STRING}, + {{ C_STRING_WITH_LEN("updatable")}, +- my_offsetof(TABLE_LIST, updatable_view), ++ static_cast(my_offsetof(TABLE_LIST, updatable_view)), + FILE_OPTIONS_ULONGLONG}, + {{ C_STRING_WITH_LEN("algorithm")}, +- my_offsetof(TABLE_LIST, algorithm), ++ static_cast(my_offsetof(TABLE_LIST, algorithm)), + FILE_OPTIONS_VIEW_ALGO}, + {{ C_STRING_WITH_LEN("definer_user")}, +- my_offsetof(TABLE_LIST, definer.user), ++ static_cast(my_offsetof(TABLE_LIST, definer.user)), + FILE_OPTIONS_STRING}, + {{ C_STRING_WITH_LEN("definer_host")}, +- my_offsetof(TABLE_LIST, definer.host), ++ static_cast(my_offsetof(TABLE_LIST, definer.host)), + FILE_OPTIONS_STRING}, + {{ C_STRING_WITH_LEN("suid")}, +- my_offsetof(TABLE_LIST, view_suid), ++ static_cast(my_offsetof(TABLE_LIST, view_suid)), + FILE_OPTIONS_ULONGLONG}, + {{ C_STRING_WITH_LEN("with_check_option")}, +- my_offsetof(TABLE_LIST, with_check), ++ static_cast(my_offsetof(TABLE_LIST, with_check)), + FILE_OPTIONS_ULONGLONG}, + {{ C_STRING_WITH_LEN("timestamp")}, +- my_offsetof(TABLE_LIST, timestamp), ++ static_cast(my_offsetof(TABLE_LIST, timestamp)), + FILE_OPTIONS_TIMESTAMP}, + {{ C_STRING_WITH_LEN("create-version")}, +- my_offsetof(TABLE_LIST, file_version), ++ static_cast(my_offsetof(TABLE_LIST, file_version)), + FILE_OPTIONS_ULONGLONG}, + {{ C_STRING_WITH_LEN("source")}, +- my_offsetof(TABLE_LIST, source), ++ static_cast(my_offsetof(TABLE_LIST, source)), + FILE_OPTIONS_ESTRING}, + {{(char*) STRING_WITH_LEN("client_cs_name")}, +- my_offsetof(TABLE_LIST, view_client_cs_name), ++ static_cast(my_offsetof(TABLE_LIST, view_client_cs_name)), + FILE_OPTIONS_STRING}, + {{(char*) STRING_WITH_LEN("connection_cl_name")}, +- my_offsetof(TABLE_LIST, view_connection_cl_name), ++ static_cast(my_offsetof(TABLE_LIST, view_connection_cl_name)), + FILE_OPTIONS_STRING}, + {{(char*) STRING_WITH_LEN("view_body_utf8")}, +- my_offsetof(TABLE_LIST, view_body_utf8), ++ static_cast(my_offsetof(TABLE_LIST, view_body_utf8)), + FILE_OPTIONS_ESTRING}, + {{NullS, 0}, 0, + FILE_OPTIONS_STRING} diff -ruN ../mariadb55-server.orig/files/patch-storage_federated_ha_federated.cc ./files/patch-storage_federated_ha_federated.cc --- ../mariadb55-server.orig/files/patch-storage_federated_ha_federated.cc 1970-01-01 01:00:00.000000000 +0100 +++ ./files/patch-storage_federated_ha_federated.cc 2013-09-26 15:24:02.000000000 +0200 @@ -0,0 +1,11 @@ +--- storage/federated/ha_federated.cc.orig 2013-05-21 22:09:48.000000000 +0000 ++++ storage/federated/ha_federated.cc 2013-09-26 13:18:11.788196007 +0000 +@@ -828,7 +828,7 @@ + user:@hostname:port/db/table + Then password is a null string, so set to NULL + */ +- if ((share->password[0] == '\0')) ++ if (share->password[0] == '\0') + share->password= NULL; + } + else diff -ruN ../mariadb55-server.orig/files/patch-storage_pbxt_src_index_xt.cc ./files/patch-storage_pbxt_src_index_xt.cc --- ../mariadb55-server.orig/files/patch-storage_pbxt_src_index_xt.cc 1970-01-01 01:00:00.000000000 +0100 +++ ./files/patch-storage_pbxt_src_index_xt.cc 2013-09-26 15:24:02.000000000 +0200 @@ -0,0 +1,11 @@ +--- storage/pbxt/src/index_xt.cc.orig 2013-05-21 22:09:51.000000000 +0000 ++++ storage/pbxt/src/index_xt.cc 2013-09-26 13:09:54.533196113 +0000 +@@ -3719,7 +3719,7 @@ + } + printf("\n-----------------------------\n"); + printf("used blocks %d + free blocks %d = %d\n", block_count, free_count, block_count + free_count); +- printf("EOF = %"PRIu64", total blocks = %d\n", (xtWord8) xt_ind_node_to_offset(tab, tab->tab_ind_eof), (int) (XT_NODE_ID(tab->tab_ind_eof) - 1)); ++ printf("EOF = %" PRIu64 ", total blocks = %d\n", (xtWord8) xt_ind_node_to_offset(tab, tab->tab_ind_eof), (int) (XT_NODE_ID(tab->tab_ind_eof) - 1)); + printf("-----------------------------\n"); + xt_unlock_mutex_ns(&tab->tab_ind_lock); + #ifdef TRACK_ACTIVITY diff -ruN ../mariadb55-server.orig/files/patch-storage_pbxt_src_strutil_xt.cc ./files/patch-storage_pbxt_src_strutil_xt.cc --- ../mariadb55-server.orig/files/patch-storage_pbxt_src_strutil_xt.cc 1970-01-01 01:00:00.000000000 +0100 +++ ./files/patch-storage_pbxt_src_strutil_xt.cc 2013-09-26 15:24:02.000000000 +0200 @@ -0,0 +1,29 @@ +--- storage/pbxt/src/strutil_xt.cc.orig 2013-09-26 13:10:48.000000000 +0000 ++++ storage/pbxt/src/strutil_xt.cc 2013-09-26 13:11:00.930195669 +0000 +@@ -282,7 +282,7 @@ + if (!*ptr) + value = (xtInt8) 0; + else { +- sscanf(ptr, "%"PRId64, &value); ++ sscanf(ptr, "%" PRId64, &value); + if (!value && overflow) + *overflow = TRUE; + } +@@ -291,7 +291,7 @@ + + xtPublic void xt_int8_to_str(xtInt8 value, char *string) + { +- sprintf(string, "%"PRId64, value); ++ sprintf(string, "%" PRId64, value); + } + + xtPublic void xt_double_to_str(double value, int scale, char *string) +@@ -374,7 +374,7 @@ + } + + xt_double_to_str(v, 2, val_str); +- sprintf(string, "%s %s (%"PRId64" bytes)", val_str, unit, value); ++ sprintf(string, "%s %s (%" PRId64 " bytes)", val_str, unit, value); + } + + /* Version number must also be set in configure.in! */ diff -ruN ../mariadb55-server.orig/files/patch-storage_pbxt_src_util_xt.cc ./files/patch-storage_pbxt_src_util_xt.cc --- ../mariadb55-server.orig/files/patch-storage_pbxt_src_util_xt.cc 1970-01-01 01:00:00.000000000 +0100 +++ ./files/patch-storage_pbxt_src_util_xt.cc 2013-09-26 15:24:02.000000000 +0200 @@ -0,0 +1,11 @@ +--- storage/pbxt/src/util_xt.cc.orig 2013-05-21 22:09:48.000000000 +0000 ++++ storage/pbxt/src/util_xt.cc 2013-09-26 13:11:28.416414639 +0000 +@@ -395,7 +395,7 @@ + { + char buffer[200]; + +- sprintf(buffer, "%"PRId64, val); ++ sprintf(buffer, "%" PRId64, val); + return xt_sb_concat(self, dbuf, buffer); + } + --- mariadb-server-5.5.31.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 13:50:13 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 27FD760F; Thu, 26 Sep 2013 13:50:13 +0000 (UTC) (envelope-from edwin@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 F3E272B09; Thu, 26 Sep 2013 13:50:12 +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 r8QDoCQP057888; Thu, 26 Sep 2013 13:50:12 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QDoCDh057887; Thu, 26 Sep 2013 13:50:12 GMT (envelope-from edwin) Date: Thu, 26 Sep 2013 13:50:12 GMT Message-Id: <201309261350.r8QDoCDh057887@freefall.freebsd.org> To: freebsd@grem.de, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182408: [PATCH] databases/mariadb55-server: Allow building mariadb with libc++ and clang 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: Thu, 26 Sep 2013 13:50:13 -0000 Synopsis: [PATCH] databases/mariadb55-server: Allow building mariadb with libc++ and clang State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Thu Sep 26 13:50:12 UTC 2013 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182408 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 14:00:02 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id EC0EEBFD for ; Thu, 26 Sep 2013 14:00:01 +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 CA56F2BA8 for ; Thu, 26 Sep 2013 14:00:01 +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 r8QE01Lc058409 for ; Thu, 26 Sep 2013 14:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QE01v1058408; Thu, 26 Sep 2013 14:00:01 GMT (envelope-from gnats) Resent-Date: Thu, 26 Sep 2013 14:00:01 GMT Resent-Message-Id: <201309261400.r8QE01v1058408@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, Ivan Voras Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 2952C9CC for ; Thu, 26 Sep 2013 13:57:11 +0000 (UTC) (envelope-from ivoras@lara.cc.fer.hr) Received: from lara.cc.fer.hr (lara.cc.fer.hr [IPv6:2001:b68:16:250::72:113]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A90102B77 for ; Thu, 26 Sep 2013 13:57:10 +0000 (UTC) Received: from lara.cc.fer.hr (localhost [127.0.0.1]) by lara.cc.fer.hr (8.14.7/8.14.6) with ESMTP id r8QDv5Fg089841 for ; Thu, 26 Sep 2013 15:57:06 +0200 (CEST) (envelope-from ivoras@lara.cc.fer.hr) Received: (from ivoras@localhost) by lara.cc.fer.hr (8.14.7/8.14.6/Submit) id r8QDv5vn089840; Thu, 26 Sep 2013 15:57:05 +0200 (CEST) (envelope-from ivoras) Message-Id: <201309261357.r8QDv5vn089840@lara.cc.fer.hr> Date: Thu, 26 Sep 2013 15:57:05 +0200 (CEST) From: Ivan Voras To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/182409: Update for databases/sqlcached X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Ivan Voras List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Sep 2013 14:00:02 -0000 >Number: 182409 >Category: ports >Synopsis: Update for databases/sqlcached >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Thu Sep 26 14:00:01 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Ivan Voras >Release: FreeBSD 9.2-PRERELEASE amd64 >Organization: >Environment: >Description: A patch to a newer version of the upstream sources. >How-To-Repeat: >Fix: I am not a ports committer. Somone needs to commit this for me. diff -urN sqlcached-old/Makefile sqlcached/Makefile --- sqlcached-old/Makefile 2012-11-17 06:55:25.000000000 +0100 +++ sqlcached/Makefile 2013-09-26 15:52:10.000000000 +0200 @@ -6,7 +6,7 @@ # PORTNAME= sqlcached -PORTVERSION= r4 +PORTVERSION= r6 CATEGORIES= databases net MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} EXTRACT_SUFX= .tgz @@ -27,8 +27,6 @@ PLIST_FILES= bin/${PORTNAME} etc/rc.d/${PORTNAME} post-patch: - @${REINPLACE_CMD} -E -e 's|^(.*FLAGS)=|\1?=|' \ - ${WRKSRC}/Makefile @${REINPLACE_CMD} 's|/usr/local|${PREFIX}|' \ ${WRKSRC}/FreeBSD/${PORTNAME} diff -urN sqlcached-old/distinfo sqlcached/distinfo --- sqlcached-old/distinfo 2011-03-20 13:48:05.000000000 +0100 +++ sqlcached/distinfo 2013-09-26 15:52:22.000000000 +0200 @@ -1,2 +1,2 @@ -SHA256 (sqlcached-r4.tgz) = aea9f0919e9b9d840f8c949367cf0ffc4f635f673b060cc084159a275fd87064 -SIZE (sqlcached-r4.tgz) = 26014 +SHA256 (sqlcached-r6.tgz) = 43e4c8852fa0854494f0f0fe12a523701208eabd8b7fd0dedc79d1bb45c952ed +SIZE (sqlcached-r6.tgz) = 26179 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 14:00:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 57741BFB for ; Thu, 26 Sep 2013 14:00:01 +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 4558F2BA5 for ; Thu, 26 Sep 2013 14:00:01 +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 r8QE01Lk058393 for ; Thu, 26 Sep 2013 14:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QE00vO058392; Thu, 26 Sep 2013 14:00:00 GMT (envelope-from gnats) Date: Thu, 26 Sep 2013 14:00:00 GMT Message-Id: <201309261400.r8QE00vO058392@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/182408: [PATCH] databases/mariadb55-server: Allow building mariadb with libc++ and clang X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Sep 2013 14:00:01 -0000 The following reply was made to PR ports/182408; it has been noted by GNATS. From: Edwin Groothuis To: never@nevermind.kiev.ua Cc: bug-followup@FreeBSD.org Subject: Re: ports/182408: [PATCH] databases/mariadb55-server: Allow building mariadb with libc++ and clang Date: Thu, 26 Sep 2013 13:50:11 UT Maintainer of databases/mariadb55-server, Please note that PR ports/182408 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/182408 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 14:00:09 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 D4CCAC33; Thu, 26 Sep 2013 14:00:09 +0000 (UTC) (envelope-from edwin@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 AADDC2BAE; Thu, 26 Sep 2013 14:00:09 +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 r8QE09L2058516; Thu, 26 Sep 2013 14:00:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QE09Dc058515; Thu, 26 Sep 2013 14:00:09 GMT (envelope-from edwin) Date: Thu, 26 Sep 2013 14:00:09 GMT Message-Id: <201309261400.r8QE09Dc058515@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ivoras@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182409: Update for databases/sqlcached 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: Thu, 26 Sep 2013 14:00:09 -0000 Synopsis: Update for databases/sqlcached Responsible-Changed-From-To: freebsd-ports-bugs->ivoras Responsible-Changed-By: edwin Responsible-Changed-When: Thu Sep 26 14:00:09 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182409 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 14:10:02 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 EC7C21A2 for ; Thu, 26 Sep 2013 14:10:01 +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 CB32D2C69 for ; Thu, 26 Sep 2013 14:10:01 +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 r8QEA18e059186 for ; Thu, 26 Sep 2013 14:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QEA1nW059185; Thu, 26 Sep 2013 14:10:01 GMT (envelope-from gnats) Resent-Date: Thu, 26 Sep 2013 14:10:01 GMT Resent-Message-Id: <201309261410.r8QEA1nW059185@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, Ivan Voras 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 73CC6D3 for ; Thu, 26 Sep 2013 14:08:05 +0000 (UTC) (envelope-from ivoras@lara.cc.fer.hr) Received: from lara.cc.fer.hr (lara.cc.fer.hr [IPv6:2001:b68:16:250::72:113]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id F1CFA2C34 for ; Thu, 26 Sep 2013 14:08:04 +0000 (UTC) Received: from lara.cc.fer.hr (localhost [127.0.0.1]) by lara.cc.fer.hr (8.14.7/8.14.6) with ESMTP id r8QE82BV091363 for ; Thu, 26 Sep 2013 16:08:02 +0200 (CEST) (envelope-from ivoras@lara.cc.fer.hr) Received: (from ivoras@localhost) by lara.cc.fer.hr (8.14.7/8.14.6/Submit) id r8QE82lR091362; Thu, 26 Sep 2013 16:08:02 +0200 (CEST) (envelope-from ivoras) Message-Id: <201309261408.r8QE82lR091362@lara.cc.fer.hr> Date: Thu, 26 Sep 2013 16:08:02 +0200 (CEST) From: Ivan Voras To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/182410: Updated port for databases/mdcached X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Ivan Voras List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Sep 2013 14:10:02 -0000 >Number: 182410 >Category: ports >Synopsis: Updated port for databases/mdcached >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Thu Sep 26 14:10:01 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Ivan Voras >Release: FreeBSD 9.2-PRERELEASE amd64 >Organization: >Environment: >Description: Updated version of the port. I am not a ports committer, somebody needs to commit this for me. >How-To-Repeat: >Fix: diff -urN mdcached-old/Makefile mdcached/Makefile --- mdcached-old/Makefile 2013-09-26 16:02:03.000000000 +0200 +++ mdcached/Makefile 2013-09-26 16:03:41.000000000 +0200 @@ -2,7 +2,7 @@ # $FreeBSD: databases/mdcached/Makefile 327717 2013-09-20 16:13:47Z bapt $ PORTNAME= mdcached -PORTVERSION= 1.0.6 +PORTVERSION= 1.0.7 CATEGORIES= databases net MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} EXTRACT_SUFX= .tgz @@ -15,6 +15,7 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/${PORTNAME} USE_LDCONFIG= yes MAN1= ${PORTNAME}.1 +MAKE_JOBS_SAFE= yes PORTDOCS= UserGuide.txt mdcached.txt diff -urN mdcached-old/distinfo mdcached/distinfo --- mdcached-old/distinfo 2013-09-26 16:02:05.000000000 +0200 +++ mdcached/distinfo 2013-09-26 16:02:18.000000000 +0200 @@ -1,2 +1,2 @@ -SHA256 (mdcached-1.0.6.tgz) = a301d41429909dc26570247a04b399b8ea3e6e78e606d82d84707df17a207b03 -SIZE (mdcached-1.0.6.tgz) = 277271 +SHA256 (mdcached-1.0.7.tgz) = 7a28179aec83ba5e2305e1616fbf8baa8b00f0fd4a87002579d65ca2239ec040 +SIZE (mdcached-1.0.7.tgz) = 282748 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 14:10:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id B80C41D3; Thu, 26 Sep 2013 14:10:09 +0000 (UTC) (envelope-from edwin@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 8EFA22C6C; Thu, 26 Sep 2013 14:10:09 +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 r8QEA9bO059271; Thu, 26 Sep 2013 14:10:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QEA9lf059270; Thu, 26 Sep 2013 14:10:09 GMT (envelope-from edwin) Date: Thu, 26 Sep 2013 14:10:09 GMT Message-Id: <201309261410.r8QEA9lf059270@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ivoras@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182410: Updated port for databases/mdcached 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: Thu, 26 Sep 2013 14:10:09 -0000 Synopsis: Updated port for databases/mdcached Responsible-Changed-From-To: freebsd-ports-bugs->ivoras Responsible-Changed-By: edwin Responsible-Changed-When: Thu Sep 26 14:10:09 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182410 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 14:20:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 8D63C8FE for ; Thu, 26 Sep 2013 14:20:01 +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 6C5AE2D29 for ; Thu, 26 Sep 2013 14:20:01 +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 r8QEK1Od060663 for ; Thu, 26 Sep 2013 14:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QEK1wT060662; Thu, 26 Sep 2013 14:20:01 GMT (envelope-from gnats) Resent-Date: Thu, 26 Sep 2013 14:20:01 GMT Resent-Message-Id: <201309261420.r8QEK1wT060662@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, Sascha Holzleiter Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 50651485 for ; Thu, 26 Sep 2013 14:12:57 +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 3E2EA2CB2 for ; Thu, 26 Sep 2013 14:12:57 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8QECvJb004744 for ; Thu, 26 Sep 2013 14:12:57 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8QECvoJ004741; Thu, 26 Sep 2013 14:12:57 GMT (envelope-from nobody) Message-Id: <201309261412.r8QECvoJ004741@oldred.freebsd.org> Date: Thu, 26 Sep 2013 14:12:57 GMT From: Sascha Holzleiter To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182411: mail/thunderbird: Does not build with poudriere on 9.1 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: Thu, 26 Sep 2013 14:20:01 -0000 >Number: 182411 >Category: ports >Synopsis: mail/thunderbird: Does not build with poudriere on 9.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Sep 26 14:20:01 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Sascha Holzleiter >Release: 9.1-RELEASE-p7 >Organization: >Environment: 9.1-RELEASE-p7 FreeBSD 9.1-RELEASE-p7 #0: Mon Sep 9 21:34:37 UTC 2013 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Building mail/thunderbird with poudriere ends with a clang error: 1. parser at end of file 2. Per-module optimization passes 3. Running pass 'CallGraph Pass Manager' on module '/wrkdirs/usr/ports/mail/thunderbird/work/comm-esr24/mailnews/local/src/nsMsgMaildirStore.cpp'. 4. Running pass 'Value Propagation' on function '@_ZN17nsMsgMaildirStore10CopyFolderEP12nsIMsgFolderS1_bP12nsIMsgWindowP25nsIMsgCopyServiceListener' clang++: error: unable to execute command: Abort trap: 6 (core dumped) clang++: error: clang frontend command failed due to signal (use -v to see invocation) clang++: note: diagnostic msg: Please submit a bug report to http://llvm.org/bugs/ and include command line arguments and all diagnostic information. clang++: note: diagnostic msg: Preprocessed source(s) and associated run script(s) are located at: clang++: note: diagnostic msg: /tmp/nsMsgMaildirStore-vNG5Vx.ii clang++: note: diagnostic msg: /tmp/nsMsgMaildirStore-vNG5Vx.sh gmake[6]: *** [nsMsgMaildirStore.o] Error 254 The full poudriere log can be found here: http://snippets.blumenschaender.de/thunderbird_build.log.bz2 >How-To-Repeat: Build mail/thunderbird with poudriere on 9.1-RELEASE >Fix: Adding USE_GCC=4.6 to the Makefile fixes it for me so maybe this is some problem with the 9.1 system clang version. Maybe USE_GCC=yes is already enough... >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 14:20:10 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 1354793A; Thu, 26 Sep 2013 14:20:10 +0000 (UTC) (envelope-from edwin@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 DE3A32D2A; Thu, 26 Sep 2013 14:20:09 +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 r8QEK9F3060742; Thu, 26 Sep 2013 14:20:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QEK9hY060741; Thu, 26 Sep 2013 14:20:09 GMT (envelope-from edwin) Date: Thu, 26 Sep 2013 14:20:09 GMT Message-Id: <201309261420.r8QEK9hY060741@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gecko@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182411: mail/thunderbird: Does not build with poudriere on 9.1 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: Thu, 26 Sep 2013 14:20:10 -0000 Synopsis: mail/thunderbird: Does not build with poudriere on 9.1 Responsible-Changed-From-To: freebsd-ports-bugs->gecko Responsible-Changed-By: edwin Responsible-Changed-When: Thu Sep 26 14:20:09 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182411 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 14:30:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 938C9D4E for ; Thu, 26 Sep 2013 14: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 732212DD0 for ; Thu, 26 Sep 2013 14: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 r8QEU0ss061414 for ; Thu, 26 Sep 2013 14: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 r8QEU08A061413; Thu, 26 Sep 2013 14:30:00 GMT (envelope-from gnats) Resent-Date: Thu, 26 Sep 2013 14:30:00 GMT Resent-Message-Id: <201309261430.r8QEU08A061413@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, Alex Dupre Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 7914CB74 for ; Thu, 26 Sep 2013 14:24:40 +0000 (UTC) (envelope-from ale@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 587972D80 for ; Thu, 26 Sep 2013 14:24:40 +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 r8QEOeB1060904 for ; Thu, 26 Sep 2013 14:24:40 GMT (envelope-from ale@freefall.freebsd.org) Received: (from ale@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QEOerp060903; Thu, 26 Sep 2013 14:24:40 GMT (envelope-from ale) Message-Id: <201309261424.r8QEOerp060903@freefall.freebsd.org> Date: Thu, 26 Sep 2013 14:24:40 GMT From: Alex Dupre To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/182412: graphics/opencv-core doesn't build on 8.4-RELEASE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Alex Dupre List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Sep 2013 14:30:00 -0000 >Number: 182412 >Category: ports >Synopsis: graphics/opencv-core doesn't build on 8.4-RELEASE >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Sep 26 14:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Alex Dupre >Release: FreeBSD 8.4-RELEASE amd64 >Organization: >Environment: System: FreeBSD 8.4-RELEASE amd64 on Poudriere jail >Description: opencv-core doesn't build. Compiler error attached. >How-To-Repeat: >Fix: --- opencv-core.log begins here --- /usr/bin/make -f modules/ts/CMakeFiles/opencv_ts_pch_dephelp.dir/build.make modules/ts/CMakeFiles/opencv_ts_pch_dephelp.dir/build /usr/local/bin/cmake -E cmake_progress_report /wrkdirs/usr/ports/graphics/opencv-core/work/OpenCV-2.3.1/CMakeFiles 77 [ 26%] Building CXX object modules/ts/CMakeFiles/opencv_ts_pch_dephelp.dir/opencv_ts_pch_dephelp.o cd /wrkdirs/usr/ports/graphics/opencv-core/work/OpenCV-2.3.1/modules/ts && /usr/local/libexec/ccache/c++ -DCVAPI_EXPORTS -DGTEST_CREATE_SHARED_LIBRARY=1 -DHAVE_CVCONFIG_H -O2 -pipe -fno-strict-aliasing -Wall -Wno-long-long -pthread -ffunction-sections -O2 -pipe -fno-strict-aliasing -fomit-frame-pointer -msse -msse2 -DNDEBUG -I/wrkdirs/usr/ports/graphics/opencv-core/work/OpenCV-2.3.1/. -I/wrkdirs/usr/ports/graphics/opencv-core/work/OpenCV-2.3.1 -I/wrkdirs/usr/ports/graphics/opencv-core/work/OpenCV-2.3.1/include -I/wrkdirs/usr/ports/graphics/opencv-core/work/OpenCV-2.3.1/include/opencv -I/wrkdirs/usr/ports/graphics/opencv-core/work/OpenCV-2.3.1/modules/ts/include -I/wrkdirs/usr/ports/graphics/opencv-core/work/OpenCV-2.3.1/modules/ts/src -I/wrkdirs/usr/ports/graphics/opencv-core/work/OpenCV-2.3.1/modules/ts -I/wrkdirs/usr/ports/graphics/opencv-core/work/OpenCV-2.3.1/modules/ts/../core/include -o CMakeFiles/opencv_ts_pch_dephelp.dir/opencv_ts_pch_dephelp.o -c /wrkdirs/usr/ports/gra phics/opencv-core/work/OpenCV-2.3.1/modules/ts/opencv_ts_pch_dephelp.cxx In file included from /wrkdirs/usr/ports/graphics/opencv-core/work/OpenCV-2.3.1/modules/ts/include/opencv2/ts/ts.hpp:10, from /wrkdirs/usr/ports/graphics/opencv-core/work/OpenCV-2.3.1/modules/ts/src/precomp.hpp:7, from /wrkdirs/usr/ports/graphics/opencv-core/work/OpenCV-2.3.1/modules/ts/opencv_ts_pch_dephelp.cxx:1: /wrkdirs/usr/ports/graphics/opencv-core/work/OpenCV-2.3.1/modules/ts/include/opencv2/ts/ts_gtest.h:1522:18: error: missing binary operator before token "(" In file included from /wrkdirs/usr/ports/graphics/opencv-core/work/OpenCV-2.3.1/modules/ts/opencv_ts_pch_dephelp.cxx:1: /wrkdirs/usr/ports/graphics/opencv-core/work/OpenCV-2.3.1/modules/ts/src/precomp.hpp:12:7: warning: no newline at end of file *** Error code 1 Stop in /wrkdirs/usr/ports/graphics/opencv-core/work/OpenCV-2.3.1. *** Error code 1 Stop in /wrkdirs/usr/ports/graphics/opencv-core/work/OpenCV-2.3.1. *** Error code 1 Stop in /wrkdirs/usr/ports/graphics/opencv-core/work/OpenCV-2.3.1. *** Error code 1 Stop in /usr/ports/graphics/opencv-core. ===> Cleaning for opencv-core-2.3.1_7 build of /usr/ports/graphics/opencv-core ended at Thu Sep 26 14:10:57 UTC 2013 build time: 00:01:57 --- opencv-core.log ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 14:30:09 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 3F626E59; Thu, 26 Sep 2013 14:30:08 +0000 (UTC) (envelope-from edwin@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 7DCAB2DD6; Thu, 26 Sep 2013 14:30:08 +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 r8QEU85r061550; Thu, 26 Sep 2013 14:30:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QEU80S061549; Thu, 26 Sep 2013 14:30:08 GMT (envelope-from edwin) Date: Thu, 26 Sep 2013 14:30:08 GMT Message-Id: <201309261430.r8QEU80S061549@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jhale@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182412: graphics/opencv-core doesn't build on 8.4-RELEASE 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: Thu, 26 Sep 2013 14:30:09 -0000 Synopsis: graphics/opencv-core doesn't build on 8.4-RELEASE Responsible-Changed-From-To: freebsd-ports-bugs->jhale Responsible-Changed-By: edwin Responsible-Changed-When: Thu Sep 26 14:30:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182412 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 15:30:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id B66B882C for ; Thu, 26 Sep 2013 15: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 94986220F for ; Thu, 26 Sep 2013 15: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 r8QFU0fr070721 for ; Thu, 26 Sep 2013 15: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 r8QFU00Z070720; Thu, 26 Sep 2013 15:30:00 GMT (envelope-from gnats) Resent-Date: Thu, 26 Sep 2013 15:30:00 GMT Resent-Message-Id: <201309261530.r8QFU00Z070720@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, Michael Scholz 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 B8BEB5C5 for ; Thu, 26 Sep 2013 15:20:41 +0000 (UTC) (envelope-from mike@fth-devel.net) Received: from fth-devel.net (pumpkin.fth-devel.net [IPv6:2001:470:1f0b:166c:c0ff:ee:2:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 45F5B216D for ; Thu, 26 Sep 2013 15:20:41 +0000 (UTC) Received: from pumpkin.fth-devel.net (localhost [127.0.0.1]) by fth-devel.net (8.14.7/8.14.7) with ESMTP id r8QFKcov069331 for ; Thu, 26 Sep 2013 17:20:38 +0200 (CEST) (envelope-from mike@pumpkin.fth-devel.net) Received: (from mike@localhost) by pumpkin.fth-devel.net (8.14.7/8.14.7/Submit) id r8QFKc83069330; Thu, 26 Sep 2013 17:20:38 +0200 (CEST) (envelope-from mike) Message-Id: <201309261520.r8QFKc83069330@pumpkin.fth-devel.net> Date: Thu, 26 Sep 2013 17:20:38 +0200 (CEST) From: Michael Scholz To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/182413: [maintainer update] [net/gateway6] fix build without gcc/g++ X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Michael Scholz List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Sep 2013 15:30:00 -0000 >Number: 182413 >Category: ports >Synopsis: [maintainer update] [net/gateway6] fix build without gcc/g++ >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Sep 26 15:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Michael Scholz >Release: FreeBSD 9.2-PRERELEASE amd64 >Organization: >Environment: System: FreeBSD pumpkin.fth-devel.net 9.2-PRERELEASE FreeBSD 9.2-PRERELEASE #0 r255878: Thu Sep 26 14:44:04 CEST 2013 root@pumpkin.fth-devel.net:/usr/obj/usr/src/sys/PUMPKIN amd64 >Description: $CC and $CXX are hardcoded to gcc and g++. A similar PR was sent on Sep 19, 2013 (ports/182230). Because the result of working through that PR with the committer (jgh) and the maintainer was deprecation of net/gateway6, the diff was not applied. >How-To-Repeat: In src.conf set WITHOUT_GCC=, recompile base and try to build the port. >Fix: --- gateway6.diff begins here --- Index: Makefile =================================================================== --- Makefile (revision 328353) +++ Makefile (working copy) @@ -3,7 +3,7 @@ PORTNAME= gateway6 PORTVERSION= 6.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net ipv6 MASTER_SITES= http://go6.net/4105/file.asp?file_id=166&foo=/ MASTER_SITES+= http://go6.net/4105/file.asp?file_id=166& @@ -12,41 +12,41 @@ MAINTAINER= mike@fth-devel.net COMMENT= Gateway6 Tunnel Setup Protocol Client - Free IPv6 tunnel +LICENSE= HEXAGTO +LICENSE_NAME= ${LICENSE} +LICENSE_FILE= ${WRKSRC}/CLIENT-LICENSE.TXT +LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept + CONFLICTS= freenet6-[0-9]* DEPRECATED= Unsupported upstream, consider using net/gogoc EXPIRATION_DATE= 2013-12-31 +OPTIONS_DEFINE= DOCS + USE_RC_SUBR= gateway6 +SUB_FILES= pkg-message + WRKSRC= ${WRKDIR}/gw6c-6_0_1 ETCDIR= ${PREFIX}/etc +MAN5= gw6c.conf.5 MAN8= gw6c.8 -MAN5= gw6c.conf.5 -GW6C_DATA= \ - CLIENT-LICENSE.TXT \ - INSTALL \ +GW6C_DATA= INSTALL \ README \ HEX_DC_0005_Gateway6_Client_Guide.pdf \ HEX_DC_0007_Gateway6_Client_Release_Notes.pdf +PORTDOCS= * -PKGMESSAGE= ${WRKDIR}/pkg-message -SUB_FILES= pkg-message - USES= gmake perl5 USE_PERL5= build MAKE_JOBS_UNSAFE=yes -MAKE_ARGS= target=freebsd installdir=${PREFIX} +MAKE_ARGS= target=freebsd CC="${CC}" CXX="${CXX}" \ + installdir="${PREFIX}" ETCDIR="${ETCDIR}" NO_STAGE= yes -.include +.include -post-install: -.for f in ${GW6C_DATA} - @${INSTALL_DATA} ${WRKSRC}/${f} ${DATADIR} -.endfor - @${CAT} ${PKGMESSAGE} - post-patch: @${REINPLACE_CMD} \ -e "s|/usr/local/etc/gw6|${PREFIX}|g" \ @@ -69,4 +69,15 @@ -e "s|template=linux|template=freebsd|g" \ ${WRKSRC}/tspc-advanced/man/man5/gw6c.conf.5 -.include +post-install: +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} +.for f in ${GW6C_DATA} + @${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} +.endfor +.endif + @${ECHO_MSG} + @${CAT} ${PKGMESSAGE} + @${ECHO_MSG} + +.include Index: pkg-plist =================================================================== --- pkg-plist (revision 328353) +++ pkg-plist (working copy) @@ -2,10 +2,5 @@ @unexec if cmp -s %D/etc/gw6c.conf.sample %D/etc/gw6c.conf; then rm -f %D/etc/gw6c.conf; fi etc/gw6c.conf.sample @exec if [ ! -f %D/etc/gw6c.conf ] ; then cp -p %D/%F %B/gw6c.conf; fi -%%DATADIR%%/CLIENT-LICENSE.TXT -%%DATADIR%%/INSTALL -%%DATADIR%%/README -%%DATADIR%%/HEX_DC_0005_Gateway6_Client_Guide.pdf -%%DATADIR%%/HEX_DC_0007_Gateway6_Client_Release_Notes.pdf %%DATADIR%%/freebsd.sh @dirrm %%DATADIR%% --- gateway6.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 15:50:02 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 08663641 for ; Thu, 26 Sep 2013 15:50:02 +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 CFCC0248B for ; Thu, 26 Sep 2013 15:50:01 +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 r8QFo1ml074304 for ; Thu, 26 Sep 2013 15:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QFo1uT074303; Thu, 26 Sep 2013 15:50:01 GMT (envelope-from gnats) Date: Thu, 26 Sep 2013 15:50:01 GMT Message-Id: <201309261550.r8QFo1uT074303@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Vitaly Magerya Subject: Re: ports/182033: [maintainer] make devel/wordgrinder build when gcc is missing X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Vitaly Magerya List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Sep 2013 15:50:02 -0000 The following reply was made to PR ports/182033; it has been noted by GNATS. From: Vitaly Magerya To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/182033: [maintainer] make devel/wordgrinder build when gcc is missing Date: Thu, 26 Sep 2013 18:46:58 +0300 This is a multi-part message in MIME format. --------------040209030807070001090701 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Here's an updated patch with new MASTER_SITE_SUBDIR; it must have changed at some point. BTW, it's 'editors/wordgrinder', not 'devel/wordgrinder'. You can find redports logs at [1]. Unfortunately, 10-CURRENT machines seem to be down at the moment, so no logs for that. Also, may I note that pkg-fallout@ messages about this port are getting boring, considering that a fix is already submitted? [1] https://redports.org/buildarchive/20130926120300-53781/ --------------040209030807070001090701 Content-Type: text/plain; charset=UTF-8; name="wordgrinder.diff.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="wordgrinder.diff.txt" diff -ruN wordgrinder.orig/Makefile wordgrinder/Makefile --- wordgrinder.orig/Makefile 2013-09-20 19:36:23.000000000 +0300 +++ wordgrinder/Makefile 2013-09-26 15:01:12.000000000 +0300 @@ -5,18 +5,19 @@ PORTVERSION= 0.3.3 CATEGORIES= editors MASTER_SITES= SF +MASTER_SITE_SUBDIR=${PORTNAME}/${PORTNAME} MAINTAINER= vmagerya@gmail.com COMMENT= A simple Unicode-aware console-based word processor +LICENSE= MIT + RUN_DEPENDS= ${LUA_MODLIBDIR}/lfs.so:${PORTSDIR}/devel/luafilesystem USE_LUA= 5.1+ USE_BZIP2= yes -LICENSE= MIT - MAN1= wordgrinder.1 PLIST_DIRS= share/doc/wordgrinder @@ -34,6 +35,8 @@ ${WRKSRC}/pmfile ${REINPLACE_CMD} 's,^LUACOMPILER =.*$$,LUACOMPILER = "${LUAC_CMD}",' \ ${WRKSRC}/tools/lua.pm + ${REINPLACE_CMD} "/CCOMPILER = /s,gcc,cc ," ${WRKSRC}/tools/c.pm + ${REINPLACE_CMD} "/CC=/s,gcc,cc ," ${WRKSRC}/pm do-build: (cd ${WRKSRC}; ./pm) --------------040209030807070001090701-- From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 16:20:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 8B5A6243 for ; Thu, 26 Sep 2013 16:20: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 68D7826B2 for ; Thu, 26 Sep 2013 16:20: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 r8QGK07R081073 for ; Thu, 26 Sep 2013 16:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QGK0Rg081072; Thu, 26 Sep 2013 16:20:00 GMT (envelope-from gnats) Resent-Date: Thu, 26 Sep 2013 16:20:00 GMT Resent-Message-Id: <201309261620.r8QGK0Rg081072@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, Horia Racoviceanu Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 6844BF25 for ; Thu, 26 Sep 2013 16:11:47 +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 45AE7262E for ; Thu, 26 Sep 2013 16:11:47 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8QGBk9K091958 for ; Thu, 26 Sep 2013 16:11:46 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8QGBkBx091955; Thu, 26 Sep 2013 16:11:46 GMT (envelope-from nobody) Message-Id: <201309261611.r8QGBkBx091955@oldred.freebsd.org> Date: Thu, 26 Sep 2013 16:11:46 GMT From: Horia Racoviceanu To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182414: New port: x11-fonts/fira Sans-serif and monospaced typeface for small screens 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: Thu, 26 Sep 2013 16:20:00 -0000 >Number: 182414 >Category: ports >Synopsis: New port: x11-fonts/fira Sans-serif and monospaced typeface for small screens >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Sep 26 16:20:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Horia Racoviceanu >Release: FreeBSD 9.1-RELEASE >Organization: >Environment: FreeBSD horia.lan 9.1-RELEASE-p7 FreeBSD 9.1-RELEASE-p7 #0: Mon Sep 9 21:34:37 UTC 2013 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: The Fira font family was designed to cover the legibility needs for a large range of handsets varying in screen quality and rendering. It comes in a Sans Serif with 4 weights (light, regular, medium and bold) all accompanied by italic styles. The package also includes a Mono Spaced variant with 2 weights (regular and bold). Available formats: Open Type, True Type, Web Font WWW: http://www.mozilla.org/en-US/styleguide/products/firefox-os/typeface/ >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # fira # fira/files # fira/files/pkg-message.in # fira/pkg-descr # fira/distinfo # fira/pkg-plist # fira/Makefile # echo c - fira mkdir -p fira > /dev/null 2>&1 echo c - fira/files mkdir -p fira/files > /dev/null 2>&1 echo x - fira/files/pkg-message.in sed 's/^X//' >fira/files/pkg-message.in << '13525cd8f85bbd1bb3ea45ed59f4343c' XMake sure that the freetype module is loaded. If it is not, add the following Xline to the "Modules" section of your X Windows configuration file: X X Load "freetype" X XAdd the following line to the "Files" section of X Windows configuration file: X X FontPath "/usr/local/lib/X11/fonts/fira/" X XNote: your X Windows configuration file is typically /etc/X11/xorg.conf 13525cd8f85bbd1bb3ea45ed59f4343c echo x - fira/pkg-descr sed 's/^X//' >fira/pkg-descr << '43a4e1c2dd6e6deab2ba546050173f01' XThe Fira font family was designed to cover the legibility needs for a Xlarge range of handsets varying in screen quality and rendering. It Xcomes in a Sans Serif with 4 weights (light, regular, medium and bold) Xall accompanied by italic styles. The package also includes a Mono XSpaced variant with 2 weights (regular and bold). X XAvailable formats: Open Type, True Type, Web Font X XWWW: http://www.mozilla.org/en-US/styleguide/products/firefox-os/typeface/ 43a4e1c2dd6e6deab2ba546050173f01 echo x - fira/distinfo sed 's/^X//' >fira/distinfo << '3ce65accae5a72a77ec6fe37a9cccd15' XSHA256 (fira-1.0.tar.gz) = f87bd7d1380e5a93a3743edd3d038b44c7460ea14c204b152b750f5551fd2531 XSIZE (fira-1.0.tar.gz) = 3973356 3ce65accae5a72a77ec6fe37a9cccd15 echo x - fira/pkg-plist sed 's/^X//' >fira/pkg-plist << '69973583ede205058d286d1d224a1dba' X%%TTF%%lib/X11/fonts/fira/FiraMono-Bold.ttf X%%TTF%%lib/X11/fonts/fira/FiraMono-Regular.ttf X%%OTF%%lib/X11/fonts/fira/FiraMonoOT-Bold.otf X%%OTF%%lib/X11/fonts/fira/FiraMonoOT-Regular.otf X%%TTF%%lib/X11/fonts/fira/FiraSans-Bold.ttf X%%TTF%%lib/X11/fonts/fira/FiraSans-BoldItalic.ttf X%%TTF%%lib/X11/fonts/fira/FiraSans-Light.ttf X%%TTF%%lib/X11/fonts/fira/FiraSans-LightItalic.ttf X%%TTF%%lib/X11/fonts/fira/FiraSans-Medium.ttf X%%TTF%%lib/X11/fonts/fira/FiraSans-MediumItalic.ttf X%%TTF%%lib/X11/fonts/fira/FiraSans-Regular.ttf X%%TTF%%lib/X11/fonts/fira/FiraSans-RegularItalic.ttf X%%OTF%%lib/X11/fonts/fira/FiraSansOT-Bold.otf X%%OTF%%lib/X11/fonts/fira/FiraSansOT-BoldItalic.otf X%%OTF%%lib/X11/fonts/fira/FiraSansOT-Light.otf X%%OTF%%lib/X11/fonts/fira/FiraSansOT-LightItalic.otf X%%OTF%%lib/X11/fonts/fira/FiraSansOT-Medium.otf X%%OTF%%lib/X11/fonts/fira/FiraSansOT-MediumItalic.otf X%%OTF%%lib/X11/fonts/fira/FiraSansOT-Regular.otf X%%OTF%%lib/X11/fonts/fira/FiraSansOT-RegularItalic.otf X%%WEBFONT%%www/fira/eot/FiraMono-Bold.eot X%%WEBFONT%%www/fira/eot/FiraMono-Regular.eot X%%WEBFONT%%www/fira/eot/FiraSans-Bold.eot X%%WEBFONT%%www/fira/eot/FiraSans-BoldItalic.eot X%%WEBFONT%%www/fira/eot/FiraSans-Light.eot X%%WEBFONT%%www/fira/eot/FiraSans-LightItalic.eot X%%WEBFONT%%www/fira/eot/FiraSans-Medium.eot X%%WEBFONT%%www/fira/eot/FiraSans-MediumItalic.eot X%%WEBFONT%%www/fira/eot/FiraSans-Regular.eot X%%WEBFONT%%www/fira/eot/FiraSans-RegularItalic.eot X%%WEBFONT%%www/fira/eot/FiraSansSC-Bold.eot X%%WEBFONT%%www/fira/eot/FiraSansSC-BoldItalic.eot X%%WEBFONT%%www/fira/eot/FiraSansSC-Light.eot X%%WEBFONT%%www/fira/eot/FiraSansSC-LightItalic.eot X%%WEBFONT%%www/fira/eot/FiraSansSC-Medium.eot X%%WEBFONT%%www/fira/eot/FiraSansSC-MediumItalic.eot X%%WEBFONT%%www/fira/eot/FiraSansSC-Regular.eot X%%WEBFONT%%www/fira/eot/FiraSansSC-RegularItalic.eot X%%WEBFONT%%www/fira/fira.css X%%WEBFONT%%www/fira/index.html X%%WEBFONT%%www/fira/ttf/FiraMono-Bold.ttf X%%WEBFONT%%www/fira/ttf/FiraMono-Regular.ttf X%%WEBFONT%%www/fira/ttf/FiraSans-Bold.ttf X%%WEBFONT%%www/fira/ttf/FiraSans-BoldItalic.ttf X%%WEBFONT%%www/fira/ttf/FiraSans-Light.ttf X%%WEBFONT%%www/fira/ttf/FiraSans-LightItalic.ttf X%%WEBFONT%%www/fira/ttf/FiraSans-Medium.ttf X%%WEBFONT%%www/fira/ttf/FiraSans-MediumItalic.ttf X%%WEBFONT%%www/fira/ttf/FiraSans-Regular.ttf X%%WEBFONT%%www/fira/ttf/FiraSans-RegularItalic.ttf X%%WEBFONT%%www/fira/woff/FiraMono-Bold.woff X%%WEBFONT%%www/fira/woff/FiraMono-Regular.woff X%%WEBFONT%%www/fira/woff/FiraSans-Bold.woff X%%WEBFONT%%www/fira/woff/FiraSans-BoldItalic.woff X%%WEBFONT%%www/fira/woff/FiraSans-Light.woff X%%WEBFONT%%www/fira/woff/FiraSans-LightItalic.woff X%%WEBFONT%%www/fira/woff/FiraSans-Medium.woff X%%WEBFONT%%www/fira/woff/FiraSans-MediumItalic.woff X%%WEBFONT%%www/fira/woff/FiraSans-Regular.woff X%%WEBFONT%%www/fira/woff/FiraSans-RegularItalic.woff X%%WEBFONT%%www/fira/woff/FiraSansOT-Light.woff X%%WEBFONT%%www/fira/woff/FiraSansSC-Bold.woff X%%WEBFONT%%www/fira/woff/FiraSansSC-BoldItalic.woff X%%WEBFONT%%www/fira/woff/FiraSansSC-Light.woff X%%WEBFONT%%www/fira/woff/FiraSansSC-LightItalic.woff X%%WEBFONT%%www/fira/woff/FiraSansSC-Medium.woff X%%WEBFONT%%www/fira/woff/FiraSansSC-MediumItalic.woff X%%WEBFONT%%www/fira/woff/FiraSansSC-Regular.woff X%%WEBFONT%%www/fira/woff/FiraSansSC-RegularItalic.woff X%%WEBFONT%%@dirrmtry www/fira/woff X%%WEBFONT%%@dirrmtry www/fira/ttf X%%WEBFONT%%@dirrmtry www/fira/eot X%%WEBFONT%%@dirrmtry www/fira X%%TTF%%@dirrmtry lib/X11/fonts/fira 69973583ede205058d286d1d224a1dba echo x - fira/Makefile sed 's/^X//' >fira/Makefile << 'eab923270d8a5e40e41eaa175227a9e5' X# Created by: Horia Racoviceanu X# $FreeBSD$ X XPORTNAME= fira XPORTVERSION= 1.0 XCATEGORIES= x11-fonts www X XMAINTAINER= horia@racoviceanu.com XCOMMENT= Sans-serif and monospaced typeface for small screens X XLICENSE= OFL XLICENSE_NAME= SIL OPEN FONT LICENSE Version 1.1 XLICENSE_FILE= ${WRKSRC}/LICENSE XLICENSE_PERMS= dist-mirror pkg-mirror auto-accept X XUSE_GITHUB= yes XGH_ACCOUNT= mozilla XGH_PROJECT= Fira XGH_TAGNAME= ${GH_COMMIT} XGH_COMMIT= 705ffff X XNO_BUILD= yes XNEED_ROOT= yes X XFONTSDIR= ${PREFIX}/${FONTSDIR_REL} XFONTSDIR_REL?= lib/X11/fonts/${PORTNAME} X XPORTDOCS= README.md XSUB_FILES= pkg-message X XOPTIONS_DEFINE= DOCS TTF OTF WEBFONT XOPTIONS_DEFAULT=TTF OTF XTTF_DESC= True Type XOTF_DESC= Open Type XWEBFONT_DESC= Web Font (EOT, WOFF, TTF, example HTML+CSS) XOPTIONS_SUB= yes X X.include X X.if ${PORT_OPTIONS:MTTF} || ${PORT_OPTIONS:MOTF} XBUILD_DEPENDS+= fc-cache:${PORTSDIR}/x11-fonts/fontconfig XRUN_DEPENDS:= ${BUILD_DEPENDS} X.endif X X.SILENT: X Xdo-install: X ${MKDIR} ${STAGEDIR}${FONTSDIR} X.if ${PORT_OPTIONS:MDOCS} X ${MKDIR} ${STAGEDIR}${DOCSDIR} X cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}/ X.endif X.if ${PORT_OPTIONS:MTTF} X ${INSTALL_DATA} ${WRKSRC}/ttf/${GH_PROJECT}*.ttf ${STAGEDIR}${FONTSDIR}/ X.endif X.if ${PORT_OPTIONS:MOTF} X ${INSTALL_DATA} ${WRKSRC}/otf/${GH_PROJECT}*.otf ${STAGEDIR}${FONTSDIR}/ X.endif X.if ${PORT_OPTIONS:MWEBFONT} X ${MKDIR} ${STAGEDIR}${WWWDIR} X ${MKDIR} ${STAGEDIR}${WWWDIR}/eot X ${MKDIR} ${STAGEDIR}${WWWDIR}/ttf X ${MKDIR} ${STAGEDIR}${WWWDIR}/woff X ${INSTALL_DATA} ${WRKSRC}/index.html ${STAGEDIR}${WWWDIR}/ X ${INSTALL_DATA} ${WRKSRC}/fira.css ${STAGEDIR}${WWWDIR}/ X ${INSTALL_DATA} ${WRKSRC}/eot/${GH_PROJECT}*.eot ${STAGEDIR}${WWWDIR}/eot/ X ${INSTALL_DATA} ${WRKSRC}/ttf/${GH_PROJECT}*.ttf ${STAGEDIR}${WWWDIR}/ttf/ X ${INSTALL_DATA} ${WRKSRC}/woff/${GH_PROJECT}*.woff ${STAGEDIR}${WWWDIR}/woff/ X.endif X Xpost-install: X.if ${PORT_OPTIONS:MTTF} || ${PORT_OPTIONS:MOTF} X @${ECHO_MSG} "===> Running fc-cache" X -${LOCALBASE}/bin/fc-cache -f -v ${FONTSDIR}/ X.endif X X.include eab923270d8a5e40e41eaa175227a9e5 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 16: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 9D92B877 for ; Thu, 26 Sep 2013 16: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 7C83E277F for ; Thu, 26 Sep 2013 16: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 r8QGU0S1083195 for ; Thu, 26 Sep 2013 16: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 r8QGU0BO083194; Thu, 26 Sep 2013 16:30:00 GMT (envelope-from gnats) Resent-Date: Thu, 26 Sep 2013 16:30:00 GMT Resent-Message-Id: <201309261630.r8QGU0BO083194@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, Gustau Pérez i Querol 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 C53906AE for ; Thu, 26 Sep 2013 16:26:21 +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 B2772274A for ; Thu, 26 Sep 2013 16:26:21 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8QGQLV6057180 for ; Thu, 26 Sep 2013 16:26:21 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8QGQL90057177; Thu, 26 Sep 2013 16:26:21 GMT (envelope-from nobody) Message-Id: <201309261626.r8QGQL90057177@oldred.freebsd.org> Date: Thu, 26 Sep 2013 16:26:21 GMT From: Gustau Pérez i Querol To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182415: [PATCH] Fix build of games/brutalchess with clang 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: Thu, 26 Sep 2013 16:30:00 -0000 >Number: 182415 >Category: ports >Synopsis: [PATCH] Fix build of games/brutalchess with clang >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Sep 26 16:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Gustau Pérez i Querol >Release: FreeBSD HED r255411 >Organization: >Environment: FreeBSD hast16 10.0-CURRENT FreeBSD 10.0-CURRENT #5 r255411+a9b6160 >Description: The build of games/brutalchess fails after the removal of gcc in base. The full URL of the build fail is: http://beefy2.isc.freebsd.org/bulk/head-amd64-default/2013-09-26_00h44m15s/logs/brutalchess-0.5.2_10.log The attached shar file contains two patches that fix the build. >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # patch-src-xboardplayer.cpp # patch-src-faileplayer.cpp # echo x - patch-src-xboardplayer.cpp sed 's/^X//' >patch-src-xboardplayer.cpp << '1f075925c8dc060960afdf3397e1380f' X--- src/xboardplayer.cpp.orig 2013-09-26 17:56:11.459895168 +0000 X+++ src/xboardplayer.cpp 2013-09-26 17:56:28.541896823 +0000 X@@ -14,6 +14,7 @@ X #include X #include X #include X+#include X X using namespace std; X 1f075925c8dc060960afdf3397e1380f echo x - patch-src-faileplayer.cpp sed 's/^X//' >patch-src-faileplayer.cpp << 'f77d845599e8454183b837b34570fa8f' X--- src/faileplayer.cpp.orig 2013-09-26 17:56:03.930896577 +0000 X+++ src/faileplayer.cpp 2013-09-26 17:56:21.336893851 +0000 X@@ -14,6 +14,7 @@ X #include X #include X #include X+#include X X using namespace std; X f77d845599e8454183b837b34570fa8f exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 16:40: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 B39B7E16 for ; Thu, 26 Sep 2013 16:40: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 90C282848 for ; Thu, 26 Sep 2013 16:40: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 r8QGe0Dt085008 for ; Thu, 26 Sep 2013 16:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QGe0T2085007; Thu, 26 Sep 2013 16:40:00 GMT (envelope-from gnats) Resent-Date: Thu, 26 Sep 2013 16:40:00 GMT Resent-Message-Id: <201309261640.r8QGe0T2085007@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, Sunpoet Po-Chuan Hsieh Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 3086BBE3; Thu, 26 Sep 2013 16:35:59 +0000 (UTC) (envelope-from sunpoet@sunpoet.net) Received: from sunpoet.net (sunpoet.net [220.135.71.135]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EF9F72805; Thu, 26 Sep 2013 16:35:58 +0000 (UTC) Received: by sunpoet.net (Postfix, from userid 1000) id 04B514840; Fri, 27 Sep 2013 00:36:12 +0800 (CST) Message-Id: <20130926163613.04B514840@sunpoet.net> Date: Fri, 27 Sep 2013 00:36:12 +0800 (CST) From: Sunpoet Po-Chuan Hsieh To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/182416: [PATCH] devel/p5-Test-CheckDeps: update to 0.007 Cc: culot@FreeBSD.org 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: Thu, 26 Sep 2013 16:40:00 -0000 >Number: 182416 >Category: ports >Synopsis: [PATCH] devel/p5-Test-CheckDeps: update to 0.007 >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: Thu Sep 26 16:40:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Sunpoet Po-Chuan Hsieh >Release: FreeBSD 9.2-PRERELEASE amd64 >Organization: The FreeBSD Project >Environment: System: FreeBSD bonjour.sunpoet.net 9.2-PRERELEASE FreeBSD 9.2-PRERELEASE #0 r255451: Wed Sep 11 02:56:55 CST >Description: - Update to 0.007 Port maintainer (culot@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_8 (mode: update, diff: SVN) >How-To-Repeat: >Fix: --- p5-Test-CheckDeps-0.007.patch begins here --- Index: Makefile =================================================================== --- Makefile (revision 328376) +++ Makefile (working copy) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Test-CheckDeps -PORTVERSION= 0.006 +PORTVERSION= 0.007 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -14,14 +14,14 @@ LICENSE_COMB= dual BUILD_DEPENDS= p5-CPAN-Meta>=2.120920:${PORTSDIR}/devel/p5-CPAN-Meta \ - p5-CPAN-Meta-Check>=0.004:${PORTSDIR}/devel/p5-CPAN-Meta-Check \ + p5-CPAN-Meta-Check>=0.007:${PORTSDIR}/devel/p5-CPAN-Meta-Check \ p5-Module-Build-Tiny>=0.021:${PORTSDIR}/devel/p5-Module-Build-Tiny RUN_DEPENDS:= ${BUILD_DEPENDS} +NO_STAGE= yes USES= perl5 -USE_PERL5= modbuild +USE_PERL5= modbuildtiny MAN3= Test::CheckDeps.3 -NO_STAGE= yes .include Index: distinfo =================================================================== --- distinfo (revision 328376) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (Test-CheckDeps-0.006.tar.gz) = 774c1455566d11746118fd95305d1dbd111af86eac78058918e72468c43d9bcb -SIZE (Test-CheckDeps-0.006.tar.gz) = 11024 +SHA256 (Test-CheckDeps-0.007.tar.gz) = 45d1d8c4f2639359216f443558cf757a5ef130bc7131bb533985471efcd26513 +SIZE (Test-CheckDeps-0.007.tar.gz) = 10980 --- p5-Test-CheckDeps-0.007.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 16:40:08 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 E7496E5A; Thu, 26 Sep 2013 16:40:08 +0000 (UTC) (envelope-from edwin@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 BC0C0284E; Thu, 26 Sep 2013 16:40:08 +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 r8QGe8Y3085144; Thu, 26 Sep 2013 16:40:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QGe8ld085143; Thu, 26 Sep 2013 16:40:08 GMT (envelope-from edwin) Date: Thu, 26 Sep 2013 16:40:08 GMT Message-Id: <201309261640.r8QGe8ld085143@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, culot@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182416: [PATCH] devel/p5-Test-CheckDeps: update to 0.007 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: Thu, 26 Sep 2013 16:40:09 -0000 Synopsis: [PATCH] devel/p5-Test-CheckDeps: update to 0.007 Responsible-Changed-From-To: freebsd-ports-bugs->culot Responsible-Changed-By: edwin Responsible-Changed-When: Thu Sep 26 16:40:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182416 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 17:30:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@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 9EBBD158; Thu, 26 Sep 2013 17:30:01 +0000 (UTC) (envelope-from yasu@utahime.org) Received: from gate.utahime.jp (ipq210.utahime.jp [183.180.29.210]) by mx1.freebsd.org (Postfix) with ESMTP id 2A6E32BEE; Thu, 26 Sep 2013 17:30:00 +0000 (UTC) Received: from eastasia.home.utahime.org (mail.home.utahime.org [192.168.174.1]) by gate.utahime.jp (Postfix) with ESMTP id 0673361F9D; Fri, 27 Sep 2013 02:29:54 +0900 (JST) Received: from eastasia.home.utahime.org (localhost [127.0.0.1]) by localhost-backdoor.home.utahime.org (Postfix) with ESMTP id CCEC84E652; Fri, 27 Sep 2013 02:29:53 +0900 (JST) Received: from [192.168.174.2] (rolling.home.utahime.org [192.168.174.2]) by eastasia.home.utahime.org (Postfix) with ESMTPA id A7F4E4E62F; Fri, 27 Sep 2013 02:29:53 +0900 (JST) Message-ID: <52446F0D.7030603@utahime.org> Date: Fri, 27 Sep 2013 02:29:49 +0900 From: Yasuhiro KIMURA User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.0 MIME-Version: 1.0 To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/182284: [PATCH] devel/magit: change directory of elisp files and etc. References: <201309211740.r8LHe0f2086028@freefall.freebsd.org> <523E8EC6.60207@utahime.org> <52430195.8020108@utahime.org> In-Reply-To: <52430195.8020108@utahime.org> Content-Type: multipart/mixed; boundary="------------000306030503050901020309" X-Virus-Scanned: ClamAV using ClamSMTP 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: Thu, 26 Sep 2013 17:30:01 -0000 This is a multi-part message in MIME format. --------------000306030503050901020309 Content-Type: text/plain; charset=Shift_JIS Content-Transfer-Encoding: 7bit Forget to remove unnecessary post-install target. So please commit attached patch instead of previous ones. Regards. --------------000306030503050901020309 Content-Type: text/plain; charset=Shift_JIS; name="patch-magit" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="patch-magit" SW5kZXg6IE1ha2VmaWxlCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KLS0tIE1ha2VmaWxlCShyZXZpc2lvbiAz MjgzNzApCisrKyBNYWtlZmlsZQkod29ya2luZyBjb3B5KQpAQCAtMSwxOSArMSwzMSBAQAor IyBDcmVhdGVkIGJ5OiBKdW4gS3VyaXlhbWEgPGt1cml5YW1hQEZyZWVCU0Qub3JnPgogIyAk RnJlZUJTRCQKIAogUE9SVE5BTUU9CW1hZ2l0CiBQT1JUVkVSU0lPTj0JMS4yLjAKLVBPUlRS RVZJU0lPTj0JMQorUE9SVFJFVklTSU9OPQkyCiBDQVRFR09SSUVTPQlkZXZlbCBlbGlzcAog TUFTVEVSX1NJVEVTPQkke01BU1RFUl9TSVRFX0xPQ0FMfSBcCiAJCWh0dHA6Ly9jbG91ZC5n aXRodWIuY29tL2Rvd25sb2Fkcy9tYWdpdC9tYWdpdC8KIE1BU1RFUl9TSVRFX1NVQkRJUj0J a3VyaXlhbWEKK1BLR05BTUVTVUZGSVg9CS0ke0VNQUNTX1BPUlRfTkFNRX0KIAogTUFJTlRB SU5FUj0Ja3VyaXlhbWFARnJlZUJTRC5vcmcKIENPTU1FTlQ9CUludGVyZmFjZSB0byBHaXQg Zm9yIEVtYWNzCiAKK0xJQ0VOU0U9CUdGREwgR1BMdjMKK0xJQ0VOU0VfQ09NQj0JbXVsdGkK KworUlVOX0RFUEVORFM9CWdpdD4wOiR7UE9SVFNESVJ9L2RldmVsL2dpdAorCitVU0VTPQkJ Z21ha2UKIFVTRV9FTUFDUz0JWUVTCi1VU0VfR01BS0U9CVlFUwogSU5GTz0JCW1hZ2l0CiAK LU5PX1NUQUdFPQl5ZXMKK0VMSVNQRElSPQkke0VNQUNTX1ZFUlNJT05fU0lURV9MSVNQRElS fS8ke1BPUlROQU1FfQorCitNQUtFX0VOVis9CUVMSVNQRElSPSR7U1RBR0VESVJ9JHtQUkVG SVh9LyR7RUxJU1BESVJ9IFwKKwkJSU5GT0RJUj0ke1NUQUdFRElSfSR7UFJFRklYfS8ke0lO Rk9fUEFUSH0KK1BMSVNUX1NVQis9CUVMSVNQRElSPSR7RUxJU1BESVJ9CisKIC5pbmNsdWRl IDxic2QucG9ydC5taz4KSW5kZXg6IGZpbGVzL3BhdGNoLU1ha2VmaWxlCj09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT0KLS0tIGZpbGVzL3BhdGNoLU1ha2VmaWxlCShyZXZpc2lvbiAzMjgzNzApCisrKyBmaWxl cy9wYXRjaC1NYWtlZmlsZQkod29ya2luZyBjb3B5KQpAQCAtMSwyMSArMSwzMCBAQAotLS0t IE1ha2VmaWxlLm9yaWcJMjAxMi0wMi0yNSAyMDoxMTowOC4xNTk3MTExMDIgKzA5MDAKLSsr KyBNYWtlZmlsZQkyMDEyLTAyLTI1IDIwOjEzOjM0LjE1MjM5ODYyNCArMDkwMAotQEAgLTYx LDEzICs2MSwxMyBAQAorLS0tIE1ha2VmaWxlLm9yaWcJMjAxMi0wOS0yNSAwNDo0MToxOS4w MDAwMDAwMDAgKzA5MDAKKysrKyBNYWtlZmlsZQkyMDEzLTA5LTIxIDIzOjAxOjA0LjAwMDAw MDAwMCArMDkwMAorQEAgLTEsNSArMSw1IEBACisgVkVSU0lPTj0xLjIuMAorLUVNQUNTPWVt YWNzCisrI0VNQUNTPWVtYWNzCisgUFJFRklYPS91c3IvbG9jYWwKKyBTWVNDT05GRElSPS9l dGMKKyBFTFM9bWFnaXQuZWwgbWFnaXQtc3ZuLmVsIG1hZ2l0LXRvcGdpdC5lbCBtYWdpdC1z dGdpdC5lbCBtYWdpdC1rZXktbW9kZS5lbCBtYWdpdC1iaXNlY3QuZWwgbWFnaXQtd2lwLmVs IHJlYmFzZS1tb2RlLmVsIG1hZ2l0LWJsYW1lLmVsCitAQCAtNjQsMTUgKzY0LDEzIEBACisg aW5zdGFsbDogaW5zdGFsbF9jb3JlIGluc3RhbGxfZG9jcworIAogIGluc3RhbGxfY29yZTog Y29yZQotIAlta2RpciAtcCAkKERFU1RESVIpJChQUkVGSVgpL3NoYXJlL2VtYWNzL3NpdGUt bGlzcAotIAlpbnN0YWxsIC1tIDY0NCAkKEVMUykgJChFTENTKSAkKERFU1RESVIpJChQUkVG SVgpL3NoYXJlL2VtYWNzL3NpdGUtbGlzcAorLQlta2RpciAtcCAkKERFU1RESVIpJChQUkVG SVgpL3NoYXJlL2VtYWNzL3NpdGUtbGlzcAorLQlpbnN0YWxsIC1tIDY0NCAkKEVMUykgJChF TENTKSAkKERFU1RESVIpJChQUkVGSVgpL3NoYXJlL2VtYWNzL3NpdGUtbGlzcAogLQlta2Rp ciAtcCAkKERFU1RESVIpJChTWVNDT05GRElSKS9lbWFjcy9zaXRlLXN0YXJ0LmQKIC0JaW5z dGFsbCAtbSA2NDQgNTBtYWdpdC5lbCAkKERFU1RESVIpJChTWVNDT05GRElSKS9lbWFjcy9z aXRlLXN0YXJ0LmQvNTBtYWdpdC5lbAotKwlta2RpciAtcCAkKERFU1RESVIpJChQUkVGSVgp JChTWVNDT05GRElSKS9lbWFjcy9zaXRlLXN0YXJ0LmQKLSsJaW5zdGFsbCAtbSA2NDQgNTBt YWdpdC5lbCAkKERFU1RESVIpJChQUkVGSVgpJChTWVNDT05GRElSKS9lbWFjcy9zaXRlLXN0 YXJ0LmQvNTBtYWdpdC5lbAorKwlta2RpciAtcCAkKEVMSVNQRElSKQorKwlpbnN0YWxsIC1t IDY0NCAkKEVMUykgJChFTENTKSAkKEVMSVNQRElSKQogIAogIGluc3RhbGxfZG9jczogZG9j cwogLQlta2RpciAtcCAkKERFU1RESVIpJChQUkVGSVgpL3NoYXJlL2luZm8KIC0JaW5zdGFs bCAtbSA2NDQgbWFnaXQuaW5mbyAkKERFU1RESVIpJChQUkVGSVgpL3NoYXJlL2luZm8KIC0J aW5zdGFsbC1pbmZvIC0taW5mby1kaXI9JChERVNURElSKSQoUFJFRklYKS9zaGFyZS9pbmZv ICQoREVTVERJUikkKFBSRUZJWCkvc2hhcmUvaW5mby9tYWdpdC5pbmZvCi0rCW1rZGlyIC1w ICQoREVTVERJUikkKFBSRUZJWCkvaW5mbwotKwlpbnN0YWxsIC1tIDY0NCBtYWdpdC5pbmZv ICQoREVTVERJUikkKFBSRUZJWCkvaW5mbwotKwlpbnN0YWxsLWluZm8gLS1pbmZvLWRpcj0k KERFU1RESVIpJChQUkVGSVgpL2luZm8gJChERVNURElSKSQoUFJFRklYKS9pbmZvL21hZ2l0 LmluZm8KKysJbWtkaXIgLXAgJChJTkZPRElSKQorKwlpbnN0YWxsIC1tIDY0NCBtYWdpdC5p bmZvICQoSU5GT0RJUikKKysJaW5zdGFsbC1pbmZvIC0taW5mby1kaXI9JChJTkZPRElSKSAk KElORk9ESVIpL21hZ2l0LmluZm8KICAKICBpbnN0YWxsX2NvbnRyaWI6IGNvbnRyaWIKICAJ bWtkaXIgLXAgJChERVNURElSKSQoUFJFRklYKS9zaGFyZS9lbWFjcy9zaXRlLWxpc3AKSW5k ZXg6IHBrZy1kZXNjcgo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09Ci0tLSBwa2ctZGVzY3IJKHJldmlzaW9uIDMy ODM3MCkKKysrIHBrZy1kZXNjcgkod29ya2luZyBjb3B5KQpAQCAtNCw0ICs0LDQgQEAKIGNo YW5nZXMuICBUaGVyZSBpcyBzdXBwb3J0IGZvciBjaGVycnkgcGlja2luZywgcmV2ZXJ0aW5n LCBtZXJnaW5nLAogcmViYXNpbmcsIGFuZCBvdGhlciBjb21tb24gR2l0IG9wZXJhdGlvbnMu CiAKLVdXVzogaHR0cDovL3BoaWxqYWNrc29uLmdpdGh1Yi5jb20vbWFnaXQvCitXV1c6IGh0 dHA6Ly9tYWdpdC5naXRodWIuaW8vbWFnaXQvCkluZGV4OiBwa2ctbWVzc2FnZQo9PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09Ci0tLSBwa2ctbWVzc2FnZQkocmV2aXNpb24gMCkKKysrIHBrZy1tZXNzYWdlCSh3 b3JraW5nIGNvcHkpCkBAIC0wLDAgKzEsNiBAQAorKioqKioqKioqKioqKioqKioqKioqKioq KioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKgorVG8gdXNl IE1hZ2l0LCB5b3Ugc2hvdWxkIGFkZCBmb2xsb3dpbmcgbGluZSB0byB5b3VyIC5lbWFjcyBm aWxlOgorCisocmVxdWlyZSAnbWFnaXQpCisKKyoqKioqKioqKioqKioqKioqKioqKioqKioq KioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioKClByb3BlcnR5 IGNoYW5nZXMgb246IHBrZy1tZXNzYWdlCl9fX19fX19fX19fX19fX19fX19fX19fX19fX19f X19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX18KQWRkZWQ6IHN2bjptaW1l LXR5cGUKIyMgLTAsMCArMSAjIwordGV4dC9wbGFpbgpcIE5vIG5ld2xpbmUgYXQgZW5kIG9m IHByb3BlcnR5CkFkZGVkOiBmYnNkOm5va2V5d29yZHMKIyMgLTAsMCArMSAjIworeWVzClwg Tm8gbmV3bGluZSBhdCBlbmQgb2YgcHJvcGVydHkKQWRkZWQ6IHN2bjplb2wtc3R5bGUKIyMg LTAsMCArMSAjIworbmF0aXZlClwgTm8gbmV3bGluZSBhdCBlbmQgb2YgcHJvcGVydHkKSW5k ZXg6IHBrZy1wbGlzdAo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09Ci0tLSBwa2ctcGxpc3QJKHJldmlzaW9uIDMy ODM3MCkKKysrIHBrZy1wbGlzdAkod29ya2luZyBjb3B5KQpAQCAtMSwyMSArMSwxOSBAQAot ZXRjL2VtYWNzL3NpdGUtc3RhcnQuZC81MG1hZ2l0LmVsCi1zaGFyZS9lbWFjcy9zaXRlLWxp c3AvbWFnaXQtYmlzZWN0LmVsCi1zaGFyZS9lbWFjcy9zaXRlLWxpc3AvbWFnaXQtYmlzZWN0 LmVsYwotc2hhcmUvZW1hY3Mvc2l0ZS1saXNwL21hZ2l0LWJsYW1lLmVsCi1zaGFyZS9lbWFj cy9zaXRlLWxpc3AvbWFnaXQtYmxhbWUuZWxjCi1zaGFyZS9lbWFjcy9zaXRlLWxpc3AvbWFn aXQta2V5LW1vZGUuZWwKLXNoYXJlL2VtYWNzL3NpdGUtbGlzcC9tYWdpdC1rZXktbW9kZS5l bGMKLXNoYXJlL2VtYWNzL3NpdGUtbGlzcC9tYWdpdC1zdGdpdC5lbAotc2hhcmUvZW1hY3Mv c2l0ZS1saXNwL21hZ2l0LXN0Z2l0LmVsYwotc2hhcmUvZW1hY3Mvc2l0ZS1saXNwL21hZ2l0 LXN2bi5lbAotc2hhcmUvZW1hY3Mvc2l0ZS1saXNwL21hZ2l0LXN2bi5lbGMKLXNoYXJlL2Vt YWNzL3NpdGUtbGlzcC9tYWdpdC10b3BnaXQuZWwKLXNoYXJlL2VtYWNzL3NpdGUtbGlzcC9t YWdpdC10b3BnaXQuZWxjCi1zaGFyZS9lbWFjcy9zaXRlLWxpc3AvbWFnaXQtd2lwLmVsCi1z aGFyZS9lbWFjcy9zaXRlLWxpc3AvbWFnaXQtd2lwLmVsYwotc2hhcmUvZW1hY3Mvc2l0ZS1s aXNwL21hZ2l0LmVsCi1zaGFyZS9lbWFjcy9zaXRlLWxpc3AvbWFnaXQuZWxjCi1zaGFyZS9l bWFjcy9zaXRlLWxpc3AvcmViYXNlLW1vZGUuZWwKLXNoYXJlL2VtYWNzL3NpdGUtbGlzcC9y ZWJhc2UtbW9kZS5lbGMKLUBkaXJybXRyeSBldGMvZW1hY3Mvc2l0ZS1zdGFydC5kCi1AZGly cm10cnkgZXRjL2VtYWNzCislJUVMSVNQRElSJSUvbWFnaXQtYmlzZWN0LmVsCislJUVMSVNQ RElSJSUvbWFnaXQtYmlzZWN0LmVsYworJSVFTElTUERJUiUlL21hZ2l0LWJsYW1lLmVsCisl JUVMSVNQRElSJSUvbWFnaXQtYmxhbWUuZWxjCislJUVMSVNQRElSJSUvbWFnaXQta2V5LW1v ZGUuZWwKKyUlRUxJU1BESVIlJS9tYWdpdC1rZXktbW9kZS5lbGMKKyUlRUxJU1BESVIlJS9t YWdpdC1zdGdpdC5lbAorJSVFTElTUERJUiUlL21hZ2l0LXN0Z2l0LmVsYworJSVFTElTUERJ UiUlL21hZ2l0LXN2bi5lbAorJSVFTElTUERJUiUlL21hZ2l0LXN2bi5lbGMKKyUlRUxJU1BE SVIlJS9tYWdpdC10b3BnaXQuZWwKKyUlRUxJU1BESVIlJS9tYWdpdC10b3BnaXQuZWxjCisl JUVMSVNQRElSJSUvbWFnaXQtd2lwLmVsCislJUVMSVNQRElSJSUvbWFnaXQtd2lwLmVsYwor JSVFTElTUERJUiUlL21hZ2l0LmVsCislJUVMSVNQRElSJSUvbWFnaXQuZWxjCislJUVMSVNQ RElSJSUvcmViYXNlLW1vZGUuZWwKKyUlRUxJU1BESVIlJS9yZWJhc2UtbW9kZS5lbGMKK0Bk aXJybSAlJUVMSVNQRElSJSUK --------------000306030503050901020309-- From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 17:30:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id A75EB159 for ; Thu, 26 Sep 2013 17:30:01 +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 866D12BEF for ; Thu, 26 Sep 2013 17:30:01 +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 r8QHU0cb095335 for ; Thu, 26 Sep 2013 17: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 r8QHU0Nb095334; Thu, 26 Sep 2013 17:30:00 GMT (envelope-from gnats) Resent-Date: Thu, 26 Sep 2013 17:30:00 GMT Resent-Message-Id: <201309261730.r8QHU0Nb095334@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, Dmitry Marakasov Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id BB7C6B67; Thu, 26 Sep 2013 17:20:56 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from smtp.timeweb.ru (smtp.timeweb.ru [92.53.117.39]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 784D62B59; Thu, 26 Sep 2013 17:20:56 +0000 (UTC) Received: from [213.148.20.85] (helo=hive.panopticon) by smtp.timeweb.ru with esmtpsa (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.76) (envelope-from ) id 1VPFFA-000639-3v; Thu, 26 Sep 2013 21:20:48 +0400 Received: from hades.panopticon (hades.panopticon [192.168.0.32]) by hive.panopticon (Postfix) with ESMTP id 9BB0CB33; Thu, 26 Sep 2013 21:20:47 +0400 (MSK) Received: by hades.panopticon (Postfix, from userid 1000) id 8C9E7F1; Thu, 26 Sep 2013 21:20:47 +0400 (MSK) Message-Id: <20130926172047.8C9E7F1@hades.panopticon> Date: Thu, 26 Sep 2013 21:20:47 +0400 (MSK) From: Dmitry Marakasov To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/182417: [PATCH] devel/simgear: fix build with clang Cc: martymac@FreeBSD.org 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: Thu, 26 Sep 2013 17:30:01 -0000 >Number: 182417 >Category: ports >Synopsis: [PATCH] devel/simgear: fix build with clang >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Sep 26 17:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Dmitry Marakasov >Release: FreeBSD 9.1-RELEASE-p4 amd64 >Organization: >Environment: System: FreeBSD hades.panopticon 9.1-RELEASE-p4 FreeBSD 9.1-RELEASE-p4 #0 r251956: Tue Jun 18 21:41:37 MSK >Description: - Support staging - Fix build with clang - Remove unneeded USE_GCC Port maintainer (martymac@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_8 (mode: change, diff: SVN) >How-To-Repeat: >Fix: --- simgear-2.10.0.patch begins here --- Index: Makefile =================================================================== --- Makefile (revision 328395) +++ Makefile (working copy) @@ -20,7 +20,6 @@ osg:${PORTSDIR}/graphics/osg USE_BZIP2= yes -USE_GCC= any USE_XORG= ice sm x11 xext xi xt xmu USE_OPENAL= al alut USE_GL= gl glu glut @@ -27,5 +26,4 @@ USES= cmake CMAKE_ARGS+= -DJPEG_FACTORY:BOOL=ON -NO_STAGE= yes .include Index: files/patch-simgear-misc-gzcontainerfile.cxx =================================================================== --- files/patch-simgear-misc-gzcontainerfile.cxx (revision 0) +++ files/patch-simgear-misc-gzcontainerfile.cxx (working copy) @@ -0,0 +1,10 @@ +--- simgear/misc/gzcontainerfile.cxx.orig 2013-01-28 21:02:28.000000000 +0400 ++++ simgear/misc/gzcontainerfile.cxx 2013-09-24 21:12:52.827520277 +0400 +@@ -49,6 +49,7 @@ + #include + + #include ++#include + + using namespace std; + using namespace simgear; Property changes on: files/patch-simgear-misc-gzcontainerfile.cxx ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: files/patch-simgear-scene-sky-cloud.cxx =================================================================== --- files/patch-simgear-scene-sky-cloud.cxx (revision 0) +++ files/patch-simgear-scene-sky-cloud.cxx (working copy) @@ -0,0 +1,11 @@ +--- simgear/scene/sky/cloud.cxx.orig 2013-01-28 21:02:28.000000000 +0400 ++++ simgear/scene/sky/cloud.cxx 2013-09-24 22:18:51.438519302 +0400 +@@ -736,7 +736,7 @@ + // this happens, lets just use the last known good course. + // This is a hack, and it would probably be better to make + // calc_gc_course_dist() more robust. +- if ( isnan(course) ) { ++ if ( std::isnan(course) ) { + course = last_course; + } else { + last_course = course; Property changes on: files/patch-simgear-scene-sky-cloud.cxx ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: files/patch-simgear-sound-sample__group.cxx =================================================================== --- files/patch-simgear-sound-sample__group.cxx (revision 0) +++ files/patch-simgear-sound-sample__group.cxx (working copy) @@ -0,0 +1,11 @@ +--- simgear/sound/sample_group.cxx.orig 2013-02-18 18:58:14.000000000 +0400 ++++ simgear/sound/sample_group.cxx 2013-09-24 22:31:16.203519057 +0400 +@@ -36,7 +36,7 @@ + using std::string; + + bool isNaN(float *v) { +- return (isnan(v[0]) || isnan(v[1]) || isnan(v[2])); ++ return (std::isnan(v[0]) || std::isnan(v[1]) || std::isnan(v[2])); + } + + SGSampleGroup::SGSampleGroup () : Property changes on: files/patch-simgear-sound-sample__group.cxx ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property --- simgear-2.10.0.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 17:30:10 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 2402E18C; Thu, 26 Sep 2013 17:30:10 +0000 (UTC) (envelope-from edwin@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 EE23B2BF3; Thu, 26 Sep 2013 17:30:09 +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 r8QHU9Tm095414; Thu, 26 Sep 2013 17:30:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QHU98a095413; Thu, 26 Sep 2013 17:30:09 GMT (envelope-from edwin) Date: Thu, 26 Sep 2013 17:30:09 GMT Message-Id: <201309261730.r8QHU98a095413@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, martymac@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182417: [PATCH] devel/simgear: fix build with clang 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: Thu, 26 Sep 2013 17:30:10 -0000 Synopsis: [PATCH] devel/simgear: fix build with clang Responsible-Changed-From-To: freebsd-ports-bugs->martymac Responsible-Changed-By: edwin Responsible-Changed-When: Thu Sep 26 17:30:09 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182417 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 18:02: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 AC5BE350; Thu, 26 Sep 2013 18:02:00 +0000 (UTC) (envelope-from ak@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 7DEF52E51; Thu, 26 Sep 2013 18:02: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 r8QI20vk002617; Thu, 26 Sep 2013 18:02:00 GMT (envelope-from ak@freefall.freebsd.org) Received: (from ak@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QI1x1C002616; Thu, 26 Sep 2013 18:01:59 GMT (envelope-from ak) Date: Thu, 26 Sep 2013 18:01:59 GMT Message-Id: <201309261801.r8QI1x1C002616@freefall.freebsd.org> To: kdeguchi@sz.tokoha-u.ac.jp, ak@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ak@FreeBSD.org From: ak@FreeBSD.org Subject: Re: ports/182371: ports-mgmt/pkg_replace: fixup pattrn matching in pkg_glob() function 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: Thu, 26 Sep 2013 18:02:00 -0000 Synopsis: ports-mgmt/pkg_replace: fixup pattrn matching in pkg_glob() function Responsible-Changed-From-To: freebsd-ports-bugs->ak Responsible-Changed-By: ak Responsible-Changed-When: Thu Sep 26 18:01:59 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=182371 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 18:02:48 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 763263C0; Thu, 26 Sep 2013 18:02:48 +0000 (UTC) (envelope-from ak@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 4AD8E2E5E; Thu, 26 Sep 2013 18:02:48 +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 r8QI2mic002814; Thu, 26 Sep 2013 18:02:48 GMT (envelope-from ak@freefall.freebsd.org) Received: (from ak@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QI2mom002813; Thu, 26 Sep 2013 18:02:48 GMT (envelope-from ak) Date: Thu, 26 Sep 2013 18:02:48 GMT Message-Id: <201309261802.r8QI2mom002813@freefall.freebsd.org> To: ak@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ak@FreeBSD.org From: ak@FreeBSD.org Subject: Re: ports/182388: [maintainer update] ports-mgmt/pkg_replace 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: Thu, 26 Sep 2013 18:02:48 -0000 Synopsis: [maintainer update] ports-mgmt/pkg_replace Responsible-Changed-From-To: freebsd-ports-bugs->ak Responsible-Changed-By: ak Responsible-Changed-When: Thu Sep 26 18:02:48 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=182388 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 18:06:17 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 0C2454B1; Thu, 26 Sep 2013 18:06:17 +0000 (UTC) (envelope-from ak@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 D3B452E8F; Thu, 26 Sep 2013 18:06:16 +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 r8QI6G4l003329; Thu, 26 Sep 2013 18:06:16 GMT (envelope-from ak@freefall.freebsd.org) Received: (from ak@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QI6GTs003328; Thu, 26 Sep 2013 18:06:16 GMT (envelope-from ak) Date: Thu, 26 Sep 2013 18:06:16 GMT Message-Id: <201309261806.r8QI6GTs003328@freefall.freebsd.org> To: ak@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ak@FreeBSD.org From: ak@FreeBSD.org Subject: Re: ports/181077: [patch] ports-mgmt/pkg_replace support pkgng 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: Thu, 26 Sep 2013 18:06:17 -0000 Synopsis: [patch] ports-mgmt/pkg_replace support pkgng Responsible-Changed-From-To: freebsd-ports-bugs->ak Responsible-Changed-By: ak Responsible-Changed-When: Thu Sep 26 18:06:16 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=181077 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 18:10:02 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id D8AFC740 for ; Thu, 26 Sep 2013 18:10:02 +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 B662A2ECA for ; Thu, 26 Sep 2013 18:10:02 +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 r8QIA2I7006966 for ; Thu, 26 Sep 2013 18:10:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QIA2Iq006965; Thu, 26 Sep 2013 18:10:02 GMT (envelope-from gnats) Resent-Date: Thu, 26 Sep 2013 18:10:02 GMT Resent-Message-Id: <201309261810.r8QIA2Iq006965@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, Bartek Rutkowski Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 0E75C465 for ; Thu, 26 Sep 2013 18:05:19 +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 EE3262E7F for ; Thu, 26 Sep 2013 18:05:18 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8QI5Irn042229 for ; Thu, 26 Sep 2013 18:05:18 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8QI5Ix1042220; Thu, 26 Sep 2013 18:05:18 GMT (envelope-from nobody) Message-Id: <201309261805.r8QI5Ix1042220@oldred.freebsd.org> Date: Thu, 26 Sep 2013 18:05:18 GMT From: Bartek Rutkowski To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182418: New port: devel/etcd A highly-available key value store and service discovery 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: Thu, 26 Sep 2013 18:10:02 -0000 >Number: 182418 >Category: ports >Synopsis: New port: devel/etcd A highly-available key value store and service discovery >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Sep 26 18:10:02 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Bartek Rutkowski >Release: 9.1 >Organization: Pixeware LTD >Environment: FreeBSD even.more.evil.daemon.666.org 9.1-RELEASE FreeBSD 9.1-RELEASE #0 r243825: Tue Dec 4 09:23:10 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: This is a new port of etcd, software coming from CoreOS that is doing the same job as ZooKeeper does, yet being fresh, fast, lightweight, well documented and quickly developing project written in Go. >How-To-Repeat: Simply cd /usr/ports/devel/etcd and test make install/deinstall/package and so on. >Fix: Commit the port to Ports Tree. Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # riak # riak/distinfo # riak/files # riak/files/patch-deps-erlang_js-c_src-patches-js-src-config-FreeBSD.mk.patch # riak/files/riak.in # riak/files/patch-deps-node_package-priv-base-env.sh # riak/files/patch-rel-vars.config # riak/files/patch-rel-reltool.config # riak/files/patch-deps-eleveldb-c_src-leveldb-db-version_set.cc # riak/Makefile # riak/pkg-descr # riak/pkg-plist # /usr/ports/UIDs # /usr/ports/GIDs # echo c - riak mkdir -p riak > /dev/null 2>&1 echo x - riak/distinfo sed 's/^X//' >riak/distinfo << '4521ab6e09ee03fd9b0a59d7fee17a4e' XSHA256 (riak-1.4.2.tar.gz) = 6a1fdcfc1f3f0357eeb377ead6638db4187379e3b40121cef16b517e03c6fd11 XSIZE (riak-1.4.2.tar.gz) = 13738074 4521ab6e09ee03fd9b0a59d7fee17a4e echo c - riak/files mkdir -p riak/files > /dev/null 2>&1 echo x - riak/files/patch-deps-erlang_js-c_src-patches-js-src-config-FreeBSD.mk.patch sed 's/^X//' >riak/files/patch-deps-erlang_js-c_src-patches-js-src-config-FreeBSD.mk.patch << 'efa687a59109f5f9e8beba3b6d62574b' X--- deps/erlang_js/c_src/patches/js-src-config-FreeBSD.mk.patch.orig 2013-01-29 21:13:01.000000000 +0100 X+++ deps/erlang_js/c_src/patches/js-src-config-FreeBSD.mk.patch 2013-09-12 14:59:29.000000000 +0200 X@@ -1,6 +1,6 @@ X --- c_src.orig/js/src/config/FreeBSD.mk 1969-12-31 19:00:00.000000000 -0500 X +++ c_src/js/src/config/FreeBSD.mk 2011-03-30 20:12:51.000000000 -0400 X-@@ -0,0 +1,99 @@ X+@@ -0,0 +1,100 @@ X +# -*- Mode: makefile -*- X +# X +# ***** BEGIN LICENSE BLOCK ***** X@@ -46,6 +46,7 @@ X + X +CC ?= gcc X +CCC ?= g++ X++LD = $(CC) X +CFLAGS += -Wall -Wno-format X +OS_CFLAGS = -DXP_UNIX -DSVR4 -DSYSV -D_BSD_SOURCE -DPOSIX_SOURCE -DHAVE_LOCALTIME_R X + efa687a59109f5f9e8beba3b6d62574b echo x - riak/files/riak.in sed 's/^X//' >riak/files/riak.in << 'd1c85c87da054bc4cd8e5cacbc1cd0dc' X#!/bin/sh X X# PROVIDE: riak X# REQUIRE: LOGIN cleanvar X# KEYWORD: shutdown X X# X# Add the following lines to /etc/rc.conf to enable riak: X# riak_enable (bool): Set to "NO" by default. X# Set it to "YES" to enable riak on boot. X# X X. /etc/rc.subr X Xname="riak" Xrcvar=riak_enable X Xpidfile=/var/run/riak/riak.pid X Xstart_cmd="riak_start" Xstop_cmd="riak_stop" Xrestart_cdm="riak_restart" Xstatus_cmd="riak_status" Xcommand="/usr/local/sbin/riak" X Xload_rc_config $name X X# Read rc.d config and set defaults Xload_rc_config "$name" X: ${riak_enable="NO"} X Xriak_start() X{ X echo "Starting Riak." X /usr/local/sbin/riak start X return 0 X} X Xriak_stop() X{ X echo "Stopping Riak processes" X /usr/local/sbin/riak stop X killall -9 epmd X return 0 X} X Xriak_restart() X{ X riak_stop X riak_start X return 0 X} X Xriak_status() X{ X if riak_running; then X echo "Riak is running." X return 0 X else X echo "Riak is not running" X return 1 X fi X} X Xriak_running() X{ X local pid result ps X pid=`/usr/local/sbin/riak getpid` X result=`echo $?` X if [ "$result" == 0 ]; then X ps=`ps -waux | grep ${pid} | grep riak` X result=`echo $?` X if [ "$result" ]; then X return 0 X else X return 1 X fi X else X return 1 X fi X} X Xrun_rc_command "$1" d1c85c87da054bc4cd8e5cacbc1cd0dc echo x - riak/files/patch-deps-node_package-priv-base-env.sh sed 's/^X//' >riak/files/patch-deps-node_package-priv-base-env.sh << '5493440c771d13c3b9a0fabbe3ba3d87' X--- deps/node_package/priv/base/env.sh.orig 2013-09-13 10:22:32.000000000 +0200 X+++ deps/node_package/priv/base/env.sh 2013-09-13 10:27:16.000000000 +0200 X@@ -100,7 +100,7 @@ X # read/write/delete .pid files during startup/shutdown X create_pid_dir() { X # Validate RUNNER_USER is set and they have permissions to write to /var/run X- # Don't continue if we've already sudo'd to RUNNER_USER X+ # Don't continue if we've already su'd to RUNNER_USER X if ([ "$RUNNER_USER" ] && [ "x$WHOAMI" != "x$RUNNER_USER" ]); then X if [ -w $RUN_DIR ]; then X mkdir -p $PID_DIR X@@ -161,12 +161,12 @@ X # Validate that the user running the script is the owner of the X # RUN_DIR. X if ([ "$RUNNER_USER" ] && [ "x$WHOAMI" != "x$RUNNER_USER" ]); then X- type sudo > /dev/null 2>&1 X+ type su > /dev/null 2>&1 X if [ "$?" -ne 0 ]; then X- echoerr "sudo doesn't appear to be installed and your EUID isn't $RUNNER_USER" 1>&2 X+ echoerr "su doesn't appear to be installed and your EUID isn't $RUNNER_USER" 1>&2 X exit 1 X fi X- exec sudo -H -u $RUNNER_USER -i $RUNNER_SCRIPT_DIR/$RUNNER_SCRIPT $@ X+ exec su - $RUNNER_USER -c "$RUNNER_SCRIPT_DIR/$RUNNER_SCRIPT $@" X fi X } X 5493440c771d13c3b9a0fabbe3ba3d87 echo x - riak/files/patch-rel-vars.config sed 's/^X//' >riak/files/patch-rel-vars.config << '4a99ce9ec064a2a5a5da26136c62f089' X--- rel/vars.config.orig 2013-08-29 20:13:02.000000000 +0200 X+++ rel/vars.config 2013-09-11 23:04:34.000000000 +0200 X@@ -2,11 +2,12 @@ X %% ex: ft=erlang ts=4 sw=4 et X X %% Platform-specific installation paths X-{platform_bin_dir, "./bin"}. X-{platform_data_dir, "./data"}. X-{platform_etc_dir, "./etc"}. X-{platform_lib_dir, "./lib"}. X-{platform_log_dir, "./log"}. X+{platform_bin_dir, "/usr/local/sbin"}. X+{platform_data_dir, "/var/db/riak"}. X+{platform_etc_dir, "/usr/local/etc/riak"}. X+{platform_base_dir, "/usr/local/lib/riak"}. X+{platform_lib_dir, "/usr/local/lib/riak/lib"}. X+{platform_log_dir, "/var/log/riak"}. X X %% X %% etc/app.config X@@ -47,12 +48,12 @@ X %% X %% bin/riak X %% X-{runner_script_dir, "$(cd ${0%/*} && pwd)"}. X-{runner_base_dir, "{{runner_script_dir}}/.."}. X-{runner_etc_dir, "$RUNNER_BASE_DIR/etc"}. X-{runner_log_dir, "$RUNNER_BASE_DIR/log"}. X-{runner_lib_dir, "$RUNNER_BASE_DIR/lib"}. X-{runner_patch_dir, "$RUNNER_BASE_DIR/lib/basho-patches"}. X-{pipe_dir, "/tmp/$RUNNER_BASE_DIR/"}. X-{runner_user, ""}. X+{runner_script_dir, "{{platform_bin_dir}}"}. X+{runner_base_dir, "{{platform_base_dir}}"}. X+{runner_etc_dir, "{{platform_etc_dir}}"}. X+{runner_log_dir, "{{platform_log_dir}}"}. X+{runner_lib_dir, "{{platform_lib_dir}}"}. X+{runner_patch_dir, "{{platform_lib_dir}}/basho-patches"}. X+{pipe_dir, "/tmp/riak"}. X+{runner_user, "riak"}. X {runner_wait_process, "riak_core_node_watcher"}. 4a99ce9ec064a2a5a5da26136c62f089 echo x - riak/files/patch-rel-reltool.config sed 's/^X//' >riak/files/patch-rel-reltool.config << '6a181f1be37eb08b59c87ed5e338cc1f' X--- rel/reltool.config.orig 2013-09-17 20:53:23.000000000 +0200 X+++ rel/reltool.config 2013-09-17 20:55:40.000000000 +0200 X@@ -37,8 +37,12 @@ X {boot_rel, "riak"}, X {profile, embedded}, X {excl_sys_filters, ["^bin/.*", X- "^erts.*/bin/(dialyzer|typer)"]}, X+ "^erts.*/bin/(dialyzer|typer)", X+ "^erts.*/bin/(dialyzer|typer)", X+ "^erts.*/doc", X+ "^erts.*/man"]}, X {excl_archive_filters, [".*"]}, X+ {app, mnesia, [{incl_app_filters, ["ebin/*"]}]}, X {app, cluster_info, [{incl_cond, include}]}, X {app, erlang_js, [{incl_cond, include}]}, X {app, ebloom, []}, 6a181f1be37eb08b59c87ed5e338cc1f echo x - riak/files/patch-deps-eleveldb-c_src-leveldb-db-version_set.cc sed 's/^X//' >riak/files/patch-deps-eleveldb-c_src-leveldb-db-version_set.cc << '7e68a807f20c9b1da9f831116eecc2c4' X--- deps/eleveldb/c_src/leveldb/db/version_set.cc.orig 2013-08-29 23:03:04.000000000 +0200 X+++ deps/eleveldb/c_src/leveldb/db/version_set.cc 2013-09-22 14:38:08.000000000 +0200 X@@ -2,10 +2,12 @@ X // Use of this source code is governed by a BSD-style license that can be X // found in the LICENSE file. See the AUTHORS file for names of contributors. X X+#define __STDC_CONSTANT_MACROS X #include "db/version_set.h" X X #include X #include X+#include X #include "db/filename.h" X #include "db/log_reader.h" X #include "db/log_writer.h" X@@ -53,13 +55,13 @@ X X // WARNING: m_OverlappedFiles flags need to match config::kNumOverlapFiles ... until unified X { X- {10485760, 262144000, 57671680, 209715200, 0, 300000000, true}, X- {10485760, 82914560, 57671680, 419430400, 0, 209715200, true}, X- {10485760, 104371840, 57671680, 1006632960, 200000000, 314572800, false}, X- {10485760, 125829120, 57671680, 4094304000, 3355443200, 419430400, false}, X- {10485760, 147286400, 57671680, 41943040000, 33554432000, 524288000, false}, X- {10485760, 188743680, 57671680, 419430400000, 335544320000, 629145600, false}, X- {10485760, 220200960, 57671680, 4194304000000, 3355443200000, 734003200, false} X+ {UINT64_C(10485760), UINT64_C(262144000), INT64_C(57671680), UINT64_C( 209715200), UINT64_C( 0), UINT64_C(300000000), true}, X+ {UINT64_C(10485760), UINT64_C( 82914560), INT64_C(57671680), UINT64_C( 419430400), UINT64_C( 0), UINT64_C(209715200), true}, X+ {UINT64_C(10485760), UINT64_C(104371840), INT64_C(57671680), UINT64_C( 1006632960), UINT64_C( 200000000), UINT64_C(314572800), false}, X+ {UINT64_C(10485760), UINT64_C(125829120), INT64_C(57671680), UINT64_C( 4094304000), UINT64_C( 3355443200), UINT64_C(419430400), false}, X+ {UINT64_C(10485760), UINT64_C(147286400), INT64_C(57671680), UINT64_C( 41943040000), UINT64_C( 33554432000), UINT64_C(524288000), false}, X+ {UINT64_C(10485760), UINT64_C(188743680), INT64_C(57671680), UINT64_C( 419430400000), UINT64_C( 335544320000), UINT64_C(629145600), false}, X+ {UINT64_C(10485760), UINT64_C(220200960), INT64_C(57671680), UINT64_C(4194304000000), UINT64_C(3355443200000), UINT64_C(734003200), false} X }; 7e68a807f20c9b1da9f831116eecc2c4 echo x - riak/Makefile sed 's/^X//' >riak/Makefile << 'b02557be32f458970cad61df99a940cd' X# $FreeBSD$ X XPORTNAME= riak XPORTVERSION= 1.4.2 XCATEGORIES= databases XMASTER_SITES= http://s3.amazonaws.com/downloads.basho.com/riak/1.4/${PORTVERSION}/ \ X http://downloads.basho.com.s3.amazonaws.com/riak/1.4/${PORTVERSION}/ X XMAINTAINER= ports@robakdesign.com XCOMMENT= Riak is an open source, distributed database X XBUILD_DEPENDS= ${LOCALBASE}/lib/erlang15/bin/erlc:${PORTSDIR}/lang/erlang-runtime15 X XUSES= gmake XUSE_RC_SUBR= riak X XPLIST= ${WRKDIR}/pkg-plist XPLIST_SUB+= RIAK_LOGDIR=${RIAK_LOGDIR} \ X RIAK_DBDIR=${RIAK_DBDIR} \ X RIAK_CONFDIR=${RIAK_CONFDIR} \ X RIAK_HOMEDIR=${RIAK_HOMEDIR} X XUSERS= riak XGROUPS= riak X XRIAK_CONFDIR?= ${PREFIX}/etc/${PORTNAME} XRIAK_LOGDIR?= /var/log/${PORTNAME} XRIAK_DBDIR?= /var/db/${PORTNAME} XRIAK_LIBDIR?= ${PREFIX}/lib/${PORTNAME}/lib XRIAK_HOMEDIR?= ${PREFIX}/lib/${PORTNAME} X XMAN1= riak.1 riak-admin.1 riak-debug.1 search-cmd.1 XMANCOMPRESSED= yes X XALL_TARGET= rel XMAKE_JOBS_UNSAFE=yes XMAKE_ENV= PATH=${LOCALBASE}/lib/erlang15/bin:${PATH} XNO_STAGE= yes X X.include X Xpre-install: X ${RM} -f ${PLIST} X ${CAT} ${PKGDIR}/pkg-plist >> ${PLIST} X cd ${WRKSRC}/rel/${PORTNAME}; ${FIND} releases -type f \ X | ${AWK} '{print length, $$0}' | ${SORT} -rn | ${SED} -e 's/^/lib\//' \ X | ${AWK} '{print "lib/riak/"$$2 }' >> ${PLIST} X cd ${WRKSRC}/rel/${PORTNAME}; ${FIND} erts-* -type f \ X | ${AWK} '{print length, $$0}' | ${SORT} -rn \ X | ${AWK} '{print "lib/riak/"$$2 }' >> ${PLIST} X cd ${WRKSRC}/rel; ${FIND} ${PORTNAME}/lib -type f \ X | ${AWK} '{print length, $$0}' | ${SORT} -rn | ${SED} -e 's/^/lib\//' \ X | ${AWK} '{print "lib/"$$2 }' >> ${PLIST} X cd ${WRKSRC}/rel/${PORTNAME}; ${FIND} releases -type d \ X | ${AWK} '{print length, $$0}' | ${SORT} -rn | ${SED} -e 's/^/lib\//' \ X | ${AWK} '{print "lib/riak/"$$2 }' | ${SED} -e "s/^/@dirrm\ /" >> ${PLIST} X cd ${WRKSRC}/rel/${PORTNAME}; ${FIND} erts-* -type d \ X | ${AWK} '{print length, $$0}' | ${SORT} -rn | ${SED} -e 's/^/lib\//' \ X | ${AWK} '{print "lib/riak/"$$2 }' | ${SED} -e "s/^/@dirrm\ /" >> ${PLIST} X cd ${WRKSRC}/rel; ${FIND} ${PORTNAME}/lib -type d \ X | ${AWK} '{print length, $$0}' | ${SORT} -rn | ${SED} -e 's/^/lib\//' \ X | ${AWK} '{print "lib/"$$2 }' | ${SED} -e "s/^/@dirrm\ /" >> ${PLIST} X ${ECHO} "@dirrm lib/riak" >> ${PLIST} X ${ECHO} "@cwd /" >> ${PLIST} X ${ECHO} "@dirrmtry %%RIAK_DBDIR%%" >> ${PLIST} X Xdo-install: X.for d in ${RIAK_CONFDIR} ${RIAK_LOGDIR} ${RIAK_DBDIR} ${RIAK_LIBDIR} ${RIAK_HOMEDIR} X [ -d ${d} ] || ${MKDIR} ${d} && ${CHOWN} ${USERS}:${GROUPS} ${d} X.endfor X ${INSTALL_DATA} ${WRKSRC}/rel/riak/etc/vm.args ${RIAK_CONFDIR}/vm.args.sample X ${INSTALL_DATA} ${WRKSRC}/rel/riak/etc/app.config ${RIAK_CONFDIR}/app.config.sample X ${INSTALL_DATA} ${WRKSRC}/rel/riak/etc/cert.pem ${RIAK_CONFDIR}/cert.pem.sample X ${INSTALL_DATA} ${WRKSRC}/rel/riak/etc/key.pem ${RIAK_CONFDIR}/key.pem.sample X (cd ${WRKSRC}/rel/riak/lib/ && ${COPYTREE_BIN} . ${RIAK_LIBDIR}) X (cd ${WRKSRC}/rel/riak/bin/ && ${COPYTREE_BIN} . ${PREFIX}/sbin/) X (cd ${WRKSRC}/rel/riak/lib/basho-patches && ${COPYTREE_SHARE} . ${RIAK_LIBDIR}/basho-patches) X (cd ${WRKSRC}/rel/riak/releases && ${COPYTREE_SHARE} . ${RIAK_HOMEDIR}/releases) X ${CP} -R ${WRKSRC}/rel/riak/erts-* ${RIAK_HOMEDIR} X ${CHOWN} -R ${USERS}:${GROUPS} ${PREFIX}/lib/${PORTNAME} X ${INSTALL_MAN} ${WRKSRC}/doc/man/man1/riak.1.gz ${MANPREFIX}/man/man1/ X ${INSTALL_MAN} ${WRKSRC}/doc/man/man1/riak-admin.1.gz ${MANPREFIX}/man/man1/ X ${INSTALL_MAN} ${WRKSRC}/doc/man/man1/riak-debug.1.gz ${MANPREFIX}/man/man1/ X ${INSTALL_MAN} ${WRKSRC}/doc/man/man1/search-cmd.1.gz ${MANPREFIX}/man/man1/ X Xpost-install: X @if [ ! -f ${RIAK_CONFDIR}/vm.args ]; then \ X ${CP} -p ${RIAK_CONFDIR}/vm.args.sample ${RIAK_CONFDIR}/vm.args; \ X fi X @if [ ! -f ${RIAK_CONFDIR}/app.config ]; then \ X ${CP} -p ${RIAK_CONFDIR}/app.config.sample ${RIAK_CONFDIR}/app.config; \ X fi X @if [ ! -f ${RIAK_CONFDIR}/cert.pem ]; then \ X ${CP} -p ${RIAK_CONFDIR}/cert.pem.sample ${RIAK_CONFDIR}/cert.pem; \ X fi X @if [ ! -f ${RIAK_CONFDIR}/key.pem ]; then \ X ${CP} -p ${RIAK_CONFDIR}/key.pem.sample ${RIAK_CONFDIR}/key.pem; \ X fi X X.include b02557be32f458970cad61df99a940cd echo x - riak/pkg-descr sed 's/^X//' >riak/pkg-descr << '44f2053a2ee11c9e5d0b91829dcefeb4' XRiak is a distributed database designed for maximum availability: Xso long as your client can reach one server, it should be able to Xwrite data. In most failure scenarios the data you want to read Xshould be available, albeit possibly stale. X XWWW: http://basho.com/riak/ 44f2053a2ee11c9e5d0b91829dcefeb4 echo x - riak/pkg-plist sed 's/^X//' >riak/pkg-plist << '733d416fc6a6e98a458267846eb36e05' X@stopdaemon riak Xsbin/riak Xsbin/riak-admin Xsbin/riak-debug Xsbin/search-cmd X@exec mkdir -p %%RIAK_CONFDIR%% X@exec mkdir -p %%RIAK_LOGDIR%% X@exec mkdir -p %%RIAK_DBDIR%% X@exec mkdir -p %%RIAK_HOMEDIR%% X@exec mkdir -p %%RIAK_LIBDIR%% X@unexec if cmp -s %D/%%ETCDIR%%/vm.args.sample %D/%%ETCDIR%%/vm.args; then rm -f %D/%%ETCDIR%%/vm.args; fi X%%ETCDIR%%/vm.args.sample X@exec if [ ! -f %D/%%ETCDIR%%/vm.args ] ; then cp -p %D/%F %B/vm.args; fi X@unexec if cmp -s %D/%%ETCDIR%%/app.config.sample %D/%%ETCDIR%%/app.config; then rm -f %D/%%ETCDIR%%/app.config; fi X%%ETCDIR%%/app.config.sample X@exec if [ ! -f %D/%%ETCDIR%%/app.config ] ; then cp -p %D/%F %B/app.config; fi X@unexec if cmp -s %D/%%ETCDIR%%/cert.pem.sample %D/%%ETCDIR%%/cert.pem; then rm -f %D/%%ETCDIR%%/cert.pem; fi X%%ETCDIR%%/cert.pem.sample X@exec if [ ! -f %D/%%ETCDIR%%/cert.pem ] ; then cp -p %D/%F %B/cert.pem; fi X@unexec if cmp -s %D/%%ETCDIR%%/key.pem.sample %D/%%ETCDIR%%/key.pem; then rm -f %D/%%ETCDIR%%/key.pem; fi X%%ETCDIR%%/key.pem.sample X@exec if [ ! -f %D/%%ETCDIR%%/key.pem ] ; then cp -p %D/%F %B/key.pem; fi X@dirrmtry %%ETCDIR%% X@unexec if [ -f %%RIAK_HOMEDIR%%/.erlang.cookie ] ; then rm -f %%RIAK_HOMEDIR%%/.erlang.cookie ; fi 733d416fc6a6e98a458267846eb36e05 echo x - /usr/ports/UIDs sed 's/^X//' >/usr/ports/UIDs << '70b4dd622b8f3ab6d492076615c9b30e' X# $FreeBSD: UIDs 327064 2013-09-12 13:49:24Z feld $ X# Please keep this file sorted by UID! Xoperator:*:2:5::0:0:System &:/:/usr/sbin/nologin Xsmmsp:*:25:25::0:0:Sendmail Submission User:/var/spool/clientmqueue:/usr/sbin/nologin Xbind:*:53:53::0:0:Bind Sandbox:/:/usr/sbin/nologin Xmajordom:*:54:54::0:0:Majordomo Pseudo User:/usr/local/majordomo:/nonexistent Xrdfdb:*:55:55::0:0:rdfDB Daemon:/var/db/rdfdb:/bin/sh Xspamd:*:58:58::0:0:SpamAssassin user:/var/spool/spamd:/usr/sbin/nologin Xunbound:*:59:1::0:0:unbound dns resolver:/nonexistent:/usr/sbin/nologin Xcyrus:*:60:60::0:0:the cyrus mail server:/nonexistent:/nonexistent Xgnats:*:61:1::0:0:GNATS database owner:/usr/local/share/gnats/gnats-db:/bin/sh Xproxy:*:62:62::0:0:Packet Filter pseudo-user:/nonexistent:/nonexistent Xuucp:*:66:66::0:0:UUCP pseudo-user:/var/spool/uucppublic:/usr/libexec/uucp/uucico Xxten:*:67:67::0:0:X-10 daemon:/usr/local/xten:/nonexistent Xpop:*:68:6::0:0:Post Office Owner (popper):/nonexistent:/usr/sbin/nologin Xwnn:*:69:7::0:0:Wnn:/nonexistent:/nonexistent Xpgsql:*:70:70::0:0:PostgreSQL pseudo-user:/usr/local/pgsql:/bin/sh Xoracle:*:71:71::0:0:Oracle:/usr/local/oracle7:/usr/sbin/nologin Xircd:*:72:72::0:0:IRC daemon:/nonexistent:/nonexistent Xircservices:*:73:73::0:0:IRC services:/nonexistent:/nonexistent Xsimscan:*:74:74::0:0:Simscan User:/nonexistent:/usr/sbin/nologin Xifmail:*:75:66::0:0:Ifmail user:/nonexistent:/nonexistent Xhybserv:*:76:76::0:0:HybServ Daemon:/nonexistent:/usr/sbin/nologin Xauditdistd:*:78:77::0:0:Auditdistd unprivileged user:/var/empty:/usr/sbin/nologin Xvirtuoso:*:79:79::0:0:Virtuoso Universal Server:/usr/local/virtuoso:/bin/sh Xwww:*:80:80::0:0:World Wide Web Owner:/nonexistent:/usr/sbin/nologin Xalias:*:81:81::0:0:QMail user:/var/qmail/alias:/nonexistent Xqmaild:*:82:81::0:0:QMail user:/var/qmail:/nonexistent Xqmaill:*:83:81::0:0:QMail user:/var/qmail:/nonexistent Xqmailp:*:84:81::0:0:QMail user:/var/qmail:/nonexistent Xqmailq:*:85:82::0:0:QMail user:/var/qmail:/nonexistent Xqmailr:*:86:82::0:0:QMail user:/var/qmail:/nonexistent Xqmails:*:87:82::0:0:QMail user:/var/qmail:/nonexistent Xmysql:*:88:88::0:0:MySQL Daemon:/var/db/mysql:/usr/sbin/nologin Xvpopmail:*:89:89::0:0:VPop Mail User:/usr/local/vpopmail:/nonexistent Xfirebird:*:90:90::0:0:Firebird Database Administrator:/var/db/firebird:/bin/sh Xmailman:*:91:91::0:0:Mailman User:/usr/local/mailman:/usr/sbin/nologin Xgdm:*:92:92::0:0:GNOME Display Manager:/usr/local/etc/gdm/home:/usr/sbin/nologin Xjabber:*:93:93::0:0:Jabber Daemon:/nonexistent:/nonexistent Xp4admin:*:94:94::0:0:Perforce admin:/nonexistent:/usr/sbin/nologin Xinterch:*:95:95::0:0:Interchange user:/usr/local/interchange:/usr/sbin/nologin Xsqueuer:*:96:96::0:0:SQueuer Owner:/nonexistent:/bin/sh Xmud:*:97:97::0:0:MUD Owner:/nonexistent:/bin/sh Xmsql:*:98:98::0:0:mSQL-2 pseudo-user:/var/db/msqldb:/bin/sh Xrscsi:*:99:99::0:0:Remote SCSI:/usr/local/rscsi:/usr/local/sbin/rscsi Xsquid:*:100:100::0:0:squid caching-proxy pseudo user:/var/squid:/usr/sbin/nologin Xquagga:*:101:101::0:0:Quagga route daemon pseudo user:/usr/local/etc/quagga:/usr/sbin/nologin Xganglia:*:102:102::0:0:Ganglia User:/nonexistent:/usr/sbin/nologin Xsgeadmin:*:103:103::0:0:Sun Grid Engine Admin:/nonexistent:/usr/sbin/nologin Xslimserv:*:104:104::0:0:Slim Devices SlimServer pseudo-user:/nonexistent:/usr/sbin/nologin Xdnetc:*:105:105::0:0:distributed.net client and proxy pseudo-user:/nonexistent:/usr/sbin/nologin Xclamav:*:106:106::0:0:Clamav Antivirus:/nonexistent:/usr/sbin/nologin Xcacti:*:107:107::0:0:Cacti Sandbox:/nonexistent:/usr/sbin/nologin Xwebkit:*:108:108::0:0:WebKit Default User:/usr/local/www/webkit:/bin/sh Xquickml:*:109:109::0:0:quickml Server:/nonexistent:/usr/sbin/nologin Xvscan:*:110:110::0:0:Scanning Virus Account:/var/maiad:/bin/sh Xfido:*:111:111::0:0:Fido System:/usr/local/fido:/bin/sh Xdcc:*:112:112::0:0:Distributed Checksum Clearinghouse:/nonexistent:/usr/sbin/nologin Xamavis:*:113:113::0:0:Amavis-stats Account:/nonexistent:/usr/sbin/nologin Xdhis:*:114:114::0:0:DHIS Daemon:/nonexistent:/usr/sbin/nologin X_symon:*:115:115::0:0:Symon Account:/var/empty:/usr/sbin/nologin Xhplip:*:116:116::0:0:HPLIP Server:/nonexistent:/usr/sbin/nologin Xsmokeping:*:117:117::0:0:SmokePing Daemon:/nonexistent:/usr/sbin/nologin Xircproxyd:*:118:118::0:0:Night Light IRC Proxy:/nonexistent:/usr/sbin/nologin Xmythtv:*:119:119::0:0:MythTV pseudo-user:/nonexistent:/bin/sh Xpdns_recursor:*:120:120::0:0:pdns_recursor pseudo-user:/nonexistent:/usr/sbin/nologin Xotrs:*:121:121::0:0:OTRS Administrator:/usr/local/otrs:/bin/csh Xzabbix:*:122:122::0:0:Zabbix NMS:/nonexistent:/usr/sbin/nologin X_ntp:*:123:123::0:0:NTP Daemon:/var/empty:/usr/sbin/nologin Xfetchmail:*:124:124::0:0:Fetchmail mail-retrieval daemon:/nonexistent:/usr/sbin/nologin Xpostfix:*:125:125::0:0:Postfix Mail System:/var/spool/postfix:/usr/sbin/nologin Xnavcron:*:127:127::0:0:Network Administration Visualized:/usr/local/nav:/usr/sbin/nologin Xvchat:*:128:128::0:0:VChat Conferencing System:/nonexistent:/usr/sbin/nologin X_bgpd:*:130:130::0:0:BGP Daemon:/var/empty:/usr/sbin/nologin X_ospfd:*:131:131::0:0:OSPF Daemon:/var/empty:/usr/sbin/nologin X_spamd:*:132:132::0:0:Spam Daemon:/var/empty:/usr/sbin/nologin Xfreeradius:*:133:133::0:0:FreeRADIUS Daemon:/nonexistent:/usr/sbin/nologin Xundernet:*:134:134::0:0:Undernet ircu Daemon:/nonexistent:/usr/sbin/nologin Xrabbitmq:*:135:135::0:0:RabbitMQ:/var/db/rabbitmq:/usr/sbin/nologin Xdhcpd:*:136:136::0:0:ISC DHCP daemon:/nonexistent:/usr/sbin/nologin Xmpd:*:137:137::0:0:MusicPD pseudo-user:/var/mpd:/usr/sbin/nologin Xwolfpack:*:138:138::0:0:Wolfpack Empire Server:/usr/local/share/wolfpack:/usr/sbin/nologin Xshellinabox:*:139:139::0:0:Shell In A Box:/nonexistent:/usr/sbin/nologin Xamanda:*:140:140::0:0:Amanda Daemon:/var/db/amanda:/usr/sbin/nologin Xcricket:*:141:80::0:0:Cricket Monitoring User:/usr/local/cricket:/usr/sbin/nologin Xladvd:*:142:142::0:0:Ladvd User:/var/empty:/usr/sbin/nologin Xdovecot:*:143:143::0:0:Dovecot User:/var/empty:/usr/sbin/nologin Xdovenull:*:144:144::0:0:Dovecot login User:/var/empty:/usr/sbin/nologin Xwebcamd:*:145:145::0:0:Webcamd user:/var/empty:/usr/sbin/nologin Xventrilo:*:146:146::0:0:& server:/usr/local/ventrilo-server:/usr/sbin/nologin Xkdm:*:147:147::0:0:KDE Display Manager:/nonexistent:/usr/sbin/nologin Xipv6mon:*:148:148::0:0:IPv6 Address Monitoring Daemon:/nonexistent:/usr/sbin/nologin Xavenger:*:149:149::0:0:Mail Avenger:/var/spool/avenger:/usr/sbin/nologin Xrbldns:*:153:153::0:0:rbldnsd pseudo-user:/nonexistent:/usr/sbin/nologin Xtrircd:*:154:154::0:0:& user:/usr/local/etc/tr-ircd:/usr/sbin/nologin Xsfs:*:171:171::0:0:Self-Certifying File System:/nonexistent:/usr/sbin/nologin Xagk:*:172:172::0:0:AquaGateKeeper:/nonexistent:/nonexistent Xpolipo:*:173:173::0:0:polipo web cache:/nonexistent:/usr/sbin/nologin Xflowtools:*:174:174::0:0:Flow-tools collector pseudo-user:/nonexistent:/usr/sbin/nologin Xtwms:*:175:175::0:0:tWMS pseudo-user:/nonexistent:/usr/sbin/nologin Xgdnsd:*:179:179::0:0:gDNSd pseudo-user:/nonexistent:/usr/sbin/nologin Xnagios:*:181:181::0:0:Nagios pseudo-user:/var/spool/nagios:/usr/sbin/nologin Xnoc:*:182:182::0:0:NOC pseudo-user:/usr/local/noc:/bin/sh Xicinga:*:183:183::0:0:Icinga pseudo-user:/var/spool/icinga:/usr/sbin/nologin Xdnscache:*:184:184::0:0:dnscache pseudo-user:/nonexistent:/usr/sbin/nologin Xtinydns:*:185:185::0:0:tinydns pseudo-user:/nonexistent:/usr/sbin/nologin Xdnslog:*:186:186::0:0:dnslog pseudo-user:/nonexistent:/usr/sbin/nologin Xmoinmoin:*:192:192::0:0:MoinMoin User:/nonexistent:/usr/sbin/nologin Xcups:*:193:193::0:0:Cups Owner:/nonexistent:/usr/sbin/nologin Xsaned:*:194:194::0:0:SANE Scanner Daemon:/nonexistent:/bin/sh Xradns:*:195:195::0:0:radns user:/nonexistent:/usr/sbin/nologin Xmcserver:*:199:199::0:0:Minecraft Server:/nonexistent:/bin/sh Xsympa:*:200:200::0:0:Sympa Owner:/nonexistent:/usr/sbin/nologin Xprivoxy:*:201:201::0:0:Privoxy proxy user:/nonexistent:/usr/sbin/nologin Xdspam:*:202:202::0:0:Dspam:/nonexistent:/usr/sbin/nologin Xyate:*:204:204::0:0:Yate:/nonexistent:/usr/sbin/nologin Xgnugk:*:205:205::0:0:GNU GateKeeper pseudo-user:/nonexistent:/usr/sbin/nologin Xgini:*:206:206::0:0:& streaming server:/var/log/gini:/usr/sbin/nologin X_mixminion:*:207:207::0:0:Mixminion server:/nonexistent:/usr/sbin/nologin Xshoutcast:*:210:210::0:0:Shoutcast sandbox:/nonexistent:/bin/sh Xgit:*:211:211::0:0:gitosis user:/usr/local/git:/bin/sh Xhg:*:212:212::0:0:mercurial-server user:/usr/local/hg:/bin/sh Xdrizzle:*:213:213::0:0:Drizzle daemon:/var/db/drizzle:/usr/sbin/nologin Xopendnssec:*:215:215::0:0:Opendnssec Pseudo User:/nonexistent:/usr/sbin/nologin Xbs:*:220:220::0:0:Big Sister:/usr/local/bigsister:/bin/sh Xrtpproxy:*:222:222::0:0:& user:/nonexistent:/sbin/nologin Xpostgrey:*:225:225::0:0:Postgrey Owner:/nonexistent:/usr/sbin/nologin Xsqlgrey:*:226:226::0:0:SQLgrey Owner:/nonexistent:/usr/sbin/nologin Xaprsd:*:240:240::0:0:aprsd:/nonexistent:/bin/sh Xtnc:*:241:241::0:0:aprsd:/nonexistent:/bin/sh Xprosody:*:242:242::0:0:Prosody Jabber Server:/nonexistent:/usr/sbin/nologin Xfcron:*:247:247::0:0:fcron pseudo-user:/nonexistent:/usr/sbin/nologin X_adsuck:*:253:253::0:0:Adsuck ad blocking user:/nonexistent:/usr/sbin/nologin X_tor:*:256:256::0:0:Tor anonymizing router:/var/db/tor:/usr/sbin/nologin X_smtpd:*:257:257::0:0:OpenSMTPD:/var/empty:/usr/sbin/nologin X_smtpq:*:258:257::0:0:OpenSMTPD queue user:/var/empty:/usr/sbin/nologin X_smtpf:*:259:257::0:0:OpenSMTPD filter user:/var/empty:/usr/sbin/nologin Xmeta1s:*:260:260::0:0:MeTA1 SMTPS:/nonexistent:/usr/sbin/nologin Xmeta1q:*:261:261::0:0:MeTA1 QMGR:/nonexistent:/usr/sbin/nologin Xmeta1c:*:262:262::0:0:MeTA1 SMTPC:/nonexistent:/usr/sbin/nologin Xmeta1m:*:263:263::0:0:MeTA1 misc:/nonexistent:/usr/sbin/nologin Xmeta1:*:264:264::0:0:MeTA1 other:/nonexistent:/usr/sbin/nologin Xhacluster:*:275:275::0:0:Heartbeat cluster user:/nonexistent:/usr/sbin/nologin Xfrontbase:*:276:276::0:0:FrontBase Daemon:/usr/local/FrontBase/Databases:/bin/sh Xmrtg:*:279:279::0:0:MRTG daemon:/nonexistent:/usr/sbin/nologin Xxymon:*:280:280::0:0:Xymon Monitor:/nonexistent:/usr/sbin/nologin Xprelude:*:281:281::0:0:Prelude user:/nonexistent:/usr/sbin/nologin Xspread:*:282:282::0:0:Spread user:/nonexistent:/usr/sbin/nologin Xdevmon:*:283:283::0:0:devmon monitor:/nonexistent:/usr/sbin/nologin Xvnstat:*:284:284::0:0:vnStat Network Monitor:/nonexistent:/usr/sbin/nologin Xbackuppc:*:300:300::0:0:BackupPC pseudo-user:/nonexistent:/usr/sbin/nologin X_sphinx:*:312:312::0:0:Sphinxsearch Owner:/nonexistent:/usr/sbin/nologin Xdkfilter:*:325:325::0:0:DK Filter Owner:/nonexistent:/usr/sbin/nologin X_pma:*:336:80::0:0:phpMyAdmin Owner:/nonexistent:/usr/sbin/nologin Xdaapd:*:337:337::0:0:daapd User:/nonexistent:/usr/sbin/nologin Xmurmur:*:338:338::0:0:& User:/nonexistent:/usr/sbin/nologin Xwildfire:*:340:340::0:0:Wildfire Daemon:/nonexistent:/usr/sbin/nologin Xstunnel:*:341:341::0:0:Stunnel Daemon:/nonexistent:/usr/sbin/nologin Xopenfire:*:342:342::0:0:Openfire IM Daemon:/nonexistent:/usr/sbin/nologin X_sabnzbd:*:350:350::0:0:sabnzb Daemon:/nonexistent:/usr/sbin/nologin X_iodined:*:353:353::0:0:Iodine Daemon:/nonexistent:/usr/sbin/nologin Xhttptunnel:*:361:361::0:0:httptunnel Daemon:/nonexistent:/usr/sbin/nologin Xldap:*:389:389::0:0:OpenLDAP Server:/nonexistent:/usr/sbin/nologin Xtiarra:*:398:398::0:0:Tiarra IRC Proxy:/nonexistent:/usr/sbin/nologin Xuhub:*:411:411::0:0:uHub ADC Daemon:/nonexistent:/usr/sbin/nologin Xdrweb:*:426:426::0:0:Dr.Web Mail Scanner:/nonexistent:/usr/sbin/nologin Xquasselcore:*:442:442::0:0:Quassel IRC User:/nonexistent:/usr/sbin/nologin Xcallweaver:*:444:444::0:0:Callweaver account:/var/lib/callweaver:/usr/sbin/nologin Xcourier:*:465:465::0:0:Courier Mail Server:/nonexistent:/usr/sbin/nologin Xcondor:*:466:466::0:0:& user:/home/condor:/usr/sbin/nologin Xnetmon:*:467:467::0:0:Network monitor account:/var/netmon:/usr/sbin/nologin X_bbstored:*:505:505::0:0:Box Backup Store Daemon:/nonexistent:/usr/sbin/nologin Xradmind:*:506:506::0:0:radmind User:/var/radmind:/usr/sbin/nologin Xskkserv:*:507:507::0:0:skkserv User:/nonexistent:/usr/sbin/nologin Xnullmail:*:522:522::0:0:Nullmailer Mail System:/var/spool/nullmailer:/bin/sh Xdkimproxy:*:525:525::0:0:DKIM Proxy Owner:/nonexistent:/usr/sbin/nologin Xpgbouncer:*:534:534::0:0:Pgbouncer Daemon:/nonexistent:/usr/sbin/nologin Xredis:*:535:535::0:0:Redis Daemon:/nonexistent:/usr/sbin/nologin X_flowd:*:542:542::0:0:flowd privilege separation user:/var/empty:/usr/sbin/nologin Xejabberd:*:543:543::0:0:ejabberd pseudo user:/var/spool/ejabberd:/bin/sh Xqtss:*:554:554::0:0:Darwin Streaming Server:/nonexistent:/usr/sbin/nologin Xircdru:*:555:555::0:0:Russian hybrid IRC server:/nonexistent:/bin/sh Xmessagebus:*:556:556::0:0:D-BUS Daemon User:/nonexistent:/usr/sbin/nologin Xavahi:*:558:558::0:0:Avahi Daemon User:/nonexistent:/usr/sbin/nologin Xtacacs:*:559:559::0:0:TACACS+ Daemon User:/nonexistent:/usr/sbin/nologin Xhaldaemon:*:560:560::0:0:HAL Daemon User:/nonexistent:/usr/sbin/nologin Xdistcc:*:561:561::0:0:Distcc user:/nonexistent:/usr/sbin/nologin Xpolkit:*:562:562::0:0:PolicyKit User:/nonexistent:/usr/sbin/nologin Xpulse:*:563:563::0:0:PulseAudio System User:/nonexistent:/usr/sbin/nologin Xassp:*:587:587::0:0:ASSP Anti-Spam Proxy:/var/db/assp:/usr/sbin/nologin Xavahi-autoipd:*:588:588::0:0:Avahi Autoipd Daemon user:/nonexistent:/usr/sbin/nologin X_xsi:*:600:600::0:0:XMLSysInfo User:/nonexistent:/usr/sbin/nologin X_tss:*:601:601:daemon:0:0:TrouSerS user:/var/empty:/usr/sbin/nologin X_pkcs11:*:602:602:daemon:0:0:opencryptoki user:/var/empty:/usr/sbin/nologin Xfreeswitch:*:610:610::0:0:Freeswitch user:/nonexistent:/usr/sbin/nologin X_pla:*:636:80::0:0:phpLDAPAdmin Owner:/nonexistent:/usr/sbin/nologin Xmonkeysphere:*:641:641::0:0:Monkeysphere User:/var/monkeysphere:/usr/local/bin/bash Xaox:*:666:666::0:0:Archiveopteryx user:/nonexistent:/usr/sbin/nologin Xriak:*:667:667::0:0:Riak user:/usr/local/lib/riak:/bin/sh Xbnetd:*:700:700::0:0:Bnetd user:/nonexistent:/usr/sbin/nologin Xbopm:*:717:717::0:0:Blitzed Open Proxy Monitor:/nonexistent:/bin/sh Xopenxpki:*:777:777::0:0:OpenXPKI Owner:/nonexistent:/usr/sbin/nologin Xpuppet:*:814:814::0:0:Puppet Daemon:/nonexistent:/usr/sbin/nologin Xjenkins:*:818:818::0:0:Jenkins CI:/usr/local/jenkins:/bin/sh Xopenacs:*:820:820::0:0:OpenACS Daemon User:/nonexistent:/usr/sbin/nologin Xdotlrn:*:821:821::0:0:.LRN Daemon User:/nonexistent:/usr/sbin/nologin Xpolw:*:825:825::0:0:Policyd-weight Cache Owner:/nonexistent:/sbin/nologin Xnetdisco:*:840:840::0:0:netdisco daemon:/nonexistent:/usr/sbin/nologin Xmunin:*:842:842::0:0:Munin:/var/munin:/usr/sbin/nologin Xfossy:*:901:901::0:0:FOSSology user:/usr/local/share/fossology:/usr/local/bin/bash Xbacula:*:910:910::0:0:Bacula Daemon:/var/db/bacula:/usr/sbin/nologin Xiserv:*:911:911::0:0:Iserv Daemon:/nonexistent:/usr/sbin/nologin X_sj3:*:912:912::0:0:SJ3 Daemon:/nonexistent:/usr/sbin/nologin X_relayd:*:913:913::0:0:Relay Daemon:/var/empty:/usr/sbin/nologin Xbitlbee:*:914:914::0:0:Bitlbee pseudo-user:/var/db/bitlbee:/usr/sbin/nologin Xlogcheck:*:915:915::0:0:Logcheck system account:/var/lib/logcheck:/usr/local/bin/bash X_prayer:*:917:917::0:0:Prayer Account:/nonexistent:/usr/sbin/nologin Xnefu:*:918:918::0:0:Nefu daemon:/var/db/nefu:/usr/sbin/nologin Xcouchdb:*:919:919::0:0:CouchDB Account:/var/empty:/usr/sbin/nologin Xvboxusers:*:920:920::0:0:Virtualbox user:/nonexistent:/usr/sbin/nologin Xtransmission:*:921:921::0:0:Transmission Daemon User:/usr/local/etc/transmission/home:/usr/sbin/nologin Xmongodb:*:922:922::0:0:MongoDB pseudo-user:/var/db/mongodb:/usr/sbin/nologin Xliquidsoap:*:923:923::0:0:Liquidsoap User:/nonexistent:/usr/sbin/nologin Xpostpals:*:924:924::0:0:postpals user:/nonexistent:/usr/sbin/nologin Xmfs:*:925:925::0:0:MooseFS User:/nonexistent:/usr/sbin/nologin Xminbif:*:926:926::0:0:Minbif Daemon User:/nonexistent:/usr/sbin/nologin Xkumofs:*:927:927::0:0:kumofs daemon:/nonexistent:/usr/sbin/nologin Xnslcd:*:928:928::0:0:nslcd daemon:/nonexistent:/usr/sbin/nologin Xactivemq:*:929:929::0:0:ActiveMQ Daemon:/nonexistent:/usr/sbin/nologin Xifgraph:*:930:930::0:0:ifGraph:/nonexistent:/usr/sbin/nologin Xasterisk:*:931:931::0:0:Asterisk User:/nonexistent:/usr/sbin/nologin Xsancp:*:932:932::0:0:SANCP Daemon:/var/log/sancp:/usr/sbin/nologin Xdlna:*:933:933::0:0:DLNA Daemon:/nonexistent:/usr/sbin/nologin Xtorrus:*:934:934::0:0:torrus daemon:/nonexistent:/usr/sbin/nologin Xerlyvideo:*:935:935::0:0:erlyvideo user:/nonexistent:/usr/sbin/nologin Xcrtmpserver:*:936:936::0:0:crtmpserver user:/nonexistent:/usr/sbin/nologin Xget_iplayer:*:937:937::0:0:get_iplayer user:/nonexistent:/usr/sbin/nologin Xvdr:*:938:938::0:0:vdr user:/nonexistent:/usr/sbin/nologin Xnoip:*:939:939::0:0:noip user:/nonexistent:/usr/sbin/nologin X_tcpproxy:*:940:940::0:0:tcpproxy user:/nonexistent:/usr/sbin/nologin Xcego:*:941:941::0:0:cego user:/usr/local/cego:/usr/sbin/nologin Xteamspeak:*:942:942::0:0:TeamSpeak user:/nonexistent:/usr/sbin/nologin Xdnetfold:*:943:943::0:0:& user:/nonexistent:/usr/sbin/nologin Xbbs:*:944:944::0:0:& user:/nonexistent:/usr/sbin/nologin Xdbxml:*:945:945::0:0:& user:/nonexistent:/usr/sbin/nologin Xsybase:*:946:946::0:0:& user:/usr/local/sybase-ase:/usr/sbin/nologin Xdnrd:*:948:948::0:0:& user:/nonexistent:/usr/sbin/nologin Xzenoss:*:949:949::0:0:& user:/usr/local/zenoss:/bin/sh Xopenerpd:*:951:951::0:0:Openerpd user:/nonexistent:/usr/sbin/nologin Xbitten-slave:*:952:952:daemon:0:0:Bitten slave user:/var/lib/bitten-slave:/usr/sbin/nologin X_neubot:*:953:953::0:0:neubot daemon:/nonexistent:/usr/sbin/nologin Xoops:*:954:65534::0:0:oops user:/nonexistent:/usr/sbin/nologin Xhadoop:*:955:955::0:0:hadoop user:/nonexistent:/usr/sbin/nologin Xpandora:*:956:956::0:0:Pandora FMS user:/usr/local/etc/pandora/home:/usr/sbin/nologin Xrazorback:*:957:957::0:0:Razorback user:/var/run/razorback:/usr/sbin/nologin Xgnunet:*:958:958::0:0:GNUnet daemon:/var/lib/gnunet:/usr/sbin/nologin Xc_icap:*:959:959::0:0:c-icap daemon:/var/empty:/usr/sbin/nologin Xtrytond:*:960:960::0:0:trytond daemon:/var/empty:/usr/sbin/nologin Xgearmand:*:961:961::0:0:gearmand daemon:/var/empty:/usr/sbin/nologin Xzookeeper:*:962:962::0:0:zookeeper user:/nonexistent:/usr/sbin/nologin Xfluentd:*:963:963::0:0:fluentd user:/nonexistent:/usr/sbin/nologin Xgit_daemon:*:964:964::0:0:git daemon:/nonexistent:/usr/sbin/nologin Xelasticsearch:*:965:965::0:0:elasticsearch user:/nonexistent:/usr/sbin/nologin Xossec:*:966:966::0:0:OSSEC user:/usr/local/ossec-hids:/usr/sbin/nologin Xossecm:*:967:966::0:0:OSSEC mail user:/usr/local/ossec-hids:/usr/sbin/nologin Xossecr:*:968:966::0:0:OSSEC rem user:/usr/local/ossec-hids:/usr/sbin/nologin Xkippo:*:969:969::0:0:kippo user:/nonexistent:/usr/sbin/nologin Xcolord:*:970:970::0:0:colord color management daemon:/nonexistent:/usr/sbin/nologin Xshibd:*:971:971::0:0:Shibboleth SAML daemon:/nonexistent:/usr/sbin/nologin Xplex:*:972:972::0:0:Plex Media Server:/nonexistent:/usr/sbin/nologin Xboinc:*:973:973::0:0:BOINC user:/var/db/boinc:/usr/sbin/nologin Xradicale:*:974:974::0:0:Radicale daemon:/nonexistent:/usr/sbin/nologin Xnobody:*:65534:65534::0:0:Unprivileged user:/nonexistent:/usr/sbin/nologin 70b4dd622b8f3ab6d492076615c9b30e echo x - /usr/ports/GIDs sed 's/^X//' >/usr/ports/GIDs << '85a7083bbb0ae1626d29d7a232cd8f2e' X# $FreeBSD: GIDs 327064 2013-09-12 13:49:24Z feld $ X# Please keep this file sorted by GID! Xoperator:*:5:amanda Xmail:*:6:postfix,clamav Xsmmsp:*:25: Xbind:*:53: Xrdfdb:*:55: Xspamd:*:58: Xcyrus:*:60: Xproxy:*:62: Xauthpf:*:63: Xuucp:*:66: Xxten:*:67: Xdialer:*:68: Xnetwork:*:69: Xpgsql:*:70: Xircd:*:72: Xircservices:*:73: Xsimscan:*:74: Xhybserv:*:76: Xaudit:*:77: Xvirtuoso:*:79: Xwww:*:80: Xqnofiles:*:81: Xqmail:*:82: Xmysql:*:88: Xvchkpw:*:89: Xfirebird:*:90: Xmailman:*:91: Xgdm:*:92: Xjabber:*:93: Xp4admin:*:94: Xinterch:*:95: Xsqueuer:*:96: Xmud:*:97: Xmsql:*:98: Xrscsi:*:99: Xsquid:*:100: Xquagga:*:101: Xganglia:*:102: Xsgeadmin:*:103: Xslimserv:*:104: Xdnetc:*:105: Xclamav:*:106: Xcacti:*:107: Xwebkit:*:108: Xquickml:*:109: Xvscan:*:110: Xfido:*:111: Xdcc:*:112: Xamavis:*:113: Xdhis:*:114: X_symon:*:115: Xsmokeping:*:117: Xircproxyd:*:118: Xmythtv:*:119: Xpdns:*:120: Xotrs:*:121: Xzabbix:*:122: X_ntp:*:123: Xfetchmail:*:124: Xpostfix:*:125: Xmaildrop:*:126: Xnav:*:127: Xvchat:*:128: Xvlock:*:129: X_bgpd:*:130: X_ospfd:*:131: X_spamd:*:132: Xfreeradius:*:133: Xundernet:*:134: Xrabbitmq:*:135: Xdhcpd:*:136: Xmpd:*:137: Xwolfpack:*:138: Xshellinabox:*:139: Xamanda:*:140: Xladvd:*:142: Xdovecot:*:143: Xdovenull:*:144: Xwebcamd:*:145: Xventrilo:*:146: Xkdm:*:147: Xipv6mon:*:148: Xavenger:*:149: Xrbldns:*:153: Xtrircd:*:154: Xsfs:*:171: Xagk:*:172: Xpolipo:*:173: Xflowtools:*:174: Xtwms:*:175: Xgdnsd:*:179: Xrt:*:180: Xnagios:*:181: Xnoc:*:182: Xicinga:*:183: Xdnscache:*:184: Xtinydns:*:185: Xdnslog:*:186: Xmoinmoin:*:192: Xcups:*:193: Xsaned:*:194: Xradns:*:195: Xmcserver:*:199: Xsympa:*:200: Xprivoxy:*:201: Xdspam:*:202: Xyate:*:204: Xgnugk:*:205: Xgini:*:206: X_mixminion:*:207: Xshoutcast:*:210: Xgit:*:211: Xhg:*:212: Xdrizzle:*:213: Xopendnssec:*:215: Xbs:*:220: Xrtpproxy:*:222: Xpostgrey:*:225: Xsqlgrey:*:226: Xkismet:*:229: Xaprsd:*:240: Xtnc:*:241: Xprosody:*:242: Xfcron:*:247: X_adsuck:*:253: X_tor:*:256: X_smtpd:*:257: Xmeta1s:*:260: Xmeta1q:*:261: Xmeta1c:*:262:meta1s Xmeta1m:*:263:meta1s,meta1q Xmeta1:*:264: Xhaclient:*:275: Xfrontbase:*:276: Xmrtg:*:279: Xxymon:*:280: Xprelude:*:281: Xspread:*:282: Xdevmon:*:283: Xvnstat:*:284: Xbackuppc:*:300: X_sphinx:*:312: Xdkfilter:*:325: Xdaapd:*:337: Xmurmur:*:338: Xwildfire:*:340: Xstunnel:*:341: Xopenfire:*:342: X_sabnzbd:*:350: X_iodined:*:353: Xhttptunnel:*:361: Xldap:*:389: Xtiarra:*:398: Xuhub:*:411: Xdrweb:*:426: Xquasselcore:*:442: Xcallweaver:*:444: Xcourier:*:465: Xcondor:*:466: Xnetmon:*:467: X_bbstored:*:505: Xradmind:*:506: Xskkserv:*:507: Xnullmail:*:522: Xdkimproxy:*:525: Xpgbouncer:*:534: Xredis:*:535: X_flowd:*:542: Xejabberd:*:543: Xqtss:*:554: Xircdru:*:555: Xmessagebus:*:556: Xpulse-rt:*:557: Xavahi:*:558: Xtacacs:*:559: Xhaldaemon:*:560: Xdistcc:*:561: Xpolkit:*:562: Xpulse:*:563: Xpulse-access:*:564: Xassp:*:587: Xavahi-autoipd:*:588: X_xsi:*:600: X_tss:*:601:_tss X_pkcs11:*:602:_pkcs11 Xfreeswitch:*:610: Xmonkeysphere:*:641: Xaox:*:666: Xriak:*:667: Xbnetd:*:700: Xbopm:*:717: Xopenxpki:*:777: Xpuppet:*:814: Xjenkins:*:818: Xopenacs:*:820: Xdotlrn:*:821: Xpolw:*:825: Xnetdisco:*:840: Xmunin:*:842: Xdahdi:*:843:asterisk Xfossy:*:901:www Xbacula:*:910: Xiserv:*:911: X_sj3:*:912: X_relayd:*:913: Xbitlbee:*:914: Xlogcheck:*:915: Xssmtp:*:916: Xprayer:*:917: Xnefu:*:918: Xcouchdb:*:919: Xvboxusers:*:920: Xtransmission:*:921: Xmongodb:*:922: Xliquidsoap:*:923: Xpostpals:*:924: Xmfs:*:925: Xminbif:*:926: Xkumofs:*:927: Xnslcd:*:928: Xactivemq:*:929: Xifgraph:*:930: Xasterisk:*:931: Xsancp:*:932: Xdlna:*:933: Xtorrus:*:934:www Xerlyvideo:*:935: Xcrtmpserver:*:936: Xget_iplayer:*:937: Xvdr:*:938: Xnoip:*:939: X_tcpproxy:*:940: Xcego:*:941: Xteamspeak:*:942: Xdnetfold:*:943: Xbbs:*:944: Xdbxml:*:945: Xsybase:*:946: Xgnokii:*:947: Xdnrd:*:948: Xzenoss:*:949: Xconquest:*:950: Xopenerpd:*:951: Xbitten-slave:*:952: X_neubot:*:953: Xhadoop:*:955: Xpandora:*:956: Xrazorback:*:957: Xgnunet:*:958: Xc_icap:*:959: Xtrytond:*:960: Xgearmand:*:961: Xzookeeper:*:962: Xfluentd:*:963: Xgit_daemon:*:964: Xelasticsearch:*:965: Xossec:*:966: Xkippo:*:969: Xcolord:*:970: Xshibd:*:971: Xplex:*:972: Xboinc:*:973: Xradicale:*:974: Xnogroup:*:65533: Xnobody:*:65534: 85a7083bbb0ae1626d29d7a232cd8f2e exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 18:20: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 D6B3AD76 for ; Thu, 26 Sep 2013 18:20: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 B47CD2FAF for ; Thu, 26 Sep 2013 18:20: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 r8QIK0pS009704 for ; Thu, 26 Sep 2013 18:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QIK0nI009703; Thu, 26 Sep 2013 18:20:00 GMT (envelope-from gnats) Resent-Date: Thu, 26 Sep 2013 18:20:00 GMT Resent-Message-Id: <201309261820.r8QIK0nI009703@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, Bartek Rutkowski 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 98120741 for ; Thu, 26 Sep 2013 18:10:03 +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 852FE2ECB for ; Thu, 26 Sep 2013 18:10:03 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8QIA34r066089 for ; Thu, 26 Sep 2013 18:10:03 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8QIA3kP066055; Thu, 26 Sep 2013 18:10:03 GMT (envelope-from nobody) Message-Id: <201309261810.r8QIA3kP066055@oldred.freebsd.org> Date: Thu, 26 Sep 2013 18:10:03 GMT From: Bartek Rutkowski To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182419: New port: devel/etcd A highly-available key value store and service discovery 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: Thu, 26 Sep 2013 18:20:01 -0000 >Number: 182419 >Category: ports >Synopsis: New port: devel/etcd A highly-available key value store and service discovery >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Sep 26 18:20:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Bartek Rutkowski >Release: 9.1 >Organization: Pixeware LTD >Environment: FreeBSD even.more.evil.daemon.666.org 9.1-RELEASE FreeBSD 9.1-RELEASE #0 r243825: Tue Dec 4 09:23:10 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: This is a new port of etcd, software coming from CoreOS that is aiming at replacing ZooKeeper due to being fresh, faster, lightweight, well documented and quickly developing project. >How-To-Repeat: Simply cd to /usr/ports/devel/etcd and test by entire combination of make install/deinstall/package/pkg_add/pkg_delete test suite. >Fix: Commit the port to Ports tree. Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # etcd # etcd/Makefile # etcd/pkg-descr # etcd/distinfo # etcd/files # etcd/files/patch-scripts-release-version # etcd/files/patch-build # echo c - etcd mkdir -p etcd > /dev/null 2>&1 echo x - etcd/Makefile sed 's/^X//' >etcd/Makefile << '524c8c4b0bbc0461ea58885b452cfb5d' X# $FreeBSD$ X XPORTNAME= etcd XPORTVERSION= 0.1.1 XCATEGORIES= devel X XMAINTAINER= ports@robakdesign.com XCOMMENT= A highly-available key value store and service discovery X XBUILD_DEPENDS= ${LOCALBASE}/bin/go:${PORTSDIR}/lang/go X XUSE_GITHUB= yes XGH_ACCOUNT= coreos XGH_PROJECT= ${PORTNAME} XGH_TAGNAME= v${PORTVERSION} XGH_COMMIT= 7b28904 X XPLIST_FILES+= bin/${PORTNAME} \ X share/doc/${PORTNAME}/README.md XPLIST_DIRS+= share/doc/${PORTNAME} X XNO_BUILD= yes XNO_STAGE= yes X X.include X Xpre-install: X (cd ${WRKDIR}/${GH_ACCOUNT}-${PORTNAME}-${GH_COMMIT}; ${SH} build) X Xdo-install: X @${MKDIR} ${DOCSDIR} X @${INSTALL_DATA} ${WRKDIR}/${GH_ACCOUNT}-${PORTNAME}-${GH_COMMIT}/README.md ${DOCSDIR} X @${INSTALL_PROGRAM} ${WRKDIR}/${GH_ACCOUNT}-${PORTNAME}-${GH_COMMIT}/${PORTNAME} ${PREFIX}/bin/ X X.include 524c8c4b0bbc0461ea58885b452cfb5d echo x - etcd/pkg-descr sed 's/^X//' >etcd/pkg-descr << '1326a551b581aa20ee76361bf0a022c5' XA highly-available key value store for shared Xconfiguration and service discovery. etcd is Xinspired by zookeeper and doozer, with a focus on: X X* Simple: curl'able user facing API (HTTP+JSON) X* Secure: optional SSL client cert authentication X* Fast: benchmarked 1000s of writes/s per instance X* Reliable: Properly distributed using Raft X XEtcd is written in Go and uses the raft consensus Xalgorithm to manage a highly-available replicated log. X XWWW: https://github.com/coreos/etcd#etcd 1326a551b581aa20ee76361bf0a022c5 echo x - etcd/distinfo sed 's/^X//' >etcd/distinfo << '981a2d91b7e00a1bce08f358d6b86612' XSHA256 (etcd-0.1.1.tar.gz) = 337f173b165360889586a7388f5874bf0b16746992f3cd43ed162f39cd30e9ff XSIZE (etcd-0.1.1.tar.gz) = 601641 981a2d91b7e00a1bce08f358d6b86612 echo c - etcd/files mkdir -p etcd/files > /dev/null 2>&1 echo x - etcd/files/patch-scripts-release-version sed 's/^X//' >etcd/files/patch-scripts-release-version << 'b557b71cfa110ffe151e93766f74dc81' X--- scripts/release-version.orig 2013-09-25 03:33:35.000000000 +0200 X+++ scripts/release-version 2013-09-25 03:34:00.000000000 +0200 X@@ -1,8 +1,6 @@ X #!/bin/sh X X-VER=$(git describe --tags HEAD) X- X cat <etcd/files/patch-build << '07f7c2cfe304c1e11ab3a40354dda490' X--- build.orig 2013-09-25 02:10:43.000000000 +0200 X+++ build 2013-09-25 02:06:13.000000000 +0200 X@@ -1,4 +1,4 @@ X-#!/bin/bash X+#!/bin/sh X X ETCD_PACKAGE=github.com/coreos/etcd X export GOPATH=${PWD} 07f7c2cfe304c1e11ab3a40354dda490 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 18:41:07 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 1CB0EDBC; Thu, 26 Sep 2013 18:41:07 +0000 (UTC) (envelope-from bdrewery@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 E1B0721D7; Thu, 26 Sep 2013 18:41:06 +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 r8QIf6eP015375; Thu, 26 Sep 2013 18:41:06 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QIf6i3015374; Thu, 26 Sep 2013 13:41:06 -0500 (CDT) (envelope-from bdrewery) Date: Thu, 26 Sep 2013 13:41:06 -0500 (CDT) Message-Id: <201309261841.r8QIf6i3015374@freefall.freebsd.org> To: bdrewery@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, bdrewery@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/182419: New port: devel/etcd A highly-available key value store and service discovery 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: Thu, 26 Sep 2013 18:41:07 -0000 Synopsis: New port: devel/etcd A highly-available key value store and service discovery Responsible-Changed-From-To: freebsd-ports-bugs->bdrewery Responsible-Changed-By: bdrewery Responsible-Changed-When: Thu Sep 26 13:41:06 CDT 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=182419 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 18:41:16 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 605EEDED; Thu, 26 Sep 2013 18:41:16 +0000 (UTC) (envelope-from bdrewery@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 3451021DA; Thu, 26 Sep 2013 18:41:16 +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 r8QIfGKQ015488; Thu, 26 Sep 2013 18:41:16 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QIfGj5015487; Thu, 26 Sep 2013 13:41:16 -0500 (CDT) (envelope-from bdrewery) Date: Thu, 26 Sep 2013 13:41:16 -0500 (CDT) Message-Id: <201309261841.r8QIfGj5015487@freefall.freebsd.org> To: bdrewery@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, bdrewery@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/182418: New port: devel/etcd A highly-available key value store and service discovery 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: Thu, 26 Sep 2013 18:41:16 -0000 Synopsis: New port: devel/etcd A highly-available key value store and service discovery Responsible-Changed-From-To: freebsd-ports-bugs->bdrewery Responsible-Changed-By: bdrewery Responsible-Changed-When: Thu Sep 26 13:41:15 CDT 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=182418 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 19:00: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 BFC4F421 for ; Thu, 26 Sep 2013 19:00: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 85D26231C for ; Thu, 26 Sep 2013 19:00: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 r8QJ00vp017545 for ; Thu, 26 Sep 2013 19:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QJ00dH017542; Thu, 26 Sep 2013 19:00:00 GMT (envelope-from gnats) Resent-Date: Thu, 26 Sep 2013 19:00:00 GMT Resent-Message-Id: <201309261900.r8QJ00dH017542@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, "O. Hartmann" Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 203F7109 for ; Thu, 26 Sep 2013 18:50:59 +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 0E7C22276 for ; Thu, 26 Sep 2013 18:50:59 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8QIowJH075527 for ; Thu, 26 Sep 2013 18:50:58 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8QIowES075525; Thu, 26 Sep 2013 18:50:58 GMT (envelope-from nobody) Message-Id: <201309261850.r8QIowES075525@oldred.freebsd.org> Date: Thu, 26 Sep 2013 18:50:58 GMT From: "O. Hartmann" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182420: math/fityk: coredumps on libc++ only systems and compiled with gcc 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: Thu, 26 Sep 2013 19:00:00 -0000 >Number: 182420 >Category: ports >Synopsis: math/fityk: coredumps on libc++ only systems and compiled with gcc >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Sep 26 19:00:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: O. Hartmann >Release: FreeBSD 10.0-CURRENT/amd64 >Organization: FU Berlin >Environment: FreeBSD 10.0-ALPHA3 #0 r255873: Thu Sep 26 08:55:43 CEST 2013 amd64 >Description: On all most recent FreeBSD 10.0-CURRENT systems on which libstc++ has been replaced in favour of the new libc++, port math/fityk compiles well with gcc64, gcc47, gcc48, but it is inoperable due to an immediate coredump after starting! This behaviour can be followed on every CURRENT box (up to date world/kernel/ports until today) I tried. On systems with CURRENT and the old libstdc++ present, math/fityk is still working (and so it is on FreeBSD 9.2-PRE). >How-To-Repeat: Install port math/fityk on most recent CURRENT with libc++ instead of libstdc++ >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 19:00:08 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 AD59346B; Thu, 26 Sep 2013 19:00:08 +0000 (UTC) (envelope-from edwin@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 76F382323; Thu, 26 Sep 2013 19:00:08 +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 r8QJ08Tt019187; Thu, 26 Sep 2013 19:00:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QJ08UM019186; Thu, 26 Sep 2013 19:00:08 GMT (envelope-from edwin) Date: Thu, 26 Sep 2013 19:00:08 GMT Message-Id: <201309261900.r8QJ08UM019186@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sperber@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182420: math/fityk: coredumps on libc++ only systems and compiled with gcc 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: Thu, 26 Sep 2013 19:00:08 -0000 Synopsis: math/fityk: coredumps on libc++ only systems and compiled with gcc Responsible-Changed-From-To: freebsd-ports-bugs->sperber Responsible-Changed-By: edwin Responsible-Changed-When: Thu Sep 26 19:00:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182420 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 19:30:02 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 EF2992E9 for ; Thu, 26 Sep 2013 19:30:01 +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 DC480251A for ; Thu, 26 Sep 2013 19:30:01 +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 r8QJU1D4024705 for ; Thu, 26 Sep 2013 19:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QJU1I2024704; Thu, 26 Sep 2013 19:30:01 GMT (envelope-from gnats) Date: Thu, 26 Sep 2013 19:30:01 GMT Message-Id: <201309261930.r8QJU1I2024704@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Shane Ambler Subject: Re: ports/182220: [PATCH] graphics/opencolorio: Fix build on 10.0-ALPHA and pass poudriere testpor X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Shane Ambler List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Sep 2013 19:30:02 -0000 The following reply was made to PR ports/182220; it has been noted by GNATS. From: Shane Ambler To: bug-followup@FreeBSD.org, swills@freebsd.org Cc: Subject: Re: ports/182220: [PATCH] graphics/opencolorio: Fix build on 10.0-ALPHA and pass poudriere testpor Date: Fri, 27 Sep 2013 04:51:02 +0930 This is a multi-part message in MIME format. --------------090204040808090405040500 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit >> >> +.if (${CXX:T} == "clang++" && ${OSVERSION} > 902000) || ${OSVERSION} > 1000054 >> +CXXFLAGS+= -stdlib=libc++ -std=c++11 >> +.endif >> + > > The problem with this is that now all C++ ports that link with this > library have to be build with libc++ too. You can remove this entire > .if block if you adjust the patch below. > >> + #include >> + #define OCIO_SHARED_PTR boost::shared_ptr >> + #define OCIO_DYNAMIC_POINTER_CAST boost::dynamic_pointer_cast >> ++#elif __cplusplus >= 201103 && defined(_LIBCPP_VERSION) > > Remove "__cplusplus >= 201103 &&" here. This works so adjusting patch to suit. --------------090204040808090405040500 Content-Type: text/plain; charset=UTF-8; name="opencolorio.patch.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="opencolorio.patch.txt" diff -Nru opencolorio.orig/Makefile opencolorio/Makefile --- opencolorio.orig/Makefile 2013-09-27 04:45:29.645512501 +0930 +++ opencolorio/Makefile 2013-09-27 04:44:27.402513537 +0930 @@ -3,7 +3,7 @@ PORTNAME?= opencolorio PORTVERSION= 1.0.8 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES= graphics multimedia MAINTAINER?= FreeBSD@Shaneware.biz @@ -29,8 +29,6 @@ -DOCIO_BUILD_STATIC:BOOL=OFF \ -DOCIO_BUILD_PYGLUE:BOOL=ON -MAKE_JOBS_SAFE?= yes - PLIST= ${PKGDIR}/pkg-plist${PKGNAMESUFFIX} .if !defined(OCIO_TOOLS) diff -Nru opencolorio.orig/files/patch-export__OpenColorIO__OpenColorABI.h.in opencolorio/files/patch-export__OpenColorIO__OpenColorABI.h.in --- opencolorio.orig/files/patch-export__OpenColorIO__OpenColorABI.h.in 2013-09-27 04:45:29.625527690 +0930 +++ opencolorio/files/patch-export__OpenColorIO__OpenColorABI.h.in 2013-09-27 04:44:13.738513909 +0930 @@ -1,6 +1,17 @@ --- export/OpenColorIO/OpenColorABI.h.in.orig 2012-12-12 09:51:23.000000000 +1030 -+++ export/OpenColorIO/OpenColorABI.h.in 2013-01-29 21:13:34.104857600 +1030 -@@ -65,7 +65,7 @@ ++++ export/OpenColorIO/OpenColorABI.h.in 2013-09-19 22:38:40.141969294 +0930 +@@ -55,6 +55,10 @@ + #include + #define OCIO_SHARED_PTR boost::shared_ptr + #define OCIO_DYNAMIC_POINTER_CAST boost::dynamic_pointer_cast ++#elif defined(_LIBCPP_VERSION) ++#include ++#define OCIO_SHARED_PTR std::shared_ptr ++#define OCIO_DYNAMIC_POINTER_CAST std::dynamic_pointer_cast + #elif __GNUC__ >= 4 + #include + #define OCIO_SHARED_PTR std::tr1::shared_ptr +@@ -65,7 +69,7 @@ // If supported, define OCIOEXPORT, OCIOHIDDEN // (used to choose which symbols to export from OpenColorIO) diff -Nru opencolorio.orig/pkg-plist opencolorio/pkg-plist --- opencolorio.orig/pkg-plist 2013-09-27 04:45:29.636512599 +0930 +++ opencolorio/pkg-plist 2013-09-27 04:42:57.702304080 +0930 @@ -116,7 +116,6 @@ %%PORTDOCS%%%%DOCSDIR%%/userguide/tool_overview.html @dirrm include/OpenColorIO @dirrm include/PyOpenColorIO -@dirrmtry libdata/pkgconfig @dirrm share/ocio %%PORTDOCS%%@dirrm %%DOCSDIR%%/userguide %%PORTDOCS%%@dirrm %%DOCSDIR%%/developers/bindings @@ -132,3 +131,5 @@ %%PORTDOCS%%@dirrm %%DOCSDIR%%/_sources %%PORTDOCS%%@dirrm %%DOCSDIR%%/_images %%PORTDOCS%%@dirrm %%DOCSDIR%% +@dirrmtry %%PYTHON_LIBDIR%%/site-packages +@dirrmtry %%PYTHON_LIBDIR%% --------------090204040808090405040500-- From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 20:40:01 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 610F1991 for ; Thu, 26 Sep 2013 20:40:01 +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 3FA1429A1 for ; Thu, 26 Sep 2013 20:40:01 +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 r8QKe1Yx038987 for ; Thu, 26 Sep 2013 20:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QKe1KI038986; Thu, 26 Sep 2013 20:40:01 GMT (envelope-from gnats) Resent-Date: Thu, 26 Sep 2013 20:40:01 GMT Resent-Message-Id: <201309262040.r8QKe1KI038986@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, Vivek Khera 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 2840993D for ; Thu, 26 Sep 2013 20:34:24 +0000 (UTC) (envelope-from vivek@kciLink.com) Received: from yertle.kcilink.com (yertle-comcast.kcilink.com [74.92.149.58]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 001B9293F for ; Thu, 26 Sep 2013 20:34:23 +0000 (UTC) Received: from vk-dev.int.kcilink.com (vk-dev.int.kcilink.com [192.168.7.96]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by yertle.kcilink.com (Postfix) with ESMTPS id EEE718A013 for ; Thu, 26 Sep 2013 16:25:46 -0400 (EDT) Received: by vk-dev.int.kcilink.com (Postfix, from userid 1002) id C84626D422; Thu, 26 Sep 2013 16:25:39 -0400 (EDT) Message-Id: <20130926202539.C84626D422@vk-dev.int.kcilink.com> Date: Thu, 26 Sep 2013 16:25:39 -0400 (EDT) From: Vivek Khera To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/182421: update CSS-Inliner port to latest X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Vivek Khera List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Sep 2013 20:40:01 -0000 >Number: 182421 >Category: ports >Synopsis: update CSS-Inliner port to latest >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Sep 26 20:40:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Vivek Khera >Release: FreeBSD 9.1-RELEASE-p7 amd64 >Organization: >Environment: System: FreeBSD vk-dev.int.kcilink.com 9.1-RELEASE-p7 FreeBSD 9.1-RELEASE-p7 #5 r255701: Thu Sep 19 15:59:56 EDT 2013 khera@yertle.int.kcilink.com:/usr/obj/u/yertle1/sources/usr9/src/sys/KCI64 amd64 >Description: update to lastest version of software. >How-To-Repeat: >Fix: diff -Nru p5-CSS-Inliner.old/Makefile p5-CSS-Inliner/Makefile --- p5-CSS-Inliner.old/Makefile 2013-09-20 19:36:50.000000000 -0400 +++ p5-CSS-Inliner/Makefile 2013-09-26 16:05:33.057853471 -0400 @@ -2,7 +2,7 @@ # $FreeBSD: www/p5-CSS-Inliner/Makefile 327776 2013-09-20 23:36:50Z bapt $ PORTNAME= CSS-Inliner -PORTVERSION= 3674 +PORTVERSION= 3901 CATEGORIES= www perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- diff -Nru p5-CSS-Inliner.old/distinfo p5-CSS-Inliner/distinfo --- p5-CSS-Inliner.old/distinfo 2012-07-14 10:29:18.000000000 -0400 +++ p5-CSS-Inliner/distinfo 2013-09-26 16:19:28.673855377 -0400 @@ -1,2 +1,2 @@ -SHA256 (CSS-Inliner-3674.tar.gz) = b94b7949115bc261ce8f7d580bebd8efefb5da228caafa743066de28ba404e12 -SIZE (CSS-Inliner-3674.tar.gz) = 20091 +SHA256 (CSS-Inliner-3901.tar.gz) = df0fe1e911c5e986bac2ccadf79b05f111f5a6c3d6765e5e41115b008b7f5999 +SIZE (CSS-Inliner-3901.tar.gz) = 20239 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 21:10:02 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 1E154CF for ; Thu, 26 Sep 2013 21:10:02 +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 E4A1C2B2B for ; Thu, 26 Sep 2013 21:10:01 +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 r8QLA1Ne044790 for ; Thu, 26 Sep 2013 21:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QLA1TA044789; Thu, 26 Sep 2013 21:10:01 GMT (envelope-from gnats) Date: Thu, 26 Sep 2013 21:10:01 GMT Message-Id: <201309262110.r8QLA1TA044789@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Richard Hirner Subject: ports/182394: Update audio/teamspeak3-server 3.0.7.2 -> 3.0.9 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Richard Hirner List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Sep 2013 21:10:02 -0000 The following reply was made to PR ports/182394; it has been noted by GNATS. From: Richard Hirner To: bug-followup@FreeBSD.org, admin@onlyfriends.info Cc: Subject: ports/182394: Update audio/teamspeak3-server 3.0.7.2 -> 3.0.9 Date: Thu, 26 Sep 2013 23:03:32 +0200 Please see PR ports/181333 and take it together (should be the same patch). From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 21: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 9495C875 for ; Thu, 26 Sep 2013 21: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 7180F2C52 for ; Thu, 26 Sep 2013 21: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 r8QLU0rR049470 for ; Thu, 26 Sep 2013 21: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 r8QLU0ol049469; Thu, 26 Sep 2013 21:30:00 GMT (envelope-from gnats) Resent-Date: Thu, 26 Sep 2013 21:30:00 GMT Resent-Message-Id: <201309262130.r8QLU0ol049469@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, Arseny Nasokin 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 8D88882C for ; Thu, 26 Sep 2013 21:28:18 +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 5FAD32C39 for ; Thu, 26 Sep 2013 21:28:18 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8QLSIuW030138 for ; Thu, 26 Sep 2013 21:28:18 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8QLSIF9030134; Thu, 26 Sep 2013 21:28:18 GMT (envelope-from nobody) Message-Id: <201309262128.r8QLSIF9030134@oldred.freebsd.org> Date: Thu, 26 Sep 2013 21:28:18 GMT From: Arseny Nasokin To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182422: py-psycog2 reports pyc and pyo incorrectly 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: Thu, 26 Sep 2013 21:30:00 -0000 >Number: 182422 >Category: ports >Synopsis: py-psycog2 reports pyc and pyo incorrectly >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Sep 26 21:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Arseny Nasokin >Release: 10.0-CURRENT >Organization: private person >Environment: FreeBSD eroese.org 10.0-CURRENT FreeBSD 10.0-CURRENT #0: Sat Sep 14 14:57:17 UTC 2013 root@eroese.org:/usr/obj/usr/src/sys/GENERIC_PF amd64 # Created by: Martin Wilke # $FreeBSD: databases/py-psycopg2/Makefile 322774 2013-07-11 15:21:14Z miwi $ >Description: Py-psycog2 compiles python bytecode but pkg(1) can't find these files while installation >How-To-Repeat: cd /usr/ports/databases/py-psycog2 && make install >Fix: Patch attached with submission follows: creating /usr/local/lib/python3.3/site-packages/psycopg2 creating /usr/local/lib/python3.3/site-packages/psycopg2/tests copying build/lib.freebsd-10.0-CURRENT-amd64-3.3/psycopg2/tests/test_quote.py -> /usr/local/lib/python3.3/site-packages/psycopg2/tests copying build/lib.freebsd-10.0-CURRENT-amd64-3.3/psycopg2/tests/test_dates.py -> /usr/local/lib/python3.3/site-packages/psycopg2/tests copying build/lib.freebsd-10.0-CURRENT-amd64-3.3/psycopg2/tests/testconfig.py -> /usr/local/lib/python3.3/site-packages/psycopg2/tests copying build/lib.freebsd-10.0-CURRENT-amd64-3.3/psycopg2/tests/test_types_basic.py -> /usr/local/lib/python3.3/site-packages/psycopg2/tests copying build/lib.freebsd-10.0-CURRENT-amd64-3.3/psycopg2/tests/dbapi20_tpc.py -> /usr/local/lib/python3.3/site-packages/psycopg2/tests copying build/lib.freebsd-10.0-CURRENT-amd64-3.3/psycopg2/tests/test_cancel.py -> /usr/local/lib/python3.3/site-packages/psycopg2/tests copying build/lib.freebsd-10.0-CURRENT-amd64-3.3/psycopg2/tests/__init__.py -> /usr/local/lib/python3.3/site-packages/psycopg2/tests copying build/lib.freebsd-10.0-CURRENT-amd64-3.3/psycopg2/tests/test_cursor.py -> /usr/local/lib/python3.3/site-packages/psycopg2/tests copying build/lib.freebsd-10.0-CURRENT-amd64-3.3/psycopg2/tests/test_lobject.py -> /usr/local/lib/python3.3/site-packages/psycopg2/tests copying build/lib.freebsd-10.0-CURRENT-amd64-3.3/psycopg2/tests/test_bugX000.py -> /usr/local/lib/python3.3/site-packages/psycopg2/tests copying build/lib.freebsd-10.0-CURRENT-amd64-3.3/psycopg2/tests/test_transaction.py -> /usr/local/lib/python3.3/site-packages/psycopg2/tests copying build/lib.freebsd-10.0-CURRENT-amd64-3.3/psycopg2/tests/test_extras_dictcursor.py -> /usr/local/lib/python3.3/site-packages/psycopg2/tests copying build/lib.freebsd-10.0-CURRENT-amd64-3.3/psycopg2/tests/test_psycopg2_dbapi20.py -> /usr/local/lib/python3.3/site-packages/psycopg2/tests copying build/lib.freebsd-10.0-CURRENT-amd64-3.3/psycopg2/tests/test_module.py -> /usr/local/lib/python3.3/site-packages/psycopg2/tests copying build/lib.freebsd-10.0-CURRENT-amd64-3.3/psycopg2/tests/test_with.py -> /usr/local/lib/python3.3/site-packages/psycopg2/tests copying build/lib.freebsd-10.0-CURRENT-amd64-3.3/psycopg2/tests/testutils.py -> /usr/local/lib/python3.3/site-packages/psycopg2/tests copying build/lib.freebsd-10.0-CURRENT-amd64-3.3/psycopg2/tests/test_connection.py -> /usr/local/lib/python3.3/site-packages/psycopg2/tests copying build/lib.freebsd-10.0-CURRENT-amd64-3.3/psycopg2/tests/test_copy.py -> /usr/local/lib/python3.3/site-packages/psycopg2/tests copying build/lib.freebsd-10.0-CURRENT-amd64-3.3/psycopg2/tests/dbapi20.py -> /usr/local/lib/python3.3/site-packages/psycopg2/tests copying build/lib.freebsd-10.0-CURRENT-amd64-3.3/psycopg2/tests/test_bug_gc.py -> /usr/local/lib/python3.3/site-packages/psycopg2/tests copying build/lib.freebsd-10.0-CURRENT-amd64-3.3/psycopg2/tests/test_async.py -> /usr/local/lib/python3.3/site-packages/psycopg2/tests copying build/lib.freebsd-10.0-CURRENT-amd64-3.3/psycopg2/tests/test_notify.py -> /usr/local/lib/python3.3/site-packages/psycopg2/tests copying build/lib.freebsd-10.0-CURRENT-amd64-3.3/psycopg2/tests/test_types_extras.py -> /usr/local/lib/python3.3/site-packages/psycopg2/tests copying build/lib.freebsd-10.0-CURRENT-amd64-3.3/psycopg2/tests/test_green.py -> /usr/local/lib/python3.3/site-packages/psycopg2/tests copying build/lib.freebsd-10.0-CURRENT-amd64-3.3/psycopg2/tz.py -> /usr/local/lib/python3.3/site-packages/psycopg2 copying build/lib.freebsd-10.0-CURRENT-amd64-3.3/psycopg2/psycopg1.py -> /usr/local/lib/python3.3/site-packages/psycopg2 copying build/lib.freebsd-10.0-CURRENT-amd64-3.3/psycopg2/_psycopg.so -> /usr/local/lib/python3.3/site-packages/psycopg2 copying build/lib.freebsd-10.0-CURRENT-amd64-3.3/psycopg2/extras.py -> /usr/local/lib/python3.3/site-packages/psycopg2 copying build/lib.freebsd-10.0-CURRENT-amd64-3.3/psycopg2/pool.py -> /usr/local/lib/python3.3/site-packages/psycopg2 copying build/lib.freebsd-10.0-CURRENT-amd64-3.3/psycopg2/__init__.py -> /usr/local/lib/python3.3/site-packages/psycopg2 copying build/lib.freebsd-10.0-CURRENT-amd64-3.3/psycopg2/errorcodes.py -> /usr/local/lib/python3.3/site-packages/psycopg2 copying build/lib.freebsd-10.0-CURRENT-amd64-3.3/psycopg2/extensions.py -> /usr/local/lib/python3.3/site-packages/psycopg2 copying build/lib.freebsd-10.0-CURRENT-amd64-3.3/psycopg2/_json.py -> /usr/local/lib/python3.3/site-packages/psycopg2 copying build/lib.freebsd-10.0-CURRENT-amd64-3.3/psycopg2/_range.py -> /usr/local/lib/python3.3/site-packages/psycopg2 byte-compiling /usr/local/lib/python3.3/site-packages/psycopg2/tests/test_quote.py to test_quote.cpython-33.pyc byte-compiling /usr/local/lib/python3.3/site-packages/psycopg2/tests/test_dates.py to test_dates.cpython-33.pyc byte-compiling /usr/local/lib/python3.3/site-packages/psycopg2/tests/testconfig.py to testconfig.cpython-33.pyc byte-compiling /usr/local/lib/python3.3/site-packages/psycopg2/tests/test_types_basic.py to test_types_basic.cpython-33.pyc byte-compiling /usr/local/lib/python3.3/site-packages/psycopg2/tests/dbapi20_tpc.py to dbapi20_tpc.cpython-33.pyc byte-compiling /usr/local/lib/python3.3/site-packages/psycopg2/tests/test_cancel.py to test_cancel.cpython-33.pyc byte-compiling /usr/local/lib/python3.3/site-packages/psycopg2/tests/__init__.py to __init__.cpython-33.pyc byte-compiling /usr/local/lib/python3.3/site-packages/psycopg2/tests/test_cursor.py to test_cursor.cpython-33.pyc byte-compiling /usr/local/lib/python3.3/site-packages/psycopg2/tests/test_lobject.py to test_lobject.cpython-33.pyc byte-compiling /usr/local/lib/python3.3/site-packages/psycopg2/tests/test_bugX000.py to test_bugX000.cpython-33.pyc byte-compiling /usr/local/lib/python3.3/site-packages/psycopg2/tests/test_transaction.py to test_transaction.cpython-33.pyc byte-compiling /usr/local/lib/python3.3/site-packages/psycopg2/tests/test_extras_dictcursor.py to test_extras_dictcursor.cpython-33.pyc byte-compiling /usr/local/lib/python3.3/site-packages/psycopg2/tests/test_psycopg2_dbapi20.py to test_psycopg2_dbapi20.cpython-33.pyc byte-compiling /usr/local/lib/python3.3/site-packages/psycopg2/tests/test_module.py to test_module.cpython-33.pyc byte-compiling /usr/local/lib/python3.3/site-packages/psycopg2/tests/test_with.py to test_with.cpython-33.pyc byte-compiling /usr/local/lib/python3.3/site-packages/psycopg2/tests/testutils.py to testutils.cpython-33.pyc byte-compiling /usr/local/lib/python3.3/site-packages/psycopg2/tests/test_connection.py to test_connection.cpython-33.pyc byte-compiling /usr/local/lib/python3.3/site-packages/psycopg2/tests/test_copy.py to test_copy.cpython-33.pyc byte-compiling /usr/local/lib/python3.3/site-packages/psycopg2/tests/dbapi20.py to dbapi20.cpython-33.pyc byte-compiling /usr/local/lib/python3.3/site-packages/psycopg2/tests/test_bug_gc.py to test_bug_gc.cpython-33.pyc byte-compiling /usr/local/lib/python3.3/site-packages/psycopg2/tests/test_async.py to test_async.cpython-33.pyc byte-compiling /usr/local/lib/python3.3/site-packages/psycopg2/tests/test_notify.py to test_notify.cpython-33.pyc byte-compiling /usr/local/lib/python3.3/site-packages/psycopg2/tests/test_types_extras.py to test_types_extras.cpython-33.pyc byte-compiling /usr/local/lib/python3.3/site-packages/psycopg2/tests/test_green.py to test_green.cpython-33.pyc byte-compiling /usr/local/lib/python3.3/site-packages/psycopg2/tz.py to tz.cpython-33.pyc byte-compiling /usr/local/lib/python3.3/site-packages/psycopg2/psycopg1.py to psycopg1.cpython-33.pyc byte-compiling /usr/local/lib/python3.3/site-packages/psycopg2/extras.py to extras.cpython-33.pyc byte-compiling /usr/local/lib/python3.3/site-packages/psycopg2/pool.py to pool.cpython-33.pyc byte-compiling /usr/local/lib/python3.3/site-packages/psycopg2/__init__.py to __init__.cpython-33.pyc byte-compiling /usr/local/lib/python3.3/site-packages/psycopg2/errorcodes.py to errorcodes.cpython-33.pyc byte-compiling /usr/local/lib/python3.3/site-packages/psycopg2/extensions.py to extensions.cpython-33.pyc byte-compiling /usr/local/lib/python3.3/site-packages/psycopg2/_json.py to _json.cpython-33.pyc byte-compiling /usr/local/lib/python3.3/site-packages/psycopg2/_range.py to _range.cpython-33.pyc pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/_range.pyo): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/psycopg1.pyc): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/psycopg1.pyo): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/__init__.pyc): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/__init__.pyo): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/dbapi20.pyc): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/dbapi20.pyo): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/dbapi20_tpc.pyc): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/dbapi20_tpc.pyo): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/test_async.pyc): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/test_async.pyo): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/test_bugX000.pyc): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/test_bugX000.pyo): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/test_bug_gc.pyc): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/test_bug_gc.pyo): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/test_cancel.pyc): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/test_cancel.pyo): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/test_connection.pyc): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/test_connection.pyo): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/test_copy.pyc): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/test_copy.pyo): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/test_cursor.pyc): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/test_cursor.pyo): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/test_dates.pyc): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/test_dates.pyo): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/test_extras_dictcursor.pyc): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/test_extras_dictcursor.pyo): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/test_green.pyc): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/test_green.pyo): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/test_lobject.pyc): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/test_lobject.pyo): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/test_module.pyc): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/test_module.pyo): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/test_notify.pyc): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/test_notify.pyo): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/test_psycopg2_dbapi20.pyc): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/test_psycopg2_dbapi20.pyo): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/test_quote.pyc): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/test_quote.pyo): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/test_transaction.pyc): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/test_transaction.pyo): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/test_types_basic.pyc): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/test_types_basic.pyo): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/test_types_extras.pyc): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/test_types_extras.pyo): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/test_with.pyc): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/test_with.pyo): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/testconfig.pyc): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/testconfig.pyo): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/testutils.pyc): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tests/testutils.pyo): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tz.pyc): No such file or directory pkg-static: lstat(/usr/local/lib/python3.3/site-packages/psycopg2/tz.pyo): No such file or directory Installing py33-psycopg2-2.5.1... done >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 21:50: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 D784EBA1 for ; Thu, 26 Sep 2013 21:50: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 9DE9C2D38 for ; Thu, 26 Sep 2013 21:50: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 r8QLo0uv053087 for ; Thu, 26 Sep 2013 21:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QLo0dR053086; Thu, 26 Sep 2013 21:50:00 GMT (envelope-from gnats) Resent-Date: Thu, 26 Sep 2013 21:50:00 GMT Resent-Message-Id: <201309262150.r8QLo0dR053086@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, Arseny Nasokin 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 D0A5DA66 for ; Thu, 26 Sep 2013 21:42:06 +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 BE43D2D05 for ; Thu, 26 Sep 2013 21:42:06 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8QLg6Kn020613 for ; Thu, 26 Sep 2013 21:42:06 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8QLg6ov020611; Thu, 26 Sep 2013 21:42:06 GMT (envelope-from nobody) Message-Id: <201309262142.r8QLg6ov020611@oldred.freebsd.org> Date: Thu, 26 Sep 2013 21:42:06 GMT From: Arseny Nasokin To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182423: [PATCH][databases/zodb3] USE_PYTHON hasn't been specified correctly 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: Thu, 26 Sep 2013 21:50:00 -0000 >Number: 182423 >Category: ports >Synopsis: [PATCH][databases/zodb3] USE_PYTHON hasn't been specified correctly >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Sep 26 21:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Arseny Nasokin >Release: 10.0-CURRENT >Organization: private person >Environment: # New ports collection makefile for: zodb3 # Date created: 8 Dezember 2002 # Whom: Martin Klaffenboeck # # $FreeBSD: ports/databases/zodb3/Makefile,v 1.32 2012/11/17 05:55:26 svnexp Exp $ # >Description: databases/zodb3 doesn't specify maximum python version to use while dependencies does (e.g. devel/py-zconfig) >How-To-Repeat: install python3 and specify it as default python version in /etc/make.conf >Fix: Specify range 2.5-2.7 instead of 2.5+ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 21:50:08 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 63840BD2; Thu, 26 Sep 2013 21:50:08 +0000 (UTC) (envelope-from edwin@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 39D252D5F; Thu, 26 Sep 2013 21:50:08 +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 r8QLo8gG053233; Thu, 26 Sep 2013 21:50:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QLo8C0053232; Thu, 26 Sep 2013 21:50:08 GMT (envelope-from edwin) Date: Thu, 26 Sep 2013 21:50:08 GMT Message-Id: <201309262150.r8QLo8C0053232@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, zope@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182423: [PATCH][databases/zodb3] USE_PYTHON hasn't been specified correctly 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: Thu, 26 Sep 2013 21:50:08 -0000 Synopsis: [PATCH][databases/zodb3] USE_PYTHON hasn't been specified correctly Responsible-Changed-From-To: freebsd-ports-bugs->zope Responsible-Changed-By: edwin Responsible-Changed-When: Thu Sep 26 21:50:07 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182423 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 21:50:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 230E2BA3 for ; Thu, 26 Sep 2013 21:50:01 +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 034BA2D3A for ; Thu, 26 Sep 2013 21:50:01 +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 r8QLo0Ta053133 for ; Thu, 26 Sep 2013 21:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QLo0Ui053131; Thu, 26 Sep 2013 21:50:00 GMT (envelope-from gnats) Resent-Date: Thu, 26 Sep 2013 21:50:00 GMT Resent-Message-Id: <201309262150.r8QLo0Ui053131@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, Ali Mashtizadeh 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 CDAE5B9B for ; Thu, 26 Sep 2013 21:49:52 +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 A20C32D33 for ; Thu, 26 Sep 2013 21:49:52 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8QLnqZh072733 for ; Thu, 26 Sep 2013 21:49:52 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8QLnqXn072730; Thu, 26 Sep 2013 21:49:52 GMT (envelope-from nobody) Message-Id: <201309262149.r8QLnqXn072730@oldred.freebsd.org> Date: Thu, 26 Sep 2013 21:49:52 GMT From: Ali Mashtizadeh To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182424: [UPDATE] sysutils/ori to 0.8.0 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: Thu, 26 Sep 2013 21:50:01 -0000 >Number: 182424 >Category: ports >Synopsis: [UPDATE] sysutils/ori to 0.8.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Sep 26 21:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Ali Mashtizadeh >Release: >Organization: Stanford CS Dept. >Environment: >Description: This updates the sysutils/ori to the 0.8.0 release, but does not fix the port build issue hitting FreeBSD-10. I will fix that with a 0.8.1 release soon. Thanks! >How-To-Repeat: >Fix: Patch attached with submission follows: Index: Makefile =================================================================== --- Makefile (revision 328417) +++ Makefile (working copy) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= ori -PORTVERSION= 0.7.0 +PORTVERSION= 0.8.0 CATEGORIES= sysutils net MASTER_SITES= http://cdn.bitbucket.org/orifs/ori/downloads/ @@ -14,7 +14,7 @@ execinfo:${PORTSDIR}/devel/libexecinfo USE_XZ= yes -WRKSRC= ${WRKDIR} +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} USES= pkgconfig fuse USE_SCONS= yes @@ -22,9 +22,10 @@ WITH_OPENSSL_PORT= yes PLIST_FILES= bin/ori \ + bin/oridbg \ bin/orifs \ - bin/ori_httpd -MAN1= ori.1 orifs.1 + bin/orisync +MAN1= ori.1 oridbg.1 orifs.1 orisync.1 NO_STAGE= yes .include @@ -32,10 +33,13 @@ do-install: @${ECHO_MSG} "===> Installing binaries..." ${INSTALL_PROGRAM} ${WRKSRC}/build/ori/ori ${PREFIX}/bin/ + ${INSTALL_PROGRAM} ${WRKSRC}/build/oridbg/oridbg ${PREFIX}/bin/ ${INSTALL_PROGRAM} ${WRKSRC}/build/orifs/orifs ${PREFIX}/bin/ - ${INSTALL_PROGRAM} ${WRKSRC}/build/ori_httpd/ori_httpd ${PREFIX}/bin/ + ${INSTALL_PROGRAM} ${WRKSRC}/build/orisync/orisync ${PREFIX}/bin/ @${ECHO_MSG} "===> Installing man pages..." ${INSTALL_MAN} ${WRKSRC}/docs/ori.1 ${MAN1PREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/docs/oridbg.1 ${MAN1PREFIX}/man/man1 ${INSTALL_MAN} ${WRKSRC}/docs/orifs.1 ${MAN1PREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/docs/orisync.1 ${MAN1PREFIX}/man/man1 .include Index: distinfo =================================================================== --- distinfo (revision 328417) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (ori-0.7.0.tar.xz) = 9dbbe48f725f966020065b8f151a75095fdb827b8bbade898e057a7e701b054c -SIZE (ori-0.7.0.tar.xz) = 282544 +SHA256 (ori-0.8.0.tar.xz) = 0589db3480e733dbeba2a1f6be6553701684b283507437c7500ad069f4b49631 +SIZE (ori-0.8.0.tar.xz) = 295208 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 22:00:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id C149DCC for ; Thu, 26 Sep 2013 22:00: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 9FF992DD2 for ; Thu, 26 Sep 2013 22:00: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 r8QM00FN055022 for ; Thu, 26 Sep 2013 22:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QM00mr055021; Thu, 26 Sep 2013 22:00:00 GMT (envelope-from gnats) Resent-Date: Thu, 26 Sep 2013 22:00:00 GMT Resent-Message-Id: <201309262200.r8QM00mr055021@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, Jean-Sébastien Pédron Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 290EBC7 for ; Thu, 26 Sep 2013 21:59:51 +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 159DD2DCD for ; Thu, 26 Sep 2013 21:59:51 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8QLxoUJ024441 for ; Thu, 26 Sep 2013 21:59:50 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8QLxoX2024440; Thu, 26 Sep 2013 21:59:50 GMT (envelope-from nobody) Message-Id: <201309262159.r8QLxoX2024440@oldred.freebsd.org> Date: Thu, 26 Sep 2013 21:59:50 GMT From: Jean-Sébastien Pédron To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182425: [PATCH] graphics/darktable: Fix build with Clang on FreeBSD 10 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: Thu, 26 Sep 2013 22:00:00 -0000 >Number: 182425 >Category: ports >Synopsis: [PATCH] graphics/darktable: Fix build with Clang on FreeBSD 10 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Sep 26 22:00:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Jean-Sébastien Pédron >Release: FreeBSD 10.0-ALPHA1 >Organization: >Environment: FreeBSD magellan.dumbbell.fr 10.0-ALPHA1 FreeBSD 10.0-ALPHA1 #0 64ee5df7: Mon Sep 16 20:29:01 CEST 2013 root@magellan.dumbbell.fr:/usr/obj/home/dumbbell/Projects/freebsd/src/GIT/sys/GENERIC amd64 >Description: With Clang and libc++ being the default in HEAD, starting with 1000054, darktable fails to build. First, gcc can't be used anymore, until we find a solution to make it use libc++ instead of libstdc++. Otherwise both libraries are loaded at runtime (libstdc++ is used by libdarktable.so and libc++ is used by dependencies) and darktable crashes. For now, until this is fixed, I think the "GCC" option should not be presented to the user for OSVERSION >= 1000054. Then, to build with Clang, a minor patch is required (attached). This patch is already committed upstream and will make it to 1.3.x. >How-To-Repeat: >Fix: Patch attached with submission follows: --- src/common/imageio_exr.hh +++ src/common/imageio_exr.hh @@ -21,7 +21,11 @@ #include "common/image.h" #include "common/mipmap_cache.h" +#if __cplusplus >= 201103L || defined(__clang__) +#include +#else #include +#endif #include #include @@ -56,7 +60,11 @@ public: } uint32_t size; +#if __cplusplus >= 201103L || defined(__clang__) + std::shared_ptr data; +#else std::tr1::shared_ptr data; +#endif }; >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 22:00:08 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 3966EFB; Thu, 26 Sep 2013 22:00:08 +0000 (UTC) (envelope-from edwin@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 1025B2DD4; Thu, 26 Sep 2013 22:00:08 +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 r8QM07EW055160; Thu, 26 Sep 2013 22:00:07 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QM07rV055159; Thu, 26 Sep 2013 22:00:07 GMT (envelope-from edwin) Date: Thu, 26 Sep 2013 22:00:07 GMT Message-Id: <201309262200.r8QM07rV055159@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, danfe@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182425: [PATCH] graphics/darktable: Fix build with Clang on FreeBSD 10 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: Thu, 26 Sep 2013 22:00:08 -0000 Synopsis: [PATCH] graphics/darktable: Fix build with Clang on FreeBSD 10 Responsible-Changed-From-To: freebsd-ports-bugs->danfe Responsible-Changed-By: edwin Responsible-Changed-When: Thu Sep 26 22:00:07 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182425 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 26 23:30:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 44A4DB3E for ; Thu, 26 Sep 2013 23:30:01 +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 2169B21EC for ; Thu, 26 Sep 2013 23:30:01 +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 r8QNU1Zh073753 for ; Thu, 26 Sep 2013 23:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8QNU1bK073752; Thu, 26 Sep 2013 23:30:01 GMT (envelope-from gnats) Resent-Date: Thu, 26 Sep 2013 23:30:01 GMT Resent-Message-Id: <201309262330.r8QNU1bK073752@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, Alexandr Kovalenko 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 DA244AFD for ; Thu, 26 Sep 2013 23:25:12 +0000 (UTC) (envelope-from never@naia.nevermind.kiev.ua) Received: from naia.nevermind.kiev.ua (naia.nevermind.kiev.ua [109.106.1.82]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 325D421CD for ; Thu, 26 Sep 2013 23:25:11 +0000 (UTC) Received: from naia.nevermind.kiev.ua (localhost [127.0.0.1]) by naia.nevermind.kiev.ua (8.14.7/8.14.7) with ESMTP id r8QNNnS7011918 for ; Fri, 27 Sep 2013 02:23:49 +0300 (EEST) (envelope-from never@naia.nevermind.kiev.ua) Received: (from never@localhost) by naia.nevermind.kiev.ua (8.14.7/8.14.7/Submit) id r8QNNnXV011916; Fri, 27 Sep 2013 02:23:49 +0300 (EEST) (envelope-from never) Message-Id: <201309262323.r8QNNnXV011916@naia.nevermind.kiev.ua> Date: Fri, 27 Sep 2013 02:23:49 +0300 (EEST) From: Alexandr Kovalenko To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/182426: Update databases/mariadb55-{client,server} to 5.5.33a X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Alexandr Kovalenko List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Sep 2013 23:30:01 -0000 >Number: 182426 >Category: ports >Synopsis: Update databases/mariadb55-{client,server} to 5.5.33a >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Sep 26 23:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Alexandr Kovalenko >Release: FreeBSD 9.2-PRERELEASE amd64 >Organization: Nevermind LLC >Environment: System: FreeBSD 9.2-PRERELEASE >Description: - Update to 5.5.33a - Remove PBXT storage engine support, as it was removed upstream - Allow building mariadb with libc++ and clang [ports/182408] - Fix build on 10-CURRENT [ports/181407] - Use bundled jemalloc instead of system one if system one is older than bundled - Add libexecinfo support - Use "FreeBSD Ports" as build comment instead of default "Source distribution" >How-To-Repeat: N/A >Fix: Apply patch attached. diff --git a/databases/mariadb55-client/Makefile b/databases/mariadb55-client/Makefile index 4b21cf3..8ecaedb 100644 --- a/databases/mariadb55-client/Makefile +++ b/databases/mariadb55-client/Makefile @@ -21,7 +21,8 @@ USE_LDCONFIG= ${PREFIX}/lib/mysql MAN1= msql2mysql.1 mysql.1 mysql_config.1 mysql_find_rows.1 \ mysql_waitpid.1 mysqlaccess.1 mysqladmin.1 mysqlbinlog.1 \ - mysqlcheck.1 mysqldump.1 mysqlimport.1 mysqlshow.1 mysqlslap.1 + mysqlcheck.1 mysqldump.1 mysqlimport.1 mysqlshow.1 mysqlslap.1 \ + mysql_plugin.1 CLIENT_ONLY= yes diff --git a/databases/mariadb55-client/files/patch-CMakeLists.txt b/databases/mariadb55-client/files/patch-CMakeLists.txt index 82d2cd9..161956b 100644 --- a/databases/mariadb55-client/files/patch-CMakeLists.txt +++ b/databases/mariadb55-client/files/patch-CMakeLists.txt @@ -1,6 +1,6 @@ ---- CMakeLists.txt.orig 2013-01-29 16:12:48.000000000 +0200 -+++ CMakeLists.txt 2013-02-01 20:09:31.000000000 +0200 -@@ -303,28 +303,8 @@ +--- CMakeLists.txt.orig 2013-09-20 01:34:26.000000000 +0300 ++++ CMakeLists.txt 2013-09-27 01:30:14.000000000 +0300 +@@ -306,28 +306,8 @@ ADD_SUBDIRECTORY(extra) ADD_SUBDIRECTORY(libservices) ADD_SUBDIRECTORY(scripts) @@ -29,17 +29,25 @@ IF(UNIX) ADD_SUBDIRECTORY(man) ENDIF() -@@ -362,6 +342,7 @@ +@@ -339,7 +319,6 @@ + ADD_SUBDIRECTORY(win/upgrade_wizard) + ADD_SUBDIRECTORY(win/packaging) + ENDIF() +-ADD_SUBDIRECTORY(packaging/solaris) + + CONFIGURE_FILE(config.h.cmake ${CMAKE_BINARY_DIR}/include/my_config.h) + CONFIGURE_FILE(config.h.cmake ${CMAKE_BINARY_DIR}/include/config.h) +@@ -366,6 +345,7 @@ WORKING_DIRECTORY ${CMAKE_BINARY_DIR} ) +IF(FALSE) - INSTALL(FILES COPYING COPYING.LESSER LICENSE.mysql - DESTINATION ${INSTALL_DOCREADMEDIR} - COMPONENT Readme -@@ -372,6 +353,7 @@ + INSTALL_DOCUMENTATION(README COPYING COPYING.LESSER + COMPONENT Readme) + INSTALL_DOCUMENTATION(${CMAKE_BINARY_DIR}/Docs/INFO_SRC +@@ -373,6 +353,7 @@ IF(UNIX) - INSTALL(FILES Docs/INSTALL-BINARY DESTINATION ${INSTALL_DOCREADMEDIR} COMPONENT Readme) + INSTALL_DOCUMENTATION(Docs/INSTALL-BINARY COMPONENT Readme) ENDIF() +ENDIF() diff --git a/databases/mariadb55-client/files/patch-cmake_os_FreeBSD.cmake b/databases/mariadb55-client/files/patch-cmake_os_FreeBSD.cmake index dd8947d..5089f86 100644 --- a/databases/mariadb55-client/files/patch-cmake_os_FreeBSD.cmake +++ b/databases/mariadb55-client/files/patch-cmake_os_FreeBSD.cmake @@ -1,15 +1,16 @@ ---- cmake/os/FreeBSD.cmake.orig 2013-01-13 02:13:17.000000000 +0200 -+++ cmake/os/FreeBSD.cmake 2013-01-13 02:14:15.000000000 +0200 -@@ -24,6 +24,7 @@ +--- cmake/os/FreeBSD.cmake.orig 2013-09-27 00:09:44.000000000 +0300 ++++ cmake/os/FreeBSD.cmake 2013-09-27 00:09:57.000000000 +0300 +@@ -24,9 +24,10 @@ # ADD_DEFINITIONS(-DHAVE_BROKEN_REALPATH) # Find libexecinfo (library that contains backtrace_symbols etc) -+IF(FALSE) - INCLUDE_DIRECTORIES(/usr/local/include) - SET(CMAKE_REQUIRED_INCLUDES ${CMAKE_REQUIRED_INCLUDES} /usr/local/include ) - SET(ENV{LIB} "$ENV{LIB}:/usr/local/lib") -@@ -31,6 +32,7 @@ +-INCLUDE_DIRECTORIES(/usr/local/include) +-SET(CMAKE_REQUIRED_INCLUDES ${CMAKE_REQUIRED_INCLUDES} /usr/local/include ) +-SET(ENV{LIB} "$ENV{LIB}:/usr/local/lib") ++SET(EXECINFO_ROOT /usr/local CACHE INTERNAL "Where to find execinfo library and header") ++INCLUDE_DIRECTORIES(${EXECINFO_ROOT}/include) ++SET(CMAKE_REQUIRED_INCLUDES ${CMAKE_REQUIRED_INCLUDES} ${EXECINFO_ROOT}/include) ++SET(ENV{LIB} "$ENV{LIB}:${EXECINFO_ROOT}/lib") + FIND_LIBRARY(EXECINFO NAMES execinfo) IF(EXECINFO) SET(LIBEXECINFO ${EXECINFO}) - ENDIF() -+ENDIF() diff --git a/databases/mariadb55-client/pkg-plist b/databases/mariadb55-client/pkg-plist index a24d9ff..282f86d 100644 --- a/databases/mariadb55-client/pkg-plist +++ b/databases/mariadb55-client/pkg-plist @@ -52,6 +52,7 @@ include/mysql/psi/mysql_thread.h include/mysql/psi/psi.h include/mysql/service_debug_sync.h include/mysql/service_kill_statement.h +include/mysql/service_logger.h include/mysql/service_my_snprintf.h include/mysql/service_progress_report.h include/mysql/service_thd_alloc.h diff --git a/databases/mariadb55-server/Makefile b/databases/mariadb55-server/Makefile index 777f7ac..4badd84 100644 --- a/databases/mariadb55-server/Makefile +++ b/databases/mariadb55-server/Makefile @@ -1,7 +1,7 @@ # $FreeBSD: head/databases/mariadb55-server/Makefile 327717 2013-09-20 16:13:47Z bapt $ PORTNAME?= mariadb -PORTVERSION= 5.5.31 +PORTVERSION= 5.5.33a PORTREVISION?= 0 CATEGORIES= databases ipv6 MASTER_SITES= http://ftp.osuosl.org/pub/mariadb/${PORTNAME}-${PORTVERSION}/kvm-tarbake-jaunty-x86/ \ @@ -18,6 +18,8 @@ PKGNAMESUFFIX?= -server MAINTAINER= never@nevermind.kiev.ua COMMENT?= Multithreaded SQL database (server) +LIB_DEPENDS= execinfo:${PORTSDIR}/devel/libexecinfo + SLAVEDIRS= databases/mariadb55-client USES= cmake NO_OPTIONS_SORT=yes @@ -44,8 +46,11 @@ CMAKE_ARGS+= -DINSTALL_DOCDIR="share/doc/mysql" \ -DINSTALL_SHAREDIR="share" \ -DINSTALL_SQLBENCHDIR="share/mysql" \ -DINSTALL_SUPPORTFILESDIR="share/mysql" \ + -DWITH_UNIT_TESTS=0 \ -DWITH_LIBEDIT=0 \ - -DWITH_LIBWRAP=1 + -DWITH_LIBWRAP=1 \ + -DEXECINFO_ROOT=${LOCALBASE} \ + -DCOMPILATION_COMMENT="FreeBSD Ports" .ifdef USE_MYSQL .error You have `USE_MYSQL' variable defined either in environment or in make(1) arguments. Please undefine and try again. @@ -56,18 +61,23 @@ USE_LDCONFIG= ${PREFIX}/lib/mysql # MySQL-Server options .if !defined(CLIENT_ONLY) -OPTIONS_DEFINE+= OQGRAPH PBXT MAXKEY +OPTIONS_DEFINE+= OQGRAPH MAXKEY OQGRAPH_DESC= Open Query Graph Computation engine -PBXT_DESC= MVCC-based transactional engine MAXKEY_DESC= Change max key length from 1000 to 4000 -OPTIONS_DEFAULT+= PBXT MAXKEY +OPTIONS_DEFAULT+= MAXKEY .endif NO_STAGE= yes .include +.if ${OSVERSION} >= 1000012 +CMAKE_ARGS+= -DWITH_JEMALLOC="no" +.else +CMAKE_ARGS+= -DWITH_JEMALLOC="bundled" +.endif + .if ${PORT_OPTIONS:MSSL} .if ${PORT_OPTIONS:MOPENSSL} USE_OPENSSL= yes @@ -128,11 +138,6 @@ CMAKE_ARGS+= -DWITH_OQGRAPH_STORAGE_ENGINE=1 PLIST_SUB+= OQGRAPH="" LIB_DEPENDS+= boost_system:${PORTSDIR}/devel/boost-libs .endif -.if empty(PORT_OPTIONS:MPBXT) -CMAKE_ARGS+= -DWITHOUT_PBXT_STORAGE_ENGINE=1 -.else -CMAKE_ARGS+= -DWITH_PBXT_STORAGE_ENGINE=1 -.endif .if ${PORT_OPTIONS:MMAXKEY} EXTRA_PATCHES+= ${FILESDIR}/extra-patch-include_my_compare.h .endif diff --git a/databases/mariadb55-server/distinfo b/databases/mariadb55-server/distinfo index dd12e77..4e86477 100644 --- a/databases/mariadb55-server/distinfo +++ b/databases/mariadb55-server/distinfo @@ -1,2 +1,2 @@ -SHA256 (mariadb-5.5.31.tar.gz) = 70b28e5dca7e9213fd092a669f74a537e7c88e0f670e32628907ce3ebcef2d28 -SIZE (mariadb-5.5.31.tar.gz) = 27888530 +SHA256 (mariadb-5.5.33a.tar.gz) = adf4d04087177fde6568082c3fee77e52e84dc3ae4eb5b994d5defaaa8c83d5b +SIZE (mariadb-5.5.33a.tar.gz) = 45226492 diff --git a/databases/mariadb55-server/files/patch-CMakeLists.txt b/databases/mariadb55-server/files/patch-CMakeLists.txt index 4529fe0..c03e2ad 100644 --- a/databases/mariadb55-server/files/patch-CMakeLists.txt +++ b/databases/mariadb55-server/files/patch-CMakeLists.txt @@ -1,6 +1,6 @@ ---- CMakeLists.txt.orig 2012-11-28 17:49:36.000000000 +0200 -+++ CMakeLists.txt 2012-12-23 02:25:55.000000000 +0200 -@@ -306,17 +306,12 @@ +--- CMakeLists.txt.orig 2013-09-20 01:34:26.000000000 +0300 ++++ CMakeLists.txt 2013-09-27 01:39:19.000000000 +0300 +@@ -310,17 +310,12 @@ ADD_SUBDIRECTORY(support-files) IF(NOT WITHOUT_SERVER) @@ -18,17 +18,25 @@ IF(EXISTS ${CMAKE_SOURCE_DIR}/internal/CMakeLists.txt) ADD_SUBDIRECTORY(internal) -@@ -360,6 +355,7 @@ +@@ -339,7 +334,6 @@ + ADD_SUBDIRECTORY(win/upgrade_wizard) + ADD_SUBDIRECTORY(win/packaging) + ENDIF() +-ADD_SUBDIRECTORY(packaging/solaris) + + CONFIGURE_FILE(config.h.cmake ${CMAKE_BINARY_DIR}/include/my_config.h) + CONFIGURE_FILE(config.h.cmake ${CMAKE_BINARY_DIR}/include/config.h) +@@ -366,6 +360,7 @@ WORKING_DIRECTORY ${CMAKE_BINARY_DIR} ) +IF(FALSE) - INSTALL(FILES COPYING COPYING.LESSER LICENSE.mysql - DESTINATION ${INSTALL_DOCREADMEDIR} - COMPONENT Readme -@@ -370,6 +366,7 @@ + INSTALL_DOCUMENTATION(README COPYING COPYING.LESSER + COMPONENT Readme) + INSTALL_DOCUMENTATION(${CMAKE_BINARY_DIR}/Docs/INFO_SRC +@@ -373,6 +368,7 @@ IF(UNIX) - INSTALL(FILES Docs/INSTALL-BINARY DESTINATION ${INSTALL_DOCREADMEDIR} COMPONENT Readme) + INSTALL_DOCUMENTATION(Docs/INSTALL-BINARY COMPONENT Readme) ENDIF() +ENDIF() diff --git a/databases/mariadb55-server/files/patch-cmake_os_FreeBSD.cmake b/databases/mariadb55-server/files/patch-cmake_os_FreeBSD.cmake index dd8947d..5089f86 100644 --- a/databases/mariadb55-server/files/patch-cmake_os_FreeBSD.cmake +++ b/databases/mariadb55-server/files/patch-cmake_os_FreeBSD.cmake @@ -1,15 +1,16 @@ ---- cmake/os/FreeBSD.cmake.orig 2013-01-13 02:13:17.000000000 +0200 -+++ cmake/os/FreeBSD.cmake 2013-01-13 02:14:15.000000000 +0200 -@@ -24,6 +24,7 @@ +--- cmake/os/FreeBSD.cmake.orig 2013-09-27 00:09:44.000000000 +0300 ++++ cmake/os/FreeBSD.cmake 2013-09-27 00:09:57.000000000 +0300 +@@ -24,9 +24,10 @@ # ADD_DEFINITIONS(-DHAVE_BROKEN_REALPATH) # Find libexecinfo (library that contains backtrace_symbols etc) -+IF(FALSE) - INCLUDE_DIRECTORIES(/usr/local/include) - SET(CMAKE_REQUIRED_INCLUDES ${CMAKE_REQUIRED_INCLUDES} /usr/local/include ) - SET(ENV{LIB} "$ENV{LIB}:/usr/local/lib") -@@ -31,6 +32,7 @@ +-INCLUDE_DIRECTORIES(/usr/local/include) +-SET(CMAKE_REQUIRED_INCLUDES ${CMAKE_REQUIRED_INCLUDES} /usr/local/include ) +-SET(ENV{LIB} "$ENV{LIB}:/usr/local/lib") ++SET(EXECINFO_ROOT /usr/local CACHE INTERNAL "Where to find execinfo library and header") ++INCLUDE_DIRECTORIES(${EXECINFO_ROOT}/include) ++SET(CMAKE_REQUIRED_INCLUDES ${CMAKE_REQUIRED_INCLUDES} ${EXECINFO_ROOT}/include) ++SET(ENV{LIB} "$ENV{LIB}:${EXECINFO_ROOT}/lib") + FIND_LIBRARY(EXECINFO NAMES execinfo) IF(EXECINFO) SET(LIBEXECINFO ${EXECINFO}) - ENDIF() -+ENDIF() diff --git a/databases/mariadb55-server/files/patch-sql_item_func.cc b/databases/mariadb55-server/files/patch-sql_item_func.cc new file mode 100644 index 0000000..b3fc22d --- /dev/null +++ b/databases/mariadb55-server/files/patch-sql_item_func.cc @@ -0,0 +1,11 @@ +--- ./sql/item_func.cc.orig 2013-08-19 16:44:21.000000000 -0400 ++++ ./sql/item_func.cc 2013-08-19 16:44:33.000000000 -0400 +@@ -2341,7 +2341,7 @@ + + if (dec_negative && my_isinf(tmp)) + tmp2= 0.0; +- else if (!dec_negative && my_isinf(value_mul_tmp)) ++ else if (!dec_negative && my_isinf((double)value_mul_tmp)) + tmp2= value; + else if (truncate) + { \ No newline at end of file diff --git a/databases/mariadb55-server/files/patch-sql_item_subselect.cc b/databases/mariadb55-server/files/patch-sql_item_subselect.cc new file mode 100644 index 0000000..6ab58d3 --- /dev/null +++ b/databases/mariadb55-server/files/patch-sql_item_subselect.cc @@ -0,0 +1,11 @@ +--- sql/item_subselect.cc.orig 2013-05-21 22:09:51.000000000 +0000 ++++ sql/item_subselect.cc 2013-09-26 13:13:01.105197491 +0000 +@@ -1317,7 +1317,7 @@ + Item_subselect() + { + DBUG_ENTER("Item_exists_subselect::Item_exists_subselect"); +- bool val_bool(); ++// bool val_bool(); + init(select_lex, new select_exists_subselect(this)); + max_columns= UINT_MAX; + null_value= FALSE; //can't be NULL diff --git a/databases/mariadb55-server/files/patch-sql_sql_trigger.cc b/databases/mariadb55-server/files/patch-sql_sql_trigger.cc new file mode 100644 index 0000000..be49b1f --- /dev/null +++ b/databases/mariadb55-server/files/patch-sql_sql_trigger.cc @@ -0,0 +1,50 @@ +--- sql/sql_trigger.cc.orig 2013-05-21 22:09:51.000000000 +0000 ++++ sql/sql_trigger.cc 2013-09-26 13:15:55.450195525 +0000 +@@ -192,32 +192,32 @@ + { + { + { C_STRING_WITH_LEN("triggers") }, +- my_offsetof(class Table_triggers_list, definitions_list), ++ static_cast(my_offsetof(class Table_triggers_list, definitions_list)), + FILE_OPTIONS_STRLIST + }, + { + { C_STRING_WITH_LEN("sql_modes") }, +- my_offsetof(class Table_triggers_list, definition_modes_list), ++ static_cast(my_offsetof(class Table_triggers_list, definition_modes_list)), + FILE_OPTIONS_ULLLIST + }, + { + { C_STRING_WITH_LEN("definers") }, +- my_offsetof(class Table_triggers_list, definers_list), ++ static_cast(my_offsetof(class Table_triggers_list, definers_list)), + FILE_OPTIONS_STRLIST + }, + { + { C_STRING_WITH_LEN("client_cs_names") }, +- my_offsetof(class Table_triggers_list, client_cs_names), ++ static_cast(my_offsetof(class Table_triggers_list, client_cs_names)), + FILE_OPTIONS_STRLIST + }, + { + { C_STRING_WITH_LEN("connection_cl_names") }, +- my_offsetof(class Table_triggers_list, connection_cl_names), ++ static_cast(my_offsetof(class Table_triggers_list, connection_cl_names)), + FILE_OPTIONS_STRLIST + }, + { + { C_STRING_WITH_LEN("db_cl_names") }, +- my_offsetof(class Table_triggers_list, db_cl_names), ++ static_cast(my_offsetof(class Table_triggers_list, db_cl_names)), + FILE_OPTIONS_STRLIST + }, + { { 0, 0 }, 0, FILE_OPTIONS_STRING } +@@ -226,7 +226,7 @@ + File_option sql_modes_parameters= + { + { C_STRING_WITH_LEN("sql_modes") }, +- my_offsetof(class Table_triggers_list, definition_modes_list), ++ static_cast(my_offsetof(class Table_triggers_list, definition_modes_list)), + FILE_OPTIONS_ULLLIST + }; + diff --git a/databases/mariadb55-server/files/patch-sql_sql_view.cc b/databases/mariadb55-server/files/patch-sql_sql_view.cc new file mode 100644 index 0000000..8b6d0b8 --- /dev/null +++ b/databases/mariadb55-server/files/patch-sql_sql_view.cc @@ -0,0 +1,63 @@ +--- sql/sql_view.cc.orig 2013-05-21 22:09:51.000000000 +0000 ++++ sql/sql_view.cc 2013-09-26 13:16:16.065195172 +0000 +@@ -742,46 +742,46 @@ + */ + static File_option view_parameters[]= + {{{ C_STRING_WITH_LEN("query")}, +- my_offsetof(TABLE_LIST, select_stmt), ++ static_cast(my_offsetof(TABLE_LIST, select_stmt)), + FILE_OPTIONS_ESTRING}, + {{ C_STRING_WITH_LEN("md5")}, +- my_offsetof(TABLE_LIST, md5), ++ static_cast(my_offsetof(TABLE_LIST, md5)), + FILE_OPTIONS_STRING}, + {{ C_STRING_WITH_LEN("updatable")}, +- my_offsetof(TABLE_LIST, updatable_view), ++ static_cast(my_offsetof(TABLE_LIST, updatable_view)), + FILE_OPTIONS_ULONGLONG}, + {{ C_STRING_WITH_LEN("algorithm")}, +- my_offsetof(TABLE_LIST, algorithm), ++ static_cast(my_offsetof(TABLE_LIST, algorithm)), + FILE_OPTIONS_VIEW_ALGO}, + {{ C_STRING_WITH_LEN("definer_user")}, +- my_offsetof(TABLE_LIST, definer.user), ++ static_cast(my_offsetof(TABLE_LIST, definer.user)), + FILE_OPTIONS_STRING}, + {{ C_STRING_WITH_LEN("definer_host")}, +- my_offsetof(TABLE_LIST, definer.host), ++ static_cast(my_offsetof(TABLE_LIST, definer.host)), + FILE_OPTIONS_STRING}, + {{ C_STRING_WITH_LEN("suid")}, +- my_offsetof(TABLE_LIST, view_suid), ++ static_cast(my_offsetof(TABLE_LIST, view_suid)), + FILE_OPTIONS_ULONGLONG}, + {{ C_STRING_WITH_LEN("with_check_option")}, +- my_offsetof(TABLE_LIST, with_check), ++ static_cast(my_offsetof(TABLE_LIST, with_check)), + FILE_OPTIONS_ULONGLONG}, + {{ C_STRING_WITH_LEN("timestamp")}, +- my_offsetof(TABLE_LIST, timestamp), ++ static_cast(my_offsetof(TABLE_LIST, timestamp)), + FILE_OPTIONS_TIMESTAMP}, + {{ C_STRING_WITH_LEN("create-version")}, +- my_offsetof(TABLE_LIST, file_version), ++ static_cast(my_offsetof(TABLE_LIST, file_version)), + FILE_OPTIONS_ULONGLONG}, + {{ C_STRING_WITH_LEN("source")}, +- my_offsetof(TABLE_LIST, source), ++ static_cast(my_offsetof(TABLE_LIST, source)), + FILE_OPTIONS_ESTRING}, + {{(char*) STRING_WITH_LEN("client_cs_name")}, +- my_offsetof(TABLE_LIST, view_client_cs_name), ++ static_cast(my_offsetof(TABLE_LIST, view_client_cs_name)), + FILE_OPTIONS_STRING}, + {{(char*) STRING_WITH_LEN("connection_cl_name")}, +- my_offsetof(TABLE_LIST, view_connection_cl_name), ++ static_cast(my_offsetof(TABLE_LIST, view_connection_cl_name)), + FILE_OPTIONS_STRING}, + {{(char*) STRING_WITH_LEN("view_body_utf8")}, +- my_offsetof(TABLE_LIST, view_body_utf8), ++ static_cast(my_offsetof(TABLE_LIST, view_body_utf8)), + FILE_OPTIONS_ESTRING}, + {{NullS, 0}, 0, + FILE_OPTIONS_STRING} diff --git a/databases/mariadb55-server/pkg-plist b/databases/mariadb55-server/pkg-plist index a7f2c49..c645a78 100644 --- a/databases/mariadb55-server/pkg-plist +++ b/databases/mariadb55-server/pkg-plist @@ -57,6 +57,7 @@ lib/mysql/plugin/qa_auth_server.so lib/mysql/plugin/query_cache_info.so lib/mysql/plugin/semisync_master.so lib/mysql/plugin/semisync_slave.so +lib/mysql/plugin/sphinx.so lib/mysql/plugin/sql_errlog.so libexec/mysqld %%DATADIR%%/binary-configure >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 02:00:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 9E904B1D for ; Fri, 27 Sep 2013 02:00: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 7E04E28D7 for ; Fri, 27 Sep 2013 02:00: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 r8R200YE016126 for ; Fri, 27 Sep 2013 02:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8R2004G016125; Fri, 27 Sep 2013 02:00:00 GMT (envelope-from gnats) Resent-Date: Fri, 27 Sep 2013 02:00:00 GMT Resent-Message-Id: <201309270200.r8R2004G016125@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, Shane Kinney (mod6) Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 632B39A6 for ; Fri, 27 Sep 2013 01:53:07 +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 40FE728A7 for ; Fri, 27 Sep 2013 01:53:07 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8R1r7fp091616 for ; Fri, 27 Sep 2013 01:53:07 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8R1r7N0091609; Fri, 27 Sep 2013 01:53:07 GMT (envelope-from nobody) Message-Id: <201309270153.r8R1r7N0091609@oldred.freebsd.org> Date: Fri, 27 Sep 2013 01:53:07 GMT From: Shane Kinney (mod6) To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182427: [maintainer update] security/destroy 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: Fri, 27 Sep 2013 02:00:00 -0000 >Number: 182427 >Category: ports >Synopsis: [maintainer update] security/destroy >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Sep 27 02:00:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Shane Kinney (mod6) >Release: 8.4-RELEASE >Organization: mod6.net >Environment: System: FreeBSD xx.mod6.net 8.4-RELEASE FreeBSD 8.4-RELEASE #16: Sat Aug 03 10:40:56 MST 2013 root@xx.mod6.net:/usr/obj/usr/src/sys/XX i386 >Description: >How-To-Repeat: >Fix: Attached is the diff for update(s) to the Makefile, distinfo and pkg-descr for the security/destroy port. Thanks in advance! Patch attached with submission follows: diff -u destroy.orig/Makefile destroy/Makefile --- destroy.orig/Makefile 2013-09-26 16:24:16.000000000 -0700 +++ destroy/Makefile 2013-09-26 16:25:24.000000000 -0700 @@ -1,24 +1,31 @@ -# Created by: shane@freebsdhackers.net +# Ports collection makefile for: Destroy +# Date created: 2003 March 07 +# Date Modified: 2013 September 26 +# Created By: Shane Kinney (mod6) modsix@gmail.com # $FreeBSD$ PORTNAME= destroy -PORTVERSION= 20050329 +PORTVERSION= 20130926 CATEGORIES= security -MASTER_SITES= http://www.freebsdhackers.net/destroy/ \ - http://destroy.rider.us/ \ - http://www.impurity.org/mirrors/destroy/ +MASTER_SITES= http://www.mod6.net/destroy/ \ + http://www.kinneysoft.com/destroy/ -MAINTAINER= shane@freebsdhackers.net -COMMENT= Program to securely destroy files on the hard disk - -USE_GMAKE= yes +MAINTAINER= modsix@gmail.com +COMMENT= A program to securely destroy files on the hard disk MAN1= destroy.1 +MANCOMPRESSED= yes + PLIST_FILES= bin/destroy -NO_STAGE= yes do-install: ${INSTALL_PROGRAM} ${WRKSRC}/destroy ${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/destroy.1 ${MAN1PREFIX}/man/man1 +deinstall: + ${RM} ${LOCALBASE}/bin/${PORTNAME} + +post-install: + ${STRIP} ${LOCALBASE}/bin/${PORTNAME} + .include diff -u destroy.orig/distinfo destroy/distinfo --- destroy.orig/distinfo 2013-09-26 16:26:07.000000000 -0700 +++ destroy/distinfo 2013-09-26 16:16:43.000000000 -0700 @@ -1,2 +1,2 @@ -SHA256 (destroy-20050329.tar.gz) = 7214f263c5e800013f5aa095249e53cce876dfa7de8f4a4f02efd64d84b0ad56 -SIZE (destroy-20050329.tar.gz) = 4273 +SHA256 (destroy-20130926.tar.gz) = 71ed5198b55cf1e677071c2c6895e44feefb2522a48448fe7a96f4df8ac8436a +SIZE (destroy-20130926.tar.gz) = 4515 diff -u destroy.orig/pkg-descr destroy/pkg-descr --- destroy.orig/pkg-descr 2013-09-26 16:26:52.000000000 -0700 +++ destroy/pkg-descr 2013-09-26 15:16:17.000000000 -0700 @@ -1,7 +1,7 @@ A system utility that destroys files on the hard drive by writing null and random bytes to the file over and over. +WWW: http://www.mod6.net +IRC: irc.freebsdhackers.net #freebsd -WWW: http://www.freebsdhackers.net - --Shane Kinney +-Shane Kinney (mod6) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 02:00:10 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id A13B6B51; Fri, 27 Sep 2013 02:00:10 +0000 (UTC) (envelope-from edwin@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 78C5628DA; Fri, 27 Sep 2013 02:00:10 +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 r8R20Aei016333; Fri, 27 Sep 2013 02:00:10 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8R20Adr016332; Fri, 27 Sep 2013 02:00:10 GMT (envelope-from edwin) Date: Fri, 27 Sep 2013 02:00:10 GMT Message-Id: <201309270200.r8R20Adr016332@freefall.freebsd.org> To: modsix@gmail.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182427: [maintainer update] security/destroy 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: Fri, 27 Sep 2013 02:00:10 -0000 Synopsis: [maintainer update] security/destroy State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Fri Sep 27 02:00:10 UTC 2013 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182427 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 02:00:08 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id E7312B4C; Fri, 27 Sep 2013 02:00:08 +0000 (UTC) (envelope-from edwin@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 B9A9228D9; Fri, 27 Sep 2013 02:00:08 +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 r8R20862016258; Fri, 27 Sep 2013 02:00:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8R208dJ016257; Fri, 27 Sep 2013 02:00:08 GMT (envelope-from edwin) Date: Fri, 27 Sep 2013 02:00:08 GMT Message-Id: <201309270200.r8R208dJ016257@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182427: [maintainer update] security/destroy 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: Fri, 27 Sep 2013 02:00:09 -0000 Synopsis: [maintainer update] security/destroy Class-Changed-From-To: maintainer-update->change-request Class-Changed-By: edwin Class-Changed-When: Fri Sep 27 02:00:08 UTC 2013 Class-Changed-Why: Fix category (submitter is not maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182427 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 02:10:01 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 CD90EE19 for ; Fri, 27 Sep 2013 02:10:01 +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 BACF32945 for ; Fri, 27 Sep 2013 02:10:01 +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 r8R2A10b018390 for ; Fri, 27 Sep 2013 02:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8R2A1wE018389; Fri, 27 Sep 2013 02:10:01 GMT (envelope-from gnats) Date: Fri, 27 Sep 2013 02:10:01 GMT Message-Id: <201309270210.r8R2A1wE018389@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/182427: [maintainer update] security/destroy X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Sep 2013 02:10:01 -0000 The following reply was made to PR ports/182427; it has been noted by GNATS. From: Edwin Groothuis To: shane@freebsdhackers.net Cc: bug-followup@FreeBSD.org Subject: Re: ports/182427: [maintainer update] security/destroy Date: Fri, 27 Sep 2013 02:00:09 UT Maintainer of security/destroy, Please note that PR ports/182427 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/182427 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 03:02:39 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 02C54A27; Fri, 27 Sep 2013 03:02:39 +0000 (UTC) (envelope-from edwin@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 CC3822D0E; Fri, 27 Sep 2013 03:02:38 +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 r8R32c5Q030093; Fri, 27 Sep 2013 03:02:38 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8R32cp4030092; Fri, 27 Sep 2013 03:02:38 GMT (envelope-from edwin) Date: Fri, 27 Sep 2013 03:02:38 GMT Message-Id: <201309270302.r8R32cp4030092@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182421: update www/p5-CSS-Inliner port to latest 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: Fri, 27 Sep 2013 03:02:39 -0000 Synopsis: update www/p5-CSS-Inliner port to latest Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Fri Sep 27 03:02:38 UTC 2013 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182421 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 03:03:38 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 4AE6BAA2; Fri, 27 Sep 2013 03:03:38 +0000 (UTC) (envelope-from edwin@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 206FF2D25; Fri, 27 Sep 2013 03:03:38 +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 r8R33bM6030235; Fri, 27 Sep 2013 03:03:37 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8R33bMQ030234; Fri, 27 Sep 2013 03:03:37 GMT (envelope-from edwin) Date: Fri, 27 Sep 2013 03:03:37 GMT Message-Id: <201309270303.r8R33bMQ030234@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182422: databases/py-psycopg2 reports pyc and pyo incorrectly 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: Fri, 27 Sep 2013 03:03:38 -0000 Synopsis: databases/py-psycopg2 reports pyc and pyo incorrectly Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Fri Sep 27 03:03:37 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182422 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 04:00: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 CC3D3E8 for ; Fri, 27 Sep 2013 04:00: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 AD2E12F4E for ; Fri, 27 Sep 2013 04:00: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 r8R400Ax040470 for ; Fri, 27 Sep 2013 04:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8R400t2040469; Fri, 27 Sep 2013 04:00:00 GMT (envelope-from gnats) Resent-Date: Fri, 27 Sep 2013 04:00:00 GMT Resent-Message-Id: <201309270400.r8R400t2040469@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, Eitan Adler 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 EB1DDD3 for ; Fri, 27 Sep 2013 03:58:58 +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 C05CA2F40 for ; Fri, 27 Sep 2013 03:58:58 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8R3wwe2029785 for ; Fri, 27 Sep 2013 03:58:58 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8R3wwce029784; Fri, 27 Sep 2013 03:58:58 GMT (envelope-from nobody) Message-Id: <201309270358.r8R3wwce029784@oldred.freebsd.org> Date: Fri, 27 Sep 2013 03:58:58 GMT From: Eitan Adler To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182428: [exp-run] 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: Fri, 27 Sep 2013 04:00:00 -0000 >Number: 182428 >Category: ports >Synopsis: [exp-run] >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Sep 27 04:00:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Eitan Adler >Release: >Organization: >Environment: >Description: I am planning on removing RCS from the base system and this requires an exp-run first. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 04:00:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id AD2DAEA for ; Fri, 27 Sep 2013 04:00:01 +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 86AFD2F50 for ; Fri, 27 Sep 2013 04:00:01 +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 r8R401a1040536 for ; Fri, 27 Sep 2013 04:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8R401C6040535; Fri, 27 Sep 2013 04:00:01 GMT (envelope-from gnats) Resent-Date: Fri, 27 Sep 2013 04:00:01 GMT Resent-Message-Id: <201309270400.r8R401C6040535@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, Tsurutani Naoki Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id D1D3FF26 for ; Fri, 27 Sep 2013 03:53:24 +0000 (UTC) (envelope-from turutani@scphys.kyoto-u.ac.jp) Received: from smtp-auth.kuins.kyoto-u.ac.jp (smtp-auth.kuins.kyoto-u.ac.jp [133.3.248.237]) by mx1.freebsd.org (Postfix) with ESMTP id 9A8002F18 for ; Fri, 27 Sep 2013 03:53:24 +0000 (UTC) Received: from smtp-auth.kuins.kyoto-u.ac.jp (smtp-auth.kuins.kyoto-u.ac.jp [127.0.0.1]) by postfix.imss70 (Postfix) with ESMTP id 332F6100AC; Fri, 27 Sep 2013 12:21:52 +0900 (JST) Received: from h120.65.226.10.32118.vlan.kuins.net (p17154-ipngn100402kyoto.kyoto.ocn.ne.jp [180.10.96.154]) by smtp-auth.kuins.kyoto-u.ac.jp (Postfix) with ESMTP id 224D4100A9; Fri, 27 Sep 2013 12:21:52 +0900 (JST) Received: from h120.65.226.10.32118.vlan.kuins.net (localhost [127.0.0.1]) by h120.65.226.10.32118.vlan.kuins.net (8.14.6/8.14.6/20071004-1) with ESMTP id r8R3LmfK018046; Fri, 27 Sep 2013 12:21:48 +0900 (JST) (envelope-from turutani@h120.65.226.10.32118.vlan.kuins.net) Received: (from turutani@localhost) by h120.65.226.10.32118.vlan.kuins.net (8.14.6/8.14.6/Submit) id r8R3LlOc018045; Fri, 27 Sep 2013 12:21:47 +0900 (JST) (envelope-from turutani) Message-Id: <201309270321.r8R3LlOc018045@h120.65.226.10.32118.vlan.kuins.net> Date: Fri, 27 Sep 2013 12:21:47 +0900 (JST) From: Tsurutani Naoki To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/182429: fix typo in Mk/bsd.ruby.mk Cc: turutani@scphys.kyoto-u.ac.jp X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Tsurutani Naoki List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Sep 2013 04:00:01 -0000 >Number: 182429 >Category: ports >Synopsis: fix typo in Mk/bsd.ruby.mk >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Fri Sep 27 04:00:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Tsurutani Naoki >Release: FreeBSD 8.4-PRERELEASE i386 >Organization: >Environment: System: FreeBSD h120.65.226.10.32118.vlan.kuins.net 8.4-PRERELEASE FreeBSD 8.4-PRERELEASE #26 r249149: Fri Apr 5 22:13:25 JST 2013 turutani@h120.65.226.10.32118.vlan.kuins.net:/usr/local/work/usr/obj/usr/src/sys/POLYMER i386 >Description: "DEFAULT_VERSION" in Mk/bsd.ruby.mk should be "DEFAULT_VERSIONS". >How-To-Repeat: >Fix: --- Mk/bsd.ruby.mk.orig 2013-09-19 17:16:43.000000000 +0900 +++ Mk/bsd.ruby.mk 2013-09-27 11:59:07.000000000 +0900 @@ -140,7 +140,7 @@ .include "${PORTSDIR}/Mk/bsd.default-versions.mk" .if defined(RUBY_DEFAULT_VER) -WARNING+= "Using RUBY_DEFAULT_VER in make.conf, consider using DEFAULT_VERSION=ruby=${RUBY_DEFAULT_VER}" +WARNING+= "Using RUBY_DEFAULT_VER in make.conf, consider using DEFAULT_VERSIONS=ruby=${RUBY_DEFAULT_VER}" .endif RUBY_DEFAULT_VER?= ${RUBY_DEFAULT} >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 04:00:15 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id AC83D151; Fri, 27 Sep 2013 04:00:15 +0000 (UTC) (envelope-from edwin@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 847C02F58; Fri, 27 Sep 2013 04:00:15 +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 r8R40FXi040619; Fri, 27 Sep 2013 04:00:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8R40FiG040618; Fri, 27 Sep 2013 04:00:15 GMT (envelope-from edwin) Date: Fri, 27 Sep 2013 04:00:15 GMT Message-Id: <201309270400.r8R40FiG040618@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ruby@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182429: fix typo in Mk/bsd.ruby.mk 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: Fri, 27 Sep 2013 04:00:15 -0000 Synopsis: fix typo in Mk/bsd.ruby.mk Responsible-Changed-From-To: freebsd-ports-bugs->ruby Responsible-Changed-By: edwin Responsible-Changed-When: Fri Sep 27 04:00:15 UTC 2013 Responsible-Changed-Why: bsd.ruby.mk is ruby territory (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182429 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 04:10:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id B8FA63C6 for ; Fri, 27 Sep 2013 04:10: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 98EFA2FBB for ; Fri, 27 Sep 2013 04:10: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 r8R4A0MV042876 for ; Fri, 27 Sep 2013 04:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8R4A0gc042875; Fri, 27 Sep 2013 04:10:00 GMT (envelope-from gnats) Resent-Date: Fri, 27 Sep 2013 04:10:00 GMT Resent-Message-Id: <201309270410.r8R4A0gc042875@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, Eitan Adler Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 54C1C192 for ; Fri, 27 Sep 2013 04:00:25 +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 2A4A22F5E for ; Fri, 27 Sep 2013 04:00:25 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8R40PPS047354 for ; Fri, 27 Sep 2013 04:00:25 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8R40PZg047342; Fri, 27 Sep 2013 04:00:25 GMT (envelope-from nobody) Message-Id: <201309270400.r8R40PZg047342@oldred.freebsd.org> Date: Fri, 27 Sep 2013 04:00:25 GMT From: Eitan Adler To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182430: [exp-run] 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: Fri, 27 Sep 2013 04:10:00 -0000 >Number: 182430 >Category: ports >Synopsis: [exp-run] >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Sep 27 04:10:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Eitan Adler >Release: >Organization: >Environment: >Description: I am planning on removing RCS from the base system and this requires an exp-run first. Patch here: http://people.freebsd.org/~eadler/files/rcs.diff >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 04:20:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id E667E455 for ; Fri, 27 Sep 2013 04:20:01 +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 B80382010 for ; Fri, 27 Sep 2013 04:20:01 +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 r8R4K19c045716 for ; Fri, 27 Sep 2013 04:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8R4K1lv045715; Fri, 27 Sep 2013 04:20:01 GMT (envelope-from gnats) Date: Fri, 27 Sep 2013 04:20:01 GMT Message-Id: <201309270420.r8R4K1lv045715@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Eitan Adler Subject: Re: ports/182428: [exp-run] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Eitan Adler List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Sep 2013 04:20:02 -0000 The following reply was made to PR ports/182428; it has been noted by GNATS. From: Eitan Adler To: bug-followup@freebsd.org, lists@eitanadler.com Cc: Subject: Re: ports/182428: [exp-run] Date: Fri, 27 Sep 2013 00:10:58 -0400 Hm, looks like my first attempt went through, not the one I thought that did. Here is the patch: http://people.freebsd.org/~eadler/files/rcs.diff -- Eitan Adler From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 04:21:04 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 64F8048E; Fri, 27 Sep 2013 04:21:04 +0000 (UTC) (envelope-from edwin@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 3BC50205E; Fri, 27 Sep 2013 04:21:04 +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 r8R4L45d047375; Fri, 27 Sep 2013 04:21:04 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8R4L4Bl047374; Fri, 27 Sep 2013 04:21:04 GMT (envelope-from edwin) Date: Fri, 27 Sep 2013 04:21:04 GMT Message-Id: <201309270421.r8R4L4Bl047374@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182402: Fix and update net-mgmt/snmp++ port 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: Fri, 27 Sep 2013 04:21:04 -0000 Synopsis: Fix and update net-mgmt/snmp++ port Class-Changed-From-To: maintainer-update->change-request Class-Changed-By: edwin Class-Changed-When: Fri Sep 27 04:21:03 UTC 2013 Class-Changed-Why: Fix category (submitter is not maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182402 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 04:21:06 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 1E12F492; Fri, 27 Sep 2013 04:21:06 +0000 (UTC) (envelope-from edwin@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 E8D832060; Fri, 27 Sep 2013 04:21:05 +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 r8R4L5Zw047453; Fri, 27 Sep 2013 04:21:05 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8R4L55A047452; Fri, 27 Sep 2013 04:21:05 GMT (envelope-from edwin) Date: Fri, 27 Sep 2013 04:21:05 GMT Message-Id: <201309270421.r8R4L55A047452@freefall.freebsd.org> To: nicolai@petri.dk, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182402: Fix and update net-mgmt/snmp++ port 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: Fri, 27 Sep 2013 04:21:06 -0000 Synopsis: Fix and update net-mgmt/snmp++ port State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Fri Sep 27 04:21:05 UTC 2013 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182402 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 04:30:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 7AB44558 for ; Fri, 27 Sep 2013 04:30:01 +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 68FB22094 for ; Fri, 27 Sep 2013 04:30:01 +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 r8R4U12d047820 for ; Fri, 27 Sep 2013 04:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8R4U12Y047819; Fri, 27 Sep 2013 04:30:01 GMT (envelope-from gnats) Date: Fri, 27 Sep 2013 04:30:01 GMT Message-Id: <201309270430.r8R4U12Y047819@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/182402: Fix and update net-mgmt/snmp++ port X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Sep 2013 04:30:01 -0000 The following reply was made to PR ports/182402; it has been noted by GNATS. From: Edwin Groothuis To: nicolai@catpipe.net Cc: bug-followup@FreeBSD.org Subject: Re: ports/182402: Fix and update net-mgmt/snmp++ port Date: Fri, 27 Sep 2013 04:21:04 UT Maintainer of net-mgmt/snmp++, Please note that PR ports/182402 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/182402 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 06:20:02 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 52B35E12 for ; Fri, 27 Sep 2013 06:20:02 +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 32BDD2470 for ; Fri, 27 Sep 2013 06:20:02 +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 r8R6K2YC073188 for ; Fri, 27 Sep 2013 06:20:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8R6K2LV073187; Fri, 27 Sep 2013 06:20:02 GMT (envelope-from gnats) Resent-Date: Fri, 27 Sep 2013 06:20:02 GMT Resent-Message-Id: <201309270620.r8R6K2LV073187@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, Han Frederic 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 751A4CFB for ; Fri, 27 Sep 2013 06:15:49 +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 48F552458 for ; Fri, 27 Sep 2013 06:15:49 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8R6FmAw022527 for ; Fri, 27 Sep 2013 06:15:48 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8R6Fm6H022489; Fri, 27 Sep 2013 06:15:48 GMT (envelope-from nobody) Message-Id: <201309270615.r8R6Fm6H022489@oldred.freebsd.org> Date: Fri, 27 Sep 2013 06:15:48 GMT From: Han Frederic To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182431: [Maintainer] math/giacxcas fixes for FreeBSD 10 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: Fri, 27 Sep 2013 06:20:02 -0000 >Number: 182431 >Category: ports >Synopsis: [Maintainer] math/giacxcas fixes for FreeBSD 10 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Sep 27 06:20:01 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Han Frederic >Release: FreeBSD 10 and FreeBSD 8.2 >Organization: Universite Paris 7 >Environment: FreeBSD bsd10amd64 10.0-CURRENT FreeBSD 10.0-CURRENT #0 r255342: Sat Sep 7 07:34:47 UTC 2013 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: I was reported the followinf pkg-fallout: http://beefy2.isc.freebsd.org/bulk/head-amd64-default/2013-09-26_00h44m15s/logs/giacxcas-1.1.0.log -add USE_GCC, and some other dependancies. -Then, there was problems with NTL 6.0. I asked upstream and was reported that they didn't try this version yet so I have disable NTL for freebsd10 only. >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN giacxcas/Makefile giacxcas.new/Makefile --- giacxcas/Makefile 2013-09-20 22:55:04.000000000 +0200 +++ giacxcas.new/Makefile 2013-09-26 23:01:22.000000000 +0200 @@ -1,8 +1,9 @@ # Created by: Frederic Han -# $FreeBSD: math/giacxcas/Makefile 327746 2013-09-20 20:55:04Z bapt $ +# $FreeBSD: math/giacxcas/Makefile 326854 2013-09-10 01:23:13Z wg $ PORTNAME= giacxcas PORTVERSION= 1.1.0 +PORTREVISION= 1 CATEGORIES= math MASTER_SITES= http://www-fourier.ujf-grenoble.fr/~parisse/giac/freebsd/ \ http://www.math.jussieu.fr/~han/xcas/sources/ @@ -17,6 +18,8 @@ BUILD_DEPENDS= bash:${PORTSDIR}/shells/bash \ ${LOCALBASE}/lib/libntl.a:${PORTSDIR}/math/ntl LIB_DEPENDS= libgmp.so:${PORTSDIR}/math/gmp \ + libpng.so:${PORTSDIR}/graphics/png \ + libjpeg.so:${PORTSDIR}/graphics/jpeg \ libpari.so:${PORTSDIR}/math/pari \ libmpfr.so:${PORTSDIR}/math/mpfr \ libgsl.so:${PORTSDIR}/math/gsl \ @@ -30,7 +33,7 @@ USE_TEX= latex:build dvipsk:build USE_LDCONFIG= yes USES= gettext gmake - +USE_GCC= yes DOCSDIR= ${PREFIX}/share/doc/giac PORTDOCS= * DATADIR= ${PREFIX}/share/giac @@ -47,18 +50,28 @@ INFO= giac_es giac_us NO_STAGE= yes + +.include +.if ${OSVERSION} >= 1000000 +CONFIGURE_ARGS+= --disable-ntl +.endif + post-patch: @${GREP} -Rl --null /bin/bash ${COCOALIB-GIAC} | ${XARGS} -0 \ ${REINPLACE_CMD} -e 's|/bin/bash|/usr/bin/env bash|' @${REINPLACE_CMD} -e 's|/usr/bin|${LOCALBASE}/bin|' \ ${WRKSRC}/xcas.applications ${WRKSRC}/xcas.desktop +.if ${OSVERSION} >= 1000000 + @${REINPLACE_CMD} -e 's|friend class Fl_Group;|friend class Fl_Group;friend class Fl_X;|' \ + ${FLTKDEV-GIAC}/FL/Fl_Widget.H +.endif pre-configure: cd ${COCOALIB-GIAC} && \ - ./configure --with-libgmp=${LOCALBASE}/lib/libgmp.a && \ + ./configure --with-libgmp=${LOCALBASE}/lib/libgmp.a --with-cxx=${CXX}&& \ ${GMAKE} library && \ cd ${FLTKDEV-GIAC} && \ ./configure --prefix=${FLTKDEV-GIAC} \ && ${MAKE} -.include +.include >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 06:50:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id EAEF329B for ; Fri, 27 Sep 2013 06:50: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 B1F7F25B1 for ; Fri, 27 Sep 2013 06:50: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 r8R6o0f2082470 for ; Fri, 27 Sep 2013 06:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8R6o0mD082469; Fri, 27 Sep 2013 06:50:00 GMT (envelope-from gnats) Resent-Date: Fri, 27 Sep 2013 06:50:00 GMT Resent-Message-Id: <201309270650.r8R6o0mD082469@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, Yuri Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 95217125 for ; Fri, 27 Sep 2013 06:40:01 +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 84313254D for ; Fri, 27 Sep 2013 06:40:01 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8R6e1h5063065 for ; Fri, 27 Sep 2013 06:40:01 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8R6e1dp063064; Fri, 27 Sep 2013 06:40:01 GMT (envelope-from nobody) Message-Id: <201309270640.r8R6e1dp063064@oldred.freebsd.org> Date: Fri, 27 Sep 2013 06:40:01 GMT From: Yuri To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182432: [PATCH] port devel/google-perftools update 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: Fri, 27 Sep 2013 06:50:01 -0000 >Number: 182432 >Category: ports >Synopsis: [PATCH] port devel/google-perftools update >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Sep 27 06:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Yuri >Release: >Organization: n/a >Environment: >Description: Added missing dependency >How-To-Repeat: >Fix: Patch attached with submission follows: Index: devel/google-perftools/Makefile =================================================================== --- devel/google-perftools/Makefile (revision 327443) +++ devel/google-perftools/Makefile (working copy) @@ -7,6 +7,7 @@ PORTNAME= google-perftools PORTVERSION= 1.8.3 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} \ ${MASTER_SITE_LOCAL} @@ -15,6 +16,8 @@ MAINTAINER= yuri@tsoft.com COMMENT= Fast, multi-threaded malloc() and nifty performance analysis tools +LIB_DEPENDS= execinfo:${PORTSDIR}/devel/libexecinfo + GNU_CONFIGURE= yes USE_LDCONFIG= yes MAN1= pprof.1 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 06:50:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 3211F29D for ; Fri, 27 Sep 2013 06:50:01 +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 1324225B3 for ; Fri, 27 Sep 2013 06:50:01 +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 r8R6o0P6082481 for ; Fri, 27 Sep 2013 06:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8R6o0Wt082480; Fri, 27 Sep 2013 06:50:00 GMT (envelope-from gnats) Resent-Date: Fri, 27 Sep 2013 06:50:00 GMT Resent-Message-Id: <201309270650.r8R6o0Wt082480@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, Green Dog 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 5BC1213A for ; Fri, 27 Sep 2013 06:42:07 +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 301BA257A for ; Fri, 27 Sep 2013 06:42:07 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8R6g698098825 for ; Fri, 27 Sep 2013 06:42:06 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8R6g62B098824; Fri, 27 Sep 2013 06:42:06 GMT (envelope-from nobody) Message-Id: <201309270642.r8R6g62B098824@oldred.freebsd.org> Date: Fri, 27 Sep 2013 06:42:06 GMT From: Green Dog To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182433: [games/py-fife] try fix in 10-CURRENT 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: Fri, 27 Sep 2013 06:50:01 -0000 >Number: 182433 >Category: ports >Synopsis: [games/py-fife] try fix in 10-CURRENT >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Sep 27 06:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Green Dog >Release: >Organization: >Environment: >Description: [games/py-fife] try fix in 10-CURRENT (no tested) PR 176714 (fix make package) warn about options devel/guichan (in default build no need) >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN py-fife.orig/Makefile py-fife/Makefile --- py-fife.orig/Makefile 2013-09-20 21:36:33.000000000 +0400 +++ py-fife/Makefile 2013-09-27 10:41:53.000000000 +0400 @@ -22,6 +22,8 @@ boost_filesystem:${PORTSDIR}/devel/boost-libs \ png15:${PORTSDIR}/graphics/png +CXXFLAGS+= -std=c++98 + FETCH_ARGS= -Fpr USE_SDL= sdl ttf image @@ -30,7 +32,8 @@ USE_SCONS= yes SCONS_ARGS= --prefix=${PREFIX} --python-prefix=${PYTHON_SITELIBDIR} SCONS_BUILDENV= SWIG=${LOCALBASE}/bin/swig \ - CXX=${CXX} + CXX=${CXX} \ + CXXFLAGS="${CXXFLAGS}" SCONS_TARGET= fife-python SCONS_INSTALL_TARGET= install-python @@ -41,9 +44,13 @@ USES= pkgconfig -NO_STAGE= yes +pre-everything:: + @${ECHO_CMD} + @${ECHO_CMD} " devel/guichan must be build with SDL and OpenGL support" + @sleep 15 + post-patch: - ${REINPLACE_CMD} -e 's/X11R6/local/g; s/libpng/ligpng15/g' ${WRKSRC}/build/openbsd4-config.py && \ + ${REINPLACE_CMD} -e 's/X11R6/local/g; s/libpng/libpng15/g' ${WRKSRC}/build/openbsd4-config.py && \ ${MV} ${WRKSRC}/build/openbsd4-config.py ${WRKSRC}/build/${PYTHON_PLATFORM}-config.py post-install: diff -ruN py-fife.orig/pkg-install py-fife/pkg-install --- py-fife.orig/pkg-install 1970-01-01 03:00:00.000000000 +0300 +++ py-fife/pkg-install 2013-09-27 10:41:53.000000000 +0400 @@ -0,0 +1,11 @@ +#!/bin/sh + +PREFIX=${PKG_PREFIX:-/usr/local} + +[ "x$1" = "x" ] && exit 1 +if [ "x$2" = "xPOST-INSTALL" ]; then + mkdir -p ${PREFIX}/share/fife/demos/rio_de_hola/saves + mkdir -p ${PREFIX}/share/fife/demos/rio_de_hola/imports + mkdir -p ${PREFIX}/share/fife/demos/rio_de_hola/cursors +fi + >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 06:50:16 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 7127B34A; Fri, 27 Sep 2013 06:50:16 +0000 (UTC) (envelope-from edwin@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 45A1E25BE; Fri, 27 Sep 2013 06:50:16 +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 r8R6oGcl082707; Fri, 27 Sep 2013 06:50:16 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8R6oGp4082706; Fri, 27 Sep 2013 06:50:16 GMT (envelope-from edwin) Date: Fri, 27 Sep 2013 06:50:16 GMT Message-Id: <201309270650.r8R6oGp4082706@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182433: [games/py-fife] try fix in 10-CURRENT 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: Fri, 27 Sep 2013 06:50:16 -0000 Synopsis: [games/py-fife] try fix in 10-CURRENT Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Fri Sep 27 06:50:15 UTC 2013 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182433 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 06:50:14 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 B0ED7346; Fri, 27 Sep 2013 06:50:14 +0000 (UTC) (envelope-from edwin@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 8836325BA; Fri, 27 Sep 2013 06:50:14 +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 r8R6oEUw082626; Fri, 27 Sep 2013 06:50:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8R6oEXB082625; Fri, 27 Sep 2013 06:50:14 GMT (envelope-from edwin) Date: Fri, 27 Sep 2013 06:50:14 GMT Message-Id: <201309270650.r8R6oEXB082625@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182433: [games/py-fife] try fix in 10-CURRENT 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: Fri, 27 Sep 2013 06:50:14 -0000 Synopsis: [games/py-fife] try fix in 10-CURRENT Class-Changed-From-To: change-request->maintainer-update Class-Changed-By: edwin Class-Changed-When: Fri Sep 27 06:50:14 UTC 2013 Class-Changed-Why: Fix category (submitter is maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182433 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 09: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 9B8875A2 for ; Fri, 27 Sep 2013 09: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 7C11F2E5D for ; Fri, 27 Sep 2013 09: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 r8R9U04H027306 for ; Fri, 27 Sep 2013 09: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 r8R9U0PZ027305; Fri, 27 Sep 2013 09:30:00 GMT (envelope-from gnats) Resent-Date: Fri, 27 Sep 2013 09:30:00 GMT Resent-Message-Id: <201309270930.r8R9U0PZ027305@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, Olli Hauer Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id BDC9E59C for ; Fri, 27 Sep 2013 09:29:54 +0000 (UTC) (envelope-from ohauer@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 919052E59 for ; Fri, 27 Sep 2013 09:29:54 +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 r8R9TsAn027224 for ; Fri, 27 Sep 2013 09:29:54 GMT (envelope-from ohauer@freefall.freebsd.org) Received: (from ohauer@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8R9TsAx027223; Fri, 27 Sep 2013 09:29:54 GMT (envelope-from ohauer) Message-Id: <201309270929.r8R9TsAx027223@freefall.freebsd.org> Date: Fri, 27 Sep 2013 09:29:54 GMT From: Olli Hauer To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/182435: [patch] Mk/bsd.stage.mk add support for ETCDIR and WWWDIR to makeplist 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: Fri, 27 Sep 2013 09:30:00 -0000 >Number: 182435 >Category: ports >Synopsis: [patch] Mk/bsd.stage.mk add support for ETCDIR and WWWDIR to makeplist >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Sep 27 09:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Olli Hauer >Release: >Organization: >Environment: >Description: make makeplist should support ETCDIR and WWWDIR >How-To-Repeat: >Fix: --- bsd.stage.mk.diff begins here --- Index: Mk/bsd.stage.mk =================================================================== --- Mk/bsd.stage.mk (revision 328434) +++ Mk/bsd.stage.mk (working copy) @@ -85,7 +85,9 @@ @${FIND} ${STAGEDIR} -type f -o -type l | ${SORT} | ${SED} -e "s,${STAGEDIR},,g" \ -e "s,${DOCSDIR},%%PORTDOCS%%%%DOCSDIR%%,g" \ -e "s,${EXAMPLESDIR},%%PORTEXAMPLES%%%%EXAMPLESDIR%%,g" \ + -e "s,${ETCDIR},%%ETCDIR%%,g" \ -e "s,${DATADIR},%%DATADIR%%,g" \ + -e "s,${WWWDIR},%%WWWDIR%%,g" \ -e "s,${PREFIX}/,,g" | ${GREP} -v "^share/licenses" || ${TRUE} @${FIND} ${STAGEDIR} -type d | ${SED} -e "s,${STAGEDIR},,g" \ | while read line; do \ @@ -95,7 +97,9 @@ done | ${SORT} -r | ${SED} \ -e "s,\(.*\)${DOCSDIR},%%PORTDOCS%%\1%%DOCSDIR%%,g" \ -e "s,\(.*\)${EXAMPLESDIR},%%PORTEXAMPLES%%\1%%EXAMPLESDIR%%,g" \ + -e "s,${ETCDIR},%%ETCDIR%%,g" \ -e "s,${DATADIR},%%DATADIR%%,g" \ + -e "s,${WWWDIR},%%WWWDIR%%,g" \ -e "s,${PREFIX}/,,g" | ${GREP} -v "^@dirrmtry share/licenses" || ${TRUE} .endif @@ -137,7 +141,9 @@ done | ${SED} \ -e "s,${DOCSDIR},%%PORTDOCS%%%%DOCSDIR%%,g" \ -e "s,${EXAMPLESDIR},%%PORTEXAMPLES%%%%EXAMPLESDIR%%,g" \ + -e "s,${ETCDIR},%%ETCDIR%%,g" \ -e "s,${DATADIR},%%DATADIR%%,g" \ + -e "s,${WWWDIR},%%WWWDIR%%,g" \ -e "s,${PREFIX}/,,g" | ${GREP} -v "^share/licenses" || ${TRUE} @${FIND} ${STAGEDIR} -type d | ${SED} -e "s,${STAGEDIR},,g" \ | while read line; do \ @@ -148,6 +154,8 @@ done | ${SORT} -r | ${SED} \ -e "s,\(.*\)${DOCSDIR},%%PORTDOCS%%\1%%DOCSDIR%%,g" \ -e "s,\(.*\)${EXAMPLESDIR},%%PORTEXAMPLES%%\1%%EXAMPLESDIR%%,g" \ + -e "s,${ETCDIR},%%ETCDIR%%,g" \ -e "s,${DATADIR},%%DATADIR%%,g" \ + -e "s,${WWWDIR},%%WWWDIR%%,g" \ -e "s,${PREFIX}/,,g" | ${GREP} -v "^@dirrmtry share/licenses" || ${TRUE} .endif --- bsd.stage.mk.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 09:40:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 493E0905 for ; Fri, 27 Sep 2013 09:40:01 +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 28ABD2EE1 for ; Fri, 27 Sep 2013 09:40:01 +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 r8R9e1Kd029160 for ; Fri, 27 Sep 2013 09:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8R9e1kv029159; Fri, 27 Sep 2013 09:40:01 GMT (envelope-from gnats) Resent-Date: Fri, 27 Sep 2013 09:40:01 GMT Resent-Message-Id: <201309270940.r8R9e1kv029159@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, 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 7CAB68C6 for ; Fri, 27 Sep 2013 09:37:51 +0000 (UTC) (envelope-from ginga@athena.ginganet.org) Received: from athena.ginganet.org (202x210x243x26.ap202.ftth.ucom.ne.jp [202.210.243.26]) by mx1.freebsd.org (Postfix) with ESMTP id 4E3162ECD for ; Fri, 27 Sep 2013 09:37:50 +0000 (UTC) Received: from athena.ginganet.org (localhost [127.0.0.1]) by athena.ginganet.org (Postfix) with ESMTP id 32352219D2; Fri, 27 Sep 2013 18:37:44 +0900 (JST) Received: from athena.ginganet.org ([127.0.0.1]) by athena.ginganet.org (athena.ginganet.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ydC1k7hUZRro; Fri, 27 Sep 2013 18:37:40 +0900 (JST) Received: by athena.ginganet.org (Postfix, from userid 5003) id 1027C219CB; Fri, 27 Sep 2013 18:37:40 +0900 (JST) Message-Id: <20130927093740.1027C219CB@athena.ginganet.org> Date: Fri, 27 Sep 2013 18:37:40 +0900 (JST) From: To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/182436: ports/japanese/ng-devel patch from maintainer Cc: ginga-freebsd@ginganet.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: ginga-freebsd@ginganet.org List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Sep 2013 09:40:01 -0000 >Number: 182436 >Category: ports >Synopsis: ports/japanese/ng-devel patch from maintainer >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Sep 27 09:40:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Ginga >Release: FreeBSD 8.4-STABLE amd64 >Organization: >Environment: System: FreeBSD 8.4-STABLE Also tested on FreeBSD 10-ALPHA2 >Description: japanese/ng-devel port is claimed to have build error on 10-current (due to clang compiler?). >How-To-Repeat: current port have build error: http://beefy1.isc.freebsd.org/bulk/head-i386-default/2013-09-26_06h12m52s/logs/ja-ng-1.5.b1.log >Fix: Apply the patch below. Simple modification of two function declaration (int -> void) solves this. "error: non-void function 'ttdell' should return a value [-Wreturn-type]" _______________________________________________________________________________________ diff -urN /usr/ports/japanese/ng-devel/files/patch-def.h ./files/patch-def.h --- /usr/ports/japanese/ng-devel/files/patch-def.h 1970-01-01 09:00:00.000000000 +0900 +++ ./files/patch-def.h 2013-09-27 18:17:34.000000000 +0900 @@ -0,0 +1,14 @@ +diff -ur dist/ng-1.5beta1/def.h def.h +--- dist/ng-1.5beta1/def.h 2003-03-08 10:22:35.000000000 +0900 ++++ def.h 2013-09-26 15:39:03.000000000 +0900 +@@ -506,8 +506,8 @@ + #endif + extern int vtputs pro((char *)); + extern int kdispbufcode pro((BUFFER *)); +-extern int ttinsl pro((int, int, int)); +-extern int ttdell pro((int, int, int)); ++extern VOID ttinsl pro((int, int, int)); ++extern VOID ttdell pro((int, int, int)); + extern int fepmode_off pro((void)); + extern int getkey pro((int)); + extern VOID ungetkey pro((int)); diff -urN /usr/ports/japanese/ng-devel/files/patch-sys-default-tty.c ./files/patch-sys-default-tty.c --- /usr/ports/japanese/ng-devel/files/patch-sys-default-tty.c 1970-01-01 09:00:00.000000000 +0900 +++ ./files/patch-sys-default-tty.c 2013-09-27 18:17:25.000000000 +0900 @@ -0,0 +1,19 @@ +diff -ur dist/ng-1.5beta1/sys/default/tty.c sys/default/tty.c +--- dist/ng-1.5beta1/sys/default/tty.c 2001-01-21 03:10:22.000000000 +0900 ++++ sys/default/tty.c 2013-09-26 15:39:47.000000000 +0900 +@@ -275,6 +275,7 @@ + * If no scrolling region, use a set + * of insert and delete line sequences + */ ++VOID + ttinsl(row, bot, nchunk) { + register int i, nl; + +@@ -314,6 +315,7 @@ + * lines. The presence of the echo area makes a + * boundry condition go away. + */ ++VOID + ttdell(row, bot, nchunk) + { + register int i, nl; >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 09:40:10 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 0D851937; Fri, 27 Sep 2013 09:40:10 +0000 (UTC) (envelope-from edwin@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 D80E72EE4; Fri, 27 Sep 2013 09:40:09 +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 r8R9e9Xm029237; Fri, 27 Sep 2013 09:40:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8R9e9fQ029236; Fri, 27 Sep 2013 09:40:09 GMT (envelope-from edwin) Date: Fri, 27 Sep 2013 09:40:09 GMT Message-Id: <201309270940.r8R9e9fQ029236@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182436: ports/japanese/ng-devel patch from maintainer 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: Fri, 27 Sep 2013 09:40:10 -0000 Synopsis: ports/japanese/ng-devel patch from maintainer Class-Changed-From-To: maintainer-update->change-request Class-Changed-By: edwin Class-Changed-When: Fri Sep 27 09:40:09 UTC 2013 Class-Changed-Why: Fix category (submitter is not maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182436 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 09:40:11 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 BFAA193D; Fri, 27 Sep 2013 09:40:11 +0000 (UTC) (envelope-from edwin@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 9616B2EE7; Fri, 27 Sep 2013 09:40:11 +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 r8R9eBQB029312; Fri, 27 Sep 2013 09:40:11 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8R9eBfv029311; Fri, 27 Sep 2013 09:40:11 GMT (envelope-from edwin) Date: Fri, 27 Sep 2013 09:40:11 GMT Message-Id: <201309270940.r8R9eBfv029311@freefall.freebsd.org> To: ginga-freebsd@ginganet.org, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182436: ports/japanese/ng-devel patch from maintainer 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: Fri, 27 Sep 2013 09:40:11 -0000 Synopsis: ports/japanese/ng-devel patch from maintainer State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Fri Sep 27 09:40:11 UTC 2013 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182436 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 09:50:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 8345CD46 for ; Fri, 27 Sep 2013 09:50:01 +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 6EE362F75 for ; Fri, 27 Sep 2013 09:50:01 +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 r8R9o1Ok031191 for ; Fri, 27 Sep 2013 09:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8R9o1wf031190; Fri, 27 Sep 2013 09:50:01 GMT (envelope-from gnats) Date: Fri, 27 Sep 2013 09:50:01 GMT Message-Id: <201309270950.r8R9o1wf031190@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/182436: ports/japanese/ng-devel patch from maintainer X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Sep 2013 09:50:01 -0000 The following reply was made to PR ports/182436; it has been noted by GNATS. From: Edwin Groothuis To: ginga-freebsd@ginganet.org Cc: bug-followup@FreeBSD.org Subject: Re: ports/182436: ports/japanese/ng-devel patch from maintainer Date: Fri, 27 Sep 2013 09:40:10 UT Maintainer of japanese/ng-devel, Please note that PR ports/182436 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/182436 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 10:00:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id E1CC9F49 for ; Fri, 27 Sep 2013 10:00: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 C215D2FE9 for ; Fri, 27 Sep 2013 10:00: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 r8RA00EY032976 for ; Fri, 27 Sep 2013 10:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8RA00tt032975; Fri, 27 Sep 2013 10:00:00 GMT (envelope-from gnats) Resent-Date: Fri, 27 Sep 2013 10:00:00 GMT Resent-Message-Id: <201309271000.r8RA00tt032975@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, Ganael Laplanche Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 74EF9D8B for ; Fri, 27 Sep 2013 09:51:17 +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 493612FA3 for ; Fri, 27 Sep 2013 09:51:17 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8R9pHY9056965 for ; Fri, 27 Sep 2013 09:51:17 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8R9pH9q056944; Fri, 27 Sep 2013 09:51:17 GMT (envelope-from nobody) Message-Id: <201309270951.r8R9pH9q056944@oldred.freebsd.org> Date: Fri, 27 Sep 2013 09:51:17 GMT From: Ganael Laplanche To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182437: security/polarssl: turn HAVEGE random generator on 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: Fri, 27 Sep 2013 10:00:01 -0000 >Number: 182437 >Category: ports >Synopsis: security/polarssl: turn HAVEGE random generator on >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Sep 27 10:00:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Ganael Laplanche >Release: 10-CURRENT >Organization: http://contribs.martymac.org >Environment: FreeBSD laptop.martymac.org 10.0-CURRENT FreeBSD 10.0-CURRENT #1 r255202M: Wed Sep 4 12:47:38 CEST 2013 martymac@laptop.martymac.org:/usr/obj/files/Src/sys/GENERIC amd64 >Description: Hi Jase, The new version of emulators/dolphin-emu-devel will require two functions from polarssl (havege_init() and havege_random()) that are not provided by the port. Is there a reason for keeping them turned off ? If not, find attach a patch that enables those two functions. Best regards, >How-To-Repeat: >Fix: Patch attached with submission follows: diff -aurN security/polarssl.orig/Makefile security/polarssl/Makefile --- security/polarssl.orig/Makefile 2013-09-21 00:55:24.000000000 +0200 +++ security/polarssl/Makefile 2013-09-24 16:42:12.129251539 +0200 @@ -3,6 +3,7 @@ PORTNAME= polarssl PORTVERSION= 1.2.8 DISTVERSIONSUFFIX= -gpl +PORTREVISION= 1 CATEGORIES= security devel MASTER_SITES= http://polarssl.org/download/ EXTRACT_SUFX= .tgz @@ -18,7 +19,7 @@ FETCH_ARGS= -pRro ${DISTFILES} ALL_TARGET= no_test -USE_GMAKE= yes +USES= gmake USE_LDCONFIG= yes WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} diff -aurN security/polarssl.orig/files/patch-include-polarssl-config.h security/polarssl/files/patch-include-polarssl-config.h --- security/polarssl.orig/files/patch-include-polarssl-config.h 1970-01-01 01:00:00.000000000 +0100 +++ security/polarssl/files/patch-include-polarssl-config.h 2013-09-24 16:40:12.856243076 +0200 @@ -0,0 +1,12 @@ +--- include/polarssl/config.h.orig 2013-09-24 16:37:14.000000000 +0200 ++++ include/polarssl/config.h 2013-09-24 16:39:22.000000000 +0200 +@@ -627,8 +627,8 @@ + * Requires: POLARSSL_TIMING_C + * + * Uncomment to enable the HAVEGE random generator. +-#define POLARSSL_HAVEGE_C + */ ++#define POLARSSL_HAVEGE_C + + /** + * \def POLARSSL_MD_C >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 10:00:08 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 5997FF7D; Fri, 27 Sep 2013 10:00:08 +0000 (UTC) (envelope-from edwin@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 2B25E2FEE; Fri, 27 Sep 2013 10:00:08 +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 r8RA08ov033113; Fri, 27 Sep 2013 10:00:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8RA07tH033112; Fri, 27 Sep 2013 10:00:07 GMT (envelope-from edwin) Date: Fri, 27 Sep 2013 10:00:07 GMT Message-Id: <201309271000.r8RA07tH033112@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jase@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182437: security/polarssl: turn HAVEGE random generator on 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: Fri, 27 Sep 2013 10:00:08 -0000 Synopsis: security/polarssl: turn HAVEGE random generator on Responsible-Changed-From-To: freebsd-ports-bugs->jase Responsible-Changed-By: edwin Responsible-Changed-When: Fri Sep 27 10:00:07 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182437 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 10:20: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 93F2F8AC for ; Fri, 27 Sep 2013 10:20: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 7088F2143 for ; Fri, 27 Sep 2013 10:20: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 r8RAK0ff037879 for ; Fri, 27 Sep 2013 10:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8RAK0GP037878; Fri, 27 Sep 2013 10:20:00 GMT (envelope-from gnats) Resent-Date: Fri, 27 Sep 2013 10:20:00 GMT Resent-Message-Id: <201309271020.r8RAK0GP037878@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, Brooks Davis 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 0008A484 for ; Fri, 27 Sep 2013 10:14:10 +0000 (UTC) (envelope-from brooks@lor.one-eyed-alien.net) Received: from lor.one-eyed-alien.net (lor.one-eyed-alien.net [69.66.77.232]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D681020EB for ; Fri, 27 Sep 2013 10:14:09 +0000 (UTC) Received: from lor.one-eyed-alien.net (localhost [127.0.0.1]) by lor.one-eyed-alien.net (8.14.5/8.14.5) with ESMTP id r8RAE8Mi098792 for ; Fri, 27 Sep 2013 05:14:08 -0500 (CDT) (envelope-from brooks@lor.one-eyed-alien.net) Received: (from brooks@localhost) by lor.one-eyed-alien.net (8.14.7/8.14.7/Submit) id r8RAE8eU098791; Fri, 27 Sep 2013 05:14:08 -0500 (CDT) (envelope-from brooks) Message-Id: <201309271014.r8RAE8eU098791@lor.one-eyed-alien.net> Date: Fri, 27 Sep 2013 05:14:08 -0500 (CDT) From: Brooks Davis To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/182438: exprun: switch mtree to nmtree X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Brooks Davis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Sep 2013 10:20:00 -0000 >Number: 182438 >Category: ports >Synopsis: exprun: switch mtree to nmtree >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Sep 27 10:20:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Brooks Davis >Release: FreeBSD 8.4-RELEASE amd64 >Organization: >Environment: System: FreeBSD lor.one-eyed-alien.net 8.4-RELEASE FreeBSD 8.4-RELEASE #0 r251259: Sun Jun 2 21:26:57 UTC 2013 root@bake.isc.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: I'm planning to switch the default mtree from fmtree to nmtree in 10. Please do an exp run to verify that the following change does not break ports. After talking to bapt I belive it shouldn't be a problem unless some port uses mtree directly for some odd reason. When installed over an exist system the functional portion of the change is: rm /usr/sbin/mtree; ln /usr/sbin/nmtree /usr/sbin/mtree Index: UPDATING =================================================================== --- UPDATING (revision 255877) +++ UPDATING (working copy) @@ -31,6 +31,12 @@ disable the most expensive debugging functionality run "ln -s 'abort:false,junk:false' /etc/malloc.conf".) +20130927: + The default version of mtree is nmtree which is obtained from + NetBSD. The output is generally the same, but may vary + slightly. If you found you need identical output adding + "-F freebsd9" to the command line should do the trick. + 20130916: With the addition of unbound(8), a new unbound user is now required during installworld. "mergemaster -p" can be used to Index: share/man/man5/src.conf.5 =================================================================== --- share/man/man5/src.conf.5 (revision 255877) +++ share/man/man5/src.conf.5 (working copy) @@ -848,14 +848,14 @@ .\" from FreeBSD: head/tools/build/options/WITHOUT_NLS_CATALOGS 156932 2006-03-21 07:50:50Z ru Set to not build NLS catalog support for .Xr csh 1 . -.It Va WITH_NMTREE -.\" from FreeBSD: head/tools/build/options/WITH_NMTREE 245435 2013-01-14 20:38:32Z brooks +.It Va WITHOUT_NMTREE +.\" $FreeBSD$ Set to install -.Xr nmtree 8 +.Xr fmtree 8 as .Xr mtree 8 . By default -.Xr fmtree 8 +.Xr nmtree 8 is installed as .Xr mtree 8 . .It Va WITHOUT_NS_CACHING Index: share/mk/bsd.own.mk =================================================================== --- share/mk/bsd.own.mk (revision 255877) +++ share/mk/bsd.own.mk (working copy) @@ -326,6 +326,7 @@ NIS \ NLS \ NLS_CATALOGS \ + NMTREE \ NS_CACHING \ NTP \ OPENSSH \ @@ -382,7 +383,6 @@ LIBICONV_COMPAT \ INSTALL_AS_USER \ LLDB \ - NMTREE \ NAND \ OFED \ OPENSSH_NONE_CIPHER \ >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 11:00: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 EA9B8C87 for ; Fri, 27 Sep 2013 11:00: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 B1956231A for ; Fri, 27 Sep 2013 11:00: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 r8RB00dq045632 for ; Fri, 27 Sep 2013 11:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8RB00lp045631; Fri, 27 Sep 2013 11:00:00 GMT (envelope-from gnats) Resent-Date: Fri, 27 Sep 2013 11:00:00 GMT Resent-Message-Id: <201309271100.r8RB00lp045631@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, Gerard Seibert 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 31FA0BFB for ; Fri, 27 Sep 2013 10:52:50 +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 1FF4A22E1 for ; Fri, 27 Sep 2013 10:52:50 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8RAqnGH082292 for ; Fri, 27 Sep 2013 10:52:49 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8RAqn4J082271; Fri, 27 Sep 2013 10:52:49 GMT (envelope-from nobody) Message-Id: <201309271052.r8RAqn4J082271@oldred.freebsd.org> Date: Fri, 27 Sep 2013 10:52:49 GMT From: Gerard Seibert To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182439: claws-mail vcalendar not displaying correctly. 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: Fri, 27 Sep 2013 11:00:01 -0000 >Number: 182439 >Category: ports >Synopsis: claws-mail vcalendar not displaying correctly. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Sep 27 11:00:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Gerard Seibert >Release: FreeBSD 8.3-STABLE amd64 >Organization: seibercom NET >Environment: FreeBSD scorpio.seibercom.net 8.3-STABLE FreeBSD 8.3-STABLE #0: Fri Aug 17 13:52:14 EDT 2012 gerard@scorpio.seibercom.net:/usr/obj/usr/src/sys/SCORPIO amd64 >Description: The "vcalendar" port for claws-mail "mail/claws-mail-vcalendar" is not displaying correctly. As can be seen on this screen shot , the buttons to the right of the "STARTS" and "ENDS" boxes are grayed out. Also, the "Check Availability" button is grayed out. According to the Debian maintainer for the claws-mail-vcalendar-plugin, Ricardo Mones , the port needs two apply these post-3.9.2 commits: http://git.claws-mail.org/?p=claws.git;a=commitdiff;h=0c8fa959c3daf8fb002fbfc06260c4b4ca5d8f50 http://git.claws-mail.org/?p=claws.git;a=commitdiff;h=1b991ce1f05877ccd2d872da56cb55d1e1b0a3d1 The original Debian bug report is locate at: http://bugs.debian.org/711864 >How-To-Repeat: Install and use the plug-in >Fix: Possible apply the two post-3.9.2 commits (untested) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 12:10: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 78F8F7B7 for ; Fri, 27 Sep 2013 12:10: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 575F62724 for ; Fri, 27 Sep 2013 12:10: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 r8RCA0wU059880 for ; Fri, 27 Sep 2013 12:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8RCA042059879; Fri, 27 Sep 2013 12:10:00 GMT (envelope-from gnats) Resent-Date: Fri, 27 Sep 2013 12:10:00 GMT Resent-Message-Id: <201309271210.r8RCA042059879@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, Mark Felder 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 553D779D for ; Fri, 27 Sep 2013 12:07:51 +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 298FB2715 for ; Fri, 27 Sep 2013 12:07:51 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8RC7p4i060206 for ; Fri, 27 Sep 2013 12:07:51 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8RC7p9W060199; Fri, 27 Sep 2013 12:07:51 GMT (envelope-from nobody) Message-Id: <201309271207.r8RC7p9W060199@oldred.freebsd.org> Date: Fri, 27 Sep 2013 12:07:51 GMT From: Mark Felder To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182441: [PATCH] net/nss-pam-ldapd: supervise nslcd with daemon 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: Fri, 27 Sep 2013 12:10:00 -0000 >Number: 182441 >Category: ports >Synopsis: [PATCH] net/nss-pam-ldapd: supervise nslcd with daemon >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Sep 27 12:10:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Mark Felder >Release: >Organization: >Environment: >Description: This patch adds supervision of the nslcd via daemon(8). It will auto-restart it if it crashes, and also continue trying to start the process in the background during boot under conditions where it would have normally failed to start because of networking not being completely up yet. Without this functionality this port is vastly inferior to the old style net/nss_ldap and security/pam_ldap which do not use a daemon process and instead map shared libraries into every process which is a performance and security concern. nslcd also lowers the amount of ldap connections to your ldap servers as it keeps persistent connections open. This patch adds the needed reliability to keep yourself from being locked out of your server or have other ldap-aware services fail because the nslcd daemon crashed. >How-To-Repeat: >Fix: Patch attached with submission follows: Index: nslcd.in =================================================================== --- nslcd.in (revision 328001) +++ nslcd.in (working copy) @@ -5,14 +5,12 @@ # PROVIDE: nslcd # REQUIRE: ldconfig resolv # BEFORE: syslogd +# KEYWORD: shutdown # # Add the following line to /etc/rc.conf to enable the nslcd daemon: # # nslcd_enable="YES" # -# Optional: -# nslcd_debug="NO" - start nslcd in debugging mode (does not daemonize). -# . /etc/rc.subr @@ -21,27 +19,33 @@ load_rc_config ${name} -: ${nslcd_enable="NO"} -: ${nslcd_debug="NO"} +: ${nslcd_enable:=NO} -command="%%PREFIX%%/sbin/${name}" -pidfile="/var/run/${name}.pid" -start_precmd="nslcd_prestart" -start_postcmd="nslcd_poststart" +command="/usr/sbin/daemon" +command_args="-f -r %%PREFIX%%/sbin/nslcd -d" +status_cmd=nslcd_status +stop_cmd=nslcd_stop -nslcd_prestart () { - if checkyesno nslcd_debug - then - command_args="-d" +nslcd_status() +{ + mypid=$(pgrep -f "daemon: %%PREFIX%%/sbin/nslcd") + if [ ! ${mypid} = '' ]; then + echo "${name} is running with PID ${mypid}"; + else + echo "${name} not running?"; fi } -nslcd_poststart () { - until $(%%PREFIX%%/sbin/${name} -c); do - echo " Waiting for nslcd to start" - sleep 1 - done +nslcd_stop() +{ + mypid=$(pgrep -f "daemon: %%PREFIX%%/sbin/nslcd") + if [ ! ${mypid} = '' ]; then + echo "Stopping ${name}"; + kill -TERM ${mypid}; + wait_for_pids ${mypid}; + else + echo "${name} not running?"; + fi } - run_rc_command "$1" >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 12:10:08 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 570EC7E8; Fri, 27 Sep 2013 12:10:08 +0000 (UTC) (envelope-from edwin@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 2C8E02729; Fri, 27 Sep 2013 12:10:08 +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 r8RCA87H060033; Fri, 27 Sep 2013 12:10:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8RCA7jr060032; Fri, 27 Sep 2013 12:10:07 GMT (envelope-from edwin) Date: Fri, 27 Sep 2013 12:10:07 GMT Message-Id: <201309271210.r8RCA7jr060032@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, zi@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182441: [PATCH] net/nss-pam-ldapd: supervise nslcd with daemon 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: Fri, 27 Sep 2013 12:10:08 -0000 Synopsis: [PATCH] net/nss-pam-ldapd: supervise nslcd with daemon Responsible-Changed-From-To: freebsd-ports-bugs->zi Responsible-Changed-By: edwin Responsible-Changed-When: Fri Sep 27 12:10:07 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182441 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 12:50:01 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 EEB6353E for ; Fri, 27 Sep 2013 12:50: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 CEA7D2A34 for ; Fri, 27 Sep 2013 12:50: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 r8RCo0Fu071610 for ; Fri, 27 Sep 2013 12:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8RCo0T4071608; Fri, 27 Sep 2013 12:50:00 GMT (envelope-from gnats) Resent-Date: Fri, 27 Sep 2013 12:50:00 GMT Resent-Message-Id: <201309271250.r8RCo0T4071608@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, "O. Hartmann" Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 48941408 for ; Fri, 27 Sep 2013 12:47:55 +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 36BDC2A10 for ; Fri, 27 Sep 2013 12:47:55 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8RClt1W011749 for ; Fri, 27 Sep 2013 12:47:55 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8RClt97011746; Fri, 27 Sep 2013 12:47:55 GMT (envelope-from nobody) Message-Id: <201309271247.r8RClt97011746@oldred.freebsd.org> Date: Fri, 27 Sep 2013 12:47:55 GMT From: "O. Hartmann" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182443: graphics/opencv: 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: Fri, 27 Sep 2013 12:50:01 -0000 >Number: 182443 >Category: ports >Synopsis: graphics/opencv: >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Sep 27 12:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: O. Hartmann >Release: FreeBSD 10.0-CURRENT amd64 >Organization: FU Berlin >Environment: FreeBSD 10.0-ALPHA2 #0 r255817: Mon Sep 23 18:35:39 CEST 2013 amd64 >Description: The port graphics/opencv fails on CURRENT with the following error message: [...] 12 warnings generated. [ 1%] Building CXX object modules/highgui/CMakeFiles/opencv_highgui.dir/src/loadsave.o [ 2%] Building CXX object modules/highgui/CMakeFiles/opencv_highgui.dir/src/precomp.o [ 2%] Building CXX object modules/highgui/CMakeFiles/opencv_highgui.dir/src/utils.o [ 2%] Building CXX object modules/highgui/CMakeFiles/opencv_highgui.dir/src/window.o [ 2%] Building CXX object modules/highgui/CMakeFiles/opencv_highgui.dir/src/window_QT.o /usr/ports/graphics/opencv/work/OpenCV-2.3.1/modules/highgui/src/window_QT.cpp:316:5: error: use of undeclared identifier 'usleep' usleep(1000); >How-To-Repeat: Install graphics/opencv on 10.0-CURRENT. >Fix: After patching and after the error occurs, patch manually the file modules/highgui/CMakeFiles/opencv_highgui.dir/src/window_QT.cpp via --- work/OpenCV-2.3.1/modules/highgui/src/window_QT.cpp.orig 2013-09-27 14:38:36.000000000 +0200 +++ work/OpenCV-2.3.1/modules/highgui/src/window_QT.cpp 2013-09-27 14:39:21.000000000 +0200 @@ -46,6 +46,8 @@ #ifdef _WIN32 #include #define usleep Sleep +#else +#include #endif #ifndef M_PI This patch was suggested by T. Nackos via eMail. I tried to patch via a patchfile, but since the C++ sourcefile is obviously created dynamically, it fails. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 12:50:01 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 58883541 for ; Fri, 27 Sep 2013 12:50:01 +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 374CA2A36 for ; Fri, 27 Sep 2013 12:50:01 +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 r8RCo01C071636 for ; Fri, 27 Sep 2013 12:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8RCo08E071621; Fri, 27 Sep 2013 12:50:00 GMT (envelope-from gnats) Resent-Date: Fri, 27 Sep 2013 12:50:00 GMT Resent-Message-Id: <201309271250.r8RCo08E071621@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, Mark Felder 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 E3C743D1 for ; Fri, 27 Sep 2013 12:44:11 +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 D0AAA29F3 for ; Fri, 27 Sep 2013 12:44:11 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8RCiBPM080681 for ; Fri, 27 Sep 2013 12:44:11 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8RCiBop080679; Fri, 27 Sep 2013 12:44:11 GMT (envelope-from nobody) Message-Id: <201309271244.r8RCiBop080679@oldred.freebsd.org> Date: Fri, 27 Sep 2013 12:44:11 GMT From: Mark Felder To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182444: [PATCH] net-mgmt/ipplan cleanup and fixes 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: Fri, 27 Sep 2013 12:50:01 -0000 >Number: 182444 >Category: ports >Synopsis: [PATCH] net-mgmt/ipplan cleanup and fixes >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Sep 27 12:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Mark Felder >Release: >Organization: >Environment: >Description: patch cleans up ipplan so it installs files in ${WWWDIR} and doesn't delete your config when the package/port is deinstalled. >How-To-Repeat: >Fix: Patch attached with submission follows: Index: Makefile =================================================================== --- Makefile (revision 328001) +++ Makefile (working copy) @@ -3,6 +3,7 @@ PORTNAME= ipplan PORTVERSION= 4.92b +PORTREVISION= 1 CATEGORIES= net-mgmt MASTER_SITES= SF/iptrack/${PORTNAME}/Release%204.92 @@ -17,21 +18,26 @@ NO_BUILD= yes WRKSRC= ${WRKDIR}/${PORTNAME} -IPPLANDIR?= share/${PORTNAME} CONFIG= config.php SUB_FILES= pkg-message -PLIST_SUB= IPPLANDIR=${IPPLANDIR} -SUB_LIST+= IPPLANDIR=${IPPLANDIR} +REINPLACE_ARGS= -i '' +USES= shebangfix +SHEBANG_FILES= ${WRKSRC}/contrib/process-exports.pl ${WRKSRC}/contrib/ipplan-poller.php -.if !defined(WITHOUT_MYSQL) +OPTIONS_DEFINE= MYSQL PGSQL SNMP +OPTIONS_DEFAULT= MYSQL + +.include + +.if ${PORT_OPTIONS:MMYSQL} USE_PHP+= mysql .endif -.if defined(WITH_PGSQL) +.if ${PORT_OPTIONS:MPGSQL} USE_PHP+= pgsql .endif -.if defined(WITH_SNMP) +.if ${PORT_OPTIONS:MSNMP} USE_PHP+= snmp .endif @@ -39,32 +45,21 @@ .include post-patch: - @${REINPLACE_CMD} -e "s|/usr/bin/perl|${PERL}|" \ - -e "s|/usr/bin/xsltproc|${LOCALBASE}/bin/xsltproc|" \ + @${REINPLACE_CMD} -e "s|/usr/bin/xsltproc|${LOCALBASE}/bin/xsltproc|" \ ${WRKSRC}/contrib/process-exports.pl - @${REINPLACE_CMD} -e "s|/usr/local/bin/php|${LOCALBASE}/bin/php|" \ - ${WRKSRC}/contrib/ipplan-poller.php @${REINPLACE_CMD} -e "s|%%LOCALBASE%%|${LOCALBASE}|" \ - ${WRKSRC}/config.php - @${FIND} ${WRKSRC} -name '*.orig' -delete -o -name '*.bak' -delete - -pre-install: + ${WRKSRC}/${CONFIG} @${MV} ${WRKSRC}/${CONFIG} ${WRKSRC}/${CONFIG}.sample + @${RM} ${WRKSRC}/${CONFIG}.orig do-install: - @${MKDIR} ${PREFIX}/${IPPLANDIR} - @cd ${WRKSRC} && ${FIND} * | \ - ${CPIO} -dlmp -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/${IPPLANDIR} + ${INSTALL} -d ${WWWDIR} + @cd ${WRKSRC} && ${COPYTREE_SHARE} . ${WWWDIR} post-install: -.if !exists(${PREFIX}/${IPPLANDIR}/${CONFIG}) - @${INSTALL_DATA} ${WRKSRC}/${CONFIG}.sample \ - ${PREFIX}/${IPPLANDIR}/${CONFIG} -.endif - @${MKDIR} -m 700 /var/spool/ipplan/uploads \ - /var/spool/ipplan/exportdns - @${CHOWN} -R www:www /var/spool/ipplan -.if defined(WITH_PGSQL) + ${INSTALL} -d -o www -g www -m 700 /var/spool/ipplan/uploads \ + /var/spool/ipplan/exportdns /var/spool/ipplan/dhcpexport +.if ${PORT_OPTIONS:MPGSQL} @${REINPLACE_CMD} -e 's|INSTALL|INSTALL-POSTGRESQL|g' ${PKGMESSAGE} .endif @${CAT} ${PKGMESSAGE} Index: files/patch-config.php =================================================================== --- files/patch-config.php (revision 328001) +++ files/patch-config.php (working copy) @@ -32,7 +32,7 @@ // export path where DHCP files in XML format will be output ready for // transformation into DHCP file for various DHCP servers -define("DHCPEXPORTPATH", '/tmp/dhcp/'); -+define("DHCPEXPORTPATH", '/var/spool/ipplan/dncpexport/'); ++define("DHCPEXPORTPATH", '/var/spool/ipplan/dhcpexport/'); // This string identifies ip addresses that belong in the DHCP pool define("DHCPRESERVED", "Reserved - DHCP pool"); Index: files/pkg-message.in =================================================================== --- files/pkg-message.in (revision 328001) +++ files/pkg-message.in (working copy) @@ -1,6 +1,5 @@ ******************************************************************************* IPPlan's installation hasn't completed yet. -Please read %%PREFIX%%/%%IPPLANDIR%%/INSTALL carefully and follow it. -If you won't use Mysql as default database, according to your database, -install required port and read %%PREFIX%%/%%IPPLANDIR%%/INSTALL-[ORACLE9i|POSTGRESQL] +Please read %%WWWDIR%%/INSTALL carefully and follow it. +Instructions for non-MySQL databases can be found in %%WWWDIR%%/ ******************************************************************************* Index: pkg-plist =================================================================== --- pkg-plist (revision 328001) +++ pkg-plist (working copy) @@ -1,623 +1,627 @@ -%%IPPLANDIR%%/CHANGELOG -%%IPPLANDIR%%/CONTRIBUTORS -%%IPPLANDIR%%/INSTALL -%%IPPLANDIR%%/INSTALL-IIS+MSSQL -%%IPPLANDIR%%/INSTALL-ORACLE9i -%%IPPLANDIR%%/INSTALL-POSTGRESQL -%%IPPLANDIR%%/INSTALL-WINDOWS -%%IPPLANDIR%%/INTERNALS -%%IPPLANDIR%%/IPplan.jpg -%%IPPLANDIR%%/LICENSE -%%IPPLANDIR%%/PORTERS -%%IPPLANDIR%%/README -%%IPPLANDIR%%/README.html -%%IPPLANDIR%%/README.sgml -%%IPPLANDIR%%/README1st-WINDOWS.txt -%%IPPLANDIR%%/TODO -%%IPPLANDIR%%/TRANSLATIONS -%%IPPLANDIR%%/TRIGGERS -%%IPPLANDIR%%/UPGRADE -%%IPPLANDIR%%/admin/changepassword.php -%%IPPLANDIR%%/admin/deletebounds.php -%%IPPLANDIR%%/admin/displayauditlog.php -%%IPPLANDIR%%/admin/displayboundsform.php -%%IPPLANDIR%%/admin/exportbase.php -%%IPPLANDIR%%/admin/exportbaseform.php -%%IPPLANDIR%%/admin/exportip.php -%%IPPLANDIR%%/admin/exportipform.php -%%IPPLANDIR%%/admin/importbase.php -%%IPPLANDIR%%/admin/importbaseform.php -%%IPPLANDIR%%/admin/importip.php -%%IPPLANDIR%%/admin/importipform.php -%%IPPLANDIR%%/admin/install.php -%%IPPLANDIR%%/admin/maintenance.php -%%IPPLANDIR%%/admin/schemacreate.php -%%IPPLANDIR%%/admin/usermanager.php -%%IPPLANDIR%%/adodb/adodb-csvlib.inc.php -%%IPPLANDIR%%/adodb/adodb-datadict.inc.php -%%IPPLANDIR%%/adodb/adodb-error.inc.php -%%IPPLANDIR%%/adodb/adodb-errorhandler.inc.php -%%IPPLANDIR%%/adodb/adodb-errorpear.inc.php -%%IPPLANDIR%%/adodb/adodb-exceptions.inc.php -%%IPPLANDIR%%/adodb/adodb-iterator.inc.php -%%IPPLANDIR%%/adodb/adodb-lib.inc.php -%%IPPLANDIR%%/adodb/adodb-pager.inc.php -%%IPPLANDIR%%/adodb/adodb-pear.inc.php -%%IPPLANDIR%%/adodb/adodb-perf.inc.php -%%IPPLANDIR%%/adodb/adodb-perf.inc.php.#.LENS-03-09-05 -%%IPPLANDIR%%/adodb/adodb-php4.inc.php -%%IPPLANDIR%%/adodb/adodb-time.inc.php -%%IPPLANDIR%%/adodb/adodb-time.zip -%%IPPLANDIR%%/adodb/adodb-xmlschema.inc.php -%%IPPLANDIR%%/adodb/adodb.inc.php -%%IPPLANDIR%%/adodb/contrib/toxmlrpc.inc.php -%%IPPLANDIR%%/adodb/cute_icons_for_site/adodb.gif -%%IPPLANDIR%%/adodb/cute_icons_for_site/adodb2.gif -%%IPPLANDIR%%/adodb/datadict/datadict-access.inc.php -%%IPPLANDIR%%/adodb/datadict/datadict-db2.inc.php -%%IPPLANDIR%%/adodb/datadict/datadict-firebird.inc.php -%%IPPLANDIR%%/adodb/datadict/datadict-generic.inc.php -%%IPPLANDIR%%/adodb/datadict/datadict-ibase.inc.php -%%IPPLANDIR%%/adodb/datadict/datadict-informix.inc.php -%%IPPLANDIR%%/adodb/datadict/datadict-mssql.inc.php -%%IPPLANDIR%%/adodb/datadict/datadict-mysql.inc.php -%%IPPLANDIR%%/adodb/datadict/datadict-oci8.inc.php -%%IPPLANDIR%%/adodb/datadict/datadict-postgres.inc.php -%%IPPLANDIR%%/adodb/datadict/datadict-sapdb.inc.php -%%IPPLANDIR%%/adodb/datadict/datadict-sybase.inc.php -%%IPPLANDIR%%/adodb/docs/docs-adodb.htm -%%IPPLANDIR%%/adodb/docs/docs-datadict.htm -%%IPPLANDIR%%/adodb/docs/docs-oracle.htm -%%IPPLANDIR%%/adodb/docs/docs-perf.htm -%%IPPLANDIR%%/adodb/docs/docs-session.htm -%%IPPLANDIR%%/adodb/docs/old-changelog.htm -%%IPPLANDIR%%/adodb/docs/readme.htm -%%IPPLANDIR%%/adodb/docs/tips_portable_sql.htm -%%IPPLANDIR%%/adodb/docs/tute.htm -%%IPPLANDIR%%/adodb/drivers/adodb-access.inc.php -%%IPPLANDIR%%/adodb/drivers/adodb-ado.inc.php -%%IPPLANDIR%%/adodb/drivers/adodb-ado5.inc.php -%%IPPLANDIR%%/adodb/drivers/adodb-ado_access.inc.php -%%IPPLANDIR%%/adodb/drivers/adodb-ado_mssql.inc.php -%%IPPLANDIR%%/adodb/drivers/adodb-borland_ibase.inc.php -%%IPPLANDIR%%/adodb/drivers/adodb-csv.inc.php -%%IPPLANDIR%%/adodb/drivers/adodb-db2.inc.php -%%IPPLANDIR%%/adodb/drivers/adodb-fbsql.inc.php -%%IPPLANDIR%%/adodb/drivers/adodb-firebird.inc.php -%%IPPLANDIR%%/adodb/drivers/adodb-ibase.inc.php -%%IPPLANDIR%%/adodb/drivers/adodb-informix.inc.php -%%IPPLANDIR%%/adodb/drivers/adodb-informix72.inc.php -%%IPPLANDIR%%/adodb/drivers/adodb-ldap.inc.php -%%IPPLANDIR%%/adodb/drivers/adodb-mssql.inc.php -%%IPPLANDIR%%/adodb/drivers/adodb-mssqlpo.inc.php -%%IPPLANDIR%%/adodb/drivers/adodb-mysql.inc.php -%%IPPLANDIR%%/adodb/drivers/adodb-mysqli.inc.php -%%IPPLANDIR%%/adodb/drivers/adodb-mysqlt.inc.php -%%IPPLANDIR%%/adodb/drivers/adodb-netezza.inc.php -%%IPPLANDIR%%/adodb/drivers/adodb-oci8.inc.php -%%IPPLANDIR%%/adodb/drivers/adodb-oci805.inc.php -%%IPPLANDIR%%/adodb/drivers/adodb-oci8po.inc.php -%%IPPLANDIR%%/adodb/drivers/adodb-odbc.inc.php -%%IPPLANDIR%%/adodb/drivers/adodb-odbc_mssql.inc.php -%%IPPLANDIR%%/adodb/drivers/adodb-odbc_oracle.inc.php -%%IPPLANDIR%%/adodb/drivers/adodb-odbtp.inc.php -%%IPPLANDIR%%/adodb/drivers/adodb-odbtp_unicode.inc.php -%%IPPLANDIR%%/adodb/drivers/adodb-oracle.inc.php -%%IPPLANDIR%%/adodb/drivers/adodb-pdo.inc.php -%%IPPLANDIR%%/adodb/drivers/adodb-postgres.inc.php -%%IPPLANDIR%%/adodb/drivers/adodb-postgres64.inc.php -%%IPPLANDIR%%/adodb/drivers/adodb-postgres7.inc.php -%%IPPLANDIR%%/adodb/drivers/adodb-proxy.inc.php -%%IPPLANDIR%%/adodb/drivers/adodb-sapdb.inc.php -%%IPPLANDIR%%/adodb/drivers/adodb-sqlanywhere.inc.php -%%IPPLANDIR%%/adodb/drivers/adodb-sqlite.inc.php -%%IPPLANDIR%%/adodb/drivers/adodb-sqlitepo.inc.php -%%IPPLANDIR%%/adodb/drivers/adodb-sybase.inc.php -%%IPPLANDIR%%/adodb/drivers/adodb-vfp.inc.php -%%IPPLANDIR%%/adodb/lang/adodb-ar.inc.php -%%IPPLANDIR%%/adodb/lang/adodb-bg.inc.php -%%IPPLANDIR%%/adodb/lang/adodb-bgutf8.inc.php -%%IPPLANDIR%%/adodb/lang/adodb-ca.inc.php -%%IPPLANDIR%%/adodb/lang/adodb-cn.inc.php -%%IPPLANDIR%%/adodb/lang/adodb-cz.inc.php -%%IPPLANDIR%%/adodb/lang/adodb-de.inc.php -%%IPPLANDIR%%/adodb/lang/adodb-en.inc.php -%%IPPLANDIR%%/adodb/lang/adodb-es.inc.php -%%IPPLANDIR%%/adodb/lang/adodb-fr.inc.php -%%IPPLANDIR%%/adodb/lang/adodb-hu.inc.php -%%IPPLANDIR%%/adodb/lang/adodb-it.inc.php -%%IPPLANDIR%%/adodb/lang/adodb-nl.inc.php -%%IPPLANDIR%%/adodb/lang/adodb-pl.inc.php -%%IPPLANDIR%%/adodb/lang/adodb-pt-br.inc.php -%%IPPLANDIR%%/adodb/lang/adodb-ro.inc.php -%%IPPLANDIR%%/adodb/lang/adodb-ru1251.inc.php -%%IPPLANDIR%%/adodb/lang/adodb-sv.inc.php -%%IPPLANDIR%%/adodb/license.txt -%%IPPLANDIR%%/adodb/pear/Auth/Container/ADOdb.php -%%IPPLANDIR%%/adodb/pear/readme.Auth.txt -%%IPPLANDIR%%/adodb/perf/perf-db2.inc.php -%%IPPLANDIR%%/adodb/perf/perf-informix.inc.php -%%IPPLANDIR%%/adodb/perf/perf-mssql.inc.php -%%IPPLANDIR%%/adodb/perf/perf-mysql.inc.php -%%IPPLANDIR%%/adodb/perf/perf-oci8.inc.php -%%IPPLANDIR%%/adodb/perf/perf-postgres.inc.php -%%IPPLANDIR%%/adodb/pivottable.inc.php -%%IPPLANDIR%%/adodb/readme.txt -%%IPPLANDIR%%/adodb/rsfilter.inc.php -%%IPPLANDIR%%/adodb/server.php -%%IPPLANDIR%%/adodb/session/adodb-compress-bzip2.php -%%IPPLANDIR%%/adodb/session/adodb-compress-gzip.php -%%IPPLANDIR%%/adodb/session/adodb-cryptsession.php -%%IPPLANDIR%%/adodb/session/adodb-encrypt-mcrypt.php -%%IPPLANDIR%%/adodb/session/adodb-encrypt-md5.php -%%IPPLANDIR%%/adodb/session/adodb-encrypt-secret.php -%%IPPLANDIR%%/adodb/session/adodb-sess.txt -%%IPPLANDIR%%/adodb/session/adodb-session-clob.php -%%IPPLANDIR%%/adodb/session/adodb-session.php -%%IPPLANDIR%%/adodb/session/adodb-sessions.mysql.sql -%%IPPLANDIR%%/adodb/session/adodb-sessions.oracle.clob.sql -%%IPPLANDIR%%/adodb/session/adodb-sessions.oracle.sql -%%IPPLANDIR%%/adodb/session/crypt.inc.php -%%IPPLANDIR%%/adodb/session/old/adodb-cryptsession.php -%%IPPLANDIR%%/adodb/session/old/adodb-session-clob.php -%%IPPLANDIR%%/adodb/session/old/adodb-session.php -%%IPPLANDIR%%/adodb/session/old/crypt.inc.php -%%IPPLANDIR%%/adodb/tests/benchmark.php -%%IPPLANDIR%%/adodb/tests/client.php -%%IPPLANDIR%%/adodb/tests/pdo.php -%%IPPLANDIR%%/adodb/tests/test-datadict.php -%%IPPLANDIR%%/adodb/tests/test-perf.php -%%IPPLANDIR%%/adodb/tests/test-pgblob.php -%%IPPLANDIR%%/adodb/tests/test-php5.php -%%IPPLANDIR%%/adodb/tests/test-xmlschema.php -%%IPPLANDIR%%/adodb/tests/test.php -%%IPPLANDIR%%/adodb/tests/test2.php -%%IPPLANDIR%%/adodb/tests/test3.php -%%IPPLANDIR%%/adodb/tests/test4.php -%%IPPLANDIR%%/adodb/tests/test5.php -%%IPPLANDIR%%/adodb/tests/test_rs_array.php -%%IPPLANDIR%%/adodb/tests/testcache.php -%%IPPLANDIR%%/adodb/tests/testdatabases.inc.php -%%IPPLANDIR%%/adodb/tests/testgenid.php -%%IPPLANDIR%%/adodb/tests/testmssql.php -%%IPPLANDIR%%/adodb/tests/testoci8.php -%%IPPLANDIR%%/adodb/tests/testoci8cursor.php -%%IPPLANDIR%%/adodb/tests/testpaging.php -%%IPPLANDIR%%/adodb/tests/testpear.php -%%IPPLANDIR%%/adodb/tests/testsessions.php -%%IPPLANDIR%%/adodb/tests/time.php -%%IPPLANDIR%%/adodb/tests/tmssql.php -%%IPPLANDIR%%/adodb/tests/xmlschema.xml -%%IPPLANDIR%%/adodb/toexport.inc.php -%%IPPLANDIR%%/adodb/tohtml.inc.php -%%IPPLANDIR%%/adodb/xmlschema.dtd -%%IPPLANDIR%%/adodb/xsl/convert-0.1-0.2.xsl -%%IPPLANDIR%%/adodb/xsl/convert-0.2-0.1.xsl -%%IPPLANDIR%%/adodb/xsl/remove-0.2.xsl -%%IPPLANDIR%%/auth.php -%%IPPLANDIR%%/class.dbflib.php -%%IPPLANDIR%%/class.dnslib.php -%%IPPLANDIR%%/class.phpmailer.php -%%IPPLANDIR%%/class.smtp.php -%%IPPLANDIR%%/class.templib.php -%%IPPLANDIR%%/class.xptlib.php -%%IPPLANDIR%%/config.php -%%IPPLANDIR%%/config.php.sample -%%IPPLANDIR%%/contrib/bind9_revzone.xsl -%%IPPLANDIR%%/contrib/bind9_zone.dtd -%%IPPLANDIR%%/contrib/bind9_zone.xsl -%%IPPLANDIR%%/contrib/bind9_zone.xsl.rej -%%IPPLANDIR%%/contrib/create-test-users.sh -%%IPPLANDIR%%/contrib/dumproute.sh -%%IPPLANDIR%%/contrib/dumproute.txt -%%IPPLANDIR%%/contrib/ipplan-poller.php -%%IPPLANDIR%%/contrib/ipplan2pc.README -%%IPPLANDIR%%/contrib/ipplan2pc.xsl -%%IPPLANDIR%%/contrib/isc_dhcp1.xsl -%%IPPLANDIR%%/contrib/isc_dhcp2.xsl -%%IPPLANDIR%%/contrib/process-exports.pl -%%IPPLANDIR%%/contrib/process-exports.pl.rej -%%IPPLANDIR%%/contrib/process-exports.txt -%%IPPLANDIR%%/contrib/qipImport-public.README -%%IPPLANDIR%%/contrib/qipImport-public.pl -%%IPPLANDIR%%/cookies.js -%%IPPLANDIR%%/docu.css -%%IPPLANDIR%%/gpl.html -%%IPPLANDIR%%/images/square_green.jpg -%%IPPLANDIR%%/images/square_orange.jpg -%%IPPLANDIR%%/images/square_red.jpg -%%IPPLANDIR%%/index.php -%%IPPLANDIR%%/ipplanlib.js -%%IPPLANDIR%%/ipplanlib.php -%%IPPLANDIR%%/layout/class.layout -%%IPPLANDIR%%/layout/layoutman.html -%%IPPLANDIR%%/license.php -%%IPPLANDIR%%/locale/bg/LC_MESSAGES/messages.mo -%%IPPLANDIR%%/locale/bg/LC_MESSAGES/messages.po -%%IPPLANDIR%%/locale/de/LC_MESSAGES/messages.mo -%%IPPLANDIR%%/locale/de/LC_MESSAGES/messages.po -%%IPPLANDIR%%/locale/es/LC_MESSAGES/messages.mo -%%IPPLANDIR%%/locale/es/LC_MESSAGES/messages.po -%%IPPLANDIR%%/locale/fr/LC_MESSAGES/messages.mo -%%IPPLANDIR%%/locale/fr/LC_MESSAGES/messages.po -%%IPPLANDIR%%/locale/it/LC_MESSAGES/messages.mo -%%IPPLANDIR%%/locale/it/LC_MESSAGES/messages.po -%%IPPLANDIR%%/locale/ja_JP/LC_MESSAGES/messages.mo -%%IPPLANDIR%%/locale/ja_JP/LC_MESSAGES/messages.po -%%IPPLANDIR%%/locale/no/LC_MESSAGES/messages.mo -%%IPPLANDIR%%/locale/no/LC_MESSAGES/messages.po -%%IPPLANDIR%%/locale/pt/LC_MESSAGES/messages.mo -%%IPPLANDIR%%/locale/pt/LC_MESSAGES/messages.po -%%IPPLANDIR%%/locale/pt_BR/LC_MESSAGES/messages.mo -%%IPPLANDIR%%/locale/pt_BR/LC_MESSAGES/messages.po -%%IPPLANDIR%%/locale/ru/LC_MESSAGES/messages.mo -%%IPPLANDIR%%/locale/ru/LC_MESSAGES/messages.po -%%IPPLANDIR%%/menudefs.php -%%IPPLANDIR%%/menus/ACKNOWLEDGEMENTS -%%IPPLANDIR%%/menus/CHANGELOG -%%IPPLANDIR%%/menus/CHANGE_TEMPLATE_CLASS_NAME.sh -%%IPPLANDIR%%/menus/COPYING -%%IPPLANDIR%%/menus/DUMPS/mysql.demo_data.dump -%%IPPLANDIR%%/menus/DUMPS/mysql.start.dump -%%IPPLANDIR%%/menus/DUMPS/pgsql.demo_data.dump -%%IPPLANDIR%%/menus/DUMPS/pgsql.start.dump -%%IPPLANDIR%%/menus/DUMPS/phplayersmenu -%%IPPLANDIR%%/menus/DUMPS/sqlite.demo_data.dump -%%IPPLANDIR%%/menus/DUMPS/sqlite.demo_data.dump.php5 -%%IPPLANDIR%%/menus/DUMPS/sqlite.start.dump -%%IPPLANDIR%%/menus/DUMPS/sqlite.start.dump.php5 -%%IPPLANDIR%%/menus/LICENSE -%%IPPLANDIR%%/menus/LOGOS/README -%%IPPLANDIR%%/menus/LOGOS/powered_by_phplm.png -%%IPPLANDIR%%/menus/LOGOS/powered_by_phplm_b01.png -%%IPPLANDIR%%/menus/LOGOS/powered_by_phplm_b02.png -%%IPPLANDIR%%/menus/LOGOS/powered_by_phplm_b03.png -%%IPPLANDIR%%/menus/LOGOS/powered_by_phplm_b04.png -%%IPPLANDIR%%/menus/LOGOS/powered_by_phplm_l01.png -%%IPPLANDIR%%/menus/LOGOS/powered_by_phplm_l02.png -%%IPPLANDIR%%/menus/LOGOS/powered_by_phplm_l03.png -%%IPPLANDIR%%/menus/LOGOS/powered_by_phplm_l04.png -%%IPPLANDIR%%/menus/LOGOS/powered_by_phplm_y01.png -%%IPPLANDIR%%/menus/LOGOS/powered_by_phplm_y02.png -%%IPPLANDIR%%/menus/LOGOS/powered_by_phplm_y04.png -%%IPPLANDIR%%/menus/LOGOS/shortcut_icon_phplm.png -%%IPPLANDIR%%/menus/LOGOS/shortcut_icon_phplm_01.png -%%IPPLANDIR%%/menus/LOGOS/shortcut_icon_phplm_02.png -%%IPPLANDIR%%/menus/LOGOS/shortcut_icon_phplm_03.png -%%IPPLANDIR%%/menus/LOGOS/shortcut_icon_phplm_04.png -%%IPPLANDIR%%/menus/PATCHES/FIXEDMENU/README -%%IPPLANDIR%%/menus/PATCHES/FIXEDMENU/fixedmenu.patch -%%IPPLANDIR%%/menus/PATCHES/ICONS_I18N/README -%%IPPLANDIR%%/menus/PATCHES/ICONS_I18N/icons_i18n.patch -%%IPPLANDIR%%/menus/PATCHES/ONCLICK/README -%%IPPLANDIR%%/menus/PATCHES/ONCLICK/onclick-simple.patch -%%IPPLANDIR%%/menus/PATCHES/ONCLICK/onclick.patch -%%IPPLANDIR%%/menus/PATCHES/README -%%IPPLANDIR%%/menus/README.PHPDOC -%%IPPLANDIR%%/menus/README.ihtml -%%IPPLANDIR%%/menus/THEMES/galeon-theme.tar.gz -%%IPPLANDIR%%/menus/THEMES/gmc-theme.tar.gz -%%IPPLANDIR%%/menus/THEMES/kde-theme.tar.gz -%%IPPLANDIR%%/menus/THEMES/mozilla-theme.tar.gz -%%IPPLANDIR%%/menus/THEMES/nautilus-gnome-theme.tar.gz -%%IPPLANDIR%%/menus/TODO -%%IPPLANDIR%%/menus/demo.php -%%IPPLANDIR%%/menus/demo.php.html -%%IPPLANDIR%%/menus/demo.phps -%%IPPLANDIR%%/menus/example-db-hormenu.php -%%IPPLANDIR%%/menus/example-db-treemenu.notshown.php -%%IPPLANDIR%%/menus/example-db-treemenu.php -%%IPPLANDIR%%/menus/example-dbtofile.php -%%IPPLANDIR%%/menus/example-filetodb.php -%%IPPLANDIR%%/menus/example-frame-body.php -%%IPPLANDIR%%/menus/example-frame-treemenu.php -%%IPPLANDIR%%/menus/example-frame.html -%%IPPLANDIR%%/menus/example-hormenu-old.php -%%IPPLANDIR%%/menus/example-hormenu.php -%%IPPLANDIR%%/menus/example-hormenu_and_treemenu.php -%%IPPLANDIR%%/menus/example-hormenu_and_vermenu.php -%%IPPLANDIR%%/menus/example-horplainmenu.php -%%IPPLANDIR%%/menus/example-layersmenus_and_treemenus.php -%%IPPLANDIR%%/menus/example-phptreemenu.php -%%IPPLANDIR%%/menus/example-see-through.php -%%IPPLANDIR%%/menus/example-treemenu.php -%%IPPLANDIR%%/menus/example-two_treemenus.php -%%IPPLANDIR%%/menus/example-vermenu.php -%%IPPLANDIR%%/menus/example-verplainmenu.php -%%IPPLANDIR%%/menus/examples-frame.html -%%IPPLANDIR%%/menus/examples-leftbar.html -%%IPPLANDIR%%/menus/images/valid-xhtml10.png -%%IPPLANDIR%%/menus/images/vcss.png -%%IPPLANDIR%%/menus/index.php -%%IPPLANDIR%%/menus/layersmenu-demo.css -%%IPPLANDIR%%/menus/layersmenu-galaxy.css -%%IPPLANDIR%%/menus/layersmenu-gtk2.css -%%IPPLANDIR%%/menus/layersmenu-horizontal-1.txt -%%IPPLANDIR%%/menus/layersmenu-horizontal-2.txt -%%IPPLANDIR%%/menus/layersmenu-index.css -%%IPPLANDIR%%/menus/layersmenu-index.txt -%%IPPLANDIR%%/menus/layersmenu-keramik.css -%%IPPLANDIR%%/menus/layersmenu-old.css -%%IPPLANDIR%%/menus/layersmenu-vertical-1.txt -%%IPPLANDIR%%/menus/layersmenu-vertical-2.txt -%%IPPLANDIR%%/menus/layerstreemenu-hidden.css -%%IPPLANDIR%%/menus/layerstreemenu.css -%%IPPLANDIR%%/menus/lib/PHPLIB.php -%%IPPLANDIR%%/menus/lib/layersmenu-browser_detection.php -%%IPPLANDIR%%/menus/lib/layersmenu-common.inc.php -%%IPPLANDIR%%/menus/lib/layersmenu-process.inc.php -%%IPPLANDIR%%/menus/lib/layersmenu.inc.php -%%IPPLANDIR%%/menus/lib/phptreemenu.inc.php -%%IPPLANDIR%%/menus/lib/plainmenu.inc.php -%%IPPLANDIR%%/menus/lib/treemenu.inc.php -%%IPPLANDIR%%/menus/libjs/layersmenu-browser_detection.js -%%IPPLANDIR%%/menus/libjs/layersmenu-footer.ijs -%%IPPLANDIR%%/menus/libjs/layersmenu-header.ijs -%%IPPLANDIR%%/menus/libjs/layersmenu-library.js -%%IPPLANDIR%%/menus/libjs/layersmenu-see-through.js -%%IPPLANDIR%%/menus/libjs/layersmenu.js -%%IPPLANDIR%%/menus/libjs/layerstreemenu-cookies.js -%%IPPLANDIR%%/menus/libjs/layerstreemenu.ijs -%%IPPLANDIR%%/menus/menuicons/bug-small.png -%%IPPLANDIR%%/menus/menuicons/debian-icon-mini.png -%%IPPLANDIR%%/menus/menuicons/desktop.png -%%IPPLANDIR%%/menus/menuicons/downloadManager16.png -%%IPPLANDIR%%/menus/menuicons/email.png -%%IPPLANDIR%%/menus/menuicons/epiphany-16.png -%%IPPLANDIR%%/menus/menuicons/freshmeat.net_favicon.png -%%IPPLANDIR%%/menus/menuicons/gnome-starthere-mini.png -%%IPPLANDIR%%/menus/menuicons/kfm_home.png -%%IPPLANDIR%%/menus/menuicons/misc_doc.png -%%IPPLANDIR%%/menus/menuicons/mozilla.org_images_mozilla-16.png -%%IPPLANDIR%%/menus/menuicons/netscape-icon-mini.png -%%IPPLANDIR%%/menus/menuicons/office_suites.png -%%IPPLANDIR%%/menus/menuicons/ooo-icon-mini.png -%%IPPLANDIR%%/menus/menuicons/pan-icon-mini.png -%%IPPLANDIR%%/menus/menuicons/php-bugs-icon-mini.png -%%IPPLANDIR%%/menus/menuicons/phplib-logo-mini.png -%%IPPLANDIR%%/menus/menuicons/quanta.png -%%IPPLANDIR%%/menus/menuicons/shortcut_icon_phplm.png -%%IPPLANDIR%%/menus/menuicons/sitebar_root_transparent.png -%%IPPLANDIR%%/menus/menuicons/sourceforge.net_images_favicon.png -%%IPPLANDIR%%/menus/menuicons/tgz.png -%%IPPLANDIR%%/menus/menuicons/www.gimp.org_icons_wilber16.png -%%IPPLANDIR%%/menus/menuicons/www.gnome.org_images_gnome-16.png -%%IPPLANDIR%%/menus/menuicons/www.kde.org_favicon.png -%%IPPLANDIR%%/menus/menuicons/www.kernel.org_images_tux16-16.png -%%IPPLANDIR%%/menus/menuicons/www.mysql.com_favicon.png -%%IPPLANDIR%%/menus/menuicons/www.php.net_favicon.png -%%IPPLANDIR%%/menus/menuicons/www.ximian.com_favicon.png -%%IPPLANDIR%%/menus/menuimages/down-arrow.png -%%IPPLANDIR%%/menus/menuimages/down-galaxy.png -%%IPPLANDIR%%/menus/menuimages/down-gnome.png -%%IPPLANDIR%%/menus/menuimages/down-gtk2.png -%%IPPLANDIR%%/menus/menuimages/down-keramik.png -%%IPPLANDIR%%/menus/menuimages/down-nautilus.png -%%IPPLANDIR%%/menus/menuimages/forward-arrow.png -%%IPPLANDIR%%/menus/menuimages/forward-galaxy.png -%%IPPLANDIR%%/menus/menuimages/forward-gnome.png -%%IPPLANDIR%%/menus/menuimages/forward-gtk2.png -%%IPPLANDIR%%/menus/menuimages/forward-keramik.png -%%IPPLANDIR%%/menus/menuimages/forward-nautilus.png -%%IPPLANDIR%%/menus/menuimages/kde_tree_collapse.png -%%IPPLANDIR%%/menus/menuimages/kde_tree_collapse_corner.png -%%IPPLANDIR%%/menus/menuimages/kde_tree_collapse_corner_first.png -%%IPPLANDIR%%/menus/menuimages/kde_tree_collapse_first.png -%%IPPLANDIR%%/menus/menuimages/kde_tree_corner.png -%%IPPLANDIR%%/menus/menuimages/kde_tree_expand.png -%%IPPLANDIR%%/menus/menuimages/kde_tree_expand_corner.png -%%IPPLANDIR%%/menus/menuimages/kde_tree_expand_corner_first.png -%%IPPLANDIR%%/menus/menuimages/kde_tree_expand_first.png -%%IPPLANDIR%%/menus/menuimages/kde_tree_folder_closed.png -%%IPPLANDIR%%/menus/menuimages/kde_tree_folder_open.png -%%IPPLANDIR%%/menus/menuimages/kde_tree_leaf.png -%%IPPLANDIR%%/menus/menuimages/kde_tree_space.png -%%IPPLANDIR%%/menus/menuimages/kde_tree_split.png -%%IPPLANDIR%%/menus/menuimages/kde_tree_split_first.png -%%IPPLANDIR%%/menus/menuimages/kde_tree_vertline.png -%%IPPLANDIR%%/menus/menuimages/nautilus_tree_collapse.png -%%IPPLANDIR%%/menus/menuimages/nautilus_tree_collapse_corner.png -%%IPPLANDIR%%/menus/menuimages/nautilus_tree_collapse_corner_first.png -%%IPPLANDIR%%/menus/menuimages/nautilus_tree_collapse_first.png -%%IPPLANDIR%%/menus/menuimages/nautilus_tree_corner.png -%%IPPLANDIR%%/menus/menuimages/nautilus_tree_expand.png -%%IPPLANDIR%%/menus/menuimages/nautilus_tree_expand_corner.png -%%IPPLANDIR%%/menus/menuimages/nautilus_tree_expand_corner_first.png -%%IPPLANDIR%%/menus/menuimages/nautilus_tree_expand_first.png -%%IPPLANDIR%%/menus/menuimages/nautilus_tree_folder_closed.png -%%IPPLANDIR%%/menus/menuimages/nautilus_tree_folder_open.png -%%IPPLANDIR%%/menus/menuimages/nautilus_tree_leaf.png -%%IPPLANDIR%%/menus/menuimages/nautilus_tree_space.png -%%IPPLANDIR%%/menus/menuimages/nautilus_tree_split.png -%%IPPLANDIR%%/menus/menuimages/nautilus_tree_split_first.png -%%IPPLANDIR%%/menus/menuimages/nautilus_tree_vertline.png -%%IPPLANDIR%%/menus/menuimages/transparent.png -%%IPPLANDIR%%/menus/menuimages/tree_collapse.png -%%IPPLANDIR%%/menus/menuimages/tree_collapse_corner.png -%%IPPLANDIR%%/menus/menuimages/tree_collapse_corner_first.png -%%IPPLANDIR%%/menus/menuimages/tree_collapse_first.png -%%IPPLANDIR%%/menus/menuimages/tree_corner.png -%%IPPLANDIR%%/menus/menuimages/tree_expand.png -%%IPPLANDIR%%/menus/menuimages/tree_expand_corner.png -%%IPPLANDIR%%/menus/menuimages/tree_expand_corner_first.png -%%IPPLANDIR%%/menus/menuimages/tree_expand_first.png -%%IPPLANDIR%%/menus/menuimages/tree_folder_closed.png -%%IPPLANDIR%%/menus/menuimages/tree_folder_open.png -%%IPPLANDIR%%/menus/menuimages/tree_leaf.png -%%IPPLANDIR%%/menus/menuimages/tree_space.png -%%IPPLANDIR%%/menus/menuimages/tree_split.png -%%IPPLANDIR%%/menus/menuimages/tree_split_first.png -%%IPPLANDIR%%/menus/menuimages/tree_vertline.png -%%IPPLANDIR%%/menus/templates/layersmenu-horizontal_menu-full.ihtml -%%IPPLANDIR%%/menus/templates/layersmenu-horizontal_menu-keramik-full.ihtml -%%IPPLANDIR%%/menus/templates/layersmenu-horizontal_menu-keramik.ihtml -%%IPPLANDIR%%/menus/templates/layersmenu-horizontal_menu-old.ihtml -%%IPPLANDIR%%/menus/templates/layersmenu-horizontal_menu.ihtml -%%IPPLANDIR%%/menus/templates/layersmenu-horizontal_plain_menu-red.ihtml -%%IPPLANDIR%%/menus/templates/layersmenu-horizontal_plain_menu.ihtml -%%IPPLANDIR%%/menus/templates/layersmenu-plain_menu-green.ihtml -%%IPPLANDIR%%/menus/templates/layersmenu-plain_menu.ihtml -%%IPPLANDIR%%/menus/templates/layersmenu-sub_menu-galaxy.ihtml -%%IPPLANDIR%%/menus/templates/layersmenu-sub_menu-keramik.ihtml -%%IPPLANDIR%%/menus/templates/layersmenu-sub_menu-old.ihtml -%%IPPLANDIR%%/menus/templates/layersmenu-sub_menu.ihtml -%%IPPLANDIR%%/menus/templates/layersmenu-vertical_menu-galaxy.ihtml -%%IPPLANDIR%%/menus/templates/layersmenu-vertical_menu-old.ihtml -%%IPPLANDIR%%/menus/templates/layersmenu-vertical_menu.ihtml -%%IPPLANDIR%%/messages.po -%%IPPLANDIR%%/phpmailer.lang-en.php -%%IPPLANDIR%%/phpserializer.js -%%IPPLANDIR%%/schema.php -%%IPPLANDIR%%/templates/display/basetemplate-dhcp.xml -%%IPPLANDIR%%/templates/display/basetemplate.xml -%%IPPLANDIR%%/templates/display/basetemplate.xml.dhcp -%%IPPLANDIR%%/templates/display/custtemplate-ripe.xml -%%IPPLANDIR%%/templates/display/custtemplate.xml -%%IPPLANDIR%%/templates/display/fwdzonetemplate.xml -%%IPPLANDIR%%/templates/display/iptemplate.xml -%%IPPLANDIR%%/templates/display/iptemplate.xml.sample -%%IPPLANDIR%%/templates/ripe_assign-simple-1.0.xsl -%%IPPLANDIR%%/templates/ripe_person_simple-1.0.xsl -%%IPPLANDIR%%/templates/swip_reassign-simple-modify3.0.xsl -%%IPPLANDIR%%/templates/swip_reassign-simple-new3.0.xsl -%%IPPLANDIR%%/templates/swip_reassign-simple-remove3.0.xsl -%%IPPLANDIR%%/templates/swip_wdb1.4_delete.xsl -%%IPPLANDIR%%/templates/swip_wdb1.4_modify.xsl -%%IPPLANDIR%%/templates/swip_wdb1.4_new.xsl -%%IPPLANDIR%%/themes/default-safari.css -%%IPPLANDIR%%/themes/default.css -%%IPPLANDIR%%/themes/img_red_grey/head-bg.png -%%IPPLANDIR%%/themes/img_red_grey/page-bg.png -%%IPPLANDIR%%/themes/pastel.css -%%IPPLANDIR%%/themes/penguin.css -%%IPPLANDIR%%/themes/red_grey.css -%%IPPLANDIR%%/user/Net/DNS.php -%%IPPLANDIR%%/user/Net/DNS/Header.php -%%IPPLANDIR%%/user/Net/DNS/Packet.php -%%IPPLANDIR%%/user/Net/DNS/Question.php -%%IPPLANDIR%%/user/Net/DNS/RR.php -%%IPPLANDIR%%/user/Net/DNS/RR/A.php -%%IPPLANDIR%%/user/Net/DNS/RR/AAAA.php -%%IPPLANDIR%%/user/Net/DNS/RR/AFSDB.php -%%IPPLANDIR%%/user/Net/DNS/RR/CNAME.php -%%IPPLANDIR%%/user/Net/DNS/RR/HINFO.php -%%IPPLANDIR%%/user/Net/DNS/RR/MX.php -%%IPPLANDIR%%/user/Net/DNS/RR/NAPTR.php -%%IPPLANDIR%%/user/Net/DNS/RR/NS.php -%%IPPLANDIR%%/user/Net/DNS/RR/PTR.php -%%IPPLANDIR%%/user/Net/DNS/RR/SOA.php -%%IPPLANDIR%%/user/Net/DNS/RR/SRV.php -%%IPPLANDIR%%/user/Net/DNS/RR/TSIG.php -%%IPPLANDIR%%/user/Net/DNS/RR/TXT.php -%%IPPLANDIR%%/user/Net/DNS/Resolver.php -%%IPPLANDIR%%/user/changesettings.php -%%IPPLANDIR%%/user/createarea.php -%%IPPLANDIR%%/user/createrange.php -%%IPPLANDIR%%/user/createsubnet.php -%%IPPLANDIR%%/user/createsubnetform.php -%%IPPLANDIR%%/user/deletearea.php -%%IPPLANDIR%%/user/deletecustomer.php -%%IPPLANDIR%%/user/deleterange.php -%%IPPLANDIR%%/user/displaybase.php -%%IPPLANDIR%%/user/displaybaseform.php -%%IPPLANDIR%%/user/displaycustomerform.php -%%IPPLANDIR%%/user/displayoverlap.php -%%IPPLANDIR%%/user/displayoverlapform.php -%%IPPLANDIR%%/user/displayrouter.php -%%IPPLANDIR%%/user/displayrouterform.php -%%IPPLANDIR%%/user/displaysubnet.php -%%IPPLANDIR%%/user/displayswip.php -%%IPPLANDIR%%/user/displayswipform.php -%%IPPLANDIR%%/user/dns.php -%%IPPLANDIR%%/user/emailswip.php -%%IPPLANDIR%%/user/exportdhcp.php -%%IPPLANDIR%%/user/exportview.php -%%IPPLANDIR%%/user/findfree.php -%%IPPLANDIR%%/user/findfreeform.php -%%IPPLANDIR%%/user/logout.php -%%IPPLANDIR%%/user/modifyarearange.php -%%IPPLANDIR%%/user/modifyarearangeform.php -%%IPPLANDIR%%/user/modifybase.php -%%IPPLANDIR%%/user/modifybaseform.php -%%IPPLANDIR%%/user/modifycustomer.php -%%IPPLANDIR%%/user/modifydns.php -%%IPPLANDIR%%/user/modifydnsform.php -%%IPPLANDIR%%/user/modifydnsrecord.php -%%IPPLANDIR%%/user/modifydnsrecordform.php -%%IPPLANDIR%%/user/modifyipform.php -%%IPPLANDIR%%/user/modifyipformmul.php -%%IPPLANDIR%%/user/modifysubnet.php -%%IPPLANDIR%%/user/modifyzone.php -%%IPPLANDIR%%/user/modifyzoneform.php -%%IPPLANDIR%%/user/ping.php -%%IPPLANDIR%%/user/requestip.php -%%IPPLANDIR%%/user/searchall.php -%%IPPLANDIR%%/user/searchallform.php -%%IPPLANDIR%%/user/swiplib.php -%%IPPLANDIR%%/user/traceroute.php -%%IPPLANDIR%%/user/treeview.php -%%IPPLANDIR%%/user/whois.php -%%IPPLANDIR%%/xmllib.php -@dirrm %%IPPLANDIR%%/user/Net/DNS/RR -@dirrm %%IPPLANDIR%%/user/Net/DNS -@dirrm %%IPPLANDIR%%/user/Net -@dirrm %%IPPLANDIR%%/user -@dirrm %%IPPLANDIR%%/themes/img_red_grey -@dirrm %%IPPLANDIR%%/themes -@dirrm %%IPPLANDIR%%/templates/display -@dirrm %%IPPLANDIR%%/templates -@dirrm %%IPPLANDIR%%/menus/templates -@dirrm %%IPPLANDIR%%/menus/menuimages -@dirrm %%IPPLANDIR%%/menus/menuicons -@dirrm %%IPPLANDIR%%/menus/libjs -@dirrm %%IPPLANDIR%%/menus/lib -@dirrm %%IPPLANDIR%%/menus/images -@dirrm %%IPPLANDIR%%/menus/THEMES -@dirrm %%IPPLANDIR%%/menus/PATCHES/ONCLICK -@dirrm %%IPPLANDIR%%/menus/PATCHES/ICONS_I18N -@dirrm %%IPPLANDIR%%/menus/PATCHES/FIXEDMENU -@dirrm %%IPPLANDIR%%/menus/PATCHES -@dirrm %%IPPLANDIR%%/menus/LOGOS -@dirrm %%IPPLANDIR%%/menus/DUMPS -@dirrm %%IPPLANDIR%%/menus -@dirrm %%IPPLANDIR%%/locale/ru/LC_MESSAGES -@dirrm %%IPPLANDIR%%/locale/ru -@dirrm %%IPPLANDIR%%/locale/pt_BR/LC_MESSAGES -@dirrm %%IPPLANDIR%%/locale/pt_BR -@dirrm %%IPPLANDIR%%/locale/pt/LC_MESSAGES -@dirrm %%IPPLANDIR%%/locale/pt -@dirrm %%IPPLANDIR%%/locale/no/LC_MESSAGES -@dirrm %%IPPLANDIR%%/locale/no -@dirrm %%IPPLANDIR%%/locale/ja_JP/LC_MESSAGES -@dirrm %%IPPLANDIR%%/locale/ja_JP -@dirrm %%IPPLANDIR%%/locale/it/LC_MESSAGES -@dirrm %%IPPLANDIR%%/locale/it -@dirrm %%IPPLANDIR%%/locale/fr/LC_MESSAGES -@dirrm %%IPPLANDIR%%/locale/fr -@dirrm %%IPPLANDIR%%/locale/es/LC_MESSAGES -@dirrm %%IPPLANDIR%%/locale/es -@dirrm %%IPPLANDIR%%/locale/de/LC_MESSAGES -@dirrm %%IPPLANDIR%%/locale/de -@dirrm %%IPPLANDIR%%/locale/bg/LC_MESSAGES -@dirrm %%IPPLANDIR%%/locale/bg -@dirrm %%IPPLANDIR%%/locale -@dirrm %%IPPLANDIR%%/layout -@dirrm %%IPPLANDIR%%/images -@dirrm %%IPPLANDIR%%/contrib -@dirrm %%IPPLANDIR%%/adodb/xsl -@dirrm %%IPPLANDIR%%/adodb/tests -@dirrm %%IPPLANDIR%%/adodb/session/old -@dirrm %%IPPLANDIR%%/adodb/session -@dirrm %%IPPLANDIR%%/adodb/perf -@dirrm %%IPPLANDIR%%/adodb/pear/Auth/Container -@dirrm %%IPPLANDIR%%/adodb/pear/Auth -@dirrm %%IPPLANDIR%%/adodb/pear -@dirrm %%IPPLANDIR%%/adodb/lang -@dirrm %%IPPLANDIR%%/adodb/drivers -@dirrm %%IPPLANDIR%%/adodb/docs -@dirrm %%IPPLANDIR%%/adodb/datadict -@dirrm %%IPPLANDIR%%/adodb/cute_icons_for_site -@dirrm %%IPPLANDIR%%/adodb/contrib -@dirrm %%IPPLANDIR%%/adodb -@dirrm %%IPPLANDIR%%/admin -@dirrmtry %%IPPLANDIR%% +%%WWWDIR%%/xmllib.php +%%WWWDIR%%/user/whois.php +%%WWWDIR%%/user/treeview.php +%%WWWDIR%%/user/traceroute.php +%%WWWDIR%%/user/swiplib.php +%%WWWDIR%%/user/searchallform.php +%%WWWDIR%%/user/searchall.php +%%WWWDIR%%/user/requestip.php +%%WWWDIR%%/user/ping.php +%%WWWDIR%%/user/modifyzoneform.php +%%WWWDIR%%/user/modifyzone.php +%%WWWDIR%%/user/modifysubnet.php +%%WWWDIR%%/user/modifyipformmul.php +%%WWWDIR%%/user/modifyipform.php +%%WWWDIR%%/user/modifydnsrecordform.php +%%WWWDIR%%/user/modifydnsrecord.php +%%WWWDIR%%/user/modifydnsform.php +%%WWWDIR%%/user/modifydns.php +%%WWWDIR%%/user/modifycustomer.php +%%WWWDIR%%/user/modifybaseform.php +%%WWWDIR%%/user/modifybase.php +%%WWWDIR%%/user/modifyarearangeform.php +%%WWWDIR%%/user/modifyarearange.php +%%WWWDIR%%/user/logout.php +%%WWWDIR%%/user/findfreeform.php +%%WWWDIR%%/user/findfree.php +%%WWWDIR%%/user/exportview.php +%%WWWDIR%%/user/exportdhcp.php +%%WWWDIR%%/user/emailswip.php +%%WWWDIR%%/user/dns.php +%%WWWDIR%%/user/displayswipform.php +%%WWWDIR%%/user/displayswip.php +%%WWWDIR%%/user/displaysubnet.php +%%WWWDIR%%/user/displayrouterform.php +%%WWWDIR%%/user/displayrouter.php +%%WWWDIR%%/user/displayoverlapform.php +%%WWWDIR%%/user/displayoverlap.php +%%WWWDIR%%/user/displaycustomerform.php +%%WWWDIR%%/user/displaybaseform.php +%%WWWDIR%%/user/displaybase.php +%%WWWDIR%%/user/deleterange.php +%%WWWDIR%%/user/deletecustomer.php +%%WWWDIR%%/user/deletearea.php +%%WWWDIR%%/user/createsubnetform.php +%%WWWDIR%%/user/createsubnet.php +%%WWWDIR%%/user/createrange.php +%%WWWDIR%%/user/createarea.php +%%WWWDIR%%/user/changesettings.php +%%WWWDIR%%/user/Net/DNS/Resolver.php +%%WWWDIR%%/user/Net/DNS/RR/TXT.php +%%WWWDIR%%/user/Net/DNS/RR/TSIG.php +%%WWWDIR%%/user/Net/DNS/RR/SRV.php +%%WWWDIR%%/user/Net/DNS/RR/SOA.php +%%WWWDIR%%/user/Net/DNS/RR/PTR.php +%%WWWDIR%%/user/Net/DNS/RR/NS.php +%%WWWDIR%%/user/Net/DNS/RR/NAPTR.php +%%WWWDIR%%/user/Net/DNS/RR/MX.php +%%WWWDIR%%/user/Net/DNS/RR/HINFO.php +%%WWWDIR%%/user/Net/DNS/RR/CNAME.php +%%WWWDIR%%/user/Net/DNS/RR/AFSDB.php +%%WWWDIR%%/user/Net/DNS/RR/AAAA.php +%%WWWDIR%%/user/Net/DNS/RR/A.php +%%WWWDIR%%/user/Net/DNS/RR.php +%%WWWDIR%%/user/Net/DNS/Question.php +%%WWWDIR%%/user/Net/DNS/Packet.php +%%WWWDIR%%/user/Net/DNS/Header.php +%%WWWDIR%%/user/Net/DNS.php +%%WWWDIR%%/themes/red_grey.css +%%WWWDIR%%/themes/penguin.css +%%WWWDIR%%/themes/pastel.css +%%WWWDIR%%/themes/img_red_grey/page-bg.png +%%WWWDIR%%/themes/img_red_grey/head-bg.png +%%WWWDIR%%/themes/default.css +%%WWWDIR%%/themes/default-safari.css +%%WWWDIR%%/templates/swip_wdb1.4_new.xsl +%%WWWDIR%%/templates/swip_wdb1.4_modify.xsl +%%WWWDIR%%/templates/swip_wdb1.4_delete.xsl +%%WWWDIR%%/templates/swip_reassign-simple-remove3.0.xsl +%%WWWDIR%%/templates/swip_reassign-simple-new3.0.xsl +%%WWWDIR%%/templates/swip_reassign-simple-modify3.0.xsl +%%WWWDIR%%/templates/ripe_person_simple-1.0.xsl +%%WWWDIR%%/templates/ripe_assign-simple-1.0.xsl +%%WWWDIR%%/templates/display/iptemplate.xml.sample +%%WWWDIR%%/templates/display/iptemplate.xml +%%WWWDIR%%/templates/display/fwdzonetemplate.xml +%%WWWDIR%%/templates/display/custtemplate.xml +%%WWWDIR%%/templates/display/custtemplate-ripe.xml +%%WWWDIR%%/templates/display/basetemplate.xml.dhcp +%%WWWDIR%%/templates/display/basetemplate.xml +%%WWWDIR%%/templates/display/basetemplate-dhcp.xml +%%WWWDIR%%/schema.php +%%WWWDIR%%/phpserializer.js +%%WWWDIR%%/phpmailer.lang-en.php +%%WWWDIR%%/messages.po +%%WWWDIR%%/menus/templates/layersmenu-vertical_menu.ihtml +%%WWWDIR%%/menus/templates/layersmenu-vertical_menu-old.ihtml +%%WWWDIR%%/menus/templates/layersmenu-vertical_menu-galaxy.ihtml +%%WWWDIR%%/menus/templates/layersmenu-sub_menu.ihtml +%%WWWDIR%%/menus/templates/layersmenu-sub_menu-old.ihtml +%%WWWDIR%%/menus/templates/layersmenu-sub_menu-keramik.ihtml +%%WWWDIR%%/menus/templates/layersmenu-sub_menu-galaxy.ihtml +%%WWWDIR%%/menus/templates/layersmenu-plain_menu.ihtml +%%WWWDIR%%/menus/templates/layersmenu-plain_menu-green.ihtml +%%WWWDIR%%/menus/templates/layersmenu-horizontal_plain_menu.ihtml +%%WWWDIR%%/menus/templates/layersmenu-horizontal_plain_menu-red.ihtml +%%WWWDIR%%/menus/templates/layersmenu-horizontal_menu.ihtml +%%WWWDIR%%/menus/templates/layersmenu-horizontal_menu-old.ihtml +%%WWWDIR%%/menus/templates/layersmenu-horizontal_menu-keramik.ihtml +%%WWWDIR%%/menus/templates/layersmenu-horizontal_menu-keramik-full.ihtml +%%WWWDIR%%/menus/templates/layersmenu-horizontal_menu-full.ihtml +%%WWWDIR%%/menus/menuimages/tree_vertline.png +%%WWWDIR%%/menus/menuimages/tree_split_first.png +%%WWWDIR%%/menus/menuimages/tree_split.png +%%WWWDIR%%/menus/menuimages/tree_space.png +%%WWWDIR%%/menus/menuimages/tree_leaf.png +%%WWWDIR%%/menus/menuimages/tree_folder_open.png +%%WWWDIR%%/menus/menuimages/tree_folder_closed.png +%%WWWDIR%%/menus/menuimages/tree_expand_first.png +%%WWWDIR%%/menus/menuimages/tree_expand_corner_first.png +%%WWWDIR%%/menus/menuimages/tree_expand_corner.png +%%WWWDIR%%/menus/menuimages/tree_expand.png +%%WWWDIR%%/menus/menuimages/tree_corner.png +%%WWWDIR%%/menus/menuimages/tree_collapse_first.png +%%WWWDIR%%/menus/menuimages/tree_collapse_corner_first.png +%%WWWDIR%%/menus/menuimages/tree_collapse_corner.png +%%WWWDIR%%/menus/menuimages/tree_collapse.png +%%WWWDIR%%/menus/menuimages/transparent.png +%%WWWDIR%%/menus/menuimages/nautilus_tree_vertline.png +%%WWWDIR%%/menus/menuimages/nautilus_tree_split_first.png +%%WWWDIR%%/menus/menuimages/nautilus_tree_split.png +%%WWWDIR%%/menus/menuimages/nautilus_tree_space.png +%%WWWDIR%%/menus/menuimages/nautilus_tree_leaf.png +%%WWWDIR%%/menus/menuimages/nautilus_tree_folder_open.png +%%WWWDIR%%/menus/menuimages/nautilus_tree_folder_closed.png +%%WWWDIR%%/menus/menuimages/nautilus_tree_expand_first.png +%%WWWDIR%%/menus/menuimages/nautilus_tree_expand_corner_first.png +%%WWWDIR%%/menus/menuimages/nautilus_tree_expand_corner.png +%%WWWDIR%%/menus/menuimages/nautilus_tree_expand.png +%%WWWDIR%%/menus/menuimages/nautilus_tree_corner.png +%%WWWDIR%%/menus/menuimages/nautilus_tree_collapse_first.png +%%WWWDIR%%/menus/menuimages/nautilus_tree_collapse_corner_first.png +%%WWWDIR%%/menus/menuimages/nautilus_tree_collapse_corner.png +%%WWWDIR%%/menus/menuimages/nautilus_tree_collapse.png +%%WWWDIR%%/menus/menuimages/kde_tree_vertline.png +%%WWWDIR%%/menus/menuimages/kde_tree_split_first.png +%%WWWDIR%%/menus/menuimages/kde_tree_split.png +%%WWWDIR%%/menus/menuimages/kde_tree_space.png +%%WWWDIR%%/menus/menuimages/kde_tree_leaf.png +%%WWWDIR%%/menus/menuimages/kde_tree_folder_open.png +%%WWWDIR%%/menus/menuimages/kde_tree_folder_closed.png +%%WWWDIR%%/menus/menuimages/kde_tree_expand_first.png +%%WWWDIR%%/menus/menuimages/kde_tree_expand_corner_first.png +%%WWWDIR%%/menus/menuimages/kde_tree_expand_corner.png +%%WWWDIR%%/menus/menuimages/kde_tree_expand.png +%%WWWDIR%%/menus/menuimages/kde_tree_corner.png +%%WWWDIR%%/menus/menuimages/kde_tree_collapse_first.png +%%WWWDIR%%/menus/menuimages/kde_tree_collapse_corner_first.png +%%WWWDIR%%/menus/menuimages/kde_tree_collapse_corner.png +%%WWWDIR%%/menus/menuimages/kde_tree_collapse.png +%%WWWDIR%%/menus/menuimages/forward-nautilus.png +%%WWWDIR%%/menus/menuimages/forward-keramik.png +%%WWWDIR%%/menus/menuimages/forward-gtk2.png +%%WWWDIR%%/menus/menuimages/forward-gnome.png +%%WWWDIR%%/menus/menuimages/forward-galaxy.png +%%WWWDIR%%/menus/menuimages/forward-arrow.png +%%WWWDIR%%/menus/menuimages/down-nautilus.png +%%WWWDIR%%/menus/menuimages/down-keramik.png +%%WWWDIR%%/menus/menuimages/down-gtk2.png +%%WWWDIR%%/menus/menuimages/down-gnome.png +%%WWWDIR%%/menus/menuimages/down-galaxy.png +%%WWWDIR%%/menus/menuimages/down-arrow.png +%%WWWDIR%%/menus/menuicons/www.ximian.com_favicon.png +%%WWWDIR%%/menus/menuicons/www.php.net_favicon.png +%%WWWDIR%%/menus/menuicons/www.mysql.com_favicon.png +%%WWWDIR%%/menus/menuicons/www.kernel.org_images_tux16-16.png +%%WWWDIR%%/menus/menuicons/www.kde.org_favicon.png +%%WWWDIR%%/menus/menuicons/www.gnome.org_images_gnome-16.png +%%WWWDIR%%/menus/menuicons/www.gimp.org_icons_wilber16.png +%%WWWDIR%%/menus/menuicons/tgz.png +%%WWWDIR%%/menus/menuicons/sourceforge.net_images_favicon.png +%%WWWDIR%%/menus/menuicons/sitebar_root_transparent.png +%%WWWDIR%%/menus/menuicons/shortcut_icon_phplm.png +%%WWWDIR%%/menus/menuicons/quanta.png +%%WWWDIR%%/menus/menuicons/phplib-logo-mini.png +%%WWWDIR%%/menus/menuicons/php-bugs-icon-mini.png +%%WWWDIR%%/menus/menuicons/pan-icon-mini.png +%%WWWDIR%%/menus/menuicons/ooo-icon-mini.png +%%WWWDIR%%/menus/menuicons/office_suites.png +%%WWWDIR%%/menus/menuicons/netscape-icon-mini.png +%%WWWDIR%%/menus/menuicons/mozilla.org_images_mozilla-16.png +%%WWWDIR%%/menus/menuicons/misc_doc.png +%%WWWDIR%%/menus/menuicons/kfm_home.png +%%WWWDIR%%/menus/menuicons/gnome-starthere-mini.png +%%WWWDIR%%/menus/menuicons/freshmeat.net_favicon.png +%%WWWDIR%%/menus/menuicons/epiphany-16.png +%%WWWDIR%%/menus/menuicons/email.png +%%WWWDIR%%/menus/menuicons/downloadManager16.png +%%WWWDIR%%/menus/menuicons/desktop.png +%%WWWDIR%%/menus/menuicons/debian-icon-mini.png +%%WWWDIR%%/menus/menuicons/bug-small.png +%%WWWDIR%%/menus/libjs/layerstreemenu.ijs +%%WWWDIR%%/menus/libjs/layerstreemenu-cookies.js +%%WWWDIR%%/menus/libjs/layersmenu.js +%%WWWDIR%%/menus/libjs/layersmenu-see-through.js +%%WWWDIR%%/menus/libjs/layersmenu-library.js +%%WWWDIR%%/menus/libjs/layersmenu-header.ijs +%%WWWDIR%%/menus/libjs/layersmenu-footer.ijs +%%WWWDIR%%/menus/libjs/layersmenu-browser_detection.js +%%WWWDIR%%/menus/lib/treemenu.inc.php +%%WWWDIR%%/menus/lib/plainmenu.inc.php +%%WWWDIR%%/menus/lib/phptreemenu.inc.php +%%WWWDIR%%/menus/lib/layersmenu.inc.php +%%WWWDIR%%/menus/lib/layersmenu-process.inc.php +%%WWWDIR%%/menus/lib/layersmenu-common.inc.php +%%WWWDIR%%/menus/lib/layersmenu-browser_detection.php +%%WWWDIR%%/menus/lib/PHPLIB.php +%%WWWDIR%%/menus/layerstreemenu.css +%%WWWDIR%%/menus/layerstreemenu-hidden.css +%%WWWDIR%%/menus/layersmenu-vertical-2.txt +%%WWWDIR%%/menus/layersmenu-vertical-1.txt +%%WWWDIR%%/menus/layersmenu-old.css +%%WWWDIR%%/menus/layersmenu-keramik.css +%%WWWDIR%%/menus/layersmenu-index.txt +%%WWWDIR%%/menus/layersmenu-index.css +%%WWWDIR%%/menus/layersmenu-horizontal-2.txt +%%WWWDIR%%/menus/layersmenu-horizontal-1.txt +%%WWWDIR%%/menus/layersmenu-gtk2.css +%%WWWDIR%%/menus/layersmenu-galaxy.css +%%WWWDIR%%/menus/layersmenu-demo.css +%%WWWDIR%%/menus/index.php +%%WWWDIR%%/menus/images/vcss.png +%%WWWDIR%%/menus/images/valid-xhtml10.png +%%WWWDIR%%/menus/examples-leftbar.html +%%WWWDIR%%/menus/examples-frame.html +%%WWWDIR%%/menus/example-verplainmenu.php +%%WWWDIR%%/menus/example-vermenu.php +%%WWWDIR%%/menus/example-two_treemenus.php +%%WWWDIR%%/menus/example-treemenu.php +%%WWWDIR%%/menus/example-see-through.php +%%WWWDIR%%/menus/example-phptreemenu.php +%%WWWDIR%%/menus/example-layersmenus_and_treemenus.php +%%WWWDIR%%/menus/example-horplainmenu.php +%%WWWDIR%%/menus/example-hormenu_and_vermenu.php +%%WWWDIR%%/menus/example-hormenu_and_treemenu.php +%%WWWDIR%%/menus/example-hormenu.php +%%WWWDIR%%/menus/example-hormenu-old.php +%%WWWDIR%%/menus/example-frame.html +%%WWWDIR%%/menus/example-frame-treemenu.php +%%WWWDIR%%/menus/example-frame-body.php +%%WWWDIR%%/menus/example-filetodb.php +%%WWWDIR%%/menus/example-dbtofile.php +%%WWWDIR%%/menus/example-db-treemenu.php +%%WWWDIR%%/menus/example-db-treemenu.notshown.php +%%WWWDIR%%/menus/example-db-hormenu.php +%%WWWDIR%%/menus/demo.phps +%%WWWDIR%%/menus/demo.php.html +%%WWWDIR%%/menus/demo.php +%%WWWDIR%%/menus/TODO +%%WWWDIR%%/menus/THEMES/nautilus-gnome-theme.tar.gz +%%WWWDIR%%/menus/THEMES/mozilla-theme.tar.gz +%%WWWDIR%%/menus/THEMES/kde-theme.tar.gz +%%WWWDIR%%/menus/THEMES/gmc-theme.tar.gz +%%WWWDIR%%/menus/THEMES/galeon-theme.tar.gz +%%WWWDIR%%/menus/README.ihtml +%%WWWDIR%%/menus/README.PHPDOC +%%WWWDIR%%/menus/PATCHES/README +%%WWWDIR%%/menus/PATCHES/ONCLICK/onclick.patch +%%WWWDIR%%/menus/PATCHES/ONCLICK/onclick-simple.patch +%%WWWDIR%%/menus/PATCHES/ONCLICK/README +%%WWWDIR%%/menus/PATCHES/ICONS_I18N/icons_i18n.patch +%%WWWDIR%%/menus/PATCHES/ICONS_I18N/README +%%WWWDIR%%/menus/PATCHES/FIXEDMENU/fixedmenu.patch +%%WWWDIR%%/menus/PATCHES/FIXEDMENU/README +%%WWWDIR%%/menus/LOGOS/shortcut_icon_phplm_04.png +%%WWWDIR%%/menus/LOGOS/shortcut_icon_phplm_03.png +%%WWWDIR%%/menus/LOGOS/shortcut_icon_phplm_02.png +%%WWWDIR%%/menus/LOGOS/shortcut_icon_phplm_01.png +%%WWWDIR%%/menus/LOGOS/shortcut_icon_phplm.png +%%WWWDIR%%/menus/LOGOS/powered_by_phplm_y04.png +%%WWWDIR%%/menus/LOGOS/powered_by_phplm_y02.png +%%WWWDIR%%/menus/LOGOS/powered_by_phplm_y01.png +%%WWWDIR%%/menus/LOGOS/powered_by_phplm_l04.png +%%WWWDIR%%/menus/LOGOS/powered_by_phplm_l03.png +%%WWWDIR%%/menus/LOGOS/powered_by_phplm_l02.png +%%WWWDIR%%/menus/LOGOS/powered_by_phplm_l01.png +%%WWWDIR%%/menus/LOGOS/powered_by_phplm_b04.png +%%WWWDIR%%/menus/LOGOS/powered_by_phplm_b03.png +%%WWWDIR%%/menus/LOGOS/powered_by_phplm_b02.png +%%WWWDIR%%/menus/LOGOS/powered_by_phplm_b01.png +%%WWWDIR%%/menus/LOGOS/powered_by_phplm.png +%%WWWDIR%%/menus/LOGOS/README +%%WWWDIR%%/menus/LICENSE +%%WWWDIR%%/menus/DUMPS/sqlite.start.dump.php5 +%%WWWDIR%%/menus/DUMPS/sqlite.start.dump +%%WWWDIR%%/menus/DUMPS/sqlite.demo_data.dump.php5 +%%WWWDIR%%/menus/DUMPS/sqlite.demo_data.dump +%%WWWDIR%%/menus/DUMPS/phplayersmenu +%%WWWDIR%%/menus/DUMPS/pgsql.start.dump +%%WWWDIR%%/menus/DUMPS/pgsql.demo_data.dump +%%WWWDIR%%/menus/DUMPS/mysql.start.dump +%%WWWDIR%%/menus/DUMPS/mysql.demo_data.dump +%%WWWDIR%%/menus/COPYING +%%WWWDIR%%/menus/CHANGE_TEMPLATE_CLASS_NAME.sh +%%WWWDIR%%/menus/CHANGELOG +%%WWWDIR%%/menus/ACKNOWLEDGEMENTS +%%WWWDIR%%/menudefs.php +%%WWWDIR%%/locale/ru/LC_MESSAGES/messages.po +%%WWWDIR%%/locale/ru/LC_MESSAGES/messages.mo +%%WWWDIR%%/locale/pt_BR/LC_MESSAGES/messages.po +%%WWWDIR%%/locale/pt_BR/LC_MESSAGES/messages.mo +%%WWWDIR%%/locale/pt/LC_MESSAGES/messages.po +%%WWWDIR%%/locale/pt/LC_MESSAGES/messages.mo +%%WWWDIR%%/locale/no/LC_MESSAGES/messages.po +%%WWWDIR%%/locale/no/LC_MESSAGES/messages.mo +%%WWWDIR%%/locale/ja_JP/LC_MESSAGES/messages.po +%%WWWDIR%%/locale/ja_JP/LC_MESSAGES/messages.mo +%%WWWDIR%%/locale/it/LC_MESSAGES/messages.po +%%WWWDIR%%/locale/it/LC_MESSAGES/messages.mo +%%WWWDIR%%/locale/fr/LC_MESSAGES/messages.po +%%WWWDIR%%/locale/fr/LC_MESSAGES/messages.mo +%%WWWDIR%%/locale/es/LC_MESSAGES/messages.po +%%WWWDIR%%/locale/es/LC_MESSAGES/messages.mo +%%WWWDIR%%/locale/de/LC_MESSAGES/messages.po +%%WWWDIR%%/locale/de/LC_MESSAGES/messages.mo +%%WWWDIR%%/locale/bg/LC_MESSAGES/messages.po +%%WWWDIR%%/locale/bg/LC_MESSAGES/messages.mo +%%WWWDIR%%/license.php +%%WWWDIR%%/layout/layoutman.html +%%WWWDIR%%/layout/class.layout +%%WWWDIR%%/ipplanlib.php +%%WWWDIR%%/ipplanlib.js +%%WWWDIR%%/index.php +%%WWWDIR%%/images/square_red.jpg +%%WWWDIR%%/images/square_orange.jpg +%%WWWDIR%%/images/square_green.jpg +%%WWWDIR%%/gpl.html +%%WWWDIR%%/docu.css +%%WWWDIR%%/cookies.js +%%WWWDIR%%/contrib/qipImport-public.pl +%%WWWDIR%%/contrib/qipImport-public.README +%%WWWDIR%%/contrib/process-exports.txt +%%WWWDIR%%/contrib/process-exports.pl.rej +%%WWWDIR%%/contrib/process-exports.pl +%%WWWDIR%%/contrib/isc_dhcp2.xsl +%%WWWDIR%%/contrib/isc_dhcp1.xsl +%%WWWDIR%%/contrib/ipplan2pc.xsl +%%WWWDIR%%/contrib/ipplan2pc.README +%%WWWDIR%%/contrib/ipplan-poller.php +%%WWWDIR%%/contrib/dumproute.txt +%%WWWDIR%%/contrib/dumproute.sh +%%WWWDIR%%/contrib/create-test-users.sh +%%WWWDIR%%/contrib/bind9_zone.xsl.rej +%%WWWDIR%%/contrib/bind9_zone.xsl +%%WWWDIR%%/contrib/bind9_zone.dtd +%%WWWDIR%%/contrib/bind9_revzone.xsl +%%WWWDIR%%/config.php.sample +%%WWWDIR%%/class.xptlib.php +%%WWWDIR%%/class.templib.php +%%WWWDIR%%/class.smtp.php +%%WWWDIR%%/class.phpmailer.php +%%WWWDIR%%/class.dnslib.php +%%WWWDIR%%/class.dbflib.php +%%WWWDIR%%/auth.php +%%WWWDIR%%/adodb/xsl/remove-0.2.xsl +%%WWWDIR%%/adodb/xsl/convert-0.2-0.1.xsl +%%WWWDIR%%/adodb/xsl/convert-0.1-0.2.xsl +%%WWWDIR%%/adodb/xmlschema.dtd +%%WWWDIR%%/adodb/tohtml.inc.php +%%WWWDIR%%/adodb/toexport.inc.php +%%WWWDIR%%/adodb/tests/xmlschema.xml +%%WWWDIR%%/adodb/tests/tmssql.php +%%WWWDIR%%/adodb/tests/time.php +%%WWWDIR%%/adodb/tests/testsessions.php +%%WWWDIR%%/adodb/tests/testpear.php +%%WWWDIR%%/adodb/tests/testpaging.php +%%WWWDIR%%/adodb/tests/testoci8cursor.php +%%WWWDIR%%/adodb/tests/testoci8.php +%%WWWDIR%%/adodb/tests/testmssql.php +%%WWWDIR%%/adodb/tests/testgenid.php +%%WWWDIR%%/adodb/tests/testdatabases.inc.php +%%WWWDIR%%/adodb/tests/testcache.php +%%WWWDIR%%/adodb/tests/test_rs_array.php +%%WWWDIR%%/adodb/tests/test5.php +%%WWWDIR%%/adodb/tests/test4.php +%%WWWDIR%%/adodb/tests/test3.php +%%WWWDIR%%/adodb/tests/test2.php +%%WWWDIR%%/adodb/tests/test.php +%%WWWDIR%%/adodb/tests/test-xmlschema.php +%%WWWDIR%%/adodb/tests/test-php5.php +%%WWWDIR%%/adodb/tests/test-pgblob.php +%%WWWDIR%%/adodb/tests/test-perf.php +%%WWWDIR%%/adodb/tests/test-datadict.php +%%WWWDIR%%/adodb/tests/pdo.php +%%WWWDIR%%/adodb/tests/client.php +%%WWWDIR%%/adodb/tests/benchmark.php +%%WWWDIR%%/adodb/session/old/crypt.inc.php +%%WWWDIR%%/adodb/session/old/adodb-session.php +%%WWWDIR%%/adodb/session/old/adodb-session-clob.php +%%WWWDIR%%/adodb/session/old/adodb-cryptsession.php +%%WWWDIR%%/adodb/session/crypt.inc.php +%%WWWDIR%%/adodb/session/adodb-sessions.oracle.sql +%%WWWDIR%%/adodb/session/adodb-sessions.oracle.clob.sql +%%WWWDIR%%/adodb/session/adodb-sessions.mysql.sql +%%WWWDIR%%/adodb/session/adodb-session.php +%%WWWDIR%%/adodb/session/adodb-session-clob.php +%%WWWDIR%%/adodb/session/adodb-sess.txt +%%WWWDIR%%/adodb/session/adodb-encrypt-secret.php +%%WWWDIR%%/adodb/session/adodb-encrypt-md5.php +%%WWWDIR%%/adodb/session/adodb-encrypt-mcrypt.php +%%WWWDIR%%/adodb/session/adodb-cryptsession.php +%%WWWDIR%%/adodb/session/adodb-compress-gzip.php +%%WWWDIR%%/adodb/session/adodb-compress-bzip2.php +%%WWWDIR%%/adodb/server.php +%%WWWDIR%%/adodb/rsfilter.inc.php +%%WWWDIR%%/adodb/readme.txt +%%WWWDIR%%/adodb/pivottable.inc.php +%%WWWDIR%%/adodb/perf/perf-postgres.inc.php +%%WWWDIR%%/adodb/perf/perf-oci8.inc.php +%%WWWDIR%%/adodb/perf/perf-mysql.inc.php +%%WWWDIR%%/adodb/perf/perf-mssql.inc.php +%%WWWDIR%%/adodb/perf/perf-informix.inc.php +%%WWWDIR%%/adodb/perf/perf-db2.inc.php +%%WWWDIR%%/adodb/pear/readme.Auth.txt +%%WWWDIR%%/adodb/pear/Auth/Container/ADOdb.php +%%WWWDIR%%/adodb/license.txt +%%WWWDIR%%/adodb/lang/adodb-sv.inc.php +%%WWWDIR%%/adodb/lang/adodb-ru1251.inc.php +%%WWWDIR%%/adodb/lang/adodb-ro.inc.php +%%WWWDIR%%/adodb/lang/adodb-pt-br.inc.php +%%WWWDIR%%/adodb/lang/adodb-pl.inc.php +%%WWWDIR%%/adodb/lang/adodb-nl.inc.php +%%WWWDIR%%/adodb/lang/adodb-it.inc.php +%%WWWDIR%%/adodb/lang/adodb-hu.inc.php +%%WWWDIR%%/adodb/lang/adodb-fr.inc.php +%%WWWDIR%%/adodb/lang/adodb-es.inc.php +%%WWWDIR%%/adodb/lang/adodb-en.inc.php +%%WWWDIR%%/adodb/lang/adodb-de.inc.php +%%WWWDIR%%/adodb/lang/adodb-cz.inc.php +%%WWWDIR%%/adodb/lang/adodb-cn.inc.php +%%WWWDIR%%/adodb/lang/adodb-ca.inc.php +%%WWWDIR%%/adodb/lang/adodb-bgutf8.inc.php +%%WWWDIR%%/adodb/lang/adodb-bg.inc.php +%%WWWDIR%%/adodb/lang/adodb-ar.inc.php +%%WWWDIR%%/adodb/drivers/adodb-vfp.inc.php +%%WWWDIR%%/adodb/drivers/adodb-sybase.inc.php +%%WWWDIR%%/adodb/drivers/adodb-sqlitepo.inc.php +%%WWWDIR%%/adodb/drivers/adodb-sqlite.inc.php +%%WWWDIR%%/adodb/drivers/adodb-sqlanywhere.inc.php +%%WWWDIR%%/adodb/drivers/adodb-sapdb.inc.php +%%WWWDIR%%/adodb/drivers/adodb-proxy.inc.php +%%WWWDIR%%/adodb/drivers/adodb-postgres7.inc.php +%%WWWDIR%%/adodb/drivers/adodb-postgres64.inc.php +%%WWWDIR%%/adodb/drivers/adodb-postgres.inc.php +%%WWWDIR%%/adodb/drivers/adodb-pdo.inc.php +%%WWWDIR%%/adodb/drivers/adodb-oracle.inc.php +%%WWWDIR%%/adodb/drivers/adodb-odbtp_unicode.inc.php +%%WWWDIR%%/adodb/drivers/adodb-odbtp.inc.php +%%WWWDIR%%/adodb/drivers/adodb-odbc_oracle.inc.php +%%WWWDIR%%/adodb/drivers/adodb-odbc_mssql.inc.php +%%WWWDIR%%/adodb/drivers/adodb-odbc.inc.php +%%WWWDIR%%/adodb/drivers/adodb-oci8po.inc.php +%%WWWDIR%%/adodb/drivers/adodb-oci805.inc.php +%%WWWDIR%%/adodb/drivers/adodb-oci8.inc.php +%%WWWDIR%%/adodb/drivers/adodb-netezza.inc.php +%%WWWDIR%%/adodb/drivers/adodb-mysqlt.inc.php +%%WWWDIR%%/adodb/drivers/adodb-mysqli.inc.php +%%WWWDIR%%/adodb/drivers/adodb-mysql.inc.php +%%WWWDIR%%/adodb/drivers/adodb-mssqlpo.inc.php +%%WWWDIR%%/adodb/drivers/adodb-mssql.inc.php +%%WWWDIR%%/adodb/drivers/adodb-ldap.inc.php +%%WWWDIR%%/adodb/drivers/adodb-informix72.inc.php +%%WWWDIR%%/adodb/drivers/adodb-informix.inc.php +%%WWWDIR%%/adodb/drivers/adodb-ibase.inc.php +%%WWWDIR%%/adodb/drivers/adodb-firebird.inc.php +%%WWWDIR%%/adodb/drivers/adodb-fbsql.inc.php +%%WWWDIR%%/adodb/drivers/adodb-db2.inc.php +%%WWWDIR%%/adodb/drivers/adodb-csv.inc.php +%%WWWDIR%%/adodb/drivers/adodb-borland_ibase.inc.php +%%WWWDIR%%/adodb/drivers/adodb-ado_mssql.inc.php +%%WWWDIR%%/adodb/drivers/adodb-ado_access.inc.php +%%WWWDIR%%/adodb/drivers/adodb-ado5.inc.php +%%WWWDIR%%/adodb/drivers/adodb-ado.inc.php +%%WWWDIR%%/adodb/drivers/adodb-access.inc.php +%%WWWDIR%%/adodb/docs/tute.htm +%%WWWDIR%%/adodb/docs/tips_portable_sql.htm +%%WWWDIR%%/adodb/docs/readme.htm +%%WWWDIR%%/adodb/docs/old-changelog.htm +%%WWWDIR%%/adodb/docs/docs-session.htm +%%WWWDIR%%/adodb/docs/docs-perf.htm +%%WWWDIR%%/adodb/docs/docs-oracle.htm +%%WWWDIR%%/adodb/docs/docs-datadict.htm +%%WWWDIR%%/adodb/docs/docs-adodb.htm +%%WWWDIR%%/adodb/datadict/datadict-sybase.inc.php +%%WWWDIR%%/adodb/datadict/datadict-sapdb.inc.php +%%WWWDIR%%/adodb/datadict/datadict-postgres.inc.php +%%WWWDIR%%/adodb/datadict/datadict-oci8.inc.php +%%WWWDIR%%/adodb/datadict/datadict-mysql.inc.php +%%WWWDIR%%/adodb/datadict/datadict-mssql.inc.php +%%WWWDIR%%/adodb/datadict/datadict-informix.inc.php +%%WWWDIR%%/adodb/datadict/datadict-ibase.inc.php +%%WWWDIR%%/adodb/datadict/datadict-generic.inc.php +%%WWWDIR%%/adodb/datadict/datadict-firebird.inc.php +%%WWWDIR%%/adodb/datadict/datadict-db2.inc.php +%%WWWDIR%%/adodb/datadict/datadict-access.inc.php +%%WWWDIR%%/adodb/cute_icons_for_site/adodb2.gif +%%WWWDIR%%/adodb/cute_icons_for_site/adodb.gif +%%WWWDIR%%/adodb/contrib/toxmlrpc.inc.php +%%WWWDIR%%/adodb/adodb.inc.php +%%WWWDIR%%/adodb/adodb-xmlschema.inc.php +%%WWWDIR%%/adodb/adodb-time.zip +%%WWWDIR%%/adodb/adodb-time.inc.php +%%WWWDIR%%/adodb/adodb-php4.inc.php +%%WWWDIR%%/adodb/adodb-perf.inc.php.#.LENS-03-09-05 +%%WWWDIR%%/adodb/adodb-perf.inc.php +%%WWWDIR%%/adodb/adodb-pear.inc.php +%%WWWDIR%%/adodb/adodb-pager.inc.php +%%WWWDIR%%/adodb/adodb-lib.inc.php +%%WWWDIR%%/adodb/adodb-iterator.inc.php +%%WWWDIR%%/adodb/adodb-exceptions.inc.php +%%WWWDIR%%/adodb/adodb-errorpear.inc.php +%%WWWDIR%%/adodb/adodb-errorhandler.inc.php +%%WWWDIR%%/adodb/adodb-error.inc.php +%%WWWDIR%%/adodb/adodb-datadict.inc.php +%%WWWDIR%%/adodb/adodb-csvlib.inc.php +%%WWWDIR%%/admin/usermanager.php +%%WWWDIR%%/admin/schemacreate.php +%%WWWDIR%%/admin/maintenance.php +%%WWWDIR%%/admin/install.php +%%WWWDIR%%/admin/importipform.php +%%WWWDIR%%/admin/importip.php +%%WWWDIR%%/admin/importbaseform.php +%%WWWDIR%%/admin/importbase.php +%%WWWDIR%%/admin/exportipform.php +%%WWWDIR%%/admin/exportip.php +%%WWWDIR%%/admin/exportbaseform.php +%%WWWDIR%%/admin/exportbase.php +%%WWWDIR%%/admin/displayboundsform.php +%%WWWDIR%%/admin/displayauditlog.php +%%WWWDIR%%/admin/deletebounds.php +%%WWWDIR%%/admin/changepassword.php +%%WWWDIR%%/UPGRADE +%%WWWDIR%%/TRIGGERS +%%WWWDIR%%/TRANSLATIONS +%%WWWDIR%%/TODO +%%WWWDIR%%/README1st-WINDOWS.txt +%%WWWDIR%%/README.sgml +%%WWWDIR%%/README.html +%%WWWDIR%%/README +%%WWWDIR%%/PORTERS +%%WWWDIR%%/LICENSE +%%WWWDIR%%/IPplan.jpg +%%WWWDIR%%/INTERNALS +%%WWWDIR%%/INSTALL-WINDOWS +%%WWWDIR%%/INSTALL-POSTGRESQL +%%WWWDIR%%/INSTALL-ORACLE9i +%%WWWDIR%%/INSTALL-IIS+MSSQL +%%WWWDIR%%/INSTALL +%%WWWDIR%%/CONTRIBUTORS +%%WWWDIR%%/CHANGELOG +@dirrm %%WWWDIR%%/user/Net/DNS/RR +@dirrm %%WWWDIR%%/user/Net/DNS +@dirrm %%WWWDIR%%/user/Net +@dirrm %%WWWDIR%%/user +@dirrm %%WWWDIR%%/themes/img_red_grey +@dirrm %%WWWDIR%%/themes +@dirrm %%WWWDIR%%/templates/display +@dirrm %%WWWDIR%%/templates +@dirrm %%WWWDIR%%/menus/templates +@dirrm %%WWWDIR%%/menus/menuimages +@dirrm %%WWWDIR%%/menus/menuicons +@dirrm %%WWWDIR%%/menus/libjs +@dirrm %%WWWDIR%%/menus/lib +@dirrm %%WWWDIR%%/menus/images +@dirrm %%WWWDIR%%/menus/THEMES +@dirrm %%WWWDIR%%/menus/PATCHES/ONCLICK +@dirrm %%WWWDIR%%/menus/PATCHES/ICONS_I18N +@dirrm %%WWWDIR%%/menus/PATCHES/FIXEDMENU +@dirrm %%WWWDIR%%/menus/PATCHES +@dirrm %%WWWDIR%%/menus/LOGOS +@dirrm %%WWWDIR%%/menus/DUMPS +@dirrm %%WWWDIR%%/menus +@dirrm %%WWWDIR%%/locale/ru/LC_MESSAGES +@dirrm %%WWWDIR%%/locale/ru +@dirrm %%WWWDIR%%/locale/pt_BR/LC_MESSAGES +@dirrm %%WWWDIR%%/locale/pt_BR +@dirrm %%WWWDIR%%/locale/pt/LC_MESSAGES +@dirrm %%WWWDIR%%/locale/pt +@dirrm %%WWWDIR%%/locale/no/LC_MESSAGES +@dirrm %%WWWDIR%%/locale/no +@dirrm %%WWWDIR%%/locale/ja_JP/LC_MESSAGES +@dirrm %%WWWDIR%%/locale/ja_JP +@dirrm %%WWWDIR%%/locale/it/LC_MESSAGES +@dirrm %%WWWDIR%%/locale/it +@dirrm %%WWWDIR%%/locale/fr/LC_MESSAGES +@dirrm %%WWWDIR%%/locale/fr +@dirrm %%WWWDIR%%/locale/es/LC_MESSAGES +@dirrm %%WWWDIR%%/locale/es +@dirrm %%WWWDIR%%/locale/de/LC_MESSAGES +@dirrm %%WWWDIR%%/locale/de +@dirrm %%WWWDIR%%/locale/bg/LC_MESSAGES +@dirrm %%WWWDIR%%/locale/bg +@dirrm %%WWWDIR%%/locale +@dirrm %%WWWDIR%%/layout +@dirrm %%WWWDIR%%/images +@dirrm %%WWWDIR%%/contrib +@dirrm %%WWWDIR%%/adodb/xsl +@dirrm %%WWWDIR%%/adodb/tests +@dirrm %%WWWDIR%%/adodb/session/old +@dirrm %%WWWDIR%%/adodb/session +@dirrm %%WWWDIR%%/adodb/perf +@dirrm %%WWWDIR%%/adodb/pear/Auth/Container +@dirrm %%WWWDIR%%/adodb/pear/Auth +@dirrm %%WWWDIR%%/adodb/pear +@dirrm %%WWWDIR%%/adodb/lang +@dirrm %%WWWDIR%%/adodb/drivers +@dirrm %%WWWDIR%%/adodb/docs +@dirrm %%WWWDIR%%/adodb/datadict +@dirrm %%WWWDIR%%/adodb/cute_icons_for_site +@dirrm %%WWWDIR%%/adodb/contrib +@dirrm %%WWWDIR%%/adodb +@dirrm %%WWWDIR%%/admin +@dirrmtry %%WWWDIR%% +@dirrmtry /var/spool/ipplan/uploads +@dirrmtry /var/spool/ipplan/exportdns +@dirrmtry /var/spool/ipplan/dhcpexport +@dirrmtry /var/spool/ipplan +@unexec cmp -s %D/%%WWWDIR%%/config.php.sample %D/%%WWWDIR%%/config.php && rm -f %D/%%WWWDIR%%/config.php || true >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 12:50:17 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 83B2C5AD; Fri, 27 Sep 2013 12:50:17 +0000 (UTC) (envelope-from edwin@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 5A36D2A40; Fri, 27 Sep 2013 12:50:17 +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 r8RCoHOX073342; Fri, 27 Sep 2013 12:50:17 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8RCoH8Q073341; Fri, 27 Sep 2013 12:50:17 GMT (envelope-from edwin) Date: Fri, 27 Sep 2013 12:50:17 GMT Message-Id: <201309271250.r8RCoH8Q073341@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182444: [PATCH] net-mgmt/ipplan cleanup and fixes 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: Fri, 27 Sep 2013 12:50:17 -0000 Synopsis: [PATCH] net-mgmt/ipplan cleanup and fixes Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Fri Sep 27 12:50:17 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182444 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 12:50:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 81220575; Fri, 27 Sep 2013 12:50:09 +0000 (UTC) (envelope-from edwin@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 30FD02A3B; Fri, 27 Sep 2013 12:50:09 +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 r8RCo8en071757; Fri, 27 Sep 2013 12:50:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8RCo8g4071756; Fri, 27 Sep 2013 12:50:08 GMT (envelope-from edwin) Date: Fri, 27 Sep 2013 12:50:08 GMT Message-Id: <201309271250.r8RCo8g4071756@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jhale@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182443: graphics/opencv: 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: Fri, 27 Sep 2013 12:50:09 -0000 Synopsis: graphics/opencv: Responsible-Changed-From-To: freebsd-ports-bugs->jhale Responsible-Changed-By: edwin Responsible-Changed-When: Fri Sep 27 12:50:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182443 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 14:50:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 21C16A20 for ; Fri, 27 Sep 2013 14:50:01 +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 DB1FB26B8 for ; Fri, 27 Sep 2013 14:50: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 r8REo09b097012 for ; Fri, 27 Sep 2013 14:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8REo04Q097011; Fri, 27 Sep 2013 14:50:00 GMT (envelope-from gnats) Resent-Date: Fri, 27 Sep 2013 14:50:00 GMT Resent-Message-Id: <201309271450.r8REo04Q097011@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, Paul Schmehl Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id E5613583 for ; Fri, 27 Sep 2013 14:46:10 +0000 (UTC) (envelope-from prvs=975e1386f=root+buttercup4@utdallas.edu) Received: from ip-relay-051.utdallas.edu (outgoing.utdallas.edu [129.110.182.14]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AF6D02682 for ; Fri, 27 Sep 2013 14:46:10 +0000 (UTC) Received: from unknown (HELO mx31.utdallas.edu) ([10.110.20.31]) by ip-relay-051.utdallas.edu with ESMTP; 27 Sep 2013 09:46:03 -0500 Received: from buttercup4.utdallas.edu (buttercup4.utdallas.edu [10.110.4.132]) by mx31.utdallas.edu (Postfix) with ESMTP id 902BA42282 for ; Fri, 27 Sep 2013 09:46:03 -0500 (CDT) Received: by buttercup4.utdallas.edu (Postfix, from userid 0) id 0356010376D34; Fri, 27 Sep 2013 14:46:02 +0000 (UTC) Message-Id: <20130927144602.0356010376D34@buttercup4.utdallas.edu> Date: Fri, 27 Sep 2013 14:46:02 +0000 (UTC) From: Paul Schmehl To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/182445: port update, fix problem in 10.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Paul Schmehl List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Sep 2013 14:50:01 -0000 >Number: 182445 >Category: ports >Synopsis: port update, fix problem in 10.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Sep 27 14:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Paul Schmehl >Release: FreeBSD 9.1-RELEASE amd64 >Organization: The University of Texas at Dallas >Environment: System: FreeBSD hostname.utdallas.edu 9.1-RELEASE FreeBSD 9.1-RELEASE #0 r243825: Tue Dec 4 09:23:10 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: security/sancp, fix problem with compiling in 10.0 because gcc is missing >How-To-Repeat: >Fix: --- sancp.diff begins here --- Index: Makefile =================================================================== --- Makefile (revision 328484) +++ Makefile (working copy) @@ -4,7 +4,7 @@ PORTNAME= sancp PORTVERSION= 1.6.1 DISTVERSIONSUFFIX= -stable -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= security MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}-stable @@ -13,6 +13,7 @@ ALL_TARGET= bsd USE_RC_SUBR= sancp +USE_GCC= yes SUB_FILES= pkg-message USERS= sancp --- sancp.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 15:51:39 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 D8F4CDF3; Fri, 27 Sep 2013 15:51:39 +0000 (UTC) (envelope-from linimon@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 ADB5D2A47; Fri, 27 Sep 2013 15:51:39 +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 r8RFpdDb016560; Fri, 27 Sep 2013 15:51:39 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8RFpdhe016559; Fri, 27 Sep 2013 15:51:39 GMT (envelope-from linimon) Date: Fri, 27 Sep 2013 15:51:39 GMT Message-Id: <201309271551.r8RFpdhe016559@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/182434: New port: net/rsync-bpc Modified rsync that used as part of BackupPC 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: Fri, 27 Sep 2013 15:51:39 -0000 Synopsis: New port: net/rsync-bpc Modified rsync that used as part of BackupPC Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Fri Sep 27 15:51:29 UTC 2013 Responsible-Changed-Why: ports PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=182434 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 15:53:07 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 236FCF1F; Fri, 27 Sep 2013 15:53:07 +0000 (UTC) (envelope-from edwin@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 ED3D62A6E; Fri, 27 Sep 2013 15:53:06 +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 r8RFr6gf016716; Fri, 27 Sep 2013 15:53:06 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8RFr6bg016715; Fri, 27 Sep 2013 15:53:06 GMT (envelope-from edwin) Date: Fri, 27 Sep 2013 15:53:06 GMT Message-Id: <201309271553.r8RFr6bg016715@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pawel@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182439: mail/claws-mail vcalendar not displaying correctly. 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: Fri, 27 Sep 2013 15:53:07 -0000 Synopsis: mail/claws-mail vcalendar not displaying correctly. Responsible-Changed-From-To: freebsd-ports-bugs->pawel Responsible-Changed-By: edwin Responsible-Changed-When: Fri Sep 27 15:53:06 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182439 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 15:53:54 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 3C6D9C8; Fri, 27 Sep 2013 15:53:54 +0000 (UTC) (envelope-from linimon@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 10DA62A7C; Fri, 27 Sep 2013 15:53:54 +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 r8RFrrSn016776; Fri, 27 Sep 2013 15:53:53 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8RFrrDm016775; Fri, 27 Sep 2013 15:53:53 GMT (envelope-from linimon) Date: Fri, 27 Sep 2013 15:53:53 GMT Message-Id: <201309271553.r8RFrrDm016775@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/182440: [PATCH] mail/sqlgrey: fix ipv6 whitelisting 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: Fri, 27 Sep 2013 15:53:54 -0000 Synopsis: [PATCH] mail/sqlgrey: fix ipv6 whitelisting Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Fri Sep 27 15:53:42 UTC 2013 Responsible-Changed-Why: ports PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=182440 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 15:53:58 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 91072CE; Fri, 27 Sep 2013 15:53:58 +0000 (UTC) (envelope-from edwin@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 681872A7E; Fri, 27 Sep 2013 15:53:58 +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 r8RFrwZ7016872; Fri, 27 Sep 2013 15:53:58 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8RFrwd0016871; Fri, 27 Sep 2013 15:53:58 GMT (envelope-from edwin) Date: Fri, 27 Sep 2013 15:53:58 GMT Message-Id: <201309271553.r8RFrwd0016871@freefall.freebsd.org> To: feld@FreeBSD.org, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182440: [PATCH] mail/sqlgrey: fix ipv6 whitelisting 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: Fri, 27 Sep 2013 15:53:58 -0000 Synopsis: [PATCH] mail/sqlgrey: fix ipv6 whitelisting State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Fri Sep 27 15:53:58 UTC 2013 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182440 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 16:00:01 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 CF4501F5 for ; Fri, 27 Sep 2013 16:00:01 +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 BCF672ABD for ; Fri, 27 Sep 2013 16:00:01 +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 r8RG01ia017257 for ; Fri, 27 Sep 2013 16:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8RG01ID017256; Fri, 27 Sep 2013 16:00:01 GMT (envelope-from gnats) Date: Fri, 27 Sep 2013 16:00:01 GMT Message-Id: <201309271600.r8RG01ID017256@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/182440: [PATCH] mail/sqlgrey: fix ipv6 whitelisting X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Sep 2013 16:00:01 -0000 The following reply was made to PR ports/182440; it has been noted by GNATS. From: Edwin Groothuis To: chifeng@gmail.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/182440: [PATCH] mail/sqlgrey: fix ipv6 whitelisting Date: Fri, 27 Sep 2013 15:53:57 UT Maintainer of mail/sqlgrey, Please note that PR ports/182440 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/182440 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 16:10:02 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 5B7A06A4 for ; Fri, 27 Sep 2013 16:10:02 +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 46AB12B52 for ; Fri, 27 Sep 2013 16:10:02 +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 r8RGA1Jq019361 for ; Fri, 27 Sep 2013 16:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8RGA1Ze019360; Fri, 27 Sep 2013 16:10:01 GMT (envelope-from gnats) Date: Fri, 27 Sep 2013 16:10:01 GMT Message-Id: <201309271610.r8RGA1Ze019360@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Michael Gmelin Subject: Re: ports/182426: Update databases/mariadb55-{client,server} to 5.5.33a X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Michael Gmelin List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Sep 2013 16:10:02 -0000 The following reply was made to PR ports/182426; it has been noted by GNATS. From: Michael Gmelin To: bug-followup@FreeBSD.org, never@nevermind.kiev.ua Cc: Subject: Re: ports/182426: Update databases/mariadb55-{client,server} to 5.5.33a Date: Fri, 27 Sep 2013 17:58:44 +0200 Hi Alexandr, Everything builds and installs fine. I found one problem with mysql monitor, which might not be new to this version of the port: mysql monitor doesn't read the global /usr/local/etc/my.cnf like it does in mysql55-client. It does read ~/.my.cnf like expected though. Since system users usually don't have permissions to read /var/db/mysql/my.cnf, /usr/local/etc/my.cnf is usually a good place to put global configurations (like default hostname and safe mode). Using /etc/mysql/my.cnf would violate hier(7). Cheers, Michael -- Michael Gmelin From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 16:20:01 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 646799CF for ; Fri, 27 Sep 2013 16:20:01 +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 51CB92BD3 for ; Fri, 27 Sep 2013 16:20:01 +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 r8RGK1cm022113 for ; Fri, 27 Sep 2013 16:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8RGK0WQ022112; Fri, 27 Sep 2013 16:20:00 GMT (envelope-from gnats) Date: Fri, 27 Sep 2013 16:20:00 GMT Message-Id: <201309271620.r8RGK0WQ022112@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/182299: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Sep 2013 16:20:01 -0000 The following reply was made to PR ports/182299; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/182299: commit references a PR Date: Fri, 27 Sep 2013 16:10:35 +0000 (UTC) Author: cperciva Date: Fri Sep 27 16:10:27 2013 New Revision: 328497 URL: http://svnweb.freebsd.org/changeset/ports/328497 Log: Update to 1.1.0 PR: ports/182299 Submitted by: Alexey Degtyarev (maintainer) Modified: head/devel/awscli/Makefile head/devel/awscli/distinfo head/devel/awscli/pkg-plist Modified: head/devel/awscli/Makefile ============================================================================== --- head/devel/awscli/Makefile Fri Sep 27 16:08:12 2013 (r328496) +++ head/devel/awscli/Makefile Fri Sep 27 16:10:27 2013 (r328497) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= awscli -PORTVERSION= 1.0.0 +PORTVERSION= 1.1.0 CATEGORIES= devel MASTER_SITES= CHEESESHOP MASTER_SITE_SUBDIR=source/a/awscli @@ -12,11 +12,11 @@ COMMENT= Universal Command Line Interfac LICENSE= AL2 -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}bcdoc>=0.9.0:${PORTSDIR}/devel/py-bcdoc \ - ${PYTHON_PKGNAMEPREFIX}botocore>=0.16:${PORTSDIR}/devel/py-botocore \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}bcdoc>=0.10.0:${PORTSDIR}/devel/py-bcdoc \ + ${PYTHON_PKGNAMEPREFIX}botocore>=0.17:${PORTSDIR}/devel/py-botocore \ ${PYTHON_PKGNAMEPREFIX}colorama>=0.2.5:${PORTSDIR}/devel/py-colorama \ ${PYTHON_PKGNAMEPREFIX}docutils>=0.10:${PORTSDIR}/textproc/py-docutils \ - ${PYTHON_PKGNAMEPREFIX}rsa>=3.1.1:${PORTSDIR}/security/py-rsa \ + ${PYTHON_PKGNAMEPREFIX}rsa>=3.1.2:${PORTSDIR}/security/py-rsa \ ${PYTHON_PKGNAMEPREFIX}six>=1.1.0:${PORTSDIR}/devel/py-six USE_PYTHON= yes @@ -27,9 +27,6 @@ NO_STAGE= yes .if ${PYTHON_REL} < 270 RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}argparse>0:${PORTSDIR}/devel/py-argparse -.else -post-patch: - @${REINPLACE_CMD} '/.*argparse.*/d' ${WRKSRC}/setup.py .endif .include Modified: head/devel/awscli/distinfo ============================================================================== --- head/devel/awscli/distinfo Fri Sep 27 16:08:12 2013 (r328496) +++ head/devel/awscli/distinfo Fri Sep 27 16:10:27 2013 (r328497) @@ -1,2 +1,2 @@ -SHA256 (awscli-1.0.0.tar.gz) = bea17a235c6bf8adddc66f0a80e9e73f757cf5637b697b4a200c978d76bb6085 -SIZE (awscli-1.0.0.tar.gz) = 113881 +SHA256 (awscli-1.1.0.tar.gz) = c3802d3274618d152fc3cd0946b8f5a131ab89318b3e8ba1d89d4d27c2ecb647 +SIZE (awscli-1.1.0.tar.gz) = 121538 Modified: head/devel/awscli/pkg-plist ============================================================================== --- head/devel/awscli/pkg-plist Fri Sep 27 16:08:12 2013 (r328496) +++ head/devel/awscli/pkg-plist Fri Sep 27 16:10:27 2013 (r328497) @@ -141,22 +141,35 @@ bin/aws_zsh_completer.sh %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/allocate-address.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/associate-address.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/authorize-security-group-ingress.rst +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/confirm-product-instance.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/create-key-pair.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/create-security-group.rst +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/create-tags.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/delete-key-pair.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/delete-security-group.rst +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/delete-tags.rst +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/describe-account-attributes.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/describe-addresses.rst +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/describe-availability-zones.rst +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/describe-instance-attribute.rst +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/describe-instance-status.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/describe-instances.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/describe-key-pairs.rst +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/describe-regions.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/describe-security-groups.rst +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/describe-tags.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/disassociate-address.rst +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/get-console-output.rst +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/get-password-data.rst +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/modify-instance-attribute.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/reboot-instances.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/release-address.rst +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/reset-instance-attribute.rst +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/revoke-security-group-ingress.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/run-instances.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/start-instances.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/stop-instances.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ec2/terminate_instances.rst -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/iam/Example.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/iam/add-role-to-instance-profile.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/iam/add-user-to-group.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/iam/change-password.rst @@ -271,6 +284,10 @@ bin/aws_zsh_completer.sh %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/s3api/get-object.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/s3api/list-buckets.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/s3api/list-objects.rst +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/s3api/put-bucket-acl.rst +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/s3api/put-bucket-cors.rst +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/s3api/put-bucket-logging.rst +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/s3api/put-bucket-policy.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/s3api/put-object.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ses/delete-identity.rst %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/awscli/examples/ses/get-identity-dkim-attributes.rst _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 18:53:22 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id D2A559E2; Fri, 27 Sep 2013 18:53:22 +0000 (UTC) (envelope-from flo@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 A59A52409; Fri, 27 Sep 2013 18:53:22 +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 r8RIrMXf058291; Fri, 27 Sep 2013 18:53:22 GMT (envelope-from flo@freefall.freebsd.org) Received: (from flo@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8RIrMTt058290; Fri, 27 Sep 2013 18:53:22 GMT (envelope-from flo) Date: Fri, 27 Sep 2013 18:53:22 GMT Message-Id: <201309271853.r8RIrMTt058290@freefall.freebsd.org> To: flo@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, flo@FreeBSD.org From: flo@FreeBSD.org Subject: Re: ports/182287: Update MariaDB 5.5.33a databases/mariadb55-{client, server} 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: Fri, 27 Sep 2013 18:53:22 -0000 Synopsis: Update MariaDB 5.5.33a databases/mariadb55-{client,server} Responsible-Changed-From-To: freebsd-ports-bugs->flo Responsible-Changed-By: flo Responsible-Changed-When: Fri Sep 27 18:53:22 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=182287 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 18:53:52 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 0507CA16; Fri, 27 Sep 2013 18:53:52 +0000 (UTC) (envelope-from flo@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 CDCE2240D; Fri, 27 Sep 2013 18:53:51 +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 r8RIrp9W058386; Fri, 27 Sep 2013 18:53:51 GMT (envelope-from flo@freefall.freebsd.org) Received: (from flo@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8RIrpwX058385; Fri, 27 Sep 2013 18:53:51 GMT (envelope-from flo) Date: Fri, 27 Sep 2013 18:53:51 GMT Message-Id: <201309271853.r8RIrpwX058385@freefall.freebsd.org> To: never@nevermind.kiev.ua, flo@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, flo@FreeBSD.org From: flo@FreeBSD.org Subject: Re: ports/182408: [PATCH] databases/mariadb55-server: Allow building mariadb with libc++ and clang 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: Fri, 27 Sep 2013 18:53:52 -0000 Synopsis: [PATCH] databases/mariadb55-server: Allow building mariadb with libc++ and clang Responsible-Changed-From-To: freebsd-ports-bugs->flo Responsible-Changed-By: flo Responsible-Changed-When: Fri Sep 27 18:53:50 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=182408 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 18:55:49 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 5A01DA65; Fri, 27 Sep 2013 18:55:49 +0000 (UTC) (envelope-from flo@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 2B5D7241E; Fri, 27 Sep 2013 18:55:49 +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 r8RItnuq058540; Fri, 27 Sep 2013 18:55:49 GMT (envelope-from flo@freefall.freebsd.org) Received: (from flo@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8RItnXs058539; Fri, 27 Sep 2013 18:55:49 GMT (envelope-from flo) Date: Fri, 27 Sep 2013 18:55:49 GMT Message-Id: <201309271855.r8RItnXs058539@freefall.freebsd.org> To: flo@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, flo@FreeBSD.org From: flo@FreeBSD.org Subject: Re: ports/182426: Update databases/mariadb55-{client, server} to 5.5.33a 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: Fri, 27 Sep 2013 18:55:49 -0000 Synopsis: Update databases/mariadb55-{client,server} to 5.5.33a Responsible-Changed-From-To: freebsd-ports-bugs->flo Responsible-Changed-By: flo Responsible-Changed-When: Fri Sep 27 18:55:48 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=182426 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 19:40: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 88D08296 for ; Fri, 27 Sep 2013 19:40: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 68D2426AC for ; Fri, 27 Sep 2013 19:40: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 r8RJe0wk067482 for ; Fri, 27 Sep 2013 19:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8RJe03A067481; Fri, 27 Sep 2013 19:40:00 GMT (envelope-from gnats) Resent-Date: Fri, 27 Sep 2013 19:40:00 GMT Resent-Message-Id: <201309271940.r8RJe03A067481@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, "Mikhail T." Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 461F7214 for ; Fri, 27 Sep 2013 19:33:11 +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 194F92677 for ; Fri, 27 Sep 2013 19:33:11 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8RJXAJb012804 for ; Fri, 27 Sep 2013 19:33:10 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8RJXAqJ012774; Fri, 27 Sep 2013 19:33:10 GMT (envelope-from nobody) Message-Id: <201309271933.r8RJXAqJ012774@oldred.freebsd.org> Date: Fri, 27 Sep 2013 19:33:10 GMT From: "Mikhail T." To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182446: [maintainer] [patch] databases/pgbouncer : switch to libevent2 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: Fri, 27 Sep 2013 19:40:00 -0000 >Number: 182446 >Category: ports >Synopsis: [maintainer] [patch] databases/pgbouncer : switch to libevent2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Sep 27 19:40:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Mikhail T. >Release: >Organization: >Environment: >Description: - Switch to libevent2 - Bump PORTREVISION - Pet portlint Build logs: https://redports.org/~mtsatsenko/20130927151417-02046-147565/pgbouncer-1.5.4_1.log https://redports.org/~mtsatsenko/20130927151417-02046-147566/pgbouncer-1.5.4_1.log https://redports.org/~mtsatsenko/20130927151417-02046-147567/pgbouncer-1.5.4_1.log https://redports.org/~mtsatsenko/20130927151417-02046-147567/pgbouncer-1.5.4_1.log >How-To-Repeat: >Fix: Patch attached with submission follows: Index: Makefile =================================================================== --- Makefile (revision 328507) +++ Makefile (working copy) @@ -3,6 +3,7 @@ PORTNAME= pgbouncer PORTVERSION= 1.5.4 +PORTREVISION= 1 CATEGORIES= databases MASTER_SITES= http://pgfoundry.org/frs/download.php/3393/ @@ -11,7 +12,7 @@ LICENSE= BSD -LIB_DEPENDS= event-1.4:${PORTSDIR}/devel/libevent +LIB_DEPENDS= event-2:${PORTSDIR}/devel/libevent2 PORTSCOUT= site:http://pgfoundry.org/frs/?group_id=1000258 @@ -29,7 +30,7 @@ MAN5= pgbouncer.5 .endif -CONFIGURE_ARGS= --with-libevent=${LOCALBASE} +CONFIGURE_ARGS= --with-libevent=${LOCALBASE} --enable-evdns CONFIGURE_ENV+= PTHREAD_CFLAGS=${PTHREAD_CFLAGS} \ PTHREAD_LIBS=${PTHREAD_LIBS} Index: files/patch-configure =================================================================== --- files/patch-configure (revision 0) +++ files/patch-configure (working copy) @@ -0,0 +1,14 @@ +--- configure.orig 2012-11-28 17:11:13.000000000 +0400 ++++ configure 2013-09-25 23:54:23.465994180 +0400 +@@ -6332,8 +6332,8 @@ + levent=yes + else + levent=yes +- CPPFLAGS="$CPPFLAGS -I$withval/include" +- LDFLAGS="$LDFLAGS -L$withval/lib" ++ CPPFLAGS="$CPPFLAGS -I$withval/include -I$withval/include/event2/compat" ++ LDFLAGS="$LDFLAGS -L$withval/lib/event2" + fi + + fi + >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 19:40:08 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 706272E3; Fri, 27 Sep 2013 19:40:08 +0000 (UTC) (envelope-from edwin@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 4705926AE; Fri, 27 Sep 2013 19:40:08 +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 r8RJe8xS067626; Fri, 27 Sep 2013 19:40:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8RJe8IN067625; Fri, 27 Sep 2013 19:40:08 GMT (envelope-from edwin) Date: Fri, 27 Sep 2013 19:40:08 GMT Message-Id: <201309271940.r8RJe8IN067625@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, swills@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182446: [maintainer] [patch] databases/pgbouncer : switch to libevent2 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: Fri, 27 Sep 2013 19:40:08 -0000 Synopsis: [maintainer] [patch] databases/pgbouncer : switch to libevent2 Responsible-Changed-From-To: freebsd-ports-bugs->swills Responsible-Changed-By: edwin Responsible-Changed-When: Fri Sep 27 19:40:07 UTC 2013 Responsible-Changed-Why: swills@ wants this submitter's PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182446 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 20:22:20 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 76CE0B8A; Fri, 27 Sep 2013 20:22:20 +0000 (UTC) (envelope-from wg@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 49FC9291D; Fri, 27 Sep 2013 20:22:20 +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 r8RKMKlB077947; Fri, 27 Sep 2013 20:22:20 GMT (envelope-from wg@freefall.freebsd.org) Received: (from wg@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8RKMKGX077946; Fri, 27 Sep 2013 20:22:20 GMT (envelope-from wg) Date: Fri, 27 Sep 2013 20:22:20 GMT Message-Id: <201309272022.r8RKMKGX077946@freefall.freebsd.org> To: wg@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wg@FreeBSD.org From: wg@FreeBSD.org Subject: Re: ports/182424: [UPDATE] sysutils/ori to 0.8.0 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: Fri, 27 Sep 2013 20:22:20 -0000 Synopsis: [UPDATE] sysutils/ori to 0.8.0 Responsible-Changed-From-To: freebsd-ports-bugs->wg Responsible-Changed-By: wg Responsible-Changed-When: Fri Sep 27 20:22:19 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=182424 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 21:01:31 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 767FFC25; Fri, 27 Sep 2013 21:01:31 +0000 (UTC) (envelope-from ak@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 4BF4A2AFB; Fri, 27 Sep 2013 21:01:31 +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 r8RL1ViF085456; Fri, 27 Sep 2013 21:01:31 GMT (envelope-from ak@freefall.freebsd.org) Received: (from ak@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8RL1UG1085455; Fri, 27 Sep 2013 21:01:30 GMT (envelope-from ak) Date: Fri, 27 Sep 2013 21:01:30 GMT Message-Id: <201309272101.r8RL1UG1085455@freefall.freebsd.org> To: root@cooltrainer.org, demelier.david@gmail.com, ak@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: ak@FreeBSD.org Subject: Re: ports/181413: [patch] emulators/visualboyadvance-m: unbreak build 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: Fri, 27 Sep 2013 21:01:31 -0000 Synopsis: [patch] emulators/visualboyadvance-m: unbreak build State-Changed-From-To: feedback->open State-Changed-By: ak State-Changed-When: Fri Sep 27 21:01:30 UTC 2013 State-Changed-Why: Maintainer timeout. http://www.freebsd.org/cgi/query-pr.cgi?pr=181413 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 22:28:11 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id B4882D05; Fri, 27 Sep 2013 22:28:11 +0000 (UTC) (envelope-from danilo@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 880E12EA0; Fri, 27 Sep 2013 22:28:11 +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 r8RMSBDL003199; Fri, 27 Sep 2013 22:28:11 GMT (envelope-from danilo@freefall.freebsd.org) Received: (from danilo@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8RMSBcE003198; Fri, 27 Sep 2013 22:28:11 GMT (envelope-from danilo) Date: Fri, 27 Sep 2013 22:28:11 GMT Message-Id: <201309272228.r8RMSBcE003198@freefall.freebsd.org> To: danilo@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, danilo@FreeBSD.org From: danilo@FreeBSD.org Subject: Re: ports/182445: security/sancp port update, fix problem in 10.0 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: Fri, 27 Sep 2013 22:28:11 -0000 Synopsis: security/sancp port update, fix problem in 10.0 Responsible-Changed-From-To: freebsd-ports-bugs->danilo Responsible-Changed-By: danilo Responsible-Changed-When: Fri Sep 27 22:28:11 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=182445 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 23:10:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id A4008D1B for ; Fri, 27 Sep 2013 23:10: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 8473F210E for ; Fri, 27 Sep 2013 23:10: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 r8RNA0NM010674 for ; Fri, 27 Sep 2013 23:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8RNA0Ww010673; Fri, 27 Sep 2013 23:10:00 GMT (envelope-from gnats) Resent-Date: Fri, 27 Sep 2013 23:10:00 GMT Resent-Message-Id: <201309272310.r8RNA0Ww010673@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, Trevor Caira 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 788C6D06 for ; Fri, 27 Sep 2013 23:07:47 +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 66A7D2104 for ; Fri, 27 Sep 2013 23:07:47 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8RN7kXR077675 for ; Fri, 27 Sep 2013 23:07:46 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8RN7kIf077633; Fri, 27 Sep 2013 23:07:46 GMT (envelope-from nobody) Message-Id: <201309272307.r8RN7kIf077633@oldred.freebsd.org> Date: Fri, 27 Sep 2013 23:07:46 GMT From: Trevor Caira To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182447: [patch] textproc/ack add missing files to pkg-plist 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: Fri, 27 Sep 2013 23:10:00 -0000 >Number: 182447 >Category: ports >Synopsis: [patch] textproc/ack add missing files to pkg-plist >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Sep 27 23:10:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Trevor Caira >Release: FreeBSD 9.2-RC4 >Organization: Bitbase, LLC >Environment: FreeBSD tour 9.2-RC4 FreeBSD 9.2-RC4 #0 r255465: Wed Sep 11 05:11:03 UTC 2013 root@bake.isc.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: The latest update to the textproc/ack port is missing files the package installs, causing the ack command to be unrunnable, and the package generally unusable. >How-To-Repeat: >Fix: Patch to port attached. Patch attached with submission follows: Index: ack/Makefile =================================================================== --- ack/Makefile (revision 328532) +++ ack/Makefile (working copy) @@ -3,6 +3,7 @@ PORTNAME= ack PORTVERSION= 2.10 +PORTREVISION= 1 CATEGORIES= textproc perl5 sysutils MASTER_SITES= CPAN MASTER_SITE_SUBDIR= App Index: ack/pkg-plist =================================================================== --- ack/pkg-plist (revision 328532) +++ ack/pkg-plist (working copy) @@ -5,10 +5,13 @@ %%SITE_PERL%%/App/Ack/ConfigLoader.pm %%SITE_PERL%%/App/Ack/Filter.pm %%SITE_PERL%%/App/Ack/Filter/Default.pm +%%SITE_PERL%%/App/Ack/Filter/Collection.pm %%SITE_PERL%%/App/Ack/Filter/Extension.pm +%%SITE_PERL%%/App/Ack/Filter/ExtensionGroup.pm %%SITE_PERL%%/App/Ack/Filter/FirstLineMatch.pm %%SITE_PERL%%/App/Ack/Filter/Inverse.pm %%SITE_PERL%%/App/Ack/Filter/Is.pm +%%SITE_PERL%%/App/Ack/Filter/IsGroup.pm %%SITE_PERL%%/App/Ack/Filter/Match.pm %%SITE_PERL%%/App/Ack/Resource.pm %%SITE_PERL%%/App/Ack/Resource/Basic.pm >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 27 23:10:09 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 82789D4D; Fri, 27 Sep 2013 23:10:09 +0000 (UTC) (envelope-from edwin@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 583CC2110; Fri, 27 Sep 2013 23:10:09 +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 r8RNA9Fh010813; Fri, 27 Sep 2013 23:10:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8RNA9rn010812; Fri, 27 Sep 2013 23:10:09 GMT (envelope-from edwin) Date: Fri, 27 Sep 2013 23:10:09 GMT Message-Id: <201309272310.r8RNA9rn010812@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182447: [patch] textproc/ack add missing files to pkg-plist 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: Fri, 27 Sep 2013 23:10:09 -0000 Synopsis: [patch] textproc/ack add missing files to pkg-plist Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Fri Sep 27 23:10:09 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182447 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 00:00:02 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 3856F62B for ; Sat, 28 Sep 2013 00:00:02 +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 187552345 for ; Sat, 28 Sep 2013 00:00:02 +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 r8S001PW020992 for ; Sat, 28 Sep 2013 00:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8S001rl020991; Sat, 28 Sep 2013 00:00:01 GMT (envelope-from gnats) Resent-Date: Sat, 28 Sep 2013 00:00:01 GMT Resent-Message-Id: <201309280000.r8S001rl020991@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, Sébastien Santoro Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id B236A5B9 for ; Fri, 27 Sep 2013 23:52:18 +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 9F68C2310 for ; Fri, 27 Sep 2013 23:52:18 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8RNqINn066159 for ; Fri, 27 Sep 2013 23:52:18 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8RNqITs066153; Fri, 27 Sep 2013 23:52:18 GMT (envelope-from nobody) Message-Id: <201309272352.r8RNqITs066153@oldred.freebsd.org> Date: Fri, 27 Sep 2013 23:52:18 GMT From: Sébastien Santoro To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182449: [databases/pecl-memcached] Memcached::setSaslAuthData unavailable, by lack of SASL authentication option, 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, 28 Sep 2013 00:00:02 -0000 >Number: 182449 >Category: ports >Synopsis: [databases/pecl-memcached] Memcached::setSaslAuthData unavailable, by lack of SASL authentication option, >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Sep 28 00:00:01 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Sébastien Santoro >Release: >Organization: >Environment: (current bug isn't environment dependant) >Description: PECL extension by default doesn't include SASL authentication, it should be explicitly asked at configure time. Excerpt from http://www.php.net/manual/en/memcached.installation.php: “SASL authentication support is disabled by default. To enable it, use --enable-memcached-sasl switch. This requires that libsasl2 has been installed and that libmemcached has been built with SASL support enabled.” Excerpt from http://www.php.net/manual/en/memcached.setsaslauthdata.php: “This method is only available when the memcached extension is build with SASL support. Please refer to Memcached setup for how to do this.” >How-To-Repeat: addServer('localhost', 11211); $memcached->setSaslAuthData('username', 'password'); //Fails, as setSaslAuthData doesn't exist >Fix: Add a SASL option: - adding --enable-memcached-sasl to ./configure - adding security/cyrus-sasl2 as dependency (should have been done by libmemcached) If you wish to do it without the option: - Argument pro: databases/libmemcached now always add SASL support - Argument against: databases/memcached still provides the option (but we're in the client side, not the server side, so shouldn't we be coherent with libmemcached choice?) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 00:00:10 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 7C9AE664; Sat, 28 Sep 2013 00:00:10 +0000 (UTC) (envelope-from edwin@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 51D3A2348; Sat, 28 Sep 2013 00:00:10 +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 r8S00Aiw022582; Sat, 28 Sep 2013 00:00:10 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8S00AxD022581; Sat, 28 Sep 2013 00:00:10 GMT (envelope-from edwin) Date: Sat, 28 Sep 2013 00:00:10 GMT Message-Id: <201309280000.r8S00AxD022581@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182449: [databases/pecl-memcached] Memcached::setSaslAuthData unavailable, by lack of SASL authentication option, 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, 28 Sep 2013 00:00:10 -0000 Synopsis: [databases/pecl-memcached] Memcached::setSaslAuthData unavailable, by lack of SASL authentication option, Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Sat Sep 28 00:00:10 UTC 2013 Responsible-Changed-Why: miwi@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182449 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 01:04:20 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 D1B4E2FF; Sat, 28 Sep 2013 01:04:20 +0000 (UTC) (envelope-from wg@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 A807325D0; Sat, 28 Sep 2013 01:04:20 +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 r8S14K2E046021; Sat, 28 Sep 2013 01:04:20 GMT (envelope-from wg@freefall.freebsd.org) Received: (from wg@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8S14KkK046020; Sat, 28 Sep 2013 01:04:20 GMT (envelope-from wg) Date: Sat, 28 Sep 2013 01:04:20 GMT Message-Id: <201309280104.r8S14KkK046020@freefall.freebsd.org> To: root@cooltrainer.org, wg@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wg@FreeBSD.org From: wg@FreeBSD.org Subject: Re: ports/181413: [patch] emulators/visualboyadvance-m: unbreak build 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, 28 Sep 2013 01:04:20 -0000 Synopsis: [patch] emulators/visualboyadvance-m: unbreak build Responsible-Changed-From-To: freebsd-ports-bugs->wg Responsible-Changed-By: wg Responsible-Changed-When: Sat Sep 28 01:04:20 UTC 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=181413 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 01:50:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id B711C704 for ; Sat, 28 Sep 2013 01:50: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 7C0D72730 for ; Sat, 28 Sep 2013 01:50: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 r8S1o0qF055758 for ; Sat, 28 Sep 2013 01:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8S1o0cW055757; Sat, 28 Sep 2013 01:50:00 GMT (envelope-from gnats) Resent-Date: Sat, 28 Sep 2013 01:50:00 GMT Resent-Message-Id: <201309280150.r8S1o0cW055757@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, Dmitry Marakasov Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id C53C36FB; Sat, 28 Sep 2013 01:49:30 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from smtp.timeweb.ru (smtp.timeweb.ru [92.53.117.34]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 81374272C; Sat, 28 Sep 2013 01:49:29 +0000 (UTC) Received: from [213.148.20.85] (helo=hive.panopticon) by smtp.timeweb.ru with esmtpsa (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.76) (envelope-from ) id 1VPjer-0002kL-2D; Sat, 28 Sep 2013 05:49:21 +0400 Received: from hades.panopticon (hades.panopticon [192.168.0.32]) by hive.panopticon (Postfix) with ESMTP id 9862E498; Sat, 28 Sep 2013 05:49:20 +0400 (MSK) Received: by hades.panopticon (Postfix, from userid 1000) id 5CD8F595; Sat, 28 Sep 2013 05:49:20 +0400 (MSK) Message-Id: <20130928014920.5CD8F595@hades.panopticon> Date: Sat, 28 Sep 2013 05:49:20 +0400 (MSK) From: Dmitry Marakasov To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/182451: [mtree] add share/applications to mtree Cc: portmgr@FreeBSD.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Dmitry Marakasov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 Sep 2013 01:50:00 -0000 >Number: 182451 >Category: ports >Synopsis: [mtree] add share/applications to mtree >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Sep 28 01:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Dmitry Marakasov >Release: FreeBSD 9.1-RELEASE-p4 amd64 >Organization: >Environment: System: FreeBSD hades.panopticon 9.1-RELEASE-p4 FreeBSD 9.1-RELEASE-p4 #0 r251956: Tue Jun 18 21:41:37 MSK 2013 root@hades.panopticon:/usr/obj/usr/src/sys/HADES amd64 >Description: I propose to add share/applications to ports mtree (BSD.local.dist). Many ports use it - 1145 as of now, which is higher than ports that use share/pixmaps (785), which is in the mtree already. All of them reqire an extra @dirrmtry's/PLIST_DIRSTRY because of that, and some also require MKDIR, which can be avoided. If this proposal is approved, I volunteer to prepare a megapatch. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 02:40:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 55CE8E79 for ; Sat, 28 Sep 2013 02:40:01 +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 334992904 for ; Sat, 28 Sep 2013 02:40:01 +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 r8S2e0AX065728 for ; Sat, 28 Sep 2013 02:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8S2e0WP065724; Sat, 28 Sep 2013 02:40:00 GMT (envelope-from gnats) Resent-Date: Sat, 28 Sep 2013 02:40:00 GMT Resent-Message-Id: <201309280240.r8S2e0WP065724@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, Dmitry Marakasov 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 7F4BED54 for ; Sat, 28 Sep 2013 02:33:21 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from smtp.timeweb.ru (smtp.timeweb.ru [92.53.117.39]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3EB7328E3 for ; Sat, 28 Sep 2013 02:33:20 +0000 (UTC) Received: from [213.148.20.85] (helo=hive.panopticon) by smtp.timeweb.ru with esmtpsa (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.76) (envelope-from ) id 1VPkLN-0001yN-Vi; Sat, 28 Sep 2013 06:33:17 +0400 Received: from hades.panopticon (hades.panopticon [192.168.0.32]) by hive.panopticon (Postfix) with ESMTP id 7E3F74B1; Sat, 28 Sep 2013 06:33:17 +0400 (MSK) Received: by hades.panopticon (Postfix, from userid 1000) id 3E12459B; Sat, 28 Sep 2013 06:33:17 +0400 (MSK) Message-Id: <20130928023317.3E12459B@hades.panopticon> Date: Sat, 28 Sep 2013 06:33:17 +0400 (MSK) From: Dmitry Marakasov To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/182452: [PATCH] net/wpa_gui: support staging, fix build on -current Cc: webmaster@kibab.com 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, 28 Sep 2013 02:40:01 -0000 >Number: 182452 >Category: ports >Synopsis: [PATCH] net/wpa_gui: support staging, fix build on -current >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Sep 28 02:40:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Dmitry Marakasov >Release: FreeBSD 9.1-RELEASE-p4 amd64 >Organization: >Environment: System: FreeBSD hades.panopticon 9.1-RELEASE-p4 FreeBSD 9.1-RELEASE-p4 #0 r251956: Tue Jun 18 21:41:37 MSK >Description: - Support staging - Fix build on -CURRENT by adding missing #include Port maintainer (webmaster@kibab.com) is cc'd. Generated with FreeBSD Port Tools 0.99_8 (mode: change, diff: SVN) >How-To-Repeat: >Fix: --- wpa_gui-0.7.3.patch begins here --- Index: Makefile =================================================================== --- Makefile (revision 328540) +++ Makefile (working copy) @@ -22,7 +22,6 @@ USE_QT4= gui moc_build qmake_build rcc_build uic_build HAS_CONFIGURE= yes -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e "s|Exec=wpa_gui|Exec=${PREFIX}/sbin/wpa_gui|" \ ${WRKSRC}/wpa_gui.desktop @@ -33,9 +32,9 @@ ${QMAKE} ${QMAKEFLAGS} PREFIX=${PREFIX} do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/sbin - @${MKDIR} ${PREFIX}/share/applications - ${INSTALL_DATA} ${WRKSRC}/wpa_gui.desktop ${PREFIX}/share/applications - ${INSTALL_DATA} ${WRKSRC}/icons/wpa_gui.svg ${PREFIX}/share/pixmaps + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/sbin + @${MKDIR} ${STAGEDIR}${PREFIX}/share/applications + ${INSTALL_DATA} ${WRKSRC}/wpa_gui.desktop ${STAGEDIR}${PREFIX}/share/applications + ${INSTALL_DATA} ${WRKSRC}/icons/wpa_gui.svg ${STAGEDIR}${PREFIX}/share/pixmaps .include Index: files/patch-wpagui.cpp =================================================================== --- files/patch-wpagui.cpp (revision 0) +++ files/patch-wpagui.cpp (working copy) @@ -0,0 +1,11 @@ +--- wpagui.cpp.orig 2010-09-07 19:43:39.000000000 +0400 ++++ wpagui.cpp 2013-09-28 02:55:26.912521423 +0400 +@@ -27,6 +27,8 @@ + #include + #include + ++#include ++ + #include "wpagui.h" + #include "dirent.h" + #include "common/wpa_ctrl.h" Property changes on: files/patch-wpagui.cpp ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property --- wpa_gui-0.7.3.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 02:40:09 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 34224EAA; Sat, 28 Sep 2013 02:40:09 +0000 (UTC) (envelope-from edwin@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 0C2212906; Sat, 28 Sep 2013 02:40:09 +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 r8S2e8Us065855; Sat, 28 Sep 2013 02:40:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8S2e8ti065854; Sat, 28 Sep 2013 02:40:08 GMT (envelope-from edwin) Date: Sat, 28 Sep 2013 02:40:08 GMT Message-Id: <201309280240.r8S2e8ti065854@freefall.freebsd.org> To: amdmi3@amdmi3.ru, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182452: [PATCH] net/wpa_gui: support staging, fix build on -current 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, 28 Sep 2013 02:40:09 -0000 Synopsis: [PATCH] net/wpa_gui: support staging, fix build on -current State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sat Sep 28 02:40:08 UTC 2013 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182452 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 02:50:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 35685F65 for ; Sat, 28 Sep 2013 02:50:01 +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 21B8C295D for ; Sat, 28 Sep 2013 02:50:01 +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 r8S2o07b067756 for ; Sat, 28 Sep 2013 02:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8S2o083067755; Sat, 28 Sep 2013 02:50:00 GMT (envelope-from gnats) Date: Sat, 28 Sep 2013 02:50:00 GMT Message-Id: <201309280250.r8S2o083067755@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/182452: [PATCH] net/wpa_gui: support staging, fix build on -current X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 Sep 2013 02:50:01 -0000 The following reply was made to PR ports/182452; it has been noted by GNATS. From: Edwin Groothuis To: webmaster@kibab.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/182452: [PATCH] net/wpa_gui: support staging, fix build on -current Date: Sat, 28 Sep 2013 02:40:08 UT Maintainer of net/wpa_gui, Please note that PR ports/182452 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/182452 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 03:10: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 7DA2D32E for ; Sat, 28 Sep 2013 03:10: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 5E1DE2A97 for ; Sat, 28 Sep 2013 03:10: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 r8S3A00u071957 for ; Sat, 28 Sep 2013 03:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8S3A0Zc071956; Sat, 28 Sep 2013 03:10:00 GMT (envelope-from gnats) Resent-Date: Sat, 28 Sep 2013 03:10:00 GMT Resent-Message-Id: <201309280310.r8S3A0Zc071956@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, Kenji Rikitake Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 7679B324 for ; Sat, 28 Sep 2013 03:08:57 +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 4B72C2A92 for ; Sat, 28 Sep 2013 03:08:57 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8S38vO3041108 for ; Sat, 28 Sep 2013 03:08:57 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8S38vhL041107; Sat, 28 Sep 2013 03:08:57 GMT (envelope-from nobody) Message-Id: <201309280308.r8S38vhL041107@oldred.freebsd.org> Date: Sat, 28 Sep 2013 03:08:57 GMT From: Kenji Rikitake To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182453: Port databases/riak does not create the directory in /usr/local 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, 28 Sep 2013 03:10:00 -0000 >Number: 182453 >Category: ports >Synopsis: Port databases/riak does not create the directory in /usr/local >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Sep 28 03:10:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Kenji Rikitake >Release: 9.2-PRERELEASE >Organization: >Environment: FreeBSD wellmax.priv.k2r.org 9.2-PRERELEASE FreeBSD 9.2-PRERELEASE #11 r255623: Tue Sep 17 17:02:32 JST 2013 root@wellmax.priv.k2r.org:/usr/obj/usr/src/sys/K2RKERNEL amd64 >Description: The Port creates the following three spurious directories /etc/riak /lib/riak/lib /lib/riak instead of /usr/local/etc/riak /usr/local/lib/riak/lib /usr/local/lib/riak during `make install`, and the install procedures abnormally terminated. My investigation suggests that the ".for" statement in the target "do-install" in the Makefile does not function properly. >How-To-Repeat: (cd /usr/ports/databases/riak && make && make install) >Fix: Apply the patch in this PR. (The .for loop in the Makefile is manually expanded; this patch will not add unnecessary complexity because the .for loop only handles five directories) Patch attached with submission follows: --- Makefile.orig 2013-09-27 21:04:42.000000000 +0900 +++ Makefile 2013-09-28 11:54:08.000000000 +0900 @@ -64,9 +64,11 @@ ${ECHO} "@dirrmtry %%RIAK_LOGDIR%%" >> ${PLIST} do-install: -.for d in ${RIAK_CONFDIR} ${RIAK_LOGDIR} ${RIAK_DBDIR} ${RIAK_LIBDIR} ${RIAK_HOMEDIR} - [ -d ${d} ] || ${MKDIR} ${d} && ${CHOWN} ${USERS}:${GROUPS} ${d} -.endfor + ${MKDIR} ${RIAK_CONFDIR} && ${CHOWN} ${USERS}:${GROUPS} ${RIAK_CONFDIR} + ${MKDIR} ${RIAK_LOGDIR} && ${CHOWN} ${USERS}:${GROUPS} ${RIAK_LOGDIR} + ${MKDIR} ${RIAK_DBDIR} && ${CHOWN} ${USERS}:${GROUPS} ${RIAK_DBDIR} + ${MKDIR} ${RIAK_LIBDIR} && ${CHOWN} ${USERS}:${GROUPS} ${RIAK_LIBDIR} + ${MKDIR} ${RIAK_HOMEDIR} && ${CHOWN} ${USERS}:${GROUPS} ${RIAK_HOMEDIR} ${INSTALL_DATA} ${WRKSRC}/rel/riak/etc/vm.args ${RIAK_CONFDIR}/vm.args.sample ${INSTALL_DATA} ${WRKSRC}/rel/riak/etc/app.config ${RIAK_CONFDIR}/app.config.sample ${INSTALL_DATA} ${WRKSRC}/rel/riak/etc/cert.pem ${RIAK_CONFDIR}/cert.pem.sample >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 03:10:08 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 2F65835E; Sat, 28 Sep 2013 03:10:08 +0000 (UTC) (envelope-from edwin@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 062EE2A99; Sat, 28 Sep 2013 03:10:08 +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 r8S3A7Ne072119; Sat, 28 Sep 2013 03:10:07 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8S3A7qu072118; Sat, 28 Sep 2013 03:10:07 GMT (envelope-from edwin) Date: Sat, 28 Sep 2013 03:10:07 GMT Message-Id: <201309280310.r8S3A7qu072118@freefall.freebsd.org> To: kenji.rikitake@acm.org, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182453: Port databases/riak does not create the directory in /usr/local 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, 28 Sep 2013 03:10:08 -0000 Synopsis: Port databases/riak does not create the directory in /usr/local State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sat Sep 28 03:10:07 UTC 2013 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182453 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 03:20:02 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 883F9646 for ; Sat, 28 Sep 2013 03:20:02 +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 75CA82B1B for ; Sat, 28 Sep 2013 03:20:02 +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 r8S3K2tI075499 for ; Sat, 28 Sep 2013 03:20:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8S3K2gf075498; Sat, 28 Sep 2013 03:20:02 GMT (envelope-from gnats) Date: Sat, 28 Sep 2013 03:20:02 GMT Message-Id: <201309280320.r8S3K2gf075498@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/182453: Port databases/riak does not create the directory in /usr/local X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 Sep 2013 03:20:02 -0000 The following reply was made to PR ports/182453; it has been noted by GNATS. From: Edwin Groothuis To: ports@robakdesign.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/182453: Port databases/riak does not create the directory in /usr/local Date: Sat, 28 Sep 2013 03:10:06 UT Maintainer of databases/riak, Please note that PR ports/182453 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/182453 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 07:20:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id CAB349FA for ; Sat, 28 Sep 2013 07:20: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 AA87D2C6E for ; Sat, 28 Sep 2013 07:20: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 r8S7K0Re032196 for ; Sat, 28 Sep 2013 07:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8S7K0gU032195; Sat, 28 Sep 2013 07:20:00 GMT (envelope-from gnats) Resent-Date: Sat, 28 Sep 2013 07:20:00 GMT Resent-Message-Id: <201309280720.r8S7K0gU032195@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, Kenji Rikitake 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 D4E7B94C for ; Sat, 28 Sep 2013 07:15:19 +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 A86312C1F for ; Sat, 28 Sep 2013 07:15:19 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8S7FJXN038253 for ; Sat, 28 Sep 2013 07:15:19 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8S7FJA1038245; Sat, 28 Sep 2013 07:15:19 GMT (envelope-from nobody) Message-Id: <201309280715.r8S7FJA1038245@oldred.freebsd.org> Date: Sat, 28 Sep 2013 07:15:19 GMT From: Kenji Rikitake To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182454: textproc/ack does not run (not all necessary files installed) 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, 28 Sep 2013 07:20:01 -0000 >Number: 182454 >Category: ports >Synopsis: textproc/ack does not run (not all necessary files installed) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Sep 28 07:20:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Kenji Rikitake >Release: 9.2-PRERELEASE >Organization: >Environment: FreeBSD minimax.priv.k2r.org 9.2-PRERELEASE FreeBSD 9.2-PRERELEASE #12 r255623: Tue Sep 17 16:59:31 JST 2013 root@minimax.priv.k2r.org:/usr/obj/usr/src/sys/K2RKERNEL amd64 >Description: ack-2.10 does not run and causes error with the following error messages: kenji@minimax[1108]% ack Can't locate App/Ack/Filter/ExtensionGroup.pm in @INC (@INC contains: /home/kenji/perl5/lib/perl5/amd64-freebsd /home/kenji/perl5/lib/perl5/amd64-freebsd /home/kenji/perl5/lib/perl5 /usr/local/lib/perl5/5.16/BSDPAN /usr/local/lib/perl5/site_perl/5.16/mach /usr/local/lib/perl5/site_perl/5.16 /usr/local/lib/perl5/5.16/mach /usr/local/lib/perl5/5.16 .) at /usr/local/lib/perl5/site_perl/5.16/App/Ack/Filter/Extension.pm line 7. BEGIN failed--compilation aborted at /usr/local/lib/perl5/site_perl/5.16/App/Ack/Filter/Extension.pm line 7. Compilation failed in require at /usr/local/bin/ack line 20. BEGIN failed--compilation aborted at /usr/local/bin/ack line 20. kenji@minimax[1109]% >How-To-Repeat: do /usr/local/bin/ack >Fix: Apply the patch at /usr/ports/textproc/ack (Not all necessary files were listed in the pkg-plist. This patch fixes the list.) Patch attached with submission follows: --- pkg-plist.OLD 2013-09-27 01:47:18.000000000 +0900 +++ pkg-plist 2013-09-28 16:08:06.000000000 +0900 @@ -4,11 +4,14 @@ %%SITE_PERL%%/App/Ack/ConfigFinder.pm %%SITE_PERL%%/App/Ack/ConfigLoader.pm %%SITE_PERL%%/App/Ack/Filter.pm +%%SITE_PERL%%/App/Ack/Filter/Collection.pm %%SITE_PERL%%/App/Ack/Filter/Default.pm %%SITE_PERL%%/App/Ack/Filter/Extension.pm +%%SITE_PERL%%/App/Ack/Filter/ExtensionGroup.pm %%SITE_PERL%%/App/Ack/Filter/FirstLineMatch.pm %%SITE_PERL%%/App/Ack/Filter/Inverse.pm %%SITE_PERL%%/App/Ack/Filter/Is.pm +%%SITE_PERL%%/App/Ack/Filter/IsGroup.pm %%SITE_PERL%%/App/Ack/Filter/Match.pm %%SITE_PERL%%/App/Ack/Resource.pm %%SITE_PERL%%/App/Ack/Resource/Basic.pm >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 07:20:08 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 84D48A2B; Sat, 28 Sep 2013 07:20:08 +0000 (UTC) (envelope-from edwin@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 5ABB52C71; Sat, 28 Sep 2013 07:20:08 +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 r8S7K8JO032332; Sat, 28 Sep 2013 07:20:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8S7K8vE032331; Sat, 28 Sep 2013 07:20:08 GMT (envelope-from edwin) Date: Sat, 28 Sep 2013 07:20:08 GMT Message-Id: <201309280720.r8S7K8vE032331@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182454: textproc/ack does not run (not all necessary files installed) 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, 28 Sep 2013 07:20:08 -0000 Synopsis: textproc/ack does not run (not all necessary files installed) Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Sat Sep 28 07:20:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182454 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 09:39:21 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 58745AD9; Sat, 28 Sep 2013 09:39:21 +0000 (UTC) (envelope-from brooks@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 2CD002D66; Sat, 28 Sep 2013 09:39:21 +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 r8S9dLNw069807; Sat, 28 Sep 2013 09:39:21 GMT (envelope-from brooks@freefall.freebsd.org) Received: (from brooks@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8S9dKH4069806; Sat, 28 Sep 2013 09:39:20 GMT (envelope-from brooks) Date: Sat, 28 Sep 2013 09:39:20 GMT Message-Id: <201309280939.r8S9dKH4069806@freefall.freebsd.org> To: brooks@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org From: brooks@FreeBSD.org Subject: Re: ports/182438: exprun: switch mtree to nmtree 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, 28 Sep 2013 09:39:21 -0000 Synopsis: exprun: switch mtree to nmtree Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: brooks Responsible-Changed-When: Sat Sep 28 09:38:55 UTC 2013 Responsible-Changed-Why: Assign to portmgr http://www.freebsd.org/cgi/query-pr.cgi?pr=182438 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 10:10:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 3C9A2714 for ; Sat, 28 Sep 2013 10:10:01 +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 02BA821A7 for ; Sat, 28 Sep 2013 10:10:01 +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 r8SAA0au075583 for ; Sat, 28 Sep 2013 10:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8SAA03P075582; Sat, 28 Sep 2013 10:10:00 GMT (envelope-from gnats) Resent-Date: Sat, 28 Sep 2013 10:10:00 GMT Resent-Message-Id: <201309281010.r8SAA03P075582@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, Simeon Simeonov 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 4BF1652B for ; Sat, 28 Sep 2013 10:01:46 +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 3A0462104 for ; Sat, 28 Sep 2013 10:01:46 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8SA1jN7071238 for ; Sat, 28 Sep 2013 10:01:45 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8SA1jIL071236; Sat, 28 Sep 2013 10:01:45 GMT (envelope-from nobody) Message-Id: <201309281001.r8SA1jIL071236@oldred.freebsd.org> Date: Sat, 28 Sep 2013 10:01:45 GMT From: Simeon Simeonov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182456: Unreal-3.2.9_2 -> Unreal-3.2.10.1 upgrade fails 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, 28 Sep 2013 10:10:01 -0000 >Number: 182456 >Category: ports >Synopsis: Unreal-3.2.9_2 -> Unreal-3.2.10.1 upgrade fails >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Sep 28 10:10:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Simeon Simeonov >Release: 9.2-PRERELEASE >Organization: None >Environment: FreeBSD SagaBOX 9.2-PRERELEASE FreeBSD 9.2-PRERELEASE #0 r255608: Mon Sep 16 21:12:37 CEST 2013 root@SagaBOX:/usr/obj/usr/src/sys/SagaBOX amd64 >Description: => SHA256 Checksum OK for Unreal3.2.10.1.tar.gz. ===> Patching for Unreal-3.2.10.1 ===> Applying FreeBSD patches for Unreal-3.2.10.1 File to patch: The build stops and waits for a prompt. >How-To-Repeat: cd /usr/ports/irc/unreal make >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 12:01:49 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 EA4C4EAD; Sat, 28 Sep 2013 12:01:49 +0000 (UTC) (envelope-from antoine@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 BF5D8285B; Sat, 28 Sep 2013 12:01:49 +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 r8SC1nrl099434; Sat, 28 Sep 2013 12:01:49 GMT (envelope-from antoine@freefall.freebsd.org) Received: (from antoine@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8SC1nYE099433; Sat, 28 Sep 2013 12:01:49 GMT (envelope-from antoine) Date: Sat, 28 Sep 2013 12:01:49 GMT Message-Id: <201309281201.r8SC1nYE099433@freefall.freebsd.org> To: antoine@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, antoine@FreeBSD.org From: antoine@FreeBSD.org Subject: Re: ports/182390: [MAINTAINER] japanese/eb: add staging support 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, 28 Sep 2013 12:01:50 -0000 Synopsis: [MAINTAINER] japanese/eb: add staging support Responsible-Changed-From-To: freebsd-ports-bugs->antoine Responsible-Changed-By: antoine Responsible-Changed-When: Sat Sep 28 12:00:09 UTC 2013 Responsible-Changed-Why: Take, I am not sure about the --with-pkgdocdir change http://www.freebsd.org/cgi/query-pr.cgi?pr=182390 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 12:03:10 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 05614EEF; Sat, 28 Sep 2013 12:03:10 +0000 (UTC) (envelope-from antoine@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 CD7E72864; Sat, 28 Sep 2013 12:03:09 +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 r8SC39BT099521; Sat, 28 Sep 2013 12:03:09 GMT (envelope-from antoine@freefall.freebsd.org) Received: (from antoine@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8SC39WI099520; Sat, 28 Sep 2013 12:03:09 GMT (envelope-from antoine) Date: Sat, 28 Sep 2013 12:03:09 GMT Message-Id: <201309281203.r8SC39WI099520@freefall.freebsd.org> To: antoine@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, antoine@FreeBSD.org From: antoine@FreeBSD.org Subject: Re: ports/182391: [MAINTAINER] japanese/eblook: add staging support. 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, 28 Sep 2013 12:03:10 -0000 Synopsis: [MAINTAINER] japanese/eblook: add staging support. Responsible-Changed-From-To: freebsd-ports-bugs->antoine Responsible-Changed-By: antoine Responsible-Changed-When: Sat Sep 28 12:02:41 UTC 2013 Responsible-Changed-Why: Take http://www.freebsd.org/cgi/query-pr.cgi?pr=182391 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 12:04:58 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 E082FF35; Sat, 28 Sep 2013 12:04:58 +0000 (UTC) (envelope-from antoine@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 B73A52872; Sat, 28 Sep 2013 12:04:58 +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 r8SC4wTj099613; Sat, 28 Sep 2013 12:04:58 GMT (envelope-from antoine@freefall.freebsd.org) Received: (from antoine@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8SC4wFF099612; Sat, 28 Sep 2013 12:04:58 GMT (envelope-from antoine) Date: Sat, 28 Sep 2013 12:04:58 GMT Message-Id: <201309281204.r8SC4wFF099612@freefall.freebsd.org> To: antoine@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, antoine@FreeBSD.org From: antoine@FreeBSD.org Subject: Re: ports/182396: [MAINTAINER] japanese/mecab: add staging support 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, 28 Sep 2013 12:04:58 -0000 Synopsis: [MAINTAINER] japanese/mecab: add staging support Responsible-Changed-From-To: freebsd-ports-bugs->antoine Responsible-Changed-By: antoine Responsible-Changed-When: Sat Sep 28 12:04:29 UTC 2013 Responsible-Changed-Why: Take http://www.freebsd.org/cgi/query-pr.cgi?pr=182396 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 12:07:04 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 3B5939D; Sat, 28 Sep 2013 12:07:04 +0000 (UTC) (envelope-from antoine@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 1143A2881; Sat, 28 Sep 2013 12:07:04 +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 r8SC73lQ000320; Sat, 28 Sep 2013 12:07:03 GMT (envelope-from antoine@freefall.freebsd.org) Received: (from antoine@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8SC73PF000319; Sat, 28 Sep 2013 12:07:03 GMT (envelope-from antoine) Date: Sat, 28 Sep 2013 12:07:03 GMT Message-Id: <201309281207.r8SC73PF000319@freefall.freebsd.org> To: antoine@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, antoine@FreeBSD.org From: antoine@FreeBSD.org Subject: Re: ports/182398: [MAINTAINER] japanese/mecab-ipadic: add staging support 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, 28 Sep 2013 12:07:04 -0000 Synopsis: [MAINTAINER] japanese/mecab-ipadic: add staging support Responsible-Changed-From-To: freebsd-ports-bugs->antoine Responsible-Changed-By: antoine Responsible-Changed-When: Sat Sep 28 12:06:32 UTC 2013 Responsible-Changed-Why: Take http://www.freebsd.org/cgi/query-pr.cgi?pr=182398 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 12:47:41 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id BE3B3797; Sat, 28 Sep 2013 12:47:41 +0000 (UTC) (envelope-from bdrewery@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 918242A5A; Sat, 28 Sep 2013 12:47:41 +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 r8SClfCc012144; Sat, 28 Sep 2013 12:47:41 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8SCleAO012143; Sat, 28 Sep 2013 07:47:40 -0500 (CDT) (envelope-from bdrewery) Date: Sat, 28 Sep 2013 07:47:40 -0500 (CDT) Message-Id: <201309281247.r8SCleAO012143@freefall.freebsd.org> To: ports@robakdesign.com, bdrewery@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, bdrewery@FreeBSD.org From: bdrewery@FreeBSD.org Subject: Re: ports/182453: Port databases/riak does not create the directory in /usr/local 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, 28 Sep 2013 12:47:41 -0000 Synopsis: Port databases/riak does not create the directory in /usr/local Responsible-Changed-From-To: freebsd-ports-bugs->bdrewery Responsible-Changed-By: bdrewery Responsible-Changed-When: Sat Sep 28 07:47:40 CDT 2013 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=182453 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 13:03:08 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 3F960AA3; Sat, 28 Sep 2013 13:03:08 +0000 (UTC) (envelope-from amdmi3@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 14ADA2B39; Sat, 28 Sep 2013 13:03:08 +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 r8SD37Wv015772; Sat, 28 Sep 2013 13:03:07 GMT (envelope-from amdmi3@freefall.freebsd.org) Received: (from amdmi3@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8SD37Ia015771; Sat, 28 Sep 2013 13:03:07 GMT (envelope-from amdmi3) Date: Sat, 28 Sep 2013 13:03:07 GMT Message-Id: <201309281303.r8SD37Ia015771@freefall.freebsd.org> To: amdmi3@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org From: amdmi3@FreeBSD.org Subject: Re: ports/182451: [mtree] add share/applications to mtree 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, 28 Sep 2013 13:03:08 -0000 Synopsis: [mtree] add share/applications to mtree Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: amdmi3 Responsible-Changed-When: Sat Sep 28 13:02:51 UTC 2013 Responsible-Changed-Why: Pending approval. http://www.freebsd.org/cgi/query-pr.cgi?pr=182451 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 13:20:02 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 13151CE1 for ; Sat, 28 Sep 2013 13:20:02 +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 CD3D02BD7 for ; Sat, 28 Sep 2013 13:20:01 +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 r8SDK1CQ018940 for ; Sat, 28 Sep 2013 13:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8SDK1gp018939; Sat, 28 Sep 2013 13:20:01 GMT (envelope-from gnats) Resent-Date: Sat, 28 Sep 2013 13:20:01 GMT Resent-Message-Id: <201309281320.r8SDK1gp018939@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, Dmitry Marakasov 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 DD337C9B; Sat, 28 Sep 2013 13:16:01 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from smtp.timeweb.ru (smtp.timeweb.ru [92.53.117.39]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9BD352BBE; Sat, 28 Sep 2013 13:16:01 +0000 (UTC) Received: from [213.148.20.85] (helo=hive.panopticon) by smtp.timeweb.ru with esmtpsa (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.76) (envelope-from ) id 1VPuNK-00068W-Ia; Sat, 28 Sep 2013 17:15:58 +0400 Received: from hades.panopticon (hades.panopticon [192.168.0.32]) by hive.panopticon (Postfix) with ESMTP id 2F559665; Sat, 28 Sep 2013 17:15:58 +0400 (MSK) Received: by hades.panopticon (Postfix, from userid 1000) id 177F75F2; Sat, 28 Sep 2013 17:15:58 +0400 (MSK) Message-Id: <20130928131558.177F75F2@hades.panopticon> Date: Sat, 28 Sep 2013 17:15:58 +0400 (MSK) From: Dmitry Marakasov To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/182458: [PATCH] lang/ghc: fetch problem Cc: haskell@FreeBSD.org 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, 28 Sep 2013 13:20:02 -0000 >Number: 182458 >Category: ports >Synopsis: [PATCH] lang/ghc: fetch problem >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Sep 28 13:20:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Dmitry Marakasov >Release: FreeBSD 9.1-RELEASE-p4 amd64 >Organization: >Environment: System: FreeBSD hades.panopticon 9.1-RELEASE-p4 FreeBSD 9.1-RELEASE-p4 #0 r251956: Tue Jun 18 21:41:37 MSK >Description: ghc does not fetch in e.g. tinderbox, because it tries to fetch http://hackage.haskell.org/packages/archive/hscolour/1.20.3/hscolour-1.20.3.tar.gz but it redirects to http://hackage.haskell.org/package/hscolour-1.20.3/hscolour-1.20.3.tar.gz and as we don't follow redirects, this file won't fetch. Port maintainer (haskell@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_8 (mode: change, diff: SVN) >How-To-Repeat: >Fix: Seems to be trivial URL change. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 13:20:10 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 32A25D0F; Sat, 28 Sep 2013 13:20:10 +0000 (UTC) (envelope-from edwin@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 07E522BD9; Sat, 28 Sep 2013 13:20:10 +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 r8SDK92E020519; Sat, 28 Sep 2013 13:20:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8SDK9b8020518; Sat, 28 Sep 2013 13:20:09 GMT (envelope-from edwin) Date: Sat, 28 Sep 2013 13:20:09 GMT Message-Id: <201309281320.r8SDK9b8020518@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, haskell@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182458: [PATCH] lang/ghc: fetch problem 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, 28 Sep 2013 13:20:10 -0000 Synopsis: [PATCH] lang/ghc: fetch problem Responsible-Changed-From-To: freebsd-ports-bugs->haskell Responsible-Changed-By: edwin Responsible-Changed-When: Sat Sep 28 13:20:09 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182458 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 13: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 A1411EF0 for ; Sat, 28 Sep 2013 13: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 809D52C46 for ; Sat, 28 Sep 2013 13: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 r8SDU0dF020770 for ; Sat, 28 Sep 2013 13: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 r8SDU0ax020769; Sat, 28 Sep 2013 13:30:00 GMT (envelope-from gnats) Resent-Date: Sat, 28 Sep 2013 13:30:00 GMT Resent-Message-Id: <201309281330.r8SDU0ax020769@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, Spil 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 B29E2CE2 for ; Sat, 28 Sep 2013 13:20:03 +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 A0AFE2BD8 for ; Sat, 28 Sep 2013 13:20:03 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8SDK3O9049760 for ; Sat, 28 Sep 2013 13:20:03 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8SDK2gK049590; Sat, 28 Sep 2013 13:20:02 GMT (envelope-from nobody) Message-Id: <201309281320.r8SDK2gK049590@oldred.freebsd.org> Date: Sat, 28 Sep 2013 13:20:02 GMT From: Spil To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182459: www/pecl-zendopcache is now part of the base php package 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, 28 Sep 2013 13:30:00 -0000 >Number: 182459 >Category: ports >Synopsis: www/pecl-zendopcache is now part of the base php package >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Sep 28 13:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Spil >Release: FreeBSD 9.2-RC3 amd64 >Organization: n.a. >Environment: FreeBSD build.example.org 9.2-RC3 FreeBSD 9.2-RC3 #0 r254795: Sat Aug 24 20:25:04 UTC 2013 root@bake.isc.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: PHP has included the PECL extension opcache from ZEND into the base php package as of php 5.5, see https://wiki.php.net/rfc/optimizerplus The patches mark www/pecl-zendopcache as incompatible with 5.5 and create an additional port www/php55-opcache like for other bundled extensions. extension must be enabled as a zend-extension not a regular extension This may require an entry in UPDATING as well for people upgrading 5.4 to 5.5 >How-To-Repeat: Install lang/php55 Install www/pecl-zendopcache >Fix: --- www/pecl-zendopcache/Makefile.orig 2013-09-28 15:10:09.729882929 +0200 +++ www/pecl-zendopcache/Makefile 2013-09-28 15:11:29.136280823 +0200 @@ -1,5 +1,5 @@ # Created by: Alex Dupre -# $FreeBSD$ +# $FreeBSD: www/pecl-zendopcache/Makefile 327776 2013-09-20 23:36:50Z bapt $ PORTNAME= zendopcache PORTVERSION= 7.0.2 @@ -20,6 +20,7 @@ USE_PHP_BUILD= yes USE_ZENDEXT= yes PHP_MODNAME= opcache +IGNORE_WITH_PHP= 55 PORTDOCS= * --- /dev/null 2013-09-28 15:17:08.000000000 +0200 +++ www/php55-opcache/Makefile 2013-09-28 15:02:17.281283227 +0200 @@ -0,0 +1,13 @@ +# Created by: Alex Dupre +# $FreeBSD: textproc/php55-ctype/Makefile 327773 2013-09-20 23:17:30Z bapt $ + +CATEGORIES= www + +MASTERDIR= ${.CURDIR}/../../lang/php55 + +PKGNAMESUFFIX= -opcache + +USE_ZENDEXT= yes + +NO_STAGE= yes +.include "${MASTERDIR}/Makefile" >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 13:30:07 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 B1181F21; Sat, 28 Sep 2013 13:30:07 +0000 (UTC) (envelope-from edwin@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 8682C2C49; Sat, 28 Sep 2013 13:30:07 +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 r8SDU7Y5020904; Sat, 28 Sep 2013 13:30:07 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8SDU7YX020903; Sat, 28 Sep 2013 13:30:07 GMT (envelope-from edwin) Date: Sat, 28 Sep 2013 13:30:07 GMT Message-Id: <201309281330.r8SDU7YX020903@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ale@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182459: www/pecl-zendopcache is now part of the base php package 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, 28 Sep 2013 13:30:07 -0000 Synopsis: www/pecl-zendopcache is now part of the base php package Responsible-Changed-From-To: freebsd-ports-bugs->ale Responsible-Changed-By: edwin Responsible-Changed-When: Sat Sep 28 13:30:07 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182459 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 15:10: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 AAE3180A for ; Sat, 28 Sep 2013 15:10: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 88CA920D1 for ; Sat, 28 Sep 2013 15:10: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 r8SFA0Wg006091 for ; Sat, 28 Sep 2013 15:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8SFA0GT006090; Sat, 28 Sep 2013 15:10:00 GMT (envelope-from gnats) Resent-Date: Sat, 28 Sep 2013 15:10:00 GMT Resent-Message-Id: <201309281510.r8SFA0GT006090@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, Che-Huai Lin Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id F36CB7DC for ; Sat, 28 Sep 2013 15:06:25 +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 E0E3920BC for ; Sat, 28 Sep 2013 15:06:25 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8SF6PtC044486 for ; Sat, 28 Sep 2013 15:06:25 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8SF6P8D044440; Sat, 28 Sep 2013 15:06:25 GMT (envelope-from nobody) Message-Id: <201309281506.r8SF6P8D044440@oldred.freebsd.org> Date: Sat, 28 Sep 2013 15:06:25 GMT From: Che-Huai Lin To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182460: New port: multimedia/qwinff Qt4 media converter GUI 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, 28 Sep 2013 15:10:00 -0000 >Number: 182460 >Category: ports >Synopsis: New port: multimedia/qwinff Qt4 media converter GUI >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Sep 28 15:10:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Che-Huai Lin >Release: FreeBSD 9.1-RELEASE amd64 >Organization: >Environment: FreeBSD 9.1-RELEASE FreeBSD 9.1-RELEASE #0 r243825: Tue Dec 4 09:23:10 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Graphical media converter based on FFmpeg and Qt4 >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # qwinff/ # qwinff/files # qwinff/files/patch-Makefile # qwinff/Makefile # qwinff/pkg-descr # qwinff/pkg-plist # qwinff/distinfo # echo c - qwinff/ mkdir -p qwinff/ > /dev/null 2>&1 echo c - qwinff/files mkdir -p qwinff/files > /dev/null 2>&1 echo x - qwinff/files/patch-Makefile sed 's/^X//' >qwinff/files/patch-Makefile << '365342c9effe5a3ac7b078c4c6665d22' X--- Makefile.orig 2013-09-10 14:08:55.335682000 +0800 X+++ Makefile 2013-09-27 23:40:01.000000000 +0800 X@@ -3,7 +3,7 @@ X # You can change these parameters to customize the build. X X # Installation Prefix X-PREFIX=/usr X+PREFIX?=/usr X # Version ID String (displayed after the version string in the about dialog) X VIDSTR= X X@@ -39,6 +39,8 @@ X QMAKE_DEFS += CONFIG+=libnotify X endif X X+all: release X+ X release: X +cd $(SRC_DIR) && $(QMAKE) $(QMAKE_DEFS) qwinff.pro && $(DEFS) make X -cd src && $(LRELEASE) qwinff.pro 365342c9effe5a3ac7b078c4c6665d22 echo x - qwinff/Makefile sed 's/^X//' >qwinff/Makefile << 'c08ba676b48ee0a32d696979ab1c3ae7' X# Created by: Che-Huai Lin X# $FreeBSD$ X XPORTNAME= qwinff XPORTVERSION= 0.1.9 XCATEGORIES= multimedia audio kde XMASTER_SITES= SF/${PORTNAME}/release/v${PORTVERSION} XDISTNAME= ${PORTNAME}_${PORTVERSION} X XMAINTAINER= lzh9102@gmail.com XCOMMENT= Graphical media converter based on FFmpeg and Qt4 X XBUILD_DEPENDS= pkg-config:${PORTSDIR}/devel/pkgconf XRUN_DEPENDS= ffmpeg:${PORTSDIR}/multimedia/ffmpeg \ X sox:${PORTSDIR}/audio/sox X XMAKE_ARGS+= QMAKE=qmake-qt4 LRELEASE=lrelease-qt4 XUSE_QT4= gui network dbus qmake_build moc_build rcc_build uic_build \ X linguist_build XUSE_BZIP2= yes XUSE_GMAKE= yes XINSTALLS_ICONS= yes XWRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} X XMAN1= qwinff.1 XMANCOMPRESSED= yes X XMAKE_JOBS_UNSAFE= yes X X# options XOPTIONS_DEFINE= LIBNOTIFY XLIBNOTIFY_DESC= Send desktop notifications via libnotify X XOPTIONS_DEFAULT= LIBNOTIFY X X.include X X.if ${PORT_OPTIONS:MLIBNOTIFY} XLIB_DEPENDS+= libnotify.so:${PORTSDIR}/devel/libnotify XMAKE_ARGS+= USE_LIBNOTIFY=1 X.endif X X.include c08ba676b48ee0a32d696979ab1c3ae7 echo x - qwinff/pkg-descr sed 's/^X//' >qwinff/pkg-descr << '876adfa7a406951ee49fcb0740e2ba13' XQWinFF is a GUI for FFmpeg(http://ffmpeg.org), a powerful media converter. XFFmpeg can read audio and video files in various formats and convert them into Xother formats. QWinFF features an intuitive graphical interface and a rich set Xof presets to help you convert media files within a few clicks. Advanced users Xcan also adjust conversion parameters in detail. X XWWW: http://qwinff.blogspot.com 876adfa7a406951ee49fcb0740e2ba13 echo x - qwinff/pkg-plist sed 's/^X//' >qwinff/pkg-plist << 'e3f9d058d7047b6b5955aeb722dc7da2' Xbin/qwinff Xshare/applications/qwinff.desktop Xshare/pixmaps/qwinff.png X%%DATADIR%%/constants.xml X%%DATADIR%%/presets.xml X%%DATADIR%%/translations/qwinff_ar.qm X%%DATADIR%%/translations/qwinff_cs_CZ.qm X%%DATADIR%%/translations/qwinff_de.qm X%%DATADIR%%/translations/qwinff_es_ES.qm X%%DATADIR%%/translations/qwinff_es_GT.qm X%%DATADIR%%/translations/qwinff_it_IT.qm X%%DATADIR%%/translations/qwinff_ja_JP.qm X%%DATADIR%%/translations/qwinff_ro_RO.qm X%%DATADIR%%/translations/qwinff_ru.qm X%%DATADIR%%/translations/qwinff_tr_TR.qm X%%DATADIR%%/translations/qwinff_zh_CN.qm X%%DATADIR%%/translations/qwinff_zh_TW.qm X@dirrm %%DATADIR%%/translations X@dirrmtry %%DATADIR%% X@dirrmtry share/pixmaps X@dirrmtry share/applications e3f9d058d7047b6b5955aeb722dc7da2 echo x - qwinff/distinfo sed 's/^X//' >qwinff/distinfo << '4af759cf692112e66ebc43e314c8eec0' XSHA256 (qwinff_0.1.9.tar.bz2) = 7f4fc35a13818bae796c8e25aeb7396c62f535ba79bde31c1641f862c455a6ed XSIZE (qwinff_0.1.9.tar.bz2) = 463148 4af759cf692112e66ebc43e314c8eec0 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 16: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 B14A89FE for ; Sat, 28 Sep 2013 16: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 9134A24C1 for ; Sat, 28 Sep 2013 16: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 r8SGU00m029340 for ; Sat, 28 Sep 2013 16: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 r8SGU0DH029339; Sat, 28 Sep 2013 16:30:00 GMT (envelope-from gnats) Resent-Date: Sat, 28 Sep 2013 16:30:00 GMT Resent-Message-Id: <201309281630.r8SGU0DH029339@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, Michael Moll 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 3201C9C0 for ; Sat, 28 Sep 2013 16:28:30 +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 1C80724AE for ; Sat, 28 Sep 2013 16:28:30 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8SGSTUo070583 for ; Sat, 28 Sep 2013 16:28:29 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8SGSTkw070580; Sat, 28 Sep 2013 16:28:29 GMT (envelope-from nobody) Message-Id: <201309281628.r8SGSTkw070580@oldred.freebsd.org> Date: Sat, 28 Sep 2013 16:28:29 GMT From: Michael Moll To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182462: www/w3m sometimes crashes on sparc64 (maybe boehm-gc problem) 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, 28 Sep 2013 16:30:00 -0000 >Number: 182462 >Category: ports >Synopsis: www/w3m sometimes crashes on sparc64 (maybe boehm-gc problem) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Sep 28 16:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Michael Moll >Release: 9.2-RELEASE >Organization: >Environment: FreeBSD darkthrone.kvedulv.de 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255896: Fri Sep 27 00:20:51 CEST 2013 mmoll@darkthrone.kvedulv.de:/usr/obj/usr/src/sys/DARKTHRONE sparc64 >Description: w3m sometimes crashes with signal 11 on FreeBSD/sparc64. I don't know if it's sparc64 specific, or just some endian issue - or if the problem is from w3m or boehm-gc. mmoll@darkthrone:/tmp$ gdb /usr/local/bin/w3m GNU gdb 6.1.1 [FreeBSD] Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "sparc64-marcel-freebsd"...(no debugging symbols found)... (gdb) run http://m.spiegel.de Starting program: /usr/local/bin/w3m http://m.spiegel.de (no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)... Program received signal SIGSEGV, Segmentation fault. 0x00000000404fa834 in GC_find_limit_with_bound () from /usr/local/lib/libgc.so.1 (gdb) bt #0 0x00000000404fa834 in GC_find_limit_with_bound () from /usr/local/lib/libgc.so.1 #1 0x00000000404fa92c in GC_register_data_segments () from /usr/local/lib/libgc.so.1 #2 0x00000000404f9708 in GC_init_inner () from /usr/local/lib/libgc.so.1 #3 0x00000000001110cc in ?? () Previous frame identical to this frame (corrupt stack?) >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 16:30:09 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 4EA85A7E; Sat, 28 Sep 2013 16:30:09 +0000 (UTC) (envelope-from edwin@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 24CFD24C7; Sat, 28 Sep 2013 16:30:09 +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 r8SGU8a4029499; Sat, 28 Sep 2013 16:30:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8SGU8TT029496; Sat, 28 Sep 2013 16:30:08 GMT (envelope-from edwin) Date: Sat, 28 Sep 2013 16:30:08 GMT Message-Id: <201309281630.r8SGU8TT029496@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, nobutaka@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182462: www/w3m sometimes crashes on sparc64 (maybe boehm-gc problem) 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, 28 Sep 2013 16:30:09 -0000 Synopsis: www/w3m sometimes crashes on sparc64 (maybe boehm-gc problem) Responsible-Changed-From-To: freebsd-ports-bugs->nobutaka Responsible-Changed-By: edwin Responsible-Changed-When: Sat Sep 28 16:30:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182462 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 16:50:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id BF826618 for ; Sat, 28 Sep 2013 16:50: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 9FFF72618 for ; Sat, 28 Sep 2013 16:50: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 r8SGo0Zi034699 for ; Sat, 28 Sep 2013 16:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8SGo02f034697; Sat, 28 Sep 2013 16:50:00 GMT (envelope-from gnats) Resent-Date: Sat, 28 Sep 2013 16:50:00 GMT Resent-Message-Id: <201309281650.r8SGo02f034697@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 Levine Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 8A7411D1 for ; Sat, 28 Sep 2013 16:45:28 +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 7880B25EE for ; Sat, 28 Sep 2013 16:45:28 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8SGjSGl012523 for ; Sat, 28 Sep 2013 16:45:28 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8SGjSls012522; Sat, 28 Sep 2013 16:45:28 GMT (envelope-from nobody) Message-Id: <201309281645.r8SGjSls012522@oldred.freebsd.org> Date: Sat, 28 Sep 2013 16:45:28 GMT From: John Levine To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182464: cvm doesn't build mysql module 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, 28 Sep 2013 16:50:00 -0000 >Number: 182464 >Category: ports >Synopsis: cvm doesn't build mysql module >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 Sep 28 16:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: John Levine >Release: 9.1-RELEASE >Organization: >Environment: FreeBSD joyce.lan 9.1-RELEASE-p7 FreeBSD 9.1-RELEASE-p7 #0: Mon Sep 9 21:34:37 UTC 2013 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: CVM has some optional modules that the Makefile doesn't build. I added an option for the cvm-mysql modules. I expect a similar option would work for cvm-pgsql but I don't run postgres >How-To-Repeat: install cvm, observe no cvm-mysql modules installed in /usr/local/bin >Fix: See patch Patch attached with submission follows: diff -C2 ./Makefile NEW/Makefile *** ./Makefile 2013-09-20 18:55:24.000000000 -0400 --- NEW/Makefile 2013-09-28 12:40:38.000000000 -0400 *************** *** 23,28 **** DOCS= NEWS README TODO *.html ! OPTIONS_DEFINE= VCHKPW VCHKPW_DESC= Compile cvm-vchkpw NO_STAGE= yes --- 23,29 ---- DOCS= NEWS README TODO *.html ! OPTIONS_DEFINE= VCHKPW MYSQL VCHKPW_DESC= Compile cvm-vchkpw + MYSQL_DESC= Compile cvm-mysql NO_STAGE= yes *************** *** 39,42 **** --- 40,53 ---- .endif + .if ${PORT_OPTIONS:MMYSQL} + BUILD_DEPENDS+= ${LOCALBASE}/lib/mysql/libmysqlclient.a:${PORTSDIR}/databases/mysql55-client + ALL_TARGET+= mysql + CFLAGS+= -I${LOCALBASE}/include + LDFLAGS+= -L${LOCALBASE}/lib/mysql + PLIST_SUB+= MYSQL="" + .else + PLIST_SUB+= MYSQL="@comment " + .endif + post-patch: @${REINPLACE_CMD} -e 's|libtool|${LIBTOOL}|g' ${WRKSRC}/Makefile diff -C2 ./pkg-plist NEW/pkg-plist *** ./pkg-plist 2012-07-14 10:29:18.000000000 -0400 --- NEW/pkg-plist 2013-09-28 12:40:38.000000000 -0400 *************** *** 2,5 **** --- 2,8 ---- bin/cvm-chain bin/cvm-checkpassword + %%MYSQL%%bin/cvm-mysql + %%MYSQL%%bin/cvm-mysql-local + %%MYSQL%%bin/cvm-mysql-udp bin/cvm-pwfile bin/cvm-qmail >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 17:00:02 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 EE900829 for ; Sat, 28 Sep 2013 17:00:02 +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 C1E142683 for ; Sat, 28 Sep 2013 17:00:02 +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 r8SH02Fj037420 for ; Sat, 28 Sep 2013 17:00:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8SH02F2037419; Sat, 28 Sep 2013 17:00:02 GMT (envelope-from gnats) Date: Sat, 28 Sep 2013 17:00:02 GMT Message-Id: <201309281700.r8SH02F2037419@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Ryan Frederick Subject: Re: ports/182456: Unreal-3.2.9_2 -> Unreal-3.2.10.1 upgrade fails X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Ryan Frederick List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 Sep 2013 17:00:03 -0000 The following reply was made to PR ports/182456; it has been noted by GNATS. From: Ryan Frederick To: bug-followup@FreeBSD.org, blackmore@pichove.org Cc: Subject: Re: ports/182456: Unreal-3.2.9_2 -> Unreal-3.2.10.1 upgrade fails Date: Sat, 28 Sep 2013 11:58:53 -0500 I'm seeing the same thing as well. It looks like the build hangs on attempting to apply patch-makenet due to networks/makenet being removed in Unreal >= 3.2.10 The fix appears to be to remove patch-makenet from the port. From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 17:50:02 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 EE9438D9 for ; Sat, 28 Sep 2013 17:50:02 +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 B6DD52924 for ; Sat, 28 Sep 2013 17:50:02 +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 r8SHo21X052180 for ; Sat, 28 Sep 2013 17:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8SHo2jF052179; Sat, 28 Sep 2013 17:50:02 GMT (envelope-from gnats) Resent-Date: Sat, 28 Sep 2013 17:50:02 GMT Resent-Message-Id: <201309281750.r8SHo2jF052179@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, Thomas Zander Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 1465F8B3 for ; Sat, 28 Sep 2013 17:48:36 +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 029932916 for ; Sat, 28 Sep 2013 17:48:36 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r8SHmZZo082604 for ; Sat, 28 Sep 2013 17:48:35 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r8SHmZh8082587; Sat, 28 Sep 2013 17:48:35 GMT (envelope-from nobody) Message-Id: <201309281748.r8SHmZh8082587@oldred.freebsd.org> Date: Sat, 28 Sep 2013 17:48:35 GMT From: Thomas Zander To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182465: Fix build problem in audio/audacity 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, 28 Sep 2013 17:50:03 -0000 >Number: 182465 >Category: ports >Synopsis: Fix build problem in audio/audacity >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Sep 28 17:50:02 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Thomas Zander >Release: >Organization: >Environment: >Description: audio/audaticy fails to build when building without libsamplerate due to superfluous use of cmake. >How-To-Repeat: 1) turn SAMPLERATE option off 2) build the port >Fix: See attached patch. Patch attached with submission follows: Index: Makefile =================================================================== --- Makefile (revision 328548) +++ Makefile (working copy) @@ -124,7 +124,6 @@ LIB_DEPENDS+= libsamplerate.so:${PORTSDIR}/audio/libsamplerate CONFIGURE_ARGS+= --with-libsamplerate .else -USES+= cmake CONFIGURE_ARGS+= --without-libsamplerate .endif >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 17:50:17 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 6538B956; Sat, 28 Sep 2013 17:50:17 +0000 (UTC) (envelope-from edwin@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 3CEBE2929; Sat, 28 Sep 2013 17:50:17 +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 r8SHoHfA052277; Sat, 28 Sep 2013 17:50:17 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8SHoHHv052276; Sat, 28 Sep 2013 17:50:17 GMT (envelope-from edwin) Date: Sat, 28 Sep 2013 17:50:17 GMT Message-Id: <201309281750.r8SHoHHv052276@freefall.freebsd.org> To: thomas.e.zander@googlemail.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182465: Fix build problem in audio/audacity 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, 28 Sep 2013 17:50:17 -0000 Synopsis: Fix build problem in audio/audacity State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sat Sep 28 17:50:16 UTC 2013 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182465 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 18:00:01 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 34624B6F for ; Sat, 28 Sep 2013 18:00:01 +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 2245D29A6 for ; Sat, 28 Sep 2013 18:00:01 +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 r8SI00V4054958 for ; Sat, 28 Sep 2013 18:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8SI006R054957; Sat, 28 Sep 2013 18:00:00 GMT (envelope-from gnats) Date: Sat, 28 Sep 2013 18:00:00 GMT Message-Id: <201309281800.r8SI006R054957@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/182465: Fix build problem in audio/audacity X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 Sep 2013 18:00:01 -0000 The following reply was made to PR ports/182465; it has been noted by GNATS. From: Edwin Groothuis To: xxjack12xx@gmail.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/182465: Fix build problem in audio/audacity Date: Sat, 28 Sep 2013 17:50:16 UT Maintainer of audio/audacity, Please note that PR ports/182465 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/182465 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 20:20:03 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 0B90A35E for ; Sat, 28 Sep 2013 20:20:03 +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 DB5532085 for ; Sat, 28 Sep 2013 20:20:02 +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 r8SKK2Ev089168 for ; Sat, 28 Sep 2013 20:20:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8SKK257089167; Sat, 28 Sep 2013 20:20:02 GMT (envelope-from gnats) Resent-Date: Sat, 28 Sep 2013 20:20:02 GMT Resent-Message-Id: <201309282020.r8SKK257089167@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, Tobias Rehbein 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 914516E for ; Sat, 28 Sep 2013 20:13:16 +0000 (UTC) (envelope-from tobias.rehbein@web.de) Received: from mout.web.de (mout.web.de [212.227.17.11]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C79C9201D for ; Sat, 28 Sep 2013 20:13:14 +0000 (UTC) Received: from oshi.local ([46.246.42.228]) by smtp.web.de (mrweb003) with ESMTPSA (Nemesis) id 0Lu4qk-1VowMu0pjq-011VsY for ; Sat, 28 Sep 2013 22:13:06 +0200 Received: from oshi.local (localhost [127.0.0.1]) by oshi.local (8.14.7/8.14.7) with ESMTP id r8SKD5Zu069953 for ; Sat, 28 Sep 2013 22:13:05 +0200 (CEST) (envelope-from tobi@oshi.local) Received: (from tobi@localhost) by oshi.local (8.14.7/8.14.7/Submit) id r8SKD53I069952; Sat, 28 Sep 2013 22:13:05 +0200 (CEST) (envelope-from tobi) Message-Id: <201309282013.r8SKD53I069952@oshi.local> Date: Sat, 28 Sep 2013 22:13:05 +0200 (CEST) From: Tobias Rehbein To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/182467: [maintainer-update] update games/stonesoup to version 0.12.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Tobias Rehbein List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 Sep 2013 20:20:03 -0000 >Number: 182467 >Category: ports >Synopsis: [maintainer-update] update games/stonesoup to version 0.12.3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Sep 28 20:20:02 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Tobias Rehbein >Release: FreeBSD 9.2-RC4 amd64 >Organization: >Environment: System: FreeBSD oshi.local 9.2-RC4 FreeBSD 9.2-RC4 #0: Sat Sep 14 01:33:15 CEST 2013 tobi@oshi.local:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Update games/stonesoup from version 0.11.1 to version 0.12.3. The patch has been tested using ports-mgmt/porttools test command. While here, please close ports/179834 as it is obsoleted by this PR. >How-To-Repeat: >Fix: --- games__stonesoup-0.11.1-0_12.3.diff begins here --- diff -urN games/stonesoup.orig/Makefile games/stonesoup/Makefile --- games/stonesoup.orig/Makefile 2013-09-28 21:15:27.334763130 +0200 +++ games/stonesoup/Makefile 2013-09-28 22:07:46.029763474 +0200 @@ -2,7 +2,7 @@ # $FreeBSD: games/stonesoup/Makefile 327730 2013-09-20 17:36:33Z bapt $ PORTNAME= stonesoup -PORTVERSION= 0.11.1 +PORTVERSION= 0.12.3 CATEGORIES= games MASTER_SITES= SF/crawl-ref/Stone%20Soup/${PORTVERSION} DISTNAME= stone_soup-${PORTVERSION}-nodeps @@ -19,7 +19,6 @@ USE_LUA= 5.1 USE_PERL5= build - SAVEDIR= \~/.stonesoup WRKSRC= ${WRKDIR}/stone_soup-${PORTVERSION}/source/ @@ -38,19 +37,13 @@ INSTALL_UGRP=root:games \ NO_AUTO_OPT=YesPlease \ NO_OPTIMIZE=YesPlease \ - LUA_INCLUDE_DIR=${LOCALBASE}/include/lua51 \ - LUA_LIB=-llua-5.1 \ SQLITE_INCLUDE_DIR=${LOCALBASE}/include \ SQLITE_LIB=-lsqlite3 \ - LDFLAGS="-L${LOCALBASE}/lib -L${LOCALBASE}/lib/lua51" + LDFLAGS="-L${LOCALBASE}/lib" NO_STAGE= yes .include -.if ${CC:T:M*clang*} -MAKE_ARGS+= NO_INLINE_DEPGEN=1 -.endif - .if defined(VERBOSE) MAKE_ARGS+= V=yes .endif @@ -85,6 +78,7 @@ .endif post-patch: + @${REINPLACE_CMD} -e "s,%%LOCALBASE%%,${LOCALBASE},g" ${WRKSRC}/Makefile .if ${PORT_OPTIONS:MSOUND} @${REINPLACE_CMD} -e "s,%%LOCALBASE%%,${LOCALBASE}," ${WRKSRC}/AppHdr.h @${REINPLACE_CMD} -e "s,%%SOUND%%,," ${WRKSRC}/AppHdr.h @@ -92,6 +86,10 @@ @${REINPLACE_CMD} -e "s,%%SOUND%%,// ," ${WRKSRC}/AppHdr.h .endif +pre-install: + @${FIND} ${WRKSRC}/dat -type f -name '*.orig' | \ + ${XARGS} ${RM} + post-install: .if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} diff -urN games/stonesoup.orig/distinfo games/stonesoup/distinfo --- games/stonesoup.orig/distinfo 2013-09-28 21:15:27.334763130 +0200 +++ games/stonesoup/distinfo 2013-09-28 21:38:28.460764617 +0200 @@ -1,2 +1,2 @@ -SHA256 (stone_soup-0.11.1-nodeps.tar.xz) = 377d738cff21165763b252a57cd84049361d44db6d8d10f08f789cc9e7bb82b6 -SIZE (stone_soup-0.11.1-nodeps.tar.xz) = 7519768 +SHA256 (stone_soup-0.12.3-nodeps.tar.xz) = 11c43653da7f2862a7f67f6d596f024778cb5618b3d30f74a0bc07b5e8a58fc1 +SIZE (stone_soup-0.12.3-nodeps.tar.xz) = 8665464 diff -urN games/stonesoup.orig/files/patch-AppHdr.h games/stonesoup/files/patch-AppHdr.h --- games/stonesoup.orig/files/patch-AppHdr.h 1970-01-01 01:00:00.000000000 +0100 +++ games/stonesoup/files/patch-AppHdr.h 2013-09-28 21:30:41.256764751 +0200 @@ -0,0 +1,11 @@ +--- ./AppHdr.h.orig 2013-06-01 04:52:08.000000000 +0200 ++++ ./AppHdr.h 2013-06-18 19:24:52.991224396 +0200 +@@ -132,7 +132,7 @@ + // + // WARNING: Filenames passed to this command *are not validated in any way*. + // +- // #define SOUND_PLAY_COMMAND "/usr/bin/play -v .5 \"%s\" 2>/dev/null &" ++ %%SOUND%%#define SOUND_PLAY_COMMAND "%%LOCALBASE%%/bin/play -v .5 \"%s\" 2>/dev/null &" + + #include "libunix.h" + diff -urN games/stonesoup.orig/files/patch-Makefile games/stonesoup/files/patch-Makefile --- games/stonesoup.orig/files/patch-Makefile 2013-09-28 21:15:27.333763753 +0200 +++ games/stonesoup/files/patch-Makefile 2013-09-28 21:44:34.708765292 +0200 @@ -1,6 +1,6 @@ ---- ./Makefile.orig 2012-09-30 23:25:31.000000000 +0200 -+++ ./Makefile 2012-10-27 20:49:08.837330946 +0200 -@@ -66,7 +66,7 @@ +--- Makefile.orig 2013-09-22 23:03:20.000000000 +0200 ++++ Makefile 2013-09-28 21:44:01.366764246 +0200 +@@ -69,7 +69,7 @@ # ask for a package with convenience libraries instead -- we'll try to provide # them somewhere in the near future. @@ -9,25 +9,16 @@ # Disable GNU Make implicit rules and variables. Leaving them enabled will slow # down MinGW and Cygwin builds by a very VERY noticeable degree. Besides, we have -@@ -112,7 +112,7 @@ - - else - --CFOPTIMIZE := -O2 -+CFOPTIMIZE := - - endif # USE_ICC +@@ -101,7 +101,7 @@ + # -@@ -120,7 +120,7 @@ - CFOPTIMIZE += -flto=jobserver -fwhole-program - endif -CFOTHERS := -pipe $(EXTERNAL_FLAGS) +CFOTHERS := $(CFLAGS) CFWARN := -Wall -Wformat-security CFWARN_L := -Wundef -@@ -133,8 +133,6 @@ +@@ -118,8 +118,6 @@ # AR = ar RANLIB = ranlib @@ -36,7 +27,19 @@ RM = rm -f COPY = cp COPY_R = cp -r -@@ -530,30 +528,19 @@ +@@ -532,9 +530,9 @@ + ifneq (,$(shell $(GXX) --version|grep 'g++.*4\.2\.')) + # OS X uses a buggy ancient version of gcc without fixes from even + # subsequent point releases of 4.2. +- CFOPTIMIZE := -O0 ++ CFOPTIMIZE := + else +- CFOPTIMIZE := -O2 ++ CFOPTIMIZE := + endif + endif + +@@ -572,30 +570,19 @@ ifndef BUILD_LUA ifdef NO_PKGCONFIG BUILD_LUA = yes @@ -76,7 +79,7 @@ endif ifndef BUILD_SQLITE -@@ -707,7 +694,7 @@ +@@ -742,7 +729,7 @@ DEFINES += -DWIZARD endif ifdef NO_OPTIMIZE @@ -85,41 +88,25 @@ endif ifdef PCH -@@ -831,10 +818,12 @@ +@@ -866,7 +853,7 @@ INSTALL_FONTS += $(PROPORTIONAL_FONT) endif else -- SYS_PROPORTIONAL_FONT = $(shell find /usr/share/fonts -iname $(OUR_PROPORTIONAL_FONT)|head -n 1) -- ifeq (,$(SYS_PROPORTIONAL_FONT)) -- SYS_PROPORTIONAL_FONT = $(shell find /usr/local/share/fonts -iname $(OUR_PROPORTIONAL_FONT)|head -n 1) -- endif -+ SYS_PROPORTIONAL_FONT = $(shell name=$(OUR_PROPORTIONAL_FONT);\ -+ {\ -+ fc-list | sed 's/: .*//' | grep -Fi "/$$name";\ -+ for dir in /usr/share/fonts /usr/local/share/fonts /usr/*/lib/X11/fonts;\ -+ do [ -d $$dir ] && echo $$dir; done;\ -+ } 2>/dev/null | xargs -I% find % -type f -iname $$name -print | head -n1) - ifneq (,$(SYS_PROPORTIONAL_FONT)) - ifeq (,$(COPY_FONTS)) - DEFINES += -DPROPORTIONAL_FONT=\"$(SYS_PROPORTIONAL_FONT)\" -@@ -854,10 +843,12 @@ +- SYS_PROPORTIONAL_FONT = $(shell dir=/usr/share/fonts; [ -d $$dir ] && find $$dir -iname $(OUR_PROPORTIONAL_FONT)|head -n 1) ++ SYS_PROPORTIONAL_FONT = $(shell dir=%%LOCALBASE%%/lib/X11/fonts; [ -d $$dir ] && find $$dir -iname $(OUR_PROPORTIONAL_FONT)|head -n 1) + ifeq (,$(SYS_PROPORTIONAL_FONT)) + SYS_PROPORTIONAL_FONT = $(shell dir=/usr/local/share/fonts ; [ -d $$dir ] && find $$dir -iname $(OUR_PROPORTIONAL_FONT)|head -n 1) + endif +@@ -889,7 +876,7 @@ INSTALL_FONTS += $(MONOSPACED_FONT) endif else -- SYS_MONOSPACED_FONT = $(shell find /usr/share/fonts -iname $(OUR_MONOSPACED_FONT)|head -n 1) -- ifeq (,$(SYS_MONOSPACED_FONT)) -- SYS_MONOSPACED_FONT = $(shell find /usr/local/share/fonts -iname $(OUR_MONOSPACED_FONT)|head -n 1) -- endif -+ SYS_MONOSPACED_FONT = $(shell name=$(OUR_MONOSPACED_FONT);\ -+ {\ -+ fc-list | sed 's/: .*//' | grep -Fi "/$$name";\ -+ for dir in /usr/share/fonts /usr/local/share/fonts /usr/*/lib/X11/fonts;\ -+ do [ -d $$dir ] && echo $$dir; done;\ -+ } 2>/dev/null | xargs -I% find % -type f -iname $$name -print | head -n1) - ifneq (,$(SYS_MONOSPACED_FONT)) - ifeq (,$(COPY_FONTS)) - DEFINES += -DMONOSPACED_FONT=\"$(SYS_MONOSPACED_FONT)\" -@@ -1036,7 +1027,7 @@ +- SYS_MONOSPACED_FONT = $(shell dir=/usr/share/fonts; [ -d $$dir ] && find $$dir -iname $(OUR_MONOSPACED_FONT)|head -n 1) ++ SYS_MONOSPACED_FONT = $(shell dir=%%LOCALBASE%%/lib/X11/fonts; [ -d $$dir ] && find $$dir -iname $(OUR_MONOSPACED_FONT)|head -n 1) + ifeq (,$(SYS_MONOSPACED_FONT)) + SYS_MONOSPACED_FONT = $(shell dir=/usr/local/share/fonts; [ -d $$dir ] && find $$dir -iname $(OUR_MONOSPACED_FONT)|head -n 1) + endif +@@ -1075,7 +1062,7 @@ cmd-name.h $(INI_OBJECTS) SRC_PKG_BASE := stone_soup @@ -128,11 +115,3 @@ MAJOR_VERSION = $(shell echo "$(SRC_VERSION)"|sed -r 's/-.*//;s/^([^.]+\.[^.]+).*/\1/') export SRC_VERSION -@@ -1049,6 +1040,7 @@ - greet: - @if [ ! -e $(GAME) ]; then\ - printf " * If you experience any problems building Crawl, please take a second look\\n"\ -+ ;printf\ - " * at INSTALL.txt: the solution to your problem just might be in there!\\n";\ - fi - diff -urN games/stonesoup.orig/files/patch-dat__des__branches__hells.des games/stonesoup/files/patch-dat__des__branches__hells.des --- games/stonesoup.orig/files/patch-dat__des__branches__hells.des 1970-01-01 01:00:00.000000000 +0100 +++ games/stonesoup/files/patch-dat__des__branches__hells.des 2013-09-28 21:30:41.259764630 +0200 @@ -0,0 +1,12 @@ +--- ./dat/des/branches/hells.des.orig 2013-06-01 04:52:08.000000000 +0200 ++++ ./dat/des/branches/hells.des 2013-06-18 19:24:52.996224493 +0200 +@@ -379,8 +379,7 @@ + KMONS: F = executioner + KMONS: ! = iron devil / skeletal warrior / hell knight / place:Zot:1 skeleton w:15 + KMONS: ? = patrolling iron imp +-: dgn.delayed_decay(_G, '%', 'human corpse / human skeleton, \ +-: human corpse / human skeleton') ++: dgn.delayed_decay(_G, '%', 'human corpse / human skeleton, human corpse / human skeleton') + : else + KMONS: 01 = ghost moth + KMONS: 23 = golden dragon diff -urN games/stonesoup.orig/files/patch-dat__des__variable__grated_community.des games/stonesoup/files/patch-dat__des__variable__grated_community.des --- games/stonesoup.orig/files/patch-dat__des__variable__grated_community.des 1970-01-01 01:00:00.000000000 +0100 +++ games/stonesoup/files/patch-dat__des__variable__grated_community.des 2013-09-28 21:30:41.261764336 +0200 @@ -0,0 +1,67 @@ +--- ./dat/des/variable/grated_community.des.orig 2013-06-01 04:52:08.000000000 +0200 ++++ ./dat/des/variable/grated_community.des 2013-06-18 19:24:52.998224087 +0200 +@@ -67,11 +67,7 @@ + q:5 sausage + KFEAT: C = distillery shop type:Miraculous suffix:Elixirs count:10 \ + greed:50 ; potion of confusion +-: kfeat("D = armour shop name:The_Legendary_" .. crawl.make_name() .. " \ +-: type:Legendary suffix:Smithy count:10 greed:40 ;\ +-: damaged plate armour ego:none | damaged chain mail ego:none |\ +-: damaged long sword ego:none | damaged shield ego:none |\ +-: damaged large shield ego:none | damaged battleaxe ego:none") ++: kfeat("D = armour shop name:The_Legendary_" .. crawl.make_name() .. " type:Legendary suffix:Smithy count:10 greed:40 ; damaged plate armour ego:none | damaged chain mail ego:none | damaged long sword ego:none | damaged shield ego:none | damaged large shield ego:none | damaged battleaxe ego:none") + SHUFFLE: QRSTUVX + SUBVAULT: Q : grated_community_mu_home1 + SUBVAULT: R : grated_community_mu_home2 +@@ -166,16 +162,11 @@ + KITEM: % = animal skin / nothing + MARKER: + = lua:restrict_door() + KFEAT: ~ = closed_door +-: dgn.delayed_decay(_G, '*', 'human skeleton / yak skeleton / elf skeleton /\ +-: gnome skeleton / elephant skeleton /\ +-: sheep skeleton / manticore skeleton /\ +-: w:2 nothing, animal skin') ++: dgn.delayed_decay(_G, '*', 'human skeleton / yak skeleton / elf skeleton / gnome skeleton / elephant skeleton / sheep skeleton / manticore skeleton / w:2 nothing, animal skin') + KFEAT: 8 = granite_statue / orcish_idol / w:5 altar_trog /\ + w:5 altar_beogh / w:1 altar_makhleb / w:4 floor + KITEM: $ = q:5 meat ration, giant spiked club, q:2 sausage +-: kitem("$ = q:" .. crawl.random_range(1, 5) .. " sausage / w:5 nothing, \ +-: q:" .. crawl.random_range(1, 3) .. " meat ration / w:5 nothing, \ +-: giant spiked club / giant club / nothing") ++: kitem("$ = q:" .. crawl.random_range(1, 5) .. " sausage / w:5 nothing, q:" .. crawl.random_range(1, 3) .. " meat ration / w:5 nothing, giant spiked club / giant club / nothing") + : local frosty = crawl.random2(6) + : if frosty == 5 then + SUBST: 1 = 2 +@@ -218,10 +209,8 @@ + KFEAT: * = altar_kikubaaqudgha / w:4 altar_sif_muna / w:1 altar_yredelemnul + KITEM: " = gold, any wand / w:15 nothing, any scroll / nothing + KFEAT: 8 = granite_statue / w:2 fountain_blood / w:1 floor +-: kitem("? = q:" .. crawl.random_range(1, 3) .. " scroll of torment /\ +-: nothing, any scroll / nothing") +-: kitem("! = q:" .. crawl.random_range(1, 3) .. " potion of magic /\ +-: nothing, any potion / nothing") ++: kitem("? = q:" .. crawl.random_range(1, 3) .. " scroll of torment / nothing, any scroll / nothing") ++: kitem("! = q:" .. crawl.random_range(1, 3) .. " potion of magic / nothing, any potion / nothing") + KITEM: & = book of necromancy / book of death / book of unlife / w:12 nothing + KMONS: P = col:darkgrey plant name:withered name_adjective \ + tile:mons_withered_plant / col:lightgrey plant name:withered \ +@@ -233,8 +222,7 @@ + nothing + KFEAT: 8 = granite_statue / fountain_sparkling / fountain_blue / w:1 floor + KITEM: ? = scroll of recharging / nothing, any scroll / nothing +-: kitem("! = q:" .. crawl.random_range(1, 3) .. " potion of magic /\ +-: nothing, any potion / nothing") ++: kitem("! = q:" .. crawl.random_range(1, 3) .. " potion of magic / nothing, any potion / nothing") + KITEM: & = book of wizardry / book of power / book of party tricks /\ + book of alchemy / w:12 nothing + KMONS: P = plant +@@ -246,8 +234,7 @@ + potion of brilliance / nothing + KFEAT: 8 = granite_statue / w:1 floor + KITEM: ? = scroll of immolation / nothing, any scroll / nothing +-: kitem("! = q:" .. crawl.random_range(1, 3) .. " scroll of immolation /\ +-: nothing, any potion / nothing") ++: kitem("! = q:" .. crawl.random_range(1, 3) .. " scroll of immolation / nothing, any potion / nothing") + KITEM: & = book of fire / book of power / book of ice /\ + book of the tempests / w:12 nothing + KFEAT: P = granite_statue diff -urN games/stonesoup.orig/files/patch-files.cc games/stonesoup/files/patch-files.cc --- games/stonesoup.orig/files/patch-files.cc 2013-09-28 21:15:27.330763977 +0200 +++ games/stonesoup/files/patch-files.cc 2013-09-28 21:30:41.262763516 +0200 @@ -1,8 +1,8 @@ ---- ./files.cc.orig 2012-09-30 23:25:31.000000000 +0200 -+++ ./files.cc 2012-10-27 20:49:08.839666272 +0200 -@@ -618,8 +618,10 @@ +--- ./files.cc.orig 2013-06-01 04:52:08.000000000 +0200 ++++ ./files.cc 2013-06-18 19:24:53.000224795 +0200 +@@ -629,8 +629,10 @@ { - std::vector chars; + vector chars; +#ifdef WIZARD if (Options.no_save) @@ -10,10 +10,10 @@ +#endif #ifndef DISABLE_SAVEGAME_LISTS - std::string searchpath = _get_savefile_directory(); -@@ -1741,8 +1743,10 @@ + string searchpath = _get_savefile_directory(); +@@ -1778,8 +1780,10 @@ // returns false if a new game should start instead - static bool _restore_game(const std::string& filename) + static bool _restore_game(const string& filename) { +#ifdef WIZARD if (Options.no_save) diff -urN games/stonesoup.orig/files/patch-ng-setup.cc games/stonesoup/files/patch-ng-setup.cc --- games/stonesoup.orig/files/patch-ng-setup.cc 2013-09-28 21:15:27.332796556 +0200 +++ games/stonesoup/files/patch-ng-setup.cc 2013-09-28 21:30:41.263763860 +0200 @@ -1,7 +1,7 @@ ---- ./ng-setup.cc.orig 2012-09-30 23:25:31.000000000 +0200 -+++ ./ng-setup.cc 2012-10-27 20:49:08.841950945 +0200 -@@ -1427,9 +1427,11 @@ - you.nemelex_sacrificing = true; +--- ./ng-setup.cc.orig 2013-06-01 04:52:08.000000000 +0200 ++++ ./ng-setup.cc 2013-06-18 19:24:53.002224996 +0200 +@@ -1396,9 +1396,11 @@ + init_companions(); // Create the save file. +#ifdef WIZARD diff -urN games/stonesoup.orig/files/patch-rltiles__Makefile games/stonesoup/files/patch-rltiles__Makefile --- games/stonesoup.orig/files/patch-rltiles__Makefile 2013-09-28 21:15:27.332796556 +0200 +++ games/stonesoup/files/patch-rltiles__Makefile 2013-09-28 21:30:41.264764178 +0200 @@ -1,5 +1,5 @@ ---- ./rltiles/Makefile.orig 2012-09-30 23:25:31.000000000 +0200 -+++ ./rltiles/Makefile 2012-10-27 20:49:55.957667879 +0200 +--- ./rltiles/Makefile.orig 2013-06-01 04:52:08.000000000 +0200 ++++ ./rltiles/Makefile 2013-06-18 19:28:17.705226603 +0200 @@ -1,7 +1,7 @@ uname_S := $(shell uname -s) @@ -16,9 +16,9 @@ -CFLAGS := -O2 -g -Wall -Wextra -Wno-parentheses -Wno-unused-parameter +L_CFLAGS := $(CFLAGS) - ifdef TILES - ifndef CONTRIB_SDL -@@ -29,24 +29,24 @@ + ifdef ANDROID + CXXFLAGS := +@@ -35,24 +35,24 @@ PNG_LIB := ../contrib/install/$(ARCH)/lib/libpng.a ../contrib/install/$(ARCH)/lib/libz.a endif @@ -50,7 +50,7 @@ endif # Attempt to use a full compiler name, to make -@@ -58,7 +58,7 @@ +@@ -64,7 +64,7 @@ ifeq ($(shell which $(LMACH)gcc > /dev/null 2> /dev/null && echo "Yes"),) LMACH := endif @@ -59,7 +59,7 @@ DELETE = rm -f -@@ -98,7 +98,7 @@ +@@ -109,7 +109,7 @@ $(QUIET_GEN)$(TILEGEN) -c $< # CFLAGS difference check @@ -68,16 +68,12 @@ .cflags: .force-cflags @FLAGS='$(TRACK_CFLAGS)'; \ -@@ -127,9 +127,13 @@ +@@ -138,9 +138,9 @@ distclean: clean %.o: %.cc .cflags -- $(QUIET_HOSTCXX)$(HOSTCXX) $(CFLAGS) -Wp,-MMD,$*.d,-MT,$@ -c $< -o $@ -+ifdef NO_INLINE_DEPGEN -+ $(QUIET_HOSTCXX)$(HOSTCXX) $(L_CFLAGS) -Wp,-MT,$@ -c $< -o $@ -+else -+ $(QUIET_HOSTCXX)$(HOSTCXX) $(L_CFLAGS) -Wp,-MMD,$*.d,-MT,$@ -c $< -o $@ -+endif +- $(QUIET_HOSTCXX)$(HOSTCXX) $(CFLAGS) -MMD -c $< -o $@ ++ $(QUIET_HOSTCXX)$(HOSTCXX) $(L_CFLAGS) -MMD -c $< -o $@ $(TILEGEN): $(OBJECTS) - $(QUIET_HOSTLINK)$(HOSTCXX) $(OBJECTS) -o $@ $(LDFLAGS) diff -urN games/stonesoup.orig/files/patch-rltiles__tool__tile.cc games/stonesoup/files/patch-rltiles__tool__tile.cc --- games/stonesoup.orig/files/patch-rltiles__tool__tile.cc 2013-09-28 21:15:27.331763154 +0200 +++ games/stonesoup/files/patch-rltiles__tool__tile.cc 2013-09-28 21:30:41.265763670 +0200 @@ -1,5 +1,5 @@ ---- ./rltiles/tool/tile.cc.orig 2012-09-30 23:25:33.000000000 +0200 -+++ ./rltiles/tool/tile.cc 2012-10-27 20:49:08.845367925 +0200 +--- ./rltiles/tool/tile.cc.orig 2013-06-01 04:52:09.000000000 +0200 ++++ ./rltiles/tool/tile.cc 2013-06-18 19:24:53.005224791 +0200 @@ -125,10 +125,10 @@ if (flags[x + y * m_width]) continue; diff -urN games/stonesoup.orig/files/patch-rltiles__tool__tile_list_processor.cc games/stonesoup/files/patch-rltiles__tool__tile_list_processor.cc --- games/stonesoup.orig/files/patch-rltiles__tool__tile_list_processor.cc 2013-09-28 21:15:27.331763154 +0200 +++ games/stonesoup/files/patch-rltiles__tool__tile_list_processor.cc 2013-09-28 21:30:41.266764516 +0200 @@ -1,5 +1,5 @@ ---- ./rltiles/tool/tile_list_processor.cc.orig 2012-09-30 23:25:33.000000000 +0200 -+++ ./rltiles/tool/tile_list_processor.cc 2012-10-27 20:49:08.847233795 +0200 +--- ./rltiles/tool/tile_list_processor.cc.orig 2013-06-01 04:52:09.000000000 +0200 ++++ ./rltiles/tool/tile_list_processor.cc 2013-06-18 19:24:53.008224181 +0200 @@ -51,7 +51,7 @@ "" }; @@ -7,5 +7,5 @@ - if (m_sdir != "" || background && m_back_sdir != "") + if (m_sdir != "" || (background && m_back_sdir != "")) { - std::vector dirs; + vector dirs; if (m_sdir != "") diff -urN games/stonesoup.orig/files/patch-startup.cc games/stonesoup/files/patch-startup.cc --- games/stonesoup.orig/files/patch-startup.cc 2013-09-28 21:15:27.331763154 +0200 +++ games/stonesoup/files/patch-startup.cc 2013-09-28 21:30:41.267764397 +0200 @@ -1,6 +1,6 @@ ---- ./startup.cc.orig 2012-09-30 23:25:33.000000000 +0200 -+++ ./startup.cc 2012-10-27 20:49:08.848667287 +0200 -@@ -234,8 +234,10 @@ +--- ./startup.cc.orig 2013-06-01 04:52:09.000000000 +0200 ++++ ./startup.cc 2013-06-18 19:24:53.009224484 +0200 +@@ -237,8 +237,10 @@ you.wizard = true; #endif // Save-less games are pointless except for tests. diff -urN games/stonesoup.orig/pkg-descr games/stonesoup/pkg-descr --- games/stonesoup.orig/pkg-descr 2013-09-28 21:15:27.333763753 +0200 +++ games/stonesoup/pkg-descr 2013-09-28 21:30:41.268765754 +0200 @@ -10,4 +10,4 @@ games/stonesoup - the traditional tty interfaced games/stonesoup-sdl - the fancy SDL interface -WWW: http://crawl.develz.org/ +WWW: http://crawl.develz.org/ diff -urN games/stonesoup.orig/pkg-plist games/stonesoup/pkg-plist --- games/stonesoup.orig/pkg-plist 2013-09-28 21:15:27.345777593 +0200 +++ games/stonesoup/pkg-plist 2013-09-28 21:30:41.270764554 +0200 @@ -1,461 +1,521 @@ bin/stonesoup -%%DATADIR%%/dat/clua/autofight.lua -%%DATADIR%%/dat/clua/gearset.lua -%%DATADIR%%/dat/clua/kills.lua -%%DATADIR%%/dat/clua/runrest.lua -%%DATADIR%%/dat/clua/stash.lua -%%DATADIR%%/dat/clua/trapwalk.lua -%%DATADIR%%/dat/clua/wield.lua -%%DATADIR%%/dat/database/FAQ.txt -%%DATADIR%%/dat/database/el/monflee.txt %%DATADIR%%/dat/database/el/rand_all.txt -%%DATADIR%%/dat/database/godname.txt -%%DATADIR%%/dat/database/godspeak.txt -%%DATADIR%%/dat/database/help.txt +%%DATADIR%%/dat/database/el/monflee.txt %%DATADIR%%/dat/database/insult.txt -%%DATADIR%%/dat/database/miscname.txt +%%DATADIR%%/dat/database/shout.txt +%%DATADIR%%/dat/database/help.txt +%%DATADIR%%/dat/database/godname.txt +%%DATADIR%%/dat/database/wpnnoise.txt +%%DATADIR%%/dat/database/rand_all.txt %%DATADIR%%/dat/database/monflee.txt -%%DATADIR%%/dat/database/monname.txt -%%DATADIR%%/dat/database/monspeak.txt +%%DATADIR%%/dat/database/randname.txt %%DATADIR%%/dat/database/monspell.txt %%DATADIR%%/dat/database/pl/godspeak.txt %%DATADIR%%/dat/database/pl/miscname.txt -%%DATADIR%%/dat/database/rand_all.txt %%DATADIR%%/dat/database/rand_arm.txt -%%DATADIR%%/dat/database/rand_wpn.txt +%%DATADIR%%/dat/database/godspeak.txt %%DATADIR%%/dat/database/randbook.txt -%%DATADIR%%/dat/database/randname.txt -%%DATADIR%%/dat/database/shout.txt -%%DATADIR%%/dat/database/wpnnoise.txt -%%DATADIR%%/dat/defaults/autopickup_exceptions.txt -%%DATADIR%%/dat/defaults/food_colouring.txt -%%DATADIR%%/dat/defaults/menu_colours.txt -%%DATADIR%%/dat/defaults/messages.txt -%%DATADIR%%/dat/defaults/misc.txt -%%DATADIR%%/dat/defaults/runrest_messages.txt -%%DATADIR%%/dat/defaults/standard_colours.txt -%%DATADIR%%/dat/des/altar/altar.des -%%DATADIR%%/dat/des/altar/fedhas_garden.des -%%DATADIR%%/dat/des/altar/grunt_ashenzari_visionary.des -%%DATADIR%%/dat/des/altar/grunt_nemelex_the_gamble.des -%%DATADIR%%/dat/des/altar/kiku_cage.des -%%DATADIR%%/dat/des/altar/lugonu_bribe.des -%%DATADIR%%/dat/des/altar/overflow.des -%%DATADIR%%/dat/des/altar/trog_burn_book.des -%%DATADIR%%/dat/des/altar/trog_wizard.des -%%DATADIR%%/dat/des/altar/vehumet_trees.des -%%DATADIR%%/dat/des/altar/xom_monty_hall.des -%%DATADIR%%/dat/des/altar/yredelemnul_ordeal.des +%%DATADIR%%/dat/database/monspeak.txt +%%DATADIR%%/dat/database/rand_wpn.txt +%%DATADIR%%/dat/database/FAQ.txt +%%DATADIR%%/dat/database/monname.txt +%%DATADIR%%/dat/database/miscname.txt +%%DATADIR%%/dat/dlua/lm_1way.lua +%%DATADIR%%/dat/dlua/dungeon.lua +%%DATADIR%%/dat/dlua/v_debug.lua +%%DATADIR%%/dat/dlua/v_layouts.lua +%%DATADIR%%/dat/dlua/v_paint.lua +%%DATADIR%%/dat/dlua/lm_fog.lua +%%DATADIR%%/dat/dlua/lm_items.lua +%%DATADIR%%/dat/dlua/iter.lua +%%DATADIR%%/dat/dlua/macro.lua +%%DATADIR%%/dat/dlua/tags.lua +%%DATADIR%%/dat/dlua/lm_door.lua +%%DATADIR%%/dat/dlua/lm_mon_prop.lua +%%DATADIR%%/dat/dlua/v_shapes.lua +%%DATADIR%%/dat/dlua/luamark.lua +%%DATADIR%%/dat/dlua/init.lua +%%DATADIR%%/dat/dlua/v_rooms.lua +%%DATADIR%%/dat/dlua/point.lua +%%DATADIR%%/dat/dlua/fnwrap.lua +%%DATADIR%%/dat/dlua/lm_props.lua +%%DATADIR%%/dat/dlua/lm_timed.lua +%%DATADIR%%/dat/dlua/lm_pdesc.lua +%%DATADIR%%/dat/dlua/mapinit.lua +%%DATADIR%%/dat/dlua/test.lua +%%DATADIR%%/dat/dlua/lm_trove.lua +%%DATADIR%%/dat/dlua/sanity.lua +%%DATADIR%%/dat/dlua/util.lua +%%DATADIR%%/dat/dlua/debug.lua +%%DATADIR%%/dat/dlua/lm_trig.lua +%%DATADIR%%/dat/dlua/lm_monst.lua +%%DATADIR%%/dat/dlua/lm_toll.lua +%%DATADIR%%/dat/dlua/ziggurat.lua +%%DATADIR%%/dat/dlua/userbase.lua +%%DATADIR%%/dat/dlua/layout/zonify.lua +%%DATADIR%%/dat/dlua/layout/hyper_rooms.lua +%%DATADIR%%/dat/dlua/layout/hyper_strategy.lua +%%DATADIR%%/dat/dlua/layout/hyper_paint.lua +%%DATADIR%%/dat/dlua/layout/hyper_debug.lua +%%DATADIR%%/dat/dlua/layout/procedural.lua +%%DATADIR%%/dat/dlua/layout/hyper_place.lua +%%DATADIR%%/dat/dlua/layout/vector.lua +%%DATADIR%%/dat/dlua/layout/hyper_usage.lua +%%DATADIR%%/dat/dlua/layout/hyper_city.lua +%%DATADIR%%/dat/dlua/layout/hyper_shapes.lua +%%DATADIR%%/dat/dlua/layout/hyper.lua +%%DATADIR%%/dat/dlua/layout/hyper_decor.lua +%%DATADIR%%/dat/dlua/layout/hyper_fort.lua +%%DATADIR%%/dat/dlua/tutorial.lua +%%DATADIR%%/dat/dlua/lm_mslav.lua +%%DATADIR%%/dat/dlua/sprint.lua +%%DATADIR%%/dat/dlua/lm_tmsg.lua +%%DATADIR%%/dat/dlua/stress.lua +%%DATADIR%%/dat/dlua/loadmaps.lua +%%DATADIR%%/dat/clua/kills.lua +%%DATADIR%%/dat/clua/wield.lua +%%DATADIR%%/dat/clua/runrest.lua +%%DATADIR%%/dat/clua/autofight.lua +%%DATADIR%%/dat/clua/stash.lua +%%DATADIR%%/dat/clua/trapwalk.lua +%%DATADIR%%/dat/clua/gearset.lua +%%DATADIR%%/dat/des/tutorial/lesson1.des +%%DATADIR%%/dat/des/tutorial/lesson3.des +%%DATADIR%%/dat/des/tutorial/lesson4.des +%%DATADIR%%/dat/des/tutorial/lesson5.des +%%DATADIR%%/dat/des/tutorial/lesson2.des +%%DATADIR%%/dat/des/guide.txt +%%DATADIR%%/dat/des/entry/entry_guide.txt +%%DATADIR%%/dat/des/entry/twisted.des +%%DATADIR%%/dat/des/entry/simple.des +%%DATADIR%%/dat/des/entry/small.des +%%DATADIR%%/dat/des/entry/large.des +%%DATADIR%%/dat/des/portals/lab.des +%%DATADIR%%/dat/des/portals/ziggurat.des +%%DATADIR%%/dat/des/portals/wizlab.des +%%DATADIR%%/dat/des/portals/trove.des +%%DATADIR%%/dat/des/portals/bazaar.des +%%DATADIR%%/dat/des/portals/volcano.des +%%DATADIR%%/dat/des/portals/icecave.des +%%DATADIR%%/dat/des/portals/bailey.des +%%DATADIR%%/dat/des/portals/sewer.des +%%DATADIR%%/dat/des/portals/ossuary.des +%%DATADIR%%/dat/des/variable/mini_features.des +%%DATADIR%%/dat/des/variable/ambush.des +%%DATADIR%%/dat/des/variable/mini.des +%%DATADIR%%/dat/des/variable/grated_community.des +%%DATADIR%%/dat/des/variable/ancient_champions.des +%%DATADIR%%/dat/des/variable/lemuel_castle.des +%%DATADIR%%/dat/des/variable/large_themed.des +%%DATADIR%%/dat/des/variable/compat.des +%%DATADIR%%/dat/des/variable/tomb_raider.des +%%DATADIR%%/dat/des/variable/float.des +%%DATADIR%%/dat/des/variable/mini_monsters.des +%%DATADIR%%/dat/des/variable/geyser.des +%%DATADIR%%/dat/des/variable/cathedral_bats.des +%%DATADIR%%/dat/des/variable/dk_crumbling.des +%%DATADIR%%/dat/des/variable/large_abstract.des +%%DATADIR%%/dat/des/variable/okawaru_arena.des +%%DATADIR%%/dat/des/variable/encompass.des %%DATADIR%%/dat/des/branches/abyss.des -%%DATADIR%%/dat/des/branches/blade.des -%%DATADIR%%/dat/des/branches/crypt.des -%%DATADIR%%/dat/des/branches/dwarf.des +%%DATADIR%%/dat/des/branches/shoals.des %%DATADIR%%/dat/des/branches/elf.des +%%DATADIR%%/dat/des/branches/pan.des %%DATADIR%%/dat/des/branches/hells.des +%%DATADIR%%/dat/des/branches/vaults_rooms_standard.des +%%DATADIR%%/dat/des/branches/temple.des +%%DATADIR%%/dat/des/branches/dwarf.des +%%DATADIR%%/dat/des/branches/blade.des +%%DATADIR%%/dat/des/branches/zot.des +%%DATADIR%%/dat/des/branches/vaults_rooms_empty.des %%DATADIR%%/dat/des/branches/lair.des -%%DATADIR%%/dat/des/branches/orc.des -%%DATADIR%%/dat/des/branches/pan.des -%%DATADIR%%/dat/des/branches/shoals.des -%%DATADIR%%/dat/des/branches/slime.des %%DATADIR%%/dat/des/branches/snake.des -%%DATADIR%%/dat/des/branches/spider.des -%%DATADIR%%/dat/des/branches/swamp.des -%%DATADIR%%/dat/des/branches/temple.des +%%DATADIR%%/dat/des/branches/vaults_rooms_hard.des %%DATADIR%%/dat/des/branches/tomb.des +%%DATADIR%%/dat/des/branches/swamp.des %%DATADIR%%/dat/des/branches/vaults.des -%%DATADIR%%/dat/des/branches/zot.des +%%DATADIR%%/dat/des/branches/crypt.des +%%DATADIR%%/dat/des/branches/orc.des +%%DATADIR%%/dat/des/branches/spider.des +%%DATADIR%%/dat/des/branches/slime.des +%%DATADIR%%/dat/des/sprint/menkaure.des +%%DATADIR%%/dat/des/sprint/sprint_mu.des +%%DATADIR%%/dat/des/sprint/zigsprint.des +%%DATADIR%%/dat/des/sprint/pitsprint.des +%%DATADIR%%/dat/des/sprint/meat.des +%%DATADIR%%/dat/des/sprint/fedhas.des +%%DATADIR%%/dat/des/sprint/red_sonja.des +%%DATADIR%%/dat/des/sprint/arena_sprint.des +%%DATADIR%%/dat/des/zotdef/zotdef.des +%%DATADIR%%/dat/des/traps/xom_trap.des +%%DATADIR%%/dat/des/traps/boulders.des +%%DATADIR%%/dat/des/traps/monster_doors.des +%%DATADIR%%/dat/des/traps/grate.des +%%DATADIR%%/dat/des/traps/spider_basket.des +%%DATADIR%%/dat/des/traps/collapsing_statue.des +%%DATADIR%%/dat/des/traps/beogh_trap.des +%%DATADIR%%/dat/des/traps/rats_trap.des +%%DATADIR%%/dat/des/traps/cloud_traps.des +%%DATADIR%%/dat/des/test.des +%%DATADIR%%/dat/des/altar/xom_monty_hall.des +%%DATADIR%%/dat/des/altar/vehumet_trees.des +%%DATADIR%%/dat/des/altar/yredelemnul_ordeal.des +%%DATADIR%%/dat/des/altar/lugonu_bribe.des +%%DATADIR%%/dat/des/altar/kiku_cage.des +%%DATADIR%%/dat/des/altar/fedhas_garden.des +%%DATADIR%%/dat/des/altar/trog_burn_book.des +%%DATADIR%%/dat/des/altar/ashenzari_visionary.des +%%DATADIR%%/dat/des/altar/overflow.des +%%DATADIR%%/dat/des/altar/nemelex_the_gamble.des +%%DATADIR%%/dat/des/altar/trog_wizard.des +%%DATADIR%%/dat/des/altar/altar.des +%%DATADIR%%/dat/des/builder/rooms.des %%DATADIR%%/dat/des/builder/arena.des %%DATADIR%%/dat/des/builder/dummy.des -%%DATADIR%%/dat/des/builder/food.des +%%DATADIR%%/dat/des/builder/layout_vaults.des %%DATADIR%%/dat/des/builder/layout.des %%DATADIR%%/dat/des/builder/layout_loops.des -%%DATADIR%%/dat/des/builder/rooms.des +%%DATADIR%%/dat/des/builder/layout_pools.des +%%DATADIR%%/dat/des/builder/food.des %%DATADIR%%/dat/des/builder/shops.des +%%DATADIR%%/dat/des/builder/layout_caves.des %%DATADIR%%/dat/des/builder/uniques.des -%%DATADIR%%/dat/des/entry/entry_guide.txt -%%DATADIR%%/dat/des/entry/large.des -%%DATADIR%%/dat/des/entry/simple.des -%%DATADIR%%/dat/des/entry/small.des -%%DATADIR%%/dat/des/entry/twisted.des -%%DATADIR%%/dat/des/guide.txt -%%DATADIR%%/dat/des/portals/bailey.des -%%DATADIR%%/dat/des/portals/bazaar.des -%%DATADIR%%/dat/des/portals/icecave.des -%%DATADIR%%/dat/des/portals/lab.des -%%DATADIR%%/dat/des/portals/ossuary.des -%%DATADIR%%/dat/des/portals/sewer.des -%%DATADIR%%/dat/des/portals/trove.des -%%DATADIR%%/dat/des/portals/volcano.des -%%DATADIR%%/dat/des/portals/wizlab.des -%%DATADIR%%/dat/des/portals/ziggurat.des -%%DATADIR%%/dat/des/serial/aquarium.des -%%DATADIR%%/dat/des/serial/bayou.des %%DATADIR%%/dat/des/serial/column_ruins.des -%%DATADIR%%/dat/des/serial/corridors.des +%%DATADIR%%/dat/des/serial/undead.des +%%DATADIR%%/dat/des/serial/magic_research.des %%DATADIR%%/dat/des/serial/curves.des %%DATADIR%%/dat/des/serial/forest.des %%DATADIR%%/dat/des/serial/glass.des -%%DATADIR%%/dat/des/serial/gnoll_camp.des +%%DATADIR%%/dat/des/serial/window.des %%DATADIR%%/dat/des/serial/ice.des -%%DATADIR%%/dat/des/serial/magic_research.des -%%DATADIR%%/dat/des/serial/ponds.des +%%DATADIR%%/dat/des/serial/rogues_gallery.des +%%DATADIR%%/dat/des/serial/corridors.des +%%DATADIR%%/dat/des/serial/bayou.des +%%DATADIR%%/dat/des/serial/teleporters.des +%%DATADIR%%/dat/des/serial/gnoll_camp.des %%DATADIR%%/dat/des/serial/serial_guide.txt -%%DATADIR%%/dat/des/serial/undead.des -%%DATADIR%%/dat/des/serial/window.des -%%DATADIR%%/dat/des/sprint/menkaure.des -%%DATADIR%%/dat/des/sprint/red_sonja.des -%%DATADIR%%/dat/des/sprint/sprint_fedhas.des -%%DATADIR%%/dat/des/sprint/sprint_mu.des -%%DATADIR%%/dat/des/sprint/zigsprint.des -%%DATADIR%%/dat/des/test.des -%%DATADIR%%/dat/des/traps/beogh_trap.des -%%DATADIR%%/dat/des/traps/boulders.des -%%DATADIR%%/dat/des/traps/cloud_traps.des -%%DATADIR%%/dat/des/traps/collapsing_statue.des -%%DATADIR%%/dat/des/traps/grate.des -%%DATADIR%%/dat/des/traps/monster_doors.des -%%DATADIR%%/dat/des/traps/rats_trap.des -%%DATADIR%%/dat/des/traps/spider_basket.des -%%DATADIR%%/dat/des/traps/xom_trap.des -%%DATADIR%%/dat/des/tutorial/tutorial_lesson1.des -%%DATADIR%%/dat/des/tutorial/tutorial_lesson2.des -%%DATADIR%%/dat/des/tutorial/tutorial_lesson3.des -%%DATADIR%%/dat/des/tutorial/tutorial_lesson4.des -%%DATADIR%%/dat/des/tutorial/tutorial_lesson5.des -%%DATADIR%%/dat/des/variable/ancient_champions.des -%%DATADIR%%/dat/des/variable/cathedral_bats.des -%%DATADIR%%/dat/des/variable/dk_crumbling.des -%%DATADIR%%/dat/des/variable/encompass.des -%%DATADIR%%/dat/des/variable/evilmike_ambush.des -%%DATADIR%%/dat/des/variable/float.des -%%DATADIR%%/dat/des/variable/grunt_fire_pits.des -%%DATADIR%%/dat/des/variable/large_abstract.des -%%DATADIR%%/dat/des/variable/large_themed.des -%%DATADIR%%/dat/des/variable/lemuel_castle.des -%%DATADIR%%/dat/des/variable/mini.des -%%DATADIR%%/dat/des/variable/mini_features.des -%%DATADIR%%/dat/des/variable/mini_monsters.des -%%DATADIR%%/dat/des/variable/tomb_raider.des -%%DATADIR%%/dat/des/zotdef/zotdef.des -%%DATADIR%%/dat/descript/ability.txt -%%DATADIR%%/dat/descript/backgrounds.txt -%%DATADIR%%/dat/descript/branches.txt -%%DATADIR%%/dat/descript/cards.txt -%%DATADIR%%/dat/descript/commands.txt -%%DATADIR%%/dat/descript/cs/ability.txt -%%DATADIR%%/dat/descript/cs/branches.txt -%%DATADIR%%/dat/descript/cs/commands.txt -%%DATADIR%%/dat/descript/cs/features.txt -%%DATADIR%%/dat/descript/cs/gods.txt -%%DATADIR%%/dat/descript/cs/items.txt -%%DATADIR%%/dat/descript/cs/species.txt -%%DATADIR%%/dat/descript/cs/spells.txt -%%DATADIR%%/dat/descript/cs/unident.txt -%%DATADIR%%/dat/descript/da/items.txt -%%DATADIR%%/dat/descript/da/monsters.txt -%%DATADIR%%/dat/descript/da/species.txt -%%DATADIR%%/dat/descript/da/unident.txt -%%DATADIR%%/dat/descript/de/backgrounds.txt -%%DATADIR%%/dat/descript/de/commands.txt -%%DATADIR%%/dat/descript/de/features.txt -%%DATADIR%%/dat/descript/de/gods.txt -%%DATADIR%%/dat/descript/de/items.txt -%%DATADIR%%/dat/descript/de/monsters.txt -%%DATADIR%%/dat/descript/de/species.txt -%%DATADIR%%/dat/descript/de/unident.txt -%%DATADIR%%/dat/descript/de/unrand.txt -%%DATADIR%%/dat/descript/el/ability.txt -%%DATADIR%%/dat/descript/el/backgrounds.txt -%%DATADIR%%/dat/descript/el/gods.txt -%%DATADIR%%/dat/descript/el/items.txt -%%DATADIR%%/dat/descript/el/species.txt -%%DATADIR%%/dat/descript/el/unident.txt +%%DATADIR%%/dat/des/serial/aquarium.des +%%DATADIR%%/dat/des/serial/sigils.des +%%DATADIR%%/dat/des/serial/ponds.des +%%DATADIR%%/dat/defaults/standard_colours.txt +%%DATADIR%%/dat/defaults/menu_colours.txt +%%DATADIR%%/dat/defaults/food_colouring.txt +%%DATADIR%%/dat/defaults/autopickup_exceptions.txt +%%DATADIR%%/dat/defaults/misc.txt +%%DATADIR%%/dat/defaults/runrest_messages.txt +%%DATADIR%%/dat/defaults/messages.txt +%%DATADIR%%/dat/descript/spells.txt +%%DATADIR%%/dat/descript/features.txt +%%DATADIR%%/dat/descript/hu/species.txt +%%DATADIR%%/dat/descript/es/branches.txt %%DATADIR%%/dat/descript/es/ability.txt +%%DATADIR%%/dat/descript/es/items.txt +%%DATADIR%%/dat/descript/es/unrand.txt +%%DATADIR%%/dat/descript/es/features.txt +%%DATADIR%%/dat/descript/es/unident.txt +%%DATADIR%%/dat/descript/es/species.txt %%DATADIR%%/dat/descript/es/backgrounds.txt -%%DATADIR%%/dat/descript/es/branches.txt -%%DATADIR%%/dat/descript/es/cards.txt %%DATADIR%%/dat/descript/es/commands.txt -%%DATADIR%%/dat/descript/es/features.txt -%%DATADIR%%/dat/descript/es/gods.txt -%%DATADIR%%/dat/descript/es/items.txt %%DATADIR%%/dat/descript/es/monsters.txt -%%DATADIR%%/dat/descript/es/quotes.txt %%DATADIR%%/dat/descript/es/skills.txt -%%DATADIR%%/dat/descript/es/species.txt -%%DATADIR%%/dat/descript/es/unident.txt -%%DATADIR%%/dat/descript/es/unrand.txt -%%DATADIR%%/dat/descript/features.txt -%%DATADIR%%/dat/descript/fi/ability.txt -%%DATADIR%%/dat/descript/fi/backgrounds.txt -%%DATADIR%%/dat/descript/fi/cards.txt -%%DATADIR%%/dat/descript/fi/commands.txt -%%DATADIR%%/dat/descript/fi/features.txt -%%DATADIR%%/dat/descript/fi/items.txt -%%DATADIR%%/dat/descript/fi/monsters.txt -%%DATADIR%%/dat/descript/fi/quotes.txt -%%DATADIR%%/dat/descript/fi/species.txt -%%DATADIR%%/dat/descript/fi/spells.txt -%%DATADIR%%/dat/descript/fi/unident.txt -%%DATADIR%%/dat/descript/fi/unrand.txt -%%DATADIR%%/dat/descript/fr/ability.txt +%%DATADIR%%/dat/descript/es/cards.txt +%%DATADIR%%/dat/descript/es/gods.txt +%%DATADIR%%/dat/descript/pl/skills.txt +%%DATADIR%%/dat/descript/pl/spells.txt +%%DATADIR%%/dat/descript/pl/monsters.txt +%%DATADIR%%/dat/descript/pl/tutorial.txt +%%DATADIR%%/dat/descript/pl/unrand.txt +%%DATADIR%%/dat/descript/pl/backgrounds.txt +%%DATADIR%%/dat/descript/pl/species.txt +%%DATADIR%%/dat/descript/pl/unident.txt +%%DATADIR%%/dat/descript/pl/items.txt +%%DATADIR%%/dat/descript/pl/features.txt +%%DATADIR%%/dat/descript/lt/branches.txt +%%DATADIR%%/dat/descript/lt/skills.txt +%%DATADIR%%/dat/descript/lt/commands.txt +%%DATADIR%%/dat/descript/lt/monsters.txt +%%DATADIR%%/dat/descript/lt/backgrounds.txt +%%DATADIR%%/dat/descript/lt/species.txt +%%DATADIR%%/dat/descript/lt/unident.txt +%%DATADIR%%/dat/descript/branches.txt +%%DATADIR%%/dat/descript/cards.txt +%%DATADIR%%/dat/descript/tutorial.txt +%%DATADIR%%/dat/descript/cs/gods.txt +%%DATADIR%%/dat/descript/cs/unrand.txt +%%DATADIR%%/dat/descript/cs/commands.txt +%%DATADIR%%/dat/descript/cs/unident.txt +%%DATADIR%%/dat/descript/cs/species.txt +%%DATADIR%%/dat/descript/cs/branches.txt +%%DATADIR%%/dat/descript/cs/tutorial.txt +%%DATADIR%%/dat/descript/cs/items.txt +%%DATADIR%%/dat/descript/cs/hints.txt +%%DATADIR%%/dat/descript/cs/ability.txt +%%DATADIR%%/dat/descript/cs/spells.txt +%%DATADIR%%/dat/descript/cs/features.txt +%%DATADIR%%/dat/descript/species.txt +%%DATADIR%%/dat/descript/unident.txt +%%DATADIR%%/dat/descript/backgrounds.txt +%%DATADIR%%/dat/descript/gods.txt +%%DATADIR%%/dat/descript/fr/tutorial.txt %%DATADIR%%/dat/descript/fr/backgrounds.txt %%DATADIR%%/dat/descript/fr/branches.txt -%%DATADIR%%/dat/descript/fr/cards.txt -%%DATADIR%%/dat/descript/fr/commands.txt -%%DATADIR%%/dat/descript/fr/features.txt -%%DATADIR%%/dat/descript/fr/gods.txt +%%DATADIR%%/dat/descript/fr/ability.txt %%DATADIR%%/dat/descript/fr/items.txt -%%DATADIR%%/dat/descript/fr/monsters.txt -%%DATADIR%%/dat/descript/fr/quotes.txt -%%DATADIR%%/dat/descript/fr/skills.txt +%%DATADIR%%/dat/descript/fr/unrand.txt +%%DATADIR%%/dat/descript/fr/features.txt +%%DATADIR%%/dat/descript/fr/hints.txt %%DATADIR%%/dat/descript/fr/species.txt -%%DATADIR%%/dat/descript/fr/spells.txt %%DATADIR%%/dat/descript/fr/unident.txt -%%DATADIR%%/dat/descript/fr/unrand.txt -%%DATADIR%%/dat/descript/gods.txt -%%DATADIR%%/dat/descript/hints.txt -%%DATADIR%%/dat/descript/hu/species.txt -%%DATADIR%%/dat/descript/it/backgrounds.txt -%%DATADIR%%/dat/descript/it/gods.txt -%%DATADIR%%/dat/descript/it/skills.txt -%%DATADIR%%/dat/descript/it/species.txt +%%DATADIR%%/dat/descript/fr/cards.txt +%%DATADIR%%/dat/descript/fr/spells.txt +%%DATADIR%%/dat/descript/fr/commands.txt +%%DATADIR%%/dat/descript/fr/skills.txt +%%DATADIR%%/dat/descript/fr/monsters.txt +%%DATADIR%%/dat/descript/fr/gods.txt +%%DATADIR%%/dat/descript/skills.txt %%DATADIR%%/dat/descript/items.txt -%%DATADIR%%/dat/descript/ko/ability.txt -%%DATADIR%%/dat/descript/ko/backgrounds.txt -%%DATADIR%%/dat/descript/ko/branches.txt -%%DATADIR%%/dat/descript/ko/cards.txt -%%DATADIR%%/dat/descript/ko/commands.txt -%%DATADIR%%/dat/descript/ko/features.txt -%%DATADIR%%/dat/descript/ko/gods.txt -%%DATADIR%%/dat/descript/ko/items.txt -%%DATADIR%%/dat/descript/ko/monsters.txt -%%DATADIR%%/dat/descript/ko/quotes.txt -%%DATADIR%%/dat/descript/ko/skills.txt -%%DATADIR%%/dat/descript/ko/species.txt -%%DATADIR%%/dat/descript/ko/spells.txt -%%DATADIR%%/dat/descript/ko/unident.txt -%%DATADIR%%/dat/descript/ko/unrand.txt -%%DATADIR%%/dat/descript/lt/backgrounds.txt -%%DATADIR%%/dat/descript/lt/branches.txt -%%DATADIR%%/dat/descript/lt/commands.txt -%%DATADIR%%/dat/descript/lt/monsters.txt -%%DATADIR%%/dat/descript/lt/skills.txt -%%DATADIR%%/dat/descript/lt/species.txt -%%DATADIR%%/dat/descript/lt/unident.txt -%%DATADIR%%/dat/descript/lv/backgrounds.txt -%%DATADIR%%/dat/descript/lv/cards.txt -%%DATADIR%%/dat/descript/lv/commands.txt -%%DATADIR%%/dat/descript/lv/gods.txt -%%DATADIR%%/dat/descript/lv/items.txt +%%DATADIR%%/dat/descript/monsters.txt +%%DATADIR%%/dat/descript/el/items.txt +%%DATADIR%%/dat/descript/el/ability.txt +%%DATADIR%%/dat/descript/el/backgrounds.txt +%%DATADIR%%/dat/descript/el/species.txt +%%DATADIR%%/dat/descript/el/unident.txt +%%DATADIR%%/dat/descript/el/gods.txt +%%DATADIR%%/dat/descript/commands.txt +%%DATADIR%%/dat/descript/ja/monsters.txt +%%DATADIR%%/dat/descript/ja/unrand.txt +%%DATADIR%%/dat/descript/ja/species.txt +%%DATADIR%%/dat/descript/ja/backgrounds.txt +%%DATADIR%%/dat/descript/ja/branches.txt +%%DATADIR%%/dat/descript/ja/gods.txt +%%DATADIR%%/dat/descript/ja/items.txt +%%DATADIR%%/dat/descript/ja/spells.txt +%%DATADIR%%/dat/descript/de/species.txt +%%DATADIR%%/dat/descript/de/unident.txt +%%DATADIR%%/dat/descript/de/hints.txt +%%DATADIR%%/dat/descript/de/commands.txt +%%DATADIR%%/dat/descript/de/monsters.txt +%%DATADIR%%/dat/descript/de/unrand.txt +%%DATADIR%%/dat/descript/de/items.txt +%%DATADIR%%/dat/descript/de/ability.txt +%%DATADIR%%/dat/descript/de/skills.txt +%%DATADIR%%/dat/descript/de/gods.txt +%%DATADIR%%/dat/descript/de/features.txt +%%DATADIR%%/dat/descript/de/branches.txt +%%DATADIR%%/dat/descript/de/tutorial.txt +%%DATADIR%%/dat/descript/de/backgrounds.txt +%%DATADIR%%/dat/descript/de/cards.txt +%%DATADIR%%/dat/descript/ru/monsters.txt +%%DATADIR%%/dat/descript/ru/commands.txt +%%DATADIR%%/dat/descript/ru/spells.txt +%%DATADIR%%/dat/descript/ru/ability.txt +%%DATADIR%%/dat/descript/ru/hints.txt +%%DATADIR%%/dat/descript/ru/gods.txt +%%DATADIR%%/dat/descript/ru/skills.txt +%%DATADIR%%/dat/descript/ru/items.txt +%%DATADIR%%/dat/descript/ru/backgrounds.txt +%%DATADIR%%/dat/descript/ru/features.txt +%%DATADIR%%/dat/descript/ru/cards.txt +%%DATADIR%%/dat/descript/ru/species.txt +%%DATADIR%%/dat/descript/ru/unident.txt +%%DATADIR%%/dat/descript/ru/branches.txt +%%DATADIR%%/dat/descript/ru/tutorial.txt +%%DATADIR%%/dat/descript/ru/unrand.txt %%DATADIR%%/dat/descript/lv/monsters.txt +%%DATADIR%%/dat/descript/lv/gods.txt +%%DATADIR%%/dat/descript/lv/commands.txt %%DATADIR%%/dat/descript/lv/skills.txt %%DATADIR%%/dat/descript/lv/spells.txt +%%DATADIR%%/dat/descript/lv/hints.txt +%%DATADIR%%/dat/descript/lv/items.txt +%%DATADIR%%/dat/descript/lv/ability.txt +%%DATADIR%%/dat/descript/lv/features.txt +%%DATADIR%%/dat/descript/lv/cards.txt %%DATADIR%%/dat/descript/lv/unrand.txt -%%DATADIR%%/dat/descript/monsters.txt -%%DATADIR%%/dat/descript/pl/backgrounds.txt -%%DATADIR%%/dat/descript/pl/items.txt -%%DATADIR%%/dat/descript/pl/quotes.txt -%%DATADIR%%/dat/descript/pl/species.txt -%%DATADIR%%/dat/descript/pl/spells.txt -%%DATADIR%%/dat/descript/pl/tutorial.txt -%%DATADIR%%/dat/descript/pl/unident.txt -%%DATADIR%%/dat/descript/pl/unrand.txt -%%DATADIR%%/dat/descript/pt/commands.txt +%%DATADIR%%/dat/descript/lv/tutorial.txt +%%DATADIR%%/dat/descript/lv/backgrounds.txt +%%DATADIR%%/dat/descript/ko/gods.txt +%%DATADIR%%/dat/descript/ko/unrand.txt +%%DATADIR%%/dat/descript/ko/backgrounds.txt +%%DATADIR%%/dat/descript/ko/monsters.txt +%%DATADIR%%/dat/descript/ko/species.txt +%%DATADIR%%/dat/descript/ko/commands.txt +%%DATADIR%%/dat/descript/ko/unident.txt +%%DATADIR%%/dat/descript/ko/cards.txt +%%DATADIR%%/dat/descript/ko/hints.txt +%%DATADIR%%/dat/descript/ko/features.txt +%%DATADIR%%/dat/descript/ko/skills.txt +%%DATADIR%%/dat/descript/ko/items.txt +%%DATADIR%%/dat/descript/ko/ability.txt +%%DATADIR%%/dat/descript/ko/spells.txt +%%DATADIR%%/dat/descript/ko/tutorial.txt +%%DATADIR%%/dat/descript/ko/branches.txt %%DATADIR%%/dat/descript/pt/gods.txt -%%DATADIR%%/dat/descript/pt/items.txt %%DATADIR%%/dat/descript/pt/unident.txt -%%DATADIR%%/dat/descript/quotes.txt -%%DATADIR%%/dat/descript/ru/ability.txt -%%DATADIR%%/dat/descript/ru/backgrounds.txt -%%DATADIR%%/dat/descript/ru/branches.txt -%%DATADIR%%/dat/descript/ru/cards.txt -%%DATADIR%%/dat/descript/ru/commands.txt -%%DATADIR%%/dat/descript/ru/features.txt -%%DATADIR%%/dat/descript/ru/gods.txt -%%DATADIR%%/dat/descript/ru/items.txt -%%DATADIR%%/dat/descript/ru/monsters.txt -%%DATADIR%%/dat/descript/ru/quotes.txt -%%DATADIR%%/dat/descript/ru/skills.txt -%%DATADIR%%/dat/descript/ru/species.txt -%%DATADIR%%/dat/descript/ru/unident.txt -%%DATADIR%%/dat/descript/ru/unrand.txt -%%DATADIR%%/dat/descript/skills.txt -%%DATADIR%%/dat/descript/species.txt -%%DATADIR%%/dat/descript/spells.txt -%%DATADIR%%/dat/descript/tutorial.txt -%%DATADIR%%/dat/descript/unident.txt +%%DATADIR%%/dat/descript/pt/ability.txt +%%DATADIR%%/dat/descript/pt/items.txt +%%DATADIR%%/dat/descript/pt/commands.txt +%%DATADIR%%/dat/descript/hints.txt +%%DATADIR%%/dat/descript/fi/features.txt +%%DATADIR%%/dat/descript/fi/ability.txt +%%DATADIR%%/dat/descript/fi/unrand.txt +%%DATADIR%%/dat/descript/fi/backgrounds.txt +%%DATADIR%%/dat/descript/fi/items.txt +%%DATADIR%%/dat/descript/fi/species.txt +%%DATADIR%%/dat/descript/fi/unident.txt +%%DATADIR%%/dat/descript/fi/monsters.txt +%%DATADIR%%/dat/descript/fi/cards.txt +%%DATADIR%%/dat/descript/fi/commands.txt +%%DATADIR%%/dat/descript/fi/spells.txt +%%DATADIR%%/dat/descript/it/skills.txt +%%DATADIR%%/dat/descript/it/backgrounds.txt +%%DATADIR%%/dat/descript/it/gods.txt +%%DATADIR%%/dat/descript/it/species.txt +%%DATADIR%%/dat/descript/ability.txt +%%DATADIR%%/dat/descript/da/monsters.txt +%%DATADIR%%/dat/descript/da/skills.txt +%%DATADIR%%/dat/descript/da/species.txt +%%DATADIR%%/dat/descript/da/unident.txt +%%DATADIR%%/dat/descript/da/items.txt %%DATADIR%%/dat/descript/unrand.txt +%%DATADIR%%/dat/descript/tr/gods.txt +%%DATADIR%%/dat/descript/tr/tutorial.txt +%%DATADIR%%/dat/descript/tr/ability.txt +%%DATADIR%%/dat/descript/tr/unrand.txt +%%DATADIR%%/dat/descript/tr/items.txt +%%DATADIR%%/dat/descript/zh/gods.txt %%DATADIR%%/dat/descript/zh/ability.txt -%%DATADIR%%/dat/descript/zh/backgrounds.txt -%%DATADIR%%/dat/descript/zh/branches.txt +%%DATADIR%%/dat/descript/zh/monsters.txt %%DATADIR%%/dat/descript/zh/cards.txt +%%DATADIR%%/dat/descript/zh/backgrounds.txt +%%DATADIR%%/dat/descript/zh/unrand.txt %%DATADIR%%/dat/descript/zh/commands.txt -%%DATADIR%%/dat/descript/zh/features.txt -%%DATADIR%%/dat/descript/zh/gods.txt %%DATADIR%%/dat/descript/zh/items.txt -%%DATADIR%%/dat/descript/zh/monsters.txt -%%DATADIR%%/dat/descript/zh/skills.txt +%%DATADIR%%/dat/descript/zh/branches.txt %%DATADIR%%/dat/descript/zh/species.txt %%DATADIR%%/dat/descript/zh/unident.txt -%%DATADIR%%/dat/dlua/debug.lua -%%DATADIR%%/dat/dlua/dungeon.lua -%%DATADIR%%/dat/dlua/fnwrap.lua -%%DATADIR%%/dat/dlua/init.lua -%%DATADIR%%/dat/dlua/iter.lua -%%DATADIR%%/dat/dlua/lm_1way.lua -%%DATADIR%%/dat/dlua/lm_door.lua -%%DATADIR%%/dat/dlua/lm_flags.lua -%%DATADIR%%/dat/dlua/lm_fog.lua -%%DATADIR%%/dat/dlua/lm_items.lua -%%DATADIR%%/dat/dlua/lm_mon_prop.lua -%%DATADIR%%/dat/dlua/lm_monst.lua -%%DATADIR%%/dat/dlua/lm_mslav.lua -%%DATADIR%%/dat/dlua/lm_pdesc.lua -%%DATADIR%%/dat/dlua/lm_props.lua -%%DATADIR%%/dat/dlua/lm_timed.lua -%%DATADIR%%/dat/dlua/lm_tmsg.lua -%%DATADIR%%/dat/dlua/lm_toll.lua -%%DATADIR%%/dat/dlua/lm_trig.lua -%%DATADIR%%/dat/dlua/lm_trove.lua -%%DATADIR%%/dat/dlua/loadmaps.lua -%%DATADIR%%/dat/dlua/luamark.lua -%%DATADIR%%/dat/dlua/macro.lua -%%DATADIR%%/dat/dlua/mapinit.lua -%%DATADIR%%/dat/dlua/point.lua -%%DATADIR%%/dat/dlua/sanity.lua -%%DATADIR%%/dat/dlua/sprint.lua -%%DATADIR%%/dat/dlua/stress.lua -%%DATADIR%%/dat/dlua/tags.lua -%%DATADIR%%/dat/dlua/test.lua -%%DATADIR%%/dat/dlua/tutorial.lua -%%DATADIR%%/dat/dlua/userbase.lua -%%DATADIR%%/dat/dlua/util.lua -%%DATADIR%%/dat/dlua/ziggurat.lua -%%DATADIR%%/dat/lua/autofight.lua -%%DATADIR%%/dat/lua/gearset.lua -%%DATADIR%%/dat/lua/kills.lua -%%DATADIR%%/dat/lua/runrest.lua -%%DATADIR%%/dat/lua/stash.lua -%%DATADIR%%/dat/lua/trapwalk.lua -%%DATADIR%%/dat/lua/wield.lua -%%DATADIR%%/docs/CREDITS.txt -%%DATADIR%%/docs/aptitudes.txt -%%DATADIR%%/docs/arena.txt -%%DATADIR%%/docs/changelog.txt -%%DATADIR%%/docs/crawl_manual.txt -%%DATADIR%%/docs/develop/IRC.txt -%%DATADIR%%/docs/develop/coding_conventions.txt -%%DATADIR%%/docs/develop/gdb_tips.txt -%%DATADIR%%/docs/develop/levels/advanced.txt -%%DATADIR%%/docs/develop/levels/introduction.txt -%%DATADIR%%/docs/develop/levels/syntax.txt -%%DATADIR%%/docs/develop/levels/triggerables.txt -%%DATADIR%%/docs/develop/monster_speech.txt -%%DATADIR%%/docs/develop/new_dev_checklist.txt -%%DATADIR%%/docs/develop/patch_guide.txt -%%DATADIR%%/docs/develop/process.txt -%%DATADIR%%/docs/develop/release.txt -%%DATADIR%%/docs/develop/save_compatibility.txt -%%DATADIR%%/docs/develop/spells.txt -%%DATADIR%%/docs/develop/testing.txt -%%DATADIR%%/docs/develop/tiles_creation.txt -%%DATADIR%%/docs/fight_simulator.txt +%%DATADIR%%/dat/descript/zh/tutorial.txt +%%DATADIR%%/dat/descript/zh/hints.txt +%%DATADIR%%/dat/descript/zh/spells.txt +%%DATADIR%%/dat/descript/zh/skills.txt +%%DATADIR%%/dat/descript/zh/features.txt +%%DATADIR%%/docs/macros_guide.txt %%DATADIR%%/docs/key_changes.txt -%%DATADIR%%/docs/keybind.txt -%%DATADIR%%/docs/license/lgpl.txt -%%DATADIR%%/docs/license/libpng-LICENSE.txt +%%DATADIR%%/docs/quickstart.txt +%%DATADIR%%/docs/arena.txt %%DATADIR%%/docs/license/lualicense.txt +%%DATADIR%%/docs/license/worley.txt +%%DATADIR%%/docs/license/libpng-LICENSE.txt +%%DATADIR%%/docs/license/lgpl.txt %%DATADIR%%/docs/license/pcre_license.txt -%%DATADIR%%/docs/macros_guide.txt +%%DATADIR%%/docs/license/cc0.txt %%DATADIR%%/docs/options_guide.txt -%%DATADIR%%/docs/quickstart.txt +%%DATADIR%%/docs/aptitudes.txt +%%DATADIR%%/docs/crawl_manual.txt +%%DATADIR%%/docs/fight_simulator.txt %%DATADIR%%/docs/ssh_guide.txt +%%DATADIR%%/docs/changelog.txt +%%DATADIR%%/docs/keybind.txt %%DATADIR%%/docs/tiles_help.txt +%%DATADIR%%/docs/develop/save_compatibility.txt +%%DATADIR%%/docs/develop/android.txt +%%DATADIR%%/docs/develop/tiles_creation.txt +%%DATADIR%%/docs/develop/monster_speech.txt +%%DATADIR%%/docs/develop/testing.txt +%%DATADIR%%/docs/develop/process.txt +%%DATADIR%%/docs/develop/levels/triggerables.txt +%%DATADIR%%/docs/develop/levels/advanced.txt +%%DATADIR%%/docs/develop/levels/syntax.txt +%%DATADIR%%/docs/develop/levels/introduction.txt +%%DATADIR%%/docs/develop/coding_conventions.txt +%%DATADIR%%/docs/develop/patch_guide.txt +%%DATADIR%%/docs/develop/gdb_tips.txt +%%DATADIR%%/docs/develop/new_dev_checklist.txt +%%DATADIR%%/docs/develop/spells.txt +%%DATADIR%%/docs/develop/IRC.txt +%%DATADIR%%/docs/develop/release.txt +%%DATADIR%%/docs/CREDITS.txt %%DATADIR%%/docs/translation.txt -%%DATADIR%%/settings/0.9_monster_glyphs.txt +%%DATADIR%%/settings/no_vi_command_keys.txt %%DATADIR%%/settings/034_command_keys.txt -%%DATADIR%%/settings/034_monster_glyphs.txt +%%DATADIR%%/settings/advanced_optioneering.txt +%%DATADIR%%/settings/init.txt +%%DATADIR%%/settings/080_monster_glyphs.txt %%DATADIR%%/settings/052_monster_glyphs.txt %%DATADIR%%/settings/060_monster_glyphs.txt +%%DATADIR%%/settings/0.9_monster_glyphs.txt +%%DATADIR%%/settings/034_monster_glyphs.txt %%DATADIR%%/settings/071_monster_glyphs.txt -%%DATADIR%%/settings/080_monster_glyphs.txt -%%DATADIR%%/settings/advanced_optioneering.txt -%%DATADIR%%/settings/autopickup_exceptions.txt %%DATADIR%%/settings/dvorak_command_keys.txt -%%DATADIR%%/settings/food_colouring.txt -%%DATADIR%%/settings/init.txt -%%DATADIR%%/settings/menu_colours.txt -%%DATADIR%%/settings/messages.txt -%%DATADIR%%/settings/no_vi_command_keys.txt -%%DATADIR%%/settings/runrest_messages.txt -%%DATADIR%%/settings/standard_colours.txt -%%DATADIR%%/settings/tiles_options.txt -%%SDL%%%%DATADIR%%/dat/tiles/feat.png -%%SDL%%%%DATADIR%%/dat/tiles/floor.png -%%SDL%%%%DATADIR%%/dat/tiles/gui.png -%%SDL%%%%DATADIR%%/dat/tiles/icons.png -%%SDL%%%%DATADIR%%/dat/tiles/logo.png -%%SDL%%%%DATADIR%%/dat/tiles/main.png +%%SDL%%%%DATADIR%%/dat/tiles/title_white_noise_grabbing_the_orb.png +%%SDL%%%%DATADIR%%/dat/tiles/stone_soup_icon-win32.png +%%SDL%%%%DATADIR%%/dat/tiles/wall.png +%%SDL%%%%DATADIR%%/dat/tiles/title_denzi_undead_warrior.png +%%SDL%%%%DATADIR%%/dat/tiles/title_denzi_dragon.png %%SDL%%%%DATADIR%%/dat/tiles/player.png +%%SDL%%%%DATADIR%%/dat/tiles/title_shadyamish_octm.png +%%SDL%%%%DATADIR%%/dat/tiles/title_white_noise_entering_the_dungeon.png +%%SDL%%%%DATADIR%%/dat/tiles/icons.png +%%SDL%%%%DATADIR%%/dat/tiles/feat.png +%%SDL%%%%DATADIR%%/dat/tiles/title_pooryurik_knight.png %%SDL%%%%DATADIR%%/dat/tiles/stone_soup_icon-32x32.png +%%SDL%%%%DATADIR%%/dat/tiles/title_firemage.png +%%SDL%%%%DATADIR%%/dat/tiles/title_omndra_zot_demon.png +%%SDL%%%%DATADIR%%/dat/tiles/logo.png +%%SDL%%%%DATADIR%%/dat/tiles/floor.png %%SDL%%%%DATADIR%%/dat/tiles/stone_soup_icon-512x512.png -%%SDL%%%%DATADIR%%/dat/tiles/stone_soup_icon-win32.png -%%SDL%%%%DATADIR%%/dat/tiles/title_denzi_dragon.png -%%SDL%%%%DATADIR%%/dat/tiles/title_denzi_evil_mage.png -%%SDL%%%%DATADIR%%/dat/tiles/title_denzi_invasion.png +%%SDL%%%%DATADIR%%/dat/tiles/title_psiweapon_kiku.png %%SDL%%%%DATADIR%%/dat/tiles/title_denzi_kitchen_duty.png +%%SDL%%%%DATADIR%%/dat/tiles/title_denzi_invasion.png %%SDL%%%%DATADIR%%/dat/tiles/title_denzi_summoner.png -%%SDL%%%%DATADIR%%/dat/tiles/title_denzi_undead_warrior.png -%%SDL%%%%DATADIR%%/dat/tiles/title_firemage.png -%%SDL%%%%DATADIR%%/dat/tiles/title_omndra_zot_demon.png -%%SDL%%%%DATADIR%%/dat/tiles/title_pooryurik_knight.png -%%SDL%%%%DATADIR%%/dat/tiles/title_shadyamish_octm.png -%%SDL%%%%DATADIR%%/dat/tiles/title_white_noise_entering_the_dungeon.png -%%SDL%%%%DATADIR%%/dat/tiles/title_white_noise_grabbing_the_orb.png -%%SDL%%%%DATADIR%%/dat/tiles/wall.png +%%SDL%%%%DATADIR%%/dat/tiles/gui.png +%%SDL%%%%DATADIR%%/dat/tiles/main.png +%%SDL%%%%DATADIR%%/dat/tiles/title_denzi_evil_mage.png %%SDL%%@dirrm %%DATADIR%%/dat/tiles -@dirrm %%DATADIR%%/settings -@dirrm %%DATADIR%%/docs/license -@dirrm %%DATADIR%%/docs/develop/levels -@dirrm %%DATADIR%%/docs/develop -@dirrm %%DATADIR%%/docs -@dirrm %%DATADIR%%/dat/lua +@dirrm %%DATADIR%%/dat/database/el +@dirrm %%DATADIR%%/dat/database/pl +@dirrm %%DATADIR%%/dat/database +@dirrm %%DATADIR%%/dat/dlua/layout @dirrm %%DATADIR%%/dat/dlua -@dirrm %%DATADIR%%/dat/descript/zh -@dirrm %%DATADIR%%/dat/descript/ru -@dirrm %%DATADIR%%/dat/descript/pt +@dirrm %%DATADIR%%/dat/clua +@dirrm %%DATADIR%%/dat/des/tutorial +@dirrm %%DATADIR%%/dat/des/entry +@dirrm %%DATADIR%%/dat/des/portals +@dirrm %%DATADIR%%/dat/des/variable +@dirrm %%DATADIR%%/dat/des/branches +@dirrm %%DATADIR%%/dat/des/sprint +@dirrm %%DATADIR%%/dat/des/zotdef +@dirrm %%DATADIR%%/dat/des/traps +@dirrm %%DATADIR%%/dat/des/altar +@dirrm %%DATADIR%%/dat/des/builder +@dirrm %%DATADIR%%/dat/des/serial +@dirrm %%DATADIR%%/dat/des +@dirrm %%DATADIR%%/dat/defaults +@dirrm %%DATADIR%%/dat/descript/hu +@dirrm %%DATADIR%%/dat/descript/es @dirrm %%DATADIR%%/dat/descript/pl -@dirrm %%DATADIR%%/dat/descript/lv @dirrm %%DATADIR%%/dat/descript/lt -@dirrm %%DATADIR%%/dat/descript/ko -@dirrm %%DATADIR%%/dat/descript/it -@dirrm %%DATADIR%%/dat/descript/hu +@dirrm %%DATADIR%%/dat/descript/cs @dirrm %%DATADIR%%/dat/descript/fr -@dirrm %%DATADIR%%/dat/descript/fi -@dirrm %%DATADIR%%/dat/descript/es @dirrm %%DATADIR%%/dat/descript/el +@dirrm %%DATADIR%%/dat/descript/ja @dirrm %%DATADIR%%/dat/descript/de +@dirrm %%DATADIR%%/dat/descript/ru +@dirrm %%DATADIR%%/dat/descript/lv +@dirrm %%DATADIR%%/dat/descript/ko +@dirrm %%DATADIR%%/dat/descript/pt +@dirrm %%DATADIR%%/dat/descript/fi +@dirrm %%DATADIR%%/dat/descript/it @dirrm %%DATADIR%%/dat/descript/da -@dirrm %%DATADIR%%/dat/descript/cs +@dirrm %%DATADIR%%/dat/descript/tr +@dirrm %%DATADIR%%/dat/descript/zh @dirrm %%DATADIR%%/dat/descript -@dirrm %%DATADIR%%/dat/des/zotdef -@dirrm %%DATADIR%%/dat/des/variable -@dirrm %%DATADIR%%/dat/des/tutorial -@dirrm %%DATADIR%%/dat/des/traps -@dirrm %%DATADIR%%/dat/des/sprint -@dirrm %%DATADIR%%/dat/des/serial -@dirrm %%DATADIR%%/dat/des/portals -@dirrm %%DATADIR%%/dat/des/entry -@dirrm %%DATADIR%%/dat/des/builder -@dirrm %%DATADIR%%/dat/des/branches -@dirrm %%DATADIR%%/dat/des/altar -@dirrm %%DATADIR%%/dat/des -@dirrm %%DATADIR%%/dat/defaults -@dirrm %%DATADIR%%/dat/database/pl -@dirrm %%DATADIR%%/dat/database/el -@dirrm %%DATADIR%%/dat/database -@dirrm %%DATADIR%%/dat/clua @dirrm %%DATADIR%%/dat +@dirrm %%DATADIR%%/docs/license +@dirrm %%DATADIR%%/docs/develop/levels +@dirrm %%DATADIR%%/docs/develop +@dirrm %%DATADIR%%/docs +@dirrm %%DATADIR%%/settings @dirrm %%DATADIR%% %%PORTDOCS%%%%DOCSDIR%%/README.FreeBSD %%PORTDOCS%%@dirrm %%DOCSDIR%% --- games__stonesoup-0.11.1-0_12.3.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 20:30:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 907AC489 for ; Sat, 28 Sep 2013 20:30:01 +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 647AE20EF for ; Sat, 28 Sep 2013 20:30:01 +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 r8SKU1Bo091022 for ; Sat, 28 Sep 2013 20:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8SKU1CR091004; Sat, 28 Sep 2013 20:30:01 GMT (envelope-from gnats) Date: Sat, 28 Sep 2013 20:30:01 GMT Message-Id: <201309282030.r8SKU1CR091004@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Tobias Rehbein Subject: Re: ports/179834: [maintainer-update] update games/stonesoup to version 0.12.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Tobias Rehbein List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 Sep 2013 20:30:01 -0000 The following reply was made to PR ports/179834; it has been noted by GNATS. From: Tobias Rehbein To: bug-followup@FreeBSD.org Cc: Nikolai Lifanov Subject: Re: ports/179834: [maintainer-update] update games/stonesoup to version 0.12.2 Date: Sat, 28 Sep 2013 22:22:25 +0200 Please close this PR as it has been obsoleted by ports/182467. From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 22:30:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id A380875D for ; Sat, 28 Sep 2013 22:30:01 +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 7E443267C for ; Sat, 28 Sep 2013 22:30:01 +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 r8SMU160015002 for ; Sat, 28 Sep 2013 22:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8SMU1wK015001; Sat, 28 Sep 2013 22:30:01 GMT (envelope-from gnats) Resent-Date: Sat, 28 Sep 2013 22:30:01 GMT Resent-Message-Id: <201309282230.r8SMU1wK015001@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, Peter Jeremy 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 9A0A5734 for ; Sat, 28 Sep 2013 22:28:57 +0000 (UTC) (envelope-from peter@rulingia.com) Received: from vps.rulingia.com (host-122-100-2-194.octopus.com.au [122.100.2.194]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 32AB1266A for ; Sat, 28 Sep 2013 22:28:56 +0000 (UTC) Received: from server.rulingia.com (c220-239-237-213.belrs5.nsw.optusnet.com.au [220.239.237.213]) by vps.rulingia.com (8.14.7/8.14.5) with ESMTP id r8SMSsYJ029918 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Sun, 29 Sep 2013 08:28:54 +1000 (EST) (envelope-from peter@rulingia.com) Received: from server.rulingia.com (localhost.rulingia.com [127.0.0.1]) by server.rulingia.com (8.14.7/8.14.7) with ESMTP id r8SMSmbL022939 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Sun, 29 Sep 2013 08:28:49 +1000 (EST) (envelope-from peter@server.rulingia.com) Received: (from peter@localhost) by server.rulingia.com (8.14.7/8.14.7/Submit) id r8SMSmsY022938; Sun, 29 Sep 2013 08:28:48 +1000 (EST) (envelope-from peter) Message-Id: <201309282228.r8SMSmsY022938@server.rulingia.com> Date: Sun, 29 Sep 2013 08:28:48 +1000 (EST) From: Peter Jeremy To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/182469: emulators/virtualbox-ose VNC extension has incorrect perms X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Peter Jeremy List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 Sep 2013 22:30:01 -0000 >Number: 182469 >Category: ports >Synopsis: emulators/virtualbox-ose VNC extension has incorrect perms >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Sep 28 22:30:01 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Peter Jeremy >Release: FreeBSD 10.0-CURRENT amd64 >Organization: n/a >Environment: System: FreeBSD server.rulingia.com 10.0-CURRENT FreeBSD 10.0-CURRENT #21: Wed Jul 10 19:50:48 EST 2013 root@server.rulingia.com:/var/obj/usr/src/sys/server amd64 virtualbox-ose-4.2.18-1 >Description: If the VNC extension is enabled (the default), the actual extension package is installed under the ownership of the person who built VBox, rather than root. As a result, VBox refuses to use the VNC extension. >How-To-Repeat: server% VBoxManage list extpacks Extension Packs: 1 Pack no. 0: VNC Version: Revision: 0 Edition: Description: VRDE Module: Usable: false Why unusable: The owner is not root: '/usr/local/lib/virtualbox/ExtensionPacks/VNC' (rc=VERR_SUPLIB_OWNER_NOT_ROOT) >Fix: sudo chown -R root /usr/local/lib/virtualbox/ExtensionPacks >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 22:30:01 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 5CAEA75B for ; Sat, 28 Sep 2013 22:30:01 +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 36C53267A for ; Sat, 28 Sep 2013 22:30:01 +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 r8SMU1J9014991 for ; Sat, 28 Sep 2013 22:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8SMU1c3014990; Sat, 28 Sep 2013 22:30:01 GMT (envelope-from gnats) Resent-Date: Sat, 28 Sep 2013 22:30:01 GMT Resent-Message-Id: <201309282230.r8SMU1c3014990@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, Peter Jeremy Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id ECDB8689 for ; Sat, 28 Sep 2013 22:22:59 +0000 (UTC) (envelope-from peter@rulingia.com) Received: from vps.rulingia.com (host-122-100-2-194.octopus.com.au [122.100.2.194]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6D544263B for ; Sat, 28 Sep 2013 22:22:58 +0000 (UTC) Received: from server.rulingia.com (c220-239-237-213.belrs5.nsw.optusnet.com.au [220.239.237.213]) by vps.rulingia.com (8.14.7/8.14.5) with ESMTP id r8SMMtpw029912 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Sun, 29 Sep 2013 08:22:55 +1000 (EST) (envelope-from peter@rulingia.com) Received: from server.rulingia.com (localhost.rulingia.com [127.0.0.1]) by server.rulingia.com (8.14.7/8.14.7) with ESMTP id r8SMMnrT090098 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Sun, 29 Sep 2013 08:22:49 +1000 (EST) (envelope-from peter@server.rulingia.com) Received: (from peter@localhost) by server.rulingia.com (8.14.7/8.14.7/Submit) id r8SMMnX4090090; Sun, 29 Sep 2013 08:22:49 +1000 (EST) (envelope-from peter) Message-Id: <201309282222.r8SMMnX4090090@server.rulingia.com> Date: Sun, 29 Sep 2013 08:22:49 +1000 (EST) From: Peter Jeremy To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/182468: [patch] lang/gcc builds unrunnable emulators/virtualbox-ose X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Peter Jeremy List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 Sep 2013 22:30:01 -0000 >Number: 182468 >Category: ports >Synopsis: [patch] lang/gcc builds unrunnable emulators/virtualbox-ose >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Sep 28 22:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Peter Jeremy >Release: FreeBSD 10.0-CURRENT amd64 >Organization: n/a >Environment: System: FreeBSD server.rulingia.com 10.0-CURRENT FreeBSD 10.0-CURRENT #21: Wed Jul 10 19:50:48 EST 2013 root@server.rulingia.com:/var/obj/usr/src/sys/server amd64 >Description: emulators/virtualbox-ose builds with lang/gcc (gcc46) by default. As a result, the VBox executables are linked with shared libraries in /usr/local/lib/gcc46. Unfortunately, that path isn't part of RPATH in the VBox executables so rtld attempts to use /usr/lib/libstdc++.so.6 instead of /usr/local/lib/gcc46/libstdc++.so.6 which fails due to a missinng symbol. This is a manifestation of the problem I reported in ports/142226 (which was never really fixed). >How-To-Repeat: Build emulators/virtualbox-ose and try to run it. >Fix: The following is a work-around. It's not a proper fix but is no worse than the kludge in Mk/bsd.gcc.mk (which doesn't actually work in all cases). Index: emulators/virtualbox-ose/Makefile =================================================================== --- emulators/virtualbox-ose/Makefile (revision 328569) +++ emulators/virtualbox-ose/Makefile (working copy) @@ -210,7 +210,7 @@ post-patch: @${ECHO} 'VBOX_PATH_APP_PRIVATE_ARCH = ${PREFIX}/lib/virtualbox' > ${WRKSRC}/LocalConfig.kmk @${ECHO} 'VBOX_PATH_SHARED_LIBS = ${PREFIX}/lib/virtualbox' >> ${WRKSRC}/LocalConfig.kmk - @${ECHO} 'VBOX_WITH_RUNPATH = ${PREFIX}/lib/virtualbox' >> ${WRKSRC}/LocalConfig.kmk + @${ECHO} 'VBOX_WITH_RUNPATH = ${_GCC_RUNTIME}:${PREFIX}/lib/virtualbox' >> ${WRKSRC}/LocalConfig.kmk @${ECHO} 'VBOX_PATH_APP_PRIVATE = ${DATADIR}' >> ${WRKSRC}/LocalConfig.kmk @${ECHO} 'VBOX_PATH_APP_DOCS = ${DOCSDIR}' >> ${WRKSRC}/LocalConfig.kmk @${ECHO} 'VBOX_WITH_INSTALLER = 1' >> ${WRKSRC}/LocalConfig.kmk >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 22:30:09 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 BD79A792; Sat, 28 Sep 2013 22:30:09 +0000 (UTC) (envelope-from edwin@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 94EC12682; Sat, 28 Sep 2013 22:30:09 +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 r8SMU9eJ015098; Sat, 28 Sep 2013 22:30:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8SMU9H5015097; Sat, 28 Sep 2013 22:30:09 GMT (envelope-from edwin) Date: Sat, 28 Sep 2013 22:30:09 GMT Message-Id: <201309282230.r8SMU9H5015097@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gerald@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182468: [patch] lang/gcc builds unrunnable emulators/virtualbox-ose 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, 28 Sep 2013 22:30:09 -0000 Synopsis: [patch] lang/gcc builds unrunnable emulators/virtualbox-ose Responsible-Changed-From-To: freebsd-ports-bugs->gerald Responsible-Changed-By: edwin Responsible-Changed-When: Sat Sep 28 22:30:09 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182468 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 22:30:31 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 95550827; Sat, 28 Sep 2013 22:30:31 +0000 (UTC) (envelope-from edwin@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 6CD3A26B1; Sat, 28 Sep 2013 22:30:31 +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 r8SMUVui015261; Sat, 28 Sep 2013 22:30:31 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8SMUVL1015260; Sat, 28 Sep 2013 22:30:31 GMT (envelope-from edwin) Date: Sat, 28 Sep 2013 22:30:31 GMT Message-Id: <201309282230.r8SMUVL1015260@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, amdmi3@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182470: [PATCH] devel/gitg: update to 0.2.7 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, 28 Sep 2013 22:30:31 -0000 Synopsis: [PATCH] devel/gitg: update to 0.2.7 Responsible-Changed-From-To: freebsd-ports-bugs->amdmi3 Responsible-Changed-By: edwin Responsible-Changed-When: Sat Sep 28 22:30:31 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182470 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 22:30:15 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 1950E7C4; Sat, 28 Sep 2013 22:30:15 +0000 (UTC) (envelope-from edwin@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 E37FA2684; Sat, 28 Sep 2013 22:30:14 +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 r8SMUE1i015180; Sat, 28 Sep 2013 22:30:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8SMUEXT015179; Sat, 28 Sep 2013 22:30:14 GMT (envelope-from edwin) Date: Sat, 28 Sep 2013 22:30:14 GMT Message-Id: <201309282230.r8SMUEXT015179@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vbox@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182469: emulators/virtualbox-ose VNC extension has incorrect perms 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, 28 Sep 2013 22:30:15 -0000 Synopsis: emulators/virtualbox-ose VNC extension has incorrect perms Responsible-Changed-From-To: freebsd-ports-bugs->vbox Responsible-Changed-By: edwin Responsible-Changed-When: Sat Sep 28 22:30:14 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182469 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 22:30:02 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 20FC875F for ; Sat, 28 Sep 2013 22:30:02 +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 002CC267E for ; Sat, 28 Sep 2013 22:30:01 +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 r8SMU1tx015018 for ; Sat, 28 Sep 2013 22:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8SMU101015015; Sat, 28 Sep 2013 22:30:01 GMT (envelope-from gnats) Resent-Date: Sat, 28 Sep 2013 22:30:01 GMT Resent-Message-Id: <201309282230.r8SMU101015015@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, Sergey Brunov Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 35AD069D; Sat, 28 Sep 2013 22:23:36 +0000 (UTC) (envelope-from sergey.v.brunov@gmail.com) Received: from mail-la0-x22b.google.com (mail-la0-x22b.google.com [IPv6:2a00:1450:4010:c03::22b]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8C4402642; Sat, 28 Sep 2013 22:23:35 +0000 (UTC) Received: by mail-la0-f43.google.com with SMTP id ep20so3252937lab.2 for ; Sat, 28 Sep 2013 15:23:33 -0700 (PDT) Received: from localhost (109-184-8-75.dynamic.mts-nn.ru. [109.184.8.75]) by mx.google.com with ESMTPSA id f17sm10472895lbo.12.1969.12.31.16.00.00 (version=TLSv1 cipher=RC4-SHA bits=128/128); Sat, 28 Sep 2013 15:23:32 -0700 (PDT) Received: by localhost (sSMTP sendmail emulation); Sun, 29 Sep 2013 02:21:42 +0000 Message-Id: <524756e4.f132700a.6e94.fffffc54@mx.google.com> Date: Sun, 29 Sep 2013 02:21:42 +0000 From: Sergey Brunov To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/182470: [PATCH] devel/gitg: update to 0.2.7 Cc: amdmi3@FreeBSD.org 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, 28 Sep 2013 22:30:02 -0000 >Number: 182470 >Category: ports >Synopsis: [PATCH] devel/gitg: update to 0.2.7 >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Sep 28 22:30:01 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Sergey Brunov >Release: FreeBSD 9.2-RC4 amd64 >Organization: >Environment: System: FreeBSD NetMan-NB 9.2-RC4 FreeBSD 9.2-RC4 #0 r255465: Wed Sep 11 05:11:03 UTC >Description: - Update to 0.2.7 * Fix crash at startup. Port maintainer (amdmi3@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_8 (mode: update, diff: suffix) >How-To-Repeat: >Fix: --- gitg-0.2.7.patch begins here --- diff -ruN ../gitg.orig/Makefile ./Makefile --- ../gitg.orig/Makefile 2013-09-29 01:43:47.000000000 +0000 +++ ./Makefile 2013-09-29 01:50:05.000000000 +0000 @@ -2,9 +2,10 @@ # $FreeBSD: devel/gitg/Makefile 328536 2013-09-28 00:30:36Z amdmi3 $ PORTNAME= gitg -PORTVERSION= 0.2.5 +PORTVERSION= 0.2.7 CATEGORIES= devel deskutils gnome MASTER_SITES= GNOME +EXTRACT_SUFX=.tar.xz MAINTAINER= amdmi3@FreeBSD.org COMMENT= GTK-based git repository viewer diff -ruN ../gitg.orig/distinfo ./distinfo --- ../gitg.orig/distinfo 2013-09-29 01:43:47.000000000 +0000 +++ ./distinfo 2013-09-29 01:50:21.000000000 +0000 @@ -1,2 +1,2 @@ -SHA256 (gitg-0.2.5.tar.bz2) = 84b159fc77901767772d5c9ff3e0dec67d9e51bc12ab1e461b8a16deea8bfb68 -SIZE (gitg-0.2.5.tar.bz2) = 623306 +SHA256 (gitg-0.2.7.tar.xz) = c07fc4fc6cef31a06f0b9daa2ed23a5d0f6cb0a10a728324970675fc7001d095 +SIZE (gitg-0.2.7.tar.xz) = 528904 diff -ruN ../gitg.orig/pkg-plist ./pkg-plist --- ../gitg.orig/pkg-plist 2013-09-29 01:43:47.000000000 +0000 +++ ./pkg-plist 2013-09-29 02:18:46.000000000 +0000 @@ -18,7 +18,6 @@ lib/libgitg-1.0.so lib/libgitg-1.0.so.0 libdata/pkgconfig/libgitg-1.0.pc -man/man1/gitg.1.gz share/applications/gitg.desktop %%DATADIR%%/icons/gitg.svg %%DATADIR%%/icons/gitg128x128.png @@ -65,25 +64,25 @@ %%NLS%%share/locale/sv/LC_MESSAGES/gitg.mo %%NLS%%share/locale/uk/LC_MESSAGES/gitg.mo %%NLS%%share/locale/zh_CN/LC_MESSAGES/gitg.mo -@dirrmtry share/icons/hicolor/scalable/apps -@dirrmtry share/icons/hicolor/scalable -@dirrmtry share/icons/hicolor/48x48/apps -@dirrmtry share/icons/hicolor/48x48 -@dirrmtry share/icons/hicolor/32x32/apps -@dirrmtry share/icons/hicolor/32x32 -@dirrmtry share/icons/hicolor/24x24/apps -@dirrmtry share/icons/hicolor/24x24 -@dirrmtry share/icons/hicolor/22x22/apps -@dirrmtry share/icons/hicolor/22x22 -@dirrmtry share/icons/hicolor/16x16/apps -@dirrmtry share/icons/hicolor/16x16 -@dirrmtry share/icons/hicolor -@dirrmtry share/icons +@dirrm share/icons/hicolor/scalable/apps +@dirrm share/icons/hicolor/scalable +@dirrm share/icons/hicolor/48x48/apps +@dirrm share/icons/hicolor/48x48 +@dirrm share/icons/hicolor/32x32/apps +@dirrm share/icons/hicolor/32x32 +@dirrm share/icons/hicolor/24x24/apps +@dirrm share/icons/hicolor/24x24 +@dirrm share/icons/hicolor/22x22/apps +@dirrm share/icons/hicolor/22x22 +@dirrm share/icons/hicolor/16x16/apps +@dirrm share/icons/hicolor/16x16 +@dirrm share/icons/hicolor +@dirrm share/icons @dirrm %%DATADIR%%/ui @dirrm %%DATADIR%%/styles @dirrm %%DATADIR%%/language-specs @dirrm %%DATADIR%%/icons @dirrm %%DATADIR%% -@dirrmtry share/applications +@dirrm share/applications @dirrm include/libgitg-1.0/libgitg @dirrm include/libgitg-1.0 --- gitg-0.2.7.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 23:00:02 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 30D8DBBB for ; Sat, 28 Sep 2013 23:00:02 +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 0FD3C27C3 for ; Sat, 28 Sep 2013 23:00:02 +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 r8SN01eF020591 for ; Sat, 28 Sep 2013 23:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8SN01A2020590; Sat, 28 Sep 2013 23:00:01 GMT (envelope-from gnats) Resent-Date: Sat, 28 Sep 2013 23:00:01 GMT Resent-Message-Id: <201309282300.r8SN01A2020590@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, Sergey Brunov 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 DD4F5B84; Sat, 28 Sep 2013 22:56:42 +0000 (UTC) (envelope-from sergey.v.brunov@gmail.com) Received: from mail-lb0-x235.google.com (mail-lb0-x235.google.com [IPv6:2a00:1450:4010:c04::235]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3EB8927B0; Sat, 28 Sep 2013 22:56:42 +0000 (UTC) Received: by mail-lb0-f181.google.com with SMTP id u14so3394081lbd.12 for ; Sat, 28 Sep 2013 15:56:40 -0700 (PDT) Received: from localhost (109-184-8-75.dynamic.mts-nn.ru. [109.184.8.75]) by mx.google.com with ESMTPSA id u20sm10553700lbh.7.1969.12.31.16.00.00 (version=TLSv1 cipher=RC4-SHA bits=128/128); Sat, 28 Sep 2013 15:56:39 -0700 (PDT) Received: by localhost (sSMTP sendmail emulation); Sun, 29 Sep 2013 02:54:50 +0000 Message-Id: <52475ea7.d41e700a.770d.fffff971@mx.google.com> Date: Sun, 29 Sep 2013 02:54:50 +0000 From: Sergey Brunov To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/182472: [PATCH] devel/gitg: update to 0.2.7 Cc: amdmi3@FreeBSD.org 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, 28 Sep 2013 23:00:02 -0000 >Number: 182472 >Category: ports >Synopsis: [PATCH] devel/gitg: update to 0.2.7 >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 Sep 28 23:00:01 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Sergey Brunov >Release: FreeBSD 9.2-RC4 amd64 >Organization: >Environment: System: FreeBSD NetMan-NB 9.2-RC4 FreeBSD 9.2-RC4 #0 r255465: Wed Sep 11 05:11:03 UTC >Description: - Update to 0.2.7 Corrected to use dirrmtry. Port maintainer (amdmi3@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_8 (mode: update, diff: suffix) >How-To-Repeat: >Fix: --- gitg-0.2.7.patch begins here --- diff -ruN ../gitg.orig/Makefile ./Makefile --- ../gitg.orig/Makefile 2013-09-29 01:43:47.000000000 +0000 +++ ./Makefile 2013-09-29 01:50:05.000000000 +0000 @@ -2,9 +2,10 @@ # $FreeBSD: devel/gitg/Makefile 328536 2013-09-28 00:30:36Z amdmi3 $ PORTNAME= gitg -PORTVERSION= 0.2.5 +PORTVERSION= 0.2.7 CATEGORIES= devel deskutils gnome MASTER_SITES= GNOME +EXTRACT_SUFX=.tar.xz MAINTAINER= amdmi3@FreeBSD.org COMMENT= GTK-based git repository viewer diff -ruN ../gitg.orig/distinfo ./distinfo --- ../gitg.orig/distinfo 2013-09-29 01:43:47.000000000 +0000 +++ ./distinfo 2013-09-29 01:50:21.000000000 +0000 @@ -1,2 +1,2 @@ -SHA256 (gitg-0.2.5.tar.bz2) = 84b159fc77901767772d5c9ff3e0dec67d9e51bc12ab1e461b8a16deea8bfb68 -SIZE (gitg-0.2.5.tar.bz2) = 623306 +SHA256 (gitg-0.2.7.tar.xz) = c07fc4fc6cef31a06f0b9daa2ed23a5d0f6cb0a10a728324970675fc7001d095 +SIZE (gitg-0.2.7.tar.xz) = 528904 --- gitg-0.2.7.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 23:00:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 92273BB7 for ; Sat, 28 Sep 2013 23:00:01 +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 6DC0227C1 for ; Sat, 28 Sep 2013 23:00:01 +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 r8SN01cL020578 for ; Sat, 28 Sep 2013 23:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8SN01jC020577; Sat, 28 Sep 2013 23:00:01 GMT (envelope-from gnats) Resent-Date: Sat, 28 Sep 2013 23:00:01 GMT Resent-Message-Id: <201309282300.r8SN01jC020577@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, Peter Jeremy Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 2760FACC for ; Sat, 28 Sep 2013 22:50:50 +0000 (UTC) (envelope-from peter@rulingia.com) Received: from vps.rulingia.com (host-122-100-2-194.octopus.com.au [122.100.2.194]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9CB6E277E for ; Sat, 28 Sep 2013 22:50:48 +0000 (UTC) Received: from server.rulingia.com (c220-239-237-213.belrs5.nsw.optusnet.com.au [220.239.237.213]) by vps.rulingia.com (8.14.7/8.14.5) with ESMTP id r8SMokdo029968 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Sun, 29 Sep 2013 08:50:47 +1000 (EST) (envelope-from peter@rulingia.com) Received: from server.rulingia.com (localhost.rulingia.com [127.0.0.1]) by server.rulingia.com (8.14.7/8.14.7) with ESMTP id r8SMofw0023231 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Sun, 29 Sep 2013 08:50:41 +1000 (EST) (envelope-from peter@server.rulingia.com) Received: (from peter@localhost) by server.rulingia.com (8.14.7/8.14.7/Submit) id r8SMofvo023230; Sun, 29 Sep 2013 08:50:41 +1000 (EST) (envelope-from peter) Message-Id: <201309282250.r8SMofvo023230@server.rulingia.com> Date: Sun, 29 Sep 2013 08:50:41 +1000 (EST) From: Peter Jeremy To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/182471: emulators/virtualbox-ose gets SIGBUS with VNC X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Peter Jeremy List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 Sep 2013 23:00:01 -0000 >Number: 182471 >Category: ports >Synopsis: emulators/virtualbox-ose gets SIGBUS with VNC >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Sep 28 23:00:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Peter Jeremy >Release: FreeBSD 10.0-CURRENT amd64 >Organization: n/a >Environment: System: FreeBSD server.rulingia.com 10.0-CURRENT FreeBSD 10.0-CURRENT #21: Wed Jul 10 19:50:48 EST 2013 root@server.rulingia.com:/var/obj/usr/src/sys/server amd64 virtualbox-ose-4.2.18_1 tightvnc-1.3.10_3 >Description: If I configure a VBox client to use VNC with simple authentication then connecting to it from a VNC viewer causes it to die with SIGBUS. This doesn't occur if I don't configure authentication (though my VNC client still asks for a password and VBox always rejects the connection). This is a regression from VBox 4.1 - which didn't request authentication if it wasn't configured. >How-To-Repeat: VBoxManage setproperty vrdeauthlibrary "VBoxAuthSimple" VBoxManage modifyvm FreeBSD_64-10 --vrde on --vrdeextpack VNC --vrdeaddress 192.168.123.200 --vrdeport 6213 --vrdeauthtype external VBoxManage setextradata FreeBSD-10 "VBoxAuthSimple/users/peter" $(VBoxManage internalcommands passwordhash MyVncPassword | sed 's/^.* //') VBoxHeadless -s FreeBSD_64-10 Oracle VM VirtualBox Headless Interface 4.2.18_OSE (C) 2008-2013 Oracle Corporation All rights reserved. 28/09/2013 19:26:05 Listening for VNC connections on TCP port 6213 VRDE server is listening on port 6213. Then in another terminal: vncviewer 192.168.123.200:6213 Connected to RFB server, using protocol version 3.8 Performing standard VNC authentication Password: password check failed! This triggers the following output from VBoxHeadless (the 'Password:' prompt matches 08:33:16 and the password was entered at 08:33:25) 29/09/2013 08:33:16 other clients: 29/09/2013 08:33:16 Client Protocol Version 3.8 29/09/2013 08:33:16 Protocol version sent 3.8, using 3.8 29/09/2013 08:33:16 rfbProcessClientSecurityType: executing handler for type 2 29/09/2013 08:33:25 authProcessClientMessage: authentication failed from 192.168.123.161 29/09/2013 08:33:25 rfbAuthProcessClientMessage: password check failed 29/09/2013 08:33:25 rfbClientSendString("password check failed!") zsh: bus error VBoxHeadless -s FreeBSD_64-10 >Fix: Unknown. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 23:00:15 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 16E9BC1B; Sat, 28 Sep 2013 23:00:15 +0000 (UTC) (envelope-from edwin@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 E183727C7; Sat, 28 Sep 2013 23:00:14 +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 r8SN0EAs020755; Sat, 28 Sep 2013 23:00:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8SN0ETQ020754; Sat, 28 Sep 2013 23:00:14 GMT (envelope-from edwin) Date: Sat, 28 Sep 2013 23:00:14 GMT Message-Id: <201309282300.r8SN0ETQ020754@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, amdmi3@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182472: [PATCH] devel/gitg: update to 0.2.7 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, 28 Sep 2013 23:00:15 -0000 Synopsis: [PATCH] devel/gitg: update to 0.2.7 Responsible-Changed-From-To: freebsd-ports-bugs->amdmi3 Responsible-Changed-By: edwin Responsible-Changed-When: Sat Sep 28 23:00:14 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182472 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 23:00:09 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 9A32BBEB; Sat, 28 Sep 2013 23:00:09 +0000 (UTC) (envelope-from edwin@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 71A6C27C5; Sat, 28 Sep 2013 23:00:09 +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 r8SN09Bv020672; Sat, 28 Sep 2013 23:00:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8SN09Tj020671; Sat, 28 Sep 2013 23:00:09 GMT (envelope-from edwin) Date: Sat, 28 Sep 2013 23:00:09 GMT Message-Id: <201309282300.r8SN09Tj020671@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vbox@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182471: emulators/virtualbox-ose gets SIGBUS with VNC 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, 28 Sep 2013 23:00:09 -0000 Synopsis: emulators/virtualbox-ose gets SIGBUS with VNC Responsible-Changed-From-To: freebsd-ports-bugs->vbox Responsible-Changed-By: edwin Responsible-Changed-When: Sat Sep 28 23:00:09 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182471 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 23:10:01 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 592B2E78 for ; Sat, 28 Sep 2013 23:10:01 +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 3441B283A for ; Sat, 28 Sep 2013 23:10:01 +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 r8SNA1hr022753 for ; Sat, 28 Sep 2013 23:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8SNA164022752; Sat, 28 Sep 2013 23:10:01 GMT (envelope-from gnats) Resent-Date: Sat, 28 Sep 2013 23:10:01 GMT Resent-Message-Id: <201309282310.r8SNA164022752@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, Peter Jeremy Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 33015C99 for ; Sat, 28 Sep 2013 23:01:50 +0000 (UTC) (envelope-from peter@rulingia.com) Received: from vps.rulingia.com (host-122-100-2-194.octopus.com.au [122.100.2.194]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A7AB027FD for ; Sat, 28 Sep 2013 23:01:49 +0000 (UTC) Received: from server.rulingia.com (c220-239-237-213.belrs5.nsw.optusnet.com.au [220.239.237.213]) by vps.rulingia.com (8.14.7/8.14.5) with ESMTP id r8SN1lMe030003 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Sun, 29 Sep 2013 09:01:47 +1000 (EST) (envelope-from peter@rulingia.com) Received: from server.rulingia.com (localhost.rulingia.com [127.0.0.1]) by server.rulingia.com (8.14.7/8.14.7) with ESMTP id r8SN1gTJ025213 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Sun, 29 Sep 2013 09:01:42 +1000 (EST) (envelope-from peter@server.rulingia.com) Received: (from peter@localhost) by server.rulingia.com (8.14.7/8.14.7/Submit) id r8SN1gD3025212; Sun, 29 Sep 2013 09:01:42 +1000 (EST) (envelope-from peter) Message-Id: <201309282301.r8SN1gD3025212@server.rulingia.com> Date: Sun, 29 Sep 2013 09:01:42 +1000 (EST) From: Peter Jeremy To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/182473: devel/tradcpp fails to install as non-root X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Peter Jeremy List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 Sep 2013 23:10:01 -0000 >Number: 182473 >Category: ports >Synopsis: devel/tradcpp fails to install as non-root >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Sep 28 23:10:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Peter Jeremy >Release: FreeBSD 10.0-CURRENT amd64 >Organization: n/a >Environment: System: FreeBSD aspire.rulingia.com 8.3-STABLE FreeBSD 8.3-STABLE #19: Sun Jan 13 17:55:03 EST 2013 root@builder.rulingia.com:/obj/usr/src/sys/aspire i386 >Description: The ports staging mechanism used by tradcpp fails for non-root users on 8.3 (but not on 10-current) with the following in /etc/make.conf: SU_CMD=/usr/local/bin/sudo /bin/sh -c >How-To-Repeat: As a non-root user: aspire% make install ===> Staging for tradcpp-0.4 ===> Generating temporary packing list install -s -o 204 -g wheel -m 555 tradcpp /work/obj/usr/ports/devel/tradcpp/work/stage/usr/local/bin install -o 204 -g wheel -m 444 tradcpp.1.gz /work/obj/usr/ports/devel/tradcpp/work/stage/usr/local/man/man1 ====> Compressing man pages ===> Building package for tradcpp-0.4 Creating package /usr/ports/packages/All/tradcpp-0.4.tbz Registering depends:. Creating bzip'd tar ball in '/usr/ports/packages/All/tradcpp-0.4.tbz' ===> Installing for tradcpp-0.4 bin/tradcpp: Can't create 'bin/tradcpp' man/man1/tradcpp.1.gz: Can't create 'man/man1/tradcpp.1.gz' share/licenses/tradcpp-0.4/catalog.mk: Failed to create dir 'share/licenses/tradcpp-0.4'Can't create 'share/licenses/tradcpp-0.4/catalog.mk' share/licenses/tradcpp-0.4/LICENSE: Failed to create dir 'share/licenses/tradcpp-0.4'Can't create 'share/licenses/tradcpp-0.4/LICENSE' share/licenses/tradcpp-0.4/BSD: Failed to create dir 'share/licenses/tradcpp-0.4'Can't create 'share/licenses/tradcpp-0.4/BSD' tar: Error exit delayed from previous errors. pkg_add: leave_playpen: can't chdir back to '' *** Error code 2 Stop in /usr/ports/devel/tradcpp. >Fix: The install process needs to correctly switch to root. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 23:10:10 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 168C0EA8; Sat, 28 Sep 2013 23:10:10 +0000 (UTC) (envelope-from edwin@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 E1EF2283B; Sat, 28 Sep 2013 23:10:09 +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 r8SNA9Ne022836; Sat, 28 Sep 2013 23:10:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8SNA9nv022835; Sat, 28 Sep 2013 23:10:09 GMT (envelope-from edwin) Date: Sat, 28 Sep 2013 23:10:09 GMT Message-Id: <201309282310.r8SNA9nv022835@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, bapt@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182473: devel/tradcpp fails to install as non-root 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, 28 Sep 2013 23:10:10 -0000 Synopsis: devel/tradcpp fails to install as non-root Responsible-Changed-From-To: freebsd-ports-bugs->bapt Responsible-Changed-By: edwin Responsible-Changed-When: Sat Sep 28 23:10:09 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182473 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 23:40:01 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 80B4B594 for ; Sat, 28 Sep 2013 23:40:01 +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 5C28D29D9 for ; Sat, 28 Sep 2013 23:40:01 +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 r8SNe1LE029050 for ; Sat, 28 Sep 2013 23:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8SNe1cx029039; Sat, 28 Sep 2013 23:40:01 GMT (envelope-from gnats) Resent-Date: Sat, 28 Sep 2013 23:40:01 GMT Resent-Message-Id: <201309282340.r8SNe1cx029039@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, Peter Jeremy Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id CBA21554 for ; Sat, 28 Sep 2013 23:38:51 +0000 (UTC) (envelope-from peter@rulingia.com) Received: from vps.rulingia.com (host-122-100-2-194.octopus.com.au [122.100.2.194]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6709029CE for ; Sat, 28 Sep 2013 23:38:51 +0000 (UTC) Received: from server.rulingia.com (c220-239-237-213.belrs5.nsw.optusnet.com.au [220.239.237.213]) by vps.rulingia.com (8.14.7/8.14.5) with ESMTP id r8SNcmdY030082 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Sun, 29 Sep 2013 09:38:48 +1000 (EST) (envelope-from peter@rulingia.com) Received: from server.rulingia.com (localhost.rulingia.com [127.0.0.1]) by server.rulingia.com (8.14.7/8.14.7) with ESMTP id r8SNcgW0081046 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Sun, 29 Sep 2013 09:38:42 +1000 (EST) (envelope-from peter@server.rulingia.com) Received: (from peter@localhost) by server.rulingia.com (8.14.7/8.14.7/Submit) id r8SNcg0v081021; Sun, 29 Sep 2013 09:38:42 +1000 (EST) (envelope-from peter) Message-Id: <201309282338.r8SNcg0v081021@server.rulingia.com> Date: Sun, 29 Sep 2013 09:38:42 +1000 (EST) From: Peter Jeremy To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/182474: net/tightvnc vncviewer can't handle null authentication X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Peter Jeremy List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 Sep 2013 23:40:01 -0000 >Number: 182474 >Category: ports >Synopsis: net/tightvnc vncviewer can't handle null authentication >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Sep 28 23:40:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Peter Jeremy >Release: FreeBSD 10.0-CURRENT amd64 >Organization: n/a >Environment: System: FreeBSD aspire.rulingia.com 8.3-STABLE FreeBSD 8.3-STABLE #19: Sun Jan 13 17:55:03 EST 2013 root@builder.rulingia.com:/obj/usr/src/sys/aspire i386 virtualbox-ose-4.2.18_1 tightvnc-1.3.10_3 >Description: vncviewer rejects empty passwords and therefore can't be used with VNC sessions that don't require authentication. Specifically, VBoxHeadless with the default null authentication still triggers vncviewer to request a password but vncviewer rejects an empty password. See also PR ports/182471 >How-To-Repeat: $ vncviewer server:6213 Connected to RFB server, using protocol version 3.8 Performing standard VNC authentication Password: Reading password failed >Fix: The following patch allows empty passwords to be entered. --- vncviewer/rfbproto.c~ 2006-12-08 18:20:03.000000000 +1100 +++ vncviewer/rfbproto.c 2013-09-29 09:19:34.782746129 +1000 @@ -569,7 +569,7 @@ passwd = getpass("Password: "); } - if (!passwd || strlen(passwd) == 0) { + if (!passwd) { fprintf(stderr, "Reading password failed\n"); return False; } >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 28 23:40:13 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id A86D85C2; Sat, 28 Sep 2013 23:40:13 +0000 (UTC) (envelope-from edwin@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 7E76E2A00; Sat, 28 Sep 2013 23:40:13 +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 r8SNeDRW030621; Sat, 28 Sep 2013 23:40:13 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8SNeDnX030620; Sat, 28 Sep 2013 23:40:13 GMT (envelope-from edwin) Date: Sat, 28 Sep 2013 23:40:13 GMT Message-Id: <201309282340.r8SNeDnX030620@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, itetcu@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/182474: net/tightvnc vncviewer can't handle null authentication 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, 28 Sep 2013 23:40:13 -0000 Synopsis: net/tightvnc vncviewer can't handle null authentication Responsible-Changed-From-To: freebsd-ports-bugs->itetcu Responsible-Changed-By: edwin Responsible-Changed-When: Sat Sep 28 23:40:13 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=182474