From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 00:20:02 2014 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 ESMTPS id 0705D3B1 for ; Sun, 16 Feb 2014 00:20:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D4A121743 for ; Sun, 16 Feb 2014 00: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 s1G0K1wS095658 for ; Sun, 16 Feb 2014 00:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1G0K1c7095657; Sun, 16 Feb 2014 00:20:01 GMT (envelope-from gnats) Resent-Date: Sun, 16 Feb 2014 00:20:01 GMT Resent-Message-Id: <201402160020.s1G0K1c7095657@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, Mathias Monnerville Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5F36A391 for ; Sun, 16 Feb 2014 00:16:37 +0000 (UTC) Received: from ns1.info-ufr.univ-montp2.fr (ns1.info-ufr.univ-montp2.fr [162.38.218.218]) by mx1.freebsd.org (Postfix) with ESMTP id DE433172B for ; Sun, 16 Feb 2014 00:16:36 +0000 (UTC) Received: from bsdmaster.adm.info-ufr.univ-montp2.fr (unknown [172.16.50.230]) by ns1.info-ufr.univ-montp2.fr (Postfix) with ESMTP id 4AD73401A1; Sun, 16 Feb 2014 01:09:54 +0100 (CET) Received: by bsdmaster.adm.info-ufr.univ-montp2.fr (Postfix, from userid 0) id BFE916E42E0; Sun, 16 Feb 2014 00:23:50 +0100 (CET) Message-Id: <20140215232350.BFE916E42E0@bsdmaster.adm.info-ufr.univ-montp2.fr> Date: Sun, 16 Feb 2014 00:23:50 +0100 (CET) From: Mathias Monnerville To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/186803: [broken port fix] audio/zinf 2.2.5 (clang error) Cc: Mathias Monnerville X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Mathias Monnerville List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 00:20:02 -0000 >Number: 186803 >Category: ports >Synopsis: [broken port fix] audio/zinf 2.2.5 (clang 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: Sun Feb 16 00:20:01 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Mathias Monnerville >Release: FreeBSD 10.0-RELEASE amd64 >Organization: University of Montpellier 2, France >Environment: System: FreeBSD 10.0-RELEASE FreeBSD 10.0-RELEASE #0 r260789: Thu Jan 16 22:34:59 UTC 2014 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: - clang build error fix - StageDir - pkg-plist fix portsmon's error log at http://portsmon.freebsd.org/portoverview.py?category=audio&portname=zinf >How-To-Repeat: >Fix: --- zinf-2.2.5_19.patch begins here --- diff -r 67fe9a65908d Makefile --- a/Makefile Sat Feb 15 21:35:22 2014 +0100 +++ b/Makefile Sat Feb 15 21:46:07 2014 +0100 @@ -3,7 +3,7 @@ PORTNAME= zinf PORTVERSION= 2.2.5 -PORTREVISION= 18 +PORTREVISION= 19 CATEGORIES= audio ipv6 MASTER_SITES= SF @@ -14,7 +14,6 @@ libgdbm.so:${PORTSDIR}/databases/gdbm USES= pathfix gettext gmake perl5 -NO_STAGE= yes USE_GNOME= gtk20 lthack WANT_GNOME= yes GNU_CONFIGURE= yes @@ -68,9 +67,9 @@ @${REINPLACE_CMD} -e 's|Player::||' ${WRKSRC}/base/include/player.h post-install: - @${MKDIR} ${PREFIX}/etc/sdr/plugins + @${MKDIR} ${STAGEDIR}${PREFIX}/etc/sdr/plugins ${INSTALL_DATA} ${FILESDIR}/sdr2.plugin.S100.audio.rtp.mpa.zinf \ - ${PREFIX}/etc/sdr/plugins - ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${DATADIR} + ${STAGEDIR}${PREFIX}/etc/sdr/plugins + ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${STAGEDIR}${DATADIR} .include diff -r 67fe9a65908d files/patch-lib-http-src-Http.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/files/patch-lib-http-src-Http.cpp Sat Feb 15 21:46:07 2014 +0100 @@ -0,0 +1,10 @@ +--- lib/http/src/Http.cpp.orig 2014-02-15 18:56:59.580491668 +0100 ++++ lib/http/src/Http.cpp 2014-02-15 18:57:10.490545507 +0100 +@@ -31,6 +31,7 @@ + + #include "config.h" + #include ++#include + #include + #include + #ifndef WIN32 diff -r 67fe9a65908d pkg-plist --- a/pkg-plist Sat Feb 15 21:35:22 2014 +0100 +++ b/pkg-plist Sat Feb 15 21:46:07 2014 +0100 @@ -1,42 +1,35 @@ bin/zinf etc/sdr/plugins/sdr2.plugin.S100.audio.rtp.mpa.zinf -lib/zinf/plugins/albumart.ui lib/zinf/plugins/cd.lmc lib/zinf/plugins/cd.pmo lib/zinf/plugins/cmdline.ui -lib/zinf/plugins/download.ui -%%ESOUND%%lib/zinf/plugins/esound.pmo lib/zinf/plugins/http.pmi lib/zinf/plugins/id3lib.mdf lib/zinf/plugins/irman.ui -lib/zinf/plugins/kjofol.ftf lib/zinf/plugins/lcd.ui lib/zinf/plugins/local.pmi lib/zinf/plugins/m3u.plf lib/zinf/plugins/misc.mdf lib/zinf/plugins/mpg123.ui -lib/zinf/plugins/musicbrowser.ui lib/zinf/plugins/ncurses.ui lib/zinf/plugins/obs.pmi lib/zinf/plugins/pls.plf lib/zinf/plugins/soundcard.pmo -%%VORBIS%%lib/zinf/plugins/vorbis.lmc -%%VORBIS%%lib/zinf/plugins/vorbis.mdf +lib/zinf/plugins/vorbis.lmc +lib/zinf/plugins/vorbis.mdf lib/zinf/plugins/wav.lmc lib/zinf/plugins/wavout.pmo -lib/zinf/plugins/winamp.ftf lib/zinf/plugins/xingmp3.lmc -lib/zinf/plugins/zinf.ui share/locale/ca_ES/LC_MESSAGES/zinf.mo share/locale/ru/LC_MESSAGES/zinf.mo -%%DATADIR%%/themes/Aquatica.fat -%%DATADIR%%/themes/Zinf.fat -%%DATADIR%%/themes/ZinfClassic.fat +share/zinf/themes/Aquatica.fat +share/zinf/themes/Zinf.fat +share/zinf/themes/ZinfClassic.fat @dirrm share/zinf/themes @dirrm share/zinf +@dirrm share/locale/ca_ES/LC_MESSAGES +@dirrm share/locale/ca_ES @dirrm lib/zinf/plugins @dirrm lib/zinf -@dirrmtry etc/sdr/plugins +@dirrm etc/sdr/plugins @dirrmtry etc/sdr -@dirrmtry share/locale/ca_ES/LC_MESSAGES -@dirrmtry share/locale/ca_ES --- zinf-2.2.5_19.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 01:10:00 2014 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 ESMTPS id AD4826CD for ; Sun, 16 Feb 2014 01:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6E85A1A45 for ; Sun, 16 Feb 2014 01: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 s1G1A0vT012840 for ; Sun, 16 Feb 2014 01:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1G1A0YQ012839; Sun, 16 Feb 2014 01:10:00 GMT (envelope-from gnats) Resent-Date: Sun, 16 Feb 2014 01:10:00 GMT Resent-Message-Id: <201402160110.s1G1A0YQ012839@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, Derek Schrock Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 317F96AC for ; Sun, 16 Feb 2014 01:07:16 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1C0A51A36 for ; Sun, 16 Feb 2014 01:07:16 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1G17FId004423 for ; Sun, 16 Feb 2014 01:07:15 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1G17FUb004422; Sun, 16 Feb 2014 01:07:15 GMT (envelope-from nobody) Message-Id: <201402160107.s1G17FUb004422@cgiserv.freebsd.org> Date: Sun, 16 Feb 2014 01:07:15 GMT From: Derek Schrock To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186804: www/virtualbox-ose with VNC enabled crashes if Remote Display is turned on after the VM starts X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 01:10:00 -0000 >Number: 186804 >Category: ports >Synopsis: www/virtualbox-ose with VNC enabled crashes if Remote Display is turned on after the VM starts >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 Feb 16 01:10:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Derek Schrock >Release: 10.0-RELEASE >Organization: >Environment: FreeBSD ircbsd 10.0-RELEASE FreeBSD 10.0-RELEASE #0 r260789: Thu Jan 16 22:34:59 UTC 2014 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: If you enable Remote Display after a VM starts and connect via VNC to host:port (default port 5900) the running VM will crash. >How-To-Repeat: 1) Install www/virtualbox-ose with VNC support. 2) Create a new VM with out Remote Display enabled 3) Make sure Remote Dispaly is disabled (within the VM settings: Display, Remote Display tab, uncheck Enable Server) 3) Start the VM without Remote Display enabled 4) Turn on Remote Display (see above - check Enable Server) 5) Connect to the VirtualBox host via the port VNC is running on >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 01:30:00 2014 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 ESMTPS id A0A717AD for ; Sun, 16 Feb 2014 01:30:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 781511B3E for ; Sun, 16 Feb 2014 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 s1G1U0Hs019939 for ; Sun, 16 Feb 2014 01:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1G1U0Ig019938; Sun, 16 Feb 2014 01:30:00 GMT (envelope-from gnats) Resent-Date: Sun, 16 Feb 2014 01:30:00 GMT Resent-Message-Id: <201402160130.s1G1U0Ig019938@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, "Matthew D.Fuller" Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0CC1B76F for ; Sun, 16 Feb 2014 01:23:40 +0000 (UTC) Received: from thyme.infocus-llc.com (server.infocus-llc.com [206.156.254.44]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9B3CB1B2A for ; Sun, 16 Feb 2014 01:23:39 +0000 (UTC) Received: from draco.over-yonder.net (c-75-65-60-66.hsd1.ms.comcast.net [75.65.60.66]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by thyme.infocus-llc.com (Postfix) with ESMTPSA id 8A15437B5AC for ; Sat, 15 Feb 2014 19:23:30 -0600 (CST) Received: by draco.over-yonder.net (Postfix, from userid 100) id 3fRVvj3fKJz1CL; Sat, 15 Feb 2014 19:23:29 -0600 (CST) Message-Id: <3fRVvj3fKJz1CL@draco.over-yonder.net> Date: Sat, 15 Feb 2014 19:23:29 -0600 (CST) From: "Matthew D.Fuller" To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/186805: [x11] Excise some vestigial XFree86 references X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: "Matthew D.Fuller" List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 01:30:00 -0000 >Number: 186805 >Category: ports >Synopsis: [x11] Excise some vestigial XFree86 references >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 Feb 16 01:30:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Matthew D. Fuller >Release: FreeBSD 9.1-STABLE amd64 >Organization: >Environment: System: FreeBSD draco.over-yonder.net 9.1-STABLE FreeBSD 9.1-STABLE #0 r251584: Sun Jun 9 14:23:33 CDT 2013 root@draco.over-yonder.net:/usr/obj/usr/src/sys/DRACO amd64 >Description: Upgrading x11-fonts/dejavu/ brought its pkg-message to my attention, with its careful discussion of the X config file in XFree86 vs. X.Org. It's now been about 6 years since XFree86 support was removed from ports (just after 7.0-RELEASE timeframe), so surely we don't need to yack about it anymore. This cleans up obvious XFree86 bits from x11-fonts/, consisting of: - Various references to differing implementations and config file locations in pkg-message files (should be thoroughly uncontroversial). - Eliminating intlfonts/pkg-req script that did nothing but try to make lib/X11/fonts/local directory, which BSD.local.dist has been making since it was added to ports/Templates in 2007, and talk about upgrading to XFree86 >3.3.3 which hasn't been relevant this millennium (should be pretty uncontroversial). - Removes CONFLICTS settings for XFree86-font* variants, which are ~6 years gone now (I s'pose it's _possible_ somebody still has those installed and this would confuse them, but they probably _should_ be confused in that case...) >How-To-Repeat: >Fix: Index: x11-fonts/artwiz-aleczapka/files/pkg-message.in =================================================================== --- x11-fonts/artwiz-aleczapka/files/pkg-message.in (revision 344497) +++ x11-fonts/artwiz-aleczapka/files/pkg-message.in (working copy) @@ -1,10 +1,8 @@ ------------------------------------------------------------------ - To get XFree86 to recognise your new fonts you will need to - add a line to your XF86Config file. XFree86 4 usually keeps its - XF86Config file in /etc or /etc/X11. + To get X to recognise your new fonts you will need to add a line to your + X server configuration file (usually /etc/X11/xorg.conf). - Add the following line to the "Files" section and restart XFree86. FontPath "%%LOCALBASE%%/lib/X11/fonts/artwiz-aleczapka-en" Index: x11-fonts/artwiz-aleczapka-de/pkg-message =================================================================== --- x11-fonts/artwiz-aleczapka-de/pkg-message (revision 344497) +++ x11-fonts/artwiz-aleczapka-de/pkg-message (working copy) @@ -1,10 +1,9 @@ ------------------------------------------------------------------ - To get XFree86 to recognise your new fonts you will need to - add a line to your XF86Config file. XFree86 4 usually keeps its - XF86Config file in /etc or /etc/X11. + To get X to recognise your new fonts you will need to add a line to your + X server configuration file (usually /etc/X11/xorg.conf). - Add the following line to the "Files" section and restart XFree86. + Add the following line to the "Files" section and restart X. FontPath "${LOCALBASE}/lib/X11/fonts/artwiz-aleczapka-de" Index: x11-fonts/artwiz-aleczapka-se/pkg-message =================================================================== --- x11-fonts/artwiz-aleczapka-se/pkg-message (revision 344497) +++ x11-fonts/artwiz-aleczapka-se/pkg-message (working copy) @@ -1,10 +1,9 @@ ------------------------------------------------------------------ - To get XFree86 to recognise your new fonts you will need to - add a line to your XF86Config file. XFree86 4 usually keeps its - XF86Config file in /etc or /etc/X11. + To get X to recognise your new fonts you will need to add a line to your + X server configuration file (usually /etc/X11/xorg.conf). - Add the following line to the "Files" section and restart XFree86. + Add the following line to the "Files" section and restart X. FontPath "${LOCALBASE}/lib/X11/fonts/artwiz-aleczapka-se" Index: x11-fonts/artwiz-fonts/files/pkg-message.in =================================================================== --- x11-fonts/artwiz-fonts/files/pkg-message.in (revision 344497) +++ x11-fonts/artwiz-fonts/files/pkg-message.in (working copy) @@ -1,10 +1,9 @@ ------------------------------------------------------------------ - To get XFree86 to recognise your new fonts you will need to - add a line to your XF86Config file. XFree86 4 usually keeps its - XF86Config file in /etc or /etc/X11. + To get X to recognise your new fonts you will need to add a line to your + X server configuration file (usually /etc/X11/xorg.conf). - Add the following line to the "Files" section and restart XFree86. + Add the following line to the "Files" section and restart X. FontPath "%%LOCALBASE%%/lib/X11/fonts/artwiz-fonts" Index: x11-fonts/dejavu/files/pkg-message.in =================================================================== --- x11-fonts/dejavu/files/pkg-message.in (revision 344497) +++ x11-fonts/dejavu/files/pkg-message.in (working copy) @@ -7,5 +7,4 @@ FontPath "%%FONTSDIR%%/" -Note: your X Windows configuration file is typically /etc/X11/XF86Config -if you are using XFree86, and /etc/X11/xorg.conf if you are using X.Org. +Note: your X Windows configuration file is typically /etc/X11/xorg.conf. Index: x11-fonts/intlfonts/pkg-req =================================================================== --- x11-fonts/intlfonts/pkg-req (revision 344497) +++ x11-fonts/intlfonts/pkg-req (working copy) @@ -1,22 +0,0 @@ -#!/bin/sh - -if [ "x$1" = "x" ]; then - exit 1; -fi -if [ "x$2" != "xINSTALL" -a "x$2" != "xDEINSTALL" ]; then - exit 1; -fi - -export FONTDIR; FONTDIR=${PKG_PREFIX}/lib/X11/fonts/local - -if [ "$2x" = "INSTALLx" -a ! -d ${FONTDIR} ]; then - echo '**********************************************************************' - echo "****** ${FONTDIR}/ doesn't exist." - echo "****** Creating ${FONTDIR}/" - echo '****** Please upgrade your XFree86 to 3.3.3 or upper,' - echo "****** or add this directory to your /etc/XF86Config's FontPath entry." - echo '**********************************************************************' - mkdir ${FONTDIR} -fi - -exit 0; Index: x11-fonts/pingwi/files/pkg-message.in =================================================================== --- x11-fonts/pingwi/files/pkg-message.in (revision 344497) +++ x11-fonts/pingwi/files/pkg-message.in (working copy) @@ -7,5 +7,4 @@ FontPath "%%FONTSDIR%%/" -Note: your X Windows configuration file is typically /etc/X11/XF86Config -if you are using XFree86, and /etc/X11/xorg.conf if you are using X.Org. +Note: your X Windows configuration file is typically /etc/X11/xorg.conf. Index: x11-fonts/texcm-ttf/files/pkg-message.in =================================================================== --- x11-fonts/texcm-ttf/files/pkg-message.in (revision 344497) +++ x11-fonts/texcm-ttf/files/pkg-message.in (working copy) @@ -9,5 +9,4 @@ FontPath "%%FONTSDIR%%/" -Note: your X Windows configuration file is typically /etc/X11/XF86Config -if you are using XFree86, and /etc/X11/xorg.conf if you are using X.Org. +Note: your X Windows configuration file is typically /etc/X11/xorg.conf. Index: x11-fonts/xorg-fonts-100dpi/Makefile =================================================================== --- x11-fonts/xorg-fonts-100dpi/Makefile (revision 344497) +++ x11-fonts/xorg-fonts-100dpi/Makefile (working copy) @@ -18,8 +18,6 @@ ${FONTDIR}/100dpi/charB08.pcf.gz:${PORTSDIR}/x11-fonts/font-bitstream-100dpi \ ${FONTDIR}/encodings/encodings.dir:${PORTSDIR}/x11-fonts/encodings -CONFLICTS= XFree86-font100dpi-* - NO_BUILD= # none NO_MTREE= yes FONTDIR= ${LOCALBASE}/lib/X11/fonts Index: x11-fonts/xorg-fonts-75dpi/Makefile =================================================================== --- x11-fonts/xorg-fonts-75dpi/Makefile (revision 344497) +++ x11-fonts/xorg-fonts-75dpi/Makefile (working copy) @@ -18,8 +18,6 @@ ${FONTDIR}/75dpi/charB08.pcf.gz:${PORTSDIR}/x11-fonts/font-bitstream-75dpi \ ${FONTDIR}/encodings/encodings.dir:${PORTSDIR}/x11-fonts/encodings -CONFLICTS= XFree86-font75dpi-* - NO_BUILD= # none NO_MTREE= yes FONTDIR= ${LOCALBASE}/lib/X11/fonts Index: x11-fonts/xorg-fonts-cyrillic/Makefile =================================================================== --- x11-fonts/xorg-fonts-cyrillic/Makefile (revision 344497) +++ x11-fonts/xorg-fonts-cyrillic/Makefile (working copy) @@ -17,8 +17,6 @@ ${FONTDIR}/cyrillic/proof9x16.pcf.gz:${PORTSDIR}/x11-fonts/font-winitzki-cyrillic \ ${FONTDIR}/encodings/encodings.dir:${PORTSDIR}/x11-fonts/encodings -CONFLICTS= XFree86-fontCyrillic-* - NO_BUILD= # none NO_MTREE= yes FONTDIR= ${LOCALBASE}/lib/X11/fonts Index: x11-fonts/xorg-fonts-miscbitmaps/Makefile =================================================================== --- x11-fonts/xorg-fonts-miscbitmaps/Makefile (revision 344497) +++ x11-fonts/xorg-fonts-miscbitmaps/Makefile (working copy) @@ -24,8 +24,6 @@ ${FONTDIR}/misc/olcursor.pcf.gz:${PORTSDIR}/x11-fonts/font-sun-misc \ ${FONTDIR}/encodings/encodings.dir:${PORTSDIR}/x11-fonts/encodings -CONFLICTS= XFree86-fontDefaultBitmaps-* - NO_BUILD= # none NO_MTREE= yes FONTDIR= ${LOCALBASE}/lib/X11/fonts Index: x11-fonts/xorg-fonts-type1/Makefile =================================================================== --- x11-fonts/xorg-fonts-type1/Makefile (revision 344497) +++ x11-fonts/xorg-fonts-type1/Makefile (working copy) @@ -18,8 +18,6 @@ ${FONTDIR}/Type1/cursor.pfa:${PORTSDIR}/x11-fonts/font-xfree86-type1 \ ${FONTDIR}/encodings/encodings.dir:${PORTSDIR}/x11-fonts/encodings -CONFLICTS= XFree86-fontScalable-* - do-install: # empty NO_BUILD= # none >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 01:50:00 2014 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 ESMTPS id D652C8EA for ; Sun, 16 Feb 2014 01:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id ABA1D1C7F for ; Sun, 16 Feb 2014 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 s1G1o0JB026412 for ; Sun, 16 Feb 2014 01:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1G1o0Zk026411; Sun, 16 Feb 2014 01:50:00 GMT (envelope-from gnats) Resent-Date: Sun, 16 Feb 2014 01:50:00 GMT Resent-Message-Id: <201402160150.s1G1o0Zk026411@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, Derek Schrock Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8AE738CF for ; Sun, 16 Feb 2014 01:46:48 +0000 (UTC) Received: from mail-qa0-x235.google.com (mail-qa0-x235.google.com [IPv6:2607:f8b0:400d:c00::235]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3D8901C73 for ; Sun, 16 Feb 2014 01:46:48 +0000 (UTC) Received: by mail-qa0-f53.google.com with SMTP id cm18so20001170qab.40 for ; Sat, 15 Feb 2014 17:46:47 -0800 (PST) Received: from lifeofadishwasher.com (c-71-206-246-125.hsd1.pa.comcast.net. [71.206.246.125]) by mx.google.com with ESMTPSA id d7sm30687673qad.10.2014.02.15.17.46.45 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 15 Feb 2014 17:46:46 -0800 (PST) Received: by lifeofadishwasher.com (sSMTP sendmail emulation); Sat, 15 Feb 2014 20:46:45 -0500 Message-Id: <53001886.8707e00a.6fc1.ffffafa8@mx.google.com> Date: Sat, 15 Feb 2014 20:46:45 -0500 From: Derek Schrock To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/186808: www/virutalbox-ose VNC option doesn't support port ranges for "Remote Desktop Server Port" in Display, Remote Display X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Derek Schrock List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 01:50:01 -0000 >Number: 186808 >Category: ports >Synopsis: www/virutalbox-ose VNC option doesn't support port ranges for "Remote Desktop Server Port" in Display, Remote Display >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 Feb 16 01:50:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Derek Schrock >Release: FreeBSD 10.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD ircbsd 10.0-RELEASE FreeBSD 10.0-RELEASE #0 r260789: Thu Jan 16 22:34:59 UTC 2014 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Base off the documentation at http://www.virtualbox.org/manual/ch07.html supported virtualbox platforms allow you to run RDP/VRDP on a port range (search for "list of ports"). It would be nice if the www/virtualbox-ose VNC extension would support a range of ports for the "Remote Desktop Server Port" in Display, Remote Display. Currently if you try to use a range the inital number is used. ex: two VM configured with 5900-5999 range in "Remote Desktop Server Port" both still try to start a VNC server on port 5900 (one fails to enable VNC) >How-To-Repeat: start two VMs with the a range instead of a single port number for "Remote Desktop Server Port" >Fix: Add support to the VNC extension to read the range and start VNC on the first open VNC port. 5900-5999 If 5900 is in use 5901. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 05:20:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 843C7C31 for ; Sun, 16 Feb 2014 05:20:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 597241DEE for ; Sun, 16 Feb 2014 05: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 s1G5K03R095780 for ; Sun, 16 Feb 2014 05:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1G5K0wi095779; Sun, 16 Feb 2014 05:20:00 GMT (envelope-from gnats) Resent-Date: Sun, 16 Feb 2014 05:20:00 GMT Resent-Message-Id: <201402160520.s1G5K0wi095779@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, Ryan Frederick Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F18B2B69 for ; Sun, 16 Feb 2014 05:15:17 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DA2C11DE2 for ; Sun, 16 Feb 2014 05:15:17 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1G5FHxB080029 for ; Sun, 16 Feb 2014 05:15:17 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1G5FHE6080016; Sun, 16 Feb 2014 05:15:17 GMT (envelope-from nobody) Message-Id: <201402160515.s1G5FHE6080016@cgiserv.freebsd.org> Date: Sun, 16 Feb 2014 05:15:17 GMT From: Ryan Frederick To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186809: Calling Maintainer AWOL on and Requesting Maintainership of net-mgmt/nagios-check_ports X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 05:20:00 -0000 >Number: 186809 >Category: ports >Synopsis: Calling Maintainer AWOL on and Requesting Maintainership of net-mgmt/nagios-check_ports >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 Feb 16 05:20:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Ryan Frederick >Release: 9.1-RELEASE >Organization: >Environment: FreeBSD system.name 9.1-RELEASE-p10 FreeBSD 9.1-RELEASE-p10 #0: Sun Jan 12 10:32:09 UTC 2014 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: I would like to call maintainer AWOL on net-mgmt/nagios-check_ports due to non-response from the maintainer on ports/184011 within three months. Following on I would like to request maintainership of net-mgmt/nagios-check_ports. I am currently working on a fork of the no-longer-developed original upstream that supports checking for updates using the pkgng tools, and I would like to switch the port to this upstream in the near future along with adding stage support. >How-To-Repeat: >Fix: Patch attached with submission follows: --- net-mgmt/nagios-check_ports/Makefile (revision 344498) +++ net-mgmt/nagios-check_ports/Makefile (working copy) @@ -8,7 +8,7 @@ MASTER_SITES= http://code.adminlife.net/check_ports/files/ PKGNAMEPREFIX= nagios- -MAINTAINER= freebsd@troback.com +MAINTAINER= ryanrfrederick@gmail.com COMMENT= Nagios Plugin to monitor your FreeBSD Ports RUN_DEPENDS= portaudit:${PORTSDIR}/ports-mgmt/portaudit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 05:20:08 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DE4CDC60; Sun, 16 Feb 2014 05:20:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B22F71DEF; Sun, 16 Feb 2014 05: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 s1G5K889095910; Sun, 16 Feb 2014 05:20:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1G5K8xG095908; Sun, 16 Feb 2014 05:20:08 GMT (envelope-from edwin) Date: Sun, 16 Feb 2014 05:20:08 GMT Message-Id: <201402160520.s1G5K8xG095908@freefall.freebsd.org> To: ryanrfrederick@gmail.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186809: Calling Maintainer AWOL on and Requesting Maintainership of net-mgmt/nagios-check_ports X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 05:20:08 -0000 Synopsis: Calling Maintainer AWOL on and Requesting Maintainership of net-mgmt/nagios-check_ports State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sun Feb 16 05:20:08 UTC 2014 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186809 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 05:30:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 63CF9D3C for ; Sun, 16 Feb 2014 05:30:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4C64B1F6F for ; Sun, 16 Feb 2014 05: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 s1G5U1Rr099244 for ; Sun, 16 Feb 2014 05:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1G5U1LX099243; Sun, 16 Feb 2014 05:30:01 GMT (envelope-from gnats) Date: Sun, 16 Feb 2014 05:30:01 GMT Message-Id: <201402160530.s1G5U1LX099243@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/186809: Calling Maintainer AWOL on and Requesting Maintainership of net-mgmt/nagios-check_ports X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 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: Sun, 16 Feb 2014 05:30:01 -0000 The following reply was made to PR ports/186809; it has been noted by GNATS. From: Edwin Groothuis To: freebsd@troback.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/186809: Calling Maintainer AWOL on and Requesting Maintainership of net-mgmt/nagios-check_ports Date: Sun, 16 Feb 2014 05:20:07 UT Maintainer of net-mgmt/nagios-check_ports, Please note that PR ports/186809 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/186809 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 05:30:01 2014 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 ESMTPS id B8D1ED3E for ; Sun, 16 Feb 2014 05:30:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9332F1F71 for ; Sun, 16 Feb 2014 05: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 s1G5U1m6099255 for ; Sun, 16 Feb 2014 05:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1G5U1sB099254; Sun, 16 Feb 2014 05:30:01 GMT (envelope-from gnats) Resent-Date: Sun, 16 Feb 2014 05:30:01 GMT Resent-Message-Id: <201402160530.s1G5U1sB099254@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, Matthew Rezny Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CD725CA4 for ; Sun, 16 Feb 2014 05:24:42 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9BD391E5B for ; Sun, 16 Feb 2014 05:24:42 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1G5Of8r099312 for ; Sun, 16 Feb 2014 05:24:41 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1G5Ofch099309; Sun, 16 Feb 2014 05:24:41 GMT (envelope-from nobody) Message-Id: <201402160524.s1G5Ofch099309@cgiserv.freebsd.org> Date: Sun, 16 Feb 2014 05:24:41 GMT From: Matthew Rezny To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186810: www/qupzilla should be updated, not marked BROKEN X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 05:30:01 -0000 >Number: 186810 >Category: ports >Synopsis: www/qupzilla should be updated, not marked BROKEN >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 Feb 16 05:30:01 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Matthew Rezny >Release: 10.0-STABLE >Organization: RezTek, s.r.o. >Environment: FreeBSD desktop.reztek 10.0-STABLE FreeBSD 10.0-STABLE #0 r261871: Fri Feb 14 16:41:18 CET 2014 root@desktop.reztek:/usr/obj/usr/src/sys/DESKTOP amd64 >Description: For reasons I won't even attempt to guess, the Qupzilla port was marked broken instead of being updated. Version 1.6.2 was released the day prior, then 1.6.3 was released the same day that 1.6.1 was marked broken due to fetch failure. The release news expilcitly states 1.6.3 release includes FreeBSD build fixes. Indeed, 4 of the 6 patches are no longer applicable to 1.6.3. >How-To-Repeat: Uhm... please don't repeat this problem, just update the port >Fix: Remove the obsolete patches desktop# svnlite status M Makefile M distinfo ! files/patch-src__main__main.cpp ! files/patch-src__plugins__MouseGestures__mousegestures.qrc ! files/patch-src__plugins__PIM__PIM_res.qrc ! files/patch-src__plugins__TestPlugin__testplugin.qrc M pkg-plist Update version and distinfo desktop# svnlite diff Index: Makefile =================================================================== --- Makefile (revision 344163) +++ Makefile (working copy) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= qupzilla -PORTVERSION= 1.6.1 +PORTVERSION= 1.6.3 CATEGORIES= www MASTER_SITES= http://www.qupzilla.com/uploads/ DISTNAME= QupZilla-${PORTVERSION} Index: distinfo =================================================================== --- distinfo (revision 344163) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (QupZilla-1.6.1.tar.gz) = 24fc9a90a9991178a935ab0f5ad2091c52729b08cfd6d8f26f92fef5c0386960 -SIZE (QupZilla-1.6.1.tar.gz) = 4646566 +SHA256 (QupZilla-1.6.3.tar.gz) = ba69b4bb9f9644fcff5945a0b692e6db877e57c2b9d948a7f57ecfcd4a86f7a0 +SIZE (QupZilla-1.6.3.tar.gz) = 5087827 Index: pkg-plist =================================================================== --- pkg-plist (revision 344163) +++ pkg-plist (working copy) @@ -2,7 +2,7 @@ lib/libQupZilla.so lib/libQupZilla.so.1 lib/libQupZilla.so.1.6 -lib/libQupZilla.so.1.6.1 +lib/libQupZilla.so.1.6.3 lib/qupzilla/libAccessKeysNavigation.so lib/qupzilla/libGreaseMonkey.so lib/qupzilla/libMouseGestures.so >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 05:30:16 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D57DFD9D; Sun, 16 Feb 2014 05:30:16 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A8D071F74; Sun, 16 Feb 2014 05:30: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 s1G5UG0P099336; Sun, 16 Feb 2014 05:30:16 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1G5UGFw099335; Sun, 16 Feb 2014 05:30:16 GMT (envelope-from edwin) Date: Sun, 16 Feb 2014 05:30:16 GMT Message-Id: <201402160530.s1G5UGFw099335@freefall.freebsd.org> To: matthew@reztek.cz, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186810: www/qupzilla should be updated, not marked BROKEN X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 05:30:16 -0000 Synopsis: www/qupzilla should be updated, not marked BROKEN State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sun Feb 16 05:30:16 UTC 2014 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186810 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 05:40:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9D9BFDFE for ; Sun, 16 Feb 2014 05:40:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8538A1005 for ; Sun, 16 Feb 2014 05: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 s1G5e1XN002523 for ; Sun, 16 Feb 2014 05:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1G5e185002522; Sun, 16 Feb 2014 05:40:01 GMT (envelope-from gnats) Date: Sun, 16 Feb 2014 05:40:01 GMT Message-Id: <201402160540.s1G5e185002522@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Johannes Meixner Subject: Re: ports/186372: [UPDATE] ports-mgmt/porttools: update to 1.00.2014.02.02, take maintainership X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Johannes Meixner List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 05:40:01 -0000 The following reply was made to PR ports/186372; it has been noted by GNATS. From: Johannes Meixner To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/186372: [UPDATE] ports-mgmt/porttools: update to 1.00.2014.02.02, take maintainership Date: Sun, 16 Feb 2014 07:38:21 +0200 --6sX45UoQRIJXqkqR Content-Type: multipart/mixed; boundary="lrZ03NoBR/3+SXJZ" Content-Disposition: inline --lrZ03NoBR/3+SXJZ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Attached the latest version, 1.00.2014.02.11 --=20 xmj@chaot.net http://xmj.me On Sun, Feb 02, 2014 at 02:30:01PM +0000, FreeBSD-gnats-submit@FreeBSD.org = wrote: > Thank you very much for your problem report. > It has the internal identification `ports/186372'. > The individual assigned to look at your > report is: freebsd-ports-bugs.=20 >=20 > You can access the state of your problem report at any time > via this link: >=20 > http://www.freebsd.org/cgi/query-pr.cgi?pr=3D186372 >=20 > >Category: ports > >Responsible: freebsd-ports-bugs > >Synopsis: [UPDATE] ports-mgmt/porttools: update to 1.00.2014.02.02= , take maintainership > >Arrival-Date: Sun Feb 02 14:30:01 UTC 2014 --lrZ03NoBR/3+SXJZ Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="porttools.diff" Content-Transfer-Encoding: quoted-printable =3D=3D=3D> Updating from SVN Updating '.': At revision 344498. =3D=3D=3D> Generating patch =3D=3D=3D> Viewing diff with less -iRM Index: Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- Makefile (revision 344498) +++ Makefile (working copy) @@ -2,15 +2,13 @@ # $FreeBSD$ =20 PORTNAME=3D porttools -PORTVERSION=3D 0.99 -PORTREVISION=3D 11 +PORTVERSION=3D 1.00.2014.02.11 CATEGORIES=3D ports-mgmt -MASTER_SITES=3D SF =20 -MAINTAINER=3D joemann@beefree.free.de +MAINTAINER=3D xmj@chaot.net COMMENT=3D Tools for testing and submitting port updates and new ports =20 -LICENSE=3D BSD +LICENSE=3D BSD2CLAUSE =20 RUN_DEPENDS=3D portlint:${PORTSDIR}/ports-mgmt/portlint \ cdiff:${PORTSDIR}/textproc/cdiff \ @@ -17,23 +15,26 @@ sudo:${PORTSDIR}/security/sudo \ svn:${PORTSDIR}/devel/subversion =20 -MAKE_ENV=3D DATADIR=3D"${DATADIR}" DOCSDIR=3D"${DOCSDIR}" +USE_GITHUB=3D yes +GH_ACCOUNT=3D xmj +GH_COMMIT=3D e84626d +GH_TAGNAME=3D ${GH_COMMIT} + # Make the version information of porttools itself # available for inclusion in the PRs generated by it. -MAKE_ENV+=3D PORTVERSION=3D"${PORTVERSION}" -.if defined(PORTREVISION) -MAKE_ENV+=3D PORTREVISION=3D"${PORTREVISION}" -.endif -.if defined(PORTEPOCH) -MAKE_ENV+=3D PORTEPOCH=3D"${PORTEPOCH}" -.endif +MAKE_ENV=3D DATADIR=3D"${DATADIR}" DOCSDIR=3D"${DOCSDIR}" PORTVERSION=3D"$= {PORTVERSION}" =20 OPTIONS_DEFINE=3D DOCS NEWFILE OPTIONS_DEFAULT=3D NEWFILE =20 +.include + NEWFILE_DESC=3D Enable newfile support =20 NEWFILE_RUN_DEPENDS=3D newfile:${PORTSDIR}/devel/newfile -DOCS_INSTALL_TARGET=3D install install-docs =20 +.if ${PORT_OPTIONS:MDOCS} +INSTALL_TARGET=3D install install-docs +.endif + .include Index: distinfo =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- distinfo (revision 344498) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (porttools-0.99.tar.gz) =3D b59f5acee9ae3c3494ffb9c588b1ea2d95abbfa= 82162107a84c9c42455b252a2 -SIZE (porttools-0.99.tar.gz) =3D 17357 +SHA256 (porttools-1.00.2014.02.11.tar.gz) =3D 5d826241628fddf513330a2e5575= f3f21af0ba43b7e0835ad5c143cb62ec59b4 +SIZE (porttools-1.00.2014.02.11.tar.gz) =3D 18628 Index: files/patch-Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- files/patch-Makefile (revision 344498) +++ files/patch-Makefile (working copy) @@ -1,53 +0,0 @@ ---- ./Makefile.orig 2009-09-09 21:59:59.000000000 +0200 -+++ ./Makefile 2013-10-22 10:41:23.000000000 +0200 -@@ -9,6 +9,15 @@ - PORTNAME?=3D porttools - PORTVERSION?=3D 0.99 - DISTNAME?=3D ${PORTNAME}-${PORTVERSION} -+.if defined(PORTREVISION) && defined(PORTEPOCH) -+VERSIONSTRING=3D ${PORTVERSION}_${PORTREVISION},${PORTEPOCH} -+.elif defined(PORTREVISION) -+VERSIONSTRING=3D ${PORTVERSION}_${PORTREVISION} -+.elif defined(PORTEPOCH) -+VERSIONSTRING=3D ${PORTVERSION},${PORTEPOCH} -+.else -+VERSIONSTRING=3D ${PORTVERSION} -+.endif -=20 - PROGRAMS=3D port - SCRIPTS=3D cmd_commit cmd_create cmd_diff cmd_fetch cmd_getpr cmd_help \ -@@ -31,23 +40,23 @@ -=20 - .SUFFIXES: .in -=20 --.in:=20 -- sed -e 's,__VERSION__,${PORTVERSION},;s,__PREFIX__,${PREFIX},' \ -+.in: -+ sed -e 's%__VERSION__%${VERSIONSTRING}%;s,__PREFIX__,${PREFIX},' \ - inc_header.in ${.IMPSRC} > ${.TARGET} - chmod a+x ${.TARGET} -=20 - install: ${PROGRAMS} ${SCRIPTS} -- ${BSD_INSTALL_SCRIPT} ${PROGRAMS} ${PREFIX}/bin -- mkdir -p ${DATADIR} -- ${BSD_INSTALL_SCRIPT} ${SCRIPTS} ${DATADIR} -- mkdir -p ${MANPREFIX}/man/man1 -- ${BSD_INSTALL_MAN} ${MAN1} ${MANPREFIX}/man/man1 -- mkdir -p ${MANPREFIX}/man/man5 -- ${BSD_INSTALL_MAN} ${MAN5} ${MANPREFIX}/man/man5 -+ ${BSD_INSTALL_SCRIPT} ${PROGRAMS} ${DESTDIR}${PREFIX}/bin -+ mkdir -p ${DESTDIR}${DATADIR} -+ ${BSD_INSTALL_SCRIPT} ${SCRIPTS} ${DESTDIR}${DATADIR} -+ mkdir -p ${DESTDIR}${MANPREFIX}/man/man1 -+ ${BSD_INSTALL_MAN} ${MAN1} ${DESTDIR}${MANPREFIX}/man/man1 -+ mkdir -p ${DESTDIR}${MANPREFIX}/man/man5 -+ ${BSD_INSTALL_MAN} ${MAN5} ${DESTDIR}${MANPREFIX}/man/man5 -=20 - install-docs: -- mkdir -p ${DOCSDIR} -- ${BSD_INSTALL_DATA} ${DOCS} ${DOCSDIR} -+ mkdir -p ${DESTDIR}${DOCSDIR} -+ ${BSD_INSTALL_DATA} ${DOCS} ${DESTDIR}${DOCSDIR} -=20 - clean: - rm -rf ${PROGRAMS} ${SCRIPTS} ${DISTNAME}* Index: files/patch-README =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- files/patch-README (revision 344498) +++ files/patch-README (working copy) @@ -1,61 +0,0 @@ ---- README.orig 2009-09-10 04:59:59.000000000 +0900 -+++ README 2012-12-27 19:22:20.000000000 +0900 -@@ -7,7 +7,7 @@ -=20 - FreeBSD Port Tools consist of the several small scripts run from - port(1) front-end: --- port commit: commit a port into the FreeBSD Ports CVS Repository -+- port commit: commit a port into the FreeBSD Ports SVN Repository - - port create: create a new port from a template - - port diff: generate a diff against a previous version of the port - - port fetch: fetch distfile(s) of a new version of the port -@@ -43,42 +43,35 @@ - Let us assume you are interested in helping out with one of the ports. - The most convenient way of doing that with the Port Tools is the followin= g. - Even though the Port Tools have 3 most of diff generation, the recommende= d is=20 --CVS (default). Do not be scared away at this point - it is very simple. -+SVN (default). Do not be scared away at this point - it is very simple. - Let me give a quick overview: -=20 --1. Set up CVSROOT environment variable -- -- sgk@elf% export CVSROOT=3D":pserver:anoncvs@anoncvs.FreeBSD.org:/home/= ncvs" -- -- NOTE: you may want to check the Handbook for a list of anonymous CVS s= ervers -- (http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/anoncvs.htm= l). -- --2. Check out a working copy of the port. I usually do it in ~/ports direc= tory: -+1. Check out a working copy of the port. I usually do it in ~/ports direc= tory: - (NOTE: my ~/ports directory contains only those ports I am interested = in, - i.e. either maitain or send changes/updates to. Thus, it does not have - to contain the whole FreeBSD Ports tree) -=20 - sgk@elf:~% cd ~/ports -- sgk@elf:~/ports% cvs co ipsvd -+ sgk@elf:~/ports% svn co ipsvd -=20 - ipsvd is the sample port name. -=20 --3. Now, make your changes - e.g. change PORTVERSION from 0.6.0 to 0.6.1. -+2. Now, make your changes - e.g. change PORTVERSION from 0.6.0 to 0.6.1. -=20 - sgk@elf:~/ports/ipsvd% cd ipsvd - sgk@elf:~/ports/ipsvd% vim Makefile -=20 --4. At this moment we need to fetch the new distfile and run "make makesum= "=20 -+3. At this moment we need to fetch the new distfile and run "make makesum= "=20 - to update the distinfo file. There is even simpler way to accomplish t= his=20 - with the Port Tools version 0.50 or later: -=20 - sgk@elf:~/ports/ipsvd% port fetch -=20 --5. Now we want to make sure that the port compiles, installs and works fi= ne: -+4. Now we want to make sure that the port compiles, installs and works fi= ne: -=20 - sgk@elf:~/ports/ipsvd% port test -=20 --6. Once I am satisfied with the results, let us submit a PR=20 -+5. Once I am satisfied with the results, let us submit a PR=20 - with the port update: -=20 - sgk@elf:~/ports/ipsvd% port submit Index: files/patch-cmd_commit.in =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- files/patch-cmd_commit.in (revision 344498) +++ files/patch-cmd_commit.in (working copy) @@ -1,89 +0,0 @@ ---- cmd_commit.in.orig 2009-09-10 04:59:59.000000000 +0900 -+++ cmd_commit.in 2013-04-27 07:26:46.000000000 +0900 -@@ -1,6 +1,6 @@ - # cmd_commit - # Module for port(1) --# SUMMARY: commit a port into the FreeBSD Ports CVS Repository -+# SUMMARY: commit a port into the FreeBSD Ports SVN Repository - # - # $Id: cmd_commit.in,v 1.2 2009/09/09 19:58:30 skolobov Exp $ - # -@@ -59,13 +59,17 @@ -=20 - # Determine if this is a new port - MODE=3D"update" --[ "`grep '\$FreeBSD: ' Makefile`" ] || MODE=3D"new" -+svn status Makefile 2>&1 1>/dev/null | grep -qs 'svn: warning: W155007:' -+if [ $? -eq 0 ] -+then -+ MODE=3D"new" -+fi -=20 - # Run portlint(1) to validate port's sanity - echo "=3D=3D=3D> Pre-commit portlint check" - FLAGS=3D"-C" - [ "${MODE}" =3D "new" ] && FLAGS=3D"${FLAGS} -N" --PL_CVS_IGNORE=3D'^\d+$|^pr-patch$|^cvs-msg$' \ -+PL_SVN_IGNORE=3D'^\d+$|^pr-patch$|^svn-msg$' \ - portlint ${FLAGS} - if [ $? -ne 0 ] - then -@@ -74,21 +78,25 @@ - fi -=20 -=20 --PORTSDIR=3D"`make -V PORTSDIR`" -+# See if SVN message already exists, and use that for commit log -+MSG=3D"svn-msg" -+FLAGS=3D"" -+ - if [ "${MODE}" =3D "new" ] - then -- ${PORTSDIR}/Tools/scripts/addport -d `pwd` -u ${FREEFALL_USERNAME} --else -- # Initialize CVS environment -- PCVS=3D"cvs -d ${FREEFALL_USERNAME}@pcvs.FreeBSD.org:/home/pcvs" -+ PORTSDIR=3D"`make -V PORTSDIR`" -=20 -+ if [ -e ${MSG} ] -+ then -+ FLAGS=3D"-c ${MSG}" -+ fi -+ -+ ${PORTSDIR}/Tools/scripts/addport -d `pwd` -u ${FREEFALL_USERNAME} ${FLA= GS} -+else - # Make sure we are working with up-to-date version -- echo "=3D=3D=3D> Pre-commit CVS update" -- ${PCVS} update -+ echo "=3D=3D=3D> Pre-commit SVN update" -+ svn update -=20 -- # See if CVS message already exists, and use that for commit log -- MSG=3D"cvs-msg" -- FLAGS=3D"" - if [ -e ${MSG} ] - then - FLAGS=3D"-F ${MSG}" -@@ -99,18 +107,18 @@ - echo '=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D' - cat ${MSG} - echo '=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D' -- read -p "Is the CVS message above correct? (y/n)" ANSWER -+ read -p "Is the SVN message above correct? (y/n)" ANSWER - [ "${ANSWER}" =3D "y" ] && break - ${VISUAL:-vi} ${MSG} - done - fi=20 - # Commit the port update - echo "=3D=3D=3D> Committing port update" -- ${PCVS} commit ${FLAGS} -+ svn commit ${FLAGS} - =09 -- # Remove CVS message file only if commit was successful -- [ $? -eq 0 -a -e ${MSG} ] && rm ${MSG} - fi -+# Remove SVN message file only if commit was successful -+[ $? -eq 0 -a -e ${MSG} ] && rm ${MSG} -=20 - echo "=3D=3D=3D> Done" - exit 0 Index: files/patch-cmd_diff.in =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- files/patch-cmd_diff.in (revision 344498) +++ files/patch-cmd_diff.in (working copy) @@ -1,20 +0,0 @@ ---- cmd_diff.in.orig 2009-09-09 21:59:59.000000000 +0200 -+++ cmd_diff.in 2013-10-22 10:37:13.000000000 +0200 -@@ -20,7 +20,7 @@ - Usage: port diff [-h] [-d ] - -h - Display this usage summary - -d - Select diff generation mode: -- CVS - against CVS -+ SVN - against SVN - - against Ports tree in - - against original port in - EOF -@@ -65,7 +65,7 @@ - [ -n "${DIFF_VIEWER}" ] || DIFF_VIEWER=3D"more" - fi - echo "=3D=3D=3D> Viewing diff with ${DIFF_VIEWER}" --${DIFF_VIEWER} ${PATCH} -+${DIFF_VIEWER} < ${PATCH} -=20 - # Cleanup - rm -rf ${TEMPROOT} Index: files/patch-cmd_submit.in =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- files/patch-cmd_submit.in (revision 344498) +++ files/patch-cmd_submit.in (working copy) @@ -1,202 +0,0 @@ ---- ./cmd_submit.in.orig 2009-09-09 22:59:59.000000000 +0300 -+++ ./cmd_submit.in 2013-10-30 11:02:11.324453150 +0200 -@@ -25,11 +25,12 @@ - change - changing a port=20 - update - updating a port to newer version - -d - Select diff generation mode: -- CVS - against CVS -+ SVN - against SVN - - against Ports tree in - - against original port in - -s - Set PR's severity to - -p - Set PR's priority to -+ -P - Don't send the PR; print to stdout (see -P in send-pr(1)) - -c - committer mode: more portlint(1) checks - -L - Skip running portlint(1) - EOF -@@ -41,9 +42,10 @@ - PRIORITY=3D"low" - COMMITTER=3D"no" - RUN_PORTLINT=3D"yes" -+SENDPR_ARGS=3D -=20 - # Parse command line arguments --ARGS=3D`/usr/bin/getopt hm:d:s:p:cL $*` -+ARGS=3D`/usr/bin/getopt hm:d:s:p:cLP $*` - if [ $? !=3D 0 ] - then - echo "Error: invalid arguments" -@@ -116,6 +118,10 @@ - -L) - RUN_PORTLINT=3D"no" - ;; -+ # print to stdout instead of sending -+ -P) -+ SENDPR_ARGS=3D"${SENDPR_ARGS} -P" -+ ;; - esac - shift - done -@@ -123,9 +129,19 @@ - # Determine if this is a new port - if [ "${MODE}" =3D "" ] - then -- [ "`grep '\$FreeBSD: ' Makefile`" ] || MODE=3D"new" -+ svn status Makefile 2>&1 1>/dev/null | grep -qs 'svn: warning: W155007:' -+ [ $? -eq 0 ] || [ "`grep '\$FreeBSD: ' Makefile`" ] || MODE=3D"new" - fi -=20 -+# util_diff will set -+# - PORTBASENAME if PORTNAME !=3D port's directory name -+# - DIFF_TYPE to SVN, ports, or suffix -+PORTBASENAME=3D"" -+DIFF_TYPE=3D"" -+ -+# Generate diff or shar, depending on the mode, and create TEMPROOT -+. ${SCRIPT_DIR}/util_diff -+ - # Run portlint(1) to validate port's sanity - if [ "${RUN_PORTLINT}" =3D "yes" ] - then -@@ -133,10 +149,13 @@ - FLAGS=3D"-${PORTLINT_FLAGS:-abt}" - [ "${COMMITTER}" =3D "yes" ] && FLAGS=3D"${FLAGS} -c" - [ "${MODE}" =3D "new" ] && FLAGS=3D"${FLAGS} -N" -- portlint ${FLAGS} -- if [ $? -ne 0 ] -+ if portlint ${FLAGS} > ${TEMPROOT}/.portlint.out - then -+ cat ${TEMPROOT}/.portlint.out -+ else -+ cat ${TEMPROOT}/.portlint.out - echo "Error validating port" -+ rm -rf ${TEMPROOT} - exit 1 - fi - else -@@ -144,8 +163,26 @@ - fi -=20 - # Collect information about the port --PORTNAME=3D"`make -V PKGNAMEPREFIX``make -V PORTNAME``make -V PKGNAMESUFF= IX`" -+ -+# The following section comes from util_diff.=20 -+# For port submit to work with python/ruby ports and GNATS auto-assign, v= ersion -+# numbers need to be sed'ed out before adding to synopsis. -+ -+PYTHON_SUFFIX=3D"`make -V PYTHON_SUFFIX`" -+RUBY_SUFFIX=3D"`make -V RUBY_SUFFIX`" -+PKGNAMEPREFIX=3D"`make -V PKGNAMEPREFIX | sed -E "s,py${PYTHON_SUFFIX}-,p= y-," | sed -E "s,ruby${RUBY_SUFFIX}-,ruby-,"`" -+PKGNAMESUFFIX=3D"`make -V PKGNAMESUFFIX`" -+PORTNAME=3D"${PKGNAMEPREFIX}`make -V PORTNAME`${PKGNAMESUFFIX}" -+ -+# Rest as normal -+ - PORTVERSION=3D"`make -V PORTVERSION`" -+PORTREVISION=3D"`make -V PORTREVISION`" -+PORTEPOCH=3D"`make -V PORTEPOCH`" -+VERSIONSTRING=3D"${PORTVERSION}" -+[ "$PORTREVISION" !=3D "0" ] && VERSIONSTRING=3D"${VERSIONSTRING}_${PORTR= EVISION}" -+[ "$PORTEPOCH" !=3D "0" ] && VERSIONSTRING=3D"${VERSIONSTRING},${PORTEPOC= H}" -+ - PKGNAME=3D"`make -V PKGNAME`" - CATEGORY=3D"`make -V CATEGORIES | sed -E 's/^([^ ]+).*$/\1/'`" - MAINTAINER=3D"`make -V MAINTAINER`" -@@ -155,9 +192,6 @@ - RELEASE=3D"`uname -srp`" - SYSTEM=3D"`uname -a | cut -d ' ' -f 1-12`" -=20 --# Generate diff or shar, depending on the mode --. ${SCRIPT_DIR}/util_diff -- - CC=3D"" - if [ "${MODE}" =3D "new" ] - then -@@ -194,10 +228,10 @@ - # Override some parameters if submitting an update to a newer - # version of an existing port - CLASS=3D"update" -- SUFFIX=3D"update to ${PORTVERSION}" -- DESCRIPTION=3D"- Update to ${PORTVERSION}" -+ SUFFIX=3D"update to ${VERSIONSTRING}" -+ DESCRIPTION=3D"- Update to ${VERSIONSTRING}" - fi --=09 -+ - # Check to see if maintainership was requested - MAINT_CHANGE=3D"`grep '^[+-]MAINTAINER' ${PATCH} | wc -l`" - if [ ${MAINT_CHANGE} -eq 2 ] -@@ -242,7 +276,12 @@ - fi -=20 - # Generate Synopsis line --SYNOPSIS=3D"[${PREFIX}] ${CATEGORY}/${PORTNAME}: ${SUFFIX}" -+if [ -z "${PORTBASENAME}" ] -+then -+ SYNOPSIS=3D"[${PREFIX}] ${CATEGORY}/${PORTNAME}: ${SUFFIX}" -+else -+ SYNOPSIS=3D"[${PREFIX}] ${CATEGORY}/${PORTBASENAME}: ${SUFFIX}" -+fi -=20 - echo "=3D=3D=3D> Generating PR form" - PR_FORM=3D"${TEMPROOT}/PR" -@@ -266,9 +305,10 @@ - SEND-PR: [ low | medium | high ] - >Category: ports=20 - SEND-PR: -- SEND-PR: advocacy alpha bin conf docs gnu =20 -- SEND-PR: i386 ia64 java kern misc ports =20 -- SEND-PR: powerpc sparc64 standards www =20 -+ SEND-PR: advocacy alpha amd64 arm bin conf -+ SEND-PR: docs gnu i386 ia64 java kern -+ SEND-PR: misc ports powerpc sparc64 standards sun4v -+ SEND-PR: threads usb www - >Class: ${CLASS} - SEND-PR: [ sw-bug | doc-bug | change-request | update | maintainer-updat= e ] - >Release: ${RELEASE} -@@ -277,25 +317,15 @@ - >Description: - EOF -=20 -+MODESTRING=3D"mode: ${MODE}" -+ - if [ "${MODE}" =3D "new" ] - then - cat pkg-descr >> ${PR_FORM} - else - echo -e ${DESCRIPTION} >> ${PR_FORM} -=20 -- # Get list of added/removed files -- if [ "${DIFF_MODE}" =3D "CVS" ] -- then -- FILES_ADD=3D`grep --after-context=3D1 "^--- /dev/null" ${PATCH} | grep = "^+++ " | awk '{print $2;}'` -- FILES_DEL=3D`grep --before-context=3D1 "^+++ /dev/null" ${PATCH} | grep= "^--- " | awk '{print $2;}'` -- else -- TEMP=3D`mktemp -t porttools` || exit 1 -- find -s ${ORIG_DIR} -type f | sed -e "s#${ORIG_DIR}/##" > ${TEMP} -- CURR_DIR=3D`pwd` -- FILES_ADD=3D`find -s ${CURR_DIR} -type f | sed -e "s#${CURR_DIR}/##" | = comm -23 - ${TEMP}` -- FILES_DEL=3D`find -s ${CURR_DIR} -type f | sed -e "s#${CURR_DIR}/##" | = comm -13 - ${TEMP}` -- rm -f ${TEMP} -- fi -+ MODESTRING=3D"${MODESTRING}, diff: ${DIFF_TYPE}" -=20 - if [ -n "${FILES_ADD}" ] - then -@@ -326,14 +356,14 @@ -=20 - cat >> ${PR_FORM} <<- EOF -=20 -- Generated with FreeBSD Port Tools __VERSION__ -+ Generated with FreeBSD Port Tools __VERSION__ (${MODESTRING}) - >How-To-Repeat: - >Fix: - EOF -=20 - # Invoke send-pr(1) - echo "=3D=3D=3D> Invoking send-pr(1) to submit a PR" --PR_FORM=3D"${PR_FORM}" /usr/bin/send-pr -a ${PATCH} -+PR_FORM=3D"${PR_FORM}" /usr/bin/send-pr -a ${PATCH} ${SENDPR_ARGS} - if [ $? -ne 0 ] - then - echo "Error submitting PR" Index: files/patch-cmd_test.in =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- files/patch-cmd_test.in (revision 344498) +++ files/patch-cmd_test.in (working copy) @@ -1,11 +0,0 @@ ---- cmd_test.in 2009-09-09 23:59:59.000000000 +0400 -+++ cmd_test.in 2010-11-10 13:57:10.000000000 +0300 -@@ -189,7 +189,7 @@ - sed -e "s,^${PREFIX}/,," - sudo find ${LOCALBASE}/ -type d | sed "s,^${LOCALBASE}/,," | sort > ${PR= EFIX}.PLIST_DIRS.before - sudo find ${PREFIX}/ -type d | sed "s,^${PREFIX}/,," | sort > ${PREFIX}.= PLIST_DIRS.after -- comm -13 ${PREFIX}.PLIST_DIRS.before ${PREFIX}.PLIST_DIRS.after | sort -= r | awk '{print "@dirrmtry "$1}' -+ comm -13 ${PREFIX}.PLIST_DIRS.before ${PREFIX}.PLIST_DIRS.after | sort -= r | awk '{print "@dirrmtry "$0}' - fi -=20 - # Finish with a clean workspace Index: files/patch-port.1 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- files/patch-port.1 (revision 344498) +++ files/patch-port.1 (working copy) @@ -1,55 +0,0 @@ ---- port.1.orig 2009-09-10 04:59:59.000000000 +0900 -+++ port.1 2012-12-27 19:26:53.000000000 +0900 -@@ -123,8 +123,8 @@ - .It Fl d Ar mode - select diff generation mode: - .Bl -tag -width ".Pa suffix" --.It CVS --diff against CVS repository (default). -+.It SVN -+diff against SVN repository (default). - .It Pa dir - diff against original version of the port in the Ports tree with root at - .Pa dir -@@ -141,10 +141,10 @@ - .Pp - Example: - .Pp --.Dl % port diff -d CVS -+.Dl % port diff -d SVN - .Pp - This would generate unified diff of modified checked-out working copy=20 --of the port against local or remote CVS repo. -+of the port against SVN repo. - .It Ar fetch - Fetch one or more distfiles of new or updated port version=20 - and updates checksums. -@@ -215,6 +215,8 @@ - .Bl -tag -width ".Fl s Ar severity" - .It Fl h - display usage summary for this command. -+.It Fl d Ar mode -+select diff generation mode - see the port diff command above for details. - .It Fl m Ar mode - Overrides automatic detection of operation mode: - .Bl -tag -width update -@@ -245,6 +247,10 @@ - Skips running - .Xr portlint 1 . - Using this option will generate a warning and it strongly discouraged. -+.It Fl P -+Don't send the PR. -+Just print to stdout (see -P in -+.Xr send-pr 1) . - .El - .It Ar test - Automates the process of testing a new port (or a port update)=20 -@@ -347,7 +353,7 @@ - for detailed description of the format. - .El - .Sh SEE ALSO --.Xr cvs 1 , -+.Xr svn 1 , - .Xr cdiff 1 , - .Xr diff 1 , - .Xr more 1 , Index: files/patch-port.in =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- files/patch-port.in (revision 344498) +++ files/patch-port.in (working copy) @@ -1,19 +0,0 @@ ---- port.in.orig 2009-09-10 04:59:59.000000000 +0900 -+++ port.in 2013-10-28 17:50:13.000000000 +0100 -@@ -19,12 +19,15 @@ - ORGANIZATION=3D"" - BUILDROOT=3D"/tmp" - ARCHIVE_DIR=3D"" -- DIFF_MODE=3D"CVS" -+ DIFF_MODE=3D"SVN" - DIFF_VIEWER=3D"more" - PORTLINT_FLAGS=3D"abct" -+ PORTSDIR=3D"/usr/ports" - EOF - fi -=20 -+PORTSDIR=3D"/usr/ports" -+ - # Reading configuration file - . ${PORTTOOLS} -=20 Index: files/patch-porttools.5 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- files/patch-porttools.5 (revision 344498) +++ files/patch-porttools.5 (working copy) @@ -1,11 +0,0 @@ ---- porttools.5.orig 2009-09-10 04:59:59.000000000 +0900 -+++ porttools.5 2012-12-27 19:46:53.000000000 +0900 -@@ -51,7 +51,7 @@ - Default to - .Pa /tmp . - .It Ev DIFF_MODE --Selects diff generation mode. Valid values are: CVS, directory -+Selects diff generation mode. Valid values are: SVN, directory - .Pq e.g. Pa /usr/ports , - or suffix - .Pq e.g. Pa .orig . Index: files/patch-util_diff.in =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- files/patch-util_diff.in (revision 344498) +++ files/patch-util_diff.in (working copy) @@ -1,142 +0,0 @@ ---- util_diff.in.orig 2009-09-10 04:59:59.000000000 +0900 -+++ util_diff.in 2013-10-28 17:48:33.000000000 +0100 -@@ -14,7 +14,8 @@ - # Determine if this is a new port - if [ "${MODE}" =3D "" ] - then -- [ "`grep '\$FreeBSD: ' Makefile`" ] || MODE=3D"new" -+ svn status Makefile 2>&1 1>/dev/null | grep -qs 'svn: warning: W155007:' -+ [ $? -eq 0 ] || [ "`grep '\$FreeBSD: ' Makefile`" ] || MODE=3D"new" - fi -=20 - # Create a temporary dir for generated files (patch/shar, PR form) -@@ -37,49 +38,96 @@ - fi - cd ${SAVE_CWD} - else -- # Default to CVS diff mode -- [ "${DIFF_MODE}" =3D "" ] && DIFF_MODE=3D"CVS" -- -- # If there is no CVS subdirectory then -- # fallback to diffing against /usr/ports tree=20 -- if [ "${DIFF_MODE}" =3D "CVS" -a ! -d CVS ] -+ # Determine the default diff mode -+ if [ "${DIFF_MODE}" =3D "" ] - then -- DIFF_MODE=3D"/usr/ports" -+ if [ -d ${PORTSDIR}/.svn ] -+ then -+ DIFF_MODE=3D"SVN" -+ else -+ DIFF_MODE=3D"${PORTSDIR}" -+ fi -+ echo "Default diff mode is ${DIFF_MODE}" -+ elif [ "${DIFF_MODE}" =3D "SVN" ] -+ then -+ # If there is no .svn directory then -+ # fallback to diffing against ${PORTSDIR} tree -+ if [ ! -d ${PORTSDIR}/.svn ] -+ then -+ echo "Diff mode was set to ${DIFF_MODE}, but there's no .svn directory" -+ echo -n "Trying ${PORTSDIR} ... " -+ if [ -d ${PORTSDIR} ] -+ then -+ DIFF_MODE=3D"${PORTSDIR}" -+ echo "found" -+ else -+ echo "not found - please choose an approriate diff mode" -+ rm -rf ${TEMPROOT} -+ exit 1 -+ fi -+ fi - fi -=20 -- if [ "${DIFF_MODE}" =3D "CVS" ] -+ if [ "${DIFF_MODE}" =3D "SVN" ] - then -- # Test for ~/.cvspass and create if necessary -- test -f ${HOME}/.cvspass || touch ${HOME}/.cvspass -+ DIFF_TYPE=3D${DIFF_MODE} -=20 -- # Run 'cvs update' first -- echo "=3D=3D=3D> Updating from CVS" -- cvs -R update -Pd -- if [ $? -ne 0 ] -+ # Run 'svn update' first -+ echo "=3D=3D=3D> Updating from SVN" -+ svn update -+ status=3D$? -+ if [ $status -ne 0 ] - then -- echo "Error updating CVS" -+ echo "Error updating SVN" - rm -rf ${TEMPROOT} - exit 1 - fi -- -- DIFF_CMD=3D"cvs -R diff -uN" -+ DIFF_CMD=3D"svn diff" - else=20 -- # Non-CVS modes -+ # Non-SVN modes -+ DIRBASENAME=3D`basename \`pwd\`` -+ PORTBASENAME_HEADER=3D`sed -n -E -e '1,/^($|[^#].*$)|\\$FreeBSD\:/s%^#.= *\\$FreeBSD\:[[:space:]]*([^/]+/)*([^/]+)/Makefile.*\\$%\2%p' Makefile` -+ if [ "${DIRBASENAME}" !=3D "${PORTBASENAME_HEADER}" ] -+ then -+ echo "Warning: current directory name differs from Makefile header:" -+ echo " ${DIRBASENAME}" !=3D "${PORTBASENAME_HEADER}" -+ fi -+ PYTHON_SUFFIX=3D"`make -V PYTHON_SUFFIX`" -+ RUBY_SUFFIX=3D"`make -V RUBY_SUFFIX`" -+ PKGNAMEPREFIX=3D"`make -V PKGNAMEPREFIX | sed -E "s,py${PYTHON_SUFFIX}-= ,py-," | sed -E "s,ruby${RUBY_SUFFIX}-,ruby-,"`" -+ PKGNAMESUFFIX=3D"`make -V PKGNAMESUFFIX`" -+ PORTNAME=3D"${PKGNAMEPREFIX}`make -V PORTNAME`${PKGNAMESUFFIX}" - if [ -d ${DIFF_MODE} ] - then - # -d have been specified - # it should be Ports tree location -+ DIFF_TYPE=3D"ports" - CATEGORY=3D"`make -V CATEGORIES | sed -E 's/^([^ ]+).*$/\1/'`" -- PYTHON_SUFFIX=3D"`make -V PYTHON_SUFFIX`" -- RUBY_SUFFIX=3D"`make -V RUBY_SUFFIX`" -- PKGNAMEPREFIX=3D"`make -V PKGNAMEPREFIX | sed -E "s,py${PYTHON_SUFFIX}= -,py-," | sed -E "s,ruby${RUBY_SUFFIX}-,ruby-,"`" -- PKGNAMESUFFIX=3D"`make -V PKGNAMESUFFIX`" -- PORTNAME=3D"${PKGNAMEPREFIX}`make -V PORTNAME`${PKGNAMESUFFIX}" - ORIG_DIR=3D"${DIFF_MODE}/${CATEGORY}/${PORTNAME}" -+ if [ ! -d ${ORIG_DIR} ] -+ then -+ echo "Original version does not exist at ${ORIG_DIR}" -+ if [ -d "${DIFF_MODE}/${CATEGORY}/${DIRBASENAME}" ] -+ then -+ PORTBASENAME=3D${DIRBASENAME} -+ ORIG_DIR=3D"${DIFF_MODE}/${CATEGORY}/${PORTBASENAME}" -+ elif [ -d "${DIFF_MODE}/${CATEGORY}/${PORTBASENAME_HEADER}" ] -+ then -+ PORTBASENAME=3D${PORTBASENAME_HEADER} -+ ORIG_DIR=3D"${DIFF_MODE}/${CATEGORY}/${PORTBASENAME}" -+ fi -+ [ -d ${ORIG_DIR} ] && echo "Using ${ORIG_DIR} instead" -+ fi - else=20 - # -d have been specified - # is used to determine original port location -- ORIG_DIR=3D"`pwd`${DIFF_MODE}" -+ DIFF_TYPE=3D"suffix" -+ ORIG_DIR=3D"../${DIRBASENAME}${DIFF_MODE}" -+ if [ "${DIRBASENAME}" !=3D "${PORTNAME}" -a "${DIRBASENAME}" =3D "${PO= RTBASENAME_HEADER}" ] -+ then -+ PORTBASENAME=3D${DIRBASENAME} -+ echo "Using ${PORTBASENAME} instead of ${PORTNAME} as the port's dire= ctory name" -+ fi - fi -=20 - # Check to see if the original version of port exist=20 -@@ -90,7 +138,7 @@ - exit 1 - fi - =09 -- DIFF_CMD=3D"diff -ruN --exclude=3DCVS ${ORIG_DIR} `pwd`" -+ DIFF_CMD=3D"diff -ruN ${ORIG_DIR} ." - fi -=20 - # Generate patch Index: pkg-descr =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- pkg-descr (revision 344498) +++ pkg-descr (working copy) @@ -6,4 +6,4 @@ - port submit: submit a PR with new port, or port change/update - port test: automate testing a new port or a port update =20 -WWW: http://sourceforge.net/projects/porttools/ +WWW: http://github.com/xmj/porttools/ Index: pkg-plist =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- pkg-plist (revision 344498) +++ pkg-plist (working copy) @@ -16,6 +16,5 @@ %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%%%DOCSDIR%%/NEWS %%PORTDOCS%%%%DOCSDIR%%/THANKS -%%PORTDOCS%%%%DOCSDIR%%/TODO %%PORTDOCS%%@dirrm %%DOCSDIR%% @dirrm %%DATADIR%% =3D=3D=3D> Done --lrZ03NoBR/3+SXJZ-- --6sX45UoQRIJXqkqR Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) iQIcBAEBAgAGBQJTAE7NAAoJEAy1bITjfmSMGdMP/iSRKAUTq3HiN+aS0EYBXAXp +/csLXw3gNHrQ94Xu39M3pl2bwJ4aAsO2+4knHysOvUtTUxMxouJud8GR9W1xKlD ObCfHglm9XFQs5EdMoh9wyuYO/iyWNdbLJDrNyJYQx8Ztz557GJ6qyQY76S40iqu kFFnVnw7bac2BoXAoTrBXrAfrtLnDDVQKhsg/sMXcjgmxiXe0J9Wbdl0H3iQ6q4j ifPrw7iGCFZ5orflmnINSXy4lCvWF3js9BxottGuAqFBMBwGzUBKCZeYYkZqdnI7 VcrwaACVaQZQfyx0be/Y/+kapiycxlgsvK+gsa26SwdHfIWpfZ9iHWYsurlQYzNE +SK1FhWfs7jixtH+tgHsxCIy3uE0Wkbul+UCjbUj3K5yiT/w8OI1Zcz6n/uBbF0N /sZLK4v64WYpUMq/t7sMWgtfPSBbgl/Uidg0rhAruUw/16oLLz6ZzdQkhFeDCrMm jdWXWwJYZe6NaODkiHDfDCGQ477d0Lgp3CkprWAxPV1f8MJldD39R4EN3KFYE5oM 34DjN0wT66KlcHFy+1k8OpiKZH5PCFrgVdNx6VuWEtha6+STm1ujvAiPRC72rWo/ s7WIYUDx5QgR5cnfU4KPX8rJAMibT2bje2p+RWZxReG95JNqBi5mmkXGXjw3GoiB 8q3FOBGhdLyP+g2pSM/x =9lxB -----END PGP SIGNATURE----- --6sX45UoQRIJXqkqR-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 05:40:02 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A703EDFF for ; Sun, 16 Feb 2014 05:40:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 916F71006 for ; Sun, 16 Feb 2014 05: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 s1G5e2Nd002531 for ; Sun, 16 Feb 2014 05:40:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1G5e2SA002530; Sun, 16 Feb 2014 05:40:02 GMT (envelope-from gnats) Date: Sun, 16 Feb 2014 05:40:02 GMT Message-Id: <201402160540.s1G5e2SA002530@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/186810: www/qupzilla should be updated, not marked BROKEN X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 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: Sun, 16 Feb 2014 05:40:02 -0000 The following reply was made to PR ports/186810; it has been noted by GNATS. From: Edwin Groothuis To: javad.kouhi@gmail.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/186810: www/qupzilla should be updated, not marked BROKEN Date: Sun, 16 Feb 2014 05:30:15 UT Maintainer of www/qupzilla, Please note that PR ports/186810 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/186810 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 08:58:39 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3726A2E1; Sun, 16 Feb 2014 08:58:39 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 08A331ADB; Sun, 16 Feb 2014 08:58: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 s1G8wcia084862; Sun, 16 Feb 2014 08:58:38 GMT (envelope-from koobs@freefall.freebsd.org) Received: (from koobs@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1G8wcW3084859; Sun, 16 Feb 2014 08:58:38 GMT (envelope-from koobs) Date: Sun, 16 Feb 2014 08:58:38 GMT Message-Id: <201402160858.s1G8wcW3084859@freefall.freebsd.org> To: joemann@beefree.free.de, koobs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, koobs@FreeBSD.org From: koobs@FreeBSD.org Subject: Re: ports/186372: [UPDATE] ports-mgmt/porttools: update to 1.00.2014.02.02, take maintainership X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 08:58:39 -0000 Synopsis: [UPDATE] ports-mgmt/porttools: update to 1.00.2014.02.02, take maintainership Responsible-Changed-From-To: freebsd-ports-bugs->koobs Responsible-Changed-By: koobs Responsible-Changed-When: Sun Feb 16 08:58:38 UTC 2014 Responsible-Changed-Why: I'll take it (maintainer timeout, 2 weeks) http://www.freebsd.org/cgi/query-pr.cgi?pr=186372 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 09:30:00 2014 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 ESMTPS id C28A3BBF for ; Sun, 16 Feb 2014 09:30:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8CC581CC0 for ; Sun, 16 Feb 2014 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 s1G9U0Ig095522 for ; Sun, 16 Feb 2014 09:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1G9U05p095521; Sun, 16 Feb 2014 09:30:00 GMT (envelope-from gnats) Resent-Date: Sun, 16 Feb 2014 09:30:00 GMT Resent-Message-Id: <201402160930.s1G9U05p095521@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, Mario Sergio Fujikawa Ferreira Received: by hub.freebsd.org (Postfix, from userid 854) id A87CEACC; Sun, 16 Feb 2014 09:25:45 +0000 (UTC) Message-Id: <20140216092545.A87CEACC@hub.freebsd.org> Date: Sun, 16 Feb 2014 09:25:45 +0000 (UTC) From: Mario Sergio Fujikawa Ferreira To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/186812: [PATCH] mail/serialmail fix PLIST with dependency sysutils/ucspi-ssl X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Mario Sergio Fujikawa Ferreira List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 09:30:00 -0000 >Number: 186812 >Category: ports >Synopsis: [PATCH] mail/serialmail fix PLIST with dependency sysutils/ucspi-ssl >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 Feb 16 09:30:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Mario Sergio Fujikawa Ferreira >Release: FreeBSD 10.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD here.here.here 10.0-RELEASE FreeBSD 10.0-RELEASE #12: Sun Feb 9 16:29:57 BRST 2014 root@here.here.here:/usr/obj/usr/src/sys/LIOUX amd64 Standard 10.0 FreeBSD release with source build ports (not packages). >Description: pkg-plist for mail/serialmail is incorrect if sysutils/ucspi-ssl is previously installed Error message: -------- ====> Compressing man pages (compress-man) ===> Installing for serialmail-0.75_2 ===> Checking if mail/serialmail already installed ===> Registering installation for serialmail-0.75_2 pkg-static: duplicate file listing: /usr/local/man/man1/maildirsmtp.1.gz, ignori ng pkg-static: lstat(/usr/ports/mail/serialmail/work/stage/usr/local/man/man1/maild irsmtps.1.gz): No such file or directory *** Error code 74 -------- >How-To-Repeat: # cd /usr/ports/sysutils/ucspi-ssl # make all deinstall install package # cd /usr/ports/mail/serialmail # make all deinstall install package >Fix: --- patch begins here --- Index: Makefile =================================================================== --- Makefile (revision 344372) +++ Makefile (working copy) @@ -3,7 +3,7 @@ PORTNAME= serialmail PORTVERSION= 0.75 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= mail MASTER_SITES= http://cr.yp.to/software/ \ ftp://ftp.gbnet.net/pub/qmail/ \ Index: pkg-plist =================================================================== --- pkg-plist (revision 344372) +++ pkg-plist (working copy) @@ -11,5 +11,3 @@ man/man1/serialqmtp.1.gz man/man1/serialsmtp.1.gz man/man1/setlock.1.gz -%%UCSPI_SSL%%man/man1/maildirsmtp.1.gz -%%UCSPI_SSL%%man/man1/maildirsmtps.1.gz --- patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 09:30:08 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C5F7BBF2; Sun, 16 Feb 2014 09:30:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9964C1CC3; Sun, 16 Feb 2014 09: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 s1G9U8EP095664; Sun, 16 Feb 2014 09:30:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1G9U89B095663; Sun, 16 Feb 2014 09:30:08 GMT (envelope-from edwin) Date: Sun, 16 Feb 2014 09:30:08 GMT Message-Id: <201402160930.s1G9U89B095663@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, bdrewery@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186812: [PATCH] mail/serialmail fix PLIST with dependency sysutils/ucspi-ssl X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 09:30:08 -0000 Synopsis: [PATCH] mail/serialmail fix PLIST with dependency sysutils/ucspi-ssl Responsible-Changed-From-To: freebsd-ports-bugs->bdrewery Responsible-Changed-By: edwin Responsible-Changed-When: Sun Feb 16 09:30:08 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186812 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 10:50:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DC428AF0 for ; Sun, 16 Feb 2014 10:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B881912BA for ; Sun, 16 Feb 2014 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 s1GAo0ol021563 for ; Sun, 16 Feb 2014 10:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1GAo0LZ021562; Sun, 16 Feb 2014 10:50:00 GMT (envelope-from gnats) Resent-Date: Sun, 16 Feb 2014 10:50:00 GMT Resent-Message-Id: <201402161050.s1GAo0LZ021562@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 ESMTPS id 306CB9EA for ; Sun, 16 Feb 2014 10:44:04 +0000 (UTC) Received: from sunpoet.net (sunpoet.net [220.135.71.135]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id F193A12A3 for ; Sun, 16 Feb 2014 10:44:03 +0000 (UTC) Received: by sunpoet.net (Postfix, from userid 1000) id F37C6481A; Sun, 16 Feb 2014 18:44:25 +0800 (CST) Message-Id: <20140216104425.F37C6481A@sunpoet.net> Date: Sun, 16 Feb 2014 18:44:25 +0800 (CST) From: Sunpoet Po-Chuan Hsieh To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/186815: [PATCH] net-mgmt/p5-Data-Validate-IP: update to 0.22 Cc: freebsd-ports@t-b-o-h.net X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 10:50:01 -0000 >Number: 186815 >Category: ports >Synopsis: [PATCH] net-mgmt/p5-Data-Validate-IP: update to 0.22 >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 Feb 16 10:50:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Sunpoet Po-Chuan Hsieh >Release: FreeBSD 10.0-STABLE amd64 >Organization: The FreeBSD Project >Environment: System: FreeBSD bonjour.sunpoet.net 10.0-STABLE FreeBSD 10.0-STABLE #0 r261402: Mon Feb 3 22:35:15 >Description: - Update to 0.22 - Add LICENSE - Add TEST_DEPENDS Changes: http://search.cpan.org/dist/Data-Validate-IP/Changes Port maintainer (freebsd-ports@t-b-o-h.net) is cc'd. Generated with FreeBSD Port Tools 0.99_11 (mode: update, diff: SVN) >How-To-Repeat: >Fix: --- p5-Data-Validate-IP-0.22.patch begins here --- Index: Makefile =================================================================== --- Makefile (revision 344526) +++ Makefile (working copy) @@ -2,18 +2,23 @@ # $FreeBSD$ PORTNAME= Data-Validate-IP -PORTVERSION= 0.14 +PORTVERSION= 0.22 CATEGORIES= net-mgmt perl5 MASTER_SITES= CPAN -MASTER_SITE_SUBDIR= CPAN:NEELY +MASTER_SITE_SUBDIR= CPAN:DROLSKY PKGNAMEPREFIX= p5- MAINTAINER= freebsd-ports@t-b-o-h.net COMMENT= Common data validation methods for IPs -BUILD_DEPENDS= p5-Net-Netmask>=0:${PORTSDIR}/net-mgmt/p5-Net-Netmask -RUN_DEPENDS= p5-Net-Netmask>=0:${PORTSDIR}/net-mgmt/p5-Net-Netmask +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual +BUILD_DEPENDS= p5-NetAddr-IP>=4:${PORTSDIR}/net-mgmt/p5-NetAddr-IP +RUN_DEPENDS:= ${BUILD_DEPENDS} +TEST_DEPENDS= p5-Test-Requires>=0:${PORTSDIR}/devel/p5-Test-Requires \ + p5-Test-Taint>=0:${PORTSDIR}/devel/p5-Test-Taint + USES= perl5 USE_PERL5= configure Index: distinfo =================================================================== --- distinfo (revision 344526) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (Data-Validate-IP-0.14.tar.gz) = 992b5940df192ff0c7faf9a7a865494861086a4b85596c986a85284aa8449374 -SIZE (Data-Validate-IP-0.14.tar.gz) = 8333 +SHA256 (Data-Validate-IP-0.22.tar.gz) = 08571592c5b6a2956490da00950dd955917bac8c23b9a85b7ffcd1381a2259a5 +SIZE (Data-Validate-IP-0.22.tar.gz) = 21112 --- p5-Data-Validate-IP-0.22.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 10:50:08 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 928DAB21; Sun, 16 Feb 2014 10:50:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6851A12BE; Sun, 16 Feb 2014 10: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 s1GAo8Sr021701; Sun, 16 Feb 2014 10:50:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1GAo8Ym021700; Sun, 16 Feb 2014 10:50:08 GMT (envelope-from edwin) Date: Sun, 16 Feb 2014 10:50:08 GMT Message-Id: <201402161050.s1GAo8Ym021700@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186815: [PATCH] net-mgmt/p5-Data-Validate-IP: update to 0.22 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 10:50:08 -0000 Synopsis: [PATCH] net-mgmt/p5-Data-Validate-IP: update to 0.22 Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Sun Feb 16 10:50:08 UTC 2014 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186815 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 12:40:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 50EEAAA8 for ; Sun, 16 Feb 2014 12:40:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3C6AA19B0 for ; Sun, 16 Feb 2014 12: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 s1GCe1KJ061322 for ; Sun, 16 Feb 2014 12:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1GCe1Za061321; Sun, 16 Feb 2014 12:40:01 GMT (envelope-from gnats) Date: Sun, 16 Feb 2014 12:40:01 GMT Message-Id: <201402161240.s1GCe1Za061321@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: =?utf-8?q?Anders_Trob=C3=A4ck?= Subject: Re: ports/186809: Calling Maintainer AWOL on and Requesting Maintainership of net-mgmt/nagios-check_ports X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: =?utf-8?q?Anders_Trob=C3=A4ck?= List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 12:40:01 -0000 The following reply was made to PR ports/186809; it has been noted by GNATS. From: =?utf-8?q?Anders_Trob=C3=A4ck?= To: bug-followup@FreeBSD.org, freebsd@troback.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/186809: Calling Maintainer AWOL on and Requesting Maintainership of net-mgmt/nagios-check_ports Date: Sun, 16 Feb 2014 13:31:24 +0100 Approved! Thanks! Regards,, Anders Trob=E4ck =A0 Original Message =A0 From: Edwin Groothuis Sent: s=F6ndagen den 16:e februari 2014 06:20 To: freebsd@troback.com Reply To: bug-followup@FreeBSD.org Cc: bug-followup@FreeBSD.org Subject: Re: ports/186809: Calling Maintainer AWOL on and Requesting Mainta= inership of net-mgmt/nagios-check_ports Maintainer of net-mgmt/nagios-check_ports, Please note that PR ports/186809 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=3Dports/186809 --=20 Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 13:10:00 2014 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 ESMTPS id C2927309 for ; Sun, 16 Feb 2014 13:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9918F1B93 for ; Sun, 16 Feb 2014 13: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 s1GDA0mY070410 for ; Sun, 16 Feb 2014 13:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1GDA0xp070409; Sun, 16 Feb 2014 13:10:00 GMT (envelope-from gnats) Resent-Date: Sun, 16 Feb 2014 13:10:00 GMT Resent-Message-Id: <201402161310.s1GDA0xp070409@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, Kubilay Kocak Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E90052ED for ; Sun, 16 Feb 2014 13:08:28 +0000 (UTC) Received: from mail-pa0-x22c.google.com (mail-pa0-x22c.google.com [IPv6:2607:f8b0:400e:c03::22c]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BEF681B81 for ; Sun, 16 Feb 2014 13:08:28 +0000 (UTC) Received: by mail-pa0-f44.google.com with SMTP id kq14so14222566pab.3 for ; Sun, 16 Feb 2014 05:08:28 -0800 (PST) Received: from 9-STABLE-amd64.elysium (ppp59-167-128-11.static.internode.on.net. [59.167.128.11]) by mx.google.com with ESMTPSA id vg1sm35838867pbc.44.2014.02.16.05.08.25 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 16 Feb 2014 05:08:27 -0800 (PST) Received: by 9-STABLE-amd64.elysium (Postfix, from userid 1001) id 428833D3F4; Mon, 17 Feb 2014 00:08:22 +1100 (EST) Message-Id: <20140216130822.428833D3F4@9-STABLE-amd64.elysium> Date: Mon, 17 Feb 2014 00:08:22 +1100 (EST) From: Kubilay Kocak To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/186817: [PATCH] devel/swig20: update to 2.0.12 Cc: jwbacon@tds.net X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 13:10:00 -0000 >Number: 186817 >Category: ports >Synopsis: [PATCH] devel/swig20: update to 2.0.12 >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 Feb 16 13:10:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Kubilay Kocak >Release: FreeBSD 9.2-STABLE amd64 >Organization: >Environment: System: FreeBSD 9-STABLE-amd64.elysium 9.2-STABLE FreeBSD 9.2-STABLE #0 r260870: Sun Jan 19 10:38:55 EST >Description: devel/swig20: Update to 2.0.12 - Update to 2.0.12 - Remove C++11 patches (upstream) [1] [1] https://github.com/swig/swig/issues/73 Port maintainer (jwbacon@tds.net) is cc'd. Generated with FreeBSD Port Tools 1.00.2014.02.11 (mode: update, diff: ports) >How-To-Repeat: >Fix: --- swig-2.0.12.patch begins here --- diff -ruN /usr/ports/devel/swig20/Makefile ./Makefile --- /usr/ports/devel/swig20/Makefile 2014-01-14 20:01:38.000000000 +1100 +++ ./Makefile 2014-02-10 18:46:00.704795185 +1100 @@ -2,7 +2,7 @@ # $FreeBSD: head/devel/swig20/Makefile 339666 2014-01-14 09:01:38Z koobs $ PORTNAME= swig -PORTVERSION= 2.0.11 +PORTVERSION= 2.0.12 CATEGORIES= devel MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} diff -ruN /usr/ports/devel/swig20/distinfo ./distinfo --- /usr/ports/devel/swig20/distinfo 2014-01-14 20:01:38.000000000 +1100 +++ ./distinfo 2014-02-16 23:58:20.971145225 +1100 @@ -1,2 +1,2 @@ -SHA256 (swig-2.0.11.tar.gz) = 63780bf29f53937ad399a1f68bccb3730c90f65746868c4cdfc25cafcd0a424e -SIZE (swig-2.0.11.tar.gz) = 5310295 +SHA256 (swig-2.0.12.tar.gz) = 65e13f22a60cecd7279c59882ff8ebe1ffe34078e85c602821a541817a4317f7 +SIZE (swig-2.0.12.tar.gz) = 5312394 diff -ruN /usr/ports/devel/swig20/files/patch-Lib__std__std_container.i ./files/patch-Lib__std__std_container.i --- /usr/ports/devel/swig20/files/patch-Lib__std__std_container.i 2014-01-14 20:01:38.000000000 +1100 +++ ./files/patch-Lib__std__std_container.i 1970-01-01 10:00:00.000000000 +1000 @@ -1,53 +0,0 @@ ---- ./Lib/std/std_container.i.orig 2014-01-12 12:49:23.125903702 +1100 -+++ ./Lib/std/std_container.i 2014-01-12 17:22:07.027709014 +1100 -@@ -46,8 +46,14 @@ - void resize(size_type new_size); - - #ifdef SWIG_EXPORT_ITERATOR_METHODS -- iterator erase(iterator pos); -- iterator erase(iterator first, iterator last); -+// Backport C++11 support -+// Issue ID: https://github.com/swig/swig/issues/73 -+// Commit: https://github.com/swig/swig/commit/92128eef445f75f674894e3f5d4e1fc2a1818957 -+%extend { -+ // %extend wrapper used for differing definitions of these methods introduced in C++11 -+ iterator erase(iterator pos) { return $self->erase(pos); } -+ iterator erase(iterator first, iterator last) { return $self->erase(first, last); } -+} - #endif - - %enddef -@@ -68,8 +74,14 @@ - void resize(size_type new_size, const value_type& x); - - #ifdef SWIG_EXPORT_ITERATOR_METHODS -- iterator insert(iterator pos, const value_type& x); -- void insert(iterator pos, size_type n, const value_type& x); -+// Backport C++11 support -+// Issue ID: https://github.com/swig/swig/issues/73 -+// Commit: https://github.com/swig/swig/commit/92128eef445f75f674894e3f5d4e1fc2a1818957 -+%extend { -+ // %extend wrapper used for differing definitions of these methods introduced in C++11 -+ iterator insert(iterator pos, const value_type& x) { return $self->insert(pos, x); } -+ void insert(iterator pos, size_type n, const value_type& x) { $self->insert(pos, n, x); } -+} - #endif - - %enddef -@@ -89,8 +101,14 @@ - void resize(size_type new_size, value_type x); - - #ifdef SWIG_EXPORT_ITERATOR_METHODS -- iterator insert(iterator pos, value_type x); -- void insert(iterator pos, size_type n, value_type x); -+// Backport C++11 support -+// Issue ID: https://github.com/swig/swig/issues/73 -+// Commit: https://github.com/swig/swig/commit/92128eef445f75f674894e3f5d4e1fc2a1818957 -+%extend { -+ // %extend wrapper used for differing definitions of these methods introduced in C++11 -+ iterator insert(iterator pos, value_type x) { return $self->insert(pos, x); } -+ void insert(iterator pos, size_type n, value_type x) { $self->insert(pos, n, x); } -+} - #endif - - %enddef diff -ruN /usr/ports/devel/swig20/files/patch-Lib__std__std_map.i ./files/patch-Lib__std__std_map.i --- /usr/ports/devel/swig20/files/patch-Lib__std__std_map.i 2014-01-14 20:01:38.000000000 +1100 +++ ./files/patch-Lib__std__std_map.i 1970-01-01 10:00:00.000000000 +1000 @@ -1,20 +0,0 @@ ---- ./Lib/std/std_map.i.orig 2014-01-12 17:22:34.464286699 +1100 -+++ ./Lib/std/std_map.i 2014-01-12 17:25:54.847499215 +1100 -@@ -12,9 +12,14 @@ - size_type count(const key_type& x) const; - - #ifdef SWIG_EXPORT_ITERATOR_METHODS --// iterator insert(iterator position, const value_type& x); -- void erase(iterator position); -- void erase(iterator first, iterator last); -+// Backport C++11 support -+// Issue ID: https://github.com/swig/swig/issues/73 -+// Commit: https://github.com/swig/swig/commit/92128eef445f75f674894e3f5d4e1fc2a1818957 -+%extend { -+ // %extend wrapper used for differing definitions of these methods introduced in C++11 -+ void erase(iterator position) { $self->erase(position); } -+ void erase(iterator first, iterator last) { $self->erase(first, last); } -+} - - iterator find(const key_type& x); - iterator lower_bound(const key_type& x); diff -ruN /usr/ports/devel/swig20/files/patch-Lib__std__std_set.i ./files/patch-Lib__std__std_set.i --- /usr/ports/devel/swig20/files/patch-Lib__std__std_set.i 2014-01-14 20:01:38.000000000 +1100 +++ ./files/patch-Lib__std__std_set.i 1970-01-01 10:00:00.000000000 +1000 @@ -1,19 +0,0 @@ ---- ./Lib/std/std_set.i.orig 2014-01-12 17:24:56.140822773 +1100 -+++ ./Lib/std/std_set.i 2014-01-12 17:25:47.509154979 +1100 -@@ -29,8 +29,14 @@ - reverse_iterator rbegin(); - reverse_iterator rend(); - -- void erase(iterator pos); -- void erase(iterator first, iterator last); -+// Backport C++11 support -+// Issue ID: https://github.com/swig/swig/issues/73 -+// Commit: https://github.com/swig/swig/commit/92128eef445f75f674894e3f5d4e1fc2a1818957 -+%extend { -+ // %extend wrapper used for differing definitions of these methods introduced in C++11 -+ void erase(iterator pos) { $self->erase(pos); } -+ void erase(iterator first, iterator last) { $self->erase(first, last); } -+} - - iterator find(const key_type& x); - iterator lower_bound(const key_type& x); --- swig-2.0.12.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 13:10:08 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 92A0D33A; Sun, 16 Feb 2014 13:10:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6A3221B96; Sun, 16 Feb 2014 13: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 s1GDA8Ce070624; Sun, 16 Feb 2014 13:10:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1GDA8k2070590; Sun, 16 Feb 2014 13:10:08 GMT (envelope-from edwin) Date: Sun, 16 Feb 2014 13:10:08 GMT Message-Id: <201402161310.s1GDA8k2070590@freefall.freebsd.org> To: koobs.freebsd@gmail.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186817: [PATCH] devel/swig20: update to 2.0.12 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 13:10:08 -0000 Synopsis: [PATCH] devel/swig20: update to 2.0.12 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sun Feb 16 13:10:08 UTC 2014 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186817 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 13:20:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D0F054E5 for ; Sun, 16 Feb 2014 13:20:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 93C9D1C59 for ; Sun, 16 Feb 2014 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 s1GDK0u7074420 for ; Sun, 16 Feb 2014 13:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1GDK0QF074419; Sun, 16 Feb 2014 13:20:00 GMT (envelope-from gnats) Resent-Date: Sun, 16 Feb 2014 13:20:00 GMT Resent-Message-Id: <201402161320.s1GDK0QF074419@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, Kurt Jaeger Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5C1AA4BC for ; Sun, 16 Feb 2014 13:17:18 +0000 (UTC) Received: from fa9.opsec.eu (zfs.opsec.eu [IPv6:2001:14f8:200:4::18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1BCE11C33 for ; Sun, 16 Feb 2014 13:17:17 +0000 (UTC) Received: from pi by fa9.opsec.eu with local (Exim 4.82 (FreeBSD)) (envelope-from ) id 1WF1ar-00055M-8K; Sun, 16 Feb 2014 14:17:13 +0100 Message-Id: Date: Sun, 16 Feb 2014 14:17:13 +0100 From: Kurt Jaeger To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/186818: mail/libpst fails to install if option PST2DII is selected Cc: chifeng@gmail.com X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Kurt Jaeger List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 13:20:00 -0000 >Number: 186818 >Category: ports >Synopsis: mail/libpst fails to install if option PST2DII is selected >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 Feb 16 13:20:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Kurt Jaeger >Release: FreeBSD 9.2-RELEASE-p3 amd64 >Organization: - >Environment: System: FreeBSD fa9.opsec.eu 9.2-RELEASE-p3 FreeBSD 9.2-RELEASE-p3 #0: Sat Jan 11 03:25:02 UTC 2014 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: mail/libpst fails to install if option PST2DII is selected make install at the end: [...] ===> Registering installation for libpst-0.6.63_1 pkg-static: lstat(/usr/ports/mail/libpst/work/stage/usr/local/bin/pst2dii): No such file or directory [...] >How-To-Repeat: cd /usr/ports/mail/libpst make config select option PST2DII make install >Fix: still open >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 13:20:09 2014 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 ESMTPS id C2265514; Sun, 16 Feb 2014 13:20:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 788751C5D; Sun, 16 Feb 2014 13: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 s1GDK9Ik076815; Sun, 16 Feb 2014 13:20:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1GDK9sU076789; Sun, 16 Feb 2014 13:20:09 GMT (envelope-from edwin) Date: Sun, 16 Feb 2014 13:20:09 GMT Message-Id: <201402161320.s1GDK9sU076789@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wg@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186818: mail/libpst fails to install if option PST2DII is selected X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 13:20:09 -0000 Synopsis: mail/libpst fails to install if option PST2DII is selected Responsible-Changed-From-To: freebsd-ports-bugs->wg Responsible-Changed-By: edwin Responsible-Changed-When: Sun Feb 16 13:20:09 UTC 2014 Responsible-Changed-Why: wg@ wants this submitter's PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186818 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 13:20:01 2014 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 ESMTPS id AECD14E6 for ; Sun, 16 Feb 2014 13:20:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 976FC1C5A for ; Sun, 16 Feb 2014 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 s1GDK1ff074481 for ; Sun, 16 Feb 2014 13:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1GDK1EK074480; Sun, 16 Feb 2014 13:20:01 GMT (envelope-from gnats) Date: Sun, 16 Feb 2014 13:20:01 GMT Message-Id: <201402161320.s1GDK1EK074480@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/186817: [PATCH] devel/swig20: update to 2.0.12 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 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: Sun, 16 Feb 2014 13:20:01 -0000 The following reply was made to PR ports/186817; it has been noted by GNATS. From: Edwin Groothuis To: jwbacon@tds.net Cc: bug-followup@FreeBSD.org Subject: Re: ports/186817: [PATCH] devel/swig20: update to 2.0.12 Date: Sun, 16 Feb 2014 13:10:07 UT Maintainer of devel/swig20, Please note that PR ports/186817 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/186817 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 15:32:28 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 00DEFEB6; Sun, 16 Feb 2014 15:32:27 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C6E6F1711; Sun, 16 Feb 2014 15: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 s1GFWR0i019402; Sun, 16 Feb 2014 15:32:27 GMT (envelope-from swills@freefall.freebsd.org) Received: (from swills@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1GFWRKE019401; Sun, 16 Feb 2014 15:32:27 GMT (envelope-from swills) Date: Sun, 16 Feb 2014 15:32:27 GMT Message-Id: <201402161532.s1GFWRKE019401@freefall.freebsd.org> To: yuri@tsoft.com, swills@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, swills@FreeBSD.org From: swills@FreeBSD.org Subject: Re: ports/186091: [MAINTAINER UPDATE] net-p2p/bitmessage X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 15:32:28 -0000 Synopsis: [MAINTAINER UPDATE] net-p2p/bitmessage Responsible-Changed-From-To: freebsd-ports-bugs->swills Responsible-Changed-By: swills Responsible-Changed-When: Sun Feb 16 15:32:27 UTC 2014 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=186091 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 16:00:01 2014 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 ESMTPS id 547086FD for ; Sun, 16 Feb 2014 16:00:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 40130189A for ; Sun, 16 Feb 2014 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 s1GG01Px025733 for ; Sun, 16 Feb 2014 16:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1GG01bQ025732; Sun, 16 Feb 2014 16:00:01 GMT (envelope-from gnats) Date: Sun, 16 Feb 2014 16:00:01 GMT Message-Id: <201402161600.s1GG01bQ025732@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Jason Bacon Subject: Re: ports/186817: [PATCH] devel/swig20: update to 2.0.12 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Jason Bacon List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 16:00:01 -0000 The following reply was made to PR ports/186817; it has been noted by GNATS. From: Jason Bacon To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/186817: [PATCH] devel/swig20: update to 2.0.12 Date: Sun, 16 Feb 2014 09:43:58 -0600 Approved. On 02/16/14 07:10, Edwin Groothuis wrote: > Maintainer of devel/swig20, > > Please note that PR ports/186817 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/186817 > -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Jason W. Bacon jwbacon@tds.net Circumstances don't make a man: They reveal him. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 16:20:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 38F0D6E7 for ; Sun, 16 Feb 2014 16:20:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 15AF619FC for ; Sun, 16 Feb 2014 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 s1GGK0FX032855 for ; Sun, 16 Feb 2014 16:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1GGK0NV032854; Sun, 16 Feb 2014 16:20:00 GMT (envelope-from gnats) Resent-Date: Sun, 16 Feb 2014 16:20:00 GMT Resent-Message-Id: <201402161620.s1GGK0NV032854@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, Adam Weinberger Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 15E88E78 for ; Sun, 16 Feb 2014 16:15:56 +0000 (UTC) Received: from apnoea.adamw.org (apnoea.adamw.org [204.109.59.150]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E8D4119CA for ; Sun, 16 Feb 2014 16:15:55 +0000 (UTC) Received: by apnoea.adamw.org (Postfix, from userid 0) id EAE7711F893; Sun, 16 Feb 2014 11:15:48 -0500 (EST) Message-Id: <20140216161548.EAE7711F893@apnoea.adamw.org> Date: Sun, 16 Feb 2014 11:15:48 -0500 (EST) From: Adam Weinberger To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/186819: [patch] perl-5.18 fixes for mail/p5-Mail-SpamAssassin X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Adam Weinberger List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 16:20:01 -0000 >Number: 186819 >Category: ports >Synopsis: [patch] perl-5.18 fixes for mail/p5-Mail-SpamAssassin >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 Feb 16 16:20:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Adam Weinberger >Release: FreeBSD 10.0-STABLE i386 >Organization: >Environment: System: FreeBSD apnoea.adamw.org 10.0-STABLE FreeBSD 10.0-STABLE #0: Sun Feb 2 21:58:45 EST 2014 root@apnoea.adamw.org:/usr/obj/usr/src/sys/PEEP i386 >Description: With the changes to hash ordering in perl 5.18, SpamAssassin throws multiple warnings on every invocation: Use of each() on hash after insertion without resetting hash iterator results in undefined behavior, \ Perl interpreter: 0x2880d800 at /usr/local/lib/perl5/site_perl/5.18/Mail/SpamAssassin/AsyncLoop.pm line 363, line 98. There is a fix for this in SpamAssassin SVN, but they seem in no particular rush to release SA 3.4. Bug #6937 (https://issues.apache.org/SpamAssassin/show_bug.cgi?id=6937) has a patch to backport these changes to 3.3.2 (https://issues.apache.org/SpamAssassin/attachment.cgi?id=5143&action=diff). >How-To-Repeat: >Fix: This patch adds bug #6937's patch. I've been trying it out locally and it does seem to fix the problem. --- patch-spamassassin-perl5.18 begins here --- Index: Makefile =================================================================== --- Makefile (revision 344590) +++ Makefile (working copy) @@ -3,7 +3,7 @@ PORTNAME= Mail-SpamAssassin PORTVERSION= 3.3.2 -PORTREVISION?= 8 # committer: please bump PORTREVISION on Slaves +PORTREVISION?= 9 # committer: please bump PORTREVISION on Slaves CATEGORIES?= mail perl5 MASTER_SITES= ${MASTER_SITE_APACHE:S/$/:apache/} ${MASTER_SITE_PERL_CPAN:S/$/:cpan/} MASTER_SITE_SUBDIR= spamassassin/source/:apache Mail/:cpan Index: files/patch-bug6937 =================================================================== --- files/patch-bug6937 (revision 0) +++ files/patch-bug6937 (working copy) @@ -0,0 +1,97 @@ +--- lib/Mail/SpamAssassin/AsyncLoop.pm.orig 2011-06-07 01:59:17.000000000 +0200 ++++ lib/Mail/SpamAssassin/AsyncLoop.pm 2013-05-29 01:37:58.000000000 +0200 +@@ -361,5 +361,12 @@ + $now = time; # capture new timestamp, after possible sleep in 'select' + +- while (my($key,$ent) = each %$pending) { ++ # A callback routine may generate another DNS query, which may insert ++ # an entry into the %$pending hash thus invalidating the each() context. ++ # So, make sure that callbacks are not called while the each() context ++ # is open, or avoid using each(). [Bug 6937] ++ # ++ # while (my($key,$ent) = each %$pending) { ++ foreach my $key (keys %$pending) { ++ my $ent = $pending->{$key}; + my $id = $ent->{id}; + if (defined $ent->{poll_callback}) { # call a "poll_callback" if exists +@@ -449,5 +456,6 @@ + my $foundcnt = 0; + my $now = time; +- while (my($key,$ent) = each %$pending) { ++ foreach my $key (keys %$pending) { ++ my $ent = $pending->{$key}; + dbg("async: aborting after %.3f s, %s: %s", + $now - $ent->{start_time}, +--- lib/Mail/SpamAssassin/Conf/Parser.pm.orig 2011-06-07 01:59:17.000000000 +0200 ++++ lib/Mail/SpamAssassin/Conf/Parser.pm 2013-05-29 01:32:06.000000000 +0200 +@@ -1249,5 +1249,5 @@ + my $mods = ''; + local ($1,$2); +- if ($re =~ s/^m{//) { ++ if ($re =~ s/^m\{//) { + $re =~ s/}([a-z]*)$//; $mods = $1; + } +--- lib/Mail/SpamAssassin/DnsResolver.pm.orig 2011-06-07 01:59:17.000000000 +0200 ++++ lib/Mail/SpamAssassin/DnsResolver.pm 2013-05-29 01:32:06.000000000 +0200 +@@ -441,8 +441,14 @@ + if (!defined($timeout) || $timeout > 0) + { $timer = $self->{main}->time_method("poll_dns_idle") } ++ $! = 0; + ($nfound, $timeleft) = select($rout=$rin, undef, undef, $timeout); + } + if (!defined $nfound || $nfound < 0) { +- warn "dns: select failed: $!"; ++ if ($!) { warn "dns: select failed: $!\n" } ++ else { info("dns: select interrupted") } ++ return; ++ } elsif (!$nfound) { ++ if (!defined $timeout) { warn("dns: select returned empty-handed\n") } ++ elsif ($timeout > 0) { dbg("dns: select timed out %.3f s", $timeout) } + return; + } +--- lib/Mail/SpamAssassin/Message.pm.orig 2011-06-07 01:59:17.000000000 +0200 ++++ lib/Mail/SpamAssassin/Message.pm 2013-05-29 01:32:06.000000000 +0200 +@@ -567,5 +567,5 @@ + # bug 5557: windows requires tmp file be closed before it can be rm'd + if (ref $part->{'raw'} eq 'GLOB') { +- close($part->{'raw'}) or die "error closing input file: $!"; ++ close($part->{'raw'}) or warn "error closing input file: $!"; + } + +--- lib/Mail/SpamAssassin/PerMsgStatus.pm.orig 2011-06-07 01:59:17.000000000 +0200 ++++ lib/Mail/SpamAssassin/PerMsgStatus.pm 2013-05-29 01:32:06.000000000 +0200 +@@ -421,6 +421,6 @@ + } + +- # ignore tests with 0 score in this scoreset +- next if ($scores->{$test} == 0); ++ # ignore tests with 0 score (or undefined) in this scoreset ++ next if !$scores->{$test}; + + # Go ahead and add points to the proper locations +@@ -1253,11 +1253,10 @@ + my $line = ''; + foreach my $test (sort @{$self->{test_names_hit}}) { +- if (!$line) { +- $line .= $test . "=" . $self->{conf}->{scores}->{$test}; +- } else { +- $line .= $arg . $test . "=" . $self->{conf}->{scores}->{$test}; +- } ++ my $score = $self->{conf}->{scores}->{$test}; ++ $score = '0' if !defined $score; ++ $line .= $arg if $line ne ''; ++ $line .= $test . "=" . $score; + } +- $line ? $line : 'none'; ++ $line ne '' ? $line : 'none'; + }, + +--- lib/Mail/SpamAssassin/Util.pm.orig 2013-05-29 01:29:59.000000000 +0200 ++++ lib/Mail/SpamAssassin/Util.pm 2013-05-29 01:33:16.000000000 +0200 +@@ -1588,5 +1588,5 @@ + return undef; # invalid + } +- elsif ($re =~ s/^m{//) { # m{foo/bar} ++ elsif ($re =~ s/^m\{//) { # m{foo/bar} + $delim = '}'; + } --- patch-spamassassin-perl5.18 ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 16:20:12 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5CCEA719; Sun, 16 Feb 2014 16:20:12 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 30C8719FE; Sun, 16 Feb 2014 16:20: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 s1GGKCd2032941; Sun, 16 Feb 2014 16:20:12 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1GGKCRu032940; Sun, 16 Feb 2014 16:20:12 GMT (envelope-from edwin) Date: Sun, 16 Feb 2014 16:20:12 GMT Message-Id: <201402161620.s1GGKCRu032940@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186819: [patch] perl-5.18 fixes for mail/p5-Mail-SpamAssassin X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 16:20:12 -0000 Synopsis: [patch] perl-5.18 fixes for mail/p5-Mail-SpamAssassin Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Sun Feb 16 16:20:11 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186819 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 16:29:54 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 79682984; Sun, 16 Feb 2014 16:29:54 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 493B21A94; Sun, 16 Feb 2014 16: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 s1GGTsOq036213; Sun, 16 Feb 2014 16:29:54 GMT (envelope-from riggs@freefall.freebsd.org) Received: (from riggs@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1GGTrUa036212; Sun, 16 Feb 2014 16:29:53 GMT (envelope-from riggs) Date: Sun, 16 Feb 2014 16:29:53 GMT Message-Id: <201402161629.s1GGTrUa036212@freefall.freebsd.org> To: pvizeli@yahoo.de, riggs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, riggs@FreeBSD.org From: riggs@FreeBSD.org Subject: Re: ports/184161: multimedia/gpac-mp4box missing dependency X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 16:29:54 -0000 Synopsis: multimedia/gpac-mp4box missing dependency Responsible-Changed-From-To: freebsd-ports-bugs->riggs Responsible-Changed-By: riggs Responsible-Changed-When: Sun Feb 16 16:29:53 UTC 2014 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=184161 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 16:43:19 2014 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 ESMTPS id 6BAB1C3B; Sun, 16 Feb 2014 16:43:19 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3C31A1BB8; Sun, 16 Feb 2014 16:43: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 s1GGhJ2R042020; Sun, 16 Feb 2014 16:43:19 GMT (envelope-from riggs@freefall.freebsd.org) Received: (from riggs@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1GGhIiB042019; Sun, 16 Feb 2014 16:43:18 GMT (envelope-from riggs) Date: Sun, 16 Feb 2014 16:43:18 GMT Message-Id: <201402161643.s1GGhIiB042019@freefall.freebsd.org> To: mickael.maillot@gmail.com, riggs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, riggs@FreeBSD.org From: riggs@FreeBSD.org Subject: Re: ports/186529: multimedia/xbmc fails staging due to non-existent file in plist X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 16:43:19 -0000 Synopsis: multimedia/xbmc fails staging due to non-existent file in plist Responsible-Changed-From-To: freebsd-ports-bugs->riggs Responsible-Changed-By: riggs Responsible-Changed-When: Sun Feb 16 16:42:57 UTC 2014 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=186529 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 17:00:03 2014 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 ESMTPS id BAC41FD5 for ; Sun, 16 Feb 2014 17:00:03 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9469E1C82 for ; Sun, 16 Feb 2014 17: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 s1GH03La045437 for ; Sun, 16 Feb 2014 17:00:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1GH03u6045436; Sun, 16 Feb 2014 17:00:03 GMT (envelope-from gnats) Resent-Date: Sun, 16 Feb 2014 17:00:03 GMT Resent-Message-Id: <201402161700.s1GH03u6045436@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, Johannes Jost Meixner Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2CEDBF97 for ; Sun, 16 Feb 2014 16:55:28 +0000 (UTC) Received: from dd16522.kasserver.com (dd16522.kasserver.com [85.13.137.124]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E43D61C67 for ; Sun, 16 Feb 2014 16:55:27 +0000 (UTC) Received: from mx12.chaot.net (62.65.220.168.cable.starman.ee [62.65.220.168]) by dd16522.kasserver.com (Postfix) with ESMTPSA id D510F4560B3 for ; Sun, 16 Feb 2014 17:55:24 +0100 (CET) Received: from localhost (1003@localhost [local]); by mx12.chaot.net (OpenSMTPD) with ESMTPA id a1ce563a; for ; Sun, 16 Feb 2014 18:55:24 +0200 (EET) Message-Id: <1793706544.enqueue@mx12.chaot.net> Date: Sun, 16 Feb 2014 18:55:24 +0200 (EET) From: Johannes Jost Meixner To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/186820: [NEW PORTS, UPDATE] Add CentOS 6.5 userland ports X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 17:00:03 -0000 >Number: 186820 >Category: ports >Synopsis: [NEW PORTS, UPDATE] Add CentOS 6.5 userland ports >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Feb 16 17:00:02 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Johannes Jost Meixner >Release: FreeBSD 11.0-CURRENT amd64 >Organization: Goldener Grund OÜ >Environment: System: FreeBSD mx12.chaot.net 11.0-CURRENT FreeBSD 11.0-CURRENT #0: Tue Feb 11 09:45:46 EET 2014 root@mx12.chaot.net:/usr/obj/usr/src/sys/xmj.vt amd64 >Description: The attached patch adds the following ports to the FreeBSD portstree: x11/linux-c6-xorg-libs multimedia/linux-c6-libv4l devel/linux-c6-nspr devel/linux-c6-qt47 devel/linux-c6-dbus-libs accessibility/linux-c6-atk graphics/linux-c6-tiff graphics/linux-c6-jpeg graphics/linux-c6-dri graphics/linux-c6-cairo graphics/linux-c6-png net/linux-c6-openldap x11-fonts/linux-c6-fontconfig x11-toolkits/linux-c6-pango x11-toolkits/linux-c6-gtk2 x11-toolkits/linux-c6-qt47-x11 textproc/linux-c6-expat emulators/linux_base-c6 www/linux-c6-qt47-webkit www/linux-c6-flashplugin11 ftp/linux-c6-curl databases/linux-c6-sqlite3 security/linux-c6-nss security/linux-c6-openssl security/linux-c6-libssh2 security/linux-c6-openssl-compat security/linux-c6-cyrus-sasl2 audio/linux-c6-alsa-lib audio/linux-c6-alsa-plugins-oss net-im/skype4 Further, it adds support for using either the Fedora 10-derived userland or the CentOS 6.5-derived Userland to Mk/ and hence lets the user choose in /etc/make.conf which one to go with. I've updated all Fedora 10-ports as well to take into account the Mk/ changes. >How-To-Repeat: - apply patch to a clean portstree - add the following to /etc/make.conf: OVERRIDE_LINUX_BASE_PORTS=c6 OVERRIDE_LINUX_NONBASE_PORTS=c6 - load the following kernel modules: linux lindev linprocfs linsysfs - mount /dev into /compat/linux/dev - build net-im/skype4 >Fix: Patch exceeds the 100kb limit (180k), please find it at http://xmj.me/freebsd/linux-ports.diff >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 17:34:03 2014 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 ESMTPS id A3911899; Sun, 16 Feb 2014 17:34:03 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7653D1FD6; Sun, 16 Feb 2014 17:34: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 s1GHY3s8058593; Sun, 16 Feb 2014 17:34:03 GMT (envelope-from pawel@freefall.freebsd.org) Received: (from pawel@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1GHY3Al058592; Sun, 16 Feb 2014 17:34:03 GMT (envelope-from pawel) Date: Sun, 16 Feb 2014 17:34:03 GMT Message-Id: <201402161734.s1GHY3Al058592@freefall.freebsd.org> To: pawel@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pawel@FreeBSD.org From: pawel@FreeBSD.org Subject: Re: ports/186798: [maintainer update] update graphics/converseen to 0.6.7 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 17:34:03 -0000 Synopsis: [maintainer update] update graphics/converseen to 0.6.7 Responsible-Changed-From-To: freebsd-ports-bugs->pawel Responsible-Changed-By: pawel Responsible-Changed-When: Sun Feb 16 17:34:03 UTC 2014 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=186798 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 17:38:40 2014 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 ESMTPS id 523138F6; Sun, 16 Feb 2014 17:38:40 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 260C21FF8; Sun, 16 Feb 2014 17:38: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 s1GHce2p058860; Sun, 16 Feb 2014 17:38:40 GMT (envelope-from rm@freefall.freebsd.org) Received: (from rm@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1GHcdFs058859; Sun, 16 Feb 2014 17:38:39 GMT (envelope-from rm) Date: Sun, 16 Feb 2014 17:38:39 GMT Message-Id: <201402161738.s1GHcdFs058859@freefall.freebsd.org> To: javad.kouhi@gmail.com, rm@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rm@FreeBSD.org From: rm@FreeBSD.org Subject: Re: ports/186810: www/qupzilla should be updated, not marked BROKEN X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 17:38:40 -0000 Synopsis: www/qupzilla should be updated, not marked BROKEN Responsible-Changed-From-To: freebsd-ports-bugs->rm Responsible-Changed-By: rm Responsible-Changed-When: Sun Feb 16 17:38:39 UTC 2014 Responsible-Changed-Why: I will take it. Updated port fetchs and build fine. Maintainer, would you approve this? http://www.freebsd.org/cgi/query-pr.cgi?pr=186810 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 17:57:46 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A0AE2A63; Sun, 16 Feb 2014 17:57:46 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 724F8113C; Sun, 16 Feb 2014 17:57: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 s1GHvk8a064856; Sun, 16 Feb 2014 17:57:46 GMT (envelope-from rm@freefall.freebsd.org) Received: (from rm@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1GHvk0Y064855; Sun, 16 Feb 2014 17:57:46 GMT (envelope-from rm) Date: Sun, 16 Feb 2014 17:57:46 GMT Message-Id: <201402161757.s1GHvk0Y064855@freefall.freebsd.org> To: freebsd@troback.com, rm@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rm@FreeBSD.org From: rm@FreeBSD.org Subject: Re: ports/186809: Calling Maintainer AWOL on and Requesting Maintainership of net-mgmt/nagios-check_ports X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 17:57:46 -0000 Synopsis: Calling Maintainer AWOL on and Requesting Maintainership of net-mgmt/nagios-check_ports Responsible-Changed-From-To: freebsd-ports-bugs->rm Responsible-Changed-By: rm Responsible-Changed-When: Sun Feb 16 17:57:46 UTC 2014 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=186809 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 18:28:19 2014 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 ESMTPS id 26E3FF75; Sun, 16 Feb 2014 18:28:19 +0000 (UTC) Received: from mail-pb0-x235.google.com (mail-pb0-x235.google.com [IPv6:2607:f8b0:400e:c01::235]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EE3D3132D; Sun, 16 Feb 2014 18:28:18 +0000 (UTC) Received: by mail-pb0-f53.google.com with SMTP id md12so14344439pbc.12 for ; Sun, 16 Feb 2014 10:28:18 -0800 (PST) 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=aCgYfoLymsK7yLfMTNDnjKcRPx04FdHHZe3bA/RGzB0=; b=o+hHXF4XLKAoXyweia1Nn4AkbmYOZ8psy/j7gr0Doapj94ZPTDKWALa2pVXRF2G/VV SB2C6MubtMspGJhcu0+Bjwv+pwtc3gK65YLP7T4CRRa/MP6S5AAf6OSyFoFUk8IcmJqd JRq2WREXifrrbltSkkrNMK4ataq3SyWSfDnEkxDFtV49EHH8i+FN63eLCnrupq1txIsC RUeYlkMognB6mS0d9Yb4UxUh3zaWaPC1NaEVlid84UWHdoI1rXtNlQA9nZFCmCU0/zqI 0LUN8qwVyFQZeiZHDK9Up6WgTlKQAuuyapdboY1zQh6kHDTnySfHp0quzACndqa8nE2N RrNA== MIME-Version: 1.0 X-Received: by 10.68.106.130 with SMTP id gu2mr21667174pbb.59.1392575298633; Sun, 16 Feb 2014 10:28:18 -0800 (PST) Received: by 10.68.241.129 with HTTP; Sun, 16 Feb 2014 10:28:18 -0800 (PST) In-Reply-To: <201402161738.s1GHcdFs058859@freefall.freebsd.org> References: <201402161738.s1GHcdFs058859@freefall.freebsd.org> Date: Sun, 16 Feb 2014 21:58:18 +0330 Message-ID: Subject: Re: ports/186810: www/qupzilla should be updated, not marked BROKEN From: Javad Kouhi To: rm@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Cc: freebsd-ports-bugs@freebsd.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 18:28:19 -0000 Thank you very much, approved. From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 21:00:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E52A8957 for ; Sun, 16 Feb 2014 21:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BD91B1DB2 for ; Sun, 16 Feb 2014 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 s1GL007Z026145 for ; Sun, 16 Feb 2014 21:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1GL00J5026143; Sun, 16 Feb 2014 21:00:00 GMT (envelope-from gnats) Resent-Date: Sun, 16 Feb 2014 21:00:00 GMT Resent-Message-Id: <201402162100.s1GL00J5026143@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Boris Samorodov Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 331846FB for ; Sun, 16 Feb 2014 20:52:56 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1B1FD1D87 for ; Sun, 16 Feb 2014 20:52:56 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1GKquh2027075 for ; Sun, 16 Feb 2014 20:52:56 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1GKqun4027066; Sun, 16 Feb 2014 20:52:56 GMT (envelope-from nobody) Message-Id: <201402162052.s1GKqun4027066@cgiserv.freebsd.org> Date: Sun, 16 Feb 2014 20:52:56 GMT From: Boris Samorodov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186824: [patch] print/cups* ports: update to 1.7.0 and more X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 21:00:01 -0000 >Number: 186824 >Category: ports >Synopsis: [patch] print/cups* ports: update to 1.7.0 and more >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 Feb 16 21:00:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Boris Samorodov >Release: FreeBSD 10-amd64 >Organization: BSDprint >Environment: FreeBSD srv.bb.tel.ru 10.0-RC3 FreeBSD 10.0-RC3 #1 r260036: Mon Dec 30 03:21:53 SAMT 2013 bsam@srv.bb.tel.ru:/usr/obj/usr/src/sys/GENERIC amd64 >Description: . update to version 1.7.0; . support staging; . use GROUPS and USERS from GIDs and UIDs; . remove some OPTIONS (they are no more valid); . use new LIB_DEPENDS syntax; . a (try to) fix LIBUSB option; . Notes: . I removed CUPS_OVERWRITE_BASE case but have no time to restore it correctly; . cups-base and cups-client have exchanged at least one file, so one of them should be removed before updating; . some pdf utils moved to new cups-filters ports, those changes should probably be more widely tested. Other then that I've been using cups* 1.7.0 ports for two months with success. >How-To-Repeat: >Fix: Patch attached with submission follows: Index: /usr/ports/print/cups/Makefile =================================================================== --- /usr/ports/print/cups/Makefile (revision 344629) +++ /usr/ports/print/cups/Makefile (working copy) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= cups -PORTVERSION= 1.5.4 +PORTVERSION= 1.7.0 CATEGORIES= print MASTER_SITES= # empty DISTFILES= # empty @@ -11,11 +11,12 @@ COMMENT= Common UNIX Printing System: Metaport to install complete system BUILD_DEPENDS= espgs:${PORTSDIR}/${PKGCATEGORY}/cups-pstoraster \ - cupsd:${PORTSDIR}/${PKGCATEGORY}/cups-base + lpr-cups:${PORTSDIR}/${PKGCATEGORY}/cups-base \ + ttfread:${PORTSDIR}/${PKGCATEGORY}/cups-filters RUN_DEPENDS:= ${BUILD_DEPENDS} +NO_ARCH= yes NO_BUILD= yes NO_INSTALL= yes -NO_STAGE= yes .include Index: /usr/ports/print/cups-base/Makefile =================================================================== --- /usr/ports/print/cups-base/Makefile (revision 344629) +++ /usr/ports/print/cups-base/Makefile (working copy) @@ -2,9 +2,8 @@ # $FreeBSD$ PORTNAME= cups -PORTVERSION= 1.5.4 +PORTVERSION= 1.7.0 DISTVERSIONSUFFIX= -source -PORTREVISION= 1 CATEGORIES= print MASTER_SITES= http://www.cups.org/software/${DISTVERSION}/ \ EASYSW/${PORTNAME}/${DISTVERSION} @@ -20,18 +19,17 @@ UNIQUENAME= ${PORTNAME}${PKGNAMESUFFIX} USE_BZIP2= yes -USES+= gmake +USES+= gmake pkgconfig GNU_CONFIGURE= yes CFLAGS+= ${PTHREAD_CFLAGS} CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib DSOFLAGS= -Wl,-rpath,${PREFIX}/lib -L${PREFIX}/lib ${LDFLAGS} -CONFIGURE_ENV= DSOFLAGS="${DSOFLAGS}" +CONFIGURE_ENV= DSOFLAGS="${DSOFLAGS}" DSTROOT="${STAGEDIR}" CONFIGURE_ARGS+= --localstatedir=/var \ - --disable-slp \ --disable-gssapi \ - --with-cups-user=${CUPSOWN} \ - --with-cups-group=${CUPSGRP} \ + --with-cups-user=${USERS} \ + --with-cups-group=${GROUPS} \ --with-system-groups=${CUPSSYSGRP} \ --with-docdir=${DOCSDIR} \ --with-icondir=${PREFIX}/share/icons \ @@ -41,44 +39,43 @@ --with-pam-module="unix" \ --enable-ssl +MAKE_ENV= DSTROOT="${STAGEDIR}" + CUPS_ETCDIR= ${PREFIX}/etc/cups CUPS_CACHEDIR?= /var/db/cups CUPS_SPOOLDIR= /var/spool/cups CUPS_SOCKET?= /var/run/cups.sock -CUPS_PDFTOPS?= ${LOCALBASE}/libexec/xpdf/pdftops WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION} # file, dir ownership -CUPSGRP= cups -CUPSOWN= cups +#CUPSGRP= cups +#CUPSOWN= cups CUPSSYSGRP= wheel # GROUPS/USERS does not work here -#GROUPS= cups -#USERS= cups +GROUPS= cups +USERS= cups # UNIQUENAME must be set before bsd.port.pre.mk so OPTIONSFILE can be included .if defined(CUPS_CLIENT) -PORTREVISION= 1 +PORTREVISION= 0 LICENSE= LGPL21 CUPS_SUFFIX= -client OPTIONS_DEFINE= GNUTLS .elif defined(CUPS_IMAGE) -PORTREVISION= 1 +PORTREVISION= 0 CUPS_SUFFIX= -image LICENSE= LGPL21 OPTIONS_DEFINE= GNUTLS .else INSTALLS_ICONS= yes -PORTREVISION= 1 +PORTREVISION= 0 CUPS_SUFFIX= -base -OPTIONS_DEFINE= GNUTLS LIBPAPER PHP PYTHON PAM LDAP DBUS LIBUSB XDG_OPEN GHOSTSCRIPT XPDF AVAHI MDNSRESPONDER -OPTIONS_DEFAULT= LIBPAPER GHOSTSCRIPT +OPTIONS_DEFINE= GNUTLS LIBPAPER PHP PYTHON PAM DBUS LIBUSB XDG_OPEN AVAHI MDNSRESPONDER +OPTIONS_DEFAULT= LIBPAPER NO_OPTIONS_SORT= yes .endif LIBUSB_DESC= USB support -GHOSTSCRIPT_DESC= Build pdftops with GHOSTSCRIPT -XPDF_DESC= Build pdftops with XPDF XDG_OPEN_DESC= Build with XDG_OPEN as browser .if defined(CUPS_CLIENT) || defined(CUPS_IMAGE) @@ -99,14 +96,13 @@ PKGMESSAGE= ${NONEXISTENT} DESCR= ${MASTERDIR}/pkg-descr.client .elif defined(CUPS_IMAGE) -LIB_DEPENDS+= cups:${PORTSDIR}/${PKGCATEGORY}/cups-client \ - jpeg:${PORTSDIR}/graphics/jpeg \ - png15:${PORTSDIR}/graphics/png \ - tiff:${PORTSDIR}/graphics/tiff +LIB_DEPENDS+= libcups.so:${PORTSDIR}/${PKGCATEGORY}/cups-client \ + libjpeg.so:${PORTSDIR}/graphics/jpeg \ + libpng15.so:${PORTSDIR}/graphics/png \ + libtiff.so:${PORTSDIR}/graphics/tiff # force build if old cups is installed. BUILD_DEPENDS+= cups-client${PKGNAMESUFFIX2}>=${PORTVERSION}:${PORTSDIR}/${PKGCATEGORY}/cups-client COMMENT2= Library cupsimage -CONFIGURE_ARGS+= --disable-pdftops INSTALL_WRKSRC= ${WRKSRC}/filter PLIST= ${MASTERDIR}/pkg-plist.image USE_LDCONFIG= yes @@ -113,8 +109,8 @@ PKGMESSAGE= ${NONEXISTENT} DESCR= ${MASTERDIR}/pkg-descr.image .else -LIB_DEPENDS+= cups:${PORTSDIR}/${PKGCATEGORY}/cups-client -LIB_DEPENDS+= cupsimage:${PORTSDIR}/${PKGCATEGORY}/cups-image +LIB_DEPENDS+= libcups.so:${PORTSDIR}/${PKGCATEGORY}/cups-client +LIB_DEPENDS+= libcupsimage.so:${PORTSDIR}/${PKGCATEGORY}/cups-image # force build if old cups is installed. BUILD_DEPENDS+= cups-client${PKGNAMESUFFIX2}>=${PORTVERSION}:${PORTSDIR}/${PKGCATEGORY}/cups-client BUILD_DEPENDS+= cups-image${PKGNAMESUFFIX2}>=${PORTVERSION}:${PORTSDIR}/${PKGCATEGORY}/cups-image @@ -136,9 +132,8 @@ .if ${PORT_OPTIONS:MGNUTLS} CONFIGURE_ARGS+= --disable-openssl --enable-gnutls -LIB_DEPENDS+= gcrypt:${PORTSDIR}/security/libgcrypt -LIB_DEPENDS+= gnutls:${PORTSDIR}/security/gnutls -USES+= pkgconfig +LIB_DEPENDS+= libgcrypt.so:${PORTSDIR}/security/libgcrypt +LIB_DEPENDS+= libgnutls.so:${PORTSDIR}/security/gnutls .else CONFIGURE_ARGS+= --disable-gnutls --enable-openssl WITH_OPENSSL_HACK7= yes @@ -155,22 +150,6 @@ PLIST_SUB+= PHP="@comment " .endif -.if !defined(CUPS_CLIENT) && !defined(CUPS_IMAGE) && ${PORT_OPTIONS:MGHOSTSCRIPT} -.if ${PORT_OPTIONS:MXPDF} -IGNORE= You must select one and only one option to build pdftops -.endif -USE_GHOSTSCRIPT= yes -CONFIGURE_ARGS+= --enable-pdftops --with-pdftops=${LOCALBASE}/bin/gs -PLIST_SUB+= WITH_PDFTOPS="" -.elif !defined(CUPS_CLIENT) && !defined(CUPS_IMAGE) && ${PORT_OPTIONS:MXPDF} -BUILD_DEPENDS+= ${CUPS_PDFTOPS}:${PORTSDIR}/graphics/xpdf -RUN_DEPENDS+= ${CUPS_PDFTOPS}:${PORTSDIR}/graphics/xpdf -CONFIGURE_ARGS+= --enable-pdftops --with-pdftops=${CUPS_PDFTOPS} -PLIST_SUB+= WITH_PDFTOPS="" -.else -PLIST_SUB+= WITH_PDFTOPS="@comment " -.endif - .if !defined(CUPS_CLIENT) && !defined(CUPS_IMAGE) && ${PORT_OPTIONS:MPYTHON} CONFIGURE_ARGS+= --with-python USE_PYTHON= yes @@ -179,7 +158,7 @@ .if !defined(CUPS_CLIENT) && !defined(CUPS_IMAGE) && ${PORT_OPTIONS:MLIBPAPER} CONFIGURE_ARGS+= --enable-libpaper -LIB_DEPENDS+= paper:${PORTSDIR}/print/libpaper +LIB_DEPENDS+= libpaper.so:${PORTSDIR}/print/libpaper .endif .if !defined(CUPS_CLIENT) && !defined(CUPS_IMAGE) && ${PORT_OPTIONS:MMDNSRESPONDER} @@ -186,13 +165,13 @@ .if ${PORT_OPTIONS:MAVAHI} IGNORE= You must select one and only one option to build for Zeroconf .endif -LIB_DEPENDS+= dns_sd:${PORTSDIR}/net/mDNSResponder +LIB_DEPENDS+= libdns_sd.so:${PORTSDIR}/net/mDNSResponder CONFIGURE_ARGS+= --with-dnssd-includes=${LOCALBASE}/include PLIST_SUB+= WITH_MDNSRESPONDER="" .elif !defined(CUPS_CLIENT) && !defined(CUPS_IMAGE) && ${PORT_OPTIONS:MAVAHI} CONFIGURE_ARGS+= --enable-dnssd \ --with-dnssd-libs=${LOCALBASE}/lib/ -LIB_DEPENDS+= dns_sd:${PORTSDIR}/net/avahi-libdns +LIB_DEPENDS+= libdns_sd.so:${PORTSDIR}/net/avahi-libdns CONFIGURE_ARGS+= --with-dnssd-includes=${LOCALBASE}/include/avahi-compat-libdns_sd/ BROKEN= missing function, see http://www.avahi.org/ticket/303 .else @@ -208,15 +187,8 @@ PLIST_SUB+= WITH_PAMD="@comment " .endif -.if !defined(CUPS_CLIENT) && !defined(CUPS_IMAGE) && ${PORT_OPTIONS:MLDAP} -USE_OPENLDAP= yes -CONFIGURE_ARGS+= --enable-ldap -.else -CONFIGURE_ARGS+= --disable-ldap -.endif - .if !defined(CUPS_CLIENT) && !defined(CUPS_IMAGE) && ${PORT_OPTIONS:MDBUS} -LIB_DEPENDS+= dbus-1:${PORTSDIR}/devel/dbus +LIB_DEPENDS+= libdbus-1.so:${PORTSDIR}/devel/dbus CONFIGURE_ARGS+= --enable-dbus PLIST_SUB+= WITH_DBUS="" .else @@ -231,62 +203,11 @@ .if !defined(CUPS_CLIENT) && !defined(CUPS_IMAGE) && ${PORT_OPTIONS:MLIBUSB} CPPFLAGS+= -I/usr/include LDFLAGS+= -L/usr/lib -.else -CONFIGURE_ARGS+= --disable-libusb +CONFIGURE_ARGS+= --enable-libusb .endif CONFIGURE_ARGS+= LIBS="-lssp_nonshared" .if ! defined(CUPS_CLIENT) && ! defined(CUPS_IMAGE) -MAN1+= cancel.1 \ - cupstestdsc.1 \ - cupstestppd.1 \ - ipptool.1 \ - lp.1 \ - lpoptions.1 \ - lppasswd.1 \ - lpq.1 \ - lprm.1 \ - lpr.1 \ - lpstat.1 \ - ppdc.1 \ - ppdhtml.1 \ - ppdi.1 \ - ppdmerge.1 \ - ppdpo.1 -MAN5= classes.conf.5 \ - client.conf.5 \ - cups-snmp.conf.5 \ - cupsd.conf.5 \ - ipptoolfile.5 \ - mailto.conf.5 \ - mime.convs.5 \ - mime.types.5 \ - ppdcfile.5 \ - printers.conf.5 \ - subscriptions.conf.5 -MAN7= backend.7 \ - filter.7 \ - notifier.7 -MAN8= accept.8 \ - cupsaccept.8 \ - cupsaddsmb.8 \ - cupsctl.8 \ - cupsd.8 \ - cupsenable.8 \ - cupsfilter.8 \ - cups-deviced.8 \ - cups-driverd.8 \ - cups-lpd.8 \ - cups-polld.8 \ - lpadmin.8 \ - lpinfo.8 \ - lpmove.8 \ - lpc.8 - -MLINKS= accept.8 reject.8 \ - cupsaccept.8 cupsreject.8 \ - cupsenable.8 cupsdisable.8 - SUB_FILES+= ulpt-cupsd.conf ulpt-cupsd.sh .endif @@ -331,6 +252,9 @@ -e 's|cups-config.$$.MAN1EXT. ||' \ ${WRKSRC}/man/Makefile .endif +.if ! ${PORT_OPTIONS:MLIBUSB} + @${REINPLACE_CMD} -e 's|xyes -o $$uname != Darwin||' ${WRKSRC}/configure +.endif pre-configure:: @${ECHO_MSG} Configuring CUPS with options: @@ -362,26 +286,6 @@ .endif .endif -.if !defined(CUPS_CLIENT) && !defined(CUPS_IMAGE) -post-build: - cd ${WRKSRC}/filter && ${MAKE} pdftops -.endif - -.if !defined(CUPS_CLIENT) && !defined(CUPS_IMAGE) -pre-su-install: - @${INSTALL} -d ${DESKTOPDIR}/ - if ! pw groupshow ${CUPSGRP}; then pw groupadd ${CUPSGRP} -g 193; fi - if ! pw usershow ${CUPSOWN}; then pw useradd ${CUPSOWN} -g ${CUPSGRP} -u 193 \ - -h - -d ${NONEXISTENT} -s /usr/sbin/nologin -c "CUPS Owner"; fi -.if defined(CUPS_OVERWRITE_BASE) - if test -e /usr/bin/lp; then ${CHMOD} -h 0 /usr/bin/lp; fi - if test -e /usr/bin/lpq; then ${CHMOD} -h 0 /usr/bin/lpq; fi - if test -e /usr/bin/lpr; then ${CHMOD} -h 0 /usr/bin/lpr; fi - if test -e /usr/bin/lprm; then ${CHMOD} -h 0 /usr/bin/lprm; fi - if test -e /usr/sbin/lpc; then ${CHMOD} -h 0 /usr/sbin/lpc; fi -.endif -.endif - post-install: .if defined(CUPS_CLIENT) ${INSTALL_SCRIPT} ${WRKSRC}/cups-config ${STAGEDIR}${PREFIX}/bin @@ -403,16 +307,12 @@ .if ${PORT_OPTIONS:MPAM} @if [ ! -f ${PREFIX}/etc/pam.d/cups ]; then \ ${CP} -p ${PREFIX}/etc/pam.d/cups.default \ - ${PREFIX}/etc/pam.d/cups ; \ + ${STAGEDIR}${PREFIX}/etc/pam.d/cups ; \ fi .endif - ${MKDIR} ${EXAMPLESDIR} - ${INSTALL_DATA} ${WRKDIR}/ulpt-cupsd.conf ${EXAMPLESDIR}/ - ${INSTALL_SCRIPT} ${WRKDIR}/ulpt-cupsd.sh ${PREFIX}/sbin/ - ${INSTALL} -d ${CUPS_SPOOLDIR}/tmp/ - ${CHOWN} -R ${CUPSOWN}:${CUPSGRP} ${CUPS_SPOOLDIR}/ - ${CHMOD} -R g+w ${CUPS_SPOOLDIR}/ - ${INSTALL} -d -m 775 -g ${CUPSGRP} ${CUPS_CACHEDIR} + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKDIR}/ulpt-cupsd.conf ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_SCRIPT} ${WRKDIR}/ulpt-cupsd.sh ${STAGEDIR}${PREFIX}/sbin .endif .include Index: /usr/ports/print/cups-base/distinfo =================================================================== --- /usr/ports/print/cups-base/distinfo (revision 344629) +++ /usr/ports/print/cups-base/distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (cups-1.5.4-source.tar.bz2) = 8023034e8b58eab1ad7279364e872270a77459f6fb59a84d03229cb1d2a6d0e5 -SIZE (cups-1.5.4-source.tar.bz2) = 9583002 +SHA256 (cups-1.7.0-source.tar.bz2) = cf15b8caa9dab4638b628427ef309ab381817fc574b8e736d58680e0475cb2c8 +SIZE (cups-1.7.0-source.tar.bz2) = 8421353 Index: /usr/ports/print/cups-base/files/patch-Makefile =================================================================== --- /usr/ports/print/cups-base/files/patch-Makefile (revision 344629) +++ /usr/ports/print/cups-base/files/patch-Makefile (working copy) @@ -1,10 +0,0 @@ ---- cups/Makefile.orig 2009-05-27 01:27:06.000000000 +0200 -+++ cups/Makefile 2009-10-21 09:49:20.000000000 +0200 -@@ -102,7 +102,6 @@ - ipp.h \ - language.h \ - ppd.h \ -- raster.h \ - sidechannel.h \ - transcode.h \ - versioning.h Index: /usr/ports/print/cups-base/files/patch-cups-request.c =================================================================== --- /usr/ports/print/cups-base/files/patch-cups-request.c (revision 344629) +++ /usr/ports/print/cups-base/files/patch-cups-request.c (working copy) @@ -1,28 +0,0 @@ ---- cups/request.c -+++ cups/request.c -@@ -1004,6 +1004,25 @@ - httpClose(cg->http); - cg->http = NULL; - } -+ else -+ { -+ /* -+ * Same server, see if the connection is still established... -+ */ -+ -+ char ch; /* Connection check byte */ -+ -+ if (recv(cg->http->fd, &ch, 1, MSG_PEEK | MSG_DONTWAIT) < 0 && -+ errno != EWOULDBLOCK) -+ { -+ /* -+ * Nope, close the connection... -+ */ -+ -+ httpClose(cg->http); -+ cg->http = NULL; -+ } -+ } - } - - /* Index: /usr/ports/print/cups-base/files/patch-data-Makefile =================================================================== --- /usr/ports/print/cups-base/files/patch-data-Makefile (revision 0) +++ /usr/ports/print/cups-base/files/patch-data-Makefile (working copy) @@ -0,0 +1,25 @@ +--- data/Makefile.orig 2013-05-29 15:51:34.000000000 +0400 ++++ data/Makefile 2013-12-11 17:17:05.670284926 +0400 +@@ -86,14 +86,14 @@ + # + + install-data: +- $(INSTALL_DIR) -m 755 $(DATADIR)/banners +- for file in $(BANNERS); do \ +- $(INSTALL_DATA) $$file $(DATADIR)/banners; \ +- done +- $(INSTALL_DIR) -m 755 $(DATADIR)/data +- for file in $(DATAFILES); do \ +- $(INSTALL_DATA) $$file $(DATADIR)/data; \ +- done ++# $(INSTALL_DIR) -m 755 $(DATADIR)/banners ++# for file in $(BANNERS); do \ ++# $(INSTALL_DATA) $$file $(DATADIR)/banners; \ ++# done ++# $(INSTALL_DIR) -m 755 $(DATADIR)/data ++# for file in $(DATAFILES); do \ ++# $(INSTALL_DATA) $$file $(DATADIR)/data; \ ++# done + $(INSTALL_DIR) -m 755 $(DATADIR)/model + $(INSTALL_DIR) -m 755 $(DATADIR)/ppdc + for file in $(PPDCFILES); do \ Property changes on: /usr/ports/print/cups-base/files/patch-data-Makefile ___________________________________________________________________ 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: /usr/ports/print/cups-base/pkg-plist =================================================================== --- /usr/ports/print/cups-base/pkg-plist (revision 344629) +++ /usr/ports/print/cups-base/pkg-plist (working copy) @@ -1,21 +1,20 @@ -@exec if ! pw groupshow cups 2>/dev/null; then pw groupadd cups -g 193; fi -@exec if ! pw usershow cups 2>/dev/null; then pw useradd cups -g cups -u 193 -h - -d /nonexistent -s /usr/sbin/nologin -c "CUPS Owner"; fi -@unexec if pw usershow cups; then pw userdel cups; fi @exec mkdir -p /var/spool/cups/tmp || true -@exec chown -R root:daemon /var/spool/cups -@exec mkdir -p %%CACHEDIR%% || true -@exec chown root:cups %%CACHEDIR%% -@exec chmod 775 %%CACHEDIR%% +@exec chown -R root:cups /var/spool/cups +@exec chmod 1710 /var/spool/cups/tmp +@comment +@exec mkdir -p %%CACHEDIR%%/rss || true +@exec chown -R root:cups %%CACHEDIR%% +@exec chmod -R 775 %%CACHEDIR%% +@comment @exec mkdir -p /var/log/cups || true @exec chown cups:daemon /var/log/cups +@comment +@exec mkdir -p /var/run/cups/certs +@exec chown root:cups /var/run/cups +@exec chown cups:wheel /var/run/cups/certs +@comment @exec mkdir -p %D/etc/cups/ppd || true @exec mkdir -p %D/etc/cups/interfaces || true -@unexec rm -rf %%CACHEDIR%% 2>/dev/null || true -@unexec rmdir /var/spool/cups/tmp 2>/dev/null || true -@unexec rmdir /var/spool/cups 2>/dev/null || true -@unexec rmdir /var/log/cups 2>/dev/null || true -@unexec rmdir /var/run/cups/certs 2>/dev/null || true -@unexec rmdir /var/run/cups 2>/dev/null || true %%OVERWRITE%%@exec if test -e /usr/bin/lp; then chmod -h 0 /usr/bin/lp; fi %%OVERWRITE%%@exec if test -e /usr/bin/lpq; then chmod -h 0 /usr/bin/lpq; fi %%OVERWRITE%%@exec if test -e /usr/bin/lpr; then chmod -h 0 /usr/bin/lpr; fi @@ -26,18 +25,22 @@ %%OVERWRITE%%@unexec if test -e /usr/bin/lpr; then chmod -h 06555 /usr/bin/lpr; fi %%OVERWRITE%%@unexec if test -e /usr/bin/lprm; then chmod -h 06555 /usr/bin/lprm; fi %%OVERWRITE%%@unexec if test -e /usr/sbin/lpc; then chmod -h 02555 /usr/sbin/lpc; fi -@unexec if cmp -s %D/etc/cups/cupsd.conf.N %D/etc/cups/cupsd.conf; then rm -f %D/etc/cups/cupsd.conf; fi -etc/cups/cupsd.conf.N -@exec if test ! -f %D/etc/cups/cupsd.conf; then cp -p %D/etc/cups/cupsd.conf.N %D/etc/cups/cupsd.conf; fi -@unexec if cmp -s %D/etc/cups/mime.convs.N %D/etc/cups/mime.convs; then rm -f %D/etc/cups/mime.convs; fi -etc/cups/mime.convs.N -@exec if test ! -f %D/etc/cups/mime.convs; then cp -p %D/etc/cups/mime.convs.N %D/etc/cups/mime.convs; fi -@unexec if cmp -s %D/etc/cups/mime.types.N %D/etc/cups/mime.types; then rm -f %D/etc/cups/mime.types; fi -etc/cups/mime.types.N -@exec if test ! -f %D/etc/cups/mime.types; then cp -p %D/etc/cups/mime.types.N %D/etc/cups/mime.types; fi -@unexec if cmp -s %D/etc/cups/snmp.conf.N %D/etc/cups/snmp.conf; then rm -f %D/etc/cups/snmp.conf; fi -etc/cups/snmp.conf.N -@exec if test ! -f %D/etc/cups/snmp.conf; then cp -p %D/etc/cups/snmp.conf.N %D/etc/cups/snmp.conf; fi +@unexec if cmp -s %D/etc/cups/cups-files.conf.sample %D/etc/cups/cups-files.conf; then rm -f %D/etc/cups/cups-files.conf; fi +@comment %%ETCDIR%%/cups-files.conf.sample +%%ETCDIR%%/cups-files.conf.sample +@exec if test ! -f %D/etc/cups/cups-files.conf; then cp -p %D/etc/cups/cups-files.conf.sample %D/etc/cups/cups-files.conf; fi +@unexec if cmp -s %D/etc/cups/cupsd.conf.sample %D/etc/cups/cupsd.conf; then rm -f %D/etc/cups/cupsd.conf; fi +%%ETCDIR%%/cupsd.conf.sample +@exec if test ! -f %D/etc/cups/cupsd.conf; then cp -p %D/etc/cups/cupsd.conf.sample %D/etc/cups/cupsd.conf; fi +@unexec if cmp -s %D/etc/cups/mime.convs.sample %D/etc/cups/mime.convs; then rm -f %D/etc/cups/mime.convs; fi +%%ETCDIR%%/mime.convs.sample +@exec if test ! -f %D/etc/cups/mime.convs; then cp -p %D/etc/cups/mime.convs.sample %D/etc/cups/mime.convs; fi +@unexec if cmp -s %D/etc/cups/mime.types.sample %D/etc/cups/mime.types; then rm -f %D/etc/cups/mime.types; fi +%%ETCDIR%%/mime.types.sample +@exec if test ! -f %D/etc/cups/mime.types; then cp -p %D/etc/cups/mime.types.sample %D/etc/cups/mime.types; fi +@unexec if cmp -s %D/etc/cups/snmp.conf.sample %D/etc/cups/snmp.conf; then rm -f %D/etc/cups/snmp.conf; fi +%%ETCDIR%%/snmp.conf.sample +@exec if test ! -f %D/etc/cups/snmp.conf; then cp -p %D/etc/cups/snmp.conf.sample %D/etc/cups/snmp.conf; fi @exec chgrp cups %D/etc/cups %%WITH_PAMD%%@unexec if cmp -s %D/etc/pam.d/cups.default %D/etc/pam.d/cups; then rm -f %D/etc/pam.d/cups ; fi %%WITH_PAMD%%etc/pam.d/cups.default @@ -45,6 +48,7 @@ bin/cancel bin/cupstestdsc bin/cupstestppd +@comment bin/ippfind bin/ipptool bin/lp bin/lpoptions @@ -61,14 +65,11 @@ bin/ppdpo etc/cups/cupsd.conf.default include/cups/cgi.h -include/cups/driver.h include/cups/help-index.h include/cups/mime.h include/cups/ppdc.h lib/libcupscgi.so lib/libcupscgi.so.1 -lib/libcupsdriver.so -lib/libcupsdriver.so.1 lib/libcupsmime.so lib/libcupsmime.so.1 lib/libcupsppdc.so @@ -79,8 +80,6 @@ libexec/cups/backend/ipp libexec/cups/backend/ipps libexec/cups/backend/lpd -libexec/cups/backend/parallel -libexec/cups/backend/serial libexec/cups/backend/snmp libexec/cups/backend/socket libexec/cups/backend/usb @@ -95,17 +94,61 @@ libexec/cups/daemon/cups-driverd libexec/cups/daemon/cups-exec libexec/cups/daemon/cups-lpd -libexec/cups/daemon/cups-polld -libexec/cups/filter/commandtoescpx -libexec/cups/filter/commandtopclx -%%WITH_PDFTOPS%%libexec/cups/filter/pdftops -libexec/cups/filter/rastertoescpx -libexec/cups/filter/rastertopclx libexec/cups/monitor/bcp libexec/cups/monitor/tbcp %%WITH_DBUS%%libexec/cups/notifier/dbus libexec/cups/notifier/mailto libexec/cups/notifier/rss +man/man1/cancel.1.gz +man/man1/cupstestdsc.1.gz +man/man1/cupstestppd.1.gz +@comment man/man1/ippfind.1.gz +man/man1/ipptool.1.gz +man/man1/lp.1.gz +man/man1/lpoptions.1.gz +man/man1/lppasswd.1.gz +man/man1/lpq.1.gz +man/man1/lpr.1.gz +man/man1/lprm.1.gz +man/man1/lpstat.1.gz +man/man1/ppdc.1.gz +man/man1/ppdhtml.1.gz +man/man1/ppdi.1.gz +man/man1/ppdmerge.1.gz +man/man1/ppdpo.1.gz +man/man5/classes.conf.5.gz +man/man5/client.conf.5.gz +man/man5/cups-files.conf.5.gz +man/man5/cups-snmp.conf.5.gz +man/man5/cupsd.conf.5.gz +man/man5/ipptoolfile.5.gz +man/man5/mailto.conf.5.gz +man/man5/mime.convs.5.gz +man/man5/mime.types.5.gz +man/man5/ppdcfile.5.gz +man/man5/printers.conf.5.gz +man/man5/subscriptions.conf.5.gz +man/man7/backend.7.gz +man/man7/filter.7.gz +man/man7/notifier.7.gz +man/man8/accept.8.gz +man/man8/cups-deviced.8.gz +man/man8/cups-driverd.8.gz +man/man8/cups-lpd.8.gz +man/man8/cups-snmp.8.gz +man/man8/cupsaccept.8.gz +man/man8/cupsaddsmb.8.gz +man/man8/cupsctl.8.gz +man/man8/cupsd.8.gz +man/man8/cupsdisable.8.gz +man/man8/cupsenable.8.gz +man/man8/cupsfilter.8.gz +man/man8/cupsreject.8.gz +man/man8/lpadmin.8.gz +man/man8/lpc.8.gz +man/man8/lpinfo.8.gz +man/man8/lpmove.8.gz +man/man8/reject.8.gz sbin/accept sbin/cupsaccept sbin/cupsaddsmb @@ -115,21 +158,13 @@ sbin/cupsenable sbin/cupsfilter sbin/cupsreject -sbin/ulpt-cupsd.sh sbin/lpadmin sbin/lpc sbin/lpinfo sbin/lpmove sbin/reject -%%DATADIR%%/banners/classified -%%DATADIR%%/banners/confidential -%%DATADIR%%/banners/secret -%%DATADIR%%/banners/standard -%%DATADIR%%/banners/topsecret -%%DATADIR%%/banners/unclassified -%%DATADIR%%/charsets/utf-8 -%%DATADIR%%/data/psglyphs -%%DATADIR%%/data/testprint +sbin/ulpt-cupsd.sh +share/applications/cups.desktop %%DATADIR%%/drv/sample.drv %%DATADIR%%/examples/color.drv %%DATADIR%%/examples/constraint.drv @@ -142,24 +177,118 @@ %%DATADIR%%/examples/r300-basic.drv %%DATADIR%%/examples/r300-colorman.drv %%DATADIR%%/examples/r300-remote.drv -%%DATADIR%%/fonts/Monospace -%%DATADIR%%/fonts/Monospace-Bold -%%DATADIR%%/fonts/Monospace-BoldOblique -%%DATADIR%%/fonts/Monospace-Oblique +%%DATADIR%%/ipptool/color.jpg +%%DATADIR%%/ipptool/create-printer-subscription.test +%%DATADIR%%/ipptool/document-a4.pdf +%%DATADIR%%/ipptool/document-a4.ps +%%DATADIR%%/ipptool/document-letter.pdf +%%DATADIR%%/ipptool/document-letter.ps +%%DATADIR%%/ipptool/get-completed-jobs.test +%%DATADIR%%/ipptool/get-jobs.test +%%DATADIR%%/ipptool/get-notifications.test +%%DATADIR%%/ipptool/get-printer-attributes.test +%%DATADIR%%/ipptool/get-subscriptions.test +%%DATADIR%%/ipptool/gray.jpg +%%DATADIR%%/ipptool/ipp-1.1.test +%%DATADIR%%/ipptool/ipp-2.0.test +%%DATADIR%%/ipptool/ipp-2.1.test +%%DATADIR%%/ipptool/ipp-2.2.test +%%DATADIR%%/ipptool/ipp-everywhere.test +%%DATADIR%%/ipptool/onepage-a4.pdf +%%DATADIR%%/ipptool/onepage-a4.ps +%%DATADIR%%/ipptool/onepage-letter.pdf +%%DATADIR%%/ipptool/onepage-letter.ps +%%DATADIR%%/ipptool/print-job-deflate.test +%%DATADIR%%/ipptool/print-job-gzip.test +%%DATADIR%%/ipptool/print-job.test +%%DATADIR%%/ipptool/testfile.jpg +%%DATADIR%%/ipptool/testfile.pcl +%%DATADIR%%/ipptool/testfile.pdf +%%DATADIR%%/ipptool/testfile.ps +%%DATADIR%%/ipptool/testfile.txt +%%DATADIR%%/ipptool/validate-job.test %%DATADIR%%/mime/mime.convs %%DATADIR%%/mime/mime.types %%DATADIR%%/ppdc/epson.h -%%DATADIR%%/ppdc/escp.h %%DATADIR%%/ppdc/font.defs %%DATADIR%%/ppdc/hp.h %%DATADIR%%/ppdc/label.h %%DATADIR%%/ppdc/media.defs -%%DATADIR%%/ppdc/pcl.h %%DATADIR%%/ppdc/raster.defs %%DATADIR%%/templates/add-class.tmpl %%DATADIR%%/templates/add-printer.tmpl %%DATADIR%%/templates/add-rss-subscription.tmpl %%DATADIR%%/templates/admin.tmpl +%%DATADIR%%/templates/ca/add-class.tmpl +%%DATADIR%%/templates/ca/add-printer.tmpl +%%DATADIR%%/templates/ca/add-rss-subscription.tmpl +%%DATADIR%%/templates/ca/admin.tmpl +%%DATADIR%%/templates/ca/choose-device.tmpl +%%DATADIR%%/templates/ca/choose-make.tmpl +%%DATADIR%%/templates/ca/choose-model.tmpl +%%DATADIR%%/templates/ca/choose-serial.tmpl +%%DATADIR%%/templates/ca/choose-uri.tmpl +%%DATADIR%%/templates/ca/class-added.tmpl +%%DATADIR%%/templates/ca/class-confirm.tmpl +%%DATADIR%%/templates/ca/class-deleted.tmpl +%%DATADIR%%/templates/ca/class-jobs-header.tmpl +%%DATADIR%%/templates/ca/class-modified.tmpl +%%DATADIR%%/templates/ca/class.tmpl +%%DATADIR%%/templates/ca/classes-header.tmpl +%%DATADIR%%/templates/ca/classes.tmpl +%%DATADIR%%/templates/ca/command.tmpl +%%DATADIR%%/templates/ca/edit-config.tmpl +%%DATADIR%%/templates/ca/error-op.tmpl +%%DATADIR%%/templates/ca/error.tmpl +%%DATADIR%%/templates/ca/header.tmpl +%%DATADIR%%/templates/ca/help-header.tmpl +%%DATADIR%%/templates/ca/help-printable.tmpl +%%DATADIR%%/templates/ca/help-trailer.tmpl +%%DATADIR%%/templates/ca/job-cancel.tmpl +%%DATADIR%%/templates/ca/job-hold.tmpl +%%DATADIR%%/templates/ca/job-move.tmpl +%%DATADIR%%/templates/ca/job-moved.tmpl +%%DATADIR%%/templates/ca/job-release.tmpl +%%DATADIR%%/templates/ca/job-restart.tmpl +%%DATADIR%%/templates/ca/jobs-header.tmpl +%%DATADIR%%/templates/ca/jobs.tmpl +%%DATADIR%%/templates/ca/list-available-printers.tmpl +%%DATADIR%%/templates/ca/modify-class.tmpl +%%DATADIR%%/templates/ca/modify-printer.tmpl +%%DATADIR%%/templates/ca/norestart.tmpl +%%DATADIR%%/templates/ca/option-boolean.tmpl +%%DATADIR%%/templates/ca/option-conflict.tmpl +%%DATADIR%%/templates/ca/option-header.tmpl +%%DATADIR%%/templates/ca/option-pickmany.tmpl +%%DATADIR%%/templates/ca/option-pickone.tmpl +%%DATADIR%%/templates/ca/option-trailer.tmpl +%%DATADIR%%/templates/ca/pager.tmpl +%%DATADIR%%/templates/ca/printer-accept.tmpl +%%DATADIR%%/templates/ca/printer-added.tmpl +%%DATADIR%%/templates/ca/printer-configured.tmpl +%%DATADIR%%/templates/ca/printer-confirm.tmpl +%%DATADIR%%/templates/ca/printer-default.tmpl +%%DATADIR%%/templates/ca/printer-deleted.tmpl +%%DATADIR%%/templates/ca/printer-jobs-header.tmpl +%%DATADIR%%/templates/ca/printer-modified.tmpl +%%DATADIR%%/templates/ca/printer-purge.tmpl +%%DATADIR%%/templates/ca/printer-reject.tmpl +%%DATADIR%%/templates/ca/printer-start.tmpl +%%DATADIR%%/templates/ca/printer-stop.tmpl +%%DATADIR%%/templates/ca/printer.tmpl +%%DATADIR%%/templates/ca/printers-header.tmpl +%%DATADIR%%/templates/ca/printers.tmpl +%%DATADIR%%/templates/ca/restart.tmpl +%%DATADIR%%/templates/ca/samba-export.tmpl +%%DATADIR%%/templates/ca/samba-exported.tmpl +%%DATADIR%%/templates/ca/search.tmpl +%%DATADIR%%/templates/ca/set-printer-options-header.tmpl +%%DATADIR%%/templates/ca/set-printer-options-trailer.tmpl +%%DATADIR%%/templates/ca/subscription-added.tmpl +%%DATADIR%%/templates/ca/subscription-canceled.tmpl +%%DATADIR%%/templates/ca/test-page.tmpl +%%DATADIR%%/templates/ca/trailer.tmpl +%%DATADIR%%/templates/ca/users.tmpl %%DATADIR%%/templates/choose-device.tmpl %%DATADIR%%/templates/choose-make.tmpl %%DATADIR%%/templates/choose-model.tmpl @@ -174,76 +303,76 @@ %%DATADIR%%/templates/classes-header.tmpl %%DATADIR%%/templates/classes.tmpl %%DATADIR%%/templates/command.tmpl -%%DATADIR%%/templates/de/add-class.tmpl -%%DATADIR%%/templates/de/add-printer.tmpl -%%DATADIR%%/templates/de/add-rss-subscription.tmpl -%%DATADIR%%/templates/de/admin.tmpl -%%DATADIR%%/templates/de/choose-device.tmpl -%%DATADIR%%/templates/de/choose-make.tmpl -%%DATADIR%%/templates/de/choose-model.tmpl -%%DATADIR%%/templates/de/choose-serial.tmpl -%%DATADIR%%/templates/de/choose-uri.tmpl -%%DATADIR%%/templates/de/class-added.tmpl -%%DATADIR%%/templates/de/class-confirm.tmpl -%%DATADIR%%/templates/de/class-deleted.tmpl -%%DATADIR%%/templates/de/class-jobs-header.tmpl -%%DATADIR%%/templates/de/class-modified.tmpl -%%DATADIR%%/templates/de/class.tmpl -%%DATADIR%%/templates/de/classes-header.tmpl -%%DATADIR%%/templates/de/classes.tmpl -%%DATADIR%%/templates/de/command.tmpl -%%DATADIR%%/templates/de/edit-config.tmpl -%%DATADIR%%/templates/de/error-op.tmpl -%%DATADIR%%/templates/de/error.tmpl -%%DATADIR%%/templates/de/header.tmpl -%%DATADIR%%/templates/de/help-header.tmpl -%%DATADIR%%/templates/de/help-trailer.tmpl -%%DATADIR%%/templates/de/help-printable.tmpl -%%DATADIR%%/templates/de/job-cancel.tmpl -%%DATADIR%%/templates/de/job-hold.tmpl -%%DATADIR%%/templates/de/job-move.tmpl -%%DATADIR%%/templates/de/job-moved.tmpl -%%DATADIR%%/templates/de/job-release.tmpl -%%DATADIR%%/templates/de/job-restart.tmpl -%%DATADIR%%/templates/de/jobs-header.tmpl -%%DATADIR%%/templates/de/jobs.tmpl -%%DATADIR%%/templates/de/list-available-printers.tmpl -%%DATADIR%%/templates/de/modify-class.tmpl -%%DATADIR%%/templates/de/modify-printer.tmpl -%%DATADIR%%/templates/de/norestart.tmpl -%%DATADIR%%/templates/de/option-boolean.tmpl -%%DATADIR%%/templates/de/option-conflict.tmpl -%%DATADIR%%/templates/de/option-header.tmpl -%%DATADIR%%/templates/de/option-pickmany.tmpl -%%DATADIR%%/templates/de/option-pickone.tmpl -%%DATADIR%%/templates/de/option-trailer.tmpl -%%DATADIR%%/templates/de/pager.tmpl -%%DATADIR%%/templates/de/printer-accept.tmpl -%%DATADIR%%/templates/de/printer-added.tmpl -%%DATADIR%%/templates/de/printer-configured.tmpl -%%DATADIR%%/templates/de/printer-confirm.tmpl -%%DATADIR%%/templates/de/printer-default.tmpl -%%DATADIR%%/templates/de/printer-deleted.tmpl -%%DATADIR%%/templates/de/printer-jobs-header.tmpl -%%DATADIR%%/templates/de/printer-modified.tmpl -%%DATADIR%%/templates/de/printer-purge.tmpl -%%DATADIR%%/templates/de/printer-reject.tmpl -%%DATADIR%%/templates/de/printer-start.tmpl -%%DATADIR%%/templates/de/printer-stop.tmpl -%%DATADIR%%/templates/de/printer.tmpl -%%DATADIR%%/templates/de/printers-header.tmpl -%%DATADIR%%/templates/de/printers.tmpl -%%DATADIR%%/templates/de/restart.tmpl -%%DATADIR%%/templates/de/samba-export.tmpl -%%DATADIR%%/templates/de/samba-exported.tmpl -%%DATADIR%%/templates/de/search.tmpl -%%DATADIR%%/templates/de/set-printer-options-header.tmpl -%%DATADIR%%/templates/de/set-printer-options-trailer.tmpl -%%DATADIR%%/templates/de/subscription-added.tmpl -%%DATADIR%%/templates/de/subscription-canceled.tmpl -%%DATADIR%%/templates/de/test-page.tmpl -%%DATADIR%%/templates/de/trailer.tmpl -%%DATADIR%%/templates/de/users.tmpl +%%DATADIR%%/templates/cs/add-class.tmpl +%%DATADIR%%/templates/cs/add-printer.tmpl +%%DATADIR%%/templates/cs/add-rss-subscription.tmpl +%%DATADIR%%/templates/cs/admin.tmpl +%%DATADIR%%/templates/cs/choose-device.tmpl +%%DATADIR%%/templates/cs/choose-make.tmpl +%%DATADIR%%/templates/cs/choose-model.tmpl +%%DATADIR%%/templates/cs/choose-serial.tmpl +%%DATADIR%%/templates/cs/choose-uri.tmpl +%%DATADIR%%/templates/cs/class-added.tmpl +%%DATADIR%%/templates/cs/class-confirm.tmpl +%%DATADIR%%/templates/cs/class-deleted.tmpl +%%DATADIR%%/templates/cs/class-jobs-header.tmpl +%%DATADIR%%/templates/cs/class-modified.tmpl +%%DATADIR%%/templates/cs/class.tmpl +%%DATADIR%%/templates/cs/classes-header.tmpl +%%DATADIR%%/templates/cs/classes.tmpl +%%DATADIR%%/templates/cs/command.tmpl +%%DATADIR%%/templates/cs/edit-config.tmpl +%%DATADIR%%/templates/cs/error-op.tmpl +%%DATADIR%%/templates/cs/error.tmpl +%%DATADIR%%/templates/cs/header.tmpl +%%DATADIR%%/templates/cs/help-header.tmpl +%%DATADIR%%/templates/cs/help-printable.tmpl +%%DATADIR%%/templates/cs/help-trailer.tmpl +%%DATADIR%%/templates/cs/job-cancel.tmpl +%%DATADIR%%/templates/cs/job-hold.tmpl +%%DATADIR%%/templates/cs/job-move.tmpl +%%DATADIR%%/templates/cs/job-moved.tmpl +%%DATADIR%%/templates/cs/job-release.tmpl +%%DATADIR%%/templates/cs/job-restart.tmpl +%%DATADIR%%/templates/cs/jobs-header.tmpl +%%DATADIR%%/templates/cs/jobs.tmpl +%%DATADIR%%/templates/cs/list-available-printers.tmpl +%%DATADIR%%/templates/cs/modify-class.tmpl +%%DATADIR%%/templates/cs/modify-printer.tmpl +%%DATADIR%%/templates/cs/norestart.tmpl +%%DATADIR%%/templates/cs/option-boolean.tmpl +%%DATADIR%%/templates/cs/option-conflict.tmpl +%%DATADIR%%/templates/cs/option-header.tmpl +%%DATADIR%%/templates/cs/option-pickmany.tmpl +%%DATADIR%%/templates/cs/option-pickone.tmpl +%%DATADIR%%/templates/cs/option-trailer.tmpl +%%DATADIR%%/templates/cs/pager.tmpl +%%DATADIR%%/templates/cs/printer-accept.tmpl +%%DATADIR%%/templates/cs/printer-added.tmpl +%%DATADIR%%/templates/cs/printer-configured.tmpl +%%DATADIR%%/templates/cs/printer-confirm.tmpl +%%DATADIR%%/templates/cs/printer-default.tmpl +%%DATADIR%%/templates/cs/printer-deleted.tmpl +%%DATADIR%%/templates/cs/printer-jobs-header.tmpl +%%DATADIR%%/templates/cs/printer-modified.tmpl +%%DATADIR%%/templates/cs/printer-purge.tmpl +%%DATADIR%%/templates/cs/printer-reject.tmpl +%%DATADIR%%/templates/cs/printer-start.tmpl +%%DATADIR%%/templates/cs/printer-stop.tmpl +%%DATADIR%%/templates/cs/printer.tmpl +%%DATADIR%%/templates/cs/printers-header.tmpl +%%DATADIR%%/templates/cs/printers.tmpl +%%DATADIR%%/templates/cs/restart.tmpl +%%DATADIR%%/templates/cs/samba-export.tmpl +%%DATADIR%%/templates/cs/samba-exported.tmpl +%%DATADIR%%/templates/cs/search.tmpl +%%DATADIR%%/templates/cs/set-printer-options-header.tmpl +%%DATADIR%%/templates/cs/set-printer-options-trailer.tmpl +%%DATADIR%%/templates/cs/subscription-added.tmpl +%%DATADIR%%/templates/cs/subscription-canceled.tmpl +%%DATADIR%%/templates/cs/test-page.tmpl +%%DATADIR%%/templates/cs/trailer.tmpl +%%DATADIR%%/templates/cs/users.tmpl %%DATADIR%%/templates/edit-config.tmpl %%DATADIR%%/templates/error-op.tmpl %%DATADIR%%/templates/error.tmpl @@ -317,76 +446,6 @@ %%DATADIR%%/templates/es/test-page.tmpl %%DATADIR%%/templates/es/trailer.tmpl %%DATADIR%%/templates/es/users.tmpl -%%DATADIR%%/templates/eu/add-class.tmpl -%%DATADIR%%/templates/eu/add-printer.tmpl -%%DATADIR%%/templates/eu/add-rss-subscription.tmpl -%%DATADIR%%/templates/eu/admin.tmpl -%%DATADIR%%/templates/eu/choose-device.tmpl -%%DATADIR%%/templates/eu/choose-make.tmpl -%%DATADIR%%/templates/eu/choose-model.tmpl -%%DATADIR%%/templates/eu/choose-serial.tmpl -%%DATADIR%%/templates/eu/choose-uri.tmpl -%%DATADIR%%/templates/eu/class-added.tmpl -%%DATADIR%%/templates/eu/class-confirm.tmpl -%%DATADIR%%/templates/eu/class-deleted.tmpl -%%DATADIR%%/templates/eu/class-jobs-header.tmpl -%%DATADIR%%/templates/eu/class-modified.tmpl -%%DATADIR%%/templates/eu/class.tmpl -%%DATADIR%%/templates/eu/classes-header.tmpl -%%DATADIR%%/templates/eu/classes.tmpl -%%DATADIR%%/templates/eu/command.tmpl -%%DATADIR%%/templates/eu/edit-config.tmpl -%%DATADIR%%/templates/eu/error-op.tmpl -%%DATADIR%%/templates/eu/error.tmpl -%%DATADIR%%/templates/eu/header.tmpl -%%DATADIR%%/templates/eu/help-header.tmpl -%%DATADIR%%/templates/eu/help-printable.tmpl -%%DATADIR%%/templates/eu/help-trailer.tmpl -%%DATADIR%%/templates/eu/job-cancel.tmpl -%%DATADIR%%/templates/eu/job-hold.tmpl -%%DATADIR%%/templates/eu/job-move.tmpl -%%DATADIR%%/templates/eu/job-moved.tmpl -%%DATADIR%%/templates/eu/job-release.tmpl -%%DATADIR%%/templates/eu/job-restart.tmpl -%%DATADIR%%/templates/eu/jobs-header.tmpl -%%DATADIR%%/templates/eu/jobs.tmpl -%%DATADIR%%/templates/eu/list-available-printers.tmpl -%%DATADIR%%/templates/eu/modify-class.tmpl -%%DATADIR%%/templates/eu/modify-printer.tmpl -%%DATADIR%%/templates/eu/norestart.tmpl -%%DATADIR%%/templates/eu/option-boolean.tmpl -%%DATADIR%%/templates/eu/option-conflict.tmpl -%%DATADIR%%/templates/eu/option-header.tmpl -%%DATADIR%%/templates/eu/option-pickmany.tmpl -%%DATADIR%%/templates/eu/option-pickone.tmpl -%%DATADIR%%/templates/eu/option-trailer.tmpl -%%DATADIR%%/templates/eu/pager.tmpl -%%DATADIR%%/templates/eu/printer-accept.tmpl -%%DATADIR%%/templates/eu/printer-added.tmpl -%%DATADIR%%/templates/eu/printer-configured.tmpl -%%DATADIR%%/templates/eu/printer-confirm.tmpl -%%DATADIR%%/templates/eu/printer-default.tmpl -%%DATADIR%%/templates/eu/printer-deleted.tmpl -%%DATADIR%%/templates/eu/printer-jobs-header.tmpl -%%DATADIR%%/templates/eu/printer-modified.tmpl -%%DATADIR%%/templates/eu/printer-purge.tmpl -%%DATADIR%%/templates/eu/printer-reject.tmpl -%%DATADIR%%/templates/eu/printer-start.tmpl -%%DATADIR%%/templates/eu/printer-stop.tmpl -%%DATADIR%%/templates/eu/printer.tmpl -%%DATADIR%%/templates/eu/printers-header.tmpl -%%DATADIR%%/templates/eu/printers.tmpl -%%DATADIR%%/templates/eu/restart.tmpl -%%DATADIR%%/templates/eu/samba-export.tmpl -%%DATADIR%%/templates/eu/samba-exported.tmpl -%%DATADIR%%/templates/eu/search.tmpl -%%DATADIR%%/templates/eu/set-printer-options-header.tmpl -%%DATADIR%%/templates/eu/set-printer-options-trailer.tmpl -%%DATADIR%%/templates/eu/subscription-added.tmpl -%%DATADIR%%/templates/eu/subscription-canceled.tmpl -%%DATADIR%%/templates/eu/test-page.tmpl -%%DATADIR%%/templates/eu/trailer.tmpl -%%DATADIR%%/templates/eu/users.tmpl %%DATADIR%%/templates/fr/add-class.tmpl %%DATADIR%%/templates/fr/add-printer.tmpl %%DATADIR%%/templates/fr/add-rss-subscription.tmpl @@ -396,22 +455,22 @@ %%DATADIR%%/templates/fr/choose-model.tmpl %%DATADIR%%/templates/fr/choose-serial.tmpl %%DATADIR%%/templates/fr/choose-uri.tmpl -%%DATADIR%%/templates/fr/class.tmpl %%DATADIR%%/templates/fr/class-added.tmpl %%DATADIR%%/templates/fr/class-confirm.tmpl %%DATADIR%%/templates/fr/class-deleted.tmpl %%DATADIR%%/templates/fr/class-jobs-header.tmpl %%DATADIR%%/templates/fr/class-modified.tmpl +%%DATADIR%%/templates/fr/class.tmpl +%%DATADIR%%/templates/fr/classes-header.tmpl %%DATADIR%%/templates/fr/classes.tmpl -%%DATADIR%%/templates/fr/classes-header.tmpl %%DATADIR%%/templates/fr/command.tmpl %%DATADIR%%/templates/fr/edit-config.tmpl +%%DATADIR%%/templates/fr/error-op.tmpl %%DATADIR%%/templates/fr/error.tmpl -%%DATADIR%%/templates/fr/error-op.tmpl %%DATADIR%%/templates/fr/header.tmpl %%DATADIR%%/templates/fr/help-header.tmpl +%%DATADIR%%/templates/fr/help-printable.tmpl %%DATADIR%%/templates/fr/help-trailer.tmpl -%%DATADIR%%/templates/fr/help-printable.tmpl %%DATADIR%%/templates/fr/job-cancel.tmpl %%DATADIR%%/templates/fr/job-hold.tmpl %%DATADIR%%/templates/fr/job-move.tmpl @@ -418,8 +477,8 @@ %%DATADIR%%/templates/fr/job-moved.tmpl %%DATADIR%%/templates/fr/job-release.tmpl %%DATADIR%%/templates/fr/job-restart.tmpl +%%DATADIR%%/templates/fr/jobs-header.tmpl %%DATADIR%%/templates/fr/jobs.tmpl -%%DATADIR%%/templates/fr/jobs-header.tmpl %%DATADIR%%/templates/fr/list-available-printers.tmpl %%DATADIR%%/templates/fr/modify-class.tmpl %%DATADIR%%/templates/fr/modify-printer.tmpl @@ -431,7 +490,6 @@ %%DATADIR%%/templates/fr/option-pickone.tmpl %%DATADIR%%/templates/fr/option-trailer.tmpl %%DATADIR%%/templates/fr/pager.tmpl -%%DATADIR%%/templates/fr/printer.tmpl %%DATADIR%%/templates/fr/printer-accept.tmpl %%DATADIR%%/templates/fr/printer-added.tmpl %%DATADIR%%/templates/fr/printer-configured.tmpl @@ -444,8 +502,9 @@ %%DATADIR%%/templates/fr/printer-reject.tmpl %%DATADIR%%/templates/fr/printer-start.tmpl %%DATADIR%%/templates/fr/printer-stop.tmpl +%%DATADIR%%/templates/fr/printer.tmpl +%%DATADIR%%/templates/fr/printers-header.tmpl %%DATADIR%%/templates/fr/printers.tmpl -%%DATADIR%%/templates/fr/printers-header.tmpl %%DATADIR%%/templates/fr/restart.tmpl %%DATADIR%%/templates/fr/samba-export.tmpl %%DATADIR%%/templates/fr/samba-exported.tmpl @@ -457,150 +516,10 @@ %%DATADIR%%/templates/fr/test-page.tmpl %%DATADIR%%/templates/fr/trailer.tmpl %%DATADIR%%/templates/fr/users.tmpl -%%DATADIR%%/templates/hu/add-class.tmpl -%%DATADIR%%/templates/hu/add-printer.tmpl -%%DATADIR%%/templates/hu/add-rss-subscription.tmpl -%%DATADIR%%/templates/hu/admin.tmpl -%%DATADIR%%/templates/hu/choose-device.tmpl -%%DATADIR%%/templates/hu/choose-make.tmpl -%%DATADIR%%/templates/hu/choose-model.tmpl -%%DATADIR%%/templates/hu/choose-serial.tmpl -%%DATADIR%%/templates/hu/choose-uri.tmpl -%%DATADIR%%/templates/hu/class.tmpl -%%DATADIR%%/templates/hu/class-added.tmpl -%%DATADIR%%/templates/hu/class-confirm.tmpl -%%DATADIR%%/templates/hu/class-deleted.tmpl -%%DATADIR%%/templates/hu/class-jobs-header.tmpl -%%DATADIR%%/templates/hu/class-modified.tmpl -%%DATADIR%%/templates/hu/classes.tmpl -%%DATADIR%%/templates/hu/classes-header.tmpl -%%DATADIR%%/templates/hu/command.tmpl -%%DATADIR%%/templates/hu/edit-config.tmpl -%%DATADIR%%/templates/hu/error.tmpl -%%DATADIR%%/templates/hu/error-op.tmpl -%%DATADIR%%/templates/hu/header.tmpl -%%DATADIR%%/templates/hu/help-header.tmpl -%%DATADIR%%/templates/hu/help-trailer.tmpl -%%DATADIR%%/templates/hu/help-printable.tmpl -%%DATADIR%%/templates/hu/job-cancel.tmpl -%%DATADIR%%/templates/hu/job-hold.tmpl -%%DATADIR%%/templates/hu/job-move.tmpl -%%DATADIR%%/templates/hu/job-moved.tmpl -%%DATADIR%%/templates/hu/job-release.tmpl -%%DATADIR%%/templates/hu/job-restart.tmpl -%%DATADIR%%/templates/hu/jobs.tmpl -%%DATADIR%%/templates/hu/jobs-header.tmpl -%%DATADIR%%/templates/hu/list-available-printers.tmpl -%%DATADIR%%/templates/hu/modify-class.tmpl -%%DATADIR%%/templates/hu/modify-printer.tmpl -%%DATADIR%%/templates/hu/norestart.tmpl -%%DATADIR%%/templates/hu/option-boolean.tmpl -%%DATADIR%%/templates/hu/option-conflict.tmpl -%%DATADIR%%/templates/hu/option-header.tmpl -%%DATADIR%%/templates/hu/option-pickmany.tmpl -%%DATADIR%%/templates/hu/option-pickone.tmpl -%%DATADIR%%/templates/hu/option-trailer.tmpl -%%DATADIR%%/templates/hu/pager.tmpl -%%DATADIR%%/templates/hu/printer.tmpl -%%DATADIR%%/templates/hu/printer-accept.tmpl -%%DATADIR%%/templates/hu/printer-added.tmpl -%%DATADIR%%/templates/hu/printer-configured.tmpl -%%DATADIR%%/templates/hu/printer-confirm.tmpl -%%DATADIR%%/templates/hu/printer-default.tmpl -%%DATADIR%%/templates/hu/printer-deleted.tmpl -%%DATADIR%%/templates/hu/printer-jobs-header.tmpl -%%DATADIR%%/templates/hu/printer-modified.tmpl -%%DATADIR%%/templates/hu/printer-purge.tmpl -%%DATADIR%%/templates/hu/printer-reject.tmpl -%%DATADIR%%/templates/hu/printer-start.tmpl -%%DATADIR%%/templates/hu/printer-stop.tmpl -%%DATADIR%%/templates/hu/printers.tmpl -%%DATADIR%%/templates/hu/printers-header.tmpl -%%DATADIR%%/templates/hu/restart.tmpl -%%DATADIR%%/templates/hu/samba-export.tmpl -%%DATADIR%%/templates/hu/samba-exported.tmpl -%%DATADIR%%/templates/hu/search.tmpl -%%DATADIR%%/templates/hu/set-printer-options-header.tmpl -%%DATADIR%%/templates/hu/set-printer-options-trailer.tmpl -%%DATADIR%%/templates/hu/subscription-added.tmpl -%%DATADIR%%/templates/hu/subscription-canceled.tmpl -%%DATADIR%%/templates/hu/test-page.tmpl -%%DATADIR%%/templates/hu/trailer.tmpl -%%DATADIR%%/templates/hu/users.tmpl %%DATADIR%%/templates/header.tmpl %%DATADIR%%/templates/help-header.tmpl %%DATADIR%%/templates/help-printable.tmpl %%DATADIR%%/templates/help-trailer.tmpl -%%DATADIR%%/templates/id/add-class.tmpl -%%DATADIR%%/templates/id/add-printer.tmpl -%%DATADIR%%/templates/id/add-rss-subscription.tmpl -%%DATADIR%%/templates/id/admin.tmpl -%%DATADIR%%/templates/id/choose-device.tmpl -%%DATADIR%%/templates/id/choose-make.tmpl -%%DATADIR%%/templates/id/choose-model.tmpl -%%DATADIR%%/templates/id/choose-serial.tmpl -%%DATADIR%%/templates/id/choose-uri.tmpl -%%DATADIR%%/templates/id/class-added.tmpl -%%DATADIR%%/templates/id/class-confirm.tmpl -%%DATADIR%%/templates/id/class-deleted.tmpl -%%DATADIR%%/templates/id/class-jobs-header.tmpl -%%DATADIR%%/templates/id/class-modified.tmpl -%%DATADIR%%/templates/id/class.tmpl -%%DATADIR%%/templates/id/classes-header.tmpl -%%DATADIR%%/templates/id/classes.tmpl -%%DATADIR%%/templates/id/command.tmpl -%%DATADIR%%/templates/id/edit-config.tmpl -%%DATADIR%%/templates/id/error-op.tmpl -%%DATADIR%%/templates/id/error.tmpl -%%DATADIR%%/templates/id/header.tmpl -%%DATADIR%%/templates/id/help-header.tmpl -%%DATADIR%%/templates/id/help-printable.tmpl -%%DATADIR%%/templates/id/help-trailer.tmpl -%%DATADIR%%/templates/id/job-cancel.tmpl -%%DATADIR%%/templates/id/job-hold.tmpl -%%DATADIR%%/templates/id/job-move.tmpl -%%DATADIR%%/templates/id/job-moved.tmpl -%%DATADIR%%/templates/id/job-release.tmpl -%%DATADIR%%/templates/id/job-restart.tmpl -%%DATADIR%%/templates/id/jobs-header.tmpl -%%DATADIR%%/templates/id/jobs.tmpl -%%DATADIR%%/templates/id/list-available-printers.tmpl -%%DATADIR%%/templates/id/modify-class.tmpl -%%DATADIR%%/templates/id/modify-printer.tmpl -%%DATADIR%%/templates/id/norestart.tmpl -%%DATADIR%%/templates/id/option-boolean.tmpl -%%DATADIR%%/templates/id/option-conflict.tmpl -%%DATADIR%%/templates/id/option-header.tmpl -%%DATADIR%%/templates/id/option-pickmany.tmpl -%%DATADIR%%/templates/id/option-pickone.tmpl -%%DATADIR%%/templates/id/option-trailer.tmpl -%%DATADIR%%/templates/id/pager.tmpl -%%DATADIR%%/templates/id/printer-accept.tmpl -%%DATADIR%%/templates/id/printer-added.tmpl -%%DATADIR%%/templates/id/printer-configured.tmpl -%%DATADIR%%/templates/id/printer-confirm.tmpl -%%DATADIR%%/templates/id/printer-default.tmpl -%%DATADIR%%/templates/id/printer-deleted.tmpl -%%DATADIR%%/templates/id/printer-jobs-header.tmpl -%%DATADIR%%/templates/id/printer-modified.tmpl -%%DATADIR%%/templates/id/printer-purge.tmpl -%%DATADIR%%/templates/id/printer-reject.tmpl -%%DATADIR%%/templates/id/printer-start.tmpl -%%DATADIR%%/templates/id/printer-stop.tmpl -%%DATADIR%%/templates/id/printer.tmpl -%%DATADIR%%/templates/id/printers-header.tmpl -%%DATADIR%%/templates/id/printers.tmpl -%%DATADIR%%/templates/id/restart.tmpl -%%DATADIR%%/templates/id/samba-export.tmpl -%%DATADIR%%/templates/id/samba-exported.tmpl -%%DATADIR%%/templates/id/search.tmpl -%%DATADIR%%/templates/id/set-printer-options-header.tmpl -%%DATADIR%%/templates/id/set-printer-options-trailer.tmpl -%%DATADIR%%/templates/id/subscription-added.tmpl -%%DATADIR%%/templates/id/subscription-canceled.tmpl -%%DATADIR%%/templates/id/test-page.tmpl -%%DATADIR%%/templates/id/trailer.tmpl -%%DATADIR%%/templates/id/users.tmpl %%DATADIR%%/templates/it/add-class.tmpl %%DATADIR%%/templates/it/add-printer.tmpl %%DATADIR%%/templates/it/add-rss-subscription.tmpl @@ -622,6 +541,7 @@ %%DATADIR%%/templates/it/edit-config.tmpl %%DATADIR%%/templates/it/error-op.tmpl %%DATADIR%%/templates/it/error.tmpl +%%DATADIR%%/templates/it/header.tmpl %%DATADIR%%/templates/it/help-header.tmpl %%DATADIR%%/templates/it/help-printable.tmpl %%DATADIR%%/templates/it/help-trailer.tmpl @@ -759,74 +679,6 @@ %%DATADIR%%/templates/option-pickone.tmpl %%DATADIR%%/templates/option-trailer.tmpl %%DATADIR%%/templates/pager.tmpl -%%DATADIR%%/templates/pl/add-class.tmpl -%%DATADIR%%/templates/pl/add-printer.tmpl -%%DATADIR%%/templates/pl/add-rss-subscription.tmpl -%%DATADIR%%/templates/pl/admin.tmpl -%%DATADIR%%/templates/pl/choose-device.tmpl -%%DATADIR%%/templates/pl/choose-make.tmpl -%%DATADIR%%/templates/pl/choose-model.tmpl -%%DATADIR%%/templates/pl/choose-serial.tmpl -%%DATADIR%%/templates/pl/choose-uri.tmpl -%%DATADIR%%/templates/pl/class-added.tmpl -%%DATADIR%%/templates/pl/class-confirm.tmpl -%%DATADIR%%/templates/pl/class-deleted.tmpl -%%DATADIR%%/templates/pl/class-jobs-header.tmpl -%%DATADIR%%/templates/pl/class-modified.tmpl -%%DATADIR%%/templates/pl/class.tmpl -%%DATADIR%%/templates/pl/classes-header.tmpl -%%DATADIR%%/templates/pl/classes.tmpl -%%DATADIR%%/templates/pl/command.tmpl -%%DATADIR%%/templates/pl/edit-config.tmpl -%%DATADIR%%/templates/pl/error-op.tmpl -%%DATADIR%%/templates/pl/error.tmpl -%%DATADIR%%/templates/pl/header.tmpl -%%DATADIR%%/templates/pl/help-header.tmpl -%%DATADIR%%/templates/pl/help-printable.tmpl -%%DATADIR%%/templates/pl/help-trailer.tmpl -%%DATADIR%%/templates/pl/job-cancel.tmpl -%%DATADIR%%/templates/pl/job-hold.tmpl -%%DATADIR%%/templates/pl/job-move.tmpl -%%DATADIR%%/templates/pl/job-moved.tmpl -%%DATADIR%%/templates/pl/job-release.tmpl -%%DATADIR%%/templates/pl/job-restart.tmpl -%%DATADIR%%/templates/pl/jobs-header.tmpl -%%DATADIR%%/templates/pl/jobs.tmpl -%%DATADIR%%/templates/pl/list-available-printers.tmpl -%%DATADIR%%/templates/pl/modify-class.tmpl -%%DATADIR%%/templates/pl/modify-printer.tmpl -%%DATADIR%%/templates/pl/option-boolean.tmpl -%%DATADIR%%/templates/pl/option-conflict.tmpl -%%DATADIR%%/templates/pl/option-header.tmpl -%%DATADIR%%/templates/pl/option-pickmany.tmpl -%%DATADIR%%/templates/pl/option-pickone.tmpl -%%DATADIR%%/templates/pl/option-trailer.tmpl -%%DATADIR%%/templates/pl/pager.tmpl -%%DATADIR%%/templates/pl/printer-accept.tmpl -%%DATADIR%%/templates/pl/printer-added.tmpl -%%DATADIR%%/templates/pl/printer-configured.tmpl -%%DATADIR%%/templates/pl/printer-confirm.tmpl -%%DATADIR%%/templates/pl/printer-default.tmpl -%%DATADIR%%/templates/pl/printer-deleted.tmpl -%%DATADIR%%/templates/pl/printer-jobs-header.tmpl -%%DATADIR%%/templates/pl/printer-modified.tmpl -%%DATADIR%%/templates/pl/printer-purge.tmpl -%%DATADIR%%/templates/pl/printer-reject.tmpl -%%DATADIR%%/templates/pl/printer-start.tmpl -%%DATADIR%%/templates/pl/printer-stop.tmpl -%%DATADIR%%/templates/pl/printers-header.tmpl -%%DATADIR%%/templates/pl/printers.tmpl -%%DATADIR%%/templates/pl/restart.tmpl -%%DATADIR%%/templates/pl/samba-export.tmpl -%%DATADIR%%/templates/pl/samba-exported.tmpl -%%DATADIR%%/templates/pl/search.tmpl -%%DATADIR%%/templates/pl/set-printer-options-header.tmpl -%%DATADIR%%/templates/pl/set-printer-options-trailer.tmpl -%%DATADIR%%/templates/pl/subscription-added.tmpl -%%DATADIR%%/templates/pl/subscription-canceled.tmpl -%%DATADIR%%/templates/pl/test-page.tmpl -%%DATADIR%%/templates/pl/trailer.tmpl -%%DATADIR%%/templates/pl/users.tmpl %%DATADIR%%/templates/printer-accept.tmpl %%DATADIR%%/templates/printer-added.tmpl %%DATADIR%%/templates/printer-configured.tmpl @@ -839,8 +691,6 @@ %%DATADIR%%/templates/printer-reject.tmpl %%DATADIR%%/templates/printer-start.tmpl %%DATADIR%%/templates/printer-stop.tmpl -%%DATADIR%%/templates/pl/norestart.tmpl -%%DATADIR%%/templates/pl/printer.tmpl %%DATADIR%%/templates/printer.tmpl %%DATADIR%%/templates/printers-header.tmpl %%DATADIR%%/templates/printers.tmpl @@ -925,228 +775,183 @@ %%DATADIR%%/templates/test-page.tmpl %%DATADIR%%/templates/trailer.tmpl %%DATADIR%%/templates/users.tmpl -%%DOCSDIR%%/cups-printable.css -%%DOCSDIR%%/cups.css -%%DOCSDIR%%/de/index.html -%%DOCSDIR%%/es/index.html -%%DOCSDIR%%/eu/index.html -%%DOCSDIR%%/fr/index.html -%%DOCSDIR%%/hu/index.html -%%DOCSDIR%%/help/accounting.html -%%DOCSDIR%%/help/api-array.html -%%DOCSDIR%%/help/api-cgi.html -%%DOCSDIR%%/help/api-cups.html -%%DOCSDIR%%/help/api-driver.html -%%DOCSDIR%%/help/api-filedir.html -%%DOCSDIR%%/help/api-filter.html -%%DOCSDIR%%/help/api-httpipp.html -%%DOCSDIR%%/help/api-mime.html -%%DOCSDIR%%/help/api-overview.html -%%DOCSDIR%%/help/api-ppd.html -%%DOCSDIR%%/help/api-ppdc.html -%%DOCSDIR%%/help/api-raster.html -%%DOCSDIR%%/help/cgi.html -%%DOCSDIR%%/help/glossary.html -%%DOCSDIR%%/help/kerberos.html -%%DOCSDIR%%/help/license.html -%%DOCSDIR%%/help/man-backend.html -%%DOCSDIR%%/help/man-cancel.html -%%DOCSDIR%%/help/man-cups-lpd.html -%%DOCSDIR%%/help/man-cups-polld.html -%%DOCSDIR%%/help/man-cupsaccept.html -%%DOCSDIR%%/help/man-cupsaddsmb.html -%%DOCSDIR%%/help/man-cupsd.html -%%DOCSDIR%%/help/man-cupsenable.html -%%DOCSDIR%%/help/man-cupstestdsc.html -%%DOCSDIR%%/help/man-cupstestppd.html -%%DOCSDIR%%/help/man-filter.html -%%DOCSDIR%%/help/man-ipptool.html -%%DOCSDIR%%/help/man-ipptoolfile.html -%%DOCSDIR%%/help/man-lp.html -%%DOCSDIR%%/help/man-lpadmin.html -%%DOCSDIR%%/help/man-lpc.html -%%DOCSDIR%%/help/man-lpinfo.html -%%DOCSDIR%%/help/man-lpmove.html -%%DOCSDIR%%/help/man-lpoptions.html -%%DOCSDIR%%/help/man-lppasswd.html -%%DOCSDIR%%/help/man-lpq.html -%%DOCSDIR%%/help/man-lpr.html -%%DOCSDIR%%/help/man-lprm.html -%%DOCSDIR%%/help/man-lpstat.html -%%DOCSDIR%%/help/man-mime.convs.html -%%DOCSDIR%%/help/man-mime.types.html -%%DOCSDIR%%/help/man-notifier.html -%%DOCSDIR%%/help/man-ppdc.html -%%DOCSDIR%%/help/man-ppdhtml.html -%%DOCSDIR%%/help/man-ppdi.html -%%DOCSDIR%%/help/man-ppdmerge.html -%%DOCSDIR%%/help/man-ppdpo.html -%%DOCSDIR%%/help/network.html -%%DOCSDIR%%/help/options.html -%%DOCSDIR%%/help/overview.html -%%DOCSDIR%%/help/policies.html -%%DOCSDIR%%/help/postscript-driver.html -%%DOCSDIR%%/help/ppd-compiler.html -%%DOCSDIR%%/help/raster-driver.html -%%DOCSDIR%%/help/ref-access_log.html -%%DOCSDIR%%/help/ref-classes-conf.html -%%DOCSDIR%%/help/ref-client-conf.html -%%DOCSDIR%%/help/ref-cupsd-conf.html -%%DOCSDIR%%/help/ref-error_log.html -%%DOCSDIR%%/help/ref-mailto-conf.html -%%DOCSDIR%%/help/ref-page_log.html -%%DOCSDIR%%/help/ref-ppdcfile.html -%%DOCSDIR%%/help/ref-printers-conf.html -%%DOCSDIR%%/help/ref-snmp-conf.html -%%DOCSDIR%%/help/ref-subscriptions-conf.html -%%DOCSDIR%%/help/security.html -%%DOCSDIR%%/help/sharing.html -%%DOCSDIR%%/help/spec-banner.html -%%DOCSDIR%%/help/spec-browsing.html -%%DOCSDIR%%/help/spec-cmp.html -%%DOCSDIR%%/help/spec-command.html -%%DOCSDIR%%/help/spec-design.html -%%DOCSDIR%%/help/spec-ipp.html -%%DOCSDIR%%/help/spec-postscript.html -%%DOCSDIR%%/help/spec-pdf.html -%%DOCSDIR%%/help/spec-ppd.html -%%DOCSDIR%%/help/spec-raster.html -%%DOCSDIR%%/help/spec-stp.html -%%DOCSDIR%%/help/standard.html -%%DOCSDIR%%/help/translation.html -%%DOCSDIR%%/help/whatsnew.html -%%DOCSDIR%%/id/index.html -%%DOCSDIR%%/images/color-wheel.png -%%DOCSDIR%%/images/cups-block-diagram.png -%%DOCSDIR%%/images/cups-command-chain.png -%%DOCSDIR%%/images/cups-icon.png -%%DOCSDIR%%/images/cups-postscript-chain.png -%%DOCSDIR%%/images/cups-raster-chain.png -%%DOCSDIR%%/images/cups.png -%%DOCSDIR%%/images/generic.png -%%DOCSDIR%%/images/left.gif -%%DOCSDIR%%/images/raster-organization.png -%%DOCSDIR%%/images/raster.png -%%DOCSDIR%%/images/right.gif -%%DOCSDIR%%/images/sample-image.png -%%DOCSDIR%%/images/sel.gif -%%DOCSDIR%%/images/smiley.jpg -%%DOCSDIR%%/images/unsel.gif -%%DOCSDIR%%/images/wait.gif -%%DOCSDIR%%/index.html -%%DATADIR%%/ipptool/create-printer-subscription.test -%%DATADIR%%/ipptool/color.jpg -%%DATADIR%%/ipptool/document-a4.pdf -%%DATADIR%%/ipptool/document-a4.ps -%%DATADIR%%/ipptool/document-letter.pdf -%%DATADIR%%/ipptool/document-letter.ps -%%DATADIR%%/ipptool/gray.jpg -%%DATADIR%%/ipptool/ipp-2.2.test -%%DATADIR%%/ipptool/onepage-a4.pdf -%%DATADIR%%/ipptool/onepage-a4.ps -%%DATADIR%%/ipptool/onepage-letter.pdf -%%DATADIR%%/ipptool/onepage-letter.ps -%%DATADIR%%/ipptool/get-completed-jobs.test -%%DATADIR%%/ipptool/get-jobs.test -%%DATADIR%%/ipptool/get-printer-attributes.test -%%DATADIR%%/ipptool/ipp-1.1.test -%%DATADIR%%/ipptool/ipp-2.0.test -%%DATADIR%%/ipptool/ipp-2.1.test -%%DATADIR%%/ipptool/testfile.jpg -%%DATADIR%%/ipptool/testfile.pdf -%%DATADIR%%/ipptool/testfile.ps -%%DATADIR%%/ipptool/testfile.txt -%%DOCSDIR%%/it/index.html -%%DOCSDIR%%/ja/index.html -%%DOCSDIR%%/pl/index.html -%%DOCSDIR%%/robots.txt -%%DOCSDIR%%/ru/index.html -%%EXAMPLESDIR%%/ulpt-cupsd.conf -share/applications/cups.desktop +%%PORTDOCS%%%%DOCSDIR%%/ca/index.html +%%PORTDOCS%%%%DOCSDIR%%/cs/index.html +%%PORTDOCS%%%%DOCSDIR%%/cups-printable.css +%%PORTDOCS%%%%DOCSDIR%%/cups.css +%%PORTDOCS%%%%DOCSDIR%%/es/index.html +%%PORTDOCS%%%%DOCSDIR%%/fr/index.html +%%PORTDOCS%%%%DOCSDIR%%/help/accounting.html +%%PORTDOCS%%%%DOCSDIR%%/help/api-array.html +%%PORTDOCS%%%%DOCSDIR%%/help/api-cgi.html +%%PORTDOCS%%%%DOCSDIR%%/help/api-cups.html +%%PORTDOCS%%%%DOCSDIR%%/help/api-driver.html +%%PORTDOCS%%%%DOCSDIR%%/help/api-filedir.html +%%PORTDOCS%%%%DOCSDIR%%/help/api-filter.html +%%PORTDOCS%%%%DOCSDIR%%/help/api-httpipp.html +%%PORTDOCS%%%%DOCSDIR%%/help/api-mime.html +%%PORTDOCS%%%%DOCSDIR%%/help/api-overview.html +%%PORTDOCS%%%%DOCSDIR%%/help/api-ppd.html +%%PORTDOCS%%%%DOCSDIR%%/help/api-ppdc.html +%%PORTDOCS%%%%DOCSDIR%%/help/api-raster.html +%%PORTDOCS%%%%DOCSDIR%%/help/cgi.html +%%PORTDOCS%%%%DOCSDIR%%/help/glossary.html +%%PORTDOCS%%%%DOCSDIR%%/help/kerberos.html +%%PORTDOCS%%%%DOCSDIR%%/help/license.html +%%PORTDOCS%%%%DOCSDIR%%/help/man-backend.html +%%PORTDOCS%%%%DOCSDIR%%/help/man-cancel.html +%%PORTDOCS%%%%DOCSDIR%%/help/man-cups-config.html +%%PORTDOCS%%%%DOCSDIR%%/help/man-cups-lpd.html +%%PORTDOCS%%%%DOCSDIR%%/help/man-cups-snmp.html +%%PORTDOCS%%%%DOCSDIR%%/help/man-cupsaccept.html +%%PORTDOCS%%%%DOCSDIR%%/help/man-cupsaddsmb.html +%%PORTDOCS%%%%DOCSDIR%%/help/man-cupsd.html +%%PORTDOCS%%%%DOCSDIR%%/help/man-cupsenable.html +%%PORTDOCS%%%%DOCSDIR%%/help/man-cupstestdsc.html +%%PORTDOCS%%%%DOCSDIR%%/help/man-cupstestppd.html +%%PORTDOCS%%%%DOCSDIR%%/help/man-filter.html +%%PORTDOCS%%%%DOCSDIR%%/help/man-ipptool.html +%%PORTDOCS%%%%DOCSDIR%%/help/man-ipptoolfile.html +%%PORTDOCS%%%%DOCSDIR%%/help/man-lp.html +%%PORTDOCS%%%%DOCSDIR%%/help/man-lpadmin.html +%%PORTDOCS%%%%DOCSDIR%%/help/man-lpc.html +%%PORTDOCS%%%%DOCSDIR%%/help/man-lpinfo.html +%%PORTDOCS%%%%DOCSDIR%%/help/man-lpmove.html +%%PORTDOCS%%%%DOCSDIR%%/help/man-lpoptions.html +%%PORTDOCS%%%%DOCSDIR%%/help/man-lppasswd.html +%%PORTDOCS%%%%DOCSDIR%%/help/man-lpq.html +%%PORTDOCS%%%%DOCSDIR%%/help/man-lpr.html +%%PORTDOCS%%%%DOCSDIR%%/help/man-lprm.html +%%PORTDOCS%%%%DOCSDIR%%/help/man-lpstat.html +%%PORTDOCS%%%%DOCSDIR%%/help/man-mime.convs.html +%%PORTDOCS%%%%DOCSDIR%%/help/man-mime.types.html +%%PORTDOCS%%%%DOCSDIR%%/help/man-notifier.html +%%PORTDOCS%%%%DOCSDIR%%/help/man-ppdc.html +%%PORTDOCS%%%%DOCSDIR%%/help/man-ppdhtml.html +%%PORTDOCS%%%%DOCSDIR%%/help/man-ppdi.html +%%PORTDOCS%%%%DOCSDIR%%/help/man-ppdmerge.html +%%PORTDOCS%%%%DOCSDIR%%/help/man-ppdpo.html +%%PORTDOCS%%%%DOCSDIR%%/help/network.html +%%PORTDOCS%%%%DOCSDIR%%/help/options.html +%%PORTDOCS%%%%DOCSDIR%%/help/overview.html +%%PORTDOCS%%%%DOCSDIR%%/help/policies.html +%%PORTDOCS%%%%DOCSDIR%%/help/postscript-driver.html +%%PORTDOCS%%%%DOCSDIR%%/help/ppd-compiler.html +%%PORTDOCS%%%%DOCSDIR%%/help/raster-driver.html +%%PORTDOCS%%%%DOCSDIR%%/help/ref-access_log.html +%%PORTDOCS%%%%DOCSDIR%%/help/ref-classes-conf.html +%%PORTDOCS%%%%DOCSDIR%%/help/ref-client-conf.html +%%PORTDOCS%%%%DOCSDIR%%/help/ref-cups-files-conf.html +%%PORTDOCS%%%%DOCSDIR%%/help/ref-cupsd-conf.html +%%PORTDOCS%%%%DOCSDIR%%/help/ref-error_log.html +%%PORTDOCS%%%%DOCSDIR%%/help/ref-mailto-conf.html +%%PORTDOCS%%%%DOCSDIR%%/help/ref-page_log.html +%%PORTDOCS%%%%DOCSDIR%%/help/ref-ppdcfile.html +%%PORTDOCS%%%%DOCSDIR%%/help/ref-printers-conf.html +%%PORTDOCS%%%%DOCSDIR%%/help/ref-snmp-conf.html +%%PORTDOCS%%%%DOCSDIR%%/help/ref-subscriptions-conf.html +%%PORTDOCS%%%%DOCSDIR%%/help/security.html +%%PORTDOCS%%%%DOCSDIR%%/help/sharing.html +%%PORTDOCS%%%%DOCSDIR%%/help/spec-banner.html +%%PORTDOCS%%%%DOCSDIR%%/help/spec-cmp.html +%%PORTDOCS%%%%DOCSDIR%%/help/spec-command.html +%%PORTDOCS%%%%DOCSDIR%%/help/spec-design.html +%%PORTDOCS%%%%DOCSDIR%%/help/spec-ipp.html +%%PORTDOCS%%%%DOCSDIR%%/help/spec-pdf.html +%%PORTDOCS%%%%DOCSDIR%%/help/spec-postscript.html +%%PORTDOCS%%%%DOCSDIR%%/help/spec-ppd.html +%%PORTDOCS%%%%DOCSDIR%%/help/spec-raster.html +%%PORTDOCS%%%%DOCSDIR%%/help/spec-stp.html +%%PORTDOCS%%%%DOCSDIR%%/help/translation.html +%%PORTDOCS%%%%DOCSDIR%%/help/whatsnew.html +%%PORTDOCS%%%%DOCSDIR%%/images/color-wheel.png +%%PORTDOCS%%%%DOCSDIR%%/images/cups-block-diagram.png +%%PORTDOCS%%%%DOCSDIR%%/images/cups-command-chain.png +%%PORTDOCS%%%%DOCSDIR%%/images/cups-icon.png +%%PORTDOCS%%%%DOCSDIR%%/images/cups-postscript-chain.png +%%PORTDOCS%%%%DOCSDIR%%/images/cups-raster-chain.png +%%PORTDOCS%%%%DOCSDIR%%/images/cups.png +%%PORTDOCS%%%%DOCSDIR%%/images/left.gif +%%PORTDOCS%%%%DOCSDIR%%/images/raster-organization.png +%%PORTDOCS%%%%DOCSDIR%%/images/raster.png +%%PORTDOCS%%%%DOCSDIR%%/images/right.gif +%%PORTDOCS%%%%DOCSDIR%%/images/sample-image.png +%%PORTDOCS%%%%DOCSDIR%%/images/sel.gif +%%PORTDOCS%%%%DOCSDIR%%/images/smiley.jpg +%%PORTDOCS%%%%DOCSDIR%%/images/unsel.gif +%%PORTDOCS%%%%DOCSDIR%%/images/wait.gif +%%PORTDOCS%%%%DOCSDIR%%/index.html +%%PORTDOCS%%%%DOCSDIR%%/it/index.html +%%PORTDOCS%%%%DOCSDIR%%/ja/index.html +%%PORTDOCS%%%%DOCSDIR%%/robots.txt +%%PORTDOCS%%%%DOCSDIR%%/ru/index.html +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ulpt-cupsd.conf +share/icons/hicolor/128x128/apps/cups.png share/icons/hicolor/16x16/apps/cups.png share/icons/hicolor/32x32/apps/cups.png share/icons/hicolor/64x64/apps/cups.png -share/icons/hicolor/128x128/apps/cups.png -share/locale/da/cups_da.po -share/locale/de/cups_de.po +share/locale/ca/cups_ca.po +share/locale/cs/cups_cs.po share/locale/es/cups_es.po -share/locale/eu/cups_eu.po -share/locale/fi/cups_fi.po share/locale/fr/cups_fr.po -share/locale/hu/cups_hu.po -share/locale/id/cups_id.po share/locale/it/cups_it.po share/locale/ja/cups_ja.po -share/locale/ko/cups_ko.po -share/locale/nl/cups_nl.po -share/locale/no/cups_no.po -share/locale/pl/cups_pl.po -share/locale/pt/cups_pt.po -share/locale/pt_BR/cups_pt_BR.po share/locale/ru/cups_ru.po -share/locale/sv/cups_sv.po -share/locale/zh/cups_zh.po -share/locale/zh_TW/cups_zh_TW.po +@unexec rmdir >/dev/null 2>&1 /var/spool/cups/tmp || : +@unexec rmdir >/dev/null 2>&1 /var/spool/cups || : +@unexec rmdir >/dev/null 2>&1 /var/run/cups/certs || : +@unexec rmdir >/dev/null 2>&1 /var/run/cups || : +@unexec rmdir >/dev/null 2>&1 /var/log/cups || : +@unexec rmdir >/dev/null 2>&1 /var/db/cups/rss || : +@unexec rmdir >/dev/null 2>&1 /var/db/cups || : +@dirrmtry share/icons/hicolor/64x64/apps +@dirrmtry share/icons/hicolor/64x64 +@dirrmtry share/icons/hicolor/32x32/apps +@dirrmtry share/icons/hicolor/32x32 @dirrmtry share/icons/hicolor/16x16/apps @dirrmtry share/icons/hicolor/16x16 -@dirrmtry share/icons/hicolor/32x32/apps -@dirrmtry share/icons/hicolor/32x32 -@dirrmtry share/icons/hicolor/64x64/apps -@dirrmtry share/icons/hicolor/64x64 @dirrmtry share/icons/hicolor/128x128/apps @dirrmtry share/icons/hicolor/128x128 @dirrmtry share/icons/hicolor @dirrmtry share/icons -@dirrm %%DOCSDIR%%/ru -@dirrm %%DOCSDIR%%/pl -@dirrm %%DOCSDIR%%/ja -@dirrm %%DOCSDIR%%/it -@dirrm %%DATADIR%%/ipptool -@dirrm %%DOCSDIR%%/images -@dirrm %%DOCSDIR%%/id -@dirrm %%DOCSDIR%%/help -@dirrm %%DOCSDIR%%/eu -@dirrm %%DOCSDIR%%/es -@dirrm %%DOCSDIR%%/de -@dirrm %%DOCSDIR%%/fr -@dirrm %%DOCSDIR%%/hu -@dirrm %%DOCSDIR%% -@dirrm %%EXAMPLESDIR%% -@dirrm %%DATADIR%%/templates/ru -@dirrm %%DATADIR%%/templates/pl -@dirrm %%DATADIR%%/templates/ja -@dirrm %%DATADIR%%/templates/it -@dirrm %%DATADIR%%/templates/id -@dirrm %%DATADIR%%/templates/eu -@dirrm %%DATADIR%%/templates/es -@dirrm %%DATADIR%%/templates/fr -@dirrm %%DATADIR%%/templates/de -@dirrm %%DATADIR%%/templates/hu -@dirrm %%DATADIR%%/templates -@exec mkdir -p %D/%%DATADIR%%/profiles -@dirrm %%DATADIR%%/profiles -@dirrm %%DATADIR%%/ppdc -@exec mkdir -p %D/%%DATADIR%%/model +%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%% +%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/ru +%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/ja +%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/it +%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/images +%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/help +%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/fr +%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/es +%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/cs +%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/ca +%%PORTDOCS%%@dirrmtry %%DOCSDIR%% +@dirrmtry %%DATADIR%%/templates/ru +@dirrmtry %%DATADIR%%/templates/ja +@dirrmtry %%DATADIR%%/templates/it +@dirrmtry %%DATADIR%%/templates/fr +@dirrmtry %%DATADIR%%/templates/es +@dirrmtry %%DATADIR%%/templates/cs +@dirrmtry %%DATADIR%%/templates/ca +@dirrmtry %%DATADIR%%/templates +@dirrmtry %%DATADIR%%/profiles +@dirrmtry %%DATADIR%%/ppdc @dirrmtry %%DATADIR%%/model -@dirrm %%DATADIR%%/mime -@dirrm %%DATADIR%%/fonts -@dirrm %%DATADIR%%/examples -@dirrm %%DATADIR%%/data -@dirrm %%DATADIR%%/drv -@dirrm %%DATADIR%%/charsets -@dirrm %%DATADIR%%/banners +@dirrmtry %%DATADIR%%/mime +@dirrmtry %%DATADIR%%/ipptool +@dirrmtry %%DATADIR%%/examples +@dirrmtry %%DATADIR%%/drv @dirrmtry %%DATADIR%% -@dirrm libexec/cups/notifier -@dirrm libexec/cups/monitor -@dirrmtry libexec/cups/filter +@dirrmtry libexec/cups/notifier +@dirrmtry libexec/cups/monitor @exec mkdir -p %D/libexec/cups/driver @dirrmtry libexec/cups/driver -@dirrm libexec/cups/daemon -@dirrm libexec/cups/cgi-bin +@dirrmtry libexec/cups/daemon +@dirrmtry libexec/cups/cgi-bin @dirrmtry libexec/cups/backend @dirrmtry libexec/cups %%PHP%%@dirrmtry lib/php/%%PHP_EXT_DIR%% +@dirrmtry include/cups +@dirrmtry etc/cups/ssl +@dirrmtry etc/cups/ppd @dirrmtry etc/cups/interfaces -@dirrmtry etc/cups/ppd -@dirrmtry etc/cups/ssl @dirrmtry etc/cups Index: /usr/ports/print/cups-base/pkg-plist.client =================================================================== --- /usr/ports/print/cups-base/pkg-plist.client (revision 344629) +++ /usr/ports/print/cups-base/pkg-plist.client (working copy) @@ -9,6 +9,8 @@ include/cups/ipp.h include/cups/language.h include/cups/ppd.h +include/cups/pwg.h +include/cups/raster.h include/cups/sidechannel.h include/cups/transcode.h include/cups/versioning.h Index: /usr/ports/print/cups-base/pkg-plist.image =================================================================== --- /usr/ports/print/cups-base/pkg-plist.image (revision 344629) +++ /usr/ports/print/cups-base/pkg-plist.image (working copy) @@ -1,12 +1,7 @@ -include/cups/image.h -include/cups/raster.h lib/libcupsimage.so lib/libcupsimage.so.2 -libexec/cups/filter/bannertops libexec/cups/filter/commandtops libexec/cups/filter/gziptoany -libexec/cups/filter/imagetops -libexec/cups/filter/imagetoraster libexec/cups/filter/pstops libexec/cups/filter/rastertodymo libexec/cups/filter/rastertoepson @@ -13,6 +8,5 @@ libexec/cups/filter/rastertohp libexec/cups/filter/rastertolabel libexec/cups/filter/rastertopwg -libexec/cups/filter/texttops -@dirrm libexec/cups/filter -@dirrm libexec/cups +@dirrmtry libexec/cups/filter +@dirrmtry libexec/cups Index: /usr/ports/print/cups-filters/Makefile =================================================================== --- /usr/ports/print/cups-filters/Makefile (revision 0) +++ /usr/ports/print/cups-filters/Makefile (working copy) @@ -0,0 +1,50 @@ +# $FreeBSD$ + +PORTNAME= cups-filters +PORTVERSION= 1.0.42 +CATEGORIES= print +MASTER_SITES= http://www.openprinting.org/download/cups-filters/ + +MAINTAINER= ports@FreeBSD.org +COMMENT= Backends, filters and other software (was part of the core CUPS) + +LIB_DEPENDS= libjpeg.so:${PORTSDIR}/graphics/jpeg \ + libtiff.so:${PORTSDIR}/graphics/tiff \ + libpng15.so:${PORTSDIR}/graphics/png \ + libijs.so:${PORTSDIR}/print/libijs \ + liblcms2.so:${PORTSDIR}/graphics/lcms2 \ + libqpdf.so:${PORTSDIR}/print/qpdf \ + libdbus-1.so:${PORTSDIR}/devel/dbus \ + libcups.so:${PORTSDIR}/print/cups-client \ + libfreetype.so:${PORTSDIR}/print/freetype2 \ + libfontconfig.so:${PORTSDIR}/x11-fonts/fontconfig \ + libpoppler.so:${PORTSDIR}/graphics/poppler + +USES= compiler:c++11-lib pathfix pkgconfig +USE_GNOME= glib20 +USE_GHOSTSCRIPT=yes +USE_XZ= yes +GNU_CONFIGURE= yes +CUPS_SOCKET= /var/run/cups.sock +CONFIGURE_ARGS= --with-domainsocket=${CUPS_SOCKET} +CONFIGURE_ENV= ZLIB_CFLAGS="-I/usr/include" ZLIB_LIBS="-lz" \ + LIBQPDF_CFLAGS="-I/usr/local/include" LIBQPDF_LIBS="-lqpdf" + +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib +USE_LDCONFIG= yes + +OPTIONS_DEFINE= AVAHI +OPTIONS_DEFAULT= AVAHI + +AVAHI_CONFIGURE_ENABLE= avahi +AVAHI_LIB_DEPENDS= libavahi-client.so:${PORTSDIR}/net/avahi-app + +post-patch: + @${REINPLACE_CMD} 's:-std=c++0x:-std=c++11:' ${WRKSRC}/Makefile.in + +post-install: + @${RM} -rf ${STAGEDIR}${PREFIX}/libexec/cups/filter/foomatic-rip \ + ${STAGEDIR}${PREFIX}/man/man1/foomatic-rip.1 + +.include Property changes on: /usr/ports/print/cups-filters/Makefile ___________________________________________________________________ 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 Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Index: /usr/ports/print/cups-filters/distinfo =================================================================== --- /usr/ports/print/cups-filters/distinfo (revision 0) +++ /usr/ports/print/cups-filters/distinfo (working copy) @@ -0,0 +1,2 @@ +SHA256 (cups-filters-1.0.42.tar.xz) = 3df524207ab24472430cffba7f01407b8adc094ec40094c5f6682d5a88a70dd6 +SIZE (cups-filters-1.0.42.tar.xz) = 1097860 Property changes on: /usr/ports/print/cups-filters/distinfo ___________________________________________________________________ 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: /usr/ports/print/cups-filters/files/patch-utils_cups-browsed.c =================================================================== --- /usr/ports/print/cups-filters/files/patch-utils_cups-browsed.c (revision 0) +++ /usr/ports/print/cups-filters/files/patch-utils_cups-browsed.c (working copy) @@ -0,0 +1,18 @@ +--- utils/cups-browsed.c.orig 2013-12-27 20:45:55.188455147 +0400 ++++ utils/cups-browsed.c 2013-12-27 20:46:23.397446686 +0400 +@@ -23,7 +23,6 @@ + + #include + #include +-#include + #if defined(__OpenBSD__) + #include + #endif /* __OpenBSD__ */ +@@ -33,6 +32,7 @@ + #include + #include + #include ++#include + #include + #include + #include Property changes on: /usr/ports/print/cups-filters/files/patch-utils_cups-browsed.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 Index: /usr/ports/print/cups-filters/pkg-descr =================================================================== --- /usr/ports/print/cups-filters/pkg-descr (revision 0) +++ /usr/ports/print/cups-filters/pkg-descr (working copy) @@ -0,0 +1,5 @@ +The CUPS Filters package contains backends, filters and other +software that was once part of the core CUPS distribution but is +no longer maintained by Apple Inc. + +WWW: http://www.linuxfromscratch.org/blfs/view/svn/pst/cups-filters.html Property changes on: /usr/ports/print/cups-filters/pkg-descr ___________________________________________________________________ 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: /usr/ports/print/cups-filters/pkg-plist =================================================================== --- /usr/ports/print/cups-filters/pkg-plist (revision 0) +++ /usr/ports/print/cups-filters/pkg-plist (working copy) @@ -0,0 +1,95 @@ +bin/ttfread +etc/cups/cups-browsed.conf +etc/fonts/conf.d/99pdftoopvp.conf +include/cupsfilters/colord.h +include/cupsfilters/driver.h +include/cupsfilters/image.h +include/cupsfilters/raster.h +include/fontembed/bitset.h +include/fontembed/embed.h +include/fontembed/fontfile.h +include/fontembed/iofn.h +include/fontembed/sfnt.h +lib/libcupsfilters.a +lib/libcupsfilters.la +lib/libcupsfilters.so +lib/libcupsfilters.so.1 +lib/libfontembed.a +lib/libfontembed.la +lib/libfontembed.so +lib/libfontembed.so.1 +libdata/pkgconfig/libcupsfilters.pc +libdata/pkgconfig/libfontembed.pc +libexec/cups/backend/parallel +libexec/cups/backend/serial +libexec/cups/filter/bannertopdf +libexec/cups/filter/commandtoescpx +libexec/cups/filter/commandtopclx +libexec/cups/filter/gstopxl +libexec/cups/filter/gstoraster +libexec/cups/filter/imagetopdf +libexec/cups/filter/imagetops +libexec/cups/filter/imagetoraster +libexec/cups/filter/pdftoijs +libexec/cups/filter/pdftoippprinter +libexec/cups/filter/pdftoopvp +libexec/cups/filter/pdftopdf +libexec/cups/filter/pdftops +libexec/cups/filter/pdftoraster +libexec/cups/filter/pstopdf +libexec/cups/filter/rastertoescpx +libexec/cups/filter/rastertopclx +libexec/cups/filter/textonly +libexec/cups/filter/texttopdf +libexec/cups/filter/texttops +libexec/cups/filter/urftopdf +man/man5/cups-browsed.conf.5.gz +man/man8/cups-browsed.8.gz +sbin/cups-browsed +share/cups/banners/classified +share/cups/banners/confidential +share/cups/banners/secret +share/cups/banners/standard +share/cups/banners/topsecret +share/cups/banners/unclassified +share/cups/charsets/pdf.utf-8 +share/cups/charsets/pdf.utf-8.heavy +share/cups/charsets/pdf.utf-8.simple +share/cups/data/default-testpage.pdf +share/cups/data/default.pdf +share/cups/data/testprint +share/cups/drv/cupsfilters.drv +share/cups/mime/cupsfilters.convs +share/cups/mime/cupsfilters.types +share/cups/ppdc/escp.h +share/cups/ppdc/pcl.h +%%PORTDOCS%%%%DOCSDIR%%/AUTHORS +%%PORTDOCS%%%%DOCSDIR%%/COPYING +%%PORTDOCS%%%%DOCSDIR%%/INSTALL +%%PORTDOCS%%%%DOCSDIR%%/NEWS +%%PORTDOCS%%%%DOCSDIR%%/README +share/ppd/cupsfilters/Generic-PDF_Printer-PDF.ppd +share/ppd/cupsfilters/HP-Color_LaserJet_CM3530_MFP-PDF.ppd +share/ppd/cupsfilters/HP-PhotoSmart_Pro_B8300-hpijs-pdftoijs.ppd +share/ppd/cupsfilters/pxlcolor.ppd +share/ppd/cupsfilters/pxlmono.ppd +share/ppd/cupsfilters/textonly.ppd +@dirrmtry share/ppd/cupsfilters +@dirrmtry share/ppd +%%PORTDOCS%%@dirrm %%DOCSDIR%% +@dirrmtry share/cups/ppdc +@dirrmtry share/cups/mime +@dirrmtry share/cups/drv +@dirrmtry share/cups/data +@dirrmtry share/cups/charsets +@dirrmtry share/cups/banners +@dirrmtry share/cups +@dirrmtry libexec/cups/filter +@dirrmtry libexec/cups/backend +@dirrmtry libexec/cups +@dirrmtry libdata/pkgconfig +@dirrmtry include/fontembed +@dirrmtry include/cupsfilters +@dirrmtry etc/fonts/conf.d +@dirrmtry etc/fonts +@dirrmtry etc/cups Property changes on: /usr/ports/print/cups-filters/pkg-plist ___________________________________________________________________ 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 Sun Feb 16 21:00:13 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C64E7998; Sun, 16 Feb 2014 21:00:13 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9A5821E13; Sun, 16 Feb 2014 21:00: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 s1GL0Dqx026282; Sun, 16 Feb 2014 21:00:13 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1GL0DqT026281; Sun, 16 Feb 2014 21:00:13 GMT (envelope-from edwin) Date: Sun, 16 Feb 2014 21:00:13 GMT Message-Id: <201402162100.s1GL0DqT026281@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186824: [patch] print/cups* ports: update to 1.7.0 and more X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 21:00:13 -0000 Synopsis: [patch] print/cups* ports: update to 1.7.0 and more Class-Changed-From-To: update->maintainer-update Class-Changed-By: edwin Class-Changed-When: Sun Feb 16 21:00:13 UTC 2014 Class-Changed-Why: Fix category (submitter is maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186824 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 21:00:15 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9229D99A; Sun, 16 Feb 2014 21:00:15 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6545A1E14; Sun, 16 Feb 2014 21: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 s1GL0FXP026365; Sun, 16 Feb 2014 21:00:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1GL0F9W026364; Sun, 16 Feb 2014 21:00:15 GMT (envelope-from edwin) Date: Sun, 16 Feb 2014 21:00:15 GMT Message-Id: <201402162100.s1GL0F9W026364@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, bsam@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186824: [patch] print/cups* ports: update to 1.7.0 and more X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 21:00:15 -0000 Synopsis: [patch] print/cups* ports: update to 1.7.0 and more Responsible-Changed-From-To: freebsd-ports-bugs->bsam Responsible-Changed-By: edwin Responsible-Changed-When: Sun Feb 16 21:00:15 UTC 2014 Responsible-Changed-Why: Submitter is maintainer and has GNATS access (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186824 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 21:20:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 595CDDCF; Sun, 16 Feb 2014 21:20:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2B7F91038; Sun, 16 Feb 2014 21: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 s1GLK1MB033461; Sun, 16 Feb 2014 21:20:01 GMT (envelope-from bsam@freefall.freebsd.org) Received: (from bsam@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1GLK1i7033460; Sun, 16 Feb 2014 21:20:01 GMT (envelope-from bsam) Date: Sun, 16 Feb 2014 21:20:01 GMT Message-Id: <201402162120.s1GLK1i7033460@freefall.freebsd.org> To: bsam@FreeBSD.org, bsam@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bsam@FreeBSD.org Subject: Re: ports/186400: print/cups-base LIBUSB=off option has no effect X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 21:20:01 -0000 Synopsis: print/cups-base LIBUSB=off option has no effect Responsible-Changed-From-To: bsam->freebsd-ports-bugs Responsible-Changed-By: bsam Responsible-Changed-When: Sun Feb 16 21:20:00 UTC 2014 Responsible-Changed-Why: I do t maintain the port any more. http://www.freebsd.org/cgi/query-pr.cgi?pr=186400 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 21:20:03 2014 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 ESMTPS id 06F8ADD1; Sun, 16 Feb 2014 21:20:03 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D09761039; Sun, 16 Feb 2014 21: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 s1GLK2FF033532; Sun, 16 Feb 2014 21:20:02 GMT (envelope-from bsam@freefall.freebsd.org) Received: (from bsam@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1GLK2AH033531; Sun, 16 Feb 2014 21:20:02 GMT (envelope-from bsam) Date: Sun, 16 Feb 2014 21:20:02 GMT Message-Id: <201402162120.s1GLK2AH033531@freefall.freebsd.org> To: bsam@FreeBSD.org, bsam@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bsam@FreeBSD.org Subject: Re: ports/186075: install error in print/foo2zjs X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 21:20:03 -0000 Synopsis: install error in print/foo2zjs Responsible-Changed-From-To: bsam->freebsd-ports-bugs Responsible-Changed-By: bsam Responsible-Changed-When: Sun Feb 16 21:20:02 UTC 2014 Responsible-Changed-Why: I do t maintain the port any more. http://www.freebsd.org/cgi/query-pr.cgi?pr=186075 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 21:20:06 2014 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 ESMTPS id 452B8DD9; Sun, 16 Feb 2014 21:20:06 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1A22410BA; Sun, 16 Feb 2014 21:20: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 s1GLK5D8033668; Sun, 16 Feb 2014 21:20:05 GMT (envelope-from bsam@freefall.freebsd.org) Received: (from bsam@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1GLK59c033667; Sun, 16 Feb 2014 21:20:05 GMT (envelope-from bsam) Date: Sun, 16 Feb 2014 21:20:05 GMT Message-Id: <201402162120.s1GLK59c033667@freefall.freebsd.org> To: bsam@FreeBSD.org, bsam@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bsam@FreeBSD.org Subject: Re: ports/186019: print/foo2zjs: fix dependency on libcups X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 21:20:06 -0000 Synopsis: print/foo2zjs: fix dependency on libcups Responsible-Changed-From-To: bsam->freebsd-ports-bugs Responsible-Changed-By: bsam Responsible-Changed-When: Sun Feb 16 21:20:05 UTC 2014 Responsible-Changed-Why: I do t maintain the port any more. http://www.freebsd.org/cgi/query-pr.cgi?pr=186019 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 21:20:04 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 999FDDD7; Sun, 16 Feb 2014 21:20:04 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6E82C105A; Sun, 16 Feb 2014 21:20: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 s1GLK463033599; Sun, 16 Feb 2014 21:20:04 GMT (envelope-from bsam@freefall.freebsd.org) Received: (from bsam@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1GLK4wN033598; Sun, 16 Feb 2014 21:20:04 GMT (envelope-from bsam) Date: Sun, 16 Feb 2014 21:20:04 GMT Message-Id: <201402162120.s1GLK4wN033598@freefall.freebsd.org> To: bsam@FreeBSD.org, bsam@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bsam@FreeBSD.org Subject: Re: ports/186050: print/cups: cups-genppd.5.2 needs a symlink X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 21:20:04 -0000 Synopsis: print/cups: cups-genppd.5.2 needs a symlink Responsible-Changed-From-To: bsam->freebsd-ports-bugs Responsible-Changed-By: bsam Responsible-Changed-When: Sun Feb 16 21:20:04 UTC 2014 Responsible-Changed-Why: I do t maintain the port any more. http://www.freebsd.org/cgi/query-pr.cgi?pr=186050 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 21:20:07 2014 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 ESMTPS id D4414E07; Sun, 16 Feb 2014 21:20:07 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AA58E10BB; Sun, 16 Feb 2014 21:20: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 s1GLK7Kb033735; Sun, 16 Feb 2014 21:20:07 GMT (envelope-from bsam@freefall.freebsd.org) Received: (from bsam@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1GLK7CS033734; Sun, 16 Feb 2014 21:20:07 GMT (envelope-from bsam) Date: Sun, 16 Feb 2014 21:20:07 GMT Message-Id: <201402162120.s1GLK7CS033734@freefall.freebsd.org> To: c.petrik.sosa@gmail.com, bsam@FreeBSD.org, bsam@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bsam@FreeBSD.org Subject: Re: ports/181248: [PATCH] print/cups-base Disable INSTALLS_ICONS for non-X11 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 21:20:07 -0000 Synopsis: [PATCH] print/cups-base Disable INSTALLS_ICONS for non-X11 Responsible-Changed-From-To: bsam->freebsd-ports-bugs Responsible-Changed-By: bsam Responsible-Changed-When: Sun Feb 16 21:20:07 UTC 2014 Responsible-Changed-Why: I do t maintain the port any more. http://www.freebsd.org/cgi/query-pr.cgi?pr=181248 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 21:20:58 2014 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 ESMTPS id 7238AECD; Sun, 16 Feb 2014 21:20:58 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 435CC10D1; Sun, 16 Feb 2014 21:20: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 s1GLKwLI033852; Sun, 16 Feb 2014 21:20:58 GMT (envelope-from bsam@freefall.freebsd.org) Received: (from bsam@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1GLKt5s033851; Sun, 16 Feb 2014 21:20:55 GMT (envelope-from bsam) Date: Sun, 16 Feb 2014 21:20:55 GMT Message-Id: <201402162120.s1GLKt5s033851@freefall.freebsd.org> To: freebsd@chillt.de, hselasky@c2i.net, nox@jelal.kn-bremen.de, bsam@FreeBSD.org, bsam@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bsam@FreeBSD.org Subject: Re: ports/175876: [new port] revive port x11-drivers/xf86-input-wacom: split from input-wacom X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 21:20:58 -0000 Synopsis: [new port] revive port x11-drivers/xf86-input-wacom: split from input-wacom Responsible-Changed-From-To: bsam->freebsd-ports-bugs Responsible-Changed-By: bsam Responsible-Changed-When: Sun Feb 16 21:20:55 UTC 2014 Responsible-Changed-Why: I do not have the hardware any more. http://www.freebsd.org/cgi/query-pr.cgi?pr=175876 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 21:49:23 2014 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 ESMTPS id E2085185; Sun, 16 Feb 2014 21:49:23 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B2087123F; Sun, 16 Feb 2014 21:49: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 s1GLnNwL042817; Sun, 16 Feb 2014 21:49:23 GMT (envelope-from thierry@freefall.freebsd.org) Received: (from thierry@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1GLnMMe042816; Sun, 16 Feb 2014 21:49:22 GMT (envelope-from thierry) Date: Sun, 16 Feb 2014 21:49:22 GMT Message-Id: <201402162149.s1GLnMMe042816@freefall.freebsd.org> To: mexas@bris.ac.uk, thierry@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: thierry@FreeBSD.org Subject: Re: ports/185126: cad/tochnog build failure: ia64: /usr/local/lib/libblas.so: could not read symbols: File in wrong format X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 21:49:24 -0000 Synopsis: cad/tochnog build failure: ia64: /usr/local/lib/libblas.so: could not read symbols: File in wrong format State-Changed-From-To: feedback->open State-Changed-By: thierry State-Changed-When: dim 16 fév 2014 21:47:23 UTC State-Changed-Why: Feedback received. Unfortunately I have no clue about this error! http://www.freebsd.org/cgi/query-pr.cgi?pr=185126 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 22:40:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B0EF0BC6 for ; Sun, 16 Feb 2014 22:40:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8BD3C15A9 for ; Sun, 16 Feb 2014 22: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 s1GMe0mI059319 for ; Sun, 16 Feb 2014 22:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1GMe0le059318; Sun, 16 Feb 2014 22:40:00 GMT (envelope-from gnats) Resent-Date: Sun, 16 Feb 2014 22:40:00 GMT Resent-Message-Id: <201402162240.s1GMe0le059318@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, Rick Dicaire Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 59858B9D for ; Sun, 16 Feb 2014 22:35:25 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2B8291595 for ; Sun, 16 Feb 2014 22:35:25 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1GMZOKt050227 for ; Sun, 16 Feb 2014 22:35:24 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1GMZOuM050222; Sun, 16 Feb 2014 22:35:24 GMT (envelope-from nobody) Message-Id: <201402162235.s1GMZOuM050222@cgiserv.freebsd.org> Date: Sun, 16 Feb 2014 22:35:24 GMT From: Rick Dicaire To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186825: weechat build fails X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 22:40:00 -0000 >Number: 186825 >Category: ports >Synopsis: weechat build fails >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 Feb 16 22:40:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Rick Dicaire >Release: 8.4-RELEASE-p7 >Organization: >Environment: FreeBSD ws.int.kritek.net 8.4-RELEASE-p7 FreeBSD 8.4-RELEASE-p7 #13 r261383: Sat Feb 1 20:38:23 EST 2014 root@ws.int.kritek.net:/usr/obj/usr/src/sys/WS amd64 >Description: Latest weechat ports update fails to compile: ..SNIP... Scanning dependencies of target weechat [ 95%] Building C object src/gui/curses/CMakeFiles/weechat.dir/gui-curses-bar-window.o [ 95%] Building C object src/gui/curses/CMakeFiles/weechat.dir/gui-curses-chat.o [ 96%] Building C object src/gui/curses/CMakeFiles/weechat.dir/gui-curses-color.o [ 97%] Building C object src/gui/curses/CMakeFiles/weechat.dir/gui-curses-key.o [ 97%] Building C object src/gui/curses/CMakeFiles/weechat.dir/gui-curses-main.o [ 98%] Building C object src/gui/curses/CMakeFiles/weechat.dir/gui-curses-mouse.o [100%] Building C object src/gui/curses/CMakeFiles/weechat.dir/gui-curses-term.o [100%] Building C object src/gui/curses/CMakeFiles/weechat.dir/gui-curses-window.o Linking C executable weechat /usr/bin/ld:/usr/local/lib/libncursesw.so: file format not recognized; treating as linker script /usr/bin/ld:/usr/local/lib/libncursesw.so:1: syntax error *** Error code 1 Stop in /usr/ports/irc/weechat/work/weechat-0.4.3. *** Error code 1 Stop in /usr/ports/irc/weechat/work/weechat-0.4.3. *** Error code 1 Stop in /usr/ports/irc/weechat/work/weechat-0.4.3. *** Error code 1 Stop in /usr/ports/irc/weechat. *** Error code 1 Stop in /usr/ports/irc/weechat. ===>>> make failed for irc/weechat ===>>> Aborting update ===>>> Killing background jobs Terminated ===>>> You can restart from the point of failure with this command line: portmaster irc/weechat ===>>> Exiting ls -l /usr/local/lib/libncurses* -r--r--r-- 1 root wheel 174870 Dec 29 18:32 /usr/local/lib/libncurses++.a -r--r--r-- 1 root wheel 174870 Dec 29 18:32 /usr/local/lib/libncurses++w.a -r--r--r-- 1 root wheel 289606 Dec 29 18:32 /usr/local/lib/libncurses.a -rw-r--r-- 1 root wheel 42 Dec 29 18:32 /usr/local/lib/libncurses.so lrwxr-xr-x 1 root wheel 17 Dec 29 18:32 /usr/local/lib/libncurses.so.5 -> libncurses.so.5.9 -rwxr-xr-x 1 root wheel 146723 Dec 29 18:32 /usr/local/lib/libncurses.so.5.9 -r--r--r-- 1 root wheel 388716 Dec 29 18:32 /usr/local/lib/libncursesw.a -rw-r--r-- 1 root wheel 44 Dec 29 18:32 /usr/local/lib/libncursesw.so lrwxr-xr-x 1 root wheel 18 Dec 29 18:32 /usr/local/lib/libncursesw.so.5 -> libncursesw.so.5.9 -rwxr-xr-x 1 root wheel 207006 Dec 29 18:32 /usr/local/lib/libncursesw.so.5.9 cat /usr/local/lib/libncurses.so INPUT(libncurses.so.5 AS_NEEDED(-ltinfo)) cat /usr/local/lib/libncursesw.so INPUT(libncursesw.so.5 AS_NEEDED(-ltinfow)) >How-To-Repeat: portmaster -g irc/weechat >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 23:29:09 2014 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 ESMTPS id 1D7AE5D7; Sun, 16 Feb 2014 23:29:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E45CA1893; Sun, 16 Feb 2014 23:29: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 s1GNT83Q075540; Sun, 16 Feb 2014 23:29:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1GNT8Om075539; Sun, 16 Feb 2014 23:29:08 GMT (envelope-from edwin) Date: Sun, 16 Feb 2014 23:29:08 GMT Message-Id: <201402162329.s1GNT8Om075539@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jase@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186825: irc/weechat build fails X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 23:29:09 -0000 Synopsis: irc/weechat build fails Responsible-Changed-From-To: freebsd-ports-bugs->jase Responsible-Changed-By: edwin Responsible-Changed-When: Sun Feb 16 23:29:08 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186825 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 23:31:37 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C27C663D; Sun, 16 Feb 2014 23:31:37 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 96347190E; Sun, 16 Feb 2014 23:31: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 s1GNVb1n078312; Sun, 16 Feb 2014 23:31:37 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1GNVamh078311; Sun, 16 Feb 2014 23:31:36 GMT (envelope-from linimon) Date: Sun, 16 Feb 2014 23:31:36 GMT Message-Id: <201402162331.s1GNVamh078311@freefall.freebsd.org> To: xmj@chaot.net, linimon@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/186813: [NEW PORTS, UPDATE] Add CentOS 6.5 userland ports X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 23:31:37 -0000 Synopsis: [NEW PORTS, UPDATE] Add CentOS 6.5 userland ports State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Sun Feb 16 23:31:08 UTC 2014 State-Changed-Why: see ports/186820. Responsible-Changed-From-To: gnats-admin->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Sun Feb 16 23:31:08 UTC 2014 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=186813 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 23:33:38 2014 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 ESMTPS id 2585C699; Sun, 16 Feb 2014 23:33:38 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EC4381926; Sun, 16 Feb 2014 23:33: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 s1GNXbhR078545; Sun, 16 Feb 2014 23:33:37 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1GNXbRH078544; Sun, 16 Feb 2014 23:33:37 GMT (envelope-from edwin) Date: Sun, 16 Feb 2014 23:33:37 GMT Message-Id: <201402162333.s1GNXbRH078544@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vbox@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186808: emulators/virtualbox-ose VNC option doesn't support port ranges for "Remote Desktop Server Port" in Display, Remote Display X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 23:33:38 -0000 Synopsis: emulators/virtualbox-ose VNC option doesn't support port ranges for "Remote Desktop Server Port" in Display, Remote Display Responsible-Changed-From-To: freebsd-ports-bugs->vbox Responsible-Changed-By: edwin Responsible-Changed-When: Sun Feb 16 23:33:37 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186808 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 23:33:56 2014 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 ESMTPS id 02A2F6D2; Sun, 16 Feb 2014 23:33:56 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CA9A4192C; Sun, 16 Feb 2014 23:33: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 s1GNXtHM078685; Sun, 16 Feb 2014 23:33:55 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1GNXtvd078684; Sun, 16 Feb 2014 23:33:55 GMT (envelope-from edwin) Date: Sun, 16 Feb 2014 23:33:55 GMT Message-Id: <201402162333.s1GNXtvd078684@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vbox@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186804: emulators/virtualbox-ose with VNC enabled crashes if Remote Display is turned on after the VM starts X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 23:33:56 -0000 Synopsis: emulators/virtualbox-ose with VNC enabled crashes if Remote Display is turned on after the VM starts Responsible-Changed-From-To: freebsd-ports-bugs->vbox Responsible-Changed-By: edwin Responsible-Changed-When: Sun Feb 16 23:33:55 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186804 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 23:35:11 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 82576715; Sun, 16 Feb 2014 23:35:11 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 550891935; Sun, 16 Feb 2014 23:35: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 s1GNZBQK078786; Sun, 16 Feb 2014 23:35:11 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1GNZBc9078785; Sun, 16 Feb 2014 23:35:11 GMT (envelope-from linimon) Date: Sun, 16 Feb 2014 23:35:11 GMT Message-Id: <201402162335.s1GNZBc9078785@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-x11@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/186805: [x11] Excise some vestigial XFree86 references X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 23:35:11 -0000 Synopsis: [x11] Excise some vestigial XFree86 references Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-x11 Responsible-Changed-By: linimon Responsible-Changed-When: Sun Feb 16 23:34:58 UTC 2014 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=186805 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 23:36:14 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EF80C77D; Sun, 16 Feb 2014 23:36:14 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C2A191940; Sun, 16 Feb 2014 23:36: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 s1GNaEVM078865; Sun, 16 Feb 2014 23:36:14 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1GNaEUw078864; Sun, 16 Feb 2014 23:36:14 GMT (envelope-from linimon) Date: Sun, 16 Feb 2014 23:36:14 GMT Message-Id: <201402162336.s1GNaEUw078864@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-doc@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: docs/186663: [handbook] mention old xorg in handbook X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 23:36:15 -0000 Old Synopsis: Old xorg installed and not running New Synopsis: [handbook] mention old xorg in handbook Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-doc Responsible-Changed-By: linimon Responsible-Changed-When: Sun Feb 16 23:35:42 UTC 2014 Responsible-Changed-Why: reclassify. http://www.freebsd.org/cgi/query-pr.cgi?pr=186663 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 23:38:44 2014 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 ESMTPS id 601A78B4; Sun, 16 Feb 2014 23:38:44 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3369B1963; Sun, 16 Feb 2014 23:38: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 s1GNciMQ079020; Sun, 16 Feb 2014 23:38:44 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1GNchoj079019; Sun, 16 Feb 2014 23:38:43 GMT (envelope-from linimon) Date: Sun, 16 Feb 2014 23:38:43 GMT Message-Id: <201402162338.s1GNchoj079019@freefall.freebsd.org> To: dburklan@me.com, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, timur@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/186575: net/samba41: Start of Samba results in "nss_ldap: could not search LDAP server" errors X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 23:38:44 -0000 Synopsis: net/samba41: Start of Samba results in "nss_ldap: could not search LDAP server" errors State-Changed-From-To: feedback->open State-Changed-By: linimon State-Changed-When: Sun Feb 16 23:38:03 UTC 2014 State-Changed-Why: feedback received. Responsible-Changed-From-To: freebsd-ports-bugs->timur Responsible-Changed-By: linimon Responsible-Changed-When: Sun Feb 16 23:38:03 UTC 2014 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=186575 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 23:45:28 2014 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 ESMTPS id DE5AD940; Sun, 16 Feb 2014 23:45:28 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AF0A619F2; Sun, 16 Feb 2014 23:45: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 s1GNjShA082064; Sun, 16 Feb 2014 23:45:28 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1GNjSrh082063; Sun, 16 Feb 2014 23:45:28 GMT (envelope-from edwin) Date: Sun, 16 Feb 2014 23:45:28 GMT Message-Id: <201402162345.s1GNjSrh082063@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, tj@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186807: error in databases/py-MySQLdb X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 23:45:28 -0000 Synopsis: error in databases/py-MySQLdb Responsible-Changed-From-To: freebsd-ports-bugs->tj Responsible-Changed-By: edwin Responsible-Changed-When: Sun Feb 16 23:45:28 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186807 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 23:45:23 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EF4F793B; Sun, 16 Feb 2014 23:45:23 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BFD8E19ED; Sun, 16 Feb 2014 23:45: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 s1GNjNQc081959; Sun, 16 Feb 2014 23:45:23 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1GNjNkc081958; Sun, 16 Feb 2014 23:45:23 GMT (envelope-from linimon) Date: Sun, 16 Feb 2014 23:45:23 GMT Message-Id: <201402162345.s1GNjNkc081958@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-amd64@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/186807: error in databases/py-MySQLdb X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 23:45:24 -0000 Old Synopsis: error in py-MySQLdb New Synopsis: error in databases/py-MySQLdb Responsible-Changed-From-To: freebsd-amd64->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Sun Feb 16 23:45:05 UTC 2014 Responsible-Changed-Why: ports PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=186807 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 16 23:54:28 2014 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 ESMTPS id 0F4FFAD9; Sun, 16 Feb 2014 23:54:28 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D5B911A8A; Sun, 16 Feb 2014 23:54: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 s1GNsRWi085247; Sun, 16 Feb 2014 23:54:27 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1GNsRPp085246; Sun, 16 Feb 2014 23:54:27 GMT (envelope-from linimon) Date: Sun, 16 Feb 2014 23:54:27 GMT Message-Id: <201402162354.s1GNsRPp085246@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-amd64@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/186624: science/avogadro 1.1.1_1 error code 1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 23:54:28 -0000 Old Synopsis: Avogadro 1.1.1_1 error code 1 New Synopsis: science/avogadro 1.1.1_1 error code 1 Responsible-Changed-From-To: freebsd-amd64->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Sun Feb 16 23:54:02 UTC 2014 Responsible-Changed-Why: ports PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=186624 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 17 02:00:01 2014 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 ESMTPS id 8CDDDC22 for ; Mon, 17 Feb 2014 02:00:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6C4C61339 for ; Mon, 17 Feb 2014 02: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 s1H201Xw041326 for ; Mon, 17 Feb 2014 02:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1H201Rp041325; Mon, 17 Feb 2014 02:00:01 GMT (envelope-from gnats) Date: Mon, 17 Feb 2014 02:00:01 GMT Message-Id: <201402170200.s1H201Rp041325@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Ryan Frederick Subject: Re: ports/184011: Patch for Preliminary pkgng Support in net-mgmt/nagios-check_ports X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 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: Mon, 17 Feb 2014 02:00:01 -0000 The following reply was made to PR ports/184011; it has been noted by GNATS. From: Ryan Frederick To: bug-followup@FreeBSD.org, ryanrfrederick@gmail.com Cc: Subject: Re: ports/184011: Patch for Preliminary pkgng Support in net-mgmt/nagios-check_ports Date: Sun, 16 Feb 2014 19:56:06 -0600 This is a multi-part message in MIME format. --------------020205030700040805070109 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit I found a bug in the original patch. Attached is an updated patch. --------------020205030700040805070109 Content-Type: text/plain; charset=UTF-8; name="patch-nagios-check_ports.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="patch-nagios-check_ports.txt" diff -ruN nagios-check_ports.old/Makefile nagios-check_ports/Makefile --- nagios-check_ports.old/Makefile 2013-09-20 17:24:43.000000000 -0500 +++ nagios-check_ports/Makefile 2013-11-15 13:39:10.552788000 -0600 @@ -11,13 +11,15 @@ MAINTAINER= freebsd@troback.com COMMENT= Nagios Plugin to monitor your FreeBSD Ports -RUN_DEPENDS= portaudit:${PORTSDIR}/ports-mgmt/portaudit - NO_BUILD= yes - NO_STAGE= yes + .include +.if ${OSVERSION} < 1000000 +RUN_DEPENDS= portaudit:${PORTSDIR}/ports-mgmt/portaudit +.endif + do-install: @${MKDIR} ${PREFIX}/libexec/nagios ${INSTALL_SCRIPT} ${WRKSRC}/check_ports ${PREFIX}/libexec/nagios/ diff -ruN nagios-check_ports.old/files/patch-check_ports nagios-check_ports/files/patch-check_ports --- nagios-check_ports.old/files/patch-check_ports 2012-07-14 09:29:18.000000000 -0500 +++ nagios-check_ports/files/patch-check_ports 2013-11-15 15:26:14.322618000 -0600 @@ -1,11 +1,12 @@ ---- check_ports 2011-08-23 07:01:14.000000000 +0000 -+++ check_ports 2011-08-24 02:32:14.000000000 +0000 -@@ -30,20 +30,15 @@ +--- check_ports 2009-03-10 03:46:27.000000000 -0500 ++++ check_ports 2013-11-15 15:12:09.554760492 -0600 +@@ -30,20 +30,16 @@ # # please change locations appropriate -PORTAUDIT=/usr/local/sbin/portaudit PKG_VERSION=/usr/sbin/pkg_version ++PKG=/usr/sbin/pkg JEXEC=/usr/sbin/jexec JLS=/usr/sbin/jls -PORTDIR=/usr/ports @@ -22,7 +23,15 @@ VERSION=0.6.1 DATE="10 Mar 2009" PROJECTURL=http://code.adminlife.net/check_ports -@@ -68,7 +63,7 @@ +@@ -56,6 +52,7 @@ + PORTSAGE=0 + UPDATES=0 + PKGVERSION_OPTS="-Ivl "\<"" ++PKG_OPTS="version -Ivl "\<"" + + ###### functions ###### + +@@ -68,7 +65,7 @@ # print help msg and exit print_help() { @@ -31,23 +40,119 @@ printf "options:\n" printf " -h\t\tshow this help message and exit.\n\n" printf " -a\t\tshows if any updates are available.\n" -@@ -82,7 +77,9 @@ +@@ -82,7 +79,12 @@ printf " \t\tHighly recommended before first run.\n\n" printf " -u \t\trun check_ports in unprivileged mode.\n" printf " \t\tMuch slower but more secure.\n\n" - printf " -v\t\tshow version number.\n" + printf " -v\t\tshow version number.\n\n" + printf " -I \tPath to INDEX file.\n\n" -+ printf " -P \tPath to portaudit.\n" ++ if [ ${RELEASE} -lt 10] ++ then ++ printf " -P \tPath to portaudit.\n" ++ fi exit 0 } -@@ -254,13 +251,13 @@ +@@ -128,6 +130,16 @@ + fi + } + ++# pkg accessible? ++check_pkg() { ++ if [ -x ${PKG} ] ++ then ++ return 0 ++ else ++ return 1 ++ fi ++} ++ + # jexec accessible? + check_jexec() { + if [ -x ${JEXEC} ] +@@ -172,21 +184,42 @@ + printf " OK: Your operating system is FreeBSD, main release ${RELEASE}.\n" + fi + +- check_portaudit +- if [ $? -eq 1 ] ++ if [ ${RELEASE} -lt 10 ] + then +- printf " ERROR: portaudit not found!\n" +- else +- printf " OK: portaudit found at ${PORTAUDIT}\n" +- fi ++ check_portaudit ++ if [ $? -eq 1 ] ++ then ++ printf " ERROR: portaudit not found!\n" ++ else ++ printf " OK: portaudit found at ${PORTAUDIT}\n" ++ fi + +- check_pkg_version +- if [ $? -eq 1 ] +- then +- printf " ERROR: pkg_version not found at ${PKG_VERSION}.\n" +- printf " Update information will not be available!\n" ++ check_pkg_version ++ if [ $? -eq 1 ] ++ then ++ printf " ERROR: pkg_version not found at ${PKG_VERSION}.\n" ++ printf " Update information will not be available!\n" ++ else ++ printf " OK: pkg_version found at ${PKG_VERSION}\n" ++ fi ++ ++ check_portaudit_db ++ PORTAUDIT_DB_DATE=$(${PORTAUDIT} -d | awk -F ": " '{print $2}') ++ if [ $? -eq 1 ] ++ then ++ printf " ERROR: portaudit database too old (Last Update: ${PORTAUDIT_DB_DATE}) - update with portaudit -F\n" ++ else ++ printf " OK: portaudit database is up to date (Last Update: ${PORTAUDIT_DB_DATE}).\n" ++ fi + else +- printf " OK: pkg_version found at ${PKG_VERSION}\n" ++ check_pkg ++ if [ $? -eq 1 ] ++ then ++ printf " ERROR: pkg not found at ${PKG}.\n" ++ printf " Update and security information will not be available!\n" ++ else ++ printf " OK: pkg found at ${PKG}\n" ++ fi + fi + + check_jexec +@@ -197,15 +230,6 @@ + printf " OK: jexec found at ${JEXEC}\n" + fi + +- check_portaudit_db +- PORTAUDIT_DB_DATE=$(${PORTAUDIT} -d | awk -F ": " '{print $2}') +- if [ $? -eq 1 ] +- then +- printf " ERROR: portaudit database too old (Last Update: ${PORTAUDIT_DB_DATE}) - update with portaudit -F\n" +- else +- printf " OK: portaudit database is up to date (Last Update: ${PORTAUDIT_DB_DATE}).\n" +- fi +- + check_portindex + if [ $? -eq 1 ] + then +@@ -254,24 +278,34 @@ # count lines from portversion if asked if [ ${ANY_UPDATE} -eq 1 -o ${WARN_ON_ANY_UPDATE} -eq 1 ] then - UPDATES=$(${PKG_VERSION} ${PKGVERSION_OPTS} | grep -c "needs updating" -) -+ UPDATES=$(${PKG_VERSION} ${PKGVERSION_OPTS} ${PORTINDEX} | grep -c "needs updating") ++ if [ ${RELEASE} -lt 10 ] ++ then ++ UPDATES=$(${PKG_VERSION} ${PKGVERSION_OPTS} ${PORTINDEX} | grep -c "needs updating") ++ else ++ UPDATES=$(${PKG} ${PKG_OPTS} ${PORTINDEX} | grep -c "needs updating") ++ fi fi # count lines from find @@ -58,12 +163,47 @@ fi # count lines from portaudit -@@ -291,13 +288,13 @@ +- PROBLEMS=$(${PORTAUDIT} | grep "problem(s) in your installed packages found." | awk '{ print $1 }') ++ if [ ${RELEASE} -lt 10 ] ++ then ++ PROBLEMS=$(${PORTAUDIT} | grep "problem(s) in your installed packages found." | awk '{ print $1 }') ++ else ++ PROBLEMS=$(${PKG} audit | grep "problem(s) in the installed packages found." | awk '{ print $1 }') ++ fi + + run_gen_state + } + + # main function for use in jails + run_main_jail() { +- if [ ${UNPRIV_MODE} -eq 1 ] ++ if [ ${UNPRIV_MODE} -eq 1 -a ${RELEASE} -lt 10 ] + then + mkdir ${TMP_PATH} >/dev/null 2>&1 + ls -1 ${JAIL_PATH}/var/db/pkg/ > ${TMP_PATH}/${JAIL} 2>/dev/null +@@ -285,19 +319,29 @@ + print_state "only root can execute jail checks - users should use -u mode" "3" + else + # count lines from portaudit +- PROBLEMS=$(${JEXEC} ${JID} ${PORTAUDIT} | grep "problem(s) in your installed packages found." | awk '{ print $1 }') ++ if [ ${RELEASE} -lt 10 ] ++ then ++ PROBLEMS=$(${JEXEC} ${JID} ${PORTAUDIT} | grep "problem(s) in your installed packages found." | awk '{ print $1 }') ++ else ++ PROBLEMS=$(${PKG} -j ${JID} audit | grep "problem(s) in the installed packages found." | awk '{ print $1 }') ++ fi + fi + fi # count lines from pkg_version if asked and set PKG_DBDIR if [ ${ANY_UPDATE} -eq 1 -o ${WARN_ON_ANY_UPDATE} -eq 1 ] then - UPDATES=$(PKG_DBDIR=${JAIL_PATH}/var/db/pkg ${PKG_VERSION} ${PKGVERSION_OPTS} | grep -c "needs updating" -) -+ UPDATES=$(PKG_DBDIR=${JAIL_PATH}/var/db/pkg ${PKG_VERSION} ${PKGVERSION_OPTS} ${JAIL_PATH}${PORTINDEX} | grep -c "needs updating") ++ if [ ${RELEASE} -lt 10 ] ++ then ++ UPDATES=$(PKG_DBDIR=${JAIL_PATH}/var/db/pkg ${PKG_VERSION} ${PKGVERSION_OPTS} ${JAIL_PATH}${PORTINDEX} | grep -c "needs updating") ++ else ++ UPDATES=$(${PKG} -j ${JID} ${PKG_OPTS} ${JAIL_PATH}${PORTINDEX} | grep -c "needs updating") ++ fi fi # count lines from find @@ -74,7 +214,7 @@ fi run_gen_state -@@ -305,12 +302,14 @@ +@@ -305,12 +349,14 @@ ###### main ###### @@ -91,7 +231,7 @@ r) ;; # parameter -r is now obsolete, we don't use portversion anymore a) ANY_UPDATE=1;; w) WARN_ON_ANY_UPDATE=1;; -@@ -321,6 +320,14 @@ +@@ -321,6 +367,14 @@ esac done --------------020205030700040805070109-- From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 17 02:48:04 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7668D696; Mon, 17 Feb 2014 02:48:04 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4863F1754; Mon, 17 Feb 2014 02:48: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 s1H2m4uR057343; Mon, 17 Feb 2014 02:48:04 GMT (envelope-from skreuzer@freefall.freebsd.org) Received: (from skreuzer@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1H2m4IW057342; Mon, 17 Feb 2014 02:48:04 GMT (envelope-from skreuzer) Date: Mon, 17 Feb 2014 02:48:04 GMT Message-Id: <201402170248.s1H2m4IW057342@freefall.freebsd.org> To: skreuzer@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, skreuzer@FreeBSD.org From: skreuzer@FreeBSD.org Subject: Re: ports/186787: [MAINTAINER] databases/tcl-sqlite3: update to 3.8.3.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Feb 2014 02:48:04 -0000 Synopsis: [MAINTAINER] databases/tcl-sqlite3: update to 3.8.3.1 Responsible-Changed-From-To: freebsd-ports-bugs->skreuzer Responsible-Changed-By: skreuzer Responsible-Changed-When: Mon Feb 17 02:48:03 UTC 2014 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=186787 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 17 02:48:16 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A06656C9; Mon, 17 Feb 2014 02:48:16 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 745DC1759; Mon, 17 Feb 2014 02:48: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 s1H2mGti057434; Mon, 17 Feb 2014 02:48:16 GMT (envelope-from skreuzer@freefall.freebsd.org) Received: (from skreuzer@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1H2mGRA057433; Mon, 17 Feb 2014 02:48:16 GMT (envelope-from skreuzer) Date: Mon, 17 Feb 2014 02:48:16 GMT Message-Id: <201402170248.s1H2mGRA057433@freefall.freebsd.org> To: skreuzer@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, skreuzer@FreeBSD.org From: skreuzer@FreeBSD.org Subject: Re: ports/186788: [MAINTAINER] databases/sqlite3: update to 3.8.3.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Feb 2014 02:48:16 -0000 Synopsis: [MAINTAINER] databases/sqlite3: update to 3.8.3.1 Responsible-Changed-From-To: freebsd-ports-bugs->skreuzer Responsible-Changed-By: skreuzer Responsible-Changed-When: Mon Feb 17 02:48:16 UTC 2014 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=186788 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 17 02:50:01 2014 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 ESMTPS id E04CE703 for ; Mon, 17 Feb 2014 02:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B35A21767 for ; Mon, 17 Feb 2014 02: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 s1H2o0ec057531 for ; Mon, 17 Feb 2014 02:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1H2o00Q057530; Mon, 17 Feb 2014 02:50:00 GMT (envelope-from gnats) Resent-Date: Mon, 17 Feb 2014 02:50:00 GMT Resent-Message-Id: <201402170250.s1H2o00Q057530@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 Marshall Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 551E06FD for ; Mon, 17 Feb 2014 02:49:32 +0000 (UTC) Received: from mail1.riverwillow.net.au (mail1.riverwillow.net.au [IPv6:2001:8000:1000:1801::36]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A3AB51762 for ; Mon, 17 Feb 2014 02:49:31 +0000 (UTC) Received: from rwpc13.gfn.riverwillow.net.au (rwpc13.gfn.riverwillow.net.au [IPv6:2001:8000:1000:18e1:20c:76ff:fe05:fa0b]) (authenticated bits=0) by mail1.riverwillow.net.au (8.14.8/8.14.8) with ESMTP id s1H2nR8j022070 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 17 Feb 2014 13:49:27 +1100 (AEDT) Received: from rwpc13.gfn.riverwillow.net.au (john@localhost [127.0.0.1]) by rwpc13.gfn.riverwillow.net.au (8.14.7/8.14.7) with ESMTP id s1H2nQ26006513 for ; Mon, 17 Feb 2014 13:49:26 +1100 (AEDT) (envelope-from john.marshall@riverwillow.com.au) Received: (from john@localhost) by rwpc13.gfn.riverwillow.net.au (8.14.7/8.14.7/Submit) id s1H2nOVG006512; Mon, 17 Feb 2014 13:49:24 +1100 (AEDT) (envelope-from john) Message-Id: <201402170249.s1H2nOVG006512@rwpc13.gfn.riverwillow.net.au> Date: Mon, 17 Feb 2014 13:49:24 +1100 (AEDT) From: John Marshall To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/186827: ports-mgmt/pkg pkg-repo(8) includes only oldest version of package X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: John Marshall List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Feb 2014 02:50:01 -0000 >Number: 186827 >Category: ports >Synopsis: ports-mgmt/pkg pkg-repo(8) includes only oldest version of 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: Mon Feb 17 02:50:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: John Marshall >Release: FreeBSD 9.2-RELEASE i386 >Organization: Riverwillow Pty Ltd >Environment: System: FreeBSD rwpc13 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255918: Sat Sep 28 13:06:58 AEST 2013 root@rwpc13:/usr/obj/build/src/sys/RWPC13 i386 >Description: pkg-repo(8) states: Symbolic links are ignored, and only the most recent package for each origin is included in the catalogue. Every time I have created a repository, I have discovered that only the oldest version of each package is included in the catalogue. >How-To-Repeat: - Start with empty packages directory - build ports and create packages - update ports tree - build ports and create packages for updated ports - Create repository catalogue with pkg-repo(8) - Query catalogue for one of the updated ports and note old version >Fix: Workaround is to remove older versions of packages from the packages directory, so that only the latest version of each package is present prior to creating the repository. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 17 02:50:08 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9D9E4732; Mon, 17 Feb 2014 02:50:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 710991769; Mon, 17 Feb 2014 02: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 s1H2o8MA057672; Mon, 17 Feb 2014 02:50:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1H2o8Hx057671; Mon, 17 Feb 2014 02:50:08 GMT (envelope-from edwin) Date: Mon, 17 Feb 2014 02:50:08 GMT Message-Id: <201402170250.s1H2o8Hx057671@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186827: ports-mgmt/pkg pkg-repo(8) includes only oldest version of package X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Feb 2014 02:50:08 -0000 Synopsis: ports-mgmt/pkg pkg-repo(8) includes only oldest version of package Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: edwin Responsible-Changed-When: Mon Feb 17 02:50:08 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186827 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 17 03:30:01 2014 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 ESMTPS id C0B7329C for ; Mon, 17 Feb 2014 03:30:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9BDED1D98 for ; Mon, 17 Feb 2014 03: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 s1H3U171071527 for ; Mon, 17 Feb 2014 03:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1H3U1fF071526; Mon, 17 Feb 2014 03:30:01 GMT (envelope-from gnats) Resent-Date: Mon, 17 Feb 2014 03:30:01 GMT Resent-Message-Id: <201402170330.s1H3U1fF071526@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, Hiroto Kagotani Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 27010F7C for ; Mon, 17 Feb 2014 03:20:20 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0CB1E1CEC for ; Mon, 17 Feb 2014 03:20:20 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1H3KJNW065220 for ; Mon, 17 Feb 2014 03:20:19 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1H3KJ64065218; Mon, 17 Feb 2014 03:20:19 GMT (envelope-from nobody) Message-Id: <201402170320.s1H3KJ64065218@cgiserv.freebsd.org> Date: Mon, 17 Feb 2014 03:20:19 GMT From: Hiroto Kagotani To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186828: textproc/rubygem-nokogiri: does not work X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Feb 2014 03:30:01 -0000 >Number: 186828 >Category: ports >Synopsis: textproc/rubygem-nokogiri: does not work >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 Feb 17 03:30:01 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Hiroto Kagotani >Release: 9.2-RELEASE-p3 >Organization: >Environment: FreeBSD myhost.mydomain 9.2-RELEASE-p3 FreeBSD 9.2-RELEASE-p3 #0: Sat Jan 11 03:25:02 UTC 2014 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: After upgrading rubygem-nokogiri to 1.6.1, applications using nokogiri do not work with a message "Could not find mini_portile (~> 0.5.0)". >How-To-Repeat: With ruby-1.9.3.484_1,1 and rubygem-nokogiri-1.6.1, run the following script (say /tmp/a.rb): #!/usr/bin/env ruby require 'nokogiri' Then, you will get the following message: /usr/local/lib/ruby/site_ruby/1.9/rubygems/dependency.rb:247:in `to_specs': Could not find mini_portile (~> 0.5.0) amongst [nokogiri-1.6.1] (Gem::LoadError) from /usr/local/lib/ruby/site_ruby/1.9/rubygems/specification.rb:778:in `block in activate_dependencies' from /usr/local/lib/ruby/site_ruby/1.9/rubygems/specification.rb:767:in `each' from /usr/local/lib/ruby/site_ruby/1.9/rubygems/specification.rb:767:in `activate_dependencies' from /usr/local/lib/ruby/site_ruby/1.9/rubygems/specification.rb:751:in `activate' from /usr/local/lib/ruby/site_ruby/1.9/rubygems.rb:212:in `rescue in try_activate' from /usr/local/lib/ruby/site_ruby/1.9/rubygems.rb:209:in `try_activate' from /usr/local/lib/ruby/site_ruby/1.9/rubygems/custom_require.rb:59:in `rescue in require' from /usr/local/lib/ruby/site_ruby/1.9/rubygems/custom_require.rb:35:in `require' from /tmp/a.rb:2:in `
' >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 17 03:30:11 2014 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 ESMTPS id DC4642CF; Mon, 17 Feb 2014 03:30:11 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B25771D9B; Mon, 17 Feb 2014 03:30: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 s1H3UBuU074082; Mon, 17 Feb 2014 03:30:11 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1H3UBRf074081; Mon, 17 Feb 2014 03:30:11 GMT (envelope-from edwin) Date: Mon, 17 Feb 2014 03:30:11 GMT Message-Id: <201402170330.s1H3UBRf074081@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ruby@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186828: textproc/rubygem-nokogiri: does not work X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Feb 2014 03:30:11 -0000 Synopsis: textproc/rubygem-nokogiri: does not work Responsible-Changed-From-To: freebsd-ports-bugs->ruby Responsible-Changed-By: edwin Responsible-Changed-When: Mon Feb 17 03:30:11 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186828 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 17 04:10:01 2014 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 ESMTPS id ED1D26A5 for ; Mon, 17 Feb 2014 04:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CB2D21146 for ; Mon, 17 Feb 2014 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 s1H4A0KW083762 for ; Mon, 17 Feb 2014 04:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1H4A0qB083761; Mon, 17 Feb 2014 04:10:00 GMT (envelope-from gnats) Resent-Date: Mon, 17 Feb 2014 04:10:00 GMT Resent-Message-Id: <201402170410.s1H4A0qB083761@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 ESMTPS id E606D572 for ; Mon, 17 Feb 2014 04:02:36 +0000 (UTC) Received: from mail.lifanov.com (mail.lifanov.com [206.125.175.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D472310EA for ; Mon, 17 Feb 2014 04:02:36 +0000 (UTC) Received: by mail.lifanov.com (Postfix, from userid 1001) id 2886E1A87D9; Sun, 16 Feb 2014 23:02:30 -0500 (EST) Message-Id: <20140217040230.2886E1A87D9@mail.lifanov.com> Date: Sun, 16 Feb 2014 23:02:30 -0500 (EST) From: Nikolai Lifanov To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/186829: lang/ghc is not jobs-safe X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 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, 17 Feb 2014 04:10:01 -0000 >Number: 186829 >Category: ports >Synopsis: lang/ghc is not jobs-safe >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 Feb 17 04:10:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Nikolai Lifanov >Release: FreeBSD 10.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD mail.lifanov.com 10.0-RELEASE FreeBSD 10.0-RELEASE #0 r260789: Thu Jan 16 22:34:59 UTC 2014 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: The GHC port is not jobs-safe. This should either be fixed (I'd imagine this is hard) or marked as make jobs unsafe. CROSS_COMPILE="" "utils/ghc-cabal/dist-install/build/tmp/ghc-cabal" install "/tmp/lifanov/ghc/work/ghc-7.6.3-boot/lib/ghc-7.6.3/ghc" "/tmp/lifanov/ghc/work/ghc-7.6.3-boot/lib/ghc-7.6.3/ghc-pkg" "strip" "/tmp/lifanov/ghc/work/ghc-7.6.3-boot/lib/ghc-7.6.3" libraries/old-locale dist-install '' '/tmp/lifanov/ghc/work/ghc-7.6.3-boot' '/tmp/lifanov/ghc/work/ghc-7.6.3-boot/lib/ghc-7.6.3' '/tmp/lifanov/ghc/work/ghc-7.6.3-boot/share/doc/ghc/html/libraries' NO Installing library in /tmp/lifanov/ghc/work/ghc-7.6.3-boot/lib/ghc-7.6.3/old-locale-1.0.0.5 Warning: cannot determine version of /tmp/lifanov/ghc/work/ghc-7.6.3-boot/lib/ghc-7.6.3/ghc : "" ghc-cabal: ghcInvocation: the programVersion must not be Nothing gmake[3]: *** [install_packages] Error 1 gmake[2]: *** [install] Error 2 gmake[2]: Leaving directory `/tmp/lifanov/ghc/work/ghc-7.6.3-boot' *** [pre-configure] Error code 2 make[1]: stopped in /tmp/lifanov/ghc 1 error make[1]: stopped in /tmp/lifanov/ghc *** [build] Error code 2 make: stopped in /tmp/lifanov/ghc 1 error make: stopped in /tmp/lifanov/ghc >How-To-Repeat: cd /usr/ports/lang/ghc make -j8 >Fix: Mark lang/ghc port as jobs unsafe. In this case, make -j1 works. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 17 04:11:29 2014 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 ESMTPS id 9BEB8708; Mon, 17 Feb 2014 04:11:29 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7005711AC; Mon, 17 Feb 2014 04: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 s1H4BT3T086413; Mon, 17 Feb 2014 04:11:29 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1H4BT5c086412; Mon, 17 Feb 2014 04:11:29 GMT (envelope-from edwin) Date: Mon, 17 Feb 2014 04:11:29 GMT Message-Id: <201402170411.s1H4BT5c086412@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, haskell@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186829: lang/ghc is not jobs-safe X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Feb 2014 04:11:29 -0000 Synopsis: lang/ghc is not jobs-safe Responsible-Changed-From-To: freebsd-ports-bugs->haskell Responsible-Changed-By: edwin Responsible-Changed-When: Mon Feb 17 04:11:29 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186829 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 17 07:10:00 2014 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 ESMTPS id A2A1ECAC for ; Mon, 17 Feb 2014 07:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7D4331CBC for ; Mon, 17 Feb 2014 07: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 s1H7A0Er047739 for ; Mon, 17 Feb 2014 07:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1H7A02f047738; Mon, 17 Feb 2014 07:10:00 GMT (envelope-from gnats) Resent-Date: Mon, 17 Feb 2014 07:10:00 GMT Resent-Message-Id: <201402170710.s1H7A02f047738@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, Robert Simmons Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1B43BC6E for ; Mon, 17 Feb 2014 07:04:44 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 069BA1C9F for ; Mon, 17 Feb 2014 07:04:44 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1H74hus036703 for ; Mon, 17 Feb 2014 07:04:43 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1H74hcH036702; Mon, 17 Feb 2014 07:04:43 GMT (envelope-from nobody) Message-Id: <201402170704.s1H74hcH036702@cgiserv.freebsd.org> Date: Mon, 17 Feb 2014 07:04:43 GMT From: Robert Simmons To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186830: security/openssh-portable fails to build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Feb 2014 07:10:00 -0000 >Number: 186830 >Category: ports >Synopsis: security/openssh-portable fails to build >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 Feb 17 07:10:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Robert Simmons >Release: 10.0-RELEASE >Organization: >Environment: FreeBSD example 10.0-RELEASE FreeBSD 10.0-RELEASE #0 r260789: Thu Jan 16 22:34:59 UTC 2014 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Building security/openssh-portable fails. I'm using poudriere 3.0.14. The build stops with the following error: gss-serv-krb5.o: In function `ssh_gssapi_krb5_storecreds': gss-serv-krb5.c:(.text+0x204): undefined reference to `gss_krb5_copy_ccache' cc: error: linker command failed with exit code 1 (use -v to see invocation) *** Error code 1 Stop. make[1]: stopped in /wrkdirs/usr/ports/security/openssh-portable/work/openssh-6.5p1 *** Error code 1 Here are the options I'm using for this port: ===> The following configuration options are available for openssh-portable-6.5.p1_1,1: AES_THREADED=on: Threaded AES-CTR BSM=on: OpenBSM Auditing HPN=on: HPN-SSH patch KERB_GSSAPI=off: Kerberos/GSSAPI patch (req: GSSAPI) LDNS=on: SSHFP/LDNS support LIBEDIT=on: Command line editing via libedit LPK=off: LDAP Public Key (LPK) [OBSOLETE] NONECIPHER=off: NONE Cipher support OVERWRITE_BASE=on: OpenSSH overwrite base PAM=on: PAM support SCTP=off: SCTP support TCP_WRAPPERS=on: tcp_wrappers support X509=off: x509 certificate patch ====> Kerberos support: you can only select none or one of them MIT=off: MIT Kerberos (security/krb5) HEIMDAL=off: Heimdal Kerberos (security/heimdal) HEIMDAL_BASE=on: Heimdal Kerberos (base) >How-To-Repeat: Here are my poudriere jails and ports: # poudriere jails -l JAILNAME VERSION ARCH METHOD 10amd64 10.0-RELEASE amd64 ftp # poudriere ports -l PORTSTREE METHOD PATH default portsnap /data/poudriere/ports/default Here is the build command and output: # poudriere bulk -j 10amd64 security/openssh-portable ====>> Creating the reference jail... done ====>> Mounting system devices for 10amd64-default ====>> Mounting ports/packages/distfiles ====>> Mounting packages from: /data/poudriere/data/packages/10amd64-default ====>> Mounting /var/db/ports from: /usr/local/etc/poudriere.d/10amd64-options ====>> Logs: /data/poudriere/data/logs/bulk/10amd64-default/2014-02-17_06h59m31s ====>> WWW: http://repo/logs/bulk/10amd64-default/2014-02-17_06h59m31s ====>> Appending to make.conf: /usr/local/etc/poudriere.d/10amd64-make.conf /etc/resolv.conf -> /data/poudriere/data/build/10amd64-default/ref/etc/resolv.conf ====>> Starting jail 10amd64-default ====>> Loading MOVED ====>> Calculating ports order and dependencies ====>> Sanity checking the repository ====>> Deleting stale symlinks ====>> Deleting empty directories ====>> Cleaning the build queue ====>> Building 1 packages using 1 builders ====>> Starting/Cloning builders ====>> Hit CTRL+t at any time to see build progress and stats ====>> [01] Starting build of security/openssh-portable ====>> [01] Finished build of security/openssh-portable: Failed: build ====>> Stopping 1 builders ====>> No package built, no need to update the repository ====>> Cleaning up ====>> Umounting file systems ====>> Failed ports: security/openssh-portable:build ====>> [10amd64-default] 0 packages built, 1 failures, 0 ignored, 0 skipped >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 17 07:10:07 2014 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 ESMTPS id EFEDACDB; Mon, 17 Feb 2014 07:10:07 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C55D81CBF; Mon, 17 Feb 2014 07: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 s1H7A7rL047884; Mon, 17 Feb 2014 07:10:07 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1H7A75n047883; Mon, 17 Feb 2014 07:10:07 GMT (envelope-from edwin) Date: Mon, 17 Feb 2014 07:10:07 GMT Message-Id: <201402170710.s1H7A75n047883@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, bdrewery@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186830: security/openssh-portable fails to build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Feb 2014 07:10:08 -0000 Synopsis: security/openssh-portable fails to build Responsible-Changed-From-To: freebsd-ports-bugs->bdrewery Responsible-Changed-By: edwin Responsible-Changed-When: Mon Feb 17 07:10:07 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186830 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 17 07:20:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9866EDF2 for ; Mon, 17 Feb 2014 07:20:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 700451D63 for ; Mon, 17 Feb 2014 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 s1H7K0pv052617 for ; Mon, 17 Feb 2014 07:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1H7K0Hp052616; Mon, 17 Feb 2014 07:20:00 GMT (envelope-from gnats) Resent-Date: Mon, 17 Feb 2014 07:20:00 GMT Resent-Message-Id: <201402170720.s1H7K0Hp052616@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 Panyushkin Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E91C0DB4 for ; Mon, 17 Feb 2014 07:18:16 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D37071D5B for ; Mon, 17 Feb 2014 07:18:16 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1H7IG7N007296 for ; Mon, 17 Feb 2014 07:18:16 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1H7IGRU007293; Mon, 17 Feb 2014 07:18:16 GMT (envelope-from nobody) Message-Id: <201402170718.s1H7IGRU007293@cgiserv.freebsd.org> Date: Mon, 17 Feb 2014 07:18:16 GMT From: Alexander Panyushkin To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186832: emulators/virtualbox-ose fails to build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Feb 2014 07:20:00 -0000 >Number: 186832 >Category: ports >Synopsis: emulators/virtualbox-ose fails to build >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: Mon Feb 17 07:20:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Alexander Panyushkin >Release: FreeBSD 10.0-STABLE #0 r261945 >Organization: Home >Environment: FreeBSD scorpion 10.0-STABLE FreeBSD 10.0-STABLE #0 r261945: Sun Feb 16 14:46:09 EET 2014 root@scorpion:/usr/obj/usr/src/sys/Kernel amd64 >Description: emulators/virtualbox-ose fails to build but emulators/virtualbox-ose-kmod build is Ok Port and the world freshly updated. # cat /etc/src.conf WITH_ICONV=YES WITH_LIBICONV_COMPAT=YES WITH_BSD_GREP=YES MALLOC_PRODUCTION=YES /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/out/freebsd.amd64/release/lib/RuntimeBldProg.a(utf8-posix.o): In function `rtStrIconvCacheDestroy': /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/src/VBox/Runtime/r3/posix/utf8-posix.cpp:115: undefined reference to `libiconv_close' collect2: ld returned 1 exit status kmk: *** [/usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/out/freebsd.amd64/release/obj/scm/scm] Error 1 The failing command: @g++46 -m64 -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/out/freebsd.amd64/release/obj/scm/scm /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/out/freebsd.amd64/release/obj/scm/scm.o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/out/freebsd.amd64/release/obj/scm/scmdiff.o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/out/freebsd.amd64/release/obj/scm/scmrw.o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/out/freebsd.amd64/release/obj/scm/scmstream.o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/out/freebsd.amd64/release/obj/scm/scmsubversion.o -L/usr/local/lib -lpthread -lrt /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/out/freebsd.amd64/release/lib/RuntimeBldProg.a /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/out/freebsd.amd64/release/lib/VBox-kStuffStaticBldProg.a /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/out/freebsd.amd64/release/li b/RuntimeBldProg.a -lpthread -lssl -lcrypto *** Error code 2 Stop. make[1]: stopped in /usr/ports/emulators/virtualbox-ose *** Error code 1 >How-To-Repeat: portmaster emulators/virtualbox-ose >Fix: Patch attached with submission follows: # Log file generated by # # './configure --with-gcc=gcc46 --with-g++=g++46 --passive-mesa --enable-vnc --disable-libvpx' # ***** Checking environment ***** Determined build machine: freebsd.amd64, target machine: freebsd.amd64 ***** Checking kBuild ***** found ***** Checking gcc ***** found version 4.6.4 ***** Checking Open Watcom ***** ** Open Watcom was not found! ***** Checking iasl ***** found version 20130823 ***** Checking xslt ***** found ***** Checking mkisofs ***** found mkisofs 3.01a16 (amd64-unknown-freebsd10.0) Copyright (C) 1993-1997 Eric Youngdale (C) 1997-2013 Joerg Schilling ***** Checking pthread ***** compiling the following source file: #include #include extern "C" int main(void) { pthread_mutex_t mutex; if (pthread_mutex_init(&mutex, NULL)) { printf("pthread_mutex_init() failed\n"); return 1; } if (pthread_mutex_lock(&mutex)) { printf("pthread_mutex_lock() failed\n"); return 1; } if (pthread_mutex_unlock(&mutex)) { printf("pthread_mutex_unlock() failed\n"); return 1; } printf("found, OK.\n"); } using the following command line: g++46 -g -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc "-lpthread" executing the binary found, OK. ***** Checking libxml2 ***** compiling the following source file: #include #include extern "C" int main(void) { printf("found version %s", LIBXML_DOTTED_VERSION); #if LIBXML_VERSION >= 20626 printf(", OK.\n"); return 0; #else printf(", expected version 2.6.26 or higher\n"); return 1; #endif } using the following command line: g++46 -g -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc "-L/usr/local/lib -lxml2 -lpthread -I/usr/local/include/libxml2" executing the binary found version 2.8.0, OK. ***** Checking libIDL ***** found version 0.8.14 ***** Checking ssl ***** compiling the following source file: #include #include #include extern "C" int main(void) { printf("found version %s", OPENSSL_VERSION_TEXT); SSL_library_init(); #if OPENSSL_VERSION_NUMBER >= 0x00908000 printf(", OK.\n"); return 0; #else printf(", expected version 0.9.8 or higher\n"); return 1; #endif } using the following command line: g++46 -g -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc " -lssl -lcrypto" executing the binary found version OpenSSL 1.0.1f 6 Jan 2014, OK. ***** Checking libcurl ***** compiling the following source file: #include #include extern "C" int main(void) { printf("found version %s", LIBCURL_VERSION); #if 10000*LIBCURL_VERSION_MAJOR + 100*LIBCURL_VERSION_MINOR + LIBCURL_VERSION_PATCH >= 71901 printf(", OK.\n"); return 0; #else printf(", expected version 7.19.1 or higher\n"); return 1; #endif } using the following command line: g++46 -g -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc "-L/usr/local/lib -lcurl -I/usr/local/include" executing the binary found version 7.35.0, OK. ***** Checking zlib ***** compiling the following source file: #include #include extern "C" int main(void) { printf("found version %s", ZLIB_VERSION); #if ZLIB_VERNUM >= 0x1210 printf(", OK.\n"); return 0; #else printf(", expected version 1.2.1 or higher\n"); return 1; #endif } using the following command line: g++46 -g -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc "-lz " executing the binary found version 1.2.8, OK. ***** Checking libpng ***** compiling the following source file: #include #include extern "C" int main(void) { printf("found version %s", PNG_LIBPNG_VER_STRING); #if PNG_LIBPNG_VER >= 10205 printf(", OK.\n"); return 0; #else printf(", expected version 1.2.5 or higher\n"); return 1; #endif } using the following command line: g++46 -g -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc "-L/usr/local/lib -lpng -I/usr/local/include" executing the binary found version 1.5.18, OK. ***** Checking SDL ***** compiling the following source file: #include #include #include #undef main extern "C" int main(int argc, char** argv) { printf("found version %d.%d.%d", SDL_MAJOR_VERSION, SDL_MINOR_VERSION, SDL_PATCHLEVEL); #if SDL_VERSION_ATLEAST(1,2,7) printf(", OK.\n"); return 0; #else printf(", expected version 1.2.7 or higher\n"); return 1; #endif } using the following command line: g++46 -g -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc "-L/usr/local/lib -Wl,-rpath,/usr/local/lib -lSDL -pthread -lSDLmain -I/usr/local/include/SDL -I/usr/local/include " executing the binary found version 1.2.15, OK. ***** Checking X libraries ***** compiling the following source file: #include #include extern "C" int main(void) { Display *dpy; int scrn_num; Screen *scrn; Window win; dpy = XOpenDisplay(NULL); scrn_num = DefaultScreen(dpy); scrn = ScreenOfDisplay(dpy, scrn_num); win = XCreateWindow(dpy, RootWindowOfScreen(scrn), 0, 0, 100, 100, 0, 16, InputOutput, CopyFromParent, 0, NULL); XDestroyWindow(dpy, win); XCloseDisplay(dpy); } using the following command line: g++46 -g -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc "-L/usr/X11R6/lib -L/usr/X11R6/lib64 -L/usr/local/lib -lXext -lX11 -I/usr/local/include" found ***** Checking Xcursor ***** compiling the following source file: #include #include #include extern "C" int main(void) { XcursorImage *cursor = XcursorImageCreate (10, 10); XcursorImageDestroy(cursor); return 0; } using the following command line: g++46 -g -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc "-L/usr/X11R6/lib -L/usr/X11R6/lib64 -L/usr/local/lib -lXext -lX11 -lXcursor -I/usr/local/include" found ***** Checking Xinerama ***** compiling the following source file: #include #include extern "C" int main(void) { Display *dpy; Bool flag; dpy = XOpenDisplay(NULL); if (dpy) { flag = XineramaIsActive(dpy); XCloseDisplay(dpy); } } using the following command line: g++46 -g -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc "-L/usr/X11R6/lib -L/usr/X11R6/lib64 -L/usr/local/lib -lXext -lX11 -lXinerama -I/usr/local/include" /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc: In function 'int main()': /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc:6:8: warning: variable 'flag' set but not used [-Wunused-but-set-variable] found ***** Checking Xrandr ***** compiling the following source file: #include #include extern "C" int main(void) { Display *dpy; Bool flag; int major, minor; dpy = XOpenDisplay(NULL); if (dpy) { flag = XRRQueryVersion(dpy, &major, &minor); XCloseDisplay(dpy); } } using the following command line: g++46 -g -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc "-L/usr/X11R6/lib -L/usr/X11R6/lib64 -L/usr/local/lib -lXext -lX11 -lXrandr -I/usr/local/include" /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc: In function 'int main()': /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc:6:8: warning: variable 'flag' set but not used [-Wunused-but-set-variable] found ***** Checking Xmu ***** compiling the following source file: #include #include #include #include #include extern "C" int main(void) { Display *dpy; int scrn_num; Screen *scrn; dpy = XOpenDisplay(NULL); if (dpy) { scrn_num = DefaultScreen(dpy); scrn = ScreenOfDisplay(dpy, scrn_num); Status status = XmuLookupStandardColormap(dpy, RootWindowOfScreen(scrn), 0, 24, XA_RGB_DEFAULT_MAP, False, True); printf("Status = %x\n", status); XCloseDisplay(dpy); } return 0; } using the following command line: g++46 -g -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc "-L/usr/X11R6/lib -L/usr/X11R6/lib64 -L/usr/local/lib -lXext -lX11 -lXmu -I/usr/local/include" found ***** Checking Mesa / GLU ***** compiling the following source file: #include #include #include #include extern "C" int main(void) { Display *dpy; int major, minor; dpy = XOpenDisplay(NULL); if (dpy) { Bool glx_version = glXQueryVersion(dpy, &major, &minor); XCloseDisplay(dpy); if (glx_version) { printf("found version %u.%u, OK.\n", major, minor); return 0; } } printf("found (inactive), OK.\n"); return 0; } using the following command line: g++46 -g -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc "-L/usr/X11R6/lib -L/usr/X11R6/lib64 -L/usr/local/lib -lXext -lX11 -lGL -I/usr/local/include" executing the binary found (inactive), OK. ***** Checking Qt4 ***** compiling the following source file: #include #include extern "C" int main(void) { printf("found version %s", QT_VERSION_STR); #if QT_VERSION >= 0x040602 printf(", OK.\n"); return 0; #else printf(", expected version 4.6.2 or higher\n"); return 1; #endif } using the following command line: g++46 -g -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc "-L/usr/local/lib/qt4 -lQtCore -lpthread -I/usr/local/include/qt4 -I/usr/local/include/qt4/QtCore -DQT_SHARED -I/usr/local/include/qt4 -I/usr/local/include/qt4/QtCore " executing the binary (LD_LIBRARY_PATH=/usr/local/lib/qt4) found version 4.8.5, OK. ***** Checking Qt4 devtools ***** found version 4.8.5 ***** Checking Python support ***** compiling the following source file: #include #include extern "C" int main(void) { Py_Initialize(); printf("found version %s", PY_VERSION); #if PY_VERSION_HEX >= 0x02030000 printf(", OK.\n"); return 0; #else printf(", expected version 2.3 or higher\n"); return 1; #endif } using the following command line: g++46 -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc -I/usr/include/python2.7 /usr/lib/x86_64-linux-gnu/libpython2.7.so -pthread g++46: error: /usr/lib/x86_64-linux-gnu/libpython2.7.so: No such file or directory compiling the following source file: #include #include extern "C" int main(void) { Py_Initialize(); printf("found version %s", PY_VERSION); #if PY_VERSION_HEX >= 0x02030000 printf(", OK.\n"); return 0; #else printf(", expected version 2.3 or higher\n"); return 1; #endif } using the following command line: g++46 -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc -I/usr/include/python2.7 /usr/lib/i386-linux-gnu/libpython2.7.so -pthread g++46: error: /usr/lib/i386-linux-gnu/libpython2.7.so: No such file or directory compiling the following source file: #include #include extern "C" int main(void) { Py_Initialize(); printf("found version %s", PY_VERSION); #if PY_VERSION_HEX >= 0x02030000 printf(", OK.\n"); return 0; #else printf(", expected version 2.3 or higher\n"); return 1; #endif } using the following command line: g++46 -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc -I/usr/include/python2.7 /usr/lib64/libpython2.7.so -pthread g++46: error: /usr/lib64/libpython2.7.so: No such file or directory compiling the following source file: #include #include extern "C" int main(void) { Py_Initialize(); printf("found version %s", PY_VERSION); #if PY_VERSION_HEX >= 0x02030000 printf(", OK.\n"); return 0; #else printf(", expected version 2.3 or higher\n"); return 1; #endif } using the following command line: g++46 -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc -I/usr/include/python2.7 /usr/lib/64/libpython2.7.so -pthread g++46: error: /usr/lib/64/libpython2.7.so: No such file or directory compiling the following source file: #include #include extern "C" int main(void) { Py_Initialize(); printf("found version %s", PY_VERSION); #if PY_VERSION_HEX >= 0x02030000 printf(", OK.\n"); return 0; #else printf(", expected version 2.3 or higher\n"); return 1; #endif } using the following command line: g++46 -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc -I/usr/include/python2.7 /usr/lib/libpython2.7.so -pthread g++46: error: /usr/lib/libpython2.7.so: No such file or directory compiling the following source file: #include #include extern "C" int main(void) { Py_Initialize(); printf("found version %s", PY_VERSION); #if PY_VERSION_HEX >= 0x02030000 printf(", OK.\n"); return 0; #else printf(", expected version 2.3 or higher\n"); return 1; #endif } using the following command line: g++46 -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc -I/usr/include/python2.6 /usr/lib/x86_64-linux-gnu/libpython2.6.so -pthread g++46: error: /usr/lib/x86_64-linux-gnu/libpython2.6.so: No such file or directory compiling the following source file: #include #include extern "C" int main(void) { Py_Initialize(); printf("found version %s", PY_VERSION); #if PY_VERSION_HEX >= 0x02030000 printf(", OK.\n"); return 0; #else printf(", expected version 2.3 or higher\n"); return 1; #endif } using the following command line: g++46 -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc -I/usr/include/python2.6 /usr/lib/i386-linux-gnu/libpython2.6.so -pthread g++46: error: /usr/lib/i386-linux-gnu/libpython2.6.so: No such file or directory compiling the following source file: #include #include extern "C" int main(void) { Py_Initialize(); printf("found version %s", PY_VERSION); #if PY_VERSION_HEX >= 0x02030000 printf(", OK.\n"); return 0; #else printf(", expected version 2.3 or higher\n"); return 1; #endif } using the following command line: g++46 -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc -I/usr/include/python2.6 /usr/lib64/libpython2.6.so -pthread g++46: error: /usr/lib64/libpython2.6.so: No such file or directory compiling the following source file: #include #include extern "C" int main(void) { Py_Initialize(); printf("found version %s", PY_VERSION); #if PY_VERSION_HEX >= 0x02030000 printf(", OK.\n"); return 0; #else printf(", expected version 2.3 or higher\n"); return 1; #endif } using the following command line: g++46 -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc -I/usr/include/python2.6 /usr/lib/64/libpython2.6.so -pthread g++46: error: /usr/lib/64/libpython2.6.so: No such file or directory compiling the following source file: #include #include extern "C" int main(void) { Py_Initialize(); printf("found version %s", PY_VERSION); #if PY_VERSION_HEX >= 0x02030000 printf(", OK.\n"); return 0; #else printf(", expected version 2.3 or higher\n"); return 1; #endif } using the following command line: g++46 -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc -I/usr/include/python2.6 /usr/lib/libpython2.6.so -pthread g++46: error: /usr/lib/libpython2.6.so: No such file or directory compiling the following source file: #include #include extern "C" int main(void) { Py_Initialize(); printf("found version %s", PY_VERSION); #if PY_VERSION_HEX >= 0x02030000 printf(", OK.\n"); return 0; #else printf(", expected version 2.3 or higher\n"); return 1; #endif } using the following command line: g++46 -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc -I/usr/include/python2.5 /usr/lib/x86_64-linux-gnu/libpython2.5.so -pthread g++46: error: /usr/lib/x86_64-linux-gnu/libpython2.5.so: No such file or directory compiling the following source file: #include #include extern "C" int main(void) { Py_Initialize(); printf("found version %s", PY_VERSION); #if PY_VERSION_HEX >= 0x02030000 printf(", OK.\n"); return 0; #else printf(", expected version 2.3 or higher\n"); return 1; #endif } using the following command line: g++46 -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc -I/usr/include/python2.5 /usr/lib/i386-linux-gnu/libpython2.5.so -pthread g++46: error: /usr/lib/i386-linux-gnu/libpython2.5.so: No such file or directory compiling the following source file: #include #include extern "C" int main(void) { Py_Initialize(); printf("found version %s", PY_VERSION); #if PY_VERSION_HEX >= 0x02030000 printf(", OK.\n"); return 0; #else printf(", expected version 2.3 or higher\n"); return 1; #endif } using the following command line: g++46 -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc -I/usr/include/python2.5 /usr/lib64/libpython2.5.so -pthread g++46: error: /usr/lib64/libpython2.5.so: No such file or directory compiling the following source file: #include #include extern "C" int main(void) { Py_Initialize(); printf("found version %s", PY_VERSION); #if PY_VERSION_HEX >= 0x02030000 printf(", OK.\n"); return 0; #else printf(", expected version 2.3 or higher\n"); return 1; #endif } using the following command line: g++46 -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc -I/usr/include/python2.5 /usr/lib/64/libpython2.5.so -pthread g++46: error: /usr/lib/64/libpython2.5.so: No such file or directory compiling the following source file: #include #include extern "C" int main(void) { Py_Initialize(); printf("found version %s", PY_VERSION); #if PY_VERSION_HEX >= 0x02030000 printf(", OK.\n"); return 0; #else printf(", expected version 2.3 or higher\n"); return 1; #endif } using the following command line: g++46 -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc -I/usr/include/python2.5 /usr/lib/libpython2.5.so -pthread g++46: error: /usr/lib/libpython2.5.so: No such file or directory compiling the following source file: #include #include extern "C" int main(void) { Py_Initialize(); printf("found version %s", PY_VERSION); #if PY_VERSION_HEX >= 0x02030000 printf(", OK.\n"); return 0; #else printf(", expected version 2.3 or higher\n"); return 1; #endif } using the following command line: g++46 -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc -I/usr/include/python2.4 /usr/lib/x86_64-linux-gnu/libpython2.4.so -pthread g++46: error: /usr/lib/x86_64-linux-gnu/libpython2.4.so: No such file or directory compiling the following source file: #include #include extern "C" int main(void) { Py_Initialize(); printf("found version %s", PY_VERSION); #if PY_VERSION_HEX >= 0x02030000 printf(", OK.\n"); return 0; #else printf(", expected version 2.3 or higher\n"); return 1; #endif } using the following command line: g++46 -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc -I/usr/include/python2.4 /usr/lib/i386-linux-gnu/libpython2.4.so -pthread g++46: error: /usr/lib/i386-linux-gnu/libpython2.4.so: No such file or directory compiling the following source file: #include #include extern "C" int main(void) { Py_Initialize(); printf("found version %s", PY_VERSION); #if PY_VERSION_HEX >= 0x02030000 printf(", OK.\n"); return 0; #else printf(", expected version 2.3 or higher\n"); return 1; #endif } using the following command line: g++46 -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc -I/usr/include/python2.4 /usr/lib64/libpython2.4.so -pthread g++46: error: /usr/lib64/libpython2.4.so: No such file or directory compiling the following source file: #include #include extern "C" int main(void) { Py_Initialize(); printf("found version %s", PY_VERSION); #if PY_VERSION_HEX >= 0x02030000 printf(", OK.\n"); return 0; #else printf(", expected version 2.3 or higher\n"); return 1; #endif } using the following command line: g++46 -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc -I/usr/include/python2.4 /usr/lib/64/libpython2.4.so -pthread g++46: error: /usr/lib/64/libpython2.4.so: No such file or directory compiling the following source file: #include #include extern "C" int main(void) { Py_Initialize(); printf("found version %s", PY_VERSION); #if PY_VERSION_HEX >= 0x02030000 printf(", OK.\n"); return 0; #else printf(", expected version 2.3 or higher\n"); return 1; #endif } using the following command line: g++46 -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc -I/usr/include/python2.4 /usr/lib/libpython2.4.so -pthread g++46: error: /usr/lib/libpython2.4.so: No such file or directory compiling the following source file: #include #include extern "C" int main(void) { Py_Initialize(); printf("found version %s", PY_VERSION); #if PY_VERSION_HEX >= 0x02030000 printf(", OK.\n"); return 0; #else printf(", expected version 2.3 or higher\n"); return 1; #endif } using the following command line: g++46 -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc -I/usr/include/python2.3 /usr/lib/x86_64-linux-gnu/libpython2.3.so -pthread g++46: error: /usr/lib/x86_64-linux-gnu/libpython2.3.so: No such file or directory compiling the following source file: #include #include extern "C" int main(void) { Py_Initialize(); printf("found version %s", PY_VERSION); #if PY_VERSION_HEX >= 0x02030000 printf(", OK.\n"); return 0; #else printf(", expected version 2.3 or higher\n"); return 1; #endif } using the following command line: g++46 -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc -I/usr/include/python2.3 /usr/lib/i386-linux-gnu/libpython2.3.so -pthread g++46: error: /usr/lib/i386-linux-gnu/libpython2.3.so: No such file or directory compiling the following source file: #include #include extern "C" int main(void) { Py_Initialize(); printf("found version %s", PY_VERSION); #if PY_VERSION_HEX >= 0x02030000 printf(", OK.\n"); return 0; #else printf(", expected version 2.3 or higher\n"); return 1; #endif } using the following command line: g++46 -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc -I/usr/include/python2.3 /usr/lib64/libpython2.3.so -pthread g++46: error: /usr/lib64/libpython2.3.so: No such file or directory compiling the following source file: #include #include extern "C" int main(void) { Py_Initialize(); printf("found version %s", PY_VERSION); #if PY_VERSION_HEX >= 0x02030000 printf(", OK.\n"); return 0; #else printf(", expected version 2.3 or higher\n"); return 1; #endif } using the following command line: g++46 -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc -I/usr/include/python2.3 /usr/lib/64/libpython2.3.so -pthread g++46: error: /usr/lib/64/libpython2.3.so: No such file or directory compiling the following source file: #include #include extern "C" int main(void) { Py_Initialize(); printf("found version %s", PY_VERSION); #if PY_VERSION_HEX >= 0x02030000 printf(", OK.\n"); return 0; #else printf(", expected version 2.3 or higher\n"); return 1; #endif } using the following command line: g++46 -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc -I/usr/include/python2.3 /usr/lib/libpython2.3.so -pthread g++46: error: /usr/lib/libpython2.3.so: No such file or directory compiling the following source file: #include #include extern "C" int main(void) { Py_Initialize(); printf("found version %s", PY_VERSION); #if PY_VERSION_HEX >= 0x02030000 printf(", OK.\n"); return 0; #else printf(", expected version 2.3 or higher\n"); return 1; #endif } using the following command line: g++46 -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc -I/usr/local/include/python2.7 /usr/local/lib/x86_64-linux-gnu/libpython2.7.so -pthread g++46: error: /usr/local/lib/x86_64-linux-gnu/libpython2.7.so: No such file or directory compiling the following source file: #include #include extern "C" int main(void) { Py_Initialize(); printf("found version %s", PY_VERSION); #if PY_VERSION_HEX >= 0x02030000 printf(", OK.\n"); return 0; #else printf(", expected version 2.3 or higher\n"); return 1; #endif } using the following command line: g++46 -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc -I/usr/local/include/python2.7 /usr/local/lib/i386-linux-gnu/libpython2.7.so -pthread g++46: error: /usr/local/lib/i386-linux-gnu/libpython2.7.so: No such file or directory compiling the following source file: #include #include extern "C" int main(void) { Py_Initialize(); printf("found version %s", PY_VERSION); #if PY_VERSION_HEX >= 0x02030000 printf(", OK.\n"); return 0; #else printf(", expected version 2.3 or higher\n"); return 1; #endif } using the following command line: g++46 -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc -I/usr/local/include/python2.7 /usr/local/lib64/libpython2.7.so -pthread g++46: error: /usr/local/lib64/libpython2.7.so: No such file or directory compiling the following source file: #include #include extern "C" int main(void) { Py_Initialize(); printf("found version %s", PY_VERSION); #if PY_VERSION_HEX >= 0x02030000 printf(", OK.\n"); return 0; #else printf(", expected version 2.3 or higher\n"); return 1; #endif } using the following command line: g++46 -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc -I/usr/local/include/python2.7 /usr/local/lib/64/libpython2.7.so -pthread g++46: error: /usr/local/lib/64/libpython2.7.so: No such file or directory compiling the following source file: #include #include extern "C" int main(void) { Py_Initialize(); printf("found version %s", PY_VERSION); #if PY_VERSION_HEX >= 0x02030000 printf(", OK.\n"); return 0; #else printf(", expected version 2.3 or higher\n"); return 1; #endif } using the following command line: g++46 -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc -I/usr/local/include/python2.7 /usr/local/lib/libpython2.7.so -pthread executing the binary found version 2.7.6, OK. ***** Checking Java support ***** ***** Checking PulseAudio ***** compiling the following source file: #include #include extern "C" int main(void) { printf("found version %s API version %d", pa_get_headers_version(), PA_API_VERSION); #if PA_API_VERSION >= 9 printf(", OK.\n"); return 0; #else printf(", expected version 0.9.0 (API version 9) or higher\n"); return 1; #endif } using the following command line: g++46 -g -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc "-I/usr/local/include -L/usr/local/lib -lpulse" executing the binary found version 0.9.23 API version 12, OK. ***** Checking libvncserver ***** compiling the following source file: #include #include extern "C" int main() { const char* v=LIBVNCSERVER_VERSION; unsigned int major = 0, minor = 0, micro = 0; for (; *v !='.' && *v != '\0'; v++) major = major*10 + *v-'0'; if (*v == '.') v++; for (; *v !='.' && *v != '\0'; v++) minor = minor*10 + *v-'0'; if (*v == '.') v++; for (; *v !='.' && *v != '\0'; v++) micro = micro*10 + *v-'0'; printf("found version %s", LIBVNCSERVER_PACKAGE_VERSION); if (major*10000 + minor*100 + micro >= 900) { printf(", OK.\n"); return 0; } else { printf(", expected version 0.9 or higher\n"); return 1; } } using the following command line: g++46 -g -O -Wall -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_out /usr/ports/emulators/virtualbox-ose/work/VirtualBox-4.3.6/.tmp_src.cc "-L/usr/local/lib -I/usr/local/include" executing the binary found version 0.9.9, OK. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 17 07:20:10 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 453CCE2A; Mon, 17 Feb 2014 07:20:10 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1A63F1D64; Mon, 17 Feb 2014 07: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 s1H7K9dT052748; Mon, 17 Feb 2014 07:20:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1H7K9pU052747; Mon, 17 Feb 2014 07:20:09 GMT (envelope-from edwin) Date: Mon, 17 Feb 2014 07:20:09 GMT Message-Id: <201402170720.s1H7K9pU052747@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vbox@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186832: emulators/virtualbox-ose fails to build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Feb 2014 07:20:10 -0000 Synopsis: emulators/virtualbox-ose fails to build Responsible-Changed-From-To: freebsd-ports-bugs->vbox Responsible-Changed-By: edwin Responsible-Changed-When: Mon Feb 17 07:20:09 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186832 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 17 09:50:01 2014 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 ESMTPS id AD88F2FD for ; Mon, 17 Feb 2014 09:50:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 942AD19BA for ; Mon, 17 Feb 2014 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 s1H9o1EZ006711 for ; Mon, 17 Feb 2014 09:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1H9o19M006710; Mon, 17 Feb 2014 09:50:01 GMT (envelope-from gnats) Date: Mon, 17 Feb 2014 09:50:01 GMT Message-Id: <201402170950.s1H9o19M006710@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Rainer Duffner Subject: Re: ports/185863: security/ossec-hids-client: ossec-hids-* ports don't build on FreeBSD 10 (clang related) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Rainer Duffner List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Feb 2014 09:50:01 -0000 The following reply was made to PR ports/185863; it has been noted by GNATS. From: Rainer Duffner To: Hakisho Nukama , bug-followup@FreeBSD.org Cc: Subject: Re: ports/185863: security/ossec-hids-client: ossec-hids-* ports don't build on FreeBSD 10 (clang related) Date: Mon, 17 Feb 2014 10:43:48 +0100 Am Mon, 17 Feb 2014 07:49:10 +0000 schrieb Hakisho Nukama : > Hey, > > sorry, forgotten to mention the change in files/patch_src__LOCATION: > https://redports.org/browser/Nukama/security/ossec-hids-server/files/patch-src__LOCATION?rev=22848 Ah, I didn't look and thus didn't see it. Now, with the above patch, it builds again. Thanks a lot! > Do you've made some changes for supporting STAGEDIR, I tried > but didn't succeed. > It would be nice to put everything into one commit, > but if we can't figure out how to get it done quickly, why not commit > the changes for building in 10.0-RELEASE fast. Sorry, I have no knowledge of how to stage-ify a port. Best Regards, Rainer From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 17 11:50:00 2014 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 ESMTPS id AF32CCEE for ; Mon, 17 Feb 2014 11:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 89EF31791 for ; Mon, 17 Feb 2014 11: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 s1HBo0pD048379 for ; Mon, 17 Feb 2014 11:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1HBo0CT048378; Mon, 17 Feb 2014 11:50:00 GMT (envelope-from gnats) Resent-Date: Mon, 17 Feb 2014 11:50:00 GMT Resent-Message-Id: <201402171150.s1HBo0CT048378@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, Eero Hnninen Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C456295B for ; Mon, 17 Feb 2014 11:41:18 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AD40116DF for ; Mon, 17 Feb 2014 11:41:18 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1HBfI0H027300 for ; Mon, 17 Feb 2014 11:41:18 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1HBfII9027297; Mon, 17 Feb 2014 11:41:18 GMT (envelope-from nobody) Message-Id: <201402171141.s1HBfII9027297@cgiserv.freebsd.org> Date: Mon, 17 Feb 2014 11:41:18 GMT From: Eero Hnninen To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186834: [maintainer update] textproc/py-regex update to version 2014.02.16 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Feb 2014 11:50:00 -0000 >Number: 186834 >Category: ports >Synopsis: [maintainer update] textproc/py-regex update to version 2014.02.16 >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 Feb 17 11:50:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Eero Hnninen >Release: 10.0-RELEASE >Organization: >Environment: FreeBSD sneezy 10.0-RELEASE FreeBSD 10.0-RELEASE #0 r260789: Thu Jan 16 22:34:59 UTC 2014 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd6 >Description: - update to version 2014.02.16 - added strip command >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN py-regex.orig/Makefile py-regex/Makefile --- py-regex.orig/Makefile 2014-02-09 10:48:25.000000000 +0200 +++ py-regex/Makefile 2014-02-17 13:33:57.000000000 +0200 @@ -1,7 +1,7 @@ # $FreeBSD: head/textproc/py-regex/Makefile 343437 2014-02-09 08:48:25Z koobs $ PORTNAME= regex -PORTVERSION= 2014.01.30 +PORTVERSION= 2014.02.16 CATEGORIES= textproc python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -15,4 +15,7 @@ USE_PYDISTUTILS= yes PYDISTUTILS_AUTOPLIST= yes +post-install: + ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/_regex.so + .include diff -ruN py-regex.orig/distinfo py-regex/distinfo --- py-regex.orig/distinfo 2014-02-09 10:48:25.000000000 +0200 +++ py-regex/distinfo 2014-02-17 13:27:48.000000000 +0200 @@ -1,2 +1,2 @@ -SHA256 (regex-2014.01.30.tar.gz) = 485b0761955a9529274c42533c1352257ac27bfa091994e5a7c0ba6d2f0f3b56 -SIZE (regex-2014.01.30.tar.gz) = 1305821 +SHA256 (regex-2014.02.16.tar.gz) = bd014a9983dfbe3ae4d7c4f70a6fd1a62f66cb870ffb70c718ffc05f3e8e6256 +SIZE (regex-2014.02.16.tar.gz) = 1305703 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 17 12:50:00 2014 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 ESMTPS id 9DAEBA79 for ; Mon, 17 Feb 2014 12:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7464B1C9A for ; Mon, 17 Feb 2014 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 s1HCo0qc069805 for ; Mon, 17 Feb 2014 12:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1HCo0tI069804; Mon, 17 Feb 2014 12:50:00 GMT (envelope-from gnats) Resent-Date: Mon, 17 Feb 2014 12:50:00 GMT Resent-Message-Id: <201402171250.s1HCo0tI069804@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, Antoine Brodin Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 603D9422 for ; Mon, 17 Feb 2014 12:41:50 +0000 (UTC) Received: from pepperseed.dreadbsd.org (88-191-185-190.rev.dedibox.fr [88.191.185.190]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D5A681C3C for ; Mon, 17 Feb 2014 12:41:48 +0000 (UTC) Received: from pepperseed.dreadbsd.org (localhost [127.0.0.1]) by pepperseed.dreadbsd.org (8.14.7/8.14.7) with ESMTP id s1HCaOs5085914 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Mon, 17 Feb 2014 12:36:24 GMT (envelope-from antoine@pepperseed.dreadbsd.org) Received: (from antoine@localhost) by pepperseed.dreadbsd.org (8.14.7/8.14.7/Submit) id s1HCaJDQ085909; Mon, 17 Feb 2014 12:36:19 GMT (envelope-from antoine) Message-Id: <201402171236.s1HCaJDQ085909@pepperseed.dreadbsd.org> Date: Mon, 17 Feb 2014 12:36:19 GMT From: Antoine Brodin To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/186836: [patch] update devel/libewf to 20140216 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Antoine Brodin List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Feb 2014 12:50:00 -0000 >Number: 186836 >Category: ports >Synopsis: [patch] update devel/libewf to 20140216 >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 Feb 17 12:50:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Antoine Brodin >Release: FreeBSD 10.0-RELEASE amd64 >Organization: none >Environment: System: FreeBSD pepperseed.dreadbsd.org 10.0-RELEASE FreeBSD 10.0-RELEASE #0 r260789: Thu Jan 16 22:34:59 UTC 2014 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Update libewf to 20140216 Use libtool to have a more classical library naming scheme Tested with sleuthkit >How-To-Repeat: >Fix: --- libewf.diff begins here --- Index: devel/libewf/Makefile =================================================================== --- devel/libewf/Makefile (revision 344629) +++ devel/libewf/Makefile (working copy) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libewf -PORTVERSION= 20131230 +PORTVERSION= 20140216 CATEGORIES= devel MASTER_SITES= https://googledrive.com/host/0B3fBvzttpiiSMTdoaVExWWNsRjg/ \ LOCAL/antoine @@ -15,7 +15,7 @@ LIB_DEPENDS= libuuid.so:${PORTSDIR}/misc/e2fsprogs-libuuid -USES= fuse gettext iconv pathfix pkgconfig +USES= fuse gettext iconv libtool pathfix pkgconfig USE_LDCONFIG= yes USE_OPENSSL= yes USE_PYTHON= 2 Index: devel/libewf/distinfo =================================================================== --- devel/libewf/distinfo (revision 344629) +++ devel/libewf/distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (libewf-20131230.tar.gz) = e4ffe1b538cb496ca043ab0f738487828babe33285f29b4ce1cbe115af83a92d -SIZE (libewf-20131230.tar.gz) = 2082976 +SHA256 (libewf-20140216.tar.gz) = 90eb590ca305b61f8b3561f58acf24d5c4799f07eff6477ac29c27da7bb5f33c +SIZE (libewf-20140216.tar.gz) = 2132310 Index: devel/libewf/pkg-plist =================================================================== --- devel/libewf/pkg-plist (revision 344629) +++ devel/libewf/pkg-plist (working copy) @@ -17,6 +17,7 @@ lib/libewf.la lib/libewf.so lib/libewf.so.2 +lib/libewf.so.2.0.0 %%PYTHON_SITELIBDIR%%/pyewf.a %%PYTHON_SITELIBDIR%%/pyewf.la %%PYTHON_SITELIBDIR%%/pyewf.so --- libewf.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 17 12:50:08 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B8940AA8; Mon, 17 Feb 2014 12:50:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8E09B1C9C; Mon, 17 Feb 2014 12: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 s1HCo8L5071989; Mon, 17 Feb 2014 12:50:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1HCo8AM071914; Mon, 17 Feb 2014 12:50:08 GMT (envelope-from edwin) Date: Mon, 17 Feb 2014 12:50:08 GMT Message-Id: <201402171250.s1HCo8AM071914@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, nobutaka@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186836: [patch] update devel/libewf to 20140216 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Feb 2014 12:50:08 -0000 Synopsis: [patch] update devel/libewf to 20140216 Responsible-Changed-From-To: freebsd-ports-bugs->nobutaka Responsible-Changed-By: edwin Responsible-Changed-When: Mon Feb 17 12:50:08 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186836 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 17 13:00:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8BE75ED1 for ; Mon, 17 Feb 2014 13:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 67B2D1D67 for ; Mon, 17 Feb 2014 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 s1HD00qM072670 for ; Mon, 17 Feb 2014 13:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1HD00W1072669; Mon, 17 Feb 2014 13:00:00 GMT (envelope-from gnats) Resent-Date: Mon, 17 Feb 2014 13:00:00 GMT Resent-Message-Id: <201402171300.s1HD00W1072669@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 [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 347FFB10 for ; Mon, 17 Feb 2014 12:50:57 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 21E431D02 for ; Mon, 17 Feb 2014 12:50:57 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1HCov0h066137 for ; Mon, 17 Feb 2014 12:50:57 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1HCoukM066136; Mon, 17 Feb 2014 12:50:56 GMT (envelope-from nobody) Message-Id: <201402171250.s1HCoukM066136@cgiserv.freebsd.org> Date: Mon, 17 Feb 2014 12:50:56 GMT From: Daniel Ylitalo To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186837: [PATCH] nrpe2 rc.d script uses hardcoded path X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Feb 2014 13:00:00 -0000 >Number: 186837 >Category: ports >Synopsis: [PATCH] nrpe2 rc.d script uses hardcoded path >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 Feb 17 13:00:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Daniel Ylitalo >Release: 10.0-RELEASE >Organization: 203 Webgroup AB >Environment: FreeBSD la-03-us.p203.se 10.0-RELEASE FreeBSD 10.0-RELEASE #0: Thu Jan 30 16:46:36 PST 2014 root@la-03-us.p203.se:/usr/obj/usr/src/sys/GENERIC amd64 >Description: The nrpe2 rc.d file allows a user to change the location of the nrpe.cfg file. If one were to do so the find_pidfile() function is hardcoded to look in the location of the default path. Attaching patch. >How-To-Repeat: Change the location of the nrpe.cfg file in /etc/rc.conf with: nrpe2_configfile="/your/random/location/nrpe.cfg" and then move the default file there and try to restart nrpe2 >Fix: See attached patch Patch attached with submission follows: --- /usr/local/etc/rc.d/nrpe2.orig 2014-02-17 04:41:58.000000000 -0800 +++ /usr/local/etc/rc.d/nrpe2 2014-02-17 04:43:36.000000000 -0800 @@ -37,7 +37,7 @@ [ -n "$nrpe2_pidfile" ] && warn "No longer necessary to set nrpe2_pidfile in rc.conf[.local]" - if get_pidfile_from_conf pid_file /usr/local/etc/nrpe.cfg; then + if get_pidfile_from_conf pid_file ${nrpe2_configfile}; then pidfile="$_pidfile_from_conf" else pidfile='%%PIDDIR%%/nrpe2.pid' >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 17 13:00:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ECB43ED3 for ; Mon, 17 Feb 2014 13:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AE50E1D69 for ; Mon, 17 Feb 2014 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 s1HD00iF072686 for ; Mon, 17 Feb 2014 13:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1HD00ej072681; Mon, 17 Feb 2014 13:00:00 GMT (envelope-from gnats) Resent-Date: Mon, 17 Feb 2014 13:00:00 GMT Resent-Message-Id: <201402171300.s1HD00ej072681@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 ESMTPS id 29D29C08 for ; Mon, 17 Feb 2014 12:54:44 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1506D1D30 for ; Mon, 17 Feb 2014 12:54:44 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1HCshxL014096 for ; Mon, 17 Feb 2014 12:54:43 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1HCshJD014092; Mon, 17 Feb 2014 12:54:43 GMT (envelope-from nobody) Message-Id: <201402171254.s1HCshJD014092@cgiserv.freebsd.org> Date: Mon, 17 Feb 2014 12:54:43 GMT From: "O. Hartmann" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186838: devel/orc: example1: No such file or directory X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Feb 2014 13:00:01 -0000 >Number: 186838 >Category: ports >Synopsis: devel/orc: example1: No such file or 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 Feb 17 13:00:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: O. Hartmann >Release: FreeBSD 11.0-CURRENT amdd4 >Organization: >Environment: FreeBSD 11.0-CURRENT #3 r261934: Sat Feb 15 17:00:14 CET 2014 >Description: Installation and/or updating of port devel/orc fails: [...] install -o root -g wheel -m 444 orc-0.4.pc '/usr/ports/devel/orc/work/stage/usr/local/libdata/pkgconfig' gmake[5]: Leaving directory `/usr/ports/devel/orc/work/orc-0.4.18' gmake[4]: Leaving directory `/usr/ports/devel/orc/work/orc-0.4.18' gmake[3]: Leaving directory `/usr/ports/devel/orc/work/orc-0.4.18' gmake[2]: Leaving directory `/usr/ports/devel/orc/work/orc-0.4.18' install: /usr/ports/devel/orc/work/orc-0.4.18/examples/example1: No such file or directory *** Error code 71 >How-To-Repeat: Try installing or updating port devel/orc >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 17 13:00:14 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 448A7F33; Mon, 17 Feb 2014 13:00:14 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1B1DC1D6C; Mon, 17 Feb 2014 13: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 s1HD0D9W072821; Mon, 17 Feb 2014 13:00:13 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1HD0DxS072820; Mon, 17 Feb 2014 13:00:13 GMT (envelope-from edwin) Date: Mon, 17 Feb 2014 13:00:13 GMT Message-Id: <201402171300.s1HD0DxS072820@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kwm@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186838: devel/orc: example1: No such file or directory X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Feb 2014 13:00:14 -0000 Synopsis: devel/orc: example1: No such file or directory Responsible-Changed-From-To: freebsd-ports-bugs->kwm Responsible-Changed-By: edwin Responsible-Changed-When: Mon Feb 17 13:00:13 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186838 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 17 14:00:00 2014 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 ESMTPS id C5EC9437 for ; Mon, 17 Feb 2014 14:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A18B11482 for ; Mon, 17 Feb 2014 14: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 s1HE00gQ090640 for ; Mon, 17 Feb 2014 14:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1HE00GQ090639; Mon, 17 Feb 2014 14:00:00 GMT (envelope-from gnats) Resent-Date: Mon, 17 Feb 2014 14:00:00 GMT Resent-Message-Id: <201402171400.s1HE00GQ090639@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 [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 338731C9 for ; Mon, 17 Feb 2014 13:55:32 +0000 (UTC) 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 EEE6A143F for ; Mon, 17 Feb 2014 13:55:31 +0000 (UTC) Received: from www.johnpupu.tw (localhost [127.0.0.1]) by www.johnpupu.tw (Postfix) with ESMTP id 2E260536038 for ; Mon, 17 Feb 2014 21:55:29 +0800 (CST) Received: (from root@localhost) by www.johnpupu.tw (8.14.5/8.14.5/Submit) id s1HDtTfT049267; Mon, 17 Feb 2014 21:55:29 +0800 (CST) (envelope-from johnpupu) Message-Id: <201402171355.s1HDtTfT049267@www.johnpupu.tw> Date: Mon, 17 Feb 2014 21:55:29 +0800 (CST) From: John Chen To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/186840: [MAINTAINER] devel/pecl-pthreads: update to 0.1.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Feb 2014 14:00:00 -0000 >Number: 186840 >Category: ports >Synopsis: [MAINTAINER] devel/pecl-pthreads: update to 0.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: Mon Feb 17 14:00:00 UTC 2014 >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: - Update to 0.1.0 - Redport - https://redports.org/buildarchive/20140217131900-3197/ Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: suffix) >How-To-Repeat: >Fix: --- pecl-pthreads-0.1.0.patch begins here --- diff -ruN --exclude=CVS ../pecl-pthreads.orig/Makefile ./Makefile --- ../pecl-pthreads.orig/Makefile 2014-01-05 09:10:31.000000000 +0800 +++ ./Makefile 2014-02-17 21:17:31.000000000 +0800 @@ -2,7 +2,7 @@ # $FreeBSD: head/devel/pecl-pthreads/Makefile 338628 2014-01-04 08:24:40Z sunpoet $ PORTNAME= pthreads -PORTVERSION= 0.0.45 +PORTVERSION= 0.1.0 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- diff -ruN --exclude=CVS ../pecl-pthreads.orig/distinfo ./distinfo --- ../pecl-pthreads.orig/distinfo 2014-01-05 09:10:31.000000000 +0800 +++ ./distinfo 2014-02-17 21:17:36.000000000 +0800 @@ -1,2 +1,2 @@ -SHA256 (PECL/pthreads-0.0.45.tgz) = 391cf13bd7d05b68be7bf38f09f0c20ee2d31d9eeb48f44e381a11fe4a634108 -SIZE (PECL/pthreads-0.0.45.tgz) = 63703 +SHA256 (PECL/pthreads-0.1.0.tgz) = 55f8533b5be0dd681cb8f7f99d42489981eb6265f5ca1547b08b6ace8eee4c60 +SIZE (PECL/pthreads-0.1.0.tgz) = 69764 --- pecl-pthreads-0.1.0.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 17 14:00:09 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0D16D4CA; Mon, 17 Feb 2014 14:00:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D3E1F1488; Mon, 17 Feb 2014 14: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 s1HE08aN090798; Mon, 17 Feb 2014 14:00:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1HE08wK090797; Mon, 17 Feb 2014 14:00:08 GMT (envelope-from edwin) Date: Mon, 17 Feb 2014 14:00:08 GMT Message-Id: <201402171400.s1HE08wK090797@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186840: [MAINTAINER] devel/pecl-pthreads: update to 0.1.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Feb 2014 14:00:09 -0000 Synopsis: [MAINTAINER] devel/pecl-pthreads: update to 0.1.0 Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: edwin Responsible-Changed-When: Mon Feb 17 14:00:08 UTC 2014 Responsible-Changed-Why: sunpoet@ wants this submitter's PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186840 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 17 14:10:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DB32786E for ; Mon, 17 Feb 2014 14:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B80881595 for ; Mon, 17 Feb 2014 14: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 s1HEA0Gf093826 for ; Mon, 17 Feb 2014 14:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1HEA0Dq093814; Mon, 17 Feb 2014 14:10:00 GMT (envelope-from gnats) Resent-Date: Mon, 17 Feb 2014 14:10:00 GMT Resent-Message-Id: <201402171410.s1HEA0Dq093814@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 ESMTPS id ED27B5F2 for ; Mon, 17 Feb 2014 14:03:24 +0000 (UTC) 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 B1FFD1519 for ; Mon, 17 Feb 2014 14:03:24 +0000 (UTC) Received: from www.johnpupu.tw (localhost [127.0.0.1]) by www.johnpupu.tw (Postfix) with ESMTP id DFCC6536031 for ; Mon, 17 Feb 2014 21:54:36 +0800 (CST) Received: (from root@localhost) by www.johnpupu.tw (8.14.5/8.14.5/Submit) id s1HDsaH3048518; Mon, 17 Feb 2014 21:54:36 +0800 (CST) (envelope-from johnpupu) Message-Id: <201402171354.s1HDsaH3048518@www.johnpupu.tw> Date: Mon, 17 Feb 2014 21:54:36 +0800 (CST) From: John Chen To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/186843: [MAINTAINER] www/pecl-yaf: update to 2.3.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Feb 2014 14:10:01 -0000 >Number: 186843 >Category: ports >Synopsis: [MAINTAINER] www/pecl-yaf: update to 2.3.2 >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 Feb 17 14:10:00 UTC 2014 >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: - Update to 2.3.2 - Redports - https://redports.org/buildarchive/20140217131900-3197/ Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: suffix) >How-To-Repeat: >Fix: --- pecl-yaf-2.3.2.patch begins here --- diff -ruN --exclude=CVS ../pecl-yaf.orig/Makefile ./Makefile --- ../pecl-yaf.orig/Makefile 2014-01-24 09:11:05.000000000 +0800 +++ ./Makefile 2014-02-17 21:21:48.000000000 +0800 @@ -2,7 +2,7 @@ # $FreeBSD: head/www/pecl-yaf/Makefile 340828 2014-01-23 14:32:34Z miwi $ PORTNAME= yaf -PORTVERSION= 2.2.9 +PORTVERSION= 2.3.2 CATEGORIES= www MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- diff -ruN --exclude=CVS ../pecl-yaf.orig/distinfo ./distinfo --- ../pecl-yaf.orig/distinfo 2013-08-10 23:55:12.000000000 +0800 +++ ./distinfo 2014-02-17 21:22:12.000000000 +0800 @@ -1,2 +1,2 @@ -SHA256 (PECL/yaf-2.2.9.tgz) = 6ccae301e6c60b6adcadd50a0c44c34bb6c5a760d5295b842bfd3722001d9db6 -SIZE (PECL/yaf-2.2.9.tgz) = 95034 +SHA256 (PECL/yaf-2.3.2.tgz) = 30dece10e7716982ff25f0117ad630eb65a3fce139a14cb70472f980e302156b +SIZE (PECL/yaf-2.3.2.tgz) = 105177 --- pecl-yaf-2.3.2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 17 14:10:00 2014 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 ESMTPS id 976CC86C for ; Mon, 17 Feb 2014 14:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 724661593 for ; Mon, 17 Feb 2014 14: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 s1HEA0WS093783 for ; Mon, 17 Feb 2014 14:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1HEA0ea093781; Mon, 17 Feb 2014 14:10:00 GMT (envelope-from gnats) Resent-Date: Mon, 17 Feb 2014 14:10:00 GMT Resent-Message-Id: <201402171410.s1HEA0ea093781@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, Vladimir Chukharev Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 78DFE75A for ; Mon, 17 Feb 2014 14:07:24 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 610421568 for ; Mon, 17 Feb 2014 14:07:24 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1HE7Ovb008862 for ; Mon, 17 Feb 2014 14:07:24 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1HE7ODK008861; Mon, 17 Feb 2014 14:07:24 GMT (envelope-from nobody) Message-Id: <201402171407.s1HE7ODK008861@cgiserv.freebsd.org> Date: Mon, 17 Feb 2014 14:07:24 GMT From: Vladimir Chukharev To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186842: [Maintainer Update] devel/py-robotframework-ride 1.2.3 -> 1.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Feb 2014 14:10:00 -0000 >Number: 186842 >Category: ports >Synopsis: [Maintainer Update] devel/py-robotframework-ride 1.2.3 -> 1.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: Mon Feb 17 14:10:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Vladimir Chukharev >Release: 9.2-STABLE >Organization: >Environment: FreeBSD vovaasus 9.2-STABLE FreeBSD 9.2-STABLE #9 r260698: Fri Jan 17 01:31:56 EET 2014 root@vovaasus:/usr/obj/usr/src/sys/VOVA amd64 >Description: >From Mikko Korpela: Feb 13 Hello all! RIDE 1.3 was released yesterday. This release contains support for *.robot extension. Also variable suggestions are now improved. See released notes for the full list of issues https://github.com/robotframework/RIDE/wiki/Release-notes#wiki-ride-1-3 RIDE download packages are now hosted in Python Package Index. >How-To-Repeat: >Fix: Patch attached with submission follows: Index: Makefile =================================================================== --- Makefile (revision 344633) +++ Makefile (working copy) @@ -2,9 +2,9 @@ # $FreeBSD$ PORTNAME= robotframework-ride -PORTVERSION= 1.2.3 +PORTVERSION= 1.3 CATEGORIES= devel www python -MASTER_SITES= GOOGLE_CODE +MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= Vladimir.Chukharev@gmail.com Index: distinfo =================================================================== --- distinfo (revision 344633) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (robotframework-ride-1.2.3.tar.gz) = b2f4a28400b206358c9b48c3378388f1ffc8ba16a1cfba064aed38803a71c5d1 -SIZE (robotframework-ride-1.2.3.tar.gz) = 866289 +SHA256 (robotframework-ride-1.3.tar.gz) = b35c2fa4c7f78880253e28ea48120cd733a23427aa61139c1d3973a1e1ba90b7 +SIZE (robotframework-ride-1.3.tar.gz) = 866683 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 17 14:10:15 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3F1E89A5; Mon, 17 Feb 2014 14:10:15 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1585A159B; Mon, 17 Feb 2014 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 s1HEAESZ094016; Mon, 17 Feb 2014 14:10:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1HEAEnr094015; Mon, 17 Feb 2014 14:10:14 GMT (envelope-from edwin) Date: Mon, 17 Feb 2014 14:10:14 GMT Message-Id: <201402171410.s1HEAEnr094015@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186843: [MAINTAINER] www/pecl-yaf: update to 2.3.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Feb 2014 14:10:15 -0000 Synopsis: [MAINTAINER] www/pecl-yaf: update to 2.3.2 Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: edwin Responsible-Changed-When: Mon Feb 17 14:10:14 UTC 2014 Responsible-Changed-Why: sunpoet@ wants this submitter's PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186843 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 17 14:10:09 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 981B78BB; Mon, 17 Feb 2014 14:10:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 694971598; Mon, 17 Feb 2014 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 s1HEA986093933; Mon, 17 Feb 2014 14:10:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1HEA9bK093932; Mon, 17 Feb 2014 14:10:09 GMT (envelope-from edwin) Date: Mon, 17 Feb 2014 14:10:09 GMT Message-Id: <201402171410.s1HEA9bK093932@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186842: [Maintainer Update] devel/py-robotframework-ride 1.2.3 -> 1.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Feb 2014 14:10:09 -0000 Synopsis: [Maintainer Update] devel/py-robotframework-ride 1.2.3 -> 1.3 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Mon Feb 17 14:10:09 UTC 2014 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186842 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 17 14:30:00 2014 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 ESMTPS id C2059EEA for ; Mon, 17 Feb 2014 14:30:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8435D174A for ; Mon, 17 Feb 2014 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 s1HEU0tt000532 for ; Mon, 17 Feb 2014 14:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1HEU0Or000531; Mon, 17 Feb 2014 14:30:00 GMT (envelope-from gnats) Resent-Date: Mon, 17 Feb 2014 14:30:00 GMT Resent-Message-Id: <201402171430.s1HEU0Or000531@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, Bryan Drewery Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DBB29D0B for ; Mon, 17 Feb 2014 14:21:11 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AE80E16EE for ; Mon, 17 Feb 2014 14:21:11 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1HELBH7013949 for ; Mon, 17 Feb 2014 14:21:11 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1HELBTF013945; Mon, 17 Feb 2014 14:21:11 GMT (envelope-from nobody) Message-Id: <201402171421.s1HELBTF013945@cgiserv.freebsd.org> Date: Mon, 17 Feb 2014 14:21:11 GMT From: Bryan Drewery To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186844: sysutils/bsdinfo X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Feb 2014 14:30:00 -0000 >Number: 186844 >Category: ports >Synopsis: sysutils/bsdinfo >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 Feb 17 14:30:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Bryan Drewery >Release: >Organization: >Environment: >Description: I would like to enable X256 option by default. I find this utility great for testing term to see if it properly supports 256 colors. I have been using the X256 option and have not had any problems with the display on non-256 terms. It still looks better than the default outline version. Are you ok with that change? >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 17 14:30:08 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 81B9DF1C; Mon, 17 Feb 2014 14:30:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 57FAF17A3; Mon, 17 Feb 2014 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 s1HEU8qe000662; Mon, 17 Feb 2014 14:30:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1HEU8lO000661; Mon, 17 Feb 2014 14:30:08 GMT (envelope-from edwin) Date: Mon, 17 Feb 2014 14:30:08 GMT Message-Id: <201402171430.s1HEU8lO000661@freefall.freebsd.org> To: bdrewery@FreeBSD.org, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186844: sysutils/bsdinfo X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Feb 2014 14:30:08 -0000 Synopsis: sysutils/bsdinfo State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Mon Feb 17 14:30:08 UTC 2014 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186844 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 17 14:40:02 2014 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 ESMTPS id 9EE673F4 for ; Mon, 17 Feb 2014 14:40:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8C3741865 for ; Mon, 17 Feb 2014 14: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 s1HEe2rC003500 for ; Mon, 17 Feb 2014 14:40:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1HEe2H3003498; Mon, 17 Feb 2014 14:40:02 GMT (envelope-from gnats) Date: Mon, 17 Feb 2014 14:40:02 GMT Message-Id: <201402171440.s1HEe2H3003498@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/186844: sysutils/bsdinfo X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 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, 17 Feb 2014 14:40:02 -0000 The following reply was made to PR ports/186844; it has been noted by GNATS. From: Edwin Groothuis To: s@samu.pl Cc: bug-followup@FreeBSD.org Subject: Re: ports/186844: sysutils/bsdinfo Date: Mon, 17 Feb 2014 14:30:07 UT Maintainer of sysutils/bsdinfo, Please note that PR ports/186844 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/186844 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 17 14:40:04 2014 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 ESMTPS id 2E8693FB for ; Mon, 17 Feb 2014 14:40:04 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 093A71869 for ; Mon, 17 Feb 2014 14: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 s1HEe39s003517 for ; Mon, 17 Feb 2014 14:40:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1HEe3iS003516; Mon, 17 Feb 2014 14:40:03 GMT (envelope-from gnats) Resent-Date: Mon, 17 Feb 2014 14:40:03 GMT Resent-Message-Id: <201402171440.s1HEe3iS003516@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 ESMTPS id D0E6E3D5 for ; Mon, 17 Feb 2014 14:39:07 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BD60E1854 for ; Mon, 17 Feb 2014 14:39:07 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1HEd7vE036634 for ; Mon, 17 Feb 2014 14:39:07 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1HEd7SR036627; Mon, 17 Feb 2014 14:39:07 GMT (envelope-from nobody) Message-Id: <201402171439.s1HEd7SR036627@cgiserv.freebsd.org> Date: Mon, 17 Feb 2014 14:39:07 GMT From: Bartek Rutkowski To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186845: [MAINTAINER UPDATE] sysutils/rubygem-hiera 1.3.0 -> 1.3.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Feb 2014 14:40:04 -0000 >Number: 186845 >Category: ports >Synopsis: [MAINTAINER UPDATE] sysutils/rubygem-hiera 1.3.0 -> 1.3.1 >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 Feb 17 14:40:03 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Bartek Rutkowski >Release: 9.2-R >Organization: Pixeware LTD >Environment: FreeBSD ports-dev 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255898: Thu Sep 26 22:50:31 UTC 2013 root@bake.isc.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: This is update of sysutils/rubygem-hiera to latest 1.3.1 version. The redports build report is available here: https://redports.org/buildarchive/20140217134223-97197/ >How-To-Repeat: Use the patch attached, test, commit. >Fix: Patch attached. Patch attached with submission follows: diff -ruN rubygem-hiera.orig/Makefile rubygem-hiera/Makefile --- rubygem-hiera.orig/Makefile 2014-02-16 22:19:41.000000000 +0100 +++ rubygem-hiera/Makefile 2014-02-16 22:55:42.000000000 +0100 @@ -2,7 +2,7 @@ # $FreeBSD: head/sysutils/rubygem-hiera/Makefile 336741 2013-12-17 16:28:50Z glarkin $ PORTNAME= hiera -PORTVERSION= 1.3.0 +PORTVERSION= 1.3.1 CATEGORIES= sysutils rubygems MASTER_SITES= RG @@ -14,7 +14,9 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -PLIST_FILES= bin/hiera +PLIST_FILES= bin/hiera \ + share/nls/en_US.US-ASCII \ + share/nls/POSIX HIERA_DBDIR= /var/db/hiera NO_STAGE= yes diff -ruN rubygem-hiera.orig/distinfo rubygem-hiera/distinfo --- rubygem-hiera.orig/distinfo 2014-02-16 22:19:41.000000000 +0100 +++ rubygem-hiera/distinfo 2014-02-16 22:20:08.000000000 +0100 @@ -1,2 +1,2 @@ -SHA256 (rubygem/hiera-1.3.0.gem) = 948a7e323a2f722d84d1e46224424a67e126c80d052667e94047f3e6fa2a460e -SIZE (rubygem/hiera-1.3.0.gem) = 28672 +SHA256 (rubygem/hiera-1.3.1.gem) = 5df6f67e36c1db217cb7a74c8f0754b0c10f78934a4e394d5dc7788cf4329943 +SIZE (rubygem/hiera-1.3.1.gem) = 29184 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 17 14:40:18 2014 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 ESMTPS id E33CB4BB; Mon, 17 Feb 2014 14:40:18 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B9AA9186D; Mon, 17 Feb 2014 14:40: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 s1HEeIlA003602; Mon, 17 Feb 2014 14:40:18 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1HEeIZ2003601; Mon, 17 Feb 2014 14:40:18 GMT (envelope-from edwin) Date: Mon, 17 Feb 2014 14:40:18 GMT Message-Id: <201402171440.s1HEeIZ2003601@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ruby@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186845: [MAINTAINER UPDATE] sysutils/rubygem-hiera 1.3.0 -> 1.3.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Feb 2014 14:40:19 -0000 Synopsis: [MAINTAINER UPDATE] sysutils/rubygem-hiera 1.3.0 -> 1.3.1 Responsible-Changed-From-To: freebsd-ports-bugs->ruby Responsible-Changed-By: edwin Responsible-Changed-When: Mon Feb 17 14:40:18 UTC 2014 Responsible-Changed-Why: ruby@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186845 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 17 15:14:06 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 52D423FD; Mon, 17 Feb 2014 15:14:06 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 23EF51C5E; Mon, 17 Feb 2014 15:14: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 s1HFE56G016007; Mon, 17 Feb 2014 15:14:05 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1HFE5Zl016006; Mon, 17 Feb 2014 15:14:05 GMT (envelope-from eadler) Date: Mon, 17 Feb 2014 15:14:05 GMT Message-Id: <201402171514.s1HFE5Zl016006@freefall.freebsd.org> To: eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, zeising@FreeBSD.org From: eadler@FreeBSD.org Subject: Re: ports/186837: [PATCH] nrpe2 rc.d script uses hardcoded path X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Feb 2014 15:14:06 -0000 Synopsis: [PATCH] nrpe2 rc.d script uses hardcoded path Responsible-Changed-From-To: freebsd-ports-bugs->zeising Responsible-Changed-By: eadler Responsible-Changed-When: Mon Feb 17 15:14:05 UTC 2014 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=186837 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 17 15:50:02 2014 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 ESMTPS id 05C0AC3A for ; Mon, 17 Feb 2014 15:50:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D0B4C1081 for ; Mon, 17 Feb 2014 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 s1HFo1GT024933 for ; Mon, 17 Feb 2014 15:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1HFo1xp024932; Mon, 17 Feb 2014 15:50:01 GMT (envelope-from gnats) Resent-Date: Mon, 17 Feb 2014 15:50:01 GMT Resent-Message-Id: <201402171550.s1HFo1xp024932@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, Tijl Coosemans Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D4C0390A for ; Mon, 17 Feb 2014 15:41:20 +0000 (UTC) Received: from mailrelay004.isp.belgacom.be (mailrelay004.isp.belgacom.be [195.238.6.170]) by mx1.freebsd.org (Postfix) with ESMTP id 6E7FA1FD1 for ; Mon, 17 Feb 2014 15:41:19 +0000 (UTC) Received: from 103.139-176-91.adsl-dyn.isp.belgacom.be (HELO kalimero.tijl.coosemans.org) ([91.176.139.103]) by relay.skynet.be with ESMTP; 17 Feb 2014 16:41:12 +0100 Received: from kalimero.tijl.coosemans.org (kalimero.tijl.coosemans.org [127.0.0.1]) by kalimero.tijl.coosemans.org (8.14.8/8.14.8) with ESMTP id s1HFfBwR019335 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Mon, 17 Feb 2014 16:41:11 +0100 (CET) (envelope-from tijl@kalimero.tijl.coosemans.org) Received: (from tijl@localhost) by kalimero.tijl.coosemans.org (8.14.8/8.14.8/Submit) id s1HFfBsH019334; Mon, 17 Feb 2014 16:41:11 +0100 (CET) (envelope-from tijl) Message-Id: <201402171541.s1HFfBsH019334@kalimero.tijl.coosemans.org> Date: Mon, 17 Feb 2014 16:41:11 +0100 (CET) From: Tijl Coosemans To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/186846: [patch] converters/libiconv: compilation with -Oz broken X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 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: Mon, 17 Feb 2014 15:50:02 -0000 >Number: 186846 >Category: ports >Synopsis: [patch] converters/libiconv: compilation with -Oz broken >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 Feb 17 15:50:01 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Tijl Coosemans >Release: FreeBSD 11.0-CURRENT i386 >Organization: >Environment: >Description: Compilation is currently broken with clang and "env CFLAGS=-Oz make". libtool: link: cc -Oz -fno-strict-aliasing iconv_no_i18n.o -o .libs/iconv_no_i18 n ../srclib/libicrt.a ../lib/.libs/libiconv.so -Wl,-rpath -Wl,/usr/local/lib ../lib/.libs/libiconv.so: undefined reference to `aliases2_lookup' cc: error: linker command failed with exit code 1 (use -v to see invocation) *** Error code 1 aliases2_lookup is an inline function that isn't inlined with -Oz so it must be exported, meaning the code expects gnu89 semantics for the inline keyword. The patch below also enables -fvisibility=hidden and adds a patch to keep some symbols like iconv_open visible. It was disabled because it caused these symbols to be hidden: http://www.marcuscom.com:8080/cgi-bin/cvsweb.cgi/ports/converters/libiconv/Attic/Makefile?rev=1.2&content-type=text/x-cvsweb-markup >How-To-Repeat: >Fix: --- libiconv.patch begins here --- Index: converters/libiconv/Makefile =================================================================== --- converters/libiconv/Makefile (revision 344709) +++ converters/libiconv/Makefile (working copy) @@ -3,21 +3,21 @@ PORTNAME= libiconv PORTVERSION= 1.14 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= converters devel MASTER_SITES= GNU MAINTAINER= gnome@FreeBSD.org -COMMENT= A character set conversion library +COMMENT= Character set conversion library GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-static \ --without-libintl-prefix \ --docdir=${DOCSDIR} -CONFIGURE_ENV= gl_cv_cc_visibility="no" \ - am_cv_func_iconv="yes" \ +CONFIGURE_ENV= am_cv_func_iconv="yes" \ am_cv_proto_iconv_arg1="const" MAKE_JOBS_UNSAFE= yes +USE_CSTD= gnu89 USE_LDCONFIG= yes OPTIONS_DEFINE= ENCODINGS PATCHES Index: converters/libiconv/files/patch-lib-iconv.c =================================================================== --- converters/libiconv/files/patch-lib-iconv.c (revision 0) +++ converters/libiconv/files/patch-lib-iconv.c (working copy) @@ -0,0 +1,11 @@ +--- lib/iconv.c.orig ++++ lib/iconv.c +@@ -598,7 +598,7 @@ + It wants to define the symbols 'iconv_open', 'iconv', 'iconv_close'. */ + #define strong_alias(name, aliasname) _strong_alias(name, aliasname) + #define _strong_alias(name, aliasname) \ +- extern __typeof (name) aliasname __attribute__ ((alias (#name))); ++ extern LIBICONV_DLL_EXPORTED __typeof (name) aliasname __attribute__ ((alias (#name))); + #undef iconv_open + #undef iconv + #undef iconv_close Property changes on: converters/libiconv/files/patch-lib-iconv.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 --- libiconv.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 17 15:50:10 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CA290C9B; Mon, 17 Feb 2014 15:50:10 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9FD6F1082; Mon, 17 Feb 2014 15: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 s1HFoA0k025015; Mon, 17 Feb 2014 15:50:10 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1HFoAQg025014; Mon, 17 Feb 2014 15:50:10 GMT (envelope-from edwin) Date: Mon, 17 Feb 2014 15:50:10 GMT Message-Id: <201402171550.s1HFoAQg025014@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186846: [patch] converters/libiconv: compilation with -Oz broken X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Feb 2014 15:50:10 -0000 Synopsis: [patch] converters/libiconv: compilation with -Oz broken Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Mon Feb 17 15:50:10 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186846 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 17 16:00:01 2014 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 ESMTPS id B28F93FA for ; Mon, 17 Feb 2014 16:00:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9E4A9117E for ; Mon, 17 Feb 2014 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 s1HG01WQ027766 for ; Mon, 17 Feb 2014 16:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1HG01CM027765; Mon, 17 Feb 2014 16:00:01 GMT (envelope-from gnats) Date: Mon, 17 Feb 2014 16:00:01 GMT Message-Id: <201402171600.s1HG01CM027765@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: =?UTF-8?B?SmFrdWIgU3phZnJhxYRza2k=?= Subject: Re: ports/186844: sysutils/bsdinfo X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: =?UTF-8?B?SmFrdWIgU3phZnJhxYRza2k=?= List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Feb 2014 16:00:01 -0000 The following reply was made to PR ports/186844; it has been noted by GNATS. From: =?UTF-8?B?SmFrdWIgU3phZnJhxYRza2k=?= To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/186844: sysutils/bsdinfo Date: Mon, 17 Feb 2014 16:37:59 +0100 Yes, that sounds good. In fact, I am getting feedback that people don't really compile bsdinfo with the outline option that often. -- Pozdrawiam, Jakub 'samu' Szafrański http://samu.pl W dniu 17.02.2014 15:30, Edwin Groothuis pisze: > Maintainer of sysutils/bsdinfo, > > Please note that PR ports/186844 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/186844 > From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 17 17:50:01 2014 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 ESMTPS id 135D248A for ; Mon, 17 Feb 2014 17:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A020E1C63 for ; Mon, 17 Feb 2014 17: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 s1HHo0Ma061747 for ; Mon, 17 Feb 2014 17:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1HHo0XI061746; Mon, 17 Feb 2014 17:50:00 GMT (envelope-from gnats) Resent-Date: Mon, 17 Feb 2014 17:50:00 GMT Resent-Message-Id: <201402171750.s1HHo0XI061746@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, Fernando Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 213B29D3 for ; Mon, 17 Feb 2014 17:43:32 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id F3D161C01 for ; Mon, 17 Feb 2014 17:43:31 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1HHhVVP010030 for ; Mon, 17 Feb 2014 17:43:31 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1HHhVLe010029; Mon, 17 Feb 2014 17:43:31 GMT (envelope-from nobody) Message-Id: <201402171743.s1HHhVLe010029@cgiserv.freebsd.org> Date: Mon, 17 Feb 2014 17:43:31 GMT From: Fernando To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186849: [maintainer update] Important update lang/basic256 to 1.1.0.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Feb 2014 17:50:01 -0000 >Number: 186849 >Category: ports >Synopsis: [maintainer update] Important update lang/basic256 to 1.1.0.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: Mon Feb 17 17:50:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Fernando >Release: 9.1-RELEASE >Organization: >Environment: FreeBSD beastie 9.1-RELEASE-p3 FreeBSD 9.1-RELEASE-p3 #0: Tue Jun 11 18:21:20 CEST 2013 root@beastie:/usr/obj/usr/src/sys/APEKERNEL-9.1 amd64 >Description: Update lang/basic256 to 1.1.0.0 >How-To-Repeat: >Fix: Apply the attached patch. One of the patches in files/ is not necessary anymore since it was accepted upstream. The rest are minor changes. The patch was tested in redports but due to a problem with circular dependencies (or something else) the status of the build couldn't be determined. It passes a $port test exam too. https://redports.org/buildarchive/20140216193137-53772 Patch attached with submission follows: diff -ruN /usr/ports/lang/basic256/Makefile lang/basic256/Makefile --- /usr/ports/lang/basic256/Makefile 2013-11-28 19:16:33.000000000 +0100 +++ lang/basic256/Makefile 2014-02-15 19:22:14.000000000 +0100 @@ -2,12 +2,11 @@ # $FreeBSD: lang/basic256/Makefile 335118 2013-11-28 18:16:33Z makc $ PORTNAME= basic256 -PORTVERSION= 1.0.0.0 +PORTVERSION= 1.1.0.0 CATEGORIES= lang MASTER_SITES= SF MASTER_SITE_SUBDIR= kidbasic/${PORTNAME} -DISTNAME= ${PORTNAME}_${PORTVERSION} -EXTRACT_SUFX= .tgz +DISTNAME= ${PORTNAME}_${PORTVERSION}.orig MAINTAINER= fernando.apesteguia@gmail.com COMMENT= Easy to use BASIC language and IDE for education @@ -16,16 +15,16 @@ sqlite3:${PORTSDIR}/databases/sqlite3 \ flex:${PORTSDIR}/textproc/flex +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} + USES= bison dos2unix qmake USE_SDL= sdl mixer USE_QT4= corelib gui network xml webkit moc_build rcc_build uic_build QMAKE_SOURCE_PATH= BASIC256.pro -NO_WRKSUBDIR= yes MAKE_JOBS_UNSAFE= yes post-patch: - @${REINPLACE_CMD} -e 's/mutex/mymutex/' ${WRKSRC}/*.cpp @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|' ${WRKSRC}/BASIC256.pro .include diff -ruN /usr/ports/lang/basic256/distinfo lang/basic256/distinfo --- /usr/ports/lang/basic256/distinfo 2013-11-19 23:39:50.000000000 +0100 +++ lang/basic256/distinfo 2014-02-14 16:15:53.000000000 +0100 @@ -1,2 +1,2 @@ -SHA256 (basic256_1.0.0.0.tgz) = 4eda84360eb576b38b7e514aeb8f2700681f81521932532d60693bc6c85a6652 -SIZE (basic256_1.0.0.0.tgz) = 1848926 +SHA256 (basic256_1.1.0.0.orig.tar.gz) = e89d039a055c74b13a23890d0200af37f171b5a48a7174fb08acfb35c1506c63 +SIZE (basic256_1.1.0.0.orig.tar.gz) = 2043561 diff -ruN /usr/ports/lang/basic256/files/patch-BASIC256.pro lang/basic256/files/patch-BASIC256.pro --- /usr/ports/lang/basic256/files/patch-BASIC256.pro 2013-11-19 23:39:50.000000000 +0100 +++ lang/basic256/files/patch-BASIC256.pro 2014-02-15 18:46:25.000000000 +0100 @@ -1,5 +1,5 @@ ---- BASIC256.pro.orig 2013-11-13 18:26:47.000000000 +0100 -+++ BASIC256.pro 2013-11-13 18:36:29.000000000 +0100 +--- BASIC256.pro.orig 2014-02-15 18:45:35.000000000 +0100 ++++ BASIC256.pro 2014-02-15 18:46:10.000000000 +0100 @@ -82,7 +82,7 @@ ## TTS Option 2 - use the espeak library @@ -9,7 +9,7 @@ LIBS += -lespeak LIBS += -lm -@@ -113,19 +113,19 @@ +@@ -117,19 +117,19 @@ # rules for make install ######## exampleFiles.files = ./Examples @@ -28,7 +28,7 @@ INSTALLS += transFiles # main program executable -- target.path = /usr/local/bin +- target.path = /usr/bin + target.path = $$PREFIX/bin INSTALLS += target diff -ruN /usr/ports/lang/basic256/files/patch-BasicGraph.cpp lang/basic256/files/patch-BasicGraph.cpp --- /usr/ports/lang/basic256/files/patch-BasicGraph.cpp 2013-11-19 23:39:50.000000000 +0100 +++ lang/basic256/files/patch-BasicGraph.cpp 1970-01-01 01:00:00.000000000 +0100 @@ -1,10 +0,0 @@ ---- BasicGraph.cpp.orig 2013-09-28 18:25:56.000000000 +0200 -+++ BasicGraph.cpp 2013-09-28 18:26:06.000000000 +0200 -@@ -37,7 +37,6 @@ - #include - #endif - --using namespace std; - - #include "BasicGraph.h" - diff -ruN /usr/ports/lang/basic256/pkg-plist lang/basic256/pkg-plist --- /usr/ports/lang/basic256/pkg-plist 2013-11-19 23:39:50.000000000 +0100 +++ lang/basic256/pkg-plist 2014-02-15 19:32:41.000000000 +0100 @@ -1,4 +1,4 @@ -bin/BASIC256 +bin/basic256 %%DATADIR%%/Examples/15puzzle.kbs %%DATADIR%%/Examples/15puzzle_new.kbs %%DATADIR%%/Examples/BASICtest1.kbs @@ -47,6 +47,7 @@ %%DATADIR%%/Examples/poly.kbs %%DATADIR%%/Examples/polytest.kbs %%DATADIR%%/Examples/quotations.kbs +%%DATADIR%%/Examples/quotations.sqlite3 %%DATADIR%%/Examples/rainbow.kbs %%DATADIR%%/Examples/ring_01.kbs %%DATADIR%%/Examples/rotating3dcube.kbs @@ -73,6 +74,7 @@ %%DATADIR%%/Examples/subroutine_global.kbs %%DATADIR%%/Examples/subroutine_squares.kbs %%DATADIR%%/Examples/teamdatabase.kbs +%%DATADIR%%/Examples/teamdatabase.sqlite3 %%DATADIR%%/Examples/testing/2darraytest.kbs %%DATADIR%%/Examples/testing/2dstrarraytest.kbs %%DATADIR%%/Examples/testing/KalRGB.kbs @@ -105,8 +107,6 @@ %%DATADIR%%/Examples/testing/testplusplus.kbs %%DATADIR%%/Examples/testing/testplusplus2.kbs %%DATADIR%%/Examples/testing/testsubroutinebyref.kbs -%%DATADIR%%/Examples/testing/testsuite.kbs -%%DATADIR%%/Examples/testing/testsuite_functions.kbs %%DATADIR%%/Examples/testing/testtextfont.kbs %%DATADIR%%/Examples/testing/testtime.kbs %%DATADIR%%/Examples/testing/uaarray.kbs @@ -289,6 +289,9 @@ %%DATADIR%%/help/en_commandline.html %%DATADIR%%/help/en_compileerrorcodes.html %%DATADIR%%/help/en_confirm.html +%%DATADIR%%/help/en_continuedo.html +%%DATADIR%%/help/en_continuefor.html +%%DATADIR%%/help/en_continuewhile.html %%DATADIR%%/help/en_cos.html %%DATADIR%%/help/en_count.html %%DATADIR%%/help/en_countx.html @@ -320,6 +323,9 @@ %%DATADIR%%/help/en_eof.html %%DATADIR%%/help/en_errorcodes.html %%DATADIR%%/help/en_exists.html +%%DATADIR%%/help/en_exitdo.html +%%DATADIR%%/help/en_exitfor.html +%%DATADIR%%/help/en_exitwhile.html %%DATADIR%%/help/en_exp.html %%DATADIR%%/help/en_explode.html %%DATADIR%%/help/en_explodex.html @@ -357,6 +363,7 @@ %%DATADIR%%/help/en_imgload.html %%DATADIR%%/help/en_imgsave.html %%DATADIR%%/help/en_implode.html +%%DATADIR%%/help/en_include.html %%DATADIR%%/help/en_input.html %%DATADIR%%/help/en_instr.html %%DATADIR%%/help/en_instrx.html @@ -405,6 +412,10 @@ %%DATADIR%%/help/en_portin.html %%DATADIR%%/help/en_portout.html %%DATADIR%%/help/en_print.html +%%DATADIR%%/help/en_printercancel.html +%%DATADIR%%/help/en_printeroff.html +%%DATADIR%%/help/en_printeron.html +%%DATADIR%%/help/en_printerpage.html %%DATADIR%%/help/en_programsyntax.html %%DATADIR%%/help/en_prompt.html %%DATADIR%%/help/en_putslice.html @@ -439,6 +450,7 @@ %%DATADIR%%/help/en_spriteload.html %%DATADIR%%/help/en_spritemove.html %%DATADIR%%/help/en_spriteplace.html +%%DATADIR%%/help/en_spritepoly.html %%DATADIR%%/help/en_spriter.html %%DATADIR%%/help/en_sprites.html %%DATADIR%%/help/en_spriteshow.html @@ -458,6 +470,7 @@ %%DATADIR%%/help/en_tan.html %%DATADIR%%/help/en_techinformation.html %%DATADIR%%/help/en_text.html +%%DATADIR%%/help/en_textheight.html %%DATADIR%%/help/en_textwidth.html %%DATADIR%%/help/en_then.html %%DATADIR%%/help/en_throwerror.html @@ -643,13 +656,17 @@ %%DATADIR%%/help/es_year.html %%DATADIR%%/help/fr_abs.html %%DATADIR%%/help/fr_acos.html +%%DATADIR%%/help/fr_alert.html %%DATADIR%%/help/fr_anonymousarrays.html +%%DATADIR%%/help/fr_arc.html %%DATADIR%%/help/fr_arrays.html %%DATADIR%%/help/fr_asc.html %%DATADIR%%/help/fr_asin.html %%DATADIR%%/help/fr_atan.html +%%DATADIR%%/help/fr_call.html %%DATADIR%%/help/fr_ceil.html %%DATADIR%%/help/fr_changedir.html +%%DATADIR%%/help/fr_chord.html %%DATADIR%%/help/fr_chr.html %%DATADIR%%/help/fr_circle.html %%DATADIR%%/help/fr_clg.html @@ -660,7 +677,12 @@ %%DATADIR%%/help/fr_close.html %%DATADIR%%/help/fr_cls.html %%DATADIR%%/help/fr_color.html +%%DATADIR%%/help/fr_commandline.html +%%DATADIR%%/help/fr_compileerrorcodes.html +%%DATADIR%%/help/fr_confirm.html %%DATADIR%%/help/fr_cos.html +%%DATADIR%%/help/fr_count.html +%%DATADIR%%/help/fr_countx.html %%DATADIR%%/help/fr_currentdir.html %%DATADIR%%/help/fr_day.html %%DATADIR%%/help/fr_dbclose.html @@ -668,6 +690,7 @@ %%DATADIR%%/help/fr_dbexecute.html %%DATADIR%%/help/fr_dbfloat.html %%DATADIR%%/help/fr_dbint.html +%%DATADIR%%/help/fr_dbnull.html %%DATADIR%%/help/fr_dbopen.html %%DATADIR%%/help/fr_dbopenset.html %%DATADIR%%/help/fr_dbrow.html @@ -675,30 +698,59 @@ %%DATADIR%%/help/fr_decimal.html %%DATADIR%%/help/fr_degrees.html %%DATADIR%%/help/fr_dim.html +%%DATADIR%%/help/fr_dir.html %%DATADIR%%/help/fr_dountil.html +%%DATADIR%%/help/fr_editvisible.html +%%DATADIR%%/help/fr_else.html %%DATADIR%%/help/fr_end.html +%%DATADIR%%/help/fr_endfunction.html +%%DATADIR%%/help/fr_endif.html +%%DATADIR%%/help/fr_endsubroutine.html +%%DATADIR%%/help/fr_endwhile.html %%DATADIR%%/help/fr_eof.html %%DATADIR%%/help/fr_errorcodes.html %%DATADIR%%/help/fr_exists.html +%%DATADIR%%/help/fr_exp.html +%%DATADIR%%/help/fr_explode.html +%%DATADIR%%/help/fr_explodex.html %%DATADIR%%/help/fr_fastgraphics.html %%DATADIR%%/help/fr_float.html %%DATADIR%%/help/fr_floor.html %%DATADIR%%/help/fr_font.html %%DATADIR%%/help/fr_fornext.html +%%DATADIR%%/help/fr_freedb.html +%%DATADIR%%/help/fr_freedbset.html +%%DATADIR%%/help/fr_freefile.html +%%DATADIR%%/help/fr_freenet.html +%%DATADIR%%/help/fr_frombinary.html +%%DATADIR%%/help/fr_fromhex.html +%%DATADIR%%/help/fr_fromoctal.html +%%DATADIR%%/help/fr_fromradix.html +%%DATADIR%%/help/fr_function.html +%%DATADIR%%/help/fr_getbrushcolor.html %%DATADIR%%/help/fr_getcolor.html +%%DATADIR%%/help/fr_getpenwidth.html +%%DATADIR%%/help/fr_getsetting.html %%DATADIR%%/help/fr_getslice.html +%%DATADIR%%/help/fr_global.html +%%DATADIR%%/help/fr_gosub.html %%DATADIR%%/help/fr_gosubreturn.html %%DATADIR%%/help/fr_goto.html %%DATADIR%%/help/fr_graphheight.html %%DATADIR%%/help/fr_graphsize.html +%%DATADIR%%/help/fr_graphvisible.html %%DATADIR%%/help/fr_graphwidth.html %%DATADIR%%/help/fr_hour.html %%DATADIR%%/help/fr_ifthen.html %%DATADIR%%/help/fr_imgload.html +%%DATADIR%%/help/fr_imgsave.html +%%DATADIR%%/help/fr_implode.html %%DATADIR%%/help/fr_input.html %%DATADIR%%/help/fr_instr.html +%%DATADIR%%/help/fr_instrx.html %%DATADIR%%/help/fr_int.html %%DATADIR%%/help/fr_key.html +%%DATADIR%%/help/fr_kill.html %%DATADIR%%/help/fr_lasterror.html %%DATADIR%%/help/fr_lasterrorextra.html %%DATADIR%%/help/fr_lasterrorline.html @@ -709,44 +761,63 @@ %%DATADIR%%/help/fr_log.html %%DATADIR%%/help/fr_log10.html %%DATADIR%%/help/fr_lower.html +%%DATADIR%%/help/fr_md5.html %%DATADIR%%/help/fr_mid.html %%DATADIR%%/help/fr_minute.html %%DATADIR%%/help/fr_month.html %%DATADIR%%/help/fr_mouseb.html %%DATADIR%%/help/fr_mousex.html %%DATADIR%%/help/fr_mousey.html +%%DATADIR%%/help/fr_msec.html +%%DATADIR%%/help/fr_netaddress.html %%DATADIR%%/help/fr_netclose.html %%DATADIR%%/help/fr_netconnect.html %%DATADIR%%/help/fr_netdata.html %%DATADIR%%/help/fr_netlisten.html %%DATADIR%%/help/fr_netread.html %%DATADIR%%/help/fr_netwrite.html +%%DATADIR%%/help/fr_next.html %%DATADIR%%/help/fr_numericconstants.html %%DATADIR%%/help/fr_offerror.html %%DATADIR%%/help/fr_onerror.html %%DATADIR%%/help/fr_open.html %%DATADIR%%/help/fr_operators.html +%%DATADIR%%/help/fr_ostype.html +%%DATADIR%%/help/fr_outputvisible.html %%DATADIR%%/help/fr_pause.html +%%DATADIR%%/help/fr_penwidth.html +%%DATADIR%%/help/fr_pie.html %%DATADIR%%/help/fr_pixel.html %%DATADIR%%/help/fr_plot.html %%DATADIR%%/help/fr_poly.html +%%DATADIR%%/help/fr_portin.html +%%DATADIR%%/help/fr_portout.html %%DATADIR%%/help/fr_print.html %%DATADIR%%/help/fr_programsyntax.html +%%DATADIR%%/help/fr_prompt.html %%DATADIR%%/help/fr_putslice.html %%DATADIR%%/help/fr_radians.html %%DATADIR%%/help/fr_rand.html %%DATADIR%%/help/fr_read.html +%%DATADIR%%/help/fr_readbyte.html %%DATADIR%%/help/fr_readline.html %%DATADIR%%/help/fr_rect.html %%DATADIR%%/help/fr_redim.html +%%DATADIR%%/help/fr_ref.html +%%DATADIR%%/help/fr_ref0.9.6.32.html %%DATADIR%%/help/fr_refresh.html %%DATADIR%%/help/fr_rem.html +%%DATADIR%%/help/fr_removedfeatures.html +%%DATADIR%%/help/fr_replace.html +%%DATADIR%%/help/fr_replacex.html %%DATADIR%%/help/fr_reset.html +%%DATADIR%%/help/fr_return.html %%DATADIR%%/help/fr_rgb.html %%DATADIR%%/help/fr_right.html %%DATADIR%%/help/fr_say.html %%DATADIR%%/help/fr_second.html %%DATADIR%%/help/fr_seek.html +%%DATADIR%%/help/fr_setsetting.html %%DATADIR%%/help/fr_sin.html %%DATADIR%%/help/fr_singlepage.html %%DATADIR%%/help/fr_size.html @@ -758,29 +829,44 @@ %%DATADIR%%/help/fr_spriteload.html %%DATADIR%%/help/fr_spritemove.html %%DATADIR%%/help/fr_spriteplace.html +%%DATADIR%%/help/fr_spriter.html +%%DATADIR%%/help/fr_sprites.html %%DATADIR%%/help/fr_spriteshow.html %%DATADIR%%/help/fr_spriteslice.html %%DATADIR%%/help/fr_spritev.html %%DATADIR%%/help/fr_spritew.html %%DATADIR%%/help/fr_spritex.html %%DATADIR%%/help/fr_spritey.html +%%DATADIR%%/help/fr_sqr.html %%DATADIR%%/help/fr_stamp.html %%DATADIR%%/help/fr_start.html +%%DATADIR%%/help/fr_step.html %%DATADIR%%/help/fr_string.html %%DATADIR%%/help/fr_stringconstants.html +%%DATADIR%%/help/fr_subroutine.html %%DATADIR%%/help/fr_system.html %%DATADIR%%/help/fr_systemrequirements.html %%DATADIR%%/help/fr_tan.html %%DATADIR%%/help/fr_techinformation.html %%DATADIR%%/help/fr_text.html +%%DATADIR%%/help/fr_textwidth.html +%%DATADIR%%/help/fr_then.html +%%DATADIR%%/help/fr_throwerror.html +%%DATADIR%%/help/fr_tobinary.html +%%DATADIR%%/help/fr_tohex.html +%%DATADIR%%/help/fr_tooctal.html +%%DATADIR%%/help/fr_toradix.html +%%DATADIR%%/help/fr_until.html %%DATADIR%%/help/fr_upper.html %%DATADIR%%/help/fr_variables.html +%%DATADIR%%/help/fr_version.html %%DATADIR%%/help/fr_volume.html %%DATADIR%%/help/fr_wavplay.html %%DATADIR%%/help/fr_wavstop.html %%DATADIR%%/help/fr_wavwait.html %%DATADIR%%/help/fr_whileendwhile.html %%DATADIR%%/help/fr_write.html +%%DATADIR%%/help/fr_writebyte.html %%DATADIR%%/help/fr_writeline.html %%DATADIR%%/help/fr_year.html %%DATADIR%%/help/galleryjmreneau.html @@ -804,10 +890,15 @@ %%DATADIR%%/help/graphicsutilitiesstampmaker.html %%DATADIR%%/help/graphicsutility.html %%DATADIR%%/help/index.html +%%DATADIR%%/help/lib/exe/alert.png %%DATADIR%%/help/lib/exe/arc_example.png %%DATADIR%%/help/lib/exe/basic256.png %%DATADIR%%/help/lib/exe/chord_example.png +%%DATADIR%%/help/lib/exe/circle.png +%%DATADIR%%/help/lib/exe/color.png +%%DATADIR%%/help/lib/exe/confirm.png %%DATADIR%%/help/lib/exe/css1353871590.css +%%DATADIR%%/help/lib/exe/css1364650667.css %%DATADIR%%/help/lib/exe/de.png %%DATADIR%%/help/lib/exe/en.png %%DATADIR%%/help/lib/exe/en_cir.png @@ -833,11 +924,18 @@ %%DATADIR%%/help/lib/exe/es_sin.jpg %%DATADIR%%/help/lib/exe/es_tan.jpg %%DATADIR%%/help/lib/exe/fr.png +%%DATADIR%%/help/lib/exe/fr_confirm-fr.png %%DATADIR%%/help/lib/exe/fr_cos.jpg +%%DATADIR%%/help/lib/exe/fr_prompt-fr.png %%DATADIR%%/help/lib/exe/fr_sin.jpg %%DATADIR%%/help/lib/exe/fr_tan.jpg +%%DATADIR%%/help/lib/exe/gamesballoons.png +%%DATADIR%%/help/lib/exe/gamescopycat.png +%%DATADIR%%/help/lib/exe/gamesspinner.png +%%DATADIR%%/help/lib/exe/graphicsutilitiesstamp2sprite.png %%DATADIR%%/help/lib/exe/jmreneau_mobius.png %%DATADIR%%/help/lib/exe/jmreneau_morie.png +%%DATADIR%%/help/lib/exe/line.png %%DATADIR%%/help/lib/exe/nl.png %%DATADIR%%/help/lib/exe/nl_array.png %%DATADIR%%/help/lib/exe/nl_arrays_disp.png @@ -856,7 +954,9 @@ %%DATADIR%%/help/lib/exe/nl_wrong_string.png %%DATADIR%%/help/lib/exe/opensearch.php %%DATADIR%%/help/lib/exe/pie_chart.png +%%DATADIR%%/help/lib/exe/prompt.png %%DATADIR%%/help/lib/exe/pt.png +%%DATADIR%%/help/lib/exe/rect.png %%DATADIR%%/help/lib/exe/ro.png %%DATADIR%%/help/lib/exe/ru.png %%DATADIR%%/help/lib/exe/ru_cir.png @@ -866,6 +966,7 @@ %%DATADIR%%/help/lib/exe/ru_radians.png %%DATADIR%%/help/lib/exe/ru_stamp.png %%DATADIR%%/help/lib/exe/sp.png +%%DATADIR%%/help/lib/exe/stampmaker.png %%DATADIR%%/help/lib/images/license/button/cc-by-nc-sa.png %%DATADIR%%/help/lib/images/smileys/fixme.gif %%DATADIR%%/help/lib/images/smileys/icon_exclaim.gif @@ -1600,22 +1701,22 @@ %%DATADIR%%/help/ru_writeline.html %%DATADIR%%/help/ru_year.html %%DATADIR%%/help/start.html -@dirrm %%DATADIR%%/help/lib/tpl/dokuwiki/images -@dirrm %%DATADIR%%/help/lib/tpl/dokuwiki -@dirrm %%DATADIR%%/help/lib/tpl -@dirrm %%DATADIR%%/help/lib/plugins/odt -@dirrm %%DATADIR%%/help/lib/plugins -@dirrm %%DATADIR%%/help/lib/images/smileys -@dirrm %%DATADIR%%/help/lib/images/license/button -@dirrm %%DATADIR%%/help/lib/images/license -@dirrm %%DATADIR%%/help/lib/images -@dirrm %%DATADIR%%/help/lib/exe -@dirrm %%DATADIR%%/help/lib -@dirrm %%DATADIR%%/help -@dirrm %%DATADIR%%/Examples/testing -@dirrm %%DATADIR%%/Examples/sprites -@dirrm %%DATADIR%%/Examples/networking -@dirrm %%DATADIR%%/Examples/imgload -@dirrm %%DATADIR%%/Examples/dice -@dirrm %%DATADIR%%/Examples -@dirrm %%DATADIR%% +@dirrmtry %%DATADIR%%/help/lib/tpl/dokuwiki/images +@dirrmtry %%DATADIR%%/help/lib/tpl/dokuwiki +@dirrmtry %%DATADIR%%/help/lib/tpl +@dirrmtry %%DATADIR%%/help/lib/plugins/odt +@dirrmtry %%DATADIR%%/help/lib/plugins +@dirrmtry %%DATADIR%%/help/lib/images/smileys +@dirrmtry %%DATADIR%%/help/lib/images/license/button +@dirrmtry %%DATADIR%%/help/lib/images/license +@dirrmtry %%DATADIR%%/help/lib/images +@dirrmtry %%DATADIR%%/help/lib/exe +@dirrmtry %%DATADIR%%/help/lib +@dirrmtry %%DATADIR%%/help +@dirrmtry %%DATADIR%%/Examples/testing +@dirrmtry %%DATADIR%%/Examples/sprites +@dirrmtry %%DATADIR%%/Examples/networking +@dirrmtry %%DATADIR%%/Examples/imgload +@dirrmtry %%DATADIR%%/Examples/dice +@dirrmtry %%DATADIR%%/Examples +@dirrmtry %%DATADIR%% >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 17 18:10:00 2014 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 ESMTPS id B20E52FA for ; Mon, 17 Feb 2014 18:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 85058102F for ; Mon, 17 Feb 2014 18: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 s1HIA08W068051 for ; Mon, 17 Feb 2014 18:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1HIA07G068050; Mon, 17 Feb 2014 18:10:00 GMT (envelope-from gnats) Resent-Date: Mon, 17 Feb 2014 18:10:00 GMT Resent-Message-Id: <201402171810.s1HIA07G068050@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, Christoph Moench-Tegeder Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 26E022CD for ; Mon, 17 Feb 2014 18:07:46 +0000 (UTC) Received: from smtp.burggraben.net (base.exwg.net [IPv6:2a01:4f8:140:50a2::2]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A97B31004 for ; Mon, 17 Feb 2014 18:07:45 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by smtp.burggraben.net (Postfix) with ESMTP id 597466003CC for ; Mon, 17 Feb 2014 19:07:43 +0100 (CET) Received: from smtp.burggraben.net ([127.0.0.1]) by localhost (ns.burggraben.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id pFKlkEn+Tr4v for ; Mon, 17 Feb 2014 19:07:42 +0100 (CET) Received: from elch.exwg.net (elch.exwg.net [IPv6:2001:470:7b43:1:6a05:caff:fe01:aae9]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "elch.exwg.net", Issuer "Christoph Moench-Tegeder" (verified OK)) by smtp.burggraben.net (Postfix) with ESMTPS for ; Mon, 17 Feb 2014 19:07:42 +0100 (CET) Received: by elch.exwg.net (Postfix, from userid 1000) id 1079D301C9; Mon, 17 Feb 2014 19:07:42 +0100 (CET) Message-Id: <20140217180742.1079D301C9@elch.exwg.net> Date: Mon, 17 Feb 2014 19:07:42 +0100 (CET) From: Christoph Moench-Tegeder To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/186850: science/netcdf4 : make texinfo5 compatible X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Christoph Moench-Tegeder List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Feb 2014 18:10:00 -0000 >Number: 186850 >Category: ports >Synopsis: science/netcdf4 : make texinfo5 compatible >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: Mon Feb 17 18:10:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Christoph Moench-Tegeder >Release: FreeBSD 10.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD elch.exwg.net 10.0-RELEASE FreeBSD 10.0-RELEASE #2 r260689: Wed Jan 15 18:32:44 CET 2014 cmt@elch.exwg.net:/usr/obj/usr/src/sys/ELCH amd64 netcdf-ftn-4.1.3_3 science/netcdf4 texinfo-5.2.20140209 print/texinfo >Description: the build of science/netcdf4 fails when a current texinfo (print/texinfo) precedes the base texinfo in $PATH. >How-To-Repeat: >Fix: Three texi files have to be fixed: svn status A files/patch-man4-netcdf-c.texi A files/patch-man4-netcdf-f77.texi A files/patch-man4-netcdf-f90.texi svn diff Index: files/patch-man4-netcdf-c.texi =================================================================== --- files/patch-man4-netcdf-c.texi (revision 0) +++ files/patch-man4-netcdf-c.texi (working copy) @@ -0,0 +1,53 @@ +--- man4/netcdf-c.texi.orig 2014-02-17 18:36:15.000000000 +0100 ++++ man4/netcdf-c.texi 2014-02-17 18:52:28.000000000 +0100 +@@ -1723,12 +1723,10 @@ + + @item NC_NOERR + No error. +- +-@item +-The specified netCDF dataset does not exist. +- +-@item +-A meaningless mode was specified. ++@itemize @bullet ++@item The specified netCDF dataset does not exist. ++@item A meaningless mode was specified. ++@end itemize + + @end table + +@@ -3130,7 +3128,6 @@ + Pointer to allocated space of correct length. The name of the + group will be copied there. The name will be less than NC_MAX_NAME, + not including a terminating NULL byte. +-@item + + @end table + +@@ -3201,8 +3198,6 @@ + nc_inq_grpname_len call this function with NULL for the full_name + parameter, or call (@pxref{nc_inq_grpname_len}). + +-@item +- + @end table + + @heading Errors +@@ -3326,7 +3321,6 @@ + + @item parent_ncid + Pointer to an int. The ncid of the group will be copied there. +-@item + + @end table + +@@ -8726,7 +8720,7 @@ + int nc_put_varm (int ncid, int varid, const size_t *startp, + const size_t *countp, const ptrdiff_t *stridep, + const ptrdiff_t *imapp, const void *op); +-n@end example ++@end example + + @table @code + Index: files/patch-man4-netcdf-f77.texi =================================================================== --- files/patch-man4-netcdf-f77.texi (revision 0) +++ files/patch-man4-netcdf-f77.texi (working copy) @@ -0,0 +1,10 @@ +--- man4/netcdf-f77.texi.orig 2014-02-17 18:53:44.000000000 +0100 ++++ man4/netcdf-f77.texi 2014-02-17 18:54:02.000000000 +0100 +@@ -2570,7 +2570,6 @@ + The name of the + group will be copied to this character array. The name will be less + than NF_MAX_NAME in length. +-@item + + @end table + Index: files/patch-man4-netcdf-f90.texi =================================================================== --- files/patch-man4-netcdf-f90.texi (revision 0) +++ files/patch-man4-netcdf-f90.texi (working copy) @@ -0,0 +1,19 @@ +--- man4/netcdf-f90.texi.orig 2014-02-17 18:54:10.000000000 +0100 ++++ man4/netcdf-f90.texi 2014-02-17 18:56:51.000000000 +0100 +@@ -2082,7 +2082,6 @@ + The name of the + group will be copied to this character array. The name will be less + than NF90_MAX_NAME in length. +-@item + + @end table + +@@ -6979,7 +6978,7 @@ + @node FORTRAN 77 to Fortran 90 Transition Guide, Combined Index, Summary of Fortran 90 Interface, Top + @appendix Appendix B - FORTRAN 77 to Fortran 90 Transition Guide + +-@unnumberedsubsec The new Fortran 90 interface ++@unnumberedsec The new Fortran 90 interface + + The Fortran 90 interface to the netCDF library closely follows the + FORTRAN 77 interface. In most cases, function and constant names and Regards, Christoph >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 17 18:10:09 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E64A3406; Mon, 17 Feb 2014 18:10:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BADB510B2; Mon, 17 Feb 2014 18: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 s1HIA97r068183; Mon, 17 Feb 2014 18:10:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1HIA9Xq068182; Mon, 17 Feb 2014 18:10:09 GMT (envelope-from edwin) Date: Mon, 17 Feb 2014 18:10:09 GMT Message-Id: <201402171810.s1HIA9Xq068182@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186850: science/netcdf4 : make texinfo5 compatible X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Feb 2014 18:10:10 -0000 Synopsis: science/netcdf4 : make texinfo5 compatible Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: edwin Responsible-Changed-When: Mon Feb 17 18:10:09 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186850 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 17 21:23:37 2014 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 ESMTPS id 0B0694D5; Mon, 17 Feb 2014 21:23:37 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CCDCB12AD; Mon, 17 Feb 2014 21:23: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 s1HLNanI032038; Mon, 17 Feb 2014 21:23:36 GMT (envelope-from pawel@freefall.freebsd.org) Received: (from pawel@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1HLNaT3032037; Mon, 17 Feb 2014 21:23:36 GMT (envelope-from pawel) Date: Mon, 17 Feb 2014 21:23:36 GMT Message-Id: <201402172123.s1HLNaT3032037@freefall.freebsd.org> To: pawel@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pawel@FreeBSD.org From: pawel@FreeBSD.org Subject: Re: ports/186800: [maintainer-update] Convert cad/gspiceui to STAGE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Feb 2014 21:23:37 -0000 Synopsis: [maintainer-update] Convert cad/gspiceui to STAGE Responsible-Changed-From-To: freebsd-ports-bugs->pawel Responsible-Changed-By: pawel Responsible-Changed-When: Mon Feb 17 21:23:17 UTC 2014 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=186800 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 17 22:50:05 2014 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 ESMTPS id 26E61523; Mon, 17 Feb 2014 22:50:05 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EF0891A3A; Mon, 17 Feb 2014 22:50: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 s1HMo4b1056171; Mon, 17 Feb 2014 22:50:04 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1HMo4E6056170; Mon, 17 Feb 2014 22:50:04 GMT (envelope-from edwin) Date: Mon, 17 Feb 2014 22:50:04 GMT Message-Id: <201402172250.s1HMo4E6056170@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, brix@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186833: [patch] update devel/p5-Module-Runtime X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Feb 2014 22:50:05 -0000 Synopsis: [patch] update devel/p5-Module-Runtime Responsible-Changed-From-To: freebsd-ports-bugs->brix Responsible-Changed-By: edwin Responsible-Changed-When: Mon Feb 17 22:50:04 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186833 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 17 22:50:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0DA2851E; Mon, 17 Feb 2014 22:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D2EB61A36; Mon, 17 Feb 2014 22:49: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 s1HMnxlm055969; Mon, 17 Feb 2014 22:49:59 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1HMnxlx055968; Mon, 17 Feb 2014 22:49:59 GMT (envelope-from linimon) Date: Mon, 17 Feb 2014 22:49:59 GMT Message-Id: <201402172249.s1HMnxlx055968@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/186833: [patch] update devel/p5-Module-Runtime X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Feb 2014 22:50:00 -0000 Synopsis: [patch] update devel/p5-Module-Runtime Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Mon Feb 17 22:49:50 UTC 2014 Responsible-Changed-Why: ports PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=186833 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 17 22:54:52 2014 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 ESMTPS id A7461686; Mon, 17 Feb 2014 22:54:52 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 76D761AF2; Mon, 17 Feb 2014 22:54: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 s1HMsqds058821; Mon, 17 Feb 2014 22:54:52 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1HMsquF058820; Mon, 17 Feb 2014 22:54:52 GMT (envelope-from linimon) Date: Mon, 17 Feb 2014 22:54:52 GMT Message-Id: <201402172254.s1HMsquF058820@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/186847: libiconv dependencies break emulators/virtualbox-ose port build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Feb 2014 22:54:52 -0000 Old Synopsis: devel/libiconv dependencies break virtualbox-ose port build New Synopsis: libiconv dependencies break emulators/virtualbox-ose port build Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Mon Feb 17 22:54:24 UTC 2014 Responsible-Changed-Why: fix synopsis. http://www.freebsd.org/cgi/query-pr.cgi?pr=186847 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 17 22:54:58 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 067A468A; Mon, 17 Feb 2014 22:54:58 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CE2C21AF4; Mon, 17 Feb 2014 22:54: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 s1HMsvOw058926; Mon, 17 Feb 2014 22:54:57 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1HMsvaF058925; Mon, 17 Feb 2014 22:54:57 GMT (envelope-from edwin) Date: Mon, 17 Feb 2014 22:54:57 GMT Message-Id: <201402172254.s1HMsvaF058925@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vbox@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186847: libiconv dependencies break emulators/virtualbox-ose port build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Feb 2014 22:54:58 -0000 Synopsis: libiconv dependencies break emulators/virtualbox-ose port build Responsible-Changed-From-To: freebsd-ports-bugs->vbox Responsible-Changed-By: edwin Responsible-Changed-When: Mon Feb 17 22:54:57 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186847 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 00:40:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8A833679 for ; Tue, 18 Feb 2014 00:40:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 64F1712E1 for ; Tue, 18 Feb 2014 00: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 s1I0e0R3099390 for ; Tue, 18 Feb 2014 00:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1I0e00o099389; Tue, 18 Feb 2014 00:40:00 GMT (envelope-from gnats) Resent-Date: Tue, 18 Feb 2014 00:40:00 GMT Resent-Message-Id: <201402180040.s1I0e00o099389@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 Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2EA2B66C for ; Tue, 18 Feb 2014 00:38:44 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 19BFC12DA for ; Tue, 18 Feb 2014 00:38:44 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1I0chRN072948 for ; Tue, 18 Feb 2014 00:38:43 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1I0chuB072940; Tue, 18 Feb 2014 00:38:43 GMT (envelope-from nobody) Message-Id: <201402180038.s1I0chuB072940@cgiserv.freebsd.org> Date: Tue, 18 Feb 2014 00:38:43 GMT From: Olivier To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186851: [patch] Adding colour support to devel/ccache X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 00:40:00 -0000 >Number: 186851 >Category: ports >Synopsis: [patch] Adding colour support to devel/ccache >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 Feb 18 00:40:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Olivier >Release: 9.2 >Organization: interfaSys srl >Environment: FreeBSD 9.2-RELEASE-p2 #0 r259303 >Description: Clang and a patch gcc48 or a standard gcc49 support colour diagnostics. The problem is that the current version of ccache doesn't and so, without this patch, we have to choose between having colours or faster compilation times. >How-To-Repeat: Install lang/gcc49 Make sure devel/ccache is not installed Compile archivers/unzip Notice the colours in the warning messages Now install devel/ccache Compile archivers/unzip The colours should be gone >Fix: The patch works Patch attached with submission follows: --- ccache.c +++ ccache.c @@ -1065,6 +1065,24 @@ } /* + * Note that these compiler checks are unreliable, so nothing should hard-depend on them. + */ + +static bool compiler_is_clang() +{ + const char* name = strrchr( orig_args->argv[ 0 ], '/' ); + name = name ? name + 1 : orig_args->argv[ 0 ]; + return strstr( name, "clang" ) != NULL; +} + +static bool compiler_is_gcc() +{ + const char* name = strrchr(orig_args->argv[ 0 ], '/' ); + name = name ? name + 1 : orig_args->argv[ 0 ]; + return strstr(name, "gcc") != NULL || strstr(name, "g++") != NULL; +} + +/* * Update a hash sum with information common for the direct and preprocessor * modes. */ @@ -1128,6 +1146,15 @@ } free(p); } + + /* Possibly hash GCC_COLORS (for color diagnostics). */ + if (compiler_is_gcc()) { + const char* gcc_colors = getenv("GCC_COLORS"); + if (gcc_colors != NULL) { + hash_delimiter(hash,"gcccolors"); + hash_string(hash, gcc_colors); + } + } } /* @@ -1626,6 +1653,13 @@ || str_eq(get_extension(path), ".pth"); } +static bool color_output_possible() +{ + const char* term_env = getenv("TERM"); + + return isatty(STDERR_FILENO) && term_env && strcasecmp(term_env, "DUMB") != 0; +} + /* * Process the compiler options into options suitable for passing to the * preprocessor and the real compiler. The preprocessor options don't include @@ -1654,6 +1688,7 @@ int argc; char **argv; bool result = true; + bool found_color_diagnostics = false; expanded_args = args_copy(args); stripped_args = args_init(0, NULL); @@ -2010,6 +2045,21 @@ free(arg); } + if (str_eq(argv[i], "-fcolor-diagnostics") + || str_eq(argv[i], "-fno-color-diagnostics") + || str_eq(argv[i], "-fdiagnostics-color") + || str_eq(argv[i], "-fdiagnostics-color=always") + || str_eq(argv[i], "-fno-diagnostics-color") + || str_eq(argv[i], "-fdiagnostics-color=never")) { + args_add(stripped_args, argv[i]); + found_color_diagnostics = true; + continue; + } + if (str_eq(argv[i], "-fdiagnostics-color=auto")) { + /* Ignore the option and let automatic color handling below handle this. */ + continue; + } + /* * Options taking an argument that we may want to rewrite to relative paths * to get better hit rate. A secondary effect is that paths in the standard @@ -2298,6 +2348,28 @@ args_add(cpp_args, explicit_language); } + /* + * Since output is redirected, compilers will not color their output by default, + * so force it explicitly if it would be otherwise done. + */ + if (!found_color_diagnostics && color_output_possible()) { + if (compiler_is_clang()) { + args_add(stripped_args, "-fcolor-diagnostics"); + cc_log("Automatically enabling colors"); + } else if (compiler_is_gcc()) { + /* + * GCC has it since 4.8, but that'd require detecting what GCC + * version is used for the actual compile. However it requires + * also GCC_COLORS to be set (and not empty), so use that + * for detecting if GCC would use colors. + */ + if (getenv("GCC_COLORS") != NULL && getenv("GCC_COLORS")[ 0 ] != '\0') { + args_add(stripped_args, "-fdiagnostics-color"); + cc_log("Automatically enabling colors"); + } + } + } + /* * Add flags for dependency generation only to the preprocessor command line. */ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 00:40:12 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DFB026A7; Tue, 18 Feb 2014 00:40:12 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B37951339; Tue, 18 Feb 2014 00:40: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 s1I0eCn6099530; Tue, 18 Feb 2014 00:40:12 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1I0eCcK099529; Tue, 18 Feb 2014 00:40:12 GMT (envelope-from edwin) Date: Tue, 18 Feb 2014 00:40:12 GMT Message-Id: <201402180040.s1I0eCcK099529@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, bdrewery@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186851: [patch] Adding colour support to devel/ccache X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 00:40:12 -0000 Synopsis: [patch] Adding colour support to devel/ccache Responsible-Changed-From-To: freebsd-ports-bugs->bdrewery Responsible-Changed-By: edwin Responsible-Changed-When: Tue Feb 18 00:40:12 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186851 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 01:20:00 2014 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 ESMTPS id E45BFF1E for ; Tue, 18 Feb 2014 01:20:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BBCC915F6 for ; Tue, 18 Feb 2014 01: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 s1I1K0SG013905 for ; Tue, 18 Feb 2014 01:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1I1K0an013892; Tue, 18 Feb 2014 01:20:00 GMT (envelope-from gnats) Resent-Date: Tue, 18 Feb 2014 01:20:00 GMT Resent-Message-Id: <201402180120.s1I1K0an013892@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 Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D3E69C91 for ; Tue, 18 Feb 2014 01:15:56 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BECCB15C0 for ; Tue, 18 Feb 2014 01:15:56 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1I1FuCw096671 for ; Tue, 18 Feb 2014 01:15:56 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1I1FuFc096668; Tue, 18 Feb 2014 01:15:56 GMT (envelope-from nobody) Message-Id: <201402180115.s1I1FuFc096668@cgiserv.freebsd.org> Date: Tue, 18 Feb 2014 01:15:56 GMT From: Olivier To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186852: [patch] Add 'fstack-protector-strong' to lang/gcc48 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 01:20:01 -0000 >Number: 186852 >Category: ports >Synopsis: [patch] Add 'fstack-protector-strong' to lang/gcc48 >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 Feb 18 01:20:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Olivier >Release: 9.2 >Organization: interfaSys srl >Environment: FreeBSD 9.2-RELEASE-p2 #0 r259303 >Description: FreeBSD has recently added the WITH_SSP_PORTS makefile option [1] which adds "-fstack-protector" and "-fstack-protector-all" compilation directives which adds extra code to check for buffer overflows to compiled ports [2]. While this is a good first step, those switches offer too little or too much protection and over 2 years ago, Google delivered "-fstack-protector-strong" [3] to try and solve the problem: "The stack-protector option is over-simplified, which ignores pointer cast, address computation, while the stack-protector-all is over-killing, using this option brings too much performance overhead..." [4] The new directive has been added to the 4.9 branch of gcc and several Linux distros have backported the patch, but so far, FreeBSD maintainer has decided not to do it, so here are patches which work against lang/gcc48. There are based on the gcc 4.9 commits [5] [1]https://wiki.freebsd.org/201309DevSummit/Ports [2]http://gcc.gnu.org/onlinedocs/gcc-4.8.2/gcc/Optimize-Options.html [3]https://codereview.appspot.com/5461043/ [4]https://docs.google.com/document/d/1xXBH6rRZue4f296vGt9YQcuLVQHeE516stHwt8M9xyU/edit?hl=en_US [5]http://repo.or.cz/w/official-gcc.git/commitdiff/b156ec373ccf27f4fcce7972de5e043d35acea43 >How-To-Repeat: >Fix: Patch lang/gcc48 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: # # files/ # files/patch-spp-gcc_testsuite_gcc.dg_fstack-protector-strong.c # files/patch-spp-gcc_c-family_c-cppbuiltin.c # files/patch-spp-gcc_common.opt # files/patch-spp-gcc_doc_invoke.texi # files/patch-spp-gcc_gcc.c # files/patch-spp-gcc_testsuite_g++.dg_fstack-protector-strong.C # files/patch-spp-gcc_cfgexpand.c # files/patch-spp-gcc_doc_cpp.texi # echo c - files/ mkdir -p files/ > /dev/null 2>&1 echo x - files/patch-spp-gcc_testsuite_gcc.dg_fstack-protector-strong.c sed 's/^X//' >files/patch-spp-gcc_testsuite_gcc.dg_fstack-protector-strong.c << '5efd84437f680fb94c6ab18572545f84' X--- /dev/null X+++ gcc/testsuite/gcc.dg/fstack-protector-strong.c X@@ -0,0 +1,135 @@ X+/* Test that stack protection is done on chosen functions. */ X+ X+/* { dg-do compile { target i?86-*-* x86_64-*-* } } */ X+/* { dg-options "-O2 -fstack-protector-strong" } */ X+ X+#include X+#include X+ X+extern int g0; X+extern int* pg0; X+int X+goo (int *); X+int X+hoo (int); X+ X+/* Function frame address escaped function call. */ X+int X+foo1 () X+{ X+ int i; X+ return goo (&i); X+} X+ X+struct ArrayStruct X+{ X+ int a; X+ int array[10]; X+}; X+ X+struct AA X+{ X+ int b; X+ struct ArrayStruct as; X+}; X+ X+/* Function frame contains array. */ X+int X+foo2 () X+{ X+ struct AA aa; X+ int i; X+ for (i = 0; i < 10; ++i) X+ { X+ aa.as.array[i] = i * (i-1) + i / 2; X+ } X+ return aa.as.array[5]; X+} X+ X+/* Address computation based on a function frame address. */ X+int X+foo3 () X+{ X+ int a; X+ int *p; X+ p = &a + 5; X+ return goo (p); X+} X+ X+/* Address cast based on a function frame address. */ X+int X+foo4 () X+{ X+ int a; X+ return goo (g0 << 2 ? (int *)(3 * (long)(void *)(&a)) : 0); X+} X+ X+/* Address cast based on a local array. */ X+int X+foo5 () X+{ X+ short array[10]; X+ return goo ((int *)(array + 5)); X+} X+ X+struct BB X+{ X+ int one; X+ int two; X+ int three; X+}; X+ X+/* Address computaton based on a function frame address.*/ X+int X+foo6 () X+{ X+ struct BB bb; X+ return goo (&bb.one + sizeof(int)); X+} X+ X+/* Function frame address escaped via global variable. */ X+int X+foo7 () X+{ X+ int a; X+ pg0 = &a; X+ goo (pg0); X+ return *pg0; X+} X+ X+/* Check that this covers -fstack-protector. */ X+int X+foo8 () X+{ X+ char base[100]; X+ memcpy ((void *)base, (const void *)pg0, 105); X+ return (int)(base[32]); X+} X+ X+/* Check that this covers -fstack-protector. */ X+int X+foo9 () X+{ X+ char* p = alloca (100); X+ return goo ((int *)(p + 50)); X+} X+ X+int X+global2 (struct BB* pbb); X+ X+/* Address taken on struct. */ X+int X+foo10 () X+{ X+ struct BB bb; X+ int i; X+ bb.one = global2 (&bb); X+ for (i = 0; i < 10; ++i) X+ { X+ bb.two = bb.one + bb.two; X+ bb.three = bb.one + bb.two + bb.three; X+ } X+ return bb.three; X+} X+ X+/* { dg-final { scan-assembler-times "stack_chk_fail" 10 } } */ 5efd84437f680fb94c6ab18572545f84 echo x - files/patch-spp-gcc_c-family_c-cppbuiltin.c sed 's/^X//' >files/patch-spp-gcc_c-family_c-cppbuiltin.c << '53d0fafd10387edcb001a309cd997d90' X--- gcc/c-family/c-cppbuiltin.c.orig X+++ gcc/c-family/c-cppbuiltin.c X@@ -888,6 +888,8 @@ c_cpp_builtins (cpp_reader *pfile) X /* Make the choice of the stack protector runtime visible to source code. X The macro names and values here were chosen for compatibility with an X earlier implementation, i.e. ProPolice. */ X+ if (flag_stack_protect == 3) X+ cpp_define (pfile, "__SSP_STRONG__=3"); X if (flag_stack_protect == 2) X cpp_define (pfile, "__SSP_ALL__=2"); X else if (flag_stack_protect == 1) 53d0fafd10387edcb001a309cd997d90 echo x - files/patch-spp-gcc_common.opt sed 's/^X//' >files/patch-spp-gcc_common.opt << '5479a21560f42180e388d5edf83a2b73' X--- gcc/common.opt.orig X+++ gcc/common.opt X@@ -1942,6 +1942,10 @@ fstack-protector-all X Common Report RejectNegative Var(flag_stack_protect, 2) X Use a stack protection method for every function X X+fstack-protector-strong X+Common Report RejectNegative Var(flag_stack_protect, 3) X+Use a smart stack protection method for certain functions X+ X fstack-usage X Common RejectNegative Var(flag_stack_usage) X Output stack usage information on a per-function basis 5479a21560f42180e388d5edf83a2b73 echo x - files/patch-spp-gcc_doc_invoke.texi sed 's/^X//' >files/patch-spp-gcc_doc_invoke.texi << 'a4bec8dda17ef79e9206fa45f2532876' X--- gcc/doc/invoke.texi.orig X+++ gcc/doc/invoke.texi X@@ -407,8 +407,8 @@ Objective-C and Objective-C++ Dialects}. X -fsel-sched-pipelining -fsel-sched-pipelining-outer-loops @gol X -fshrink-wrap -fsignaling-nans -fsingle-precision-constant @gol X -fsplit-ivs-in-unroller -fsplit-wide-types -fstack-protector @gol X--fstack-protector-all -fstrict-aliasing -fstrict-overflow @gol X--fthread-jumps -ftracer -ftree-bit-ccp @gol X+-fstack-protector-all -fstack-protector-strong -fstrict-aliasing @gol X+-fstrict-overflow -fthread-jumps -ftracer -ftree-bit-ccp @gol X -ftree-builtin-call-dce -ftree-ccp -ftree-ch @gol X -ftree-coalesce-inline-vars -ftree-coalesce-vars -ftree-copy-prop @gol X -ftree-copyrename -ftree-dce -ftree-dominator-opts -ftree-dse @gol X@@ -8957,6 +8957,12 @@ If a guard check fails, an error message is printed and the program exits. X @opindex fstack-protector-all X Like @option{-fstack-protector} except that all functions are protected. X X+@item -fstack-protector-strong X+@opindex fstack-protector-strong X+Like @option{-fstack-protector} but includes additional functions to X+be protected --- those that have local array definitions, or have X+references to local frame addresses. X+ X @item -fsection-anchors X @opindex fsection-anchors X Try to reduce the number of symbolic address calculations by using a4bec8dda17ef79e9206fa45f2532876 echo x - files/patch-spp-gcc_gcc.c sed 's/^X//' >files/patch-spp-gcc_gcc.c << 'eaa3214d488ae4d93f50460d26bc9f25' X--- gcc/gcc.c.orig X+++ gcc/gcc.c X@@ -655,7 +655,7 @@ proper position among the other output files. */ X #ifdef TARGET_LIBC_PROVIDES_SSP X #define LINK_SSP_SPEC "%{fstack-protector:}" X #else X-#define LINK_SSP_SPEC "%{fstack-protector|fstack-protector-all:-lssp_nonshared -lssp}" X+#define LINK_SSP_SPEC "%{fstack-protector|fstack-protector-strong|fstack-protector-all:-lssp_nonshared -lssp}" X #endif X #endif eaa3214d488ae4d93f50460d26bc9f25 echo x - files/patch-spp-gcc_testsuite_g++.dg_fstack-protector-strong.C sed 's/^X//' >files/patch-spp-gcc_testsuite_g++.dg_fstack-protector-strong.C << 'df9c4c3ff2667261548ed8c7d81128ed' X--- /dev/null X+++ gcc/testsuite/g++.dg/fstack-protector-strong.C X@@ -0,0 +1,35 @@ X+/* Test that stack protection is done on chosen functions. */ X+ X+/* { dg-do compile { target i?86-*-* x86_64-*-* } } */ X+/* { dg-options "-O2 -fstack-protector-strong" } */ X+ X+class A X+{ X+public: X+ A() {} X+ ~A() {} X+ void method(); X+ int state; X+}; X+ X+/* Frame address exposed to A::method via "this". */ X+int X+foo1 () X+{ X+ A a; X+ a.method (); X+ return a.state; X+} X+ X+/* Possible destroying foo2's stack via &a. */ X+int X+global_func (A& a); X+ X+/* Frame address exposed to global_func. */ X+int foo2 () X+{ X+ A a; X+ return global_func (a); X+} X+ X+/* { dg-final { scan-assembler-times "stack_chk_fail" 2 } } */ df9c4c3ff2667261548ed8c7d81128ed echo x - files/patch-spp-gcc_cfgexpand.c sed 's/^X//' >files/patch-spp-gcc_cfgexpand.c << 'a085e1880c7ab319861f3730bcf7b267' X--- gcc/cfgexpand.c.orig X+++ gcc/cfgexpand.c X@@ -1291,6 +1291,12 @@ X clear_tree_used (t); X } X X+ enum { X+ SPCT_FLAG_DEFAULT = 1, X+ SPCT_FLAG_ALL = 2, X+ SPCT_FLAG_STRONG = 3 X+ }; X+ X /* Examine TYPE and determine a bit mask of the following features. */ X X #define SPCT_HAS_LARGE_CHAR_ARRAY 1 X@@ -1360,7 +1366,8 @@ X if (bits & SPCT_HAS_SMALL_CHAR_ARRAY) X has_short_buffer = true; X X- if (flag_stack_protect == 2) X+ if (flag_stack_protect == SPCT_FLAG_ALL X+ || flag_stack_protect == SPCT_FLAG_STRONG) X { X if ((bits & (SPCT_HAS_SMALL_CHAR_ARRAY | SPCT_HAS_LARGE_CHAR_ARRAY)) X && !(bits & SPCT_HAS_AGGREGATE)) X@@ -1514,6 +1521,27 @@ X return size; X } X X+/* Helper routine to check if a record or union contains an array field. */ X+ X+static int X+record_or_union_type_has_array_p (const_tree tree_type) X+{ X+ tree fields = TYPE_FIELDS (tree_type); X+ tree f; X+ X+ for (f = fields; f; f = DECL_CHAIN (f)) X+ if (TREE_CODE (f) == FIELD_DECL) X+ { X+ tree field_type = TREE_TYPE (f); X+ if (RECORD_OR_UNION_TYPE_P (field_type) X+ && record_or_union_type_has_array_p (field_type)) X+ return 1; X+ if (TREE_CODE (field_type) == ARRAY_TYPE) X+ return 1; X+ } X+ return 0; X+} X+ X /* Expand all variables used in the function. */ X X static rtx X@@ -1525,6 +1553,7 @@ X struct pointer_map_t *ssa_name_decls; X unsigned i; X unsigned len; X+ bool gen_stack_protect_signal = false; X X /* Compute the phase of the stack frame for this function. */ X { X@@ -1575,6 +1604,24 @@ X } X } X pointer_map_destroy (ssa_name_decls); X+ X+ if (flag_stack_protect == SPCT_FLAG_STRONG) X+ FOR_EACH_LOCAL_DECL (cfun, i, var) X+ if (!is_global_var (var)) X+ { X+ tree var_type = TREE_TYPE (var); X+ /* Examine local referenced variables that have their addresses taken, X+ contain an array, or are arrays. */ X+ if (TREE_CODE (var) == VAR_DECL X+ && (TREE_CODE (var_type) == ARRAY_TYPE X+ || TREE_ADDRESSABLE (var) X+ || (RECORD_OR_UNION_TYPE_P (var_type) X+ && record_or_union_type_has_array_p (var_type)))) X+ { X+ gen_stack_protect_signal = true; X+ break; X+ } X+ } X X /* At this point all variables on the local_decls with TREE_USED X set are not associated with any block scope. Lay them out. */ X@@ -1662,12 +1709,32 @@ X dump_stack_var_partition (); X } X X- /* There are several conditions under which we should create a X- stack guard: protect-all, alloca used, protected decls present. */ X- if (flag_stack_protect == 2 X- || (flag_stack_protect X- && (cfun->calls_alloca || has_protected_decls))) X- create_stack_guard (); X+ /* Create stack guard, if X+ a) "-fstack-protector-all" - always; X+ b) "-fstack-protector-strong" - if there are arrays, memory X+ references to local variables, alloca used, or protected decls present; X+ c) "-fstack-protector" - if alloca used, or protected decls present */ X+ X+ switch (flag_stack_protect) X+ { X+ case SPCT_FLAG_ALL: X+ create_stack_guard (); X+ break; X+ X+ case SPCT_FLAG_STRONG: X+ if (gen_stack_protect_signal X+ || cfun->calls_alloca || has_protected_decls) X+ create_stack_guard (); X+ break; X+ X+ case SPCT_FLAG_DEFAULT: X+ if (cfun->calls_alloca || has_protected_decls) X+ create_stack_guard (); X+ break; X+ X+ default: X+ ; X+ } X X /* Assign rtl to each variable based on these partitions. */ X if (stack_vars_num > 0) X@@ -1688,7 +1755,7 @@ X expand_stack_vars (stack_protect_decl_phase_1, &data); X X /* Phase 2 contains other kinds of arrays. */ X- if (flag_stack_protect == 2) X+ if (flag_stack_protect == SPCT_FLAG_ALL) X expand_stack_vars (stack_protect_decl_phase_2, &data); X } X a085e1880c7ab319861f3730bcf7b267 echo x - files/patch-spp-gcc_doc_cpp.texi sed 's/^X//' >files/patch-spp-gcc_doc_cpp.texi << '8d281a43eb37e5755700ca40315994da' X--- gcc/doc/cpp.texi.orig X+++ gcc/doc/cpp.texi X@@ -2349,6 +2349,10 @@ use. X This macro is defined, with value 2, when @option{-fstack-protector-all} is X in use. X X+@item __SSP_STRONG__ X+This macro is defined, with value 3, when @option{-fstack-protector-strong} is X+in use. X+ X @item __SANITIZE_ADDRESS__ X This macro is defined, with value 1, when @option{-fsanitize=address} is X in use. 8d281a43eb37e5755700ca40315994da exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 01:20:09 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ABB96F4D; Tue, 18 Feb 2014 01:20:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 61AC315F8; Tue, 18 Feb 2014 01: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 s1I1K9GB014004; Tue, 18 Feb 2014 01:20:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1I1K9pV014003; Tue, 18 Feb 2014 01:20:09 GMT (envelope-from edwin) Date: Tue, 18 Feb 2014 01:20:09 GMT Message-Id: <201402180120.s1I1K9pV014003@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gerald@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186852: [patch] Add 'fstack-protector-strong' to lang/gcc48 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 01:20:09 -0000 Synopsis: [patch] Add 'fstack-protector-strong' to lang/gcc48 Responsible-Changed-From-To: freebsd-ports-bugs->gerald Responsible-Changed-By: edwin Responsible-Changed-When: Tue Feb 18 01:20:09 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186852 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 01:30:02 2014 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 ESMTPS id 38A4332D for ; Tue, 18 Feb 2014 01:30:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1194716BE for ; Tue, 18 Feb 2014 01: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 s1I1U1tW017169 for ; Tue, 18 Feb 2014 01:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1I1U1wx017168; Tue, 18 Feb 2014 01:30:01 GMT (envelope-from gnats) Resent-Date: Tue, 18 Feb 2014 01:30:01 GMT Resent-Message-Id: <201402180130.s1I1U1wx017168@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 Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 376C41EE for ; Tue, 18 Feb 2014 01:26:45 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1F8BF169F for ; Tue, 18 Feb 2014 01:26:45 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1I1Qibx020591 for ; Tue, 18 Feb 2014 01:26:44 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1I1QiTG020587; Tue, 18 Feb 2014 01:26:44 GMT (envelope-from nobody) Message-Id: <201402180126.s1I1QiTG020587@cgiserv.freebsd.org> Date: Tue, 18 Feb 2014 01:26:44 GMT From: Olivier To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186853: [patch] Colour output support for lang/gcc48 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 01:30:02 -0000 >Number: 186853 >Category: ports >Synopsis: [patch] Colour output support for lang/gcc48 >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 Feb 18 01:30:01 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Olivier >Release: 9.2 >Organization: interfaSys srl >Environment: FreeBSD 9.2-RELEASE-p2 #0 r259303 >Description: lang/gcc48 does not support colour diagnostics and it will still take several months for lang/gcc49 to become stable, so here are patches which add support for "-fdiagnostics-color" [1], based on official commits made in the gcc 4.9 trunk [2][3][4] Note: If you're using ccache, you'll need to patch the port using PR 186851 [5] [1]http://gcc.gnu.org/onlinedocs/gcc/Language-Independent-Options.html#index-fdiagnostics-color-239 [2]http://repo.or.cz/w/official-gcc.git/commitdiff/41609f8bc12a3e7feeaf7749a03f880e5b3c2819#patch11 [3]http://repo.or.cz/w/official-gcc.git/commitdiff/adc604d41825b3cbd09045baeef09b1b88fc5a02 [4]http://repo.or.cz/w/official-gcc.git/commitdiff/71eeb8d395362158ffe9efbc2a7efbe3c4268db5#patch5 [5]http://www.freebsd.org/cgi/query-pr.cgi?pr=186851 >How-To-Repeat: >Fix: Patches included 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: # # files/ # files/patch-gcc_common.opt # files/patch-gcc_diagnostic-color.c # files/patch-gcc_diagnostic.c # files/patch-gcc_c-family_c-format.c # files/patch-gcc_cp_error.c # files/patch-gcc_Makefile.in # files/patch-gcc_toplev.c # files/patch-gcc_testsuite_lib_c-compat.exp # files/patch-gcc_diagnostic-core.h # files/patch-gcc_pretty-print.h # files/patch-gcc_langhooks.c # files/patch-gcc_diagnostic.def # files/patch-gcc_doc_invoke.texi # files/patch-gcc_diagnostic-color.h # files/patch-gcc_dwarf2out.c # files/patch-gcc_pretty-print.c # files/patch-gcc_opts.c # files/patch-gcc_testsuite_lib_prune.exp # echo c - files/ mkdir -p files/ > /dev/null 2>&1 echo x - files/patch-gcc_common.opt sed 's/^X//' >files/patch-gcc_common.opt << 'dee1ae459171401f7cd97b063f689e34' X--- gcc/common.opt X+++ gcc/common.opt X@@ -1028,6 +1028,30 @@ fdiagnostics-show-caret X Common Var(flag_diagnostics_show_caret) Init(1) X Show the source line with a caret indicating the column X X+fdiagnostics-color X+Common Alias(fdiagnostics-color=,always,never) X+; X+ X+fdiagnostics-color= X+Common Joined RejectNegative Var(flag_diagnostics_show_color) Enum(diagnostic_color_rule) Init(DIAGNOSTICS_COLOR_NO) X+-fdiagnostics-color=[never|always|auto] Colorize diagnostics X+ X+; Required for these enum values. X+SourceInclude X+diagnostic-color.h X+ X+Enum X+Name(diagnostic_color_rule) Type(int) X+ X+EnumValue X+Enum(diagnostic_color_rule) String(never) Value(DIAGNOSTICS_COLOR_NO) X+ X+EnumValue X+Enum(diagnostic_color_rule) String(always) Value(DIAGNOSTICS_COLOR_YES) X+ X+EnumValue X+Enum(diagnostic_color_rule) String(auto) Value(DIAGNOSTICS_COLOR_AUTO) X+ X fdiagnostics-show-option X Common Var(flag_diagnostics_show_option) Init(1) X Amend appropriate diagnostic messages with the command line option that controls them dee1ae459171401f7cd97b063f689e34 echo x - files/patch-gcc_diagnostic-color.c sed 's/^X//' >files/patch-gcc_diagnostic-color.c << '7ce27e8f33f1b5377cb15c35726aee8b' X--- /dev/null X+++ gcc/diagnostic-color.c X@@ -0,0 +1,307 @@ X+/* Output colorization. X+ Copyright 2011-2013 Free Software Foundation, Inc. X+ X+ This program is free software; you can redistribute it and/or modify X+ it under the terms of the GNU General Public License as published by X+ the Free Software Foundation; either version 3, or (at your option) X+ any later version. X+ X+ This program is distributed in the hope that it will be useful, X+ but WITHOUT ANY WARRANTY; without even the implied warranty of X+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the X+ GNU General Public License for more details. X+ X+ You should have received a copy of the GNU General Public License X+ along with this program; if not, write to the Free Software X+ Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA X+ 02110-1301, USA. */ X+ X+#include "config.h" X+#include "system.h" X+#include "diagnostic-color.h" X+ X+/* Select Graphic Rendition (SGR, "\33[...m") strings. */ X+/* Also Erase in Line (EL) to Right ("\33[K") by default. */ X+/* Why have EL to Right after SGR? X+ -- The behavior of line-wrapping when at the bottom of the X+ terminal screen and at the end of the current line is often X+ such that a new line is introduced, entirely cleared with X+ the current background color which may be different from the X+ default one (see the boolean back_color_erase terminfo(5) X+ capability), thus scrolling the display by one line. X+ The end of this new line will stay in this background color X+ even after reverting to the default background color with X+ "\33[m', unless it is explicitly cleared again with "\33[K" X+ (which is the behavior the user would instinctively expect X+ from the whole thing). There may be some unavoidable X+ background-color flicker at the end of this new line because X+ of this (when timing with the monitor's redraw is just right). X+ -- The behavior of HT (tab, "\t") is usually the same as that of X+ Cursor Forward Tabulation (CHT) with a default parameter X+ of 1 ("\33[I"), i.e., it performs pure movement to the next X+ tab stop, without any clearing of either content or screen X+ attributes (including background color); try X+ printf 'asdfqwerzxcv\rASDF\tZXCV\n' X+ in a bash(1) shell to demonstrate this. This is not what the X+ user would instinctively expect of HT (but is ok for CHT). X+ The instinctive behavior would include clearing the terminal X+ cells that are skipped over by HT with blank cells in the X+ current screen attributes, including background color; X+ the boolean dest_tabs_magic_smso terminfo(5) capability X+ indicates this saner behavior for HT, but only some rare X+ terminals have it (although it also indicates a special X+ glitch with standout mode in the Teleray terminal for which X+ it was initially introduced). The remedy is to add "\33K" X+ after each SGR sequence, be it START (to fix the behavior X+ of any HT after that before another SGR) or END (to fix the X+ behavior of an HT in default background color that would X+ follow a line-wrapping at the bottom of the screen in another X+ background color, and to complement doing it after START). X+ Piping GCC's output through a pager such as less(1) avoids X+ any HT problems since the pager performs tab expansion. X+ X+ Generic disadvantages of this remedy are: X+ -- Some very rare terminals might support SGR but not EL (nobody X+ will use "gcc -fdiagnostics-color" on a terminal that does not X+ support SGR in the first place). X+ -- Having these extra control sequences might somewhat complicate X+ the task of any program trying to parse "gcc -fdiagnostics-color" X+ output in order to extract structuring information from it. X+ A specific disadvantage to doing it after SGR START is: X+ -- Even more possible background color flicker (when timing X+ with the monitor's redraw is just right), even when not at the X+ bottom of the screen. X+ There are no additional disadvantages specific to doing it after X+ SGR END. X+ X+ It would be impractical for GCC to become a full-fledged X+ terminal program linked against ncurses or the like, so it will X+ not detect terminfo(5) capabilities. */ X+#define COLOR_SEPARATOR ";" X+#define COLOR_NONE "00" X+#define COLOR_BOLD "01" X+#define COLOR_UNDERSCORE "04" X+#define COLOR_BLINK "05" X+#define COLOR_REVERSE "07" X+#define COLOR_FG_BLACK "30" X+#define COLOR_FG_RED "31" X+#define COLOR_FG_GREEN "32" X+#define COLOR_FG_YELLOW "33" X+#define COLOR_FG_BLUE "34" X+#define COLOR_FG_MAGENTA "35" X+#define COLOR_FG_CYAN "36" X+#define COLOR_FG_WHITE "37" X+#define COLOR_BG_BLACK "40" X+#define COLOR_BG_RED "41" X+#define COLOR_BG_GREEN "42" X+#define COLOR_BG_YELLOW "43" X+#define COLOR_BG_BLUE "44" X+#define COLOR_BG_MAGENTA "45" X+#define COLOR_BG_CYAN "46" X+#define COLOR_BG_WHITE "47" X+#define SGR_START "\33[" X+#define SGR_END "m\33[K" X+#define SGR_SEQ(str) SGR_START str SGR_END X+#define SGR_RESET SGR_SEQ("") X+ X+ X+/* The context and logic for choosing default --color screen attributes X+ (foreground and background colors, etc.) are the following. X+ -- There are eight basic colors available, each with its own X+ nominal luminosity to the human eye and foreground/background X+ codes (black [0 %, 30/40], blue [11 %, 34/44], red [30 %, 31/41], X+ magenta [41 %, 35/45], green [59 %, 32/42], cyan [70 %, 36/46], X+ yellow [89 %, 33/43], and white [100 %, 37/47]). X+ -- Sometimes, white as a background is actually implemented using X+ a shade of light gray, so that a foreground white can be visible X+ on top of it (but most often not). X+ -- Sometimes, black as a foreground is actually implemented using X+ a shade of dark gray, so that it can be visible on top of a X+ background black (but most often not). X+ -- Sometimes, more colors are available, as extensions. X+ -- Other attributes can be selected/deselected (bold [1/22], X+ underline [4/24], standout/inverse [7/27], blink [5/25], and X+ invisible/hidden [8/28]). They are sometimes implemented by X+ using colors instead of what their names imply; e.g., bold is X+ often achieved by using brighter colors. In practice, only bold X+ is really available to us, underline sometimes being mapped by X+ the terminal to some strange color choice, and standout best X+ being left for use by downstream programs such as less(1). X+ -- We cannot assume that any of the extensions or special features X+ are available for the purpose of choosing defaults for everyone. X+ -- The most prevalent default terminal backgrounds are pure black X+ and pure white, and are not necessarily the same shades of X+ those as if they were selected explicitly with SGR sequences. X+ Some terminals use dark or light pictures as default background, X+ but those are covered over by an explicit selection of background X+ color with an SGR sequence; their users will appreciate their X+ background pictures not be covered like this, if possible. X+ -- Some uses of colors attributes is to make some output items X+ more understated (e.g., context lines); this cannot be achieved X+ by changing the background color. X+ -- For these reasons, the GCC color defaults should strive not X+ to change the background color from its default, unless it's X+ for a short item that should be highlighted, not understated. X+ -- The GCC foreground color defaults (without an explicitly set X+ background) should provide enough contrast to be readable on any X+ terminal with either a black (dark) or white (light) background. X+ This only leaves red, magenta, green, and cyan (and their bold X+ counterparts) and possibly bold blue. */ X+/* Default colors. The user can overwrite them using environment X+ variable GCC_COLORS. */ X+struct color_cap X+{ X+ const char *name; X+ const char *val; X+ unsigned char name_len; X+ bool free_val; X+}; X+ X+/* For GCC_COLORS. */ X+static struct color_cap color_dict[] = X+{ X+ { "error", SGR_SEQ (COLOR_BOLD COLOR_SEPARATOR COLOR_FG_RED), 5, false }, X+ { "warning", SGR_SEQ (COLOR_BOLD COLOR_SEPARATOR COLOR_FG_MAGENTA), X+ 7, false }, X+ { "note", SGR_SEQ (COLOR_BOLD COLOR_SEPARATOR COLOR_FG_CYAN), 4, false }, X+ { "caret", SGR_SEQ (COLOR_BOLD COLOR_SEPARATOR COLOR_FG_GREEN), 5, false }, X+ { "locus", SGR_SEQ (COLOR_BOLD), 5, false }, X+ { "quote", SGR_SEQ (COLOR_BOLD), 5, false }, X+ { NULL, NULL, 0, false } X+}; X+ X+const char * X+colorize_start (bool show_color, const char *name, size_t name_len) X+{ X+ struct color_cap const *cap; X+ X+ if (!show_color) X+ return ""; X+ X+ for (cap = color_dict; cap->name; cap++) X+ if (cap->name_len == name_len X+ && memcmp (cap->name, name, name_len) == 0) X+ break; X+ if (cap->name == NULL) X+ return ""; X+ X+ return cap->val; X+} X+ X+const char * X+colorize_stop (bool show_color) X+{ X+ return show_color ? SGR_RESET : ""; X+} X+ X+/* Parse GCC_COLORS. The default would look like: X+ GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01' X+ No character escaping is needed or supported. */ X+static bool X+parse_gcc_colors (void) X+{ X+ const char *p, *q, *name, *val; X+ char *b; X+ size_t name_len = 0, val_len = 0; X+ X+ p = getenv ("GCC_COLORS"); /* Plural! */ X+ if (p == NULL) X+ return true; X+ if (*p == '\0') X+ return false; X+ X+ name = q = p; X+ val = NULL; X+ /* From now on, be well-formed or you're gone. */ X+ for (;;) X+ if (*q == ':' || *q == '\0') X+ { X+ struct color_cap *cap; X+ X+ if (val) X+ val_len = q - val; X+ else X+ name_len = q - name; X+ /* Empty name without val (empty cap) X+ won't match and will be ignored. */ X+ for (cap = color_dict; cap->name; cap++) X+ if (cap->name_len == name_len X+ && memcmp (cap->name, name, name_len) == 0) X+ break; X+ /* If name unknown, go on for forward compatibility. */ X+ if (cap->val && val) X+ { X+ if (cap->free_val) X+ free (CONST_CAST (char *, cap->val)); X+ b = XNEWVEC (char, val_len + sizeof (SGR_SEQ (""))); X+ memcpy (b, SGR_START, strlen (SGR_START)); X+ memcpy (b + strlen (SGR_START), val, val_len); X+ memcpy (b + strlen (SGR_START) + val_len, SGR_END, X+ sizeof (SGR_END)); X+ cap->val = (const char *) b; X+ cap->free_val = true; X+ } X+ if (*q == '\0') X+ return true; X+ name = ++q; X+ val = NULL; X+ } X+ else if (*q == '=') X+ { X+ if (q == name || val) X+ return true; X+ X+ name_len = q - name; X+ val = ++q; /* Can be the empty string. */ X+ } X+ else if (val == NULL) X+ q++; /* Accumulate name. */ X+ else if (*q == ';' || (*q >= '0' && *q <= '9')) X+ q++; /* Accumulate val. Protect the terminal from being sent X+ garbage. */ X+ else X+ return true; X+} X+ X+#if defined(_WIN32) X+static bool X+should_colorize (void) X+{ X+ return false; X+} X+ X+bool X+colorize_init (void) X+{ X+ return false; X+} X+#else X+ X+/* Return true if we should use color when in auto mode, false otherwise. */ X+static bool X+should_colorize (void) X+{ X+ char const *t = getenv ("TERM"); X+ return t && strcmp (t, "dumb") != 0 && isatty (STDERR_FILENO); X+} X+ X+ X+bool X+colorize_init (diagnostic_color_rule_t rule) X+{ X+ switch (rule) X+ { X+ case DIAGNOSTICS_COLOR_NO: X+ return false; X+ case DIAGNOSTICS_COLOR_YES: X+ return parse_gcc_colors (); X+ case DIAGNOSTICS_COLOR_AUTO: X+ if (should_colorize ()) X+ return parse_gcc_colors (); X+ else X+ return false; X+ default: X+ gcc_unreachable (); X+ } X+} X+#endif 7ce27e8f33f1b5377cb15c35726aee8b echo x - files/patch-gcc_diagnostic.c sed 's/^X//' >files/patch-gcc_diagnostic.c << '326316ec1be3a844607af0a4bcad2cdf' X--- gcc/diagnostic.c.orig X+++ gcc/diagnostic.c X@@ -31,6 +31,7 @@ along with GCC; see the file COPYING3. If not see X #include "intl.h" X #include "backtrace.h" X #include "diagnostic.h" X+#include "diagnostic-color.h" X X #define pedantic_warning_kind(DC) \ X ((DC)->pedantic_errors ? DK_ERROR : DK_WARNING) X@@ -210,12 +210,31 @@ diagnostic_build_prefix (diagnostic_context *context, X const diagnostic_info *diagnostic) X { X static const char *const diagnostic_kind_text[] = { X-#define DEFINE_DIAGNOSTIC_KIND(K, T) (T), X+#define DEFINE_DIAGNOSTIC_KIND(K, T, C) (T), X #include "diagnostic.def" X #undef DEFINE_DIAGNOSTIC_KIND X "must-not-happen" X }; X+ static const char *const diagnostic_kind_color[] = { X+#define DEFINE_DIAGNOSTIC_KIND(K, T, C) (C), X+#include "diagnostic.def" X+#undef DEFINE_DIAGNOSTIC_KIND X+ NULL X+ }; X const char *text = _(diagnostic_kind_text[diagnostic->kind]); X+ const char *text_cs = "", *text_ce = ""; X+ const char *locus_cs, *locus_ce; X+ pretty_printer *pp = context->printer; X+ X+ if (diagnostic_kind_color[diagnostic->kind]) X+ { X+ text_cs = colorize_start (pp_show_color (pp), X+ diagnostic_kind_color[diagnostic->kind]); X+ text_ce = colorize_stop (pp_show_color (pp)); X+ } X+ locus_cs = colorize_start (pp_show_color (pp), "locus"); X+ locus_ce = colorize_stop (pp_show_color (pp)); X+ X expanded_location s = expand_location_to_spelling_point (diagnostic->location); X if (diagnostic->override_column) X s.column = diagnostic->override_column; X@@ -223,10 +242,13 @@ diagnostic_build_prefix (diagnostic_context *context, X X return X (s.file == NULL X- ? build_message_string ("%s: %s", progname, text) X+ ? build_message_string ("%s%s:%s %s%s%s", locus_cs, progname, locus_ce, X+ text_cs, text, text_ce) X : context->show_column X- ? build_message_string ("%s:%d:%d: %s", s.file, s.line, s.column, text) X- : build_message_string ("%s:%d: %s", s.file, s.line, text)); X+ ? build_message_string ("%s%s:%d:%d:%s %s%s%s", locus_cs, s.file, s.line, X+ s.column, locus_ce, text_cs, text, text_ce) X+ : build_message_string ("%s%s:%d:%s %s%s%s", locus_cs, s.file, s.line, locus_ce, X+ text_cs, text, text_ce)); X } X X /* If LINE is longer than MAX_WIDTH, and COLUMN is not smaller than X@@ -262,7 +284,7 @@ diagnostic_show_locus (diagnostic_context * context, X expanded_location s; X int max_width; X const char *saved_prefix; X- X+ const char *caret_cs, *caret_ce; X X if (!context->show_caret X || diagnostic->location <= BUILTINS_LOCATION X@@ -290,9 +312,13 @@ diagnostic_show_locus (diagnostic_context * context, X line++; X } X pp_newline (context->printer); X+ caret_cs = colorize_start (pp_show_color (context->printer), "caret"); X+ caret_ce = colorize_stop (pp_show_color (context->printer)); X+ X /* pp_printf does not implement %*c. */ X- buffer = XALLOCAVEC (char, s.column + 3); X- snprintf (buffer, s.column + 3, " %*c", s.column, '^'); X+ size_t len = s.column + 3 + strlen (caret_cs) + strlen (caret_ce); X+ buffer = XALLOCAVEC (char, len); X+ snprintf (buffer, len, "%s %*c%s", caret_cs, s.column, '^', caret_ce); X pp_string (context->printer, buffer); X pp_set_prefix (context->printer, saved_prefix); X } 326316ec1be3a844607af0a4bcad2cdf echo x - files/patch-gcc_c-family_c-format.c sed 's/^X//' >files/patch-gcc_c-family_c-format.c << '0d3364fdf973b68b13a17e686e486286' X--- gcc/c-family/c-format.c X+++ gcc/c-family/c-format.c X@@ -654,9 +654,10 @@ static const format_char_info gcc_diag_char_table[] = X /* Custom conversion specifiers. */ X X /* These will require a "tree" at runtime. */ X- { "K", 0, STD_C89, { T89_V, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN }, "q", "", NULL }, X+ { "K", 0, STD_C89, { T89_V, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN }, "q", "", NULL }, X X- { "<>'", 0, STD_C89, NOARGUMENTS, "", "", NULL }, X+ { "r", 1, STD_C89, { T89_C, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN }, "", "cR", NULL }, X+ { "<>'R",0, STD_C89, NOARGUMENTS, "", "", NULL }, X { "m", 0, STD_C89, NOARGUMENTS, "q", "", NULL }, X { NULL, 0, STD_C89, NOLENGTHS, NULL, NULL, NULL } X }; X@@ -676,9 +677,10 @@ static const format_char_info gcc_tdiag_char_table[] = X /* These will require a "tree" at runtime. */ X { "DFKTEV", 0, STD_C89, { T89_V, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN }, "q+", "", NULL }, X X- { "v", 0,STD_C89, { T89_I, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN }, "q#", "", NULL }, X+ { "v", 0, STD_C89, { T89_I, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN }, "q#", "", NULL }, X X- { "<>'", 0, STD_C89, NOARGUMENTS, "", "", NULL }, X+ { "r", 1, STD_C89, { T89_C, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN }, "", "cR", NULL }, X+ { "<>'R",0, STD_C89, NOARGUMENTS, "", "", NULL }, X { "m", 0, STD_C89, NOARGUMENTS, "q", "", NULL }, X { NULL, 0, STD_C89, NOLENGTHS, NULL, NULL, NULL } X }; X@@ -698,9 +700,10 @@ static const format_char_info gcc_cdiag_char_table[] = X /* These will require a "tree" at runtime. */ X { "DEFKTV", 0, STD_C89, { T89_V, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN }, "q+", "", NULL }, X X- { "v", 0,STD_C89, { T89_I, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN }, "q#", "", NULL }, X+ { "v", 0, STD_C89, { T89_I, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN }, "q#", "", NULL }, X X- { "<>'", 0, STD_C89, NOARGUMENTS, "", "", NULL }, X+ { "r", 1, STD_C89, { T89_C, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN }, "", "cR", NULL }, X+ { "<>'R",0, STD_C89, NOARGUMENTS, "", "", NULL }, X { "m", 0, STD_C89, NOARGUMENTS, "q", "", NULL }, X { NULL, 0, STD_C89, NOLENGTHS, NULL, NULL, NULL } X }; X@@ -725,7 +728,8 @@ static const format_char_info gcc_cxxdiag_char_table[] = X /* These accept either an 'int' or an 'enum tree_code' (which is handled as an 'int'.) */ X { "CLOPQ",0,STD_C89, { T89_I, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN }, "q", "", NULL }, X X- { "<>'", 0, STD_C89, NOARGUMENTS, "", "", NULL }, X+ { "r", 1, STD_C89, { T89_C, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN }, "", "cR", NULL }, X+ { "<>'R",0, STD_C89, NOARGUMENTS, "", "", NULL }, X { "m", 0, STD_C89, NOARGUMENTS, "q", "", NULL }, X { NULL, 0, STD_C89, NOLENGTHS, NULL, NULL, NULL } 0d3364fdf973b68b13a17e686e486286 echo x - files/patch-gcc_cp_error.c sed 's/^X//' >files/patch-gcc_cp_error.c << '88a37f29e530f76fb0fac40a83a68029' X--- ./gcc/cp/error.c.orig 2013-05-09 15:51:05.000000000 +0200 X+++ ./gcc/cp/error.c 2014-02-17 19:46:58.000000000 +0100 X@@ -3010,14 +3010,14 @@ X { X if (context->show_column && s.column != 0) X pp_printf (context->printer, X- _(" inlined from %qs at %s:%d:%d"), X+ _(" inlined from %qs at %r%s:%d:%d%R"), X cxx_printable_name_translate (fndecl, 2), X- s.file, s.line, s.column); X+ "locus", s.file, s.line, s.column); X else X pp_printf (context->printer, X- _(" inlined from %qs at %s:%d"), X+ _(" inlined from %qs at %r%s:%d%R"), X cxx_printable_name_translate (fndecl, 2), X- s.file, s.line); X+ "locus", s.file, s.line); X X } X else X@@ -3099,11 +3099,11 @@ X xloc = expand_location (loc); X X if (context->show_column) X- pp_verbatim (context->printer, _("%s:%d:%d: "), X- xloc.file, xloc.line, xloc.column); X+ pp_verbatim (context->printer, _("%r%s:%d:%d:%R "), X+ "locus", xloc.file, xloc.line, xloc.column); X else X- pp_verbatim (context->printer, _("%s:%d: "), X- xloc.file, xloc.line); X+ pp_verbatim (context->printer, _("%r%s:%d:%R "), X+ "locus", xloc.file, xloc.line); X X if (t != NULL) X { X@@ -3177,14 +3177,16 @@ X xloc = expand_location (loc); X if (context->show_column) X pp_verbatim (context->printer, X- _("%s:%d:%d: [ skipping %d instantiation contexts, " X- "use -ftemplate-backtrace-limit=0 to disable ]\n"), X- xloc.file, xloc.line, xloc.column, skip); X+ _("%r%s:%d:%d:%R [ skipping %d instantiation " X+ "contexts, use -ftemplate-backtrace-limit=0 to " X+ "disable ]\n"), X+ "locus", xloc.file, xloc.line, xloc.column, skip); X else X pp_verbatim (context->printer, X- _("%s:%d: [ skipping %d instantiation contexts, " X- "use -ftemplate-backtrace-limit=0 to disable ]\n"), X- xloc.file, xloc.line, skip); X+ _("%r%s:%d:%R [ skipping %d instantiation " X+ "contexts, use -ftemplate-backtrace-limit=0 to " X+ "disable ]\n"), X+ "locus", xloc.file, xloc.line, skip); X X do { X loc = t->locus; X@@ -3246,12 +3248,12 @@ X const char *s = expr_as_string (t, 0); X if (context->show_column) X pp_verbatim (context->printer, X- _("%s:%d:%d: in constexpr expansion of %qs"), X- xloc.file, xloc.line, xloc.column, s); X+ _("%r%s:%d:%d:%R in constexpr expansion of %qs"), X+ "locus", xloc.file, xloc.line, xloc.column, s); X else X pp_verbatim (context->printer, X- _("%s:%d: in constexpr expansion of %qs"), X- xloc.file, xloc.line, s); X+ _("%r%s:%d:%R in constexpr expansion of %qs"), X+ "locus", xloc.file, xloc.line, s); X pp_base_newline (context->printer); X } X } 88a37f29e530f76fb0fac40a83a68029 echo x - files/patch-gcc_Makefile.in sed 's/^X//' >files/patch-gcc_Makefile.in << '316c6780940ce47b4429f89b0e216eb6' X--- gcc/Makefile.in X+++ gcc/Makefile.in X@@ -1463,7 +1463,7 @@ X X # Objects in libcommon.a, potentially used by all host binaries and with X # no target dependencies. X-OBJS-libcommon = diagnostic.o pretty-print.o intl.o input.o version.o X+OBJS-libcommon = diagnostic.o diagnostic-color.o pretty-print.o intl.o input.o version.o X X # Objects in libcommon-target.a, used by drivers and by the core X # compiler and containing target-dependent code. X@@ -2659,11 +2659,12 @@ X $(GIMPLE_H) realmpfr.h $(TREE_FLOW_H) X diagnostic.o : diagnostic.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ X version.h $(DEMANGLE_H) $(INPUT_H) intl.h $(BACKTRACE_H) $(DIAGNOSTIC_H) \ X- diagnostic.def X+ diagnostic.def diagnostic-color.h X+diagnostic-color.o : diagnostic-color.c $(CONFIG_H) $(SYSTEM_H) diagnostic-color.h X opts.o : opts.c $(OPTS_H) $(OPTIONS_H) $(DIAGNOSTIC_CORE_H) $(CONFIG_H) $(SYSTEM_H) \ X coretypes.h dumpfile.h $(TM_H) \ X $(DIAGNOSTIC_H) insn-attr-common.h intl.h $(COMMON_TARGET_H) \ X- $(FLAGS_H) $(PARAMS_H) opts-diagnostic.h X+ $(FLAGS_H) $(PARAMS_H) opts-diagnostic.h diagnostic-color.h X opts-global.o : opts-global.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ X $(DIAGNOSTIC_H) $(OPTS_H) $(FLAGS_H) $(GGC_H) $(TREE_H) langhooks.h \ X $(TM_H) $(RTL_H) $(DBGCNT_H) debug.h $(LTO_STREAMER_H) output.h \ X@@ -2700,7 +2701,7 @@ X $(OPTS_H) params.def tree-mudflap.h $(TREE_PASS_H) $(GIMPLE_H) \ X tree-ssa-alias.h $(PLUGIN_H) realmpfr.h tree-diagnostic.h \ X $(TREE_PRETTY_PRINT_H) opts-diagnostic.h $(COMMON_TARGET_H) \ X- tsan.h X+ tsan.h diagnostic-color.h X X hwint.o : hwint.c $(CONFIG_H) $(SYSTEM_H) $(DIAGNOSTIC_CORE_H) X X@@ -3409,7 +3410,8 @@ X $(PARAMS_H) $(DIAGNOSTIC_CORE_H) X pointer-set.o: pointer-set.c pointer-set.h $(CONFIG_H) $(SYSTEM_H) X hooks.o: hooks.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(HOOKS_H) X-pretty-print.o: $(CONFIG_H) $(SYSTEM_H) coretypes.h intl.h $(PRETTY_PRINT_H) X+pretty-print.o: $(CONFIG_H) $(SYSTEM_H) coretypes.h intl.h $(PRETTY_PRINT_H) \ X+ diagnostic-color.h X errors.o : errors.c $(CONFIG_H) $(SYSTEM_H) errors.h X dbgcnt.o: dbgcnt.c $(CONFIG_H) $(SYSTEM_H) coretypes.h dumpfile.h \ X $(DIAGNOSTIC_CORE_H) $(DBGCNT_H) 316c6780940ce47b4429f89b0e216eb6 echo x - files/patch-gcc_toplev.c sed 's/^X//' >files/patch-gcc_toplev.c << '40c8cf1a67008fb27633a08c51b2dce1' X--- gcc/toplev.c X+++ gcc/toplev.c X@@ -74,6 +74,7 @@ along with GCC; see the file COPYING3. If not see X #include "gimple.h" X #include "tree-ssa-alias.h" X #include "plugin.h" X+#include "diagnostic-color.h" X X #if defined(DBX_DEBUGGING_INFO) || defined(XCOFF_DEBUGGING_INFO) X #include "dbxout.h" X@@ -1209,6 +1210,13 @@ process_options (void) X X maximum_field_alignment = initial_max_fld_align * BITS_PER_UNIT; X X+ /* Default to -fdiagnostics-color=auto if GCC_COLORS is in the environment, X+ otherwise default to -fdiagnostics-color=never. */ X+ if (!global_options_set.x_flag_diagnostics_show_color X+ && getenv ("GCC_COLORS")) X+ pp_show_color (global_dc->printer) X+ = colorize_init (DIAGNOSTICS_COLOR_AUTO); X+ X /* Allow the front end to perform consistency checks and do further X initialization based on the command line options. This hook also X sets the original filename if appropriate (e.g. foo.i -> foo.c) 40c8cf1a67008fb27633a08c51b2dce1 echo x - files/patch-gcc_testsuite_lib_c-compat.exp sed 's/^X//' >files/patch-gcc_testsuite_lib_c-compat.exp << 'e556f78dab48570f7019931dc3d7506d' X--- gcc/testsuite/lib/c-compat.exp X+++ gcc/testsuite/lib/c-compat.exp X@@ -34,7 +34,7 @@ X # X proc compat-use-alt-compiler { } { X global GCC_UNDER_TEST ALT_CC_UNDER_TEST X- global compat_same_alt compat_alt_caret X+ global compat_same_alt compat_alt_caret compat_alt_color X global TEST_ALWAYS_FLAGS X X # We don't need to do this if the alternate compiler is actually X@@ -44,6 +44,9 @@ proc compat-use-alt-compiler { } { X if { $compat_alt_caret == 0 } then { X regsub -- "-fno-diagnostics-show-caret" $TEST_ALWAYS_FLAGS "" TEST_ALWAYS_FLAGS X } X+ if { $compat_alt_color == 0 } then { X+ regsub -- "-fdiagnostics-color=never" $TEST_ALWAYS_FLAGS "" TEST_ALWAYS_FLAGS X+ } X } X } X X@@ -70,9 +73,11 @@ X global compat_same_alt X global compat_have_dfp X global compat_alt_caret X+ global compat_alt_color X global TEST_ALWAYS_FLAGS compat_save_TEST_ALWAYS_FLAGS X X set compat_alt_caret 0 X+ set compat_alt_color 0 X set compat_save_TEST_ALWAYS_FLAGS $TEST_ALWAYS_FLAGS X X verbose "compat_setup_dfp: $compat_use_alt $compat_same_alt" 2 X@@ -88,6 +93,10 @@ X int dummy; } "-fno-diagnostics-show-caret"] != 0 } { X set compat_alt_caret 1 X } X+ if { [check_no_compiler_messages_nocache compat_alt_has_color object { X+ int dummy; } "-fdiagnostics-color=never"] != 0 } { X+ set compat_alt_color 1 X+ } X compat-use-tst-compiler X } e556f78dab48570f7019931dc3d7506d echo x - files/patch-gcc_diagnostic-core.h sed 's/^X//' >files/patch-gcc_diagnostic-core.h << '061428f8ff88fa7105e9f778299df05e' X--- gcc/diagnostic-core.h X+++ gcc/diagnostic-core.h X@@ -28,7 +28,7 @@ along with GCC; see the file COPYING3. If not see X /* Constants used to discriminate diagnostics. */ X typedef enum X { X-#define DEFINE_DIAGNOSTIC_KIND(K, msgid) K, X+#define DEFINE_DIAGNOSTIC_KIND(K, msgid, C) K, X #include "diagnostic.def" X #undef DEFINE_DIAGNOSTIC_KIND X DK_LAST_DIAGNOSTIC_KIND, 061428f8ff88fa7105e9f778299df05e echo x - files/patch-gcc_pretty-print.h sed 's/^X//' >files/patch-gcc_pretty-print.h << '918379d4b01f7a1f008aeaeb4cb76843' X--- gcc/pretty-print.h X+++ gcc/pretty-print.h X@@ -151,6 +151,9 @@ typedef bool (*printer_fn) (pretty_printer *, text_info *, const char *, X output. */ X #define pp_translate_identifiers(PP) pp_base (PP)->translate_identifiers X X+/* True if colors should be shown. */ X+#define pp_show_color(PP) pp_base (PP)->show_color X+ X /* The data structure that contains the bare minimum required to do X proper pretty-printing. Clients may derived from this structure X and add additional fields they need. */ X@@ -194,6 +197,9 @@ struct pretty_print_info X /* Nonzero means identifiers are translated to the locale character X set on output. */ X bool translate_identifiers; X+ X+ /* Nonzero means that text should be colorized. */ X+ bool show_color; X }; X X #define pp_set_line_maximum_length(PP, L) \ 918379d4b01f7a1f008aeaeb4cb76843 echo x - files/patch-gcc_langhooks.c sed 's/^X//' >files/patch-gcc_langhooks.c << '3659d50959e6980b1bc667442790564c' X--- gcc/langhooks.c X+++ gcc/langhooks.c X@@ -452,14 +452,14 @@ X { X if (context->show_column) X pp_printf (context->printer, X- _(" inlined from %qs at %s:%d:%d"), X+ _(" inlined from %qs at %r%s:%d:%d%R"), X identifier_to_locale (lang_hooks.decl_printable_name (fndecl, 2)), X- s.file, s.line, s.column); X+ "locus", s.file, s.line, s.column); X else X pp_printf (context->printer, X- _(" inlined from %qs at %s:%d"), X+ _(" inlined from %qs at %r%s:%d%R"), X identifier_to_locale (lang_hooks.decl_printable_name (fndecl, 2)), X- s.file, s.line); X+ "locus", s.file, s.line); X X } X else 3659d50959e6980b1bc667442790564c echo x - files/patch-gcc_diagnostic.def sed 's/^X//' >files/patch-gcc_diagnostic.def << 'aaef6f41a8c68aa86329ca09c0126fa7' X--- gcc/diagnostic.def X+++ gcc/diagnostic.def X@@ -22,26 +22,26 @@ X kind specified. I.e. they're uninitialized. Within the diagnostic X machinery, this kind also means "don't change the existing kind", X meaning "no change is specified". */ X-DEFINE_DIAGNOSTIC_KIND (DK_UNSPECIFIED, "") X+DEFINE_DIAGNOSTIC_KIND (DK_UNSPECIFIED, "", NULL) X X /* If a diagnostic is set to DK_IGNORED, it won't get reported at all. X This is used by the diagnostic machinery when it wants to disable a X diagnostic without disabling the option which causes it. */ X-DEFINE_DIAGNOSTIC_KIND (DK_IGNORED, "") X+DEFINE_DIAGNOSTIC_KIND (DK_IGNORED, "", NULL) X X /* The remainder are real diagnostic types. */ X-DEFINE_DIAGNOSTIC_KIND (DK_FATAL, "fatal error: ") X-DEFINE_DIAGNOSTIC_KIND (DK_ICE, "internal compiler error: ") X-DEFINE_DIAGNOSTIC_KIND (DK_ERROR, "error: ") X-DEFINE_DIAGNOSTIC_KIND (DK_SORRY, "sorry, unimplemented: ") X-DEFINE_DIAGNOSTIC_KIND (DK_WARNING, "warning: ") X-DEFINE_DIAGNOSTIC_KIND (DK_ANACHRONISM, "anachronism: ") X-DEFINE_DIAGNOSTIC_KIND (DK_NOTE, "note: ") X-DEFINE_DIAGNOSTIC_KIND (DK_DEBUG, "debug: ") X+DEFINE_DIAGNOSTIC_KIND (DK_FATAL, "fatal error: ", "error") X+DEFINE_DIAGNOSTIC_KIND (DK_ICE, "internal compiler error: ", "error") X+DEFINE_DIAGNOSTIC_KIND (DK_ERROR, "error: ", "error") X+DEFINE_DIAGNOSTIC_KIND (DK_SORRY, "sorry, unimplemented: ", "error") X+DEFINE_DIAGNOSTIC_KIND (DK_WARNING, "warning: ", "warning") X+DEFINE_DIAGNOSTIC_KIND (DK_ANACHRONISM, "anachronism: ", "warning") X+DEFINE_DIAGNOSTIC_KIND (DK_NOTE, "note: ", "note") X+DEFINE_DIAGNOSTIC_KIND (DK_DEBUG, "debug: ", "note") X /* These two would be re-classified as DK_WARNING or DK_ERROR, so the X prefix does not matter. */ X-DEFINE_DIAGNOSTIC_KIND (DK_PEDWARN, "pedwarn: ") X-DEFINE_DIAGNOSTIC_KIND (DK_PERMERROR, "permerror: ") X+DEFINE_DIAGNOSTIC_KIND (DK_PEDWARN, "pedwarn: ", NULL) X+DEFINE_DIAGNOSTIC_KIND (DK_PERMERROR, "permerror: ", NULL) X X aaef6f41a8c68aa86329ca09c0126fa7 echo x - files/patch-gcc_doc_invoke.texi sed 's/^X//' >files/patch-gcc_doc_invoke.texi << 'ce6c7cc87b1a367f422f0c79cca89183' X--- gcc/doc/invoke.texi X+++ gcc/doc/invoke.texi X@@ -226,6 +226,7 @@ Objective-C and Objective-C++ Dialects}. X @xref{Language Independent Options,,Options to Control Diagnostic Messages Formatting}. X @gccoptlist{-fmessage-length=@var{n} @gol X -fdiagnostics-show-location=@r{[}once@r{|}every-line@r{]} @gol X+-fdiagnostics-color=@r{[}auto@r{|}never@r{|}always@r{]} @gol X -fno-diagnostics-show-option -fno-diagnostics-show-caret} X X @item Warning Options X@@ -2956,6 +2957,77 @@ messages reporter to emit the same source location information (as X prefix) for physical lines that result from the process of breaking X a message which is too long to fit on a single line. X X+@item -fdiagnostics-color[=@var{WHEN}] X+@itemx -fno-diagnostics-color X+@opindex fdiagnostics-color X+@cindex highlight, color, colour X+@vindex GCC_COLORS @r{environment variable} X+Use color in diagnostics. @var{WHEN} is @samp{never}, @samp{always}, X+or @samp{auto}. The default is @samp{never} if @env{GCC_COLORS} environment X+variable isn't present in the environment, and @samp{auto} otherwise. X+@samp{auto} means to use color only when the standard error is a terminal. X+The forms @option{-fdiagnostics-color} and @option{-fno-diagnostics-color} are X+aliases for @option{-fdiagnostics-color=always} and X+@option{-fdiagnostics-color=never}, respectively. X+ X+The colors are defined by the environment variable @env{GCC_COLORS}. X+Its value is a colon-separated list of capabilities and Select Graphic X+Rendition (SGR) substrings. SGR commands are interpreted by the X+terminal or terminal emulator. (See the section in the documentation X+of your text terminal for permitted values and their meanings as X+character attributes.) These substring values are integers in decimal X+representation and can be concatenated with semicolons. X+Common values to concatenate include X+@samp{1} for bold, X+@samp{4} for underline, X+@samp{5} for blink, X+@samp{7} for inverse, X+@samp{39} for default foreground color, X+@samp{30} to @samp{37} for foreground colors, X+@samp{90} to @samp{97} for 16-color mode foreground colors, X+@samp{38;5;0} to @samp{38;5;255} X+for 88-color and 256-color modes foreground colors, X+@samp{49} for default background color, X+@samp{40} to @samp{47} for background colors, X+@samp{100} to @samp{107} for 16-color mode background colors, X+and @samp{48;5;0} to @samp{48;5;255} X+for 88-color and 256-color modes background colors. X+ X+The default @env{GCC_COLORS} is X+@samp{error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01} X+where @samp{01;31} is bold red, @samp{01;35} is bold magenta, X+@samp{01;36} is bold cyan, @samp{01;32} is bold green and X+@samp{01} is bold. Setting @env{GCC_COLORS} to the empty X+string disables colors. X+Supported capabilities are as follows. X+ X+@table @code X+@item error= X+@vindex error GCC_COLORS @r{capability} X+SGR substring for error: markers. X+ X+@item warning= X+@vindex warning GCC_COLORS @r{capability} X+SGR substring for warning: markers. X+ X+@item note= X+@vindex note GCC_COLORS @r{capability} X+SGR substring for note: markers. X+ X+@item caret= X+@vindex caret GCC_COLORS @r{capability} X+SGR substring for caret line. X+ X+@item locus= X+@vindex locus GCC_COLORS @r{capability} X+SGR substring for location information, @samp{file:line} or X+@samp{file:line:column} etc. X+ X+@item quote= X+@vindex quote GCC_COLORS @r{capability} X+SGR substring for information printed within quotes. X+@end table X+ X @item -fno-diagnostics-show-option X @opindex fno-diagnostics-show-option X @opindex fdiagnostics-show-option ce6c7cc87b1a367f422f0c79cca89183 echo x - files/patch-gcc_diagnostic-color.h sed 's/^X//' >files/patch-gcc_diagnostic-color.h << '969da4dce556f7982f64542e38d373cc' X--- /dev/null X+++ gcc/diagnostic-color.h X@@ -0,0 +1,66 @@ X+/* Copyright (C) 2013 Free Software Foundation, Inc. X+ Contributed by Manuel Lopez-Ibanez X+ X+This file is part of GCC. X+ X+GCC is free software; you can redistribute it and/or modify it under X+the terms of the GNU General Public License as published by the Free X+Software Foundation; either version 3, or (at your option) any later X+version. X+ X+GCC is distributed in the hope that it will be useful, but WITHOUT ANY X+WARRANTY; without even the implied warranty of MERCHANTABILITY or X+FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License X+for more details. X+ X+You should have received a copy of the GNU General Public License X+along with GCC; see the file COPYING3. If not see X+. */ X+ X+/* Based on code from: */ X+/* grep.c - main driver file for grep. X+ Copyright (C) 1992, 1997-2002, 2004-2013 Free Software Foundation, Inc. X+ X+ This program is free software; you can redistribute it and/or modify X+ it under the terms of the GNU General Public License as published by X+ the Free Software Foundation; either version 3, or (at your option) X+ any later version. X+ X+ This program is distributed in the hope that it will be useful, X+ but WITHOUT ANY WARRANTY; without even the implied warranty of X+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the X+ GNU General Public License for more details. X+ X+ You should have received a copy of the GNU General Public License X+ along with this program; if not, write to the Free Software X+ Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA X+ 02110-1301, USA. X+ X+ Written July 1992 by Mike Haertel. */ X+ X+#ifndef GCC_DIAGNOSTIC_COLOR_H X+#define GCC_DIAGNOSTIC_COLOR_H X+ X+/* How often diagnostics are prefixed by their locations: X+ o DIAGNOSTICS_SHOW_PREFIX_NEVER: never - not yet supported; X+ o DIAGNOSTICS_SHOW_PREFIX_ONCE: emit only once; X+ o DIAGNOSTICS_SHOW_PREFIX_EVERY_LINE: emit each time a physical X+ line is started. */ X+typedef enum X+{ X+ DIAGNOSTICS_COLOR_NO = 0, X+ DIAGNOSTICS_COLOR_YES = 1, X+ DIAGNOSTICS_COLOR_AUTO = 2 X+} diagnostic_color_rule_t; X+ X+const char *colorize_start (bool, const char *, size_t); X+const char *colorize_stop (bool); X+bool colorize_init (diagnostic_color_rule_t); X+ X+inline const char * X+colorize_start (bool show_color, const char *name) X+{ X+ return colorize_start (show_color, name, strlen (name)); X+} X+ X+#endif /* ! GCC_DIAGNOSTIC_COLOR_H */ 969da4dce556f7982f64542e38d373cc echo x - files/patch-gcc_dwarf2out.c sed 's/^X//' >files/patch-gcc_dwarf2out.c << 'ad4d1a4ca20ce1fbed8348f859eeb78b' X--- gcc/dwarf2out.c X+++ gcc/dwarf2out.c X@@ -18828,6 +18828,7 @@ gen_producer_string (void) X case OPT_fdiagnostics_show_location_: X case OPT_fdiagnostics_show_option: X case OPT_fdiagnostics_show_caret: X+ case OPT_fdiagnostics_color_: X case OPT_fverbose_asm: X case OPT____: X case OPT__sysroot_: ad4d1a4ca20ce1fbed8348f859eeb78b echo x - files/patch-gcc_pretty-print.c sed 's/^X//' >files/patch-gcc_pretty-print.c << 'a410b22ff12fea749baa3bd690b09af9' X--- ./gcc/pretty-print.c.orig 2013-01-10 21:38:27.000000000 +0100 X+++ ./gcc/pretty-print.c 2014-02-17 21:27:57.000000000 +0100 X@@ -23,6 +23,7 @@ X #include "coretypes.h" X #include "intl.h" X #include "pretty-print.h" X+#include "diagnostic-color.h" X X #if HAVE_ICONV X #include X@@ -226,6 +227,8 @@ X %c: character. X %s: string. X %p: pointer. X+ %r: if pp_show_color(pp), switch to color identified by const char *. X+ %R: if pp_show_color(pp), reset color. X %m: strerror(text->err_no) - does not consume a value from args_ptr. X %%: '%'. X %<: opening quote. X@@ -300,18 +303,37 @@ X continue; X X case '<': X- obstack_grow (&buffer->chunk_obstack, X- open_quote, strlen (open_quote)); X- p++; X- continue; X+ { X+ obstack_grow (&buffer->chunk_obstack, X+ open_quote, strlen (open_quote)); X+ const char *colorstr X+ = colorize_start (pp_show_color (pp), "quote"); X+ obstack_grow (&buffer->chunk_obstack, colorstr, strlen (colorstr)); X+ p++; X+ continue; X+ } X X case '>': X+ { X+ const char *colorstr = colorize_stop (pp_show_color (pp)); X+ obstack_grow (&buffer->chunk_obstack, colorstr, strlen (colorstr)); X+ } X+ /* FALLTHRU */ X case '\'': X obstack_grow (&buffer->chunk_obstack, X close_quote, strlen (close_quote)); X p++; X continue; X X+ case 'R': X+ { X+ const char *colorstr = colorize_stop (pp_show_color (pp)); X+ obstack_grow (&buffer->chunk_obstack, colorstr, X+ strlen (colorstr)); X+ p++; X+ continue; X+ } X+ X case 'm': X { X const char *errstr = xstrerror (text->err_no); X@@ -466,10 +488,19 @@ X gcc_assert (!wide || precision == 0); X X if (quote) X- pp_string (pp, open_quote); X+ { X+ pp_string (pp, open_quote); X+ pp_string (pp, colorize_start (pp_show_color (pp), "quote")); X+ } X X switch (*p) X { X+ case 'r': X+ pp_string (pp, colorize_start (pp_show_color (pp), X+ va_arg (*text->args_ptr, X+ const char *))); X+ break; X+ X case 'c': X pp_character (pp, va_arg (*text->args_ptr, int)); X break; X@@ -563,7 +594,10 @@ X } X X if (quote) X- pp_string (pp, close_quote); X+ { X+ pp_string (pp, colorize_stop (pp_show_color (pp))); X+ pp_string (pp, close_quote); X+ } X X obstack_1grow (&buffer->chunk_obstack, '\0'); X *formatters[argno] = XOBFINISH (&buffer->chunk_obstack, const char *); a410b22ff12fea749baa3bd690b09af9 echo x - files/patch-gcc_opts.c sed 's/^X//' >files/patch-gcc_opts.c << 'c013264529888ccebdaefbb212b56d6a' X--- gcc/opts.c X+++ gcc/opts.c X@@ -30,6 +30,7 @@ along with GCC; see the file COPYING3. If not see X #include "flags.h" X #include "params.h" X #include "diagnostic.h" X+#include "diagnostic-color.h" X #include "opts-diagnostic.h" X #include "insn-attr-common.h" X #include "common/common-target.h" X@@ -1497,6 +1498,11 @@ common_handle_option (struct gcc_options *opts, X dc->show_caret = value; X break; X X+ case OPT_fdiagnostics_color_: X+ pp_show_color (dc->printer) X+ = colorize_init ((diagnostic_color_rule_t) value); X+ break; X+ X case OPT_fdiagnostics_show_option: X dc->show_option_requested = value; X break; c013264529888ccebdaefbb212b56d6a echo x - files/patch-gcc_testsuite_lib_prune.exp sed 's/^X//' >files/patch-gcc_testsuite_lib_prune.exp << 'a62f02ad894cd7784e76bd9581241ad8' X--- gcc/testsuite/lib/prune.exp X+++ gcc/testsuite/lib/prune.exp X@@ -19,7 +19,7 @@ X if ![info exists TEST_ALWAYS_FLAGS] { X set TEST_ALWAYS_FLAGS "" X } X-set TEST_ALWAYS_FLAGS "-fno-diagnostics-show-caret $TEST_ALWAYS_FLAGS" X+set TEST_ALWAYS_FLAGS "-fno-diagnostics-show-caret -fdiagnostics-color=never $TEST_ALWAYS_FLAGS" X X proc prune_gcc_output { text } { X #send_user "Before:$text\n" a62f02ad894cd7784e76bd9581241ad8 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 01:30:17 2014 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 ESMTPS id 2A9C239B; Tue, 18 Feb 2014 01:30:17 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id ED91B16C1; Tue, 18 Feb 2014 01:30: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 s1I1UGF5017258; Tue, 18 Feb 2014 01:30:16 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1I1UGtM017257; Tue, 18 Feb 2014 01:30:16 GMT (envelope-from edwin) Date: Tue, 18 Feb 2014 01:30:16 GMT Message-Id: <201402180130.s1I1UGtM017257@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gerald@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186853: [patch] Colour output support for lang/gcc48 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 01:30:17 -0000 Synopsis: [patch] Colour output support for lang/gcc48 Responsible-Changed-From-To: freebsd-ports-bugs->gerald Responsible-Changed-By: edwin Responsible-Changed-When: Tue Feb 18 01:30:16 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186853 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 03:50:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 967E337A for ; Tue, 18 Feb 2014 03:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 702351666 for ; Tue, 18 Feb 2014 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 s1I3o0Nn059410 for ; Tue, 18 Feb 2014 03:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1I3o0Z8059409; Tue, 18 Feb 2014 03:50:00 GMT (envelope-from gnats) Resent-Date: Tue, 18 Feb 2014 03:50:00 GMT Resent-Message-Id: <201402180350.s1I3o0Z8059409@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, Pedro Giffuni Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2E2662BC for ; Tue, 18 Feb 2014 03:48:18 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0CD01163E for ; Tue, 18 Feb 2014 03:48:18 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1I3mHw1028888 for ; Tue, 18 Feb 2014 03:48:17 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1I3mH5Z028887; Tue, 18 Feb 2014 03:48:17 GMT (envelope-from nobody) Message-Id: <201402180348.s1I3mH5Z028887@cgiserv.freebsd.org> Date: Tue, 18 Feb 2014 03:48:17 GMT From: Pedro Giffuni To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186855: New port: math/reduce X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 03:50:00 -0000 >Number: 186855 >Category: ports >Synopsis: New port: math/reduce >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 Feb 18 03:50:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Pedro Giffuni >Release: 10-STABLE >Organization: >Environment: FreeBSD kakumen 10.0-STABLE FreeBSD 10.0-STABLE #1 r262131: Mon Feb 17 16:01:38 COT 2014 pfg@kakumen:/usr/obj/usr/src/sys/GENERIC amd64 >Description: This is a powerful Computer-Algebra System written in it's own version of LISP with quite a long history behind it. The package was available commercially in two variants (PSL and CSL) and since some years ago it has been available freely under a BSD license. This port only builds and install the CSL version, which is very portable and has a small memory footprint but is somewhat slower than the PSL version. >How-To-Repeat: I have had this port for a while in the "wanted ports" Wiki and finally I found some time to finish it. It is also my first port that uses staging from the start. >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: # # reduce # reduce/Makefile # reduce/distinfo # reduce/files # reduce/files/redcsl.1 # reduce/files/runcsl.sh # reduce/files/patch-csl_cslbase_headers.h # reduce/pkg-descr # reduce/pkg-plist # echo c - reduce mkdir -p reduce > /dev/null 2>&1 echo x - reduce/Makefile sed 's/^X//' >reduce/Makefile << '2c9ce4455c8dc4ce66412ec2ebb6f3e5' X# Created by: Pedro Giffuni X# $FreeBSD$ X XPORTNAME= reduce XPORTVERSION= 20110414 XCATEGORIES= math lang XMASTER_SITES= SF/${PORTNAME}-algebra/ XDISTNAME= ${PORTNAME}-src-${PORTVERSION} X XMAINTAINER= giffunip@tutopia.com XCOMMENT= Portable general-purpose computer algebra system (CSL version) X XLICENSE= BSD X XRUN_DEPENDS= gnuplot:${PORTSDIR}/math/gnuplot XLIB_DEPENDS= libjpeg.so:${PORTSDIR}/graphics/jpeg \ X libpng15.so:${PORTSDIR}/graphics/png \ X libtiff.so:${PORTSDIR}/graphics/tiff X XUSE_BZIP2= yes XUSES= gmake XUSE_XORG= xext x11 xft XUSE_GNOME= lthack ltverhack X XWRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} X XHAS_CONFIGURE= yes XCONFIGURE_ARGS= --with-csl XALL_TARGET= X X.include X XHMAN1= redcsl.1 X X.if ${ARCH} == "amd64" XTARGET_SDIR= x86_64-unknown-${OPSYS:L}${OSREL} X.else XTARGET_SDIR= ${ARCH}-unknown-${OPSYS:L}${OSREL} X.endif XREDUCECSL= ${WRKSRC}/cslbuild/${TARGET_SDIR}/csl X Xdo-install: X ${MKDIR} ${STAGEDIR}${DATADIR} X ${INSTALL_PROGRAM} ${REDUCECSL}/reduce ${STAGEDIR}${DATADIR} X ${INSTALL_DATA} ${REDUCECSL}/reduce.img ${STAGEDIR}${DATADIR} X ${INSTALL_SCRIPT} ${FILESDIR}/runcsl.sh ${STAGEDIR}${PREFIX}/bin/redcsl X ${INSTALL_MAN} ${FILESDIR}/redcsl.1 ${STAGEDIR}${MANPREFIX}/man/man1/ X ${MKDIR} ${STAGEDIR}${DATADIR}/reduce.doc X (cd ${REDUCECSL}/reduce.doc && ${COPYTREE_SHARE} . \ X ${STAGEDIR}${DATADIR}/reduce.doc) X ${MKDIR} ${STAGEDIR}${PREFIX}/${FONTDIR} X (cd ${REDUCECSL}/reduce.fonts && ${COPYTREE_SHARE} . \ X ${STAGEDIR}${DATADIR}/reduce.fonts) X X.include 2c9ce4455c8dc4ce66412ec2ebb6f3e5 echo x - reduce/distinfo sed 's/^X//' >reduce/distinfo << 'f64a885b9e81d87a488bf7574cf225d6' XSHA256 (reduce-src-20110414.tar.bz2) = d6ac7a30e817ea71555d21b03a119a5236967b251eae8946a1817ae9a81cee03 XSIZE (reduce-src-20110414.tar.bz2) = 136783974 f64a885b9e81d87a488bf7574cf225d6 echo c - reduce/files mkdir -p reduce/files > /dev/null 2>&1 echo x - reduce/files/redcsl.1 sed 's/^X//' >reduce/files/redcsl.1 << '036f6084133ba4efe259d3762efb02ea' X.TH REDCSL 1 "2010 October 10" "redcsl" X. X. X.SH NAME Xredcsl \- Run REDUCE under CSL X. X. X.SH Synopsis X.B redcsl X[ X.I command-line switches X] [ X.I file ...\& X] X. X. X.SH DESCRIPTION X.I redcsl Xruns REDUCE based on the X.BR CSL XLisp system. X. X. X.SH REDCSL Options X.TP X.I file Xread input from file. X XAfter all other options have been processed, the files given on the rest of Xthe command line are read in and processed. A filename of X.B - Xcan be used to designate standard input. X.TP X.B -b [OIP] Xtells the system to avoid any attempt to recolour prompts and input text. XIt will mainly be needed on X terminals that have been set up so that they Xuse colours that make the defaults here unhelpful, like white-on-black. X XThis option can be followed by colour specifications to make things yet Xmore specific. It is supposed to be the idea that three colours can be Xspecified after it for output, input and prompts, with the letters KRGYbMCW Xstanding for blacK, Red, Green, Yellow, blue, Magenta, Cyan and White. X XThis may not fully work yet! X.TP X.BI -d " symbol[=value]" Xdefines Lisp symbol X.I symbol Xat system start, with value X.I value X. X.TP X.B -g Xenables debugging mode. It sets a lisp variable X.SB !*backtrace Xand arranges that all backtraces are displayed notwithstanding use of X.SB errorset. X.TP X.BI \-i " imagefile\fR,\fP " \-i- XCSL and Reduce use image files to keep both initial heap images and X.I fasl Xloadable modules. By default if the executable launched has some name, Xsay xxx, then an image file xxx.img is used. But to support greater Xgenerality X.B -i Xintroduces a new image, X.B -i- Xindicates the default one and a sequence of such directives list Ximage files that are searched in the order given. These are read-only. XThe similar option X.B -o Xequally introduces image files that are scanned for input, but that Xcan also be used for output. Normally there would only be one X.B -o Xdirective. X.TP X.BI -j " dumpfile" Xdumps a record of all the files read during the Lisp run into X.I dumpfile Xwith a view that it can be included in a Makefile to document dependencies. X.TP X.BI -k " nnn[/ss]" Xsets the size of the heap to be used. If X.BI -k nnn Xis given then that much Xmemory will be allocated and the heap will never expand. Without this Xoption a default amount is used, and (on many machines) it will grow Xif space seems tight. X XIf this options is given as X.B -k X.I nnn/ss Xthen ss is the number of CSL pages to be allocated to the Lisp stack. XThe default value (which is 1) should suffice for almost all users, and Xit should be noted that the C stack is separate from and independent of Xthis one and it too could overflow. X XA suffix K, M or G on the number indicates units of kilobytes, Xmegabytes or gigabytes, with megabytes being the default. so X.B -k200M Xmight represent typical usage. X.TP X.BI -l " logfile" Xsends a copy of the standard output to X.I logfile\fR.\fP XIt is very much as if the Lisp function X.SB (spool logfile) Xhad been invoked at the start of the run. X.TP X.B -n Xignore startup function. X XNormally when the system is started it will run a X.I restart function Xas indicated in its heap image. There can be cases where a heap image has Xbeen created in a bad way such that the saved restart function always fails Xabruptly, and hence working out what was wrong becomes hard. In such cases Xit may be useful to give the X.B -n Xoptions that forces CSL to ignore any startup function and merely begin Xin a minimal Lisp-style read-eval-print loop. X.TP X.B -o Xsee X.B -i X.TP X.B -q Xquiet run: sets X.SB !*echo Xto X.SB nil Xand switches off garbage collector messages. X.TP X.BI -r " nnn[,mmm]" Xseed random number generator. X XThe random-number generator in CSL is normally initialised to a value Xbased on the time of day and is hence not reproducible from run to run. XIn many cases that behavious is desirable, but for debugging it can be useful Xto force a seed. The directive X.B -r X.I nnn[,mmm] Xsets the seed to up to 64 bits taken from the values X.I nnn Xand X.I mmm. XTHe second value is optional, and specifying X.B -r0 Xexplicitly asks for the non-reproducible behaviour (I hope). Note that Xthe main Reduce-level random number source is coded at a higher level Xand does not get reset this way - this is the lower level CSL Xgenerator. X.TP X.B -s Xsets the Lisp variable X.SB !*plap Xand hence the compiler generates an assembly listing. X.TP X.BI -t " name" Xreports the time-stamp on the named module, and then exits. This is Xfor use in perl scripts and the like, and is needed because the stamps Xon modules within an image or library file are not otherwise instantly Xavailable. X XNote that especially on windowed systems it may be necessary to use Xthis with X.BI -- " filename" Xsince the information generated here goes to the default output, which Xin some cases is just the screen. X.TP X.BI -u " symbol" Xforcibly undefine a Lisp symbol. There are probably very very few Xcases where it is useful since I do not have a large number of Xsystem-specific predefined names. X.TP X.B -v XAn option to make things mildly more verbose. It displays more of a Xbanner at startup and switches garbage collection messages on. X.TP X.B -w Xforce console mode. X XOn a typical system if the system is launched it creates a new window and uses Xits own windowed intarface in that. If it is run such that at startup the Xstandard input or output are associated with a file or pipe, or under X the Xvariable X.SB DISPLAY Xis not set it will try to start up in console Xmode. The flag X.B -w Xindicates that the system should run in console Xmore regadless, while X.B -w+ Xattempts a window even if that seems doomed to failure. When running Xthe system to obey a script it will often make sense to use the X.B -w Xoption. Note that on Windows the system is provided as Xtwo separate (but almost identical) binaries. For example the file X.SB csl.exe Xis linked in windows mode. A result is that if launched from the Xcommand line it detaches from its console, and if launched by Xdouble-clicking it does not create a console. It is in fact very ugly Xwhen double clicking on an application causes an unwanted console Xwindow to appear. In contrast X.SB csl.com Xis a console mode version of just the same program, so when launched Xfrom a command line it can communicate with the console in the Xordinary expected manner. X.TP X.B -z Xstart without image. X XWhen bootstrapping it is necessary to start up the system for one initial time Xwithout the benefit of any image file at all. This option makes Xthis happen, so when it is specified the system starts up with a minimal Xenvironment and only those capabilities that are present in the CSL Xkernel. It will normally make sense to start loading some basic Lisp Xdefinitions rather rapidly. The files X.SB compat.lsp X, X.SB extras.lsp Xand X.SB compiler.lsp Xhave Lisp source for the main things I use, and once they are loaded Xthe Lisp compiler can be used to compile itself. X.TP X.B --help XIt is probably obvious what this option does! But in particular it Xdisplays an explanation of the X.B --dump-source Xoption, and hence should count as a prominent and easy-to-find way of Xalerting people to their rights and obligations. Note that on Windows Xof the application was linked as a windows binary it carefully creates Xa console to display the help text in, and organizes a delay to give Xpeople a chance to read it. X.TP X.BI -- " filename" XIf the application is run in console mode then its standard output could Xbe redirected to a file using shell facilities. But the X.B -- Xdirective (followed by a file name) redirects output within the Lisp Xrather than outside it. If this is done a very limited capability for Xsending progress or status reports to stderr (or the title-bar when Xrunning in windowed mode) remains via the X.SB report!-right Xfunction. X XThe X.B -w Xoption may frequently make sense in such cases, but if that Xis not used and the system tries to run in a window it will create it Xstarting off minimised. X. 036f6084133ba4efe259d3762efb02ea echo x - reduce/files/runcsl.sh sed 's/^X//' >reduce/files/runcsl.sh << 'c02f7086e8f4c4b98062e872d03bf7d0' X#! /bin/sh X Xexec /usr/local/share/reduce/reduce $* X c02f7086e8f4c4b98062e872d03bf7d0 echo x - reduce/files/patch-csl_cslbase_headers.h sed 's/^X//' >reduce/files/patch-csl_cslbase_headers.h << '8903c66736260f6e90e07b0f14218ffd' XIndex: csl/cslbase/headers.h X=================================================================== X--- csl/cslbase/headers.h (revision 1603) X+++ csl/cslbase/headers.h (working copy) X@@ -97,6 +97,17 @@ X #define PRIxPTR "llx" X #endif X X+/* X+ * This is necessary to for timeval in BSD systems. X+ */ X+#if (defined(__unix__) || defined(unix)) && !defined(USG) X+#include X+#endif X+ X+#if (defined(BSD) && (BSD >= 199103)) X+#include X+#endif X+ X #ifndef UNDER_CE X /* X * The test for UNDER_CE is a little odd here, but when I once compiled a 8903c66736260f6e90e07b0f14218ffd echo x - reduce/pkg-descr sed 's/^X//' >reduce/pkg-descr << '4ec86e57fcb7f549897bc3be737e46b9' XREDUCE is an interactive system for general algebraic computations of Xinterest to mathematicians, scientists and engineers. It has been Xproduced by a collaborative effort involving many contributors. Its Xcapabilities include: X X* expansion and ordering of polynomials and rational functions; X* substitutions and pattern matching in a wide variety of forms; X* automatic and user controlled simplification of expressions; X* calculations with symbolic matrices; X* arbitrary precision integer and real arithmetic; X* facilities for defining new functions and extending program syntax; X* analytic differentiation and integration; X* factorization of polynomials; X* facilities for the solution of a variety of algebraic equations; X* facilities for the output of expressions in a variety of formats; X* facilities for generating optimized numerical programs from symbolic input; X* calculations with a wide variety of special functions; X* Dirac matrix calculations of interest to high energy physicists. X XIt is often used as an algebraic calculator for problems that are possible Xto do by hand. However, REDUCE is designed to support calculations that Xare not feasible by hand. X XWWW: http://www.reduce-algebra.com/ 4ec86e57fcb7f549897bc3be737e46b9 echo x - reduce/pkg-plist sed 's/^X//' >reduce/pkg-plist << 'fb4fb61c35d2d9d8405ab62b49321b08' Xbin/redcsl X%%DATADIR%%/reduce X%%DATADIR%%/reduce.img X%%DATADIR%%/reduce.doc/matrix.tex X%%DATADIR%%/reduce.doc/progstr.tex X%%DATADIR%%/reduce.doc/inter.tex X%%DATADIR%%/reduce.doc/macros.tex X%%DATADIR%%/reduce.doc/convert.tex X%%DATADIR%%/reduce.doc/exprn.tex X%%DATADIR%%/reduce.doc/r38_0500.html X%%DATADIR%%/reduce.doc/hephys.tex X%%DATADIR%%/reduce.doc/io.tex X%%DATADIR%%/reduce.doc/r38_idx.html X%%DATADIR%%/reduce.doc/manual.tex X%%DATADIR%%/reduce.doc/oper2.tex X%%DATADIR%%/reduce.doc/polyrat.tex X%%DATADIR%%/reduce.doc/rest.tex X%%DATADIR%%/reduce.doc/heugcd.tex X%%DATADIR%%/reduce.doc/BSD-LICENSE.txt X%%DATADIR%%/reduce.doc/r38_0400.html X%%DATADIR%%/reduce.doc/list.tex X%%DATADIR%%/reduce.doc/cfrac.tex X%%DATADIR%%/reduce.doc/r38_0001.html X%%DATADIR%%/reduce.doc/BINARY-LICENSE.txt X%%DATADIR%%/reduce.doc/r38_0150.html X%%DATADIR%%/reduce.doc/symbolic.tex X%%DATADIR%%/reduce.doc/r38_0450.html X%%DATADIR%%/reduce.doc/r38_0350.html X%%DATADIR%%/reduce.doc/rlisp88.tex X%%DATADIR%%/reduce.doc/rlispref.tex X%%DATADIR%%/reduce.doc/abstract.tex X%%DATADIR%%/reduce.doc/acknowl.tex X%%DATADIR%%/reduce.doc/command.tex X%%DATADIR%%/reduce.doc/map.tex X%%DATADIR%%/reduce.doc/rememb.tex X%%DATADIR%%/reduce.doc/redlogo.gif X%%DATADIR%%/reduce.doc/oper.tex X%%DATADIR%%/reduce.doc/maintain.tex X%%DATADIR%%/reduce.doc/aprop.tex X%%DATADIR%%/reduce.doc/title.tex X%%DATADIR%%/reduce.doc/r38_0100.html X%%DATADIR%%/reduce.doc/structr.tex X%%DATADIR%%/reduce.doc/LGPL-2.1.txt X%%DATADIR%%/reduce.doc/solve.tex X%%DATADIR%%/reduce.doc/util.tex X%%DATADIR%%/reduce.doc/subst.tex X%%DATADIR%%/reduce.doc/r38_0250.html X%%DATADIR%%/reduce.doc/intro.tex X%%DATADIR%%/reduce.doc/r38_0550.html X%%DATADIR%%/reduce.doc/r38_0050.html X%%DATADIR%%/reduce.doc/r38_0300.html X%%DATADIR%%/reduce.doc/r38_0600.html X%%DATADIR%%/reduce.doc/index.html X%%DATADIR%%/reduce.doc/statemnt.tex X%%DATADIR%%/reduce.doc/appenda.tex X%%DATADIR%%/reduce.doc/header.tex X%%DATADIR%%/reduce.doc/proc.tex X%%DATADIR%%/reduce.doc/r38_0200.html X%%DATADIR%%/reduce.doc/r38_0650.html X@dirrm %%DATADIR%%/reduce.doc X%%DATADIR%%/reduce.fonts/cmmi9.ttf X%%DATADIR%%/reduce.fonts/cmsy9.ttf X%%DATADIR%%/reduce.fonts/cmsy6.ttf X%%DATADIR%%/reduce.fonts/pfmfiles/cmsy10.pfm X%%DATADIR%%/reduce.fonts/pfmfiles/cmr10.pfm X%%DATADIR%%/reduce.fonts/pfmfiles/cmex10.pfm X%%DATADIR%%/reduce.fonts/pfmfiles/cmmi10.pfm X@dirrm %%DATADIR%%/reduce.fonts/pfmfiles X%%DATADIR%%/reduce.fonts/cmmi6.ttf X%%DATADIR%%/reduce.fonts/cmmi7.ttf X%%DATADIR%%/reduce.fonts/cmr12.ttf X%%DATADIR%%/reduce.fonts/cmsy7.ttf X%%DATADIR%%/reduce.fonts/cmex10.pfa X%%DATADIR%%/reduce.fonts/cmr9.ttf X%%DATADIR%%/reduce.fonts/cmsy10.pfa X%%DATADIR%%/reduce.fonts/cmsy5.ttf X%%DATADIR%%/reduce.fonts/cmmi10.pfb X%%DATADIR%%/reduce.fonts/cmex10.pfb X%%DATADIR%%/reduce.fonts/cmex10.ttf X%%DATADIR%%/reduce.fonts/cmr7.ttf X%%DATADIR%%/reduce.fonts/cmr10.ttf X%%DATADIR%%/reduce.fonts/cmsy10.pfb X%%DATADIR%%/reduce.fonts/cmex9.ttf X%%DATADIR%%/reduce.fonts/cmmi5.ttf X%%DATADIR%%/reduce.fonts/cmmi10.pfa X%%DATADIR%%/reduce.fonts/cmsy10.ttf X%%DATADIR%%/reduce.fonts/cmex8.ttf X%%DATADIR%%/reduce.fonts/README X%%DATADIR%%/reduce.fonts/fonts.dir X%%DATADIR%%/reduce.fonts/cmsy8.ttf X%%DATADIR%%/reduce.fonts/cmmi10.ttf X%%DATADIR%%/reduce.fonts/cmmi8.ttf X%%DATADIR%%/reduce.fonts/cmr8.ttf X%%DATADIR%%/reduce.fonts/fonts.scale X%%DATADIR%%/reduce.fonts/cmex7.ttf X%%DATADIR%%/reduce.fonts/cmmi12.ttf X%%DATADIR%%/reduce.fonts/README.cmps-fonts X%%DATADIR%%/reduce.fonts/README.BaKoMa X%%DATADIR%%/reduce.fonts/cmr10.pfa X%%DATADIR%%/reduce.fonts/cmr5.ttf X%%DATADIR%%/reduce.fonts/cmr10.pfb X%%DATADIR%%/reduce.fonts/cmr6.ttf X%%DATADIR%%/reduce.fonts/cmr17.ttf X%%DATADIR%%/reduce.fonts/src/cmr10.asm.gz X%%DATADIR%%/reduce.fonts/src/cmex10.asm.gz X%%DATADIR%%/reduce.fonts/src/cmsy10.asm.gz X%%DATADIR%%/reduce.fonts/src/cmmi10.asm.gz X@dirrm %%DATADIR%%/reduce.fonts/src X@dirrm %%DATADIR%%/reduce.fonts X@dirrm %%DATADIR%% fb4fb61c35d2d9d8405ab62b49321b08 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 04:30:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0BACEC28 for ; Tue, 18 Feb 2014 04:30:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DA17A1922 for ; Tue, 18 Feb 2014 04: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 s1I4U02l072013 for ; Tue, 18 Feb 2014 04:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1I4U0M4072012; Tue, 18 Feb 2014 04:30:00 GMT (envelope-from gnats) Resent-Date: Tue, 18 Feb 2014 04:30:00 GMT Resent-Message-Id: <201402180430.s1I4U0M4072012@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, Johannes Jost Meixner Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 948F7A1A for ; Tue, 18 Feb 2014 04:23:04 +0000 (UTC) Received: from dd16522.kasserver.com (dd16522.kasserver.com [85.13.137.124]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 54D3E18FE for ; Tue, 18 Feb 2014 04:23:03 +0000 (UTC) Received: from mx12.chaot.net (62.65.220.168.cable.starman.ee [62.65.220.168]) by dd16522.kasserver.com (Postfix) with ESMTPSA id 6DFB14562BC for ; Tue, 18 Feb 2014 05:22:55 +0100 (CET) Received: from localhost (1003@localhost [local]); by mx12.chaot.net (OpenSMTPD) with ESMTPA id 13b90ca0; for ; Tue, 18 Feb 2014 06:22:53 +0200 (EET) Message-Id: <2072056670.enqueue@mx12.chaot.net> Date: Tue, 18 Feb 2014 06:22:53 +0200 (EET) From: Johannes Jost Meixner To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/186856: [MAINTAINER] devel/py-xmltodict: update to 0.8.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 04:30:01 -0000 >Number: 186856 >Category: ports >Synopsis: [MAINTAINER] devel/py-xmltodict: update to 0.8.6 >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 Feb 18 04:30:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Johannes Jost Meixner >Release: FreeBSD 11.0-CURRENT amd64 >Organization: Goldener Grund OÜ >Environment: System: FreeBSD mx12.chaot.net 11.0-CURRENT FreeBSD 11.0-CURRENT #0: Sun Feb 16 19:07:27 EET 2014 >Description: - Update to 0.8.6 portlint: looks fine port test: ok testport: ok redports: https://redports.org/buildarchive/20140218035700-8311/ Generated with FreeBSD Port Tools 1.00.2014.02.16 (mode: update, diff: SVN) >How-To-Repeat: >Fix: --- py-xmltodict-0.8.6.patch begins here --- Index: Makefile =================================================================== --- Makefile (revision 344833) +++ Makefile (working copy) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= xmltodict -PORTVERSION= 0.8.5 +PORTVERSION= 0.8.6 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Index: distinfo =================================================================== --- distinfo (revision 344833) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (xmltodict-0.8.5.tar.gz) = 4ba343343316aefa3111cd1e6b889478e6c46cecc6ee7447a996cc9612ad88ba -SIZE (xmltodict-0.8.5.tar.gz) = 34049 +SHA256 (xmltodict-0.8.6.tar.gz) = 21a441d1605ab73728e283546516930cddd96b3935e921135acf38d03f9426d9 +SIZE (xmltodict-0.8.6.tar.gz) = 34335 --- py-xmltodict-0.8.6.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 04:30:08 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E74A4CC9; Tue, 18 Feb 2014 04:30:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BB6571924; Tue, 18 Feb 2014 04: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 s1I4U8ir072146; Tue, 18 Feb 2014 04:30:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1I4U8Im072145; Tue, 18 Feb 2014 04:30:08 GMT (envelope-from edwin) Date: Tue, 18 Feb 2014 04:30:08 GMT Message-Id: <201402180430.s1I4U8Im072145@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186856: [MAINTAINER] devel/py-xmltodict: update to 0.8.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 04:30:09 -0000 Synopsis: [MAINTAINER] devel/py-xmltodict: update to 0.8.6 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Tue Feb 18 04:30:08 UTC 2014 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186856 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 08:25:38 2014 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 ESMTPS id B830922A; Tue, 18 Feb 2014 08:25:38 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8A73F19D2; Tue, 18 Feb 2014 08:25: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 s1I8PcbM060812; Tue, 18 Feb 2014 08:25:38 GMT (envelope-from olivierd@freefall.freebsd.org) Received: (from olivierd@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1I8PcQq060811; Tue, 18 Feb 2014 08:25:38 GMT (envelope-from olivierd) Date: Tue, 18 Feb 2014 08:25:38 GMT Message-Id: <201402180825.s1I8PcQq060811@freefall.freebsd.org> To: jessefrgsmith@yahoo.ca, olivierd@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, olivierd@FreeBSD.org From: olivierd@FreeBSD.org Subject: Re: ports/186596: [patch] multimedia/imagination stage support, options helpers X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 08:25:38 -0000 Synopsis: [patch] multimedia/imagination stage support, options helpers Responsible-Changed-From-To: freebsd-ports-bugs->olivierd Responsible-Changed-By: olivierd Responsible-Changed-When: Tue Feb 18 08:25:37 UTC 2014 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=186596 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 08:26:39 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F3617264; Tue, 18 Feb 2014 08:26:38 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C6B6019DC; Tue, 18 Feb 2014 08:26: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 s1I8QcaI060908; Tue, 18 Feb 2014 08:26:38 GMT (envelope-from olivierd@freefall.freebsd.org) Received: (from olivierd@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1I8QcL0060907; Tue, 18 Feb 2014 08:26:38 GMT (envelope-from olivierd) Date: Tue, 18 Feb 2014 08:26:38 GMT Message-Id: <201402180826.s1I8QcL0060907@freefall.freebsd.org> To: jessefrgsmith@yahoo.ca, olivierd@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, olivierd@FreeBSD.org From: olivierd@FreeBSD.org Subject: Re: ports/186644: [patch] multimedia/imagination use plugins X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 08:26:39 -0000 Synopsis: [patch] multimedia/imagination use plugins Responsible-Changed-From-To: freebsd-ports-bugs->olivierd Responsible-Changed-By: olivierd Responsible-Changed-When: Tue Feb 18 08:26:38 UTC 2014 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=186644 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 08:45:40 2014 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 ESMTPS id E312F843; Tue, 18 Feb 2014 08:45:40 +0000 (UTC) Received: from gigadelic.cooltrainer.org (gigadelic.cooltrainer.org [IPv6:2605:2700:0:17::403e:bc0d]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BA4BB1B3B; Tue, 18 Feb 2014 08:45:40 +0000 (UTC) Received: from gigadelic.cooltrainer.org (localhost [IPv6:::1]) by gigadelic.cooltrainer.org (Postfix) with ESMTP id 1C9E2788C8; Tue, 18 Feb 2014 00:45:39 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=cooltrainer.org; h=content-transfer-encoding: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= 1392713132; bh=l+t+imn/qfp7UnA3vRKI+u9qbXOqPVRM89SDuV2lkcs=; b=h LQlZBvBg/rJzzsypYxQY1koJTJfRusRAOj8PeDxnK4CUQfnU6JiIr12SRbxwuJmw 8xno8tXr+x7bfm0a7Ch/i/vp4WTJHcH5lkbr4o+o4pRgdH9OZBxDcaUz/yewTwWm lCaYeJ940550zG0oLTFK09+zzxQKhMr5XUd4hZCEm8= Received: from gigadelic.cooltrainer.org ([IPv6:::1]) by gigadelic.cooltrainer.org (gigadelic.cooltrainer.org [IPv6:::1]) (amavisd-new, port 10026) with LMTP id x0eV2WCyJlpB; Tue, 18 Feb 2014 00:45:32 -0800 (PST) Received: from emi.aloe.cooltrainer.org (unknown [IPv6:2001:470:1f05:806:8e89:a5ff:fe15:4b17]) (Authenticated sender: nicole) by gigadelic.cooltrainer.org (Postfix) with ESMTPSA id 4BD4B7526A; Tue, 18 Feb 2014 00:45:32 -0800 (PST) Message-ID: <53031DAC.3010009@cooltrainer.org> Date: Tue, 18 Feb 2014 00:45:32 -0800 From: Nicole Reid User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/186860: [New Port] www/madsonic network media streamer References: <201402180840.s1I8e0Jo063704@freefall.freebsd.org> In-Reply-To: <201402180840.s1I8e0Jo063704@freefall.freebsd.org> X-Enigmail-Version: 1.6 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 08:45:41 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 02/18/2014 00:40, FreeBSD-gnats-submit@FreeBSD.org wrote: > Thank you very much for your problem report. It has the internal > identification `ports/186860'. 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=186860 > >> Category: ports Responsible: freebsd-ports-bugs >> Synopsis: [New Port] www/madsonic network media streamer >> Arrival-Date: Tue Feb 18 08:40:00 UTC 2014 It looks like gzip+PR mangled my sharfile. I put up a gist of it here: https://gist.github.com/okeeblow/9067022 -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) iQIcBAEBAgAGBQJTAx2sAAoJEAuVLFmlrt8s7zsQAKcBM9iGwh3xp/NeJ14deMhh GGaw2SHDiMVc1a2lNg9jbo42EmP1yODpX5JaxbIVIbKstNGcouO6cA0wiU10cnW2 cKYIpJxMqhAy37BbfSn9k5yG22L1GVTXn80gP8vH2VrqCmnuFPK+3u02k7LHnvsG 7vmVlKzCixSr/pV7/zJjM5NS+dH3A9NLDI+P/s0I17hF5QJBbnS/HjAo+MgAjZEh Jds8rH69JiQNzcN5hJaTZt+fKLbd1MhU8VrnP/J5DWM3/O+p7xuez9B01wGzvdA2 0XcY6fhmj6+ygJ1jZ9+vs16kAC72z5sMhDVh3JzTUBKzoWZRZQiYMiT+FW26pwTb hsP0B86XwrI1gpmbvzuOq3kt7zz8lL32prA79NH5yiz7R6WgLfMF9jUsOL9IUXtQ 2njZ35KZfcOwtwl0UyZLpLXi7gO/p0SNUS/vDDwd2fhTFBpzXFM4BVkYavV8ON2N M7zCWPPe0q5ZkJx0ePWSlpSi8mwsyGMaeP5R90aqTtxzAwjrW54wwEOUcLExWgPP UjRncld4briPaFM1xII/SDOWCb4q+RTbw9Ix+xqL0qgtchwGQRmpRnVKKMWsov46 FA6MRaUKeRPdxQLfSVkSoP5sbQMNGQq8eUzvo/HlRe5Wt7QBNdvQajjDJOYRaaHq deP/GQM0uOK1H0Y+kayU =Vjmk -----END PGP SIGNATURE----- From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 08:50:02 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5E06CA6A for ; Tue, 18 Feb 2014 08:50:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 479931B7A for ; Tue, 18 Feb 2014 08: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 s1I8o2Qq066631 for ; Tue, 18 Feb 2014 08:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1I8o2VI066630; Tue, 18 Feb 2014 08:50:02 GMT (envelope-from gnats) Date: Tue, 18 Feb 2014 08:50:02 GMT Message-Id: <201402180850.s1I8o2VI066630@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Nicole Reid Subject: Re: ports/186860: [New Port] www/madsonic network media streamer X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Nicole Reid List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 08:50:02 -0000 The following reply was made to PR ports/186860; it has been noted by GNATS. From: Nicole Reid To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/186860: [New Port] www/madsonic network media streamer Date: Tue, 18 Feb 2014 00:45:32 -0800 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 02/18/2014 00:40, FreeBSD-gnats-submit@FreeBSD.org wrote: > Thank you very much for your problem report. It has the internal > identification `ports/186860'. 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=186860 > >> Category: ports Responsible: freebsd-ports-bugs >> Synopsis: [New Port] www/madsonic network media streamer >> Arrival-Date: Tue Feb 18 08:40:00 UTC 2014 It looks like gzip+PR mangled my sharfile. I put up a gist of it here: https://gist.github.com/okeeblow/9067022 -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) iQIcBAEBAgAGBQJTAx2sAAoJEAuVLFmlrt8s7zsQAKcBM9iGwh3xp/NeJ14deMhh GGaw2SHDiMVc1a2lNg9jbo42EmP1yODpX5JaxbIVIbKstNGcouO6cA0wiU10cnW2 cKYIpJxMqhAy37BbfSn9k5yG22L1GVTXn80gP8vH2VrqCmnuFPK+3u02k7LHnvsG 7vmVlKzCixSr/pV7/zJjM5NS+dH3A9NLDI+P/s0I17hF5QJBbnS/HjAo+MgAjZEh Jds8rH69JiQNzcN5hJaTZt+fKLbd1MhU8VrnP/J5DWM3/O+p7xuez9B01wGzvdA2 0XcY6fhmj6+ygJ1jZ9+vs16kAC72z5sMhDVh3JzTUBKzoWZRZQiYMiT+FW26pwTb hsP0B86XwrI1gpmbvzuOq3kt7zz8lL32prA79NH5yiz7R6WgLfMF9jUsOL9IUXtQ 2njZ35KZfcOwtwl0UyZLpLXi7gO/p0SNUS/vDDwd2fhTFBpzXFM4BVkYavV8ON2N M7zCWPPe0q5ZkJx0ePWSlpSi8mwsyGMaeP5R90aqTtxzAwjrW54wwEOUcLExWgPP UjRncld4briPaFM1xII/SDOWCb4q+RTbw9Ix+xqL0qgtchwGQRmpRnVKKMWsov46 FA6MRaUKeRPdxQLfSVkSoP5sbQMNGQq8eUzvo/HlRe5Wt7QBNdvQajjDJOYRaaHq deP/GQM0uOK1H0Y+kayU =Vjmk -----END PGP SIGNATURE----- From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 10:30:02 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 56699813 for ; Tue, 18 Feb 2014 10:30:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3105C14AC for ; Tue, 18 Feb 2014 10: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 s1IAU26B096526 for ; Tue, 18 Feb 2014 10:30:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1IAU2Qn096525; Tue, 18 Feb 2014 10:30:02 GMT (envelope-from gnats) Resent-Date: Tue, 18 Feb 2014 10:30:02 GMT Resent-Message-Id: <201402181030.s1IAU2Qn096525@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, "Oleg A. Mamontov" Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7606B6F5 for ; Tue, 18 Feb 2014 10:26:03 +0000 (UTC) Received: from smtp.4rt.ru (armor.4rt.ru [144.76.194.195]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2C1BA147F for ; Tue, 18 Feb 2014 10:26:01 +0000 (UTC) Received: from [127.0.1.4] (helo=tonal.4rt.ru) by smtp.4rt.ru with esmtps (TLSv1:DHE-RSA-AES256-SHA:256) (Exim 4.82 (FreeBSD)) (envelope-from ) id 1WFhVz-0007Om-Bg; Tue, 18 Feb 2014 14:02:59 +0400 Received: from lonerr by tonal.4rt.ru with local (Exim 4.82 (FreeBSD)) (envelope-from ) id 1WFhVz-0007Of-8y; Tue, 18 Feb 2014 14:02:59 +0400 Message-Id: Date: Tue, 18 Feb 2014 14:02:59 +0400 From: "Oleg A. Mamontov" To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/186862: [PATCH] www/p5-Catalyst-Plugin-SmartURI: update to 0.039 Cc: oleg@mamontov.net X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 10:30:02 -0000 >Number: 186862 >Category: ports >Synopsis: [PATCH] www/p5-Catalyst-Plugin-SmartURI: update to 0.039 >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 Feb 18 10:30:01 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Oleg A. Mamontov >Release: FreeBSD 9.2-RELEASE amd64 >Organization: >Environment: System: FreeBSD tonal.4rt.ru 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255898: Thu Sep 26 22:50:31 UTC >Description: - Update to 0.039 Port maintainer (oleg@mamontov.net) is cc'd. Generated with FreeBSD Port Tools 0.99_11 (mode: update, diff: ports) >How-To-Repeat: >Fix: --- p5-Catalyst-Plugin-SmartURI-0.039.patch begins here --- diff -ruN /usr/ports//www/p5-Catalyst-Plugin-SmartURI/Makefile ./Makefile --- /usr/ports//www/p5-Catalyst-Plugin-SmartURI/Makefile 2014-02-18 13:50:27.675693989 +0400 +++ ./Makefile 2014-02-18 14:01:59.694724286 +0400 @@ -2,7 +2,7 @@ # $FreeBSD: head/www/p5-Catalyst-Plugin-SmartURI/Makefile 338767 2014-01-05 13:23:32Z az $ PORTNAME= Catalyst-Plugin-SmartURI -PORTVERSION= 0.037 +PORTVERSION= 0.039 CATEGORIES= www perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -13,11 +13,11 @@ LICENSE= ART10 GPLv1 LICENSE_COMB= dual -BUILD_DEPENDS= p5-Catalyst-Runtime>=5.7007:${PORTSDIR}/www/p5-Catalyst-Runtime \ - p5-Class-Accessor>=0:${PORTSDIR}/devel/p5-Class-Accessor \ +BUILD_DEPENDS= p5-Catalyst-Runtime>=0:${PORTSDIR}/www/p5-Catalyst-Runtime \ p5-Class-C3-Componentised>=0:${PORTSDIR}/devel/p5-Class-C3-Componentised \ + p5-Class-Load>=0:${PORTSDIR}/devel/p5-Class-Load \ p5-Moose>=0:${PORTSDIR}/devel/p5-Moose \ - p5-Task-Weaken>=0:${PORTSDIR}/devel/p5-Task-Weaken \ + p5-Scalar-List-Utils>=0:${PORTSDIR}/lang/p5-Scalar-List-Utils \ p5-URI-SmartURI>=0:${PORTSDIR}/net/p5-URI-SmartURI \ p5-parent>=0:${PORTSDIR}/devel/p5-parent RUN_DEPENDS:= ${BUILD_DEPENDS} diff -ruN /usr/ports//www/p5-Catalyst-Plugin-SmartURI/distinfo ./distinfo --- /usr/ports//www/p5-Catalyst-Plugin-SmartURI/distinfo 2014-02-18 13:50:27.683693776 +0400 +++ ./distinfo 2014-02-18 14:00:28.368693689 +0400 @@ -1,2 +1,2 @@ -SHA256 (Catalyst-Plugin-SmartURI-0.037.tar.gz) = 780b39da2a281d91740b4d0ba06bd102bdc9025bab4fda4a70c78673675193ba -SIZE (Catalyst-Plugin-SmartURI-0.037.tar.gz) = 15279 +SHA256 (Catalyst-Plugin-SmartURI-0.039.tar.gz) = 23155c003299a02264a7df2d0a39a7fe464449a0642e930ab1993b6d840085b7 +SIZE (Catalyst-Plugin-SmartURI-0.039.tar.gz) = 16361 --- p5-Catalyst-Plugin-SmartURI-0.039.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 10:30:10 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6559E849; Tue, 18 Feb 2014 10:30:10 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3846B14B2; Tue, 18 Feb 2014 10: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 s1IAUAZQ096611; Tue, 18 Feb 2014 10:30:10 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1IAUAuo096610; Tue, 18 Feb 2014 10:30:10 GMT (envelope-from edwin) Date: Tue, 18 Feb 2014 10:30:10 GMT Message-Id: <201402181030.s1IAUAuo096610@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186862: [PATCH] www/p5-Catalyst-Plugin-SmartURI: update to 0.039 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 10:30:10 -0000 Synopsis: [PATCH] www/p5-Catalyst-Plugin-SmartURI: update to 0.039 Class-Changed-From-To: update->maintainer-update Class-Changed-By: edwin Class-Changed-When: Tue Feb 18 10:30:09 UTC 2014 Class-Changed-Why: Fix category (submitter is maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186862 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 10:30:01 2014 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 ESMTPS id B74E1811 for ; Tue, 18 Feb 2014 10:30:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A081D14AA for ; Tue, 18 Feb 2014 10: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 s1IAU1bt096515 for ; Tue, 18 Feb 2014 10:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1IAU1F3096514; Tue, 18 Feb 2014 10:30:01 GMT (envelope-from gnats) Date: Tue, 18 Feb 2014 10:30:01 GMT Message-Id: <201402181030.s1IAU1F3096514@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Geoff Garside Subject: Re: ports/186690: Update net/rabbitmq-c-devel to 0.5.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Geoff Garside List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 10:30:01 -0000 The following reply was made to PR ports/186690; it has been noted by GNATS. From: Geoff Garside To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/186690: Update net/rabbitmq-c-devel to 0.5.0 Date: Tue, 18 Feb 2014 10:19:57 +0000 On 14 Feb 2014, at 16:11, Edwin Groothuis wrote: > Maintainer of net/rabbitmq-c-devel, >=20 > Please note that PR ports/186690 has just been submitted. >=20 > 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. >=20 > The full text of the PR can be found at: > http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dports/186690 >=20 > --=20 > Edwin Groothuis via the GNATS Auto Assign Tool > edwin@FreeBSD.org Running this through Redports at the moment, getting a configure failure = during the build at the moment. =97 Geoff= From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 10:30:12 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3B24084B; Tue, 18 Feb 2014 10:30:12 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0FD7A14B3; Tue, 18 Feb 2014 10:30: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 s1IAUB6I096692; Tue, 18 Feb 2014 10:30:11 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1IAUBff096691; Tue, 18 Feb 2014 10:30:11 GMT (envelope-from edwin) Date: Tue, 18 Feb 2014 10:30:11 GMT Message-Id: <201402181030.s1IAUBff096691@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186862: [PATCH] www/p5-Catalyst-Plugin-SmartURI: update to 0.039 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 10:30:12 -0000 Synopsis: [PATCH] www/p5-Catalyst-Plugin-SmartURI: update to 0.039 Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Tue Feb 18 10:30:11 UTC 2014 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186862 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 12:00:00 2014 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 ESMTPS id D433BD1D for ; Tue, 18 Feb 2014 12:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AE23F1BAF for ; Tue, 18 Feb 2014 12: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 s1IC00Ax022568 for ; Tue, 18 Feb 2014 12:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1IC00Pn022567; Tue, 18 Feb 2014 12:00:00 GMT (envelope-from gnats) Resent-Date: Tue, 18 Feb 2014 12:00:00 GMT Resent-Message-Id: <201402181200.s1IC00Pn022567@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, "Oleg A. Mamontov" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 377E0D12 for ; Tue, 18 Feb 2014 11:59:25 +0000 (UTC) Received: from smtp.4rt.ru (armor.4rt.ru [144.76.194.195]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E5D731BA3 for ; Tue, 18 Feb 2014 11:59:23 +0000 (UTC) Received: from [127.0.1.4] (helo=tonal.4rt.ru) by smtp.4rt.ru with esmtps (TLSv1:DHE-RSA-AES256-SHA:256) (Exim 4.82 (FreeBSD)) (envelope-from ) id 1WFjKa-0008KL-Nh; Tue, 18 Feb 2014 15:59:20 +0400 Received: from lonerr by tonal.4rt.ru with local (Exim 4.82 (FreeBSD)) (envelope-from ) id 1WFjKa-0008KE-Kp; Tue, 18 Feb 2014 15:59:20 +0400 Message-Id: Date: Tue, 18 Feb 2014 15:59:20 +0400 From: "Oleg A. Mamontov" To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/186863: [PATCH] www/p5-HTML-FormFu-Model-DBIC: update to 1.02 Cc: oleg@mamontov.net X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 12:00:01 -0000 >Number: 186863 >Category: ports >Synopsis: [PATCH] www/p5-HTML-FormFu-Model-DBIC: update to 1.02 >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 Feb 18 12:00:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Oleg A. Mamontov >Release: FreeBSD 9.2-RELEASE amd64 >Organization: >Environment: System: FreeBSD tonal.4rt.ru 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255898: Thu Sep 26 22:50:31 UTC >Description: - Update to 1.02 Port maintainer (oleg@mamontov.net) is cc'd. Generated with FreeBSD Port Tools 0.99_11 (mode: update, diff: ports) >How-To-Repeat: >Fix: --- p5-HTML-FormFu-Model-DBIC-1.02.patch begins here --- diff -ruN /usr/ports//www/p5-HTML-FormFu-Model-DBIC/Makefile ./Makefile --- /usr/ports//www/p5-HTML-FormFu-Model-DBIC/Makefile 2014-02-18 13:50:22.100693917 +0400 +++ ./Makefile 2014-02-18 15:58:16.759739702 +0400 @@ -2,7 +2,7 @@ # $FreeBSD: head/www/p5-HTML-FormFu-Model-DBIC/Makefile 338763 2014-01-05 13:05:56Z az $ PORTNAME= HTML-FormFu-Model-DBIC -PORTVERSION= 0.09010 +PORTVERSION= 1.02 CATEGORIES= www perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -15,12 +15,13 @@ BUILD_DEPENDS= p5-DBD-SQLite>=0:${PORTSDIR}/databases/p5-DBD-SQLite \ p5-DBIx-Class>=0.08108:${PORTSDIR}/databases/p5-DBIx-Class \ - p5-HTML-FormFu>=0.09010:${PORTSDIR}/www/p5-HTML-FormFu \ + p5-HTML-FormFu>=1.00:${PORTSDIR}/www/p5-HTML-FormFu \ p5-List-MoreUtils>=0:${PORTSDIR}/lang/p5-List-MoreUtils \ p5-Task-Weaken>=0:${PORTSDIR}/devel/p5-Task-Weaken \ p5-YAML-Syck>=0:${PORTSDIR}/textproc/p5-YAML-Syck RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-DateTime-Format-SQLite>=0:${PORTSDIR}/devel/p5-DateTime-Format-SQLite \ + p5-Local-Maketext>=0:${PORTSDIR}/databases/p5-Local-Maketext \ p5-SQL-Translator>=0:${PORTSDIR}/databases/p5-SQL-Translator USES= perl5 diff -ruN /usr/ports//www/p5-HTML-FormFu-Model-DBIC/distinfo ./distinfo --- /usr/ports//www/p5-HTML-FormFu-Model-DBIC/distinfo 2014-02-18 13:50:22.090693877 +0400 +++ ./distinfo 2014-02-18 15:58:20.493694660 +0400 @@ -1,2 +1,2 @@ -SHA256 (HTML-FormFu-Model-DBIC-0.09010.tar.gz) = 39ff1f9f444f115b5084d4852b7c53ae502028bf3520f4d50a9c2c6b45da7374 -SIZE (HTML-FormFu-Model-DBIC-0.09010.tar.gz) = 65062 +SHA256 (HTML-FormFu-Model-DBIC-1.02.tar.gz) = d151408e76dd74632d5c7f6a635a414930f348b01e24ae5e08f5865a281c2d92 +SIZE (HTML-FormFu-Model-DBIC-1.02.tar.gz) = 51489 --- p5-HTML-FormFu-Model-DBIC-1.02.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 12:00:10 2014 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 ESMTPS id 98AAED55; Tue, 18 Feb 2014 12:00:10 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6AE6B1BB5; Tue, 18 Feb 2014 12: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 s1IC0ArR022791; Tue, 18 Feb 2014 12:00:10 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1IC0AqG022790; Tue, 18 Feb 2014 12:00:10 GMT (envelope-from edwin) Date: Tue, 18 Feb 2014 12:00:10 GMT Message-Id: <201402181200.s1IC0AqG022790@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186863: [PATCH] www/p5-HTML-FormFu-Model-DBIC: update to 1.02 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 12:00:10 -0000 Synopsis: [PATCH] www/p5-HTML-FormFu-Model-DBIC: update to 1.02 Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Tue Feb 18 12:00:10 UTC 2014 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186863 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 12:00:08 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D8520D51; Tue, 18 Feb 2014 12:00:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AB23F1BB4; Tue, 18 Feb 2014 12: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 s1IC08Af022710; Tue, 18 Feb 2014 12:00:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1IC08gn022709; Tue, 18 Feb 2014 12:00:08 GMT (envelope-from edwin) Date: Tue, 18 Feb 2014 12:00:08 GMT Message-Id: <201402181200.s1IC08gn022709@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186863: [PATCH] www/p5-HTML-FormFu-Model-DBIC: update to 1.02 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 12:00:08 -0000 Synopsis: [PATCH] www/p5-HTML-FormFu-Model-DBIC: update to 1.02 Class-Changed-From-To: update->maintainer-update Class-Changed-By: edwin Class-Changed-When: Tue Feb 18 12:00:08 UTC 2014 Class-Changed-Why: Fix category (submitter is maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186863 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 08:40:00 2014 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 ESMTPS id DDD49607 for ; Tue, 18 Feb 2014 08:40:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B676E1AB2 for ; Tue, 18 Feb 2014 08: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 s1I8e0G1063749 for ; Tue, 18 Feb 2014 08:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1I8e0LN063732; Tue, 18 Feb 2014 08:40:00 GMT (envelope-from gnats) Resent-Date: Tue, 18 Feb 2014 08:40:00 GMT Resent-Message-Id: <201402180840.s1I8e0LN063732@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, Nicole Reid Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B5B625F2 for ; Tue, 18 Feb 2014 08:38:26 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A06C41AA3 for ; Tue, 18 Feb 2014 08:38:26 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1I8cQoj007424 for ; Tue, 18 Feb 2014 08:38:26 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1I8cQX8007421; Tue, 18 Feb 2014 08:38:26 GMT (envelope-from nobody) Message-Id: <201402180838.s1I8cQX8007421@cgiserv.freebsd.org> Date: Tue, 18 Feb 2014 08:38:26 GMT From: Nicole Reid To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186860: [New Port] www/madsonic network media streamer X-Mailman-Approved-At: Tue, 18 Feb 2014 12:36:52 +0000 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 08:40:00 -0000 >Number: 186860 >Category: ports >Synopsis: [New Port] www/madsonic network media streamer >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 Feb 18 08:40:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Nicole Reid >Release: >Organization: Cooltrainer.org >Environment: >Description: Madsonic instantly transports your media to any HTTP connected device regardless of bitrate. You can stream to multiple players simultaneously. Madsonic is designed to handle very large music collections. By using transcoder plug-ins, Madsonic supports on-the-fly conversion and streaming of virtually any audio format, including MP3, OGG, WMA, FLAC, APE and more. Madsonic is a fork of Subsonic, offering more features and mobile client access without the subscription fee. WWW: http://www.madsonic.org Sharfile is gzipped due to large size (200KiB+) >How-To-Repeat: >Fix: Patch attached with submission follows: S #.W8cay'[y[ SɯW?MX9qvi/%m|!m$dN) vp],7xiR%:/# k΂VU\zsՎoZiu]3aK_A%t ̟|vneӠ?~Ogq!FSzDw0%'3?ͷ*wbT_](.2&3̓4-2J׻AM7M4CJ]|'-HN? aZu^"%|.t:Gju>Ӻ>ˎ^=>{<:Wןĥ?[:G~7ɕ Gy []p6y3Oьܩ833N,aN?t;xpF 78zlJyh\IS\d9hMI=PȡGY4_/ޟގe{O7ӛOeiҴpȜvȘ݈R Augan_II\R=svfhB,#6ce`'I½i>x74F`t͘xH"ݤ{iQw¿HW yMsbG}"C]/;bq̖΂RP,tRЎ—gĽ N4e쐘Է#ƣ9=c-RK O- =cYӳ#;rWbe<>ϱx͉oRv ]lII4#Ǭf3j_)I1kGJ07,(rjA m)Yz/ؑʍ-Yʩ11Kδ$Ko֖,~Kv.kceUL(9[^ ػNAWS3Qy.eVjezP͒T,'$DW2.VX[?y'&-EJYTv?3ߟ;Dj taö6N2;Qb?1he/71`.7ʶ%Ә-;WYbЄ!!jg8(g,؊ahGL0>3/l|Pg i-Y-Hb9QQvU+D}vy-"[{64#oSU/^X/J{[\%jbb\7zW6uR47+aqWkPn7L>c/V,q/mrղF{9+v/ؘirw8 =][{ȹ\ֈE儡]Z\'G,o@zsU+6]TsITgOIdm6D*syA_5Q&j9 X3iYFr$u&`WK垙wOI>GxqzV|o?v&kKJoMi2 #d@k۟´4'L4`o^#6r7m6MUiOɜU4P=6Mj#Ey.YO}v~us}i5Z`zQkpұDe7R naOi#(n26@yP|7NIyS XPjp"?5L@&iniPTMնL! wE%$&US/_Zh2&dl \4F&ΫF&)9ިRۘh.bDnMi}^6f7K*_7pߥl궲YɄ$Mɝ4RS)۸Nݠf-SE;Ok0dzw1/fK0w'0h:=$~+dWRbs--ٙ}yG6ϻ{tbwrWeLz& &~dfTz-N~&˒HF:<٤6fhةc6Zʻ93){+RUl ziÉVmUʯ6xC UǍ{S[_ҀgU11),ړmKoæ4Yi znx>vNmDM8Q%6]ŠŞĒg"ENp][-ҏ$l=͔,Id۹ksB[Tv&lتoiEITvF[Z< {p(ȐR2DXdgړk,?BS~ru{ݖRrnhWhv'hOJiZ.l;jFxoّ–̴Ub9V-~;TMdQulvWK?6UkDw5,\FUXElUҶe+Q)+A˲&r÷kucY0~d#KKM˞Դ*),?BS~}`[M)X,r2=]1`9_rIo9QgLKƞ`,h@\g$JlKl9ށmEJ{粥e^ߺк iJжϖ5Yx}녏̺4Kf>Ҳ2znDY`Ym_s/KzXW*]Z/C{s?or Iy~d*?d^JoS"bYоZXς kbeS߳˺жj+-XHmOYD}$Ku='2~|YEďnHܲo37m|qmuhZo3tJvpДaSGM 7%|Ґהy!UaS£yæjް7l捚 ۨR1jT*/<&oY g̺{T(^̵=OψHl[z!&;~/ck=[mkfqo;DlYo^b;z˖1X\58):BY@Pﬗ[$Е;нgVj]{ r'v(|UQ _fW8'oЧ^Jcրַ^w+;x*+T5 yjs]}ϡabH\ͯt"-/ S7*Btu+oen[FmM6pmP§Хo<DTzB6dzιR+ڛ\zfUe喠8m@^n_8pfk Օ&dUZl.o`7/v󣜆U87|5[Ķy['FRqmywVӹ%xsG" w>ylqXMCԥ Y+asN ;hl3 yYiz tpi:ܦm!sG|xtM$6k:3x nNC,hc MHa-R3΢ c5@t%O'brv|_m1?]1T?Y})tz(Kk~]KV#ƥߑpN?g}eIFԋRؚ!oGwI*^f邆mta4%$T&bOT[eTd\E:Z.ۘehDXշhY6s=6vb6bJ~kO=1$$FMӴَMnYڈo#FRF)]1cTޖDyTMrŒV^=3M74]~Kq{XZ#9L;h]4]mv1irr.=r)Υ4c+۫wIF=6X׋Q*\Uu˝;-m2ߡniOvu5H;Ūt3Ě岿+˕`W2kîd,W4H>sw1y`OlK!bz/j[KQI#ҕ%Z-׭ͤo*7ei˽PYrS۔X0=aE[R,46zU+Wj6jh m˶$g1RU_o>+{$R3 ;YBPJr%-,7)AQ.MksHgQS.EZAD&5.%9M(ϰ=D.InAQ4t|u]7Tl bfqSLݝ{}~綑x]뱜λx3xa2E;+6y{E␈F؉('i}5p%mi\V=1tV%z=MM;{7*s?uݱ7X|a_Z(7]%)?%1mn!pPNw&4nݛٯ5F☼&8%Įum_+{g^x x4LE"P O# y1,h8W{֒6"4-Ֆq{sDOo}|cxZN?25v{A?-]8bd^ \$)cTF`R^FQBUb 1Ciw(Q{|sz;lSg@>HhyK[ʱ(ΓzC*9]_$2u ޽Ou*bՂŒ;twSUb&1Оǟ=ӞB$JSCŝIjF?M{;z>c.jZ,RsEiAsDOFQx82x9-\irl졕%x]QIs-;+klKqNse~ȟhBFZtfS*>nL$ j &c'Ԡ+lj HX,8l"uiʲ E]\QBoB FeU8YWFiaҼ6˲| ^dFG3XW^rAbW2~2.S%,aI%XI|qIҨYҰ.MY|X%#Of7mZ7}Gf]ЯL|hTHVɜ69,U|{*DcFJ㫢L+ vM`FV@T?IV>ŚT=E+N &NpfNu#ˠ kN5J֠ аIԤ _O5fT4jV4lUY|X瑥Bq7MܠTjְ`I,xٺu1֡3CL((sh?t'rN5ѫ&I@|rQpyy@ !ҘG<;)p H' &ɵby( ira:=#0$,`kr ]8lހ.xMV]z1k>@oM88!Z~!C 6+zb[,Ogfw^(ۧa# h%@LZlUZXd0m +خFcFV9w[mCQÜ]D W9P!2-vE+ݖH\[QQn3@^A舷bԼmG+A\<[&bܰ%.HlX&acņ%F9V$& +Sn,1s`tm}e^ث? V;ӈ8@Mmh vCK* _ ChpZΘ UDkQhP\TAtxAzuJx :䫜ȃK  D?g1z ~:\%($n|XpZ 1R0Dž%ȖMl:V܄]=UU VSWK?y3?t,:4k+e~W}(*n]1ؾ疎B$2 @j6?&3Sp6օGꨓ(h4oB Ö2`B~0pMF$- 擥k\_P y!Teo d8.D`WoEbCd+ (0dT8/<݂9̬&8m&lR@W(Y^Ja3=z =7AI+9,!\U Q\.=Zq`삣*9FzcF%V;@g%@mN Fi VL=9yg*7'Y 0Ò K)ځrXR3F0I|3pt%[WvNQ衬Cl0!E-&Ѐa2B+h0h ºUı`$c%cc%c% Q6) Uj9Veha&q s>EĠ9-櫛[ݤpDB^5k($ "(5P x/`QTzAaч2eG$}X1X;d!!2oz ,vBC! a,(a<YH3d!K,C44m""4 z5lN"nxpvy[k4tHLv,^/F9qbD$v1ekPč K5jpnp)^5r8OQ1  i&*'j(&R\18dԧ tا1l0l Wm\CUUaq`M?ŠBA9+#CJ1z 4 4 VA_b@s0|h8dlP-6:)`E֠i0:;So5 iir hh0it&oRpYClH(L&&VP i#:9- 0/)uekTfxDS<-ԉءɖuUz&*rF;DNdQj]ײ`-ҘId!Wh:Ok}JS՝*@ޝ(%HAwlRYļm A.}2|5UˬS`~rJ臔1N:+{^"{&s^5Y%☯!nc1%@s׻Ae[%{W&6}9)gn]tI *8W֨Š+FQ(MY$eg4<.@Ri ЎN~Il ghԥ!^ae`%?Hem"gXYBiTE喀Z~32]𪍼?P2rekTɃGq3pXW=mڏNC;]ḙA !ɞL vzTE*{|8LЮme,D'tLN94y~rkD ?°l' VQ'UT;jlCƪ>'S^fx/o:N2I<綸+׶Q5>8߄x&榥=H{D1oMdK 1a<-`U %j)MX$qoDhɯ$*?xa2uJxh"_”!j>|.'Kss*̋`mqi-#*\nIL6>td\,41 وJs/.@ܟc.G# ͠*" d"ƢY\.(}\3NL{a?`|5dld:Vz&N=dj+8;\5猏g,5KLl6ľn`L=$IBK̥~!q.<_.* ZDQ^js9*{Ә/(& ^ R8Og!&&`"ޠ^?GT W9` 6`.y2<#RPf 1 K_ /5 {,ŋFk绥Q4CxWNlNjnjNjvB`W8d&MbSGAi/-[.b礫lt0+]GMKAefbb ގ1؜&Q7YIV1[7[5[!ӺxMnuM }mu[i2tnӎ;ITʺn&QZMFawzi 㐆Ie,Gg ^vO&/ɾ%,RLow&/b*Y}ivS9>ܶCboDRr<R ꟜKٞ5Gڊf<C't>]܌/Z}Xн2a>__!|g G]@|GbW[,V5Hj}{ $ P ug !K=g߀mD9#5$%<ăT*i.bJ;#,7_RvIR 2Ng){$t}Yfǁ<)EZ@xX۸(XlV]2Na;|*Qe-N֮٪e'dVa+c Ζ4;fĭO0;boIJvRʼt>q=2g!vۯIoBɨ<;P${NGBdE`=#5zf5 t ^ eQl/Hr͉CܑK&}GIO,*. 'jqyy>^W+dDȑ37s]Hu=%XHGLLQސZk8W1_پڼz<O,zCǪA^}lL:Y{Ãa2]qd?&dwL=ĺ"xr8EE䈘4M;z)T!Weu]OG3oJfb=LLN#ZT[y{ pgodC{32Iך96V;Cn9Džt7yL*/Ltzr[\U^*WSVEo݌?mTl3ljثڽ*6mmE:&DA7[T@zH;%;KƉ`(p[<wkM_#cE늆v5 /b]%#wru_ ФoWԦ-cǖG,J~TK,|}CZVnJ&z8 AWR4vw4S=Ɂs4l<:rlV1өbv1fUz@t QH,qfkXģ"#"Z^psXKКsCQ p,d"f5+S`Y -A8 dЭJ%cuT[1)xCckN*Xgf_"d8UBg0@L\a(;m,ÀՕěS_~QXY^Pgzw<B,q+^7ӼUVG=Ӯ{k(iAiz;M(!(!#Ғi8 Ģr;7j7rcHyC3.{Ŏ wMWNWNԪC׊vfZ{/Ro`{M֬ܣ٣٣@٣<))V|ʑ)$" 2adPP6< q}4"OʷLڽ&}bPʕUR6[[pqhiO5QDc9Z=9q+$$Lxt*N;;_QApZ4OS? ~ku rX^ bPCssƈ/cA٧4iz' k!9٣8Vˉ2xj<aB/,K&N@C![Q"9pa~i[>K(|\63 y[洼YnkJ4lA}7jRoWjק7&?__S_Y֏g,yL5!lyLD|NkvZO ZK[!K[~uxIKw9-RFYLś!ϫUK<&f_:?~y#pZh{yy}{᧟ډȒۻOݩvg Mz8̥D ^Y:'`K֔ĄAVc+REs"+WgXCmwҩġ7_+/' 6O U \1AgIFz.r-M^-kiOl5bS3gQ,'GB&<^n\c#Z@k/Op@h(iT&:EQ́6Y"uu;~x6Qufw89{8o"VJ]\.[קӽ~ѯ.u'i o_~ι/珶/I;{Q!hP駛{w?l$~/np</zvfP|'WU wRʿW4k)_U.Z*W 2_1Wb!]?S3l4r>q*$s=&L:=Q6ʼ-zj~=]{h;~wȓ\^~n;n-ǧcm=o5ryҲ3w+ʃZv;~jI$x9R>^?_l)oyKJmN["D=훼k w?_OD8;QvID(w<4C"r/'{{J&o%7+U?Bu$'=;SPb}5gt:{ʘrwoQɯ^?$mg T_- _}кٝH#]bJw'$ûὉT=$΀=IT{n.sQ6J_k3wg/}ݲL >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 13:30:01 2014 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 ESMTPS id 31598B57 for ; Tue, 18 Feb 2014 13:30:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E7CEF14CB for ; Tue, 18 Feb 2014 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 s1IDU0nI052721 for ; Tue, 18 Feb 2014 13:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1IDU0kp052719; Tue, 18 Feb 2014 13:30:00 GMT (envelope-from gnats) Resent-Date: Tue, 18 Feb 2014 13:30:00 GMT Resent-Message-Id: <201402181330.s1IDU0kp052719@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, Robert Sevat Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 593E97B4 for ; Tue, 18 Feb 2014 13:25:26 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4498B148F for ; Tue, 18 Feb 2014 13:25:26 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1IDPPfn022186 for ; Tue, 18 Feb 2014 13:25:25 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1IDPP14022183; Tue, 18 Feb 2014 13:25:25 GMT (envelope-from nobody) Message-Id: <201402181325.s1IDPP14022183@cgiserv.freebsd.org> Date: Tue, 18 Feb 2014 13:25:25 GMT From: Robert Sevat To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186865: change rc.d script for Strongswan port X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 13:30:01 -0000 >Number: 186865 >Category: ports >Synopsis: change rc.d script for Strongswan port >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 Feb 18 13:30:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Robert Sevat >Release: FreeBSD 10.0-Release >Organization: Student >Environment: FreeBSD secretum.indylix.nl 10.0-RELEASE FreeBSD 10.0-RELEASE #5 r261406: Sun Feb 2 19:51:24 CET 2014 robert@secretum.indylix.nl:/usr/obj/usr/src/sys/IPsec_Pf amd64 >Description: The current Strongswan port (5.1.1_1) has an error in the rc.d script that it installs. While starting strongswan with: "service strongswan start" I get this error message: "/usr/local/etc/rc.d/strongswan: set_rcvar: not found" >How-To-Repeat: >Fix: Apply the following change in /usr/ports/security/strongswan/files/strongswan.in name="strongswan" - rcvar=`set_rcvar` extra_commands="reload statusall" name="strongswan" + rcvar=${name}_enable extra_commands="reload statusall" After changing the above I no longer get the error message. Also prior to the change I did not need to set 'strongswan_enable="YES"' in rc.conf, after the change it did request me to set that to YES. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 13:30:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C5923B55 for ; Tue, 18 Feb 2014 13:30:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A0D2914C9 for ; Tue, 18 Feb 2014 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 s1IDU0RN052656 for ; Tue, 18 Feb 2014 13:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1IDU0gh052655; Tue, 18 Feb 2014 13:30:00 GMT (envelope-from gnats) Resent-Date: Tue, 18 Feb 2014 13:30:00 GMT Resent-Message-Id: <201402181330.s1IDU0gh052655@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, Oleg Ginzburg Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BE6B5777 for ; Tue, 18 Feb 2014 13:21:44 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 90273145D for ; Tue, 18 Feb 2014 13:21:44 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1IDLivA081252 for ; Tue, 18 Feb 2014 13:21:44 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1IDLiu4081236; Tue, 18 Feb 2014 13:21:44 GMT (envelope-from nobody) Message-Id: <201402181321.s1IDLiu4081236@cgiserv.freebsd.org> Date: Tue, 18 Feb 2014 13:21:44 GMT From: Oleg Ginzburg To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186864: sysutils/cbsd update to 10.0.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 13:30:00 -0000 >Number: 186864 >Category: ports >Synopsis: sysutils/cbsd update to 10.0.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: Tue Feb 18 13:30:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Oleg Ginzburg >Release: >Organization: >Environment: >Description: update to 10.0.3 >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN cbsd.bak/Makefile cbsd/Makefile --- cbsd.bak/Makefile 2014-02-04 04:59:53.000000000 +0400 +++ cbsd/Makefile 2014-02-18 17:18:40.000000000 +0400 @@ -1,7 +1,7 @@ # $FreeBSD: head/sysutils/cbsd/Makefile 342481 2014-02-04 00:52:58Z amdmi3 $ PORTNAME= cbsd -PORTVERSION= 10.0.2 +PORTVERSION= 10.0.3 CATEGORIES= sysutils MASTER_SITES= http://www.bsdstore.ru/downloads/ \ GH @@ -19,7 +19,7 @@ USE_GITHUB= yes GH_ACCOUNT= olevole GH_PROJECT= cbsd -GH_COMMIT= 6e05bd1 +GH_COMMIT= 2bb261e USE_RC_SUBR= cbsdd cbsdrsyncd diff -ruN cbsd.bak/distinfo cbsd/distinfo --- cbsd.bak/distinfo 2014-02-04 04:59:53.000000000 +0400 +++ cbsd/distinfo 2014-02-18 17:13:48.000000000 +0400 @@ -1,2 +1,2 @@ -SHA256 (cbsd-10.0.2.tar.gz) = 3cce46368bcd0e9e5c4f8aec8219059fcc71b0709155d5dfb029d7b9a1ed4547 -SIZE (cbsd-10.0.2.tar.gz) = 325560 +SHA256 (cbsd-10.0.3.tar.gz) = 42c51fcfb2144d6bcebb808024908f2aef9fa5d338bdccbe6e27e83fdd89cb1a +SIZE (cbsd-10.0.3.tar.gz) = 328334 diff -ruN cbsd.bak/files/cbsdd.in cbsd/files/cbsdd.in --- cbsd.bak/files/cbsdd.in 2014-02-04 04:59:53.000000000 +0400 +++ cbsd/files/cbsdd.in 2014-02-18 17:13:15.000000000 +0400 @@ -23,16 +23,31 @@ exit 1 fi -. ${globalconf} -. ${inventory} -. ${mdtools} -. ${subr} +if [ ! -f ${inventory} ]; then + echo "cbsd: no such ${inventory}"; + exit 1 +fi + +if [ ! -f ${mdtools} ]; then + echo "cbsd: no such ${mdtools}"; + exit 1 +fi + +if [ ! -f ${subr} ]; then + echo "cbsd: no such ${subr}"; + exit 1 +fi if [ ! -f ${localcbsdconf} ]; then echo "cbsd: no such ${localcbsdconf}"; exit 1 fi +. ${globalconf} +. ${inventory} +. ${mdtools} +. ${subr} + . ${localcbsdconf} start_precmd=${name}_prestart diff -ruN cbsd.bak/files/cbsdrsyncd.in cbsd/files/cbsdrsyncd.in --- cbsd.bak/files/cbsdrsyncd.in 2014-02-04 04:59:53.000000000 +0400 +++ cbsd/files/cbsdrsyncd.in 2014-02-18 17:13:19.000000000 +0400 @@ -10,7 +10,6 @@ # . /etc/rc.subr -. /etc/rc.conf name="cbsdrsyncd" rcvar=cbsdrsyncd_enable >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 14:00:00 2014 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 ESMTPS id ADC23F3C for ; Tue, 18 Feb 2014 14:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8772C17AC for ; Tue, 18 Feb 2014 14: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 s1IE00rb060883 for ; Tue, 18 Feb 2014 14:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1IE00tD060882; Tue, 18 Feb 2014 14:00:00 GMT (envelope-from gnats) Resent-Date: Tue, 18 Feb 2014 14:00:00 GMT Resent-Message-Id: <201402181400.s1IE00tD060882@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 [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5A57FB6A for ; Tue, 18 Feb 2014 13:53:02 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3A8A0175E for ; Tue, 18 Feb 2014 13:53:02 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1IDr2Je065558 for ; Tue, 18 Feb 2014 13:53:02 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1IDr2n3065555; Tue, 18 Feb 2014 13:53:02 GMT (envelope-from nobody) Message-Id: <201402181353.s1IDr2n3065555@cgiserv.freebsd.org> Date: Tue, 18 Feb 2014 13:53:02 GMT From: Kozlov Sergey To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186866: [patch] print/py-reportlab2 Update from 2.5 to 2.7 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 14:00:00 -0000 >Number: 186866 >Category: ports >Synopsis: [patch] print/py-reportlab2 Update from 2.5 to 2.7 >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 Feb 18 14:00:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Kozlov Sergey >Release: 9.2-RELEASE-p3 >Organization: ARC >Environment: FreeBSD sonya 9.2-RELEASE-p3 FreeBSD 9.2-RELEASE-p3 #1: Fri Jan 17 19:43:47 EET 2014 root@sonya:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Updated port py-reportlab2 to 2.7 There is newer version of reportlab (3.0), but there is known migrating issues. I'm working on making the py-reportlab3 port. Changes: - Add '2' as PKGNAMESUFFIX which makes many auto-generated variables usable without correction - Change deprecated LICENSE - Usage of Adobe CMaps is deprecated long ago (https://bitbucket.org/rptlab/reportlab/commits/9877f90e0ad9f04f61b454cee4c2e88a07b70e6b), remove it - Freetype fonts are brought in by py-imaging, the FREETYPE option has no effect, remove it - This version only supports python version from 2.5 to 2.7, define it in the port - Use PYDISTUTILS_AUTOPLIST - Stagify - Change patch+reinplace+reinplace chain to one simple reinplace - Whitespace allignment in BROKEN - Doc generation script needs PYTHONPATH set because it uses reportlab, which is not yet installed - Change from tab to space after 'WWW:' in pkg-descr Please remove the 'files/patch-setup.py' file and the 'files' directory itself. >How-To-Repeat: >Fix: Patch attached with submission follows: Index: Makefile =================================================================== --- Makefile (revision 344318) +++ Makefile (working copy) @@ -1,68 +1,57 @@ # Created by: Li-Wen Hsu # $FreeBSD$ -PORTNAME= reportlab2 -PORTVERSION= 2.5 +PORTNAME= reportlab +PORTVERSION= 2.7 CATEGORIES= print python MASTER_SITES= http://www.reportlab.com/ftp/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -DISTFILES= reportlab-${PORTVERSION}${EXTRACT_SUFX} pfbfer-${PFBFER_VERSION}.zip -EXTRACT_ONLY= reportlab-${PORTVERSION}${EXTRACT_SUFX} +PKGNAMESUFFIX= 2 +DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ + pfbfer-${PFBFER_VERSION}.zip +EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} MAINTAINER= buganini@gmail.com COMMENT= Library to create PDF documents using the Python language -LICENSE= BSD +LICENSE= BSD3CLAUSE RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}imaging>0:${PORTSDIR}/graphics/py-imaging -OPTIONS_DEFINE= CJK FREETYPE DOCS -OPTIONS_DEFAULT= CJK FREETYPE -CJK_DESC= Adobe CMaps +OPTIONS_DEFINE= DOCS -WRKSRC= ${WRKDIR}/reportlab-${PORTVERSION} - CONFLICTS= py2[0-9]-reportlab-[0-9]* PFBFER_VERSION= 20070710 -USE_PYTHON= yes +USE_PYTHON= 2.5-2.7 USE_PYDISTUTILS= yes -PYDISTUTILS_PKGNAME= reportlab +PYDISTUTILS_AUTOPLIST= yes -MAKE_ENV= PACKAGE_PATH="${REPORTLABDIR}" - -REPORTLABDIR= ${PYTHONPREFIX_SITELIBDIR}/reportlab -DOCSDIR= ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME} DOCS= reportlab-graphics-reference.pdf \ reportlab-reference.pdf \ reportlab-userguide.pdf -NO_STAGE= yes +DOCS_PLIST_FILES= ${DOCSDIR}/reportlab-graphics-reference.pdf \ + ${DOCSDIR}/reportlab-reference.pdf \ + ${DOCSDIR}/reportlab-userguide.pdf +DOCS_PLIST_DIRS= ${DOCSDIR} + post-patch: - @${REINPLACE_CMD} -e 's|/usr/ports/distfiles|${DISTDIR}|g' ${WRKSRC}/setup.py - @${REINPLACE_CMD} -e 's|pfbfer.zip|pfbfer-${PFBFER_VERSION}.zip|g' ${WRKSRC}/setup.py + @${REINPLACE_CMD} -e 's|http://www.reportlab.com/ftp|file://${DISTDIR}|g' ${WRKSRC}/setup.py .include .if ${ARCH} == "sparc64" -BROKEN= Does not install on sparc64 - +BROKEN= Does not install on sparc64 .endif -.if ${PORT_OPTIONS:MCJK} -RUN_DEPENDS+= ${LOCALBASE}/share/fonts/adobe-cmaps/ac15/cid2code.txt:${PORTSDIR}/print/adobe-cmaps -.endif - -.if ${PORT_OPTIONS:MFREETYPE} -LIB_DEPENDS+= freetype.9:${PORTSDIR}/print/freetype2 -.endif - post-install: .if ${PORT_OPTIONS:MDOCS} - @cd ${WRKSRC}/docs && ${PYTHON_CMD} genAll.py - ${MKDIR} ${DOCSDIR} + @cd ${WRKSRC}/docs && \ + PYTHONPATH=${STAGEDIR}${PYTHON_SITELIBDIR} ${PYTHON_CMD} genAll.py + ${MKDIR} ${STAGEDIR}${DOCSDIR} .for i in ${DOCS} - ${CP} ${WRKSRC}/docs/${i} ${DOCSDIR} + ${CP} ${WRKSRC}/docs/${i} ${STAGEDIR}${DOCSDIR} .endfor .endif Index: distinfo =================================================================== --- distinfo (revision 344318) +++ distinfo (working copy) @@ -1,4 +1,4 @@ -SHA256 (reportlab-2.5.tar.gz) = 805152084cc8421104a5e1e705482a1034598ecb4c266670dfba31996de6ff69 -SIZE (reportlab-2.5.tar.gz) = 1917306 +SHA256 (reportlab-2.7.tar.gz) = 82b56935e4a75641b40eb22050f0b6e46a0f0a9ebfacdf3b24a1e9c0eef2af6d +SIZE (reportlab-2.7.tar.gz) = 1951460 SHA256 (pfbfer-20070710.zip) = fb1462ff6ce8efae58a0c496f0537c5ac16d4895c68f1640c2973db574ddb376 SIZE (pfbfer-20070710.zip) = 677333 Index: pkg-descr =================================================================== --- pkg-descr (revision 344318) +++ pkg-descr (working copy) @@ -19,4 +19,4 @@ scientific papers - Going from XML to PDF in one step! -WWW: http://www.reportlab.org/rl_toolkit.html +WWW: http://www.reportlab.org/rl_toolkit.html >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 14:00:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 48E4BF3E for ; Tue, 18 Feb 2014 14:00:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0992B17AE for ; Tue, 18 Feb 2014 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 s1IE001b060962 for ; Tue, 18 Feb 2014 14:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1IE00kd060961; Tue, 18 Feb 2014 14:00:00 GMT (envelope-from gnats) Resent-Date: Tue, 18 Feb 2014 14:00:00 GMT Resent-Message-Id: <201402181400.s1IE00kd060961@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, Robert Sevat Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E3351C87 for ; Tue, 18 Feb 2014 13:55:52 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CF95B177F for ; Tue, 18 Feb 2014 13:55:52 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1IDtq3v068301 for ; Tue, 18 Feb 2014 13:55:52 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1IDtq7E068300; Tue, 18 Feb 2014 13:55:52 GMT (envelope-from nobody) Message-Id: <201402181355.s1IDtq7E068300@cgiserv.freebsd.org> Date: Tue, 18 Feb 2014 13:55:52 GMT From: Robert Sevat To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186867: Strongswan port add --enable-tools X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 14:00:01 -0000 >Number: 186867 >Category: ports >Synopsis: Strongswan port add --enable-tools >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 Feb 18 14:00:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Robert Sevat >Release: FreeBSD 10.0-Release >Organization: Student >Environment: FreeBSD 10.0 >Description: The Strongswan 5.1.1_1 port by default includes a make file which has --disable-tools in it. It used to be listed on this wiki that you had to disable it when building strongswan for freebsd. http://wiki.strongswan.org/projects/strongswan/wiki/FreeBSD After asking in the irc channel with 'ipsec pki' wasn't working while it was listed in a lot of configuration examples on the wiki they told me to turn on the tools for it. It is probably useful for others as well to have this enabled by default in the port, or to make it an option you can turn on or off. This is also the reason why the wiki page got changed and it is no longer mentioned as a build option. >How-To-Repeat: >Fix: /usr/ports/security/strongswan/Make - --disable-tools + --enable-tools >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 14:00:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7FDE0F42 for ; Tue, 18 Feb 2014 14:00:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5993A17B0 for ; Tue, 18 Feb 2014 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 s1IE01SA060976 for ; Tue, 18 Feb 2014 14:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1IE01bZ060975; Tue, 18 Feb 2014 14:00:01 GMT (envelope-from gnats) Resent-Date: Tue, 18 Feb 2014 14:00:01 GMT Resent-Message-Id: <201402181400.s1IE01bZ060975@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 [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 26502B67 for ; Tue, 18 Feb 2014 13:53:00 +0000 (UTC) Received: from micro.madpilot.net (micro.madpilot.net [88.149.173.206]) by mx1.freebsd.org (Postfix) with ESMTP id C6C1C175C for ; Tue, 18 Feb 2014 13:52:59 +0000 (UTC) Received: from micro.madpilot.net (localhost [127.0.0.1]) by micro.madpilot.net (Postfix) with ESMTP id 3fT3G83M8ZzyR; Tue, 18 Feb 2014 14:44:48 +0100 (CET) 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 AJlaGF05ADrb; Tue, 18 Feb 2014 14:44:45 +0100 (CET) Received: by micro.madpilot.net (Postfix, from userid 1000) id 3fT3G50TzXzyQ; Tue, 18 Feb 2014 14:44:45 +0100 (CET) Message-Id: <3fT3G50TzXzyQ@micro.madpilot.net> Date: Tue, 18 Feb 2014 14:44:45 +0100 (CET) From: Guido Falsi To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/186868: [UPDATE] graphics/zathura: update to 0.2.7 Cc: quentin.stievenart@gmail.com X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 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: Tue, 18 Feb 2014 14:00:01 -0000 >Number: 186868 >Category: ports >Synopsis: [UPDATE] graphics/zathura: 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: Tue Feb 18 14:00:01 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Guido Falsi >Release: FreeBSD 10.0-RELEASE amd64 >Organization: none >Environment: System: FreeBSD micro.madpilot.net 10.0-RELEASE FreeBSD 10.0-RELEASE #0 r260789: Thu Jan 16 22:34:59 UTC 2014 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: - Update to 0.2.7 >How-To-Repeat: >Fix: Index: Makefile =================================================================== --- Makefile (revision 344882) +++ Makefile (working copy) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= zathura -PORTVERSION= 0.2.6 +PORTVERSION= 0.2.7 CATEGORIES= graphics print MASTER_SITES= http://pwmt.org/projects/zathura/download/ Index: distinfo =================================================================== --- distinfo (revision 344882) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (zathura-0.2.6.tar.gz) = ac529507350f148dcaa27fd266ad5973c2205066e2960fc92c049724ddd617f2 -SIZE (zathura-0.2.6.tar.gz) = 134021 +SHA256 (zathura-0.2.7.tar.gz) = ef43be7705612937d095bfbe719a03503bf7e45493ea9409cb43a45cf96f0daf +SIZE (zathura-0.2.7.tar.gz) = 145007 Index: pkg-plist =================================================================== --- pkg-plist (revision 344882) +++ pkg-plist (working copy) @@ -10,6 +10,7 @@ man/man1/zathura.1.gz man/man5/zathurarc.5.gz share/applications/zathura.desktop +share/dbus-1/interfaces/org.pwmt.zathura.xml %%NLS%%share/locale/ca/LC_MESSAGES/zathura.mo %%NLS%%share/locale/cs/LC_MESSAGES/zathura.mo %%NLS%%share/locale/de/LC_MESSAGES/zathura.mo @@ -23,6 +24,7 @@ %%NLS%%share/locale/hr/LC_MESSAGES/zathura.mo %%NLS%%share/locale/id_ID/LC_MESSAGES/zathura.mo %%NLS%%share/locale/it/LC_MESSAGES/zathura.mo +%%NLS%%share/locale/no/LC_MESSAGES/zathura.mo %%NLS%%share/locale/pl/LC_MESSAGES/zathura.mo %%NLS%%share/locale/pt_BR/LC_MESSAGES/zathura.mo %%NLS%%share/locale/ru/LC_MESSAGES/zathura.mo >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 14:00:08 2014 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 ESMTPS id 78CCAF76; Tue, 18 Feb 2014 14:00:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4C91517B3; Tue, 18 Feb 2014 14: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 s1IE08um061058; Tue, 18 Feb 2014 14:00:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1IE08xJ061057; Tue, 18 Feb 2014 14:00:08 GMT (envelope-from edwin) Date: Tue, 18 Feb 2014 14:00:08 GMT Message-Id: <201402181400.s1IE08xJ061057@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186866: [patch] print/py-reportlab2 Update from 2.5 to 2.7 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 14:00:08 -0000 Synopsis: [patch] print/py-reportlab2 Update from 2.5 to 2.7 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Tue Feb 18 14:00:08 UTC 2014 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186866 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 14:00:22 2014 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 ESMTPS id B9E9DFF8; Tue, 18 Feb 2014 14:00:22 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8EE171833; Tue, 18 Feb 2014 14: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 s1IE0Mis061266; Tue, 18 Feb 2014 14:00:22 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1IE0MHG061265; Tue, 18 Feb 2014 14:00:22 GMT (envelope-from edwin) Date: Tue, 18 Feb 2014 14:00:22 GMT Message-Id: <201402181400.s1IE0MHG061265@freefall.freebsd.org> To: madpilot@FreeBSD.org, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186868: [UPDATE] graphics/zathura: update to 0.2.7 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 14:00:22 -0000 Synopsis: [UPDATE] graphics/zathura: update to 0.2.7 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Tue Feb 18 14:00:22 UTC 2014 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186868 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 14:01:42 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E2A3D124; Tue, 18 Feb 2014 14:01:42 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B5BE3184B; Tue, 18 Feb 2014 14:01: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 s1IE1gOC063898; Tue, 18 Feb 2014 14:01:42 GMT (envelope-from madpilot@freefall.freebsd.org) Received: (from madpilot@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1IE1gb6063897; Tue, 18 Feb 2014 14:01:42 GMT (envelope-from madpilot) Date: Tue, 18 Feb 2014 14:01:42 GMT Message-Id: <201402181401.s1IE1gb6063897@freefall.freebsd.org> To: acieroid@awesom.eu, madpilot@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, madpilot@FreeBSD.org From: madpilot@FreeBSD.org Subject: Re: ports/186868: [UPDATE] graphics/zathura: update to 0.2.7 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 14:01:43 -0000 Synopsis: [UPDATE] graphics/zathura: update to 0.2.7 Responsible-Changed-From-To: freebsd-ports-bugs->madpilot Responsible-Changed-By: madpilot Responsible-Changed-When: Tue Feb 18 14:01:42 UTC 2014 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=186868 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 15:30:01 2014 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 ESMTPS id 4FE1DA69 for ; Tue, 18 Feb 2014 15:30:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2C6A21240 for ; Tue, 18 Feb 2014 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 s1IFU1lc088873 for ; Tue, 18 Feb 2014 15:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1IFU1lQ088872; Tue, 18 Feb 2014 15:30:01 GMT (envelope-from gnats) Resent-Date: Tue, 18 Feb 2014 15:30:01 GMT Resent-Message-Id: <201402181530.s1IFU1lQ088872@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 ESMTPS id 6EFC1558 for ; Tue, 18 Feb 2014 15:24:51 +0000 (UTC) Received: from avasout05.plus.net (avasout05.plus.net [84.93.230.250]) by mx1.freebsd.org (Postfix) with ESMTP id 0023F11FE for ; Tue, 18 Feb 2014 15:24:50 +0000 (UTC) Received: from mail.p-o.co.uk ([80.229.143.200]) by avasout05 with smtp id TrMK1n0054Ke75s01rMV8m; Tue, 18 Feb 2014 15:21:42 +0000 Received: from alan by p-o.co.uk with local (Exim 4.82 (FreeBSD)) (envelope-from ) id 1WFmM3-000Oeg-4J for FreeBSD-gnats-submit@freebsd.org; Tue, 18 Feb 2014 15:13:03 +0000 Message-Id: Date: Tue, 18 Feb 2014 15:13:03 +0000 From: Alan Hicks To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/186869: [Maintainer update] Fix crashes in dbmail-imapd mail/dbmail X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 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: Tue, 18 Feb 2014 15:30:01 -0000 >Number: 186869 >Category: ports >Synopsis: [Maintainer update] Fix crashes in dbmail-imapd mail/dbmail >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 Feb 18 15:30:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Alan Hicks >Release: FreeBSD 9.2-RELEASE-p3 i386 >Organization: >Environment: System: FreeBSD schnittke.p-o.co.uk 9.2-RELEASE-p3 FreeBSD 9.2-RELEASE-p3 #0: Sat Jan 11 02:38:15 UTC 2014 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: Fix crashes in dbmail-pop3d as per http://www.dbmail.org/mantis/view.php?id=1043 >How-To-Repeat: Random crashes as reported and confirmed upstream. >Fix: Apply attached patch. --- dbmail-3.1.10-20140217.diff begins here --- diff -urN dbmail/Makefile dbmail/Makefile --- dbmail/Makefile 2014-01-23 22:52:32.000000000 +0000 +++ dbmail/Makefile 2014-02-17 17:09:14.000000000 +0000 @@ -3,6 +3,7 @@ PORTNAME= dbmail PORTVERSION= 3.1.10 +PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= http://www.dbmail.org/download/3.1/ \ http://git.dbmail.eu/paul/dbmail/snapshot/ diff -urN dbmail/files/patch-src_db__dm.c dbmail/files/patch-src_db__dm.c --- dbmail/files/patch-src_db__dm.c 1970-01-01 01:00:00.000000000 +0100 +++ dbmail/files/patch-src_db__dm.c 2014-02-17 16:40:23.000000000 +0000 @@ -0,0 +1,15 @@ +diff --git src/dm_db.c b/src/dm_db.c +index 559d83c..529a48e 100644 +--- src/dm_db.c ++++ src/dm_db.c +@@ -1832,7 +1832,9 @@ char * db_get_message_lines(uint64_t message_idnr, long lines) + return NULL; + + msg = dbmail_message_new(NULL); +- msg = dbmail_message_retrieve(msg, physmessage_id); ++ if (! (msg = dbmail_message_retrieve(msg, physmessage_id))) ++ return NULL; ++ + stream = msg->crlf; + + if (lines >=0) { diff -urN dbmail/files/patch-src_pop3.c dbmail/files/patch-src_pop3.c --- dbmail/files/patch-src_pop3.c 1970-01-01 01:00:00.000000000 +0100 +++ dbmail/files/patch-src_pop3.c 2014-02-17 16:41:17.000000000 +0000 @@ -0,0 +1,20 @@ +diff --git src/pop3.c src/pop3.c +index 2b8792e..a09524e 100644 +--- src/pop3.c ++++ src/pop3.c +@@ -302,7 +302,6 @@ int pop3_error(ClientSession_T * session, const char *formatstring, ...) + + if (session->error_count >= MAX_ERRORS) { + ci_write(ci, "-ERR too many errors\r\n"); +- client_session_bailout(&session); + return -3; + } + va_start(ap, formatstring); +@@ -314,7 +313,6 @@ int pop3_error(ClientSession_T * session, const char *formatstring, ...) + g_free(s); + + if (ci->client_state & CLIENT_ERR) { +- client_session_bailout(&session); + return -3; + } + --- dbmail-3.1.10-20140217.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 15:30:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BF08DA6D for ; Tue, 18 Feb 2014 15:30:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9B0441243 for ; Tue, 18 Feb 2014 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 s1IFU1HH088891 for ; Tue, 18 Feb 2014 15:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1IFU1HP088890; Tue, 18 Feb 2014 15:30:01 GMT (envelope-from gnats) Resent-Date: Tue, 18 Feb 2014 15:30:01 GMT Resent-Message-Id: <201402181530.s1IFU1HP088890@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 ESMTPS id 18F5340C for ; Tue, 18 Feb 2014 15:21:58 +0000 (UTC) Received: from avasout05.plus.net (avasout05.plus.net [84.93.230.250]) by mx1.freebsd.org (Postfix) with ESMTP id A08BF11D3 for ; Tue, 18 Feb 2014 15:21:57 +0000 (UTC) Received: from mail.p-o.co.uk ([80.229.143.200]) by avasout05 with smtp id TrMK1n0054Ke75s01rMn9r; Tue, 18 Feb 2014 15:21:55 +0000 Received: from alan by p-o.co.uk with local (Exim 4.82 (FreeBSD)) (envelope-from ) id 1WFmT7-000Okw-QQ for FreeBSD-gnats-submit@freebsd.org; Tue, 18 Feb 2014 15:20:21 +0000 Message-Id: Date: Tue, 18 Feb 2014 15:20:21 +0000 From: Alan Hicks To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/186871: [Maintainer update] Adds new lib_depends etc to mail/dbmail22 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 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: Tue, 18 Feb 2014 15:30:01 -0000 >Number: 186871 >Category: ports >Synopsis: [Maintainer update] Adds new lib_depends etc to mail/dbmail22 >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 Feb 18 15:30:01 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Alan Hicks >Release: FreeBSD 9.2-RELEASE-p3 i386 >Organization: >Environment: System: FreeBSD schnittke.p-o.co.uk 9.2-RELEASE-p3 FreeBSD 9.2-RELEASE-p3 #0: Sat Jan 11 02:38:15 UTC 2014 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: Updates mail/dbmail22 to new LIB_DEPENDS, uses=gmake, OPTIONS_SUB and OPT_CONFIGURE >How-To-Repeat: n/a >Fix: Apply attached patch --- dbmail22-20140218.diff begins here --- diff -uNr dbmail22/Makefile dbmail22/Makefile --- dbmail22/Makefile 2013-11-15 10:44:06.000000000 +0000 +++ dbmail22/Makefile 2014-02-18 14:11:07.000000000 +0000 @@ -12,7 +12,7 @@ LICENSE= GPLv2 -LIB_DEPENDS= gmime-2.0:${PORTSDIR}/mail/gmime2 +LIB_DEPENDS= libgmime-2.0.so:${PORTSDIR}/mail/gmime2 CONFLICTS= dbmail-3.* @@ -22,14 +22,29 @@ OPTIONS_MULTI_DB=MYSQL PGSQL SQLITE SIEVE_DESC= Support for Sieve mail sorting language +OPTIONS_SUB= yes + +MYSQL_USE= mysql=yes +MYSQL_CONFIGURE_ON= --with-mysql +MYSQL_CONFIGURE_OFF= --without-mysql +SQLITE_USE= sqlite=3 +SQLITE_CONFIGURE_ON= --with-sqlite +SQLITE_CONFIGURE_OFF= --without-sqlite +PGSQL_USE= pgsql=yes +PGSQL_CONFIGURE_ON= --with-postgresql +PGSQL_CONFIGURE_OFF= --without-postgresql +SIEVE_CONFIGURE_WITH= sieve +SIEVE_LIB_DEPENDS= libsieve.so:${PORTSDIR}/mail/libsieve +LDAP_CONFIGURE_WITH= ldap +LDAP_USE= OPENLDAP=yes + LATEST_LINK= dbmail22 USE_AUTOTOOLS= libtool -USE_GMAKE= yes USE_LDCONFIG= ${PREFIX}/lib/dbmail USE_RC_SUBR= dbmail-pop3d dbmail-lmtpd dbmail-imapd dbmail-timsieved USE_GNOME= glib20 USE_OPENSSL= yes -USES= pkgconfig +USES= gmake pkgconfig CFLAGS+= -fPIC -I${LOCALBASE}/include ${PTHREAD_CFLAGS} LDFLAGS+= -L${LOCALBASE}/lib ${PTHREAD_LIBS} @@ -54,46 +69,15 @@ .include .if ${PORT_OPTIONS:MMYSQL} -CONFIGURE_ARGS+=--with-mysql -USE_MYSQL= yes DATABASE+= mysql -PLIST_SUB+= MYSQL="" -.else -PLIST_SUB+= MYSQL="@comment " .endif .if ${PORT_OPTIONS:MPGSQL} -CONFIGURE_ARGS+=--with-pgsql -USE_PGSQL= yes DATABASE+= postgresql -PLIST_SUB+= PGSQL="" -.else -PLIST_SUB+= PGSQL="@comment " .endif .if ${PORT_OPTIONS:MSQLITE} -CONFIGURE_ARGS+=--with-sqlite -USE_SQLITE= yes DATABASE+= sqlite -PLIST_SUB+= SQLITE="" -.else -PLIST_SUB+= SQLITE="@comment " -.endif - -.if ${PORT_OPTIONS:MSIEVE} -CONFIGURE_ARGS+=--with-sieve=${LOCALBASE}/include -LIB_DEPENDS+= sieve:${PORTSDIR}/mail/libsieve -PLIST_SUB+= SIEVE="" -.else -PLIST_SUB+= SIEVE="@comment " -.endif - -.if ${PORT_OPTIONS:MLDAP} -CONFIGURE_ARGS+=--with-auth-ldap=${LOCALBASE}/include -USE_OPENLDAP= yes -PLIST_SUB+= LDAP="" -.else -PLIST_SUB+= LDAP="@comment " .endif post-patch: --- dbmail22-20140218.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 15:40:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D67DF2ED for ; Tue, 18 Feb 2014 15:40:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 97165134B for ; Tue, 18 Feb 2014 15: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 s1IFe1sP091649 for ; Tue, 18 Feb 2014 15:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1IFe1Cm091648; Tue, 18 Feb 2014 15:40:01 GMT (envelope-from gnats) Resent-Date: Tue, 18 Feb 2014 15:40:01 GMT Resent-Message-Id: <201402181540.s1IFe1Cm091648@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 ESMTPS id 39B6AEFE for ; Tue, 18 Feb 2014 15:37:30 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 24F20131F for ; Tue, 18 Feb 2014 15:37:30 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1IFbTlF049726 for ; Tue, 18 Feb 2014 15:37:29 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1IFbTGs049721; Tue, 18 Feb 2014 15:37:29 GMT (envelope-from nobody) Message-Id: <201402181537.s1IFbTGs049721@cgiserv.freebsd.org> Date: Tue, 18 Feb 2014 15:37:29 GMT From: "O. Hartmann" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186873: databases/akonadi: c++: error: unknown argument: '-fno-check-new' X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 15:40:01 -0000 >Number: 186873 >Category: ports >Synopsis: databases/akonadi: c++: error: unknown argument: '-fno-check-new' >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 Feb 18 15:40:01 UTC 2014 >Closed-Date: >Last-Modified: >Originator: O. Hartmann >Release: FreeBSD 11.0-CURRENT amd64 >Organization: >Environment: FreeBSD 11.0-CURRENT #0 r262027: Mon Feb 17 13:42:24 CET 2014 amd64 >Description: This seems to be a fallout of the recent change from CLANG 3.3 to 3.4 as the options are now handled more restrictive: [...] Generating moc_processcontrol.cpp c++: error: unknown argument: '-fno-check-new' c++: error: unknown argument: '-fno-check-new' c++: error: unknown argument: '-fno-check-new' c++: error: unknown argument: '-fno-check-new' c++: error: unknown argument: '-fno-check-new' c++: error: unknown argument: '-fno-check-new' >How-To-Repeat: Install/update databases/akonadi on systems with CLANG 3.4 as the default. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 15:40:09 2014 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 ESMTPS id ED280456; Tue, 18 Feb 2014 15:40:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C314D134F; Tue, 18 Feb 2014 15: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 s1IFe9QU091726; Tue, 18 Feb 2014 15:40:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1IFe9JZ091725; Tue, 18 Feb 2014 15:40:09 GMT (envelope-from edwin) Date: Tue, 18 Feb 2014 15:40:09 GMT Message-Id: <201402181540.s1IFe9JZ091725@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kde@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186873: databases/akonadi: c++: error: unknown argument: '-fno-check-new' X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 15:40:10 -0000 Synopsis: databases/akonadi: c++: error: unknown argument: '-fno-check-new' Responsible-Changed-From-To: freebsd-ports-bugs->kde Responsible-Changed-By: edwin Responsible-Changed-When: Tue Feb 18 15:40:09 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186873 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 16:10:02 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F4120335 for ; Tue, 18 Feb 2014 16:10:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B400A1673 for ; Tue, 18 Feb 2014 16: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 s1IGA19S000919 for ; Tue, 18 Feb 2014 16:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1IGA1CQ000918; Tue, 18 Feb 2014 16:10:01 GMT (envelope-from gnats) Resent-Date: Tue, 18 Feb 2014 16:10:01 GMT Resent-Message-Id: <201402181610.s1IGA1CQ000918@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, Jaime Bozza Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C67B1328 for ; Tue, 18 Feb 2014 16:09:36 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B09EB166A for ; Tue, 18 Feb 2014 16:09:36 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1IG9atJ047899 for ; Tue, 18 Feb 2014 16:09:36 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1IG9a7f047887; Tue, 18 Feb 2014 16:09:36 GMT (envelope-from nobody) Message-Id: <201402181609.s1IG9a7f047887@cgiserv.freebsd.org> Date: Tue, 18 Feb 2014 16:09:36 GMT From: Jaime Bozza To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186874: databases/postgresql84-server: Missing icu patch X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 16:10:02 -0000 >Number: 186874 >Category: ports >Synopsis: databases/postgresql84-server: Missing icu patch >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 Feb 18 16:10:01 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Jaime Bozza >Release: FreeBSD 10 >Organization: >Environment: FreeBSD 10.0-STABLE FreeBSD 10.0-STABLE #0: Wed Feb 12 19:50:38 CST 2014 >Description: Location of icu patch is incorrect: => Attempting to fetch http://people.freebsd.org/~crees/postgresql-icu/pg-8419-icu-2014-02-10.diff.gz fetch: http://people.freebsd.org/~crees/postgresql-icu/pg-8419-icu-2014-02-10.diff.gz: Not Found >How-To-Repeat: Attempt to build port configured with icu. >Fix: PATCH_SITES+= http://people.freebsd.org/~crees/postgresql-icu/:icu should be: PATCH_SITES+= http://people.freebsd.org/~girgen/postgresql-icu/:icu >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 16:10:09 2014 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 ESMTPS id 71226369; Tue, 18 Feb 2014 16:10:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 447F81678; Tue, 18 Feb 2014 16: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 s1IGA9j3000998; Tue, 18 Feb 2014 16:10:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1IGA9Cr000997; Tue, 18 Feb 2014 16:10:09 GMT (envelope-from edwin) Date: Tue, 18 Feb 2014 16:10:09 GMT Message-Id: <201402181610.s1IGA9Cr000997@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pgsql@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186874: databases/postgresql84-server: Missing icu patch X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 16:10:09 -0000 Synopsis: databases/postgresql84-server: Missing icu patch Responsible-Changed-From-To: freebsd-ports-bugs->pgsql Responsible-Changed-By: edwin Responsible-Changed-When: Tue Feb 18 16:10:08 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186874 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 16:20:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C8D33702 for ; Tue, 18 Feb 2014 16:20:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 88E7B1755 for ; Tue, 18 Feb 2014 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 s1IGK1Rh004812 for ; Tue, 18 Feb 2014 16:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1IGK1II004811; Tue, 18 Feb 2014 16:20:01 GMT (envelope-from gnats) Resent-Date: Tue, 18 Feb 2014 16:20:01 GMT Resent-Message-Id: <201402181620.s1IGK1II004811@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, Jaime Bozza Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6EBD4506 for ; Tue, 18 Feb 2014 16:16:13 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 57F811719 for ; Tue, 18 Feb 2014 16:16:13 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1IGGD2F092897 for ; Tue, 18 Feb 2014 16:16:13 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1IGGDjS092894; Tue, 18 Feb 2014 16:16:13 GMT (envelope-from nobody) Message-Id: <201402181616.s1IGGDjS092894@cgiserv.freebsd.org> Date: Tue, 18 Feb 2014 16:16:13 GMT From: Jaime Bozza To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186875: databases/postgresql84-server: Does not build with icu on FreeBSD 10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 16:20:01 -0000 >Number: 186875 >Category: ports >Synopsis: databases/postgresql84-server: Does not build with icu 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: Tue Feb 18 16:20:01 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Jaime Bozza >Release: FreeBSD 10 >Organization: >Environment: FreeBSD 10.0-STABLE FreeBSD 10.0-STABLE #0: Wed Feb 12 19:50:38 CST 2014 >Description: Build fails with icu patch. /usr/bin/ld: 9: invalid DSO for symbol `ucnv_getDefaultName_52' definition /usr/local/lib/libicuuc.so.52: could not read symbols: Bad value cc: error: linker command failed with exit code 1 (use -v to see invocation) gmake[2]: *** [postgres] Error 1 gmake[2]: Leaving directory `/usr/ports/databases/postgresql84-server/work/postgresql-8.4.19/src/backend' Build works fine on FreeBSD 9.2 and before. >How-To-Repeat: Build port with icu option. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 16:20:09 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 601817BC; Tue, 18 Feb 2014 16:20:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 358891756; Tue, 18 Feb 2014 16: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 s1IGK9U2004890; Tue, 18 Feb 2014 16:20:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1IGK9b0004889; Tue, 18 Feb 2014 16:20:09 GMT (envelope-from edwin) Date: Tue, 18 Feb 2014 16:20:09 GMT Message-Id: <201402181620.s1IGK9b0004889@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pgsql@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186875: databases/postgresql84-server: Does not build with icu on FreeBSD 10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 16:20:09 -0000 Synopsis: databases/postgresql84-server: Does not build with icu on FreeBSD 10 Responsible-Changed-From-To: freebsd-ports-bugs->pgsql Responsible-Changed-By: edwin Responsible-Changed-When: Tue Feb 18 16:20:08 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186875 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 17:15:15 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DA21BE36; Tue, 18 Feb 2014 17:15:15 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AE9751CC2; Tue, 18 Feb 2014 17:15: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 s1IHFFMq022602; Tue, 18 Feb 2014 17:15:15 GMT (envelope-from pawel@freefall.freebsd.org) Received: (from pawel@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1IHFFDg022601; Tue, 18 Feb 2014 17:15:15 GMT (envelope-from pawel) Date: Tue, 18 Feb 2014 17:15:15 GMT Message-Id: <201402181715.s1IHFFDg022601@freefall.freebsd.org> To: pawel@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pawel@FreeBSD.org From: pawel@FreeBSD.org Subject: Re: ports/186803: broken port fix: audio/zinf 2.2.5 (clang error) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 17:15:15 -0000 Synopsis: broken port fix: audio/zinf 2.2.5 (clang error) Responsible-Changed-From-To: freebsd-ports-bugs->pawel Responsible-Changed-By: pawel Responsible-Changed-When: Tue Feb 18 17:15:15 UTC 2014 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=186803 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 18:02:07 2014 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 ESMTPS id A0140CA3; Tue, 18 Feb 2014 18:02:07 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 74AF91237; Tue, 18 Feb 2014 18:02: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 s1II272o037441; Tue, 18 Feb 2014 18:02:07 GMT (envelope-from pawel@freefall.freebsd.org) Received: (from pawel@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1II27FT037440; Tue, 18 Feb 2014 18:02:07 GMT (envelope-from pawel) Date: Tue, 18 Feb 2014 18:02:07 GMT Message-Id: <201402181802.s1II27FT037440@freefall.freebsd.org> To: pawel@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pawel@FreeBSD.org From: pawel@FreeBSD.org Subject: Re: ports/186579: Fix for building graphics/picpuz on FreeBSD-11.X X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 18:02:07 -0000 Synopsis: Fix for building graphics/picpuz on FreeBSD-11.X Responsible-Changed-From-To: freebsd-ports-bugs->pawel Responsible-Changed-By: pawel Responsible-Changed-When: Tue Feb 18 18:02:07 UTC 2014 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=186579 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 18:50:00 2014 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 ESMTPS id B3929CEB for ; Tue, 18 Feb 2014 18:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8EA5E168A for ; Tue, 18 Feb 2014 18: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 s1IIo0jE053649 for ; Tue, 18 Feb 2014 18:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1IIo0MW053648; Tue, 18 Feb 2014 18:50:00 GMT (envelope-from gnats) Resent-Date: Tue, 18 Feb 2014 18:50:00 GMT Resent-Message-Id: <201402181850.s1IIo0MW053648@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, Oleg Ginzburg Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 93627BE3 for ; Tue, 18 Feb 2014 18:48:40 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7D2B51670 for ; Tue, 18 Feb 2014 18:48:40 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1IImdsc053185 for ; Tue, 18 Feb 2014 18:48:39 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1IImdtU053184; Tue, 18 Feb 2014 18:48:39 GMT (envelope-from nobody) Message-Id: <201402181848.s1IImdtU053184@cgiserv.freebsd.org> Date: Tue, 18 Feb 2014 18:48:39 GMT From: Oleg Ginzburg To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186876: graphics/yed update to 3.12 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 18:50:00 -0000 >Number: 186876 >Category: ports >Synopsis: graphics/yed update to 3.12 >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 Feb 18 18:50:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Oleg Ginzburg >Release: >Organization: >Environment: >Description: - update to latest release: http://www.yworks.com/en/products_yed_download.html#ReleaseNotes - STAGEDIR support >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN yed.bak/Makefile yed/Makefile --- yed.bak/Makefile 2014-02-02 02:10:28.000000000 +0400 +++ yed/Makefile 2014-02-18 22:40:52.000000000 +0400 @@ -2,7 +2,7 @@ # $FreeBSD: head/graphics/yed/Makefile 332398 2013-11-01 18:33:59Z wg $ PORTNAME= yed -PORTVERSION= 3.11.1 +PORTVERSION= 3.12 CATEGORIES= graphics java MASTER_SITES= # DISTNAME= yEd-${PORTVERSION} @@ -29,7 +29,6 @@ DOWNLOAD_URL?= http://www.yworks.com/en/products_download.php?file=${DISTNAME}${EXTRACT_SUFX} -NO_STAGE= yes .include .if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) @@ -38,10 +37,10 @@ .endif do-install: - @${MKDIR} ${DATADIR} - ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.jar ${DATADIR} - ${INSTALL_DATA} ${WRKSRC}/vectorgraphics.jar ${DATADIR} - ${INSTALL_DATA} ${WRKSRC}/license.html ${DATADIR} - ${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${PREFIX}/bin + @${MKDIR} ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.jar ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/vectorgraphics.jar ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/license.html ${STAGEDIR}${DATADIR} + ${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin .include diff -ruN yed.bak/distinfo yed/distinfo --- yed.bak/distinfo 2014-02-02 02:10:28.000000000 +0400 +++ yed/distinfo 2014-02-18 22:34:02.000000000 +0400 @@ -1,2 +1,2 @@ -SHA256 (yEd-3.11.1.zip) = 68609a5b7d7fc0763e6425582cc7ce5d069272ddfae379e81135067081a3dbee -SIZE (yEd-3.11.1.zip) = 26672014 +SHA256 (yEd-3.12.zip) = a463daa3934b9496da7beafd71ccef8dea6afbf50d17e8894c4f73e50fb87499 +SIZE (yEd-3.12.zip) = 26788275 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 18:50:08 2014 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 ESMTPS id 38D10D1B; Tue, 18 Feb 2014 18:50:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1006C168B; Tue, 18 Feb 2014 18: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 s1IIo7ve053777; Tue, 18 Feb 2014 18:50:07 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1IIo7EV053776; Tue, 18 Feb 2014 18:50:07 GMT (envelope-from edwin) Date: Tue, 18 Feb 2014 18:50:07 GMT Message-Id: <201402181850.s1IIo7EV053776@freefall.freebsd.org> To: olevole@olevole.ru, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186876: graphics/yed update to 3.12 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 18:50:08 -0000 Synopsis: graphics/yed update to 3.12 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Tue Feb 18 18:50:07 UTC 2014 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186876 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 19:00:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6E365220 for ; Tue, 18 Feb 2014 19:00:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 59B321767 for ; Tue, 18 Feb 2014 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 s1IJ01iw056677 for ; Tue, 18 Feb 2014 19:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1IJ01Rd056676; Tue, 18 Feb 2014 19:00:01 GMT (envelope-from gnats) Date: Tue, 18 Feb 2014 19:00:01 GMT Message-Id: <201402181900.s1IJ01Rd056676@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/186876: graphics/yed update to 3.12 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 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, 18 Feb 2014 19:00:01 -0000 The following reply was made to PR ports/186876; it has been noted by GNATS. From: Edwin Groothuis To: myc@barev.net Cc: bug-followup@FreeBSD.org Subject: Re: ports/186876: graphics/yed update to 3.12 Date: Tue, 18 Feb 2014 18:50:07 UT Maintainer of graphics/yed, Please note that PR ports/186876 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/186876 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 19:10:01 2014 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 ESMTPS id E3B1853B for ; Tue, 18 Feb 2014 19:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BD7D3184A for ; Tue, 18 Feb 2014 19: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 s1IJA0p5059619 for ; Tue, 18 Feb 2014 19:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1IJA0px059618; Tue, 18 Feb 2014 19:10:00 GMT (envelope-from gnats) Resent-Date: Tue, 18 Feb 2014 19:10:00 GMT Resent-Message-Id: <201402181910.s1IJA0px059618@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 ESMTPS id ED1D03C7 for ; Tue, 18 Feb 2014 19:02:13 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D675817F7 for ; Tue, 18 Feb 2014 19:02:13 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1IJ2D89097129 for ; Tue, 18 Feb 2014 19:02:13 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1IJ2DsL097128; Tue, 18 Feb 2014 19:02:13 GMT (envelope-from nobody) Message-Id: <201402181902.s1IJ2DsL097128@cgiserv.freebsd.org> Date: Tue, 18 Feb 2014 19:02:13 GMT From: Vitaly Magerya To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186877: devel/boehm-gc: update MASTER_SITES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 19:10:01 -0000 >Number: 186877 >Category: ports >Synopsis: devel/boehm-gc: update MASTER_SITES >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 Feb 18 19:10:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Vitaly Magerya >Release: >Organization: >Environment: >Description: The main site for devel/boehm-gc is moving, the old site is likely to disappear shortly; see [1] for the announcement. Update MASTER_SITES and WWW accordingly. [1] http://permalink.gmane.org/gmane.comp.programming.garbage-collection.boehmgc/5834 >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN boehm-gc.orig/Makefile boehm-gc/Makefile --- boehm-gc.orig/Makefile 2014-01-22 19:00:46.000000000 +0200 +++ boehm-gc/Makefile 2014-02-18 20:50:42.000000000 +0200 @@ -5,7 +5,7 @@ PORTVERSION= 7.2e PORTREVISION?= 0 CATEGORIES= devel -MASTER_SITES= http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/ +MASTER_SITES= http://www.hboehm.info/gc/gc_source/ PKGNAMEPREFIX= boehm- .ifdef GC_VARIANT PKGNAMESUFFIX= -${GC_VARIANT} diff -ruN boehm-gc.orig/pkg-descr boehm-gc/pkg-descr --- boehm-gc.orig/pkg-descr 2014-01-22 17:44:51.000000000 +0200 +++ boehm-gc/pkg-descr 2014-02-18 20:52:02.000000000 +0200 @@ -14,4 +14,4 @@ ps: garbage collection is addictive. -WWW: http://www.hpl.hp.com/personal/Hans_Boehm/gc/ +WWW: http://www.hboehm.info/gc/ diff -ruN boehm-gc-threaded.orig/pkg-descr boehm-gc-threaded/pkg-descr --- boehm-gc-threaded.orig/pkg-descr 2014-01-22 17:44:51.000000000 +0200 +++ boehm-gc-threaded/pkg-descr 2014-02-18 20:52:14.000000000 +0200 @@ -16,4 +16,4 @@ ps: garbage collection is addictive. -WWW: http://www.hpl.hp.com/personal/Hans_Boehm/gc/ +WWW: http://www.hboehm.info/gc/ diff -ruN boehm-gc-redirect.orig/pkg-descr boehm-gc-redirect/pkg-descr --- boehm-gc-redirect.orig/pkg-descr 2014-01-22 17:44:51.000000000 +0200 +++ boehm-gc-redirect/pkg-descr 2014-02-18 20:52:26.000000000 +0200 @@ -16,4 +16,4 @@ ps: garbage collection is addictive. -WWW: http://www.hpl.hp.com/personal/Hans_Boehm/gc/ +WWW: http://www.hboehm.info/gc/ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 19:30:12 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7F36D54E for ; Tue, 18 Feb 2014 19:30:12 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 58C121A96 for ; Tue, 18 Feb 2014 19:30: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 s1IJUCWb068602 for ; Tue, 18 Feb 2014 19:30:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1IJUCsb068584; Tue, 18 Feb 2014 19:30:12 GMT (envelope-from gnats) Resent-Date: Tue, 18 Feb 2014 19:30:12 GMT Resent-Message-Id: <201402181930.s1IJUCsb068584@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, Allan Jude Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1F021181 for ; Tue, 18 Feb 2014 19:22:51 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id F30C219D9 for ; Tue, 18 Feb 2014 19:22:50 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1IJMm2W025250 for ; Tue, 18 Feb 2014 19:22:48 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1IJMmXM025246; Tue, 18 Feb 2014 19:22:48 GMT (envelope-from nobody) Message-Id: <201402181922.s1IJMmXM025246@cgiserv.freebsd.org> Date: Tue, 18 Feb 2014 19:22:48 GMT From: Allan Jude To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186878: [maintainer][patch] Update dns/gdnsd to 1.11.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 19:30:12 -0000 >Number: 186878 >Category: ports >Synopsis: [maintainer][patch] Update dns/gdnsd to 1.11.1 >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 Feb 18 19:30:01 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Allan Jude >Release: 9.2-RELEASE >Organization: ScaleEngine Inc. >Environment: FreeBSD Trooper.HML3.ScaleEngine.net 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255898: Thu Sep 26 22:50:31 UTC 2013 root@bake.isc.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Upgrade dns/gdnsd to 1.11.1 New master site, uses a redirect to amazon so needs fetch args to make it follow the redirect >How-To-Repeat: >Fix: Patch attached with submission follows: Index: dns/gdnsd/Makefile =================================================================== --- dns/gdnsd/Makefile (revision 344931) +++ dns/gdnsd/Makefile (working copy) @@ -2,11 +2,13 @@ # $FreeBSD$ PORTNAME= gdnsd -PORTVERSION= 1.11.0 +PORTVERSION= 1.11.1 CATEGORIES= dns -MASTER_SITES= http://downloads.gdnsd.net/ \ +MASTER_SITES= https://github.com/blblack/gdnsd/releases/download/v${PORTVERSION}/ \ http://gdnsd.scaleengine.net/gdnsd/ +FETCH_ARGS= -Fpr + MAINTAINER= ports@scaleengine.com COMMENT= Authoritative-only GeoIP-aware DNS server Index: dns/gdnsd/distinfo =================================================================== --- dns/gdnsd/distinfo (revision 344931) +++ dns/gdnsd/distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (gdnsd-1.11.0.tar.xz) = 45c60d3c739d3b4e25777edc3d552b093275b20226e610cbacbb143300412c94 -SIZE (gdnsd-1.11.0.tar.xz) = 627912 +SHA256 (gdnsd-1.11.1.tar.xz) = 5c560753e9c07631904fad84b422797e520079b989f6b5d912057bc2ca81e7e5 +SIZE (gdnsd-1.11.1.tar.xz) = 629060 Index: dns/gdnsd/pkg-plist =================================================================== --- dns/gdnsd/pkg-plist (revision 344931) +++ dns/gdnsd/pkg-plist (working copy) @@ -1,4 +1,5 @@ bin/gdnsd_geoip_test +etc/rc.d/gdnsd include/gdnsd/compiler.h include/gdnsd/dmn.h include/gdnsd/dname.h @@ -11,7 +12,6 @@ include/gdnsd/plugin.h include/gdnsd/stats.h include/gdnsd/vscf.h -@dirrm include/gdnsd lib/gdnsd/libgdnsd.la lib/gdnsd/libgdnsd.so lib/gdnsd/plugin_extmon.la @@ -36,39 +36,7 @@ lib/gdnsd/plugin_tcp_connect.so lib/gdnsd/plugin_weighted.la lib/gdnsd/plugin_weighted.so -@dirrm lib/gdnsd libexec/gdnsd/gdnsd_extmon_helper -@dirrm libexec/gdnsd -sbin/gdnsd -%%DOCSDIR%%/AUTHORS -%%DOCSDIR%%/COPYING -%%DOCSDIR%%/INSTALL -%%DOCSDIR%%/NEWS -%%DOCSDIR%%/README.md -%%DOCSDIR%%/gdnsd-plugin-api.pod -%%DOCSDIR%%/gdnsd-plugin-api.txt -%%DOCSDIR%%/gdnsd-plugin-extmon.pod -%%DOCSDIR%%/gdnsd-plugin-extmon.txt -%%DOCSDIR%%/gdnsd-plugin-geoip.pod -%%DOCSDIR%%/gdnsd-plugin-geoip.txt -%%DOCSDIR%%/gdnsd-plugin-metafo.pod -%%DOCSDIR%%/gdnsd-plugin-metafo.txt -%%DOCSDIR%%/gdnsd-plugin-multifo.pod -%%DOCSDIR%%/gdnsd-plugin-multifo.txt -%%DOCSDIR%%/gdnsd-plugin-simplefo.pod -%%DOCSDIR%%/gdnsd-plugin-simplefo.txt -%%DOCSDIR%%/gdnsd-plugin-weighted.pod -%%DOCSDIR%%/gdnsd-plugin-weighted.txt -%%DOCSDIR%%/gdnsd.config.pod -%%DOCSDIR%%/gdnsd.config.txt -%%DOCSDIR%%/gdnsd.pod -%%DOCSDIR%%/gdnsd.txt -%%DOCSDIR%%/gdnsd.zonefile.pod -%%DOCSDIR%%/gdnsd.zonefile.txt -%%DOCSDIR%%/gdnsd_geoip_test.pod -%%DOCSDIR%%/gdnsd_geoip_test.txt -%%DOCSDIR%%/gdnsd_manual.pod -%%DOCSDIR%%/gdnsd_manual.txt man/man1/gdnsd_geoip_test.1.gz man/man3/gdnsd-plugin-api.3.gz man/man5/gdnsd.config.5.gz @@ -80,9 +48,42 @@ man/man8/gdnsd-plugin-simplefo.8.gz man/man8/gdnsd-plugin-weighted.8.gz man/man8/gdnsd.8.gz -@dirrm %%DOCSDIR%% +sbin/gdnsd +%%PORTDOCS%%%%DOCSDIR%%/AUTHORS +%%PORTDOCS%%%%DOCSDIR%%/COPYING +%%PORTDOCS%%%%DOCSDIR%%/INSTALL +%%PORTDOCS%%%%DOCSDIR%%/NEWS +%%PORTDOCS%%%%DOCSDIR%%/README.md +%%PORTDOCS%%%%DOCSDIR%%/gdnsd-plugin-api.pod +%%PORTDOCS%%%%DOCSDIR%%/gdnsd-plugin-api.txt +%%PORTDOCS%%%%DOCSDIR%%/gdnsd-plugin-extmon.pod +%%PORTDOCS%%%%DOCSDIR%%/gdnsd-plugin-extmon.txt +%%PORTDOCS%%%%DOCSDIR%%/gdnsd-plugin-geoip.pod +%%PORTDOCS%%%%DOCSDIR%%/gdnsd-plugin-geoip.txt +%%PORTDOCS%%%%DOCSDIR%%/gdnsd-plugin-metafo.pod +%%PORTDOCS%%%%DOCSDIR%%/gdnsd-plugin-metafo.txt +%%PORTDOCS%%%%DOCSDIR%%/gdnsd-plugin-multifo.pod +%%PORTDOCS%%%%DOCSDIR%%/gdnsd-plugin-multifo.txt +%%PORTDOCS%%%%DOCSDIR%%/gdnsd-plugin-simplefo.pod +%%PORTDOCS%%%%DOCSDIR%%/gdnsd-plugin-simplefo.txt +%%PORTDOCS%%%%DOCSDIR%%/gdnsd-plugin-weighted.pod +%%PORTDOCS%%%%DOCSDIR%%/gdnsd-plugin-weighted.txt +%%PORTDOCS%%%%DOCSDIR%%/gdnsd.config.pod +%%PORTDOCS%%%%DOCSDIR%%/gdnsd.config.txt +%%PORTDOCS%%%%DOCSDIR%%/gdnsd.pod +%%PORTDOCS%%%%DOCSDIR%%/gdnsd.txt +%%PORTDOCS%%%%DOCSDIR%%/gdnsd.zonefile.pod +%%PORTDOCS%%%%DOCSDIR%%/gdnsd.zonefile.txt +%%PORTDOCS%%%%DOCSDIR%%/gdnsd_geoip_test.pod +%%PORTDOCS%%%%DOCSDIR%%/gdnsd_geoip_test.txt +%%PORTDOCS%%%%DOCSDIR%%/gdnsd_manual.pod +%%PORTDOCS%%%%DOCSDIR%%/gdnsd_manual.txt @exec mkdir -p %%ETCDIR%%/zones @unexec rmdir >/dev/null 2>&1 /var/run/gdnsd || : +%%PORTDOCS%%@dirrmtry %%DOCSDIR%% +@dirrmtry libexec/gdnsd +@dirrmtry lib/gdnsd +@dirrmtry include/gdnsd @dirrmtry etc/gdnsd/zones @dirrmtry etc/gdnsd/geoip @dirrmtry etc/gdnsd >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 19:30:13 2014 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 ESMTPS id C5B5454F for ; Tue, 18 Feb 2014 19:30:13 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 98E9C1A97 for ; Tue, 18 Feb 2014 19:30: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 s1IJUDi6069229 for ; Tue, 18 Feb 2014 19:30:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1IJUDM8069228; Tue, 18 Feb 2014 19:30:13 GMT (envelope-from gnats) Date: Tue, 18 Feb 2014 19:30:13 GMT Message-Id: <201402181930.s1IJUDM8069228@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Eugene Mychlo Subject: Re: ports/186876: graphics/yed update to 3.12 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Eugene Mychlo List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 19:30:13 -0000 The following reply was made to PR ports/186876; it has been noted by GNATS. From: Eugene Mychlo To: "bug-followup@FreeBSD.org" Cc: Subject: Re: ports/186876: graphics/yed update to 3.12 Date: Tue, 18 Feb 2014 23:09:12 +0400 Hello, The patch is ok. I approve it. From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 20:51:36 2014 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 ESMTPS id 9ED79422; Tue, 18 Feb 2014 20:51:36 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7197D1364; Tue, 18 Feb 2014 20:51: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 s1IKpauO093563; Tue, 18 Feb 2014 20:51:36 GMT (envelope-from pawel@freefall.freebsd.org) Received: (from pawel@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1IKpaig093562; Tue, 18 Feb 2014 20:51:36 GMT (envelope-from pawel) Date: Tue, 18 Feb 2014 20:51:36 GMT Message-Id: <201402182051.s1IKpaig093562@freefall.freebsd.org> To: pawel@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pawel@FreeBSD.org From: pawel@FreeBSD.org Subject: Re: ports/186655: [maintainer update] audio/julius: fix building with clang X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 20:51:36 -0000 Synopsis: [maintainer update] audio/julius: fix building with clang Responsible-Changed-From-To: freebsd-ports-bugs->pawel Responsible-Changed-By: pawel Responsible-Changed-When: Tue Feb 18 20:51:36 UTC 2014 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=186655 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 21:10:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D1F0C911 for ; Tue, 18 Feb 2014 21:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A192C1518 for ; Tue, 18 Feb 2014 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 s1ILA01Y096992 for ; Tue, 18 Feb 2014 21:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1ILA0Gm096991; Tue, 18 Feb 2014 21:10:00 GMT (envelope-from gnats) Resent-Date: Tue, 18 Feb 2014 21:10:00 GMT Resent-Message-Id: <201402182110.s1ILA0Gm096991@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, Christian Mangin Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2C651751 for ; Tue, 18 Feb 2014 21:05:03 +0000 (UTC) Received: from mail-qa0-x22f.google.com (mail-qa0-x22f.google.com [IPv6:2607:f8b0:400d:c00::22f]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B48DA14D0 for ; Tue, 18 Feb 2014 21:05:02 +0000 (UTC) Received: by mail-qa0-f47.google.com with SMTP id j5so24373857qaq.34 for ; Tue, 18 Feb 2014 13:05:02 -0800 (PST) Received: from atalante.lan (cable-12-101-200.b2b2c.ca. [72.12.101.200]) by mx.google.com with ESMTPSA id 110sm28922457qgv.19.2014.02.18.13.05.00 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 18 Feb 2014 13:05:01 -0800 (PST) Received: from atalante.lan (localhost [127.0.0.1]) by atalante.lan (8.14.7/8.14.7) with ESMTP id s1IL4w0s077185 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Tue, 18 Feb 2014 16:04:58 -0500 (EST) (envelope-from cmangin@atalante.lan) Received: (from cmangin@localhost) by atalante.lan (8.14.7/8.14.7/Submit) id s1IL4wQg077184; Tue, 18 Feb 2014 16:04:58 -0500 (EST) (envelope-from cmangin) Message-Id: <201402182104.s1IL4wQg077184@atalante.lan> Date: Tue, 18 Feb 2014 16:04:58 -0500 (EST) From: Christian Mangin To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/186879: [PATCH] textproc/rarian: De-bashify X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Christian Mangin List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 21:10:00 -0000 >Number: 186879 >Category: ports >Synopsis: [PATCH] textproc/rarian: De-bashify >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 Feb 18 21:10:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Christian Mangin >Release: FreeBSD 10.0-RELEASE amd64 >Organization: >Environment: >Description: Mercilessly de-bashify textproc/rarian. 4 scripts are affected: rarian-sk-config rarian-sk-extract rarian-sk-rebuild rarian-sk-update The changes in the first 3 are quite trivial. The last one needed some work but that turned out to be totally pointless as the script does absolutely nothing useful. With this patch, the dependency to shells/bash is no longer required. >How-To-Repeat: >Fix: Patch attached. --- patch.rarian begins here --- diff -ruN rarian.orig/Makefile rarian/Makefile --- rarian.orig/Makefile 2014-02-18 11:12:38.396775837 -0500 +++ rarian/Makefile 2014-02-18 15:16:57.203764471 -0500 @@ -12,10 +12,8 @@ BUILD_DEPENDS= ${LOCALBASE}/share/xsl/docbook/xhtml/chunk.xsl:${PORTSDIR}/textproc/docbook-xsl \ ${LOCALBASE}/share/xml/docbook/${DOCBOOK_VERSION}:${PORTSDIR}/textproc/docbook-xml \ - ${LOCALBASE}/share/xml/docbook/4.1.2:${PORTSDIR}/textproc/docbook-sk \ - bash:${PORTSDIR}/shells/bash -RUN_DEPENDS= bash:${PORTSDIR}/shells/bash \ - ${LOCALBASE}/bin/getopt:${PORTSDIR}/misc/getopt \ + ${LOCALBASE}/share/xml/docbook/4.1.2:${PORTSDIR}/textproc/docbook-sk +RUN_DEPENDS= ${LOCALBASE}/bin/getopt:${PORTSDIR}/misc/getopt \ ${LOCALBASE}/share/xsl/docbook/xhtml/chunk.xsl:${PORTSDIR}/textproc/docbook-xsl \ ${LOCALBASE}/share/xml/docbook/${DOCBOOK_VERSION}:${PORTSDIR}/textproc/docbook-xml \ ${LOCALBASE}/share/xml/docbook/4.1.2:${PORTSDIR}/textproc/docbook-sk diff -ruN rarian.orig/files/patch-util_rarian-sk-config.in rarian/files/patch-util_rarian-sk-config.in --- rarian.orig/files/patch-util_rarian-sk-config.in 2014-01-22 12:40:44.000000000 -0500 +++ rarian/files/patch-util_rarian-sk-config.in 2014-02-18 14:41:30.953911818 -0500 @@ -1,5 +1,20 @@ ---- util/rarian-sk-config.in.orig 2007-10-10 23:00:03.000000000 -0500 -+++ util/rarian-sk-config.in 2007-10-10 23:00:30.000000000 -0500 +--- util/rarian-sk-config.in.orig 2008-09-01 14:40:21.000000000 -0400 ++++ util/rarian-sk-config.in 2013-05-12 10:11:27.075659034 -0400 +@@ -1,4 +1,4 @@ +-#!@BASH@ ++#!/bin/sh + + # Yet another simple wrapper for scrollkeeper wierdness + # This one emulates scrollkeeper-config, +@@ -36,7 +36,7 @@ + + } + +-if [[ $# != 1 ]] ++if [ $# != 1 ] + then + print_help + exit @@ -47,7 +47,7 @@ print_help ;; diff -ruN rarian.orig/files/patch-util_rarian-sk-extract.in rarian/files/patch-util_rarian-sk-extract.in --- rarian.orig/files/patch-util_rarian-sk-extract.in 1969-12-31 19:00:00.000000000 -0500 +++ rarian/files/patch-util_rarian-sk-extract.in 2014-02-18 14:41:30.954911276 -0500 @@ -0,0 +1,29 @@ +--- util/rarian-sk-extract.in.orig 2008-09-01 14:40:21.000000000 -0400 ++++ util/rarian-sk-extract.in 2013-05-12 10:11:27.075659034 -0400 +@@ -1,4 +1,4 @@ +-#!@BASH@ ++#!/bin/sh + + # Wrapper around xsltproc to mimic scrollkeeper-extract. + # +@@ -11,7 +11,7 @@ + echo -e "`basename $0` ..." + } + +-if [[ $# < 2 ]] ++if [ $# -lt 2 ] + then + print_usage + exit 0 +@@ -24,8 +24,8 @@ + xsltproc --xinclude --xincludestyle $1 $infile > $2 + #echo "xml: $infile style: $1 out: $2" + shift 2 +- if [[ $# < 2 ]]; ++ if [ $# -lt 2 ]; + then + break + fi +-done +\ No newline at end of file ++done diff -ruN rarian.orig/files/patch-util_rarian-sk-rebuild.in rarian/files/patch-util_rarian-sk-rebuild.in --- rarian.orig/files/patch-util_rarian-sk-rebuild.in 1969-12-31 19:00:00.000000000 -0500 +++ rarian/files/patch-util_rarian-sk-rebuild.in 2014-02-18 14:41:30.955910232 -0500 @@ -0,0 +1,24 @@ +--- util/rarian-sk-rebuild.in.orig 2008-09-01 14:40:21.000000000 -0400 ++++ util/rarian-sk-rebuild.in 2013-05-12 10:11:27.075659034 -0400 +@@ -1,4 +1,4 @@ +-#!@BASH@ ++#!/bin/sh + + # Another simple wrapper script. This time for scrollkeeper-rebuilddb + # This one is slightly more complex in that we have to run a command! +@@ -22,7 +22,7 @@ + then + for x in $(grep -e '^0:@:' $statedir/rarian-update-mtimes) + do +- if [[ $convert_string != "REPLACEME" ]] ++ if [ $convert_string != "REPLACEME" ] + then + convert_string=$convert_string:${x##0:@:} + else +@@ -35,4 +35,4 @@ + + $bindir/rarian-sk-update -v --clean-index -o $convert_string + +-fi +\ No newline at end of file ++fi diff -ruN rarian.orig/files/patch-util_rarian-sk-update.in rarian/files/patch-util_rarian-sk-update.in --- rarian.orig/files/patch-util_rarian-sk-update.in 1969-12-31 19:00:00.000000000 -0500 +++ rarian/files/patch-util_rarian-sk-update.in 2014-02-18 14:55:53.304853752 -0500 @@ -0,0 +1,239 @@ +--- util/rarian-sk-update.in.orig 2008-09-01 14:40:21.000000000 -0400 ++++ util/rarian-sk-update.in 2014-02-18 14:54:52.000000000 -0500 +@@ -1,4 +1,4 @@ +-#!@BASH@ ++#!/bin/sh + + # This script is designed to replace scrollkeeper-update + # It iterates through all the directories specified using -o +@@ -25,7 +25,7 @@ + datadir=@datadir@ + output_dir=${datadir}/help + package_version=@PACKAGE_VERSION@ +-real_convert[0]=$convert_dir ++real_convert=$convert_dir + skip_omf_translate=@ENABLE_OMF_READ@ + + # Print the version info for this file +@@ -97,7 +97,7 @@ + for f in $1/*.omf; do + bname=$(basename $f) + bname=${bname%-*.omf} +- if [[ $bname != $old_basename ]] ++ if [ $bname != $old_basename ] + then + old_basename=$bname + filename=$bname.document +@@ -115,39 +115,22 @@ + echo -e `stat -c %Y $1`':@:'$1':@:'$fname_list >> $tmpdir/rarian-updates + } + +-# Split up the omf dirs specified on the command line +-# I've never seen this used in practice, but +-# better safe than sorry +-split_omf_dirs () +-{ +- let counter=0 +- while [ $convert_dir ] +- do +- entry=`echo $convert_dir | cut -d ':' -f 1` +- convert_dir=${convert_dir#$entry} +- convert_dir=${convert_dir#:} +- real_convert[$counter]=$entry +- let counter+=1 +- done +- +-} +- + # Determine whether the directory defined within the index file + # was specified in the convert_dirs + am_adding_dir () + { +- let counter=0 + am_processing="0" +- for i in ${real_convert[@]} ++ tmplist= ++ for i in ${real_convert} + do +- if [[ $fname == $i ]] ++ if [ $fname == $i ] + then +- real_convert[$counter]="0" + am_processing="1" +- return +- fi +- let counter+=1 ++ else ++ tmplist="$tmplist $i" ++ fi + done ++ real_convert=$tmplist + } + + # The directory wasn't specified. This does nothing except cat the +@@ -156,7 +139,7 @@ + { + read line + time=`echo $line | awk -F ":@:" '{print $1}'` +- while [[ $time -ne 0 ]] ++ while [ $time -ne 0 ] + do + echo $line + echo $line >> $tmpdir/rarian-updates +@@ -183,18 +166,18 @@ + # If the given directory actually exists within the omf dir + dirs_contains () + { +- let counter=0 + am_processing="0" +- for i in ${entries[@]} ++ tmplist= ++ for i in ${entries} + do +- if [[ $1 == $i ]] ++ if [ $1 == $i ] + then +- entries[$counter]="0" + am_processing="1" +- return ++ else ++ tmplist="$tmplist $i" + fi +- let counter+=1 + done ++ entries=$tmplist + } + + # The meat. Goes through and checks each directory mtime against the +@@ -202,27 +185,26 @@ + # If the dir has been removed, delete. + process_directory () + { +- let counter=0 ++ entries= + for i in $(ls $fname) + do +- entries[$counter]="$fname/$i" +- let counter+=1 ++ entries="$entries $fname/$i" + done + + read line + + old_time=`echo $line | awk -F ":@:" '{print $1}'` + +- while [[ $old_time && $old_time != "0" ]] ++ while [ $old_time && $old_time != "0" ] + do + name=`echo $line | awk -F ":@:" '{print $2}'` + + dirs_contains $name + +- if [[ $am_processing != "0" ]] ++ if [ $am_processing != "0" ] + then + new_time=`stat -c %Y $name` +- if [[ $new_time -ne $old_time ]] ++ if [ $new_time -ne $old_time ] + then + print_verbose "Directory $name has changed. Updating." + process_dir $name +@@ -231,7 +213,7 @@ + fi + else + filenames=`echo $line | awk -F ":@:" '{print $3}'` +- while [[ $filenames ]] ++ while [ $filenames ] + do + entry=`echo $filenames | cut -d ';' -f 1` + print_verbose "Directory resonsible for $entry has been removed. Deleting" +@@ -246,13 +228,10 @@ + old_time=`echo $line | awk -F ":@:" '{print $1}'` + done + +- for i in ${entries[@]} ++ for i in ${entries} + do +- if [[ $i != "0" ]] +- then +- print_verbose "Directory $i is new and will be added." +- process_dir $i +- fi ++ print_verbose "Directory $i is new and will be added." ++ process_dir $i + done + } + +@@ -326,7 +305,10 @@ + if [ $skip_omf_translate = 0 ] + then + +-split_omf_dirs ++# Split up the omf dirs specified on the command line ++# I've never seen this used in practice, but ++# better safe than sorry ++real_convert=$(echo $convert_dir | sed 's/:/ /g') + + if [ $update_output_dir ] && [ ! $overload_update ] + then +@@ -334,7 +316,7 @@ + # omf files in /share/omf + # Also assumes only a single omf path + print_verbose "Using non-installed location" +- output_dir=`dirname $real_convert[0]`/help ++ output_dir=$(dirname $(echo $real_convert | cut -d ' ' -f 1))/help + fi + + print_verbose "Outputting to $output_dir" +@@ -378,16 +360,16 @@ + fname=`echo $line | awk -F ":@:" '{print $2}'` + + +-while [[ $fname != "" ]] ++while [ $fname != "" ] + do + print_verbose "Processing directory $fname" + echo "0:@:$fname" >> $tmpdir/rarian-updates + am_adding_dir $fname +- if [[ ! $(ls $fname 2>&1) ]] ++ if [ ! $(ls $fname 2>&1) ] + then + print_verbose "Previous directory $fname no longer exists" + else +- if [[ $am_processing != "0" ]] ++ if [ $am_processing != "0" ] + then + process_directory + else +@@ -397,22 +379,18 @@ + fi + done + +-for i in ${real_convert[@]} ++for i in ${real_convert} + do +- if [[ $i != "0" ]] +- then + res=$(ls $i 2>/dev/null) +- if [[ ! $res ]] ++ if [ ! $res ] + then + print_verbose "Path $i does not exist. Ignoring" + else +- + print_verbose "Adding contents of directory $i" + fname=$i + echo "0:@:$fname" >> $tmpdir/rarian-updates + add_all_files + fi +- fi + done + + rm -f $statedir/rarian-update-mtimes +@@ -422,4 +400,4 @@ + fi + rm -rf $tmpdir + +-fi # ENABLE_OMF_READ +\ No newline at end of file ++fi # ENABLE_OMF_READ --- patch.rarian ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 21:10:09 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 64891941; Tue, 18 Feb 2014 21:10:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3A188151A; Tue, 18 Feb 2014 21: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 s1ILA9gM097130; Tue, 18 Feb 2014 21:10:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1ILA9DQ097129; Tue, 18 Feb 2014 21:10:09 GMT (envelope-from edwin) Date: Tue, 18 Feb 2014 21:10:09 GMT Message-Id: <201402182110.s1ILA9DQ097129@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186879: [PATCH] textproc/rarian: De-bashify X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 21:10:09 -0000 Synopsis: [PATCH] textproc/rarian: De-bashify Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Tue Feb 18 21:10:08 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186879 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 21:55:06 2014 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 ESMTPS id BE848D7C; Tue, 18 Feb 2014 21:55:06 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8F6511985; Tue, 18 Feb 2014 21:55: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 s1ILt6hI012804; Tue, 18 Feb 2014 21:55:06 GMT (envelope-from stephen@freefall.freebsd.org) Received: (from stephen@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1ILt6hf012803; Tue, 18 Feb 2014 21:55:06 GMT (envelope-from stephen) Date: Tue, 18 Feb 2014 21:55:06 GMT Message-Id: <201402182155.s1ILt6hf012803@freefall.freebsd.org> To: stephen@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, stephen@FreeBSD.org From: stephen@FreeBSD.org Subject: Re: ports/186855: New port: math/reduce X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 21:55:06 -0000 Synopsis: New port: math/reduce Responsible-Changed-From-To: freebsd-ports-bugs->stephen Responsible-Changed-By: stephen Responsible-Changed-When: Tue Feb 18 21:54:42 UTC 2014 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=186855 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 22:50:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C6571D40 for ; Tue, 18 Feb 2014 22:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9F9741E0F for ; Tue, 18 Feb 2014 22: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 s1IMo0Wi028852 for ; Tue, 18 Feb 2014 22:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1IMo08I028851; Tue, 18 Feb 2014 22:50:00 GMT (envelope-from gnats) Resent-Date: Tue, 18 Feb 2014 22:50:00 GMT Resent-Message-Id: <201402182250.s1IMo08I028851@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, Raphael Kubo da Costa Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AF69EC8C; Tue, 18 Feb 2014 22:42:19 +0000 (UTC) Received: from mail-lb0-x22e.google.com (mail-lb0-x22e.google.com [IPv6:2a00:1450:4010:c04::22e]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0BDE51DC0; Tue, 18 Feb 2014 22:42:18 +0000 (UTC) Received: by mail-lb0-f174.google.com with SMTP id l4so12620146lbv.5 for ; Tue, 18 Feb 2014 14:42:16 -0800 (PST) Received: from localhost (a91-154-115-217.elisa-laajakaista.fi. [91.154.115.217]) by mx.google.com with ESMTPSA id l4sm25179534lbd.15.2014.02.18.14.42.15 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 18 Feb 2014 14:42:16 -0800 (PST) Message-Id: <5303e1c8.2411700a.204c.30cc@mx.google.com> Date: Tue, 18 Feb 2014 14:42:16 -0800 (PST) From: Raphael Kubo da Costa To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/186880: [PATCH] devel/rbtools: Update to 0.5.7. Cc: flz@FreeBSD.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 22:50:00 -0000 >Number: 186880 >Category: ports >Synopsis: [PATCH] devel/rbtools: Update to 0.5.7. >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 Feb 18 22:50:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Raphael Kubo da Costa >Release: FreeBSD 11.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD orwell 11.0-CURRENT FreeBSD 11.0-CURRENT #7 r261945: Sun Feb 16 01:58:10 EET >Description: - Update to 0.5.7. - Stage-ify. - Move away from deprecated bsd.python.mk variables and generate the plist automatically. - I see that many updates to this port have been committed after a long period of maintainer timeout; I can take maintanership of this port if OK. Port maintainer (flz@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 1.00.2014.02.11 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- rbtools-0.5.7.patch begins here --- diff -ruN /usr/ports/devel/rbtools/Makefile ./Makefile --- /usr/ports/devel/rbtools/Makefile 2014-01-22 19:00:46.000000000 +0200 +++ ./Makefile 2014-02-19 00:34:43.000000000 +0200 @@ -1,26 +1,20 @@ # $FreeBSD: head/devel/rbtools/Makefile 340722 2014-01-22 17:00:46Z mat $ PORTNAME= ${ORIGNAME:L} -DISTVERSION= 0.5 +DISTVERSION= 0.5.7 CATEGORIES= devel -MASTER_SITES= http://downloads.reviewboard.org/releases/${ORIGNAME}/${DISTVERSION}/ +MASTER_SITES= http://downloads.reviewboard.org/releases/${ORIGNAME}/${DISTVERSION:R}/ DISTNAME= ${ORIGNAME}-${DISTVERSION} -MAINTAINER= flz@FreeBSD.org +MAINTAINER= rakuco@FreeBSD.org COMMENT= ReviewBoard Toolset LICENSE= MIT ORIGNAME= RBTools -USE_PYTHON= 2 -USE_PYDISTUTILS= easy_install -PYDISTUTILS_PKGNAME= ${ORIGNAME} -PYDISTUTILS_PKGVERSION= ${DISTVERSION} - -PLIST_FILES= bin/post-review \ - bin/rbt \ - %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% +USE_PYTHON= 2 +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes -NO_STAGE= yes .include diff -ruN /usr/ports/devel/rbtools/distinfo ./distinfo --- /usr/ports/devel/rbtools/distinfo 2013-06-13 15:58:25.000000000 +0300 +++ ./distinfo 2014-02-19 00:13:18.000000000 +0200 @@ -1,2 +1,2 @@ -SHA256 (RBTools-0.5.tar.gz) = da3cbef4723cb4081098af20797269eae27902ece239f526e6e4a69fd248cb74 -SIZE (RBTools-0.5.tar.gz) = 87824 +SHA256 (RBTools-0.5.7.tar.gz) = d3d32280380703bf184c5f4627c1aa7f56310168c191e6687c517a3b591bff1b +SIZE (RBTools-0.5.7.tar.gz) = 104098 --- rbtools-0.5.7.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 22:50:09 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7989ED6F; Tue, 18 Feb 2014 22:50:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4CF491E13; Tue, 18 Feb 2014 22: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 s1IMo91S028989; Tue, 18 Feb 2014 22:50:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1IMo9JW028988; Tue, 18 Feb 2014 22:50:09 GMT (envelope-from edwin) Date: Tue, 18 Feb 2014 22:50:09 GMT Message-Id: <201402182250.s1IMo9JW028988@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, flz@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186880: [PATCH] devel/rbtools: Update to 0.5.7. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 22:50:09 -0000 Synopsis: [PATCH] devel/rbtools: Update to 0.5.7. Responsible-Changed-From-To: freebsd-ports-bugs->flz Responsible-Changed-By: edwin Responsible-Changed-When: Tue Feb 18 22:50:08 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186880 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 23:05:29 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1C3404D6; Tue, 18 Feb 2014 23:05:29 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E3E2110EA; Tue, 18 Feb 2014 23:05: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 s1IN5SqD034778; Tue, 18 Feb 2014 23:05:28 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1IN5SO2034777; Tue, 18 Feb 2014 23:05:28 GMT (envelope-from linimon) Date: Tue, 18 Feb 2014 23:05:28 GMT Message-Id: <201402182305.s1IN5SO2034777@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/186859: security/libgpg-error: pkg-plist mistype X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 23:05:29 -0000 Synopsis: security/libgpg-error: pkg-plist mistype Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Tue Feb 18 23:05:18 UTC 2014 Responsible-Changed-Why: ports PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=186859 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 23:05:33 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B6FF04E0; Tue, 18 Feb 2014 23:05:33 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8AAE910EE; Tue, 18 Feb 2014 23:05: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 s1IN5Xor034911; Tue, 18 Feb 2014 23:05:33 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1IN5XCe034910; Tue, 18 Feb 2014 23:05:33 GMT (envelope-from edwin) Date: Tue, 18 Feb 2014 23:05:33 GMT Message-Id: <201402182305.s1IN5XCe034910@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, novel@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186859: security/libgpg-error: pkg-plist mistype X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 23:05:33 -0000 Synopsis: security/libgpg-error: pkg-plist mistype Responsible-Changed-From-To: freebsd-ports-bugs->novel Responsible-Changed-By: edwin Responsible-Changed-When: Tue Feb 18 23:05:33 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186859 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 23:20:00 2014 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 ESMTPS id 8918EC5D for ; Tue, 18 Feb 2014 23:20:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 628371234 for ; Tue, 18 Feb 2014 23: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 s1INK0Li038872 for ; Tue, 18 Feb 2014 23:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1INK0ns038871; Tue, 18 Feb 2014 23:20:00 GMT (envelope-from gnats) Resent-Date: Tue, 18 Feb 2014 23:20:00 GMT Resent-Message-Id: <201402182320.s1INK0ns038871@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 [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 58EB7B9F for ; Tue, 18 Feb 2014 23:18:43 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3A855121A for ; Tue, 18 Feb 2014 23:18:43 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1INIgNP039087 for ; Tue, 18 Feb 2014 23:18:42 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1INIgIC039081; Tue, 18 Feb 2014 23:18:42 GMT (envelope-from nobody) Message-Id: <201402182318.s1INIgIC039081@cgiserv.freebsd.org> Date: Tue, 18 Feb 2014 23:18:42 GMT From: Kozlov Sergey To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186881: New port: print/py-preppy ReportLab's templating system X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 23:20:00 -0000 >Number: 186881 >Category: ports >Synopsis: New port: print/py-preppy ReportLab's templating system >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 Feb 18 23:20:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Kozlov Sergey >Release: 9.2-RELEASE-p3 >Organization: ARC >Environment: FreeBSD sonya 9.2-RELEASE-p3 FreeBSD 9.2-RELEASE-p3 #1: Fri Jan 17 19:43:47 EET 2014 root@sonya:/usr/obj/usr/src/sys/GENERIC amd64 >Description: New port: print/py-preppy After reportlab-2.7 preppy is now an external dependency, so add it as another port. IMPORTANT: Preppy officially supports python 2.7 and 3.3. But I could not specify only two versions in USE_PYTHON so I've decided to make it 2.7-3.3 >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: # # py-preppy # py-preppy/pkg-descr # py-preppy/distinfo # py-preppy/Makefile # echo c - py-preppy mkdir -p py-preppy > /dev/null 2>&1 echo x - py-preppy/pkg-descr sed 's/^X//' >py-preppy/pkg-descr << '4325f4d4e911e50df4e1c1e5e6779cc1' XPreppy is ReportLab's templating system. It was developed in late 2000 and has Xbeen in continual production use since then. It is open source (BSD-license). X XThe key features are: X X- *small*. Preppy is a single Python module. If you want a templating system X 'in the box', it's easy to include it in your project X- *easy to learn*. It takes about one minute to scan all the features X- *just Python*. We have not invented another language, and if you want to do X something - includes, quoting, filters - you just use Python X- *compiled to bytecode*: a .prep file gets compiled to a Python function in X a .pyc file X- *easy to debug*: preppy generates proper Python exceptions, with the correct X line numbers for the .prep file. You can follow tracebacks from Python X script to Preppy template and back, through multiple includes X- *easy to type and read*. We've been using ``{{this}}`` syntax since well X before Django was thought of X- *8-bit safe*: it makes no assumption that you are generating markup and does X nothing unexpected with whitespace; you could use it to generate images or X binary files if you wanted to. X XWWW: http://preppy.readthedocs.org/en/latest/ 4325f4d4e911e50df4e1c1e5e6779cc1 echo x - py-preppy/distinfo sed 's/^X//' >py-preppy/distinfo << '9f6db178434f5e7bcbc0281ee5d38a28' XSHA256 (preppy-2.1.2.tar.gz) = 6a910c03add2bd2810ef38d2da8050154da4e8e79766e08de8407382f4507d34 XSIZE (preppy-2.1.2.tar.gz) = 41065 9f6db178434f5e7bcbc0281ee5d38a28 echo x - py-preppy/Makefile sed 's/^X//' >py-preppy/Makefile << 'b63e6e233e610eb10cf7e63c43e9d3e4' X# Created by: Kozlov Sergey X# $FreeBSD$ X XPORTNAME= preppy XPORTVERSION= 2.1.2 XCATEGORIES= print python XMASTER_SITES= CHEESESHOP XPKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} X XMAINTAINER= kozlov.sergey.404@gmail.com XCOMMENT= ReportLab's templating system X XLICENSE= BSD3CLAUSE X XUSE_PYTHON= 2.7-3.3 XUSE_PYDISTUTILS= yes XPYDISTUTILS_AUTOPLIST= yes X X.include b63e6e233e610eb10cf7e63c43e9d3e4 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 18 23:20:09 2014 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 ESMTPS id 96102C8D; Tue, 18 Feb 2014 23:20:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0AD271236; Tue, 18 Feb 2014 23: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 s1INK8gE039010; Tue, 18 Feb 2014 23:20:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1INK87Z039009; Tue, 18 Feb 2014 23:20:08 GMT (envelope-from edwin) Date: Tue, 18 Feb 2014 23:20:08 GMT Message-Id: <201402182320.s1INK87Z039009@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186881: New port: print/py-preppy ReportLab's templating system X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 23:20:09 -0000 Synopsis: New port: print/py-preppy ReportLab's templating system Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Tue Feb 18 23:20:08 UTC 2014 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186881 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 19 00:30:00 2014 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 ESMTPS id E3DFBBD3 for ; Wed, 19 Feb 2014 00:30:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AADF6181A for ; Wed, 19 Feb 2014 00: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 s1J0U0n2070528 for ; Wed, 19 Feb 2014 00:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1J0U0JC070525; Wed, 19 Feb 2014 00:30:00 GMT (envelope-from gnats) Resent-Date: Wed, 19 Feb 2014 00:30:00 GMT Resent-Message-Id: <201402190030.s1J0U0JC070525@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, Matthias Andree Received: from apollo.emma.line.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DABADA01; Wed, 19 Feb 2014 00:27:46 +0000 (UTC) Received: from mandree by apollo.emma.line.org with local (Exim 4.82 (FreeBSD)) (envelope-from ) id 1WFv0q-000FgP-W6; Wed, 19 Feb 2014 01:27:45 +0100 Message-Id: Date: Wed, 19 Feb 2014 01:27:44 +0100 From: Matthias Andree To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/186882: textproc/docbook: broken plist generation causes leftovers Cc: mat@freebsd.org, gabor@freebsd.org, portmgr@freebsd.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Matthias Andree List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Feb 2014 00:30:01 -0000 >Number: 186882 >Category: ports >Synopsis: textproc/docbook: broken plist generation causes leftovers >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: Wed Feb 19 00:30:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Matthias Andree >Release: FreeBSD 9.2-RELEASE-p3 amd64 >Organization: >Environment: System: FreeBSD apollo.emma.line.org 9.2-RELEASE-p3 FreeBSD 9.2-RELEASE-p3 #0: Sat Jan 11 03:25:02 UTC 2014 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: textproc/docbook: @unexec rmdir/@dirrm added too early to pkg-plist so that they execute before the PORTDOCS files have been removed, so that the empty port doc directories are left over after a install-deinstall cycle. This is because add-plist-docs target (which adds the files to the TMPPLIST) runs way after do-install (which adds the dirrm/rmdir to the TMPPLIST), so the ordering is wrong. Unfortunately, the bsd.port.mk framework does not offer late hooks for the staging sequences, and post-stage executes after stage-qa currently (which should be fixed) so that stage-qa would emit false warnings. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 19 00:30:08 2014 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 ESMTPS id E9BC3C04; Wed, 19 Feb 2014 00:30:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B3CE6181D; Wed, 19 Feb 2014 00: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 s1J0U896070666; Wed, 19 Feb 2014 00:30:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1J0U8Or070665; Wed, 19 Feb 2014 00:30:08 GMT (envelope-from edwin) Date: Wed, 19 Feb 2014 00:30:08 GMT Message-Id: <201402190030.s1J0U8Or070665@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gabor@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186882: textproc/docbook: broken plist generation causes leftovers X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Feb 2014 00:30:09 -0000 Synopsis: textproc/docbook: broken plist generation causes leftovers Responsible-Changed-From-To: freebsd-ports-bugs->gabor Responsible-Changed-By: edwin Responsible-Changed-When: Wed Feb 19 00:30:08 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186882 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 19 03:20:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A98D270F for ; Wed, 19 Feb 2014 03:20:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 83BB81001 for ; Wed, 19 Feb 2014 03: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 s1J3K0jM027783 for ; Wed, 19 Feb 2014 03:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1J3K0VE027782; Wed, 19 Feb 2014 03:20:00 GMT (envelope-from gnats) Resent-Date: Wed, 19 Feb 2014 03:20:00 GMT Resent-Message-Id: <201402190320.s1J3K0VE027782@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, Johannes Jost Meixner Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3358E6DB for ; Wed, 19 Feb 2014 03:19:41 +0000 (UTC) Received: from dd16522.kasserver.com (dd16522.kasserver.com [85.13.137.124]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E80EF1FFA for ; Wed, 19 Feb 2014 03:19:40 +0000 (UTC) Received: from mx12.chaot.net (62.65.220.168.cable.starman.ee [62.65.220.168]) by dd16522.kasserver.com (Postfix) with ESMTPSA id 5EE4C4563E7 for ; Wed, 19 Feb 2014 04:19:38 +0100 (CET) Received: from localhost (1003@localhost [local]); by mx12.chaot.net (OpenSMTPD) with ESMTPA id ea95d601; for ; Wed, 19 Feb 2014 05:19:36 +0200 (EET) Message-Id: <3194886334.enqueue@mx12.chaot.net> Date: Wed, 19 Feb 2014 05:19:36 +0200 (EET) From: Johannes Jost Meixner To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/186884: [MAINTAINER] ports-mgmt/porttools: fix package build on i386, update to 1.00.2014.02.18 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Feb 2014 03:20:00 -0000 >Number: 186884 >Category: ports >Synopsis: [MAINTAINER] ports-mgmt/porttools: fix package build on i386, update to 1.00.2014.02.18 >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 Feb 19 03:20:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Johannes Jost Meixner >Release: FreeBSD 11.0-CURRENT amd64 >Organization: Goldener Grund OÜ >Environment: System: FreeBSD mx12.chaot.net 11.0-CURRENT FreeBSD 11.0-CURRENT #0: Sun Feb 16 19:07:27 EET 2014 >Description: - Fix package build on i386 envs that were identified by pkg.absolight.net - Update to 1.00.2014.02.18 portlint: looks fine. port test: ok testport: ok redports: https://redports.org/buildarchive/20140218174549-92859/ Generated with FreeBSD Port Tools 1.00.2014.02.18 (mode: update, diff: SVN) >How-To-Repeat: >Fix: --- porttools-1.00.2014.02.18.patch begins here --- Index: Makefile =================================================================== --- Makefile (revision 344945) +++ Makefile (working copy) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= porttools -PORTVERSION= 1.00.2014.02.11 +PORTVERSION= 1.00.2014.02.18 CATEGORIES= ports-mgmt MAINTAINER= xmj@chaot.net @@ -17,12 +17,12 @@ USE_GITHUB= yes GH_ACCOUNT= xmj -GH_COMMIT= e84626d +GH_COMMIT= 1c85bdc GH_TAGNAME= ${GH_COMMIT} # Make the version information of porttools itself # available for inclusion in the PRs generated by it. -MAKE_ENV= DATADIR="${DATADIR}" DOCSDIR="${DOCSDIR}" PORTVERSION="${PORTVERSION}" +MAKE_ENV+= DATADIR="${DATADIR}" DOCSDIR="${DOCSDIR}" PORTVERSION="${PORTVERSION}" OPTIONS_DEFINE= DOCS NEWFILE OPTIONS_DEFAULT= NEWFILE @@ -37,4 +37,8 @@ INSTALL_TARGET= install install-docs .endif +do-build: + @${MAKE_ENV} ${MAKE_CMD} -C ${WRKSRC} pre-build + @${MAKE_ENV} ${MAKE_CMD} -C ${WRKSRC} all + .include Index: distinfo =================================================================== --- distinfo (revision 344945) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (porttools-1.00.2014.02.11.tar.gz) = 5d826241628fddf513330a2e5575f3f21af0ba43b7e0835ad5c143cb62ec59b4 -SIZE (porttools-1.00.2014.02.11.tar.gz) = 18628 +SHA256 (porttools-1.00.2014.02.18.tar.gz) = d0c6f2dcb5bac9631ecc0dddece89bc22c3c0c561193d34e0cad001f7f99612b +SIZE (porttools-1.00.2014.02.18.tar.gz) = 18637 --- porttools-1.00.2014.02.18.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 19 03:24:59 2014 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 ESMTPS id 2A5C5A57; Wed, 19 Feb 2014 03:24:59 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id F0C6410CB; Wed, 19 Feb 2014 03:24: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 s1J3Owmn030517; Wed, 19 Feb 2014 03:24:58 GMT (envelope-from koobs@freefall.freebsd.org) Received: (from koobs@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1J3OwVT030516; Wed, 19 Feb 2014 03:24:58 GMT (envelope-from koobs) Date: Wed, 19 Feb 2014 03:24:58 GMT Message-Id: <201402190324.s1J3OwVT030516@freefall.freebsd.org> To: koobs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, koobs@FreeBSD.org From: koobs@FreeBSD.org Subject: Re: ports/186884: [MAINTAINER] ports-mgmt/porttools: fix package build on i386, update to 1.00.2014.02.18 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Feb 2014 03:24:59 -0000 Synopsis: [MAINTAINER] ports-mgmt/porttools: fix package build on i386, update to 1.00.2014.02.18 Responsible-Changed-From-To: freebsd-ports-bugs->koobs Responsible-Changed-By: koobs Responsible-Changed-When: Wed Feb 19 03:24:58 UTC 2014 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=186884 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 19 04:30:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9FA42411 for ; Wed, 19 Feb 2014 04:30:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7868415D9 for ; Wed, 19 Feb 2014 04: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 s1J4U0QU049155 for ; Wed, 19 Feb 2014 04:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1J4U0ek049154; Wed, 19 Feb 2014 04:30:00 GMT (envelope-from gnats) Resent-Date: Wed, 19 Feb 2014 04:30:00 GMT Resent-Message-Id: <201402190430.s1J4U0ek049154@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, Matthew Rezny Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5B545AA2 for ; Wed, 19 Feb 2014 04:23:03 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2CEA41519 for ; Wed, 19 Feb 2014 04:23:03 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1J4N2sC044963 for ; Wed, 19 Feb 2014 04:23:02 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1J4N2c4044960; Wed, 19 Feb 2014 04:23:02 GMT (envelope-from nobody) Message-Id: <201402190423.s1J4N2c4044960@cgiserv.freebsd.org> Date: Wed, 19 Feb 2014 04:23:02 GMT From: Matthew Rezny To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186885: ftp/filezilla hasn't been updated in a year, contains vulnerabilities X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Feb 2014 04:30:00 -0000 >Number: 186885 >Category: ports >Synopsis: ftp/filezilla hasn't been updated in a year, contains vulnerabilities >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 Feb 19 04:30:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Matthew Rezny >Release: 10.0-STABLE >Organization: RezTek, s.r.o. >Environment: FreeBSD desktop.reztek 10.0-STABLE FreeBSD 10.0-STABLE #0 r261871: Mon Feb 17 08:33:23 CET 2014 root@desktop.reztek:/usr/obj/usr/src/sys/DESKTOP amd64 >Description: The FileZilla port has not been updated in a year. The version we have in ports contains vulnerabilities. Copied from the release notes: 3.7.3 (2013-08-07) Fixed vulnerabilities: Merge further fixes from PuTTY to address CVE-2013-4206, CVE-2013-4207, CVE-2013-4208 3.7.2 (2013-08-06) Fixed vulnerabilities: Apply a fix for a security vulnerability in PuTTY as used in FileZilla to handle SFTP. See CVE-2013-4852 for reference. Fortunately, this port uses no patches and the current version builds clean. Thus, updating should only be a matter of changing the version. I noticed the port has NO_STAGE set so maybe it would be good to stagify this port while it's getting updated. >How-To-Repeat: CVE-2013-4206, CVE-2013-4207, CVE-2013-4208, CVE-2013-4852 >Fix: Index: Makefile =================================================================== --- Makefile (revision 344637) +++ Makefile (working copy) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= filezilla -PORTVERSION= 3.6.0.2 -PORTREVISION= 1 +PORTVERSION= 3.7.4.1 CATEGORIES= ftp MASTER_SITES= SF/${PORTNAME}/FileZilla_Client/${PORTVERSION} DISTNAME= FileZilla_${PORTVERSION}_src Index: distinfo =================================================================== --- distinfo (revision 344637) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (FileZilla_3.6.0.2_src.tar.bz2) = 536a5e387f371272b5bcbf51b08a6df07508097b79f496432141c4207098c606 -SIZE (FileZilla_3.6.0.2_src.tar.bz2) = 3540542 +SHA256 (FileZilla_3.7.4.1_src.tar.bz2) = 8be46f472c12d412c58b5a0b1be751c64bc5e7fceaa6b9170f8edbc7dbfa64a9 +SIZE (FileZilla_3.7.4.1_src.tar.bz2) = 3709078 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 19 04:30:28 2014 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 ESMTPS id 96918449; Wed, 19 Feb 2014 04:30:28 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 67CBA1633; Wed, 19 Feb 2014 04:30: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 s1J4USTj051780; Wed, 19 Feb 2014 04:30:28 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1J4US8v051779; Wed, 19 Feb 2014 04:30:28 GMT (envelope-from edwin) Date: Wed, 19 Feb 2014 04:30:28 GMT Message-Id: <201402190430.s1J4US8v051779@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jsa@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186885: ftp/filezilla hasn't been updated in a year, contains vulnerabilities X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Feb 2014 04:30:28 -0000 Synopsis: ftp/filezilla hasn't been updated in a year, contains vulnerabilities Responsible-Changed-From-To: freebsd-ports-bugs->jsa Responsible-Changed-By: edwin Responsible-Changed-When: Wed Feb 19 04:30:28 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186885 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 19 08:04:58 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9714F778; Wed, 19 Feb 2014 08:04:58 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6BEA51739; Wed, 19 Feb 2014 08: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 s1J84wWO029089; Wed, 19 Feb 2014 08:04:58 GMT (envelope-from makc@freefall.freebsd.org) Received: (from makc@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1J84wnc029088; Wed, 19 Feb 2014 08:04:58 GMT (envelope-from makc) Date: Wed, 19 Feb 2014 08:04:58 GMT Message-Id: <201402190804.s1J84wnc029088@freefall.freebsd.org> To: makc@FreeBSD.org, makc@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: makc@FreeBSD.org Subject: Re: ports/186019: print/foo2zjs: fix dependency on libcups X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Feb 2014 08:04:58 -0000 Synopsis: print/foo2zjs: fix dependency on libcups State-Changed-From-To: open->closed State-Changed-By: makc State-Changed-When: Wed Feb 19 08:04:58 UTC 2014 State-Changed-Why: Fixed. http://www.freebsd.org/cgi/query-pr.cgi?pr=186019 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 19 08:56:45 2014 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 ESMTPS id A5E6EFDE; Wed, 19 Feb 2014 08:56:45 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 782C11B3C; Wed, 19 Feb 2014 08:56: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 s1J8ujDi047799; Wed, 19 Feb 2014 08:56:45 GMT (envelope-from amdmi3@freefall.freebsd.org) Received: (from amdmi3@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1J8ujlT047798; Wed, 19 Feb 2014 08:56:45 GMT (envelope-from amdmi3) Date: Wed, 19 Feb 2014 08:56:45 GMT Message-Id: <201402190856.s1J8ujlT047798@freefall.freebsd.org> To: ianthetechie@gmail.com, amdmi3@amdmi3.ru, amdmi3@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: amdmi3@FreeBSD.org Subject: Re: ports/185955: [PATCH] games/armagetron: fix build on 10.x X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Feb 2014 08:56:45 -0000 Synopsis: [PATCH] games/armagetron: fix build on 10.x State-Changed-From-To: feedback->closed State-Changed-By: amdmi3 State-Changed-When: Wed Feb 19 08:56:44 UTC 2014 State-Changed-Why: The port was updated, the PR is obsolete http://www.freebsd.org/cgi/query-pr.cgi?pr=185955 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 19 09:20:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0E3F2529 for ; Wed, 19 Feb 2014 09:20:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C19851D95 for ; Wed, 19 Feb 2014 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 s1J9K0u3054612 for ; Wed, 19 Feb 2014 09:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1J9K0R1054611; Wed, 19 Feb 2014 09:20:00 GMT (envelope-from gnats) Resent-Date: Wed, 19 Feb 2014 09:20:00 GMT Resent-Message-Id: <201402190920.s1J9K0R1054611@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 ESMTPS id 88F3EDE7; Wed, 19 Feb 2014 09:11:39 +0000 (UTC) Received: from smtpout3.timeweb.ru (smtpout3.timeweb.ru [92.53.117.25]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4249A1D17; Wed, 19 Feb 2014 09:11:39 +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 1WG2uR-0002M6-Uw; Wed, 19 Feb 2014 12:53:40 +0400 Received: from hades.panopticon (hades.panopticon [192.168.0.32]) by hive.panopticon (Postfix) with ESMTP id 893CC231; Wed, 19 Feb 2014 12:53:39 +0400 (MSK) Received: by hades.panopticon (Postfix, from userid 1000) id 5DD5FBFCC; Wed, 19 Feb 2014 12:53:39 +0400 (MSK) Message-Id: <20140219085339.5DD5FBFCC@hades.panopticon> Date: Wed, 19 Feb 2014 12:53:39 +0400 (MSK) From: Dmitry Marakasov To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/186888: [PATCH] games/armagetron: incomplete plist (orphans) Cc: ianthetechie@gmail.com, marino@FreeBSD.org, Peter Kosyh X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Feb 2014 09:20:01 -0000 >Number: 186888 >Category: ports >Synopsis: [PATCH] games/armagetron: incomplete plist (orphans) >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 Feb 19 09:20:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Dmitry Marakasov >Release: FreeBSD 10.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD hades.panopticon 10.0-RELEASE FreeBSD 10.0-RELEASE #0 r260807: Fri Jan 17 13:14:28 MSK >Description: >From poudriere: --- =========================================================================== ====>> Checking shared library dependencies =================================================== ====>> Checking for orphaned files and directories in stage directory (missing from plist) ====>> Files or directories orphaned: etc/games/armagetronad/settings_authentication.cfg etc/games/armagetronad/subcultures.srv etc/games/armagetronad/examples/teamsumo.cfg share/games/armagetronad/language/polish.txt share/games/armagetronad/language/polish_transliterated.txt --- These are missing from the plist after the last update. Port maintainer (ianthetechie@gmail.com) is cc'd. Generated with FreeBSD Port Tools 1.00.2014.02.11 (mode: change, diff: ports) >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 19 09:20:08 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DB32655E; Wed, 19 Feb 2014 09:20:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6577F1D98; Wed, 19 Feb 2014 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 s1J9K8ci054743; Wed, 19 Feb 2014 09:20:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1J9K849054742; Wed, 19 Feb 2014 09:20:08 GMT (envelope-from edwin) Date: Wed, 19 Feb 2014 09:20:08 GMT Message-Id: <201402190920.s1J9K849054742@freefall.freebsd.org> To: amdmi3@amdmi3.ru, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186888: [PATCH] games/armagetron: incomplete plist (orphans) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Feb 2014 09:20:09 -0000 Synopsis: [PATCH] games/armagetron: incomplete plist (orphans) State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Wed Feb 19 09:20:08 UTC 2014 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186888 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 19 09:30:01 2014 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 ESMTPS id 883009AE for ; Wed, 19 Feb 2014 09:30:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 756711F57 for ; Wed, 19 Feb 2014 09: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 s1J9U1aZ057609 for ; Wed, 19 Feb 2014 09:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1J9U1gx057608; Wed, 19 Feb 2014 09:30:01 GMT (envelope-from gnats) Date: Wed, 19 Feb 2014 09:30:01 GMT Message-Id: <201402190930.s1J9U1gx057608@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/186888: [PATCH] games/armagetron: incomplete plist (orphans) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 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, 19 Feb 2014 09:30:01 -0000 The following reply was made to PR ports/186888; it has been noted by GNATS. From: Edwin Groothuis To: ianthetechie@gmail.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/186888: [PATCH] games/armagetron: incomplete plist (orphans) Date: Wed, 19 Feb 2014 09:20:07 UT Maintainer of games/armagetron, Please note that PR ports/186888 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/186888 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 19 11:00:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B28966BA for ; Wed, 19 Feb 2014 11:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8D7BA17B2 for ; Wed, 19 Feb 2014 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 s1JB00Ma084296 for ; Wed, 19 Feb 2014 11:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1JB00bS084295; Wed, 19 Feb 2014 11:00:00 GMT (envelope-from gnats) Resent-Date: Wed, 19 Feb 2014 11:00:00 GMT Resent-Message-Id: <201402191100.s1JB00bS084295@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, Matthew Seaman Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C10D72E4 for ; Wed, 19 Feb 2014 10:53:33 +0000 (UTC) Received: from stingray.adestra.com (stingray.adestra.com [46.236.37.190]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 64CD31776 for ; Wed, 19 Feb 2014 10:53:33 +0000 (UTC) Received: from stingray.adestra.com (localhost [127.0.0.1]) by stingray.adestra.com (8.14.7/8.14.7) with ESMTP id s1JAR6F0072570 for ; Wed, 19 Feb 2014 10:27:06 GMT (envelope-from matthew@stingray.adestra.com) Received: (from matthew@localhost) by stingray.adestra.com (8.14.7/8.14.7/Submit) id s1JAR1u2072504; Wed, 19 Feb 2014 10:27:01 GMT (envelope-from matthew) Message-Id: <201402191027.s1JAR1u2072504@stingray.adestra.com> Date: Wed, 19 Feb 2014 10:27:01 GMT From: Matthew Seaman To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/186889: ftp/proftpd -- fix for inoperative scp mode X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Matthew Seaman List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Feb 2014 11:00:00 -0000 >Number: 186889 >Category: ports >Synopsis: ftp/proftpd -- fix for inoperative scp mode >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 Feb 19 11:00:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Matthew Seaman >Release: FreeBSD 9.2-RELEASE-p3 amd64 >Organization: Adestra Ltd >Environment: System: FreeBSD stingray.adestra.com 9.2-RELEASE-p3 FreeBSD 9.2-RELEASE-p3 #0: Sat Jan 11 03:25:02 UTC 2014 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: We had some customer complaints that any attempt to download a file via SCP, while apparently successful, resulted in a zero length file locally. This patch fixes the problem. It is derived from the proftpd bugzilla: http://bugs.proftpd.org/show_bug.cgi?id=3954 >How-To-Repeat: >Fix: --- proftpd.diff begins here --- Index: files/patch-contrib_mod__sftp_scp.c =================================================================== --- files/patch-contrib_mod__sftp_scp.c (revision 0) +++ files/patch-contrib_mod__sftp_scp.c (working copy) @@ -0,0 +1,20 @@ + +$FreeBSD$ + +--- contrib/mod_sftp/scp.c.orig ++++ contrib/mod_sftp/scp.c +@@ -2077,10 +2077,11 @@ + * want to return 1 here, since it will be us, not the client, which needs + * to close the connection. + */ +- if (paths[scp_session->path_idx-1]->wrote_errors == TRUE) { +- return 1; ++ if (res == 1) { ++ if (paths[scp_session->path_idx-1]->wrote_errors == TRUE) { ++ return 1; ++ } + } +- + return 0; + + } else if (scp_opts & SFTP_SCP_OPT_ISDST) { Property changes on: files/patch-contrib_mod__sftp_scp.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 --- proftpd.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 19 11:00:09 2014 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 ESMTPS id 877366F4; Wed, 19 Feb 2014 11:00:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5E9C317C1; Wed, 19 Feb 2014 11: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 s1JB09s6084441; Wed, 19 Feb 2014 11:00:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1JB09Mx084440; Wed, 19 Feb 2014 11:00:09 GMT (envelope-from edwin) Date: Wed, 19 Feb 2014 11:00:09 GMT Message-Id: <201402191100.s1JB09Mx084440@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, mm@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186889: ftp/proftpd -- fix for inoperative scp mode X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Feb 2014 11:00:09 -0000 Synopsis: ftp/proftpd -- fix for inoperative scp mode Responsible-Changed-From-To: freebsd-ports-bugs->mm Responsible-Changed-By: edwin Responsible-Changed-When: Wed Feb 19 11:00:09 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186889 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 19 11:20:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C54E4C73 for ; Wed, 19 Feb 2014 11:20:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9EEA51997 for ; Wed, 19 Feb 2014 11: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 s1JBK0Hf091268 for ; Wed, 19 Feb 2014 11:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1JBK0CS091267; Wed, 19 Feb 2014 11:20:00 GMT (envelope-from gnats) Resent-Date: Wed, 19 Feb 2014 11:20:00 GMT Resent-Message-Id: <201402191120.s1JBK0CS091267@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 Mann Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C34ABBC2 for ; Wed, 19 Feb 2014 11:17:33 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AEEBB1972 for ; Wed, 19 Feb 2014 11:17:33 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1JBHXoi061065 for ; Wed, 19 Feb 2014 11:17:33 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1JBHXTj061042; Wed, 19 Feb 2014 11:17:33 GMT (envelope-from nobody) Message-Id: <201402191117.s1JBHXTj061042@cgiserv.freebsd.org> Date: Wed, 19 Feb 2014 11:17:33 GMT From: Jason Mann To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186890: Building BIND without XML option breaks named-checkconf X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Feb 2014 11:20:00 -0000 >Number: 186890 >Category: ports >Synopsis: Building BIND without XML option breaks named-checkconf >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 Feb 19 11:20:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Jason Mann >Release: FreeBSD 10.0-RELEASE >Organization: >Environment: FreeBSD ns2.b0rken.org 10.0-RELEASE FreeBSD 10.0-RELEASE #0 r260789: Thu Jan 16 22:34:59 UTC 2014 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: I needed to install a minimal dns/bind99 port inside a jail. I deselected all port options except for IPV6 and THREADS. The port built and installed successfully. Upon attempting to start named, the following error occurred: # service named start /var/run/named Shared object "libxml2.so.5" not found, required by "named-checkconf" /usr/local/etc/rc.d/named: ERROR: named-checkconf for $named_conf failed It appears that the rc script runs named-checkconf to perform a configuration syntax check before starting named, and named-checkconf binary depends on libXML. If libXML isn't installed, named-checkconf fails to run and the rc script does not start named. The description text for the XML port option only says that it is required for XML statistics output, which suggests it is safe to disable if you don't need these. >How-To-Repeat: - Install the dns/bind99 port with XML option disabled - Attempt to start named using the 'service' command or the rc script, or execute /usr/local/sbin/named-checkconf directly. >Fix: Make libXML a non-optional dependancy >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 19 12:40:00 2014 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 ESMTPS id C123C507 for ; Wed, 19 Feb 2014 12:40:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9BB181234 for ; Wed, 19 Feb 2014 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 s1JCe07x018085 for ; Wed, 19 Feb 2014 12:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1JCe0Pj018084; Wed, 19 Feb 2014 12:40:00 GMT (envelope-from gnats) Resent-Date: Wed, 19 Feb 2014 12:40:00 GMT Resent-Message-Id: <201402191240.s1JCe0Pj018084@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 [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 23BA527C for ; Wed, 19 Feb 2014 12:35:52 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E973B11E2 for ; Wed, 19 Feb 2014 12:35:51 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1JCZpS7002591 for ; Wed, 19 Feb 2014 12:35:51 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1JCZpDk002577; Wed, 19 Feb 2014 12:35:51 GMT (envelope-from nobody) Message-Id: <201402191235.s1JCZpDk002577@cgiserv.freebsd.org> Date: Wed, 19 Feb 2014 12:35:51 GMT From: Kozlov Sergey To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186893: [patch] print/pdftk fix minor bugs in port X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Feb 2014 12:40:00 -0000 >Number: 186893 >Category: ports >Synopsis: [patch] print/pdftk fix minor bugs in port >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 Feb 19 12:40:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Kozlov Sergey >Release: 9.2-RELEASE-p3 >Organization: ARC >Environment: FreeBSD sonya 9.2-RELEASE-p3 FreeBSD 9.2-RELEASE-p3 #1: Fri Jan 17 19:43:47 EET 2014 root@sonya:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Fix minor bugs in print/pdftk Changes: - Previously USE_GCC didn't add gcc as run dependency (the code was there, but didn't work). GCC is required during for many libraries. Some commit between Dec 5 and Jan 7 solved the problem, so there is no need for LIB_DEPENDS workaround anymore. - If GCC wasn't built with java support the port couldn't build and BUILD_DEPENDS only made gcc recompile without actually solving the problem. This patch introduces pre-configure target to check for gcc java items and give a meaningful explanation if none found. - Changed "-Wl,-rpath" to "LDFLAGS" in REINPLACE as suggested by Gerald Pfeifer here (http://docs.freebsd.org/cgi/getmsg.cgi?fetch=606002+0+archive/2013/svn-ports-head/20131208.svn-ports-head). I've tested it, it works. >How-To-Repeat: >Fix: Patch attached with submission follows: Index: Makefile =================================================================== --- Makefile (revision 341857) +++ Makefile (working copy) @@ -13,14 +13,6 @@ LICENSE= GPLv2 -LIB_DEPENDS= libgcj.so:${PORTSDIR}/lang/${_GCC_PORT} \ - libstdc++.so:${PORTSDIR}/lang/${_GCC_PORT} \ - libgcc_s.so:${PORTSDIR}/lang/${_GCC_PORT} - -BUILD_DEPENDS= gcj${CSUFF}:${PORTSDIR}/lang/${_GCC_PORT} \ - gcjh${CSUFF}:${PORTSDIR}/lang/${_GCC_PORT} \ - cpp${CSUFF}:${PORTSDIR}/lang/${_GCC_PORT} - USE_ZIP= yes # Get GCC version suffix without the dot in USE_GCC @@ -42,11 +34,20 @@ PLIST_FILES= bin/${PORTNAME} man/man1/${PORTNAME}.1.gz +pre-configure: + @if [ ! -e ${LOCALBASE}/bin/gcj${CSUFF} ]; then \ + ${ECHO_MSG} ""; \ + ${ECHO_MSG} "Can not find gcj${CSUFF}"; \ + ${ECHO_MSG} "Please rebuild ${_GCC_PORT} with java support"; \ + ${ECHO_MSG} ""; \ + exit 1; \ + fi + post-patch: @${REINPLACE_CMD} -e "s|TOOLPATH=|TOOLPATH=${LOCALBASE}/bin/|g" ${WRKSRC}/${MAKEFILE} @${REINPLACE_CMD} -e "s|VERSUFF=|VERSUFF=${CSUFF}|g" ${WRKSRC}/${MAKEFILE} - @${REINPLACE_CMD} -e "s|GCJFLAGS=|GCJFLAGS= -L${LOCALBASE}/lib -Wl,-rpath=${LOCALBASE}/lib/gcc${CSUFF} -w|g" ${WRKSRC}/${MAKEFILE} - @${REINPLACE_CMD} -e "s|LDLIBS= -lgcj|LDLIBS= -lgcj ${PTHREAD_CFLAGS} ${PTHREAD_LIBS} ${ICONV_LIB} -lz -L${LOCALBASE}/lib -Wl,-rpath=${LOCALBASE}/lib/gcc${CSUFF} -w|g" \ + @${REINPLACE_CMD} -e "s|GCJFLAGS=|GCJFLAGS= -L${LOCALBASE}/lib ${LDFLAGS} -w|g" ${WRKSRC}/${MAKEFILE} + @${REINPLACE_CMD} -e "s|LDLIBS= -lgcj|LDLIBS= -lgcj ${PTHREAD_CFLAGS} ${PTHREAD_LIBS} ${ICONV_LIB} -lz -L${LOCALBASE}/lib ${LDFLAGS} -w|g" \ ${WRKSRC}/${MAKEFILE} do-install: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 19 12:40:09 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 28F6453E; Wed, 19 Feb 2014 12:40:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CFC05123A; Wed, 19 Feb 2014 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 s1JCe8bp018230; Wed, 19 Feb 2014 12:40:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1JCe8NV018229; Wed, 19 Feb 2014 12:40:08 GMT (envelope-from edwin) Date: Wed, 19 Feb 2014 12:40:08 GMT Message-Id: <201402191240.s1JCe8NV018229@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, mat@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186893: [patch] print/pdftk fix minor bugs in port X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Feb 2014 12:40:09 -0000 Synopsis: [patch] print/pdftk fix minor bugs in port Responsible-Changed-From-To: freebsd-ports-bugs->mat Responsible-Changed-By: edwin Responsible-Changed-When: Wed Feb 19 12:40:08 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186893 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 19 15:00:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E13EA81F for ; Wed, 19 Feb 2014 15:00:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A2DFB1F70 for ; Wed, 19 Feb 2014 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 s1JF01sU059961 for ; Wed, 19 Feb 2014 15:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1JF01ms059960; Wed, 19 Feb 2014 15:00:01 GMT (envelope-from gnats) Resent-Date: Wed, 19 Feb 2014 15:00:01 GMT Resent-Message-Id: <201402191500.s1JF01ms059960@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 Osorio Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9F30549A for ; Wed, 19 Feb 2014 14:56:13 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 898D91E18 for ; Wed, 19 Feb 2014 14:56:13 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1JEuDgc037329 for ; Wed, 19 Feb 2014 14:56:13 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1JEuD9U037328; Wed, 19 Feb 2014 14:56:13 GMT (envelope-from nobody) Message-Id: <201402191456.s1JEuD9U037328@cgiserv.freebsd.org> Date: Wed, 19 Feb 2014 14:56:13 GMT From: Rodrigo Osorio To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186895: shells/pdksh install breaks /etc/shells X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Feb 2014 15:00:01 -0000 >Number: 186895 >Category: ports >Synopsis: shells/pdksh install breaks /etc/shells >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 Feb 19 15:00:01 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Rodrigo Osorio >Release: >Organization: >Environment: FreeBSD q 10.0-BETA3 FreeBSD 10.0-BETA3 #0 r257580: Sun Nov 3 21:15:32 UTC 2013 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC i386 >Description: Install script add invalid lines in the /etc/shells file % cat /etc/shells /bin/sh /bin/csh /bin/tcsh /usr/local/bin/ksh /usr/local/man/man1/ksh.1.gz Reported by : Scott Bennett >How-To-Repeat: >Fix: Patch attached Patch attached with submission follows: Index: pkg-plist =================================================================== --- pkg-plist (revision 345077) +++ pkg-plist (working copy) @@ -1,4 +1,4 @@ +man/man1/ksh.1.gz bin/ksh -man/man1/ksh.1.gz @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 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 19 15:00:17 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2EAC1852; Wed, 19 Feb 2014 15:00:17 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id F2B551F73; Wed, 19 Feb 2014 15:00: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 s1JF0Gbn060044; Wed, 19 Feb 2014 15:00:16 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1JF0GDC060043; Wed, 19 Feb 2014 15:00:16 GMT (envelope-from edwin) Date: Wed, 19 Feb 2014 15:00:16 GMT Message-Id: <201402191500.s1JF0GDC060043@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rodrigo@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186895: shells/pdksh install breaks /etc/shells X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Feb 2014 15:00:17 -0000 Synopsis: shells/pdksh install breaks /etc/shells Responsible-Changed-From-To: freebsd-ports-bugs->rodrigo Responsible-Changed-By: edwin Responsible-Changed-When: Wed Feb 19 15:00:16 UTC 2014 Responsible-Changed-Why: Submitter is maintainer and has GNATS access (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186895 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 19 15:10:00 2014 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 ESMTPS id C6BACF66 for ; Wed, 19 Feb 2014 15:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8718D10A5 for ; Wed, 19 Feb 2014 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 s1JFA0Bl063180 for ; Wed, 19 Feb 2014 15:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1JFA0wn063179; Wed, 19 Feb 2014 15:10:00 GMT (envelope-from gnats) Resent-Date: Wed, 19 Feb 2014 15:10:00 GMT Resent-Message-Id: <201402191510.s1JFA0wn063179@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, Martijn Lina Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7407BD62 for ; Wed, 19 Feb 2014 15:08:08 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5DDD11088 for ; Wed, 19 Feb 2014 15:08:08 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1JF87Z8034847 for ; Wed, 19 Feb 2014 15:08:07 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1JF87an034846; Wed, 19 Feb 2014 15:08:07 GMT (envelope-from nobody) Message-Id: <201402191508.s1JF87an034846@cgiserv.freebsd.org> Date: Wed, 19 Feb 2014 15:08:07 GMT From: Martijn Lina To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186896: ftp/lftp configure fails when SSL/TLS support via GnuTLS is selected X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Feb 2014 15:10:00 -0000 >Number: 186896 >Category: ports >Synopsis: ftp/lftp configure fails when SSL/TLS support via GnuTLS is selected >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 Feb 19 15:10:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Martijn Lina >Release: 9.2-RELEASE >Organization: Hostage >Environment: FreeBSD ctrl4 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255898: Thu Sep 26 22:50:31 UTC 2013 root@bake.isc.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: the port ftp/lftp fails to configure when SSL/TLS support via GnuTLS is selected. >How-To-Repeat: build ftp/lftp with SSL/TLS support via GnuTLS set >Fix: The fix is to add this to the Makefile: GNUTLS_USES+= pkgconfig >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 19 15:10:08 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B805AF9D; Wed, 19 Feb 2014 15:10:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8AC3110AB; Wed, 19 Feb 2014 15: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 s1JFA8PU063316; Wed, 19 Feb 2014 15:10:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1JFA82f063315; Wed, 19 Feb 2014 15:10:08 GMT (envelope-from edwin) Date: Wed, 19 Feb 2014 15:10:08 GMT Message-Id: <201402191510.s1JFA82f063315@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, martymac@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186896: ftp/lftp configure fails when SSL/TLS support via GnuTLS is selected X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Feb 2014 15:10:08 -0000 Synopsis: ftp/lftp configure fails when SSL/TLS support via GnuTLS is selected Responsible-Changed-From-To: freebsd-ports-bugs->martymac Responsible-Changed-By: edwin Responsible-Changed-When: Wed Feb 19 15:10:08 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186896 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 19 17:00:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D214B206 for ; Wed, 19 Feb 2014 17:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AD6781BD7 for ; Wed, 19 Feb 2014 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 s1JH00qe020322 for ; Wed, 19 Feb 2014 17:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1JH00gq020321; Wed, 19 Feb 2014 17:00:00 GMT (envelope-from gnats) Resent-Date: Wed, 19 Feb 2014 17:00:00 GMT Resent-Message-Id: <201402191700.s1JH00gq020321@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, Jose jachuf Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 21AC7C93 for ; Wed, 19 Feb 2014 16:50:44 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0D69F1AEB for ; Wed, 19 Feb 2014 16:50:44 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1JGoh66053670 for ; Wed, 19 Feb 2014 16:50:43 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1JGohWx053669; Wed, 19 Feb 2014 16:50:43 GMT (envelope-from nobody) Message-Id: <201402191650.s1JGohWx053669@cgiserv.freebsd.org> Date: Wed, 19 Feb 2014 16:50:43 GMT From: Jose jachuf To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186897: databases/py-firebirdsql: update to 0.8.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Feb 2014 17:00:01 -0000 >Number: 186897 >Category: ports >Synopsis: databases/py-firebirdsql: update to 0.8.6 >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 Feb 19 17:00:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Jose jachuf >Release: 9.2-RELEASE >Organization: - >Environment: FreeBSD hp530.jjachuf.com 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255898: Fri Sep 27 03:52:52 UTC 2013 root@bake.isc.freebsd.org:/usr/obj/usr/src/sys/GENERIC i386 >Description: simple port update >How-To-Repeat: - >Fix: - Patch attached with submission follows: diff -ruN py-firebirdsql-old/Makefile py-firebirdsql/Makefile --- py-firebirdsql-old/Makefile 2014-02-19 13:46:07.000000000 -0300 +++ py-firebirdsql/Makefile 2014-02-19 13:47:42.000000000 -0300 @@ -2,7 +2,7 @@ # $FreeBSD: head/databases/py-firebirdsql/Makefile 335941 2013-12-08 21:07:33Z wg $ PORTNAME= firebirdsql -PORTVERSION= 0.8.1 +PORTVERSION= 0.8.6 CATEGORIES= databases python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff -ruN py-firebirdsql-old/distinfo py-firebirdsql/distinfo --- py-firebirdsql-old/distinfo 2014-02-19 13:46:07.000000000 -0300 +++ py-firebirdsql/distinfo 2014-02-19 13:47:42.000000000 -0300 @@ -1,2 +1,2 @@ -SHA256 (firebirdsql-0.8.1.tar.gz) = 33b35b65ee111d674e77722cf69b7f5d6b3d187f7bb00fd6ea82a16df716c737 -SIZE (firebirdsql-0.8.1.tar.gz) = 37320 +SHA256 (firebirdsql-0.8.6.tar.gz) = b8177625797a111faac0d6771f2c5267757504490bb7739614e9d3facf2f3a47 +SIZE (firebirdsql-0.8.6.tar.gz) = 43148 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 19 17:00:08 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EA785238; Wed, 19 Feb 2014 17:00:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BDF6A1BDA; Wed, 19 Feb 2014 17: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 s1JH08wJ020457; Wed, 19 Feb 2014 17:00:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1JH08qQ020456; Wed, 19 Feb 2014 17:00:08 GMT (envelope-from edwin) Date: Wed, 19 Feb 2014 17:00:08 GMT Message-Id: <201402191700.s1JH08qQ020456@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186897: databases/py-firebirdsql: update to 0.8.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Feb 2014 17:00:09 -0000 Synopsis: databases/py-firebirdsql: update to 0.8.6 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Wed Feb 19 17:00:08 UTC 2014 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186897 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 19 17:10:02 2014 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 ESMTPS id 3C7C9995 for ; Wed, 19 Feb 2014 17:10:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1761D1CF2 for ; Wed, 19 Feb 2014 17: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 s1JHA1nw023911 for ; Wed, 19 Feb 2014 17:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1JHA1rs023910; Wed, 19 Feb 2014 17:10:01 GMT (envelope-from gnats) Resent-Date: Wed, 19 Feb 2014 17:10:01 GMT Resent-Message-Id: <201402191710.s1JHA1rs023910@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 Bruno Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 697AD4B7 for ; Wed, 19 Feb 2014 17:02:11 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5659A1C67 for ; Wed, 19 Feb 2014 17:02:11 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1JH2B36095614 for ; Wed, 19 Feb 2014 17:02:11 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1JH2Bs1095613; Wed, 19 Feb 2014 17:02:11 GMT (envelope-from nobody) Message-Id: <201402191702.s1JH2Bs1095613@cgiserv.freebsd.org> Date: Wed, 19 Feb 2014 17:02:11 GMT From: Sean Bruno To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186899: devel/apr1 fails to install due to deprecated databases/db42 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Feb 2014 17:10:02 -0000 >Number: 186899 >Category: ports >Synopsis: devel/apr1 fails to install due to deprecated databases/db42 >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 Feb 19 17:10:01 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Sean Bruno >Release: 11-Current >Organization: FreeBSD Project >Environment: FreeBSD ujvl 11.0-CURRENT FreeBSD 11.0-CURRENT #2 r261419: Sun Feb 2 22:29:24 EST 2014 sbruno@ujvl:/usr/obj/usr/src/sys/BLOG amd64 >Description: devel/apr1 declares a minimum required BDB version of 42+ This matches on db42 which is deprecated and not on a higher version. Simply installed db48 "works" here on head for me and allows www/apache22 -> devel/apr1 to install again. >How-To-Repeat: attempt to install devel/apr1 with default options. ===>>> Port directory: /usr/ports/devel/apr1 ===>>> Gathering distinfo list for installed ports ===>>> Launching 'make checksum' for devel/apr1 in background ===>>> Gathering dependency list for devel/apr1 from ports ===>>> Launching child to install databases/db42 ===>>> devel/apr1 >> databases/db42 (1/1) ===>>> Port directory: /usr/ports/databases/db42 ===>>> This port is marked DEPRECATED ===>>> Please use databases/db5 or db6 for new installs. ===>>> If you are sure you can build it, remove the DEPRECATED line in the Makefile and try again. ===>>> Update for databases/db42 failed ===>>> Aborting update ===>>> Killing background jobs Terminated ===>>> Exiting >Fix: preinstall databases/db48 or change the following line in the port Makefile: --- Makefile 2014-02-19 17:01:37.000000000 +0000 +++ /usr/ports/devel/apr1/Makefile 2014-02-10 17:22:40.000000000 +0000 @@ -81,7 +81,7 @@ .if ${PORT_OPTIONS:MBDB} APU_EXTRAS= yes PLIST_SUB+= BDB="" -USE_BDB= 48+ +USE_BDB= 42+ APU_CONF_ARGS+= --with-berkeley-db=${BDB_INCLUDE_DIR}:${BDB_LIB_DIR} .else PLIST_SUB+= BDB="@comment " >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 19 17:10:15 2014 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 ESMTPS id 31035A0C; Wed, 19 Feb 2014 17:10:15 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 04E9A1D4C; Wed, 19 Feb 2014 17: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 s1JHAEW4023991; Wed, 19 Feb 2014 17:10:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1JHAEDP023990; Wed, 19 Feb 2014 17:10:14 GMT (envelope-from edwin) Date: Wed, 19 Feb 2014 17:10:14 GMT Message-Id: <201402191710.s1JHAEDP023990@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, swills@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186898: I have updated audio/libmikmod to version 3.3.5 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Feb 2014 17:10:15 -0000 Synopsis: I have updated audio/libmikmod to version 3.3.5 Responsible-Changed-From-To: freebsd-ports-bugs->swills Responsible-Changed-By: edwin Responsible-Changed-When: Wed Feb 19 17:10:14 UTC 2014 Responsible-Changed-Why: swills@ wants this submitter's PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186898 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 19 17:10:02 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E8680992 for ; Wed, 19 Feb 2014 17:10:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C2C411CF0 for ; Wed, 19 Feb 2014 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 s1JHA1xU023900 for ; Wed, 19 Feb 2014 17:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1JHA13d023899; Wed, 19 Feb 2014 17:10:01 GMT (envelope-from gnats) Resent-Date: Wed, 19 Feb 2014 17:10:01 GMT Resent-Message-Id: <201402191710.s1JHA13d023899@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, Douglas Carmichael Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7ABC04D7 for ; Wed, 19 Feb 2014 17:03:13 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4A7BB1C7E for ; Wed, 19 Feb 2014 17:03:13 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1JH3CJ1095969 for ; Wed, 19 Feb 2014 17:03:12 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1JH3CZf095968; Wed, 19 Feb 2014 17:03:12 GMT (envelope-from nobody) Message-Id: <201402191703.s1JH3CZf095968@cgiserv.freebsd.org> Date: Wed, 19 Feb 2014 17:03:12 GMT From: Douglas Carmichael To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186898: I have updated audio/libmikmod to version 3.3.5 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Feb 2014 17:10:02 -0000 >Number: 186898 >Category: ports >Synopsis: I have updated audio/libmikmod to version 3.3.5 >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 Feb 19 17:10:01 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Douglas Carmichael >Release: 10.0-RELEASE >Organization: n/a >Environment: FreeBSD dc-freebsd 10.0-RELEASE FreeBSD 10.0-RELEASE #0: Sun Jan 19 02:48:21 CST 2014 root@dc-freebsd:/usr/src/sys/amd64/compile/VMWARE10-64 amd64 >Description: I have updated audio/libmikmod to version 3.3.5. A patch is attached. >How-To-Repeat: n/a >Fix: n/a Patch attached with submission follows: diff -c libmikmod.orig/Makefile libmikmod/Makefile *** libmikmod.orig/Makefile Wed Feb 19 10:06:25 2014 --- libmikmod/Makefile Wed Feb 19 10:08:12 2014 *************** *** 2,11 **** # $FreeBSD: head/audio/libmikmod/Makefile 342894 2014-02-05 23:16:38Z bapt $ PORTNAME= libmikmod ! PORTVERSION= 3.1.12 PORTREVISION= 2 CATEGORIES= audio ! MASTER_SITES= SF/mikmod/libmikmod%20%28source%29/${PORTVERSION}/ MAINTAINER= neuroworker@gmail.com COMMENT= MikMod Sound Library --- 2,11 ---- # $FreeBSD: head/audio/libmikmod/Makefile 342894 2014-02-05 23:16:38Z bapt $ PORTNAME= libmikmod ! PORTVERSION= 3.3.5 PORTREVISION= 2 CATEGORIES= audio ! MASTER_SITES= SF/mikmod/libmikmod/${PORTVERSION}/ MAINTAINER= neuroworker@gmail.com COMMENT= MikMod Sound Library diff -c libmikmod.orig/distinfo libmikmod/distinfo *** libmikmod.orig/distinfo Wed Feb 19 10:06:25 2014 --- libmikmod/distinfo Wed Feb 19 10:08:14 2014 *************** *** 1,2 **** ! SHA256 (libmikmod-3.1.12.tar.gz) = 891a2b780306e6ef86e381f459e71a085d4e7f56c970a879d3bf341c01bdfc32 ! SIZE (libmikmod-3.1.12.tar.gz) = 618011 --- 1,2 ---- ! SHA256 (libmikmod-3.3.5.tar.gz) = b714ee340a04e6867f60246f679e0f40063b92f99269b6b715c8bf19ad469fb6 ! SIZE (libmikmod-3.3.5.tar.gz) = 1288856 Only in libmikmod.orig/: files diff -c libmikmod.orig/pkg-plist libmikmod/pkg-plist *** libmikmod.orig/pkg-plist Wed Feb 19 10:06:25 2014 --- libmikmod/pkg-plist Wed Feb 19 10:11:58 2014 *************** *** 3,9 **** lib/libmikmod.a lib/libmikmod.la lib/libmikmod.so ! lib/libmikmod.so.2 ! lib/libmikmod.so.2.0.4 man/man1/libmikmod-config.1.gz share/aclocal/libmikmod.m4 --- 3,9 ---- lib/libmikmod.a lib/libmikmod.la lib/libmikmod.so ! lib/libmikmod.so.3 ! lib/libmikmod.so.3.3.0 man/man1/libmikmod-config.1.gz share/aclocal/libmikmod.m4 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 19 17:10:20 2014 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 ESMTPS id 8362EA42; Wed, 19 Feb 2014 17:10:20 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 545A01D54; Wed, 19 Feb 2014 17: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 s1JHAKII024201; Wed, 19 Feb 2014 17:10:20 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1JHAKAa024200; Wed, 19 Feb 2014 17:10:20 GMT (envelope-from edwin) Date: Wed, 19 Feb 2014 17:10:20 GMT Message-Id: <201402191710.s1JHAKAa024200@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, apache@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186899: devel/apr1 fails to install due to deprecated databases/db42 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Feb 2014 17:10:20 -0000 Synopsis: devel/apr1 fails to install due to deprecated databases/db42 Responsible-Changed-From-To: freebsd-ports-bugs->apache Responsible-Changed-By: edwin Responsible-Changed-When: Wed Feb 19 17:10:20 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186899 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 19 17:19:14 2014 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 ESMTPS id 735D3D0B; Wed, 19 Feb 2014 17:19:14 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 455BB1DCB; Wed, 19 Feb 2014 17:19: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 s1JHJE6c027881; Wed, 19 Feb 2014 17:19:14 GMT (envelope-from flo@freefall.freebsd.org) Received: (from flo@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1JHJDlQ027880; Wed, 19 Feb 2014 17:19:13 GMT (envelope-from flo) Date: Wed, 19 Feb 2014 17:19:13 GMT Message-Id: <201402191719.s1JHJDlQ027880@freefall.freebsd.org> To: jbeich@tormail.org, flo@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: flo@FreeBSD.org Subject: Re: ports/184286: [patch] bsd.options.desc.mk: improve DEBUG description X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Feb 2014 17:19:14 -0000 Synopsis: [patch] bsd.options.desc.mk: improve DEBUG description State-Changed-From-To: open->closed State-Changed-By: flo State-Changed-When: Wed Feb 19 17:19:12 UTC 2014 State-Changed-Why: Committed. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=184286 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 19 17:20:03 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6FC09D63 for ; Wed, 19 Feb 2014 17:20:03 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5C3451DD9 for ; Wed, 19 Feb 2014 17:20: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 s1JHK3L1028014 for ; Wed, 19 Feb 2014 17:20:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1JHK3xb028013; Wed, 19 Feb 2014 17:20:03 GMT (envelope-from gnats) Date: Wed, 19 Feb 2014 17:20:03 GMT Message-Id: <201402191720.s1JHK3xb028013@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/184286: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 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: Wed, 19 Feb 2014 17:20:03 -0000 The following reply was made to PR ports/184286; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/184286: commit references a PR Date: Wed, 19 Feb 2014 17:19:03 +0000 (UTC) Author: flo Date: Wed Feb 19 17:18:56 2014 New Revision: 345119 URL: http://svnweb.freebsd.org/changeset/ports/345119 QAT: https://qat.redports.org/buildarchive/r345119/ Log: DEBUG does more than installing debugging symbols in may cases. Update the description. PR: ports/184286 Submitted by: Jan Beich Discussed with: bapt Modified: head/Mk/bsd.options.desc.mk Modified: head/Mk/bsd.options.desc.mk ============================================================================== --- head/Mk/bsd.options.desc.mk Wed Feb 19 17:05:18 2014 (r345118) +++ head/Mk/bsd.options.desc.mk Wed Feb 19 17:18:56 2014 (r345119) @@ -59,7 +59,7 @@ DBM_DESC?= DBM support DBUS_DESC?= D-Bus IPC system support DCA_DESC?= DTS support via libdca DCRAW_DESC?= dcraw (raw image converter) support -DEBUG_DESC?= Install debug symbols +DEBUG_DESC?= Build with debugging support DEVD_DESC?= Install devd(8) files DIRAC_DESC?= Dirac codec support via libdirac DJVU_DESC?= DjVu document 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 Wed Feb 19 19:50:03 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 06AF843B for ; Wed, 19 Feb 2014 19:50:03 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D4EF21CC1 for ; Wed, 19 Feb 2014 19: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 s1JJo2eX078720 for ; Wed, 19 Feb 2014 19:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1JJo2aN078719; Wed, 19 Feb 2014 19:50:02 GMT (envelope-from gnats) Resent-Date: Wed, 19 Feb 2014 19:50:02 GMT Resent-Message-Id: <201402191950.s1JJo2aN078719@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 ESMTPS id 37DB3F24 for ; Wed, 19 Feb 2014 19:43:45 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2353C1C15 for ; Wed, 19 Feb 2014 19:43:45 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1JJhiRf013674 for ; Wed, 19 Feb 2014 19:43:44 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1JJhiUA013673; Wed, 19 Feb 2014 19:43:44 GMT (envelope-from nobody) Message-Id: <201402191943.s1JJhiUA013673@cgiserv.freebsd.org> Date: Wed, 19 Feb 2014 19:43:44 GMT From: "O. Hartmann" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186901: x11/kde4-workspace: libGLESv2.so: undefined reference to `_glapi_get_dispatch' X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Feb 2014 19:50:03 -0000 >Number: 186901 >Category: ports >Synopsis: x11/kde4-workspace: libGLESv2.so: undefined reference to `_glapi_get_dispatch' >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 Feb 19 19:50:02 UTC 2014 >Closed-Date: >Last-Modified: >Originator: O. Hartmann >Release: FreeBSD 11.0-CURRENT >Organization: >Environment: FreeBSD 11.0-CURRENT #0 r262153: Tue Feb 18 09:52:59 CET 2014 amd64 >Description: The enforced update of KDE-4 stuff produces on 11.-CURRENT with LLVM/CLANG 3.4 surprisingly this nasty error. Rebuilding port graphics/libglesv2 via portmaster -f libglesv2-9.1.7 doesn't help, the below showed error ist sticky. [...] [100%] Built target kmenuedit /usr/local/lib/libGLESv2.so: undefined reference to `_glapi_get_dispatch' /usr/local/lib/libGLESv2.so: undefined reference to `_glapi_Dispatch' c++: error: linker command failed with exit code 1 (use -v to see invocation) gmake[4]: *** [kwin/kwin_gles] Error 1 gmake[4]: Leaving directory `/usr/ports/x11/kde4-workspace/work/.build' gmake[3]: *** [kwin/CMakeFiles/kwin_gles.dir/all] Error 2 gmake[3]: Leaving directory `/usr/ports/x11/kde4-workspace/work/.build' gmake[2]: *** [all] Error 2 gmake[2]: Leaving directory `/usr/ports/x11/kde4-workspace/work/.build' ===> 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/x11/kde4-workspace *** Error code 1 >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 19 19:50:14 2014 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 ESMTPS id C4DE54D3; Wed, 19 Feb 2014 19:50:14 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9959F1CC7; Wed, 19 Feb 2014 19: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 s1JJoEnK078807; Wed, 19 Feb 2014 19:50:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1JJoEhV078806; Wed, 19 Feb 2014 19:50:14 GMT (envelope-from edwin) Date: Wed, 19 Feb 2014 19:50:14 GMT Message-Id: <201402191950.s1JJoEhV078806@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kde@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186901: x11/kde4-workspace: libGLESv2.so: undefined reference to `_glapi_get_dispatch' X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Feb 2014 19:50:14 -0000 Synopsis: x11/kde4-workspace: libGLESv2.so: undefined reference to `_glapi_get_dispatch' Responsible-Changed-From-To: freebsd-ports-bugs->kde Responsible-Changed-By: edwin Responsible-Changed-When: Wed Feb 19 19:50:14 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186901 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 19 22:00:00 2014 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 ESMTPS id B151A8CA for ; Wed, 19 Feb 2014 22:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8ABB218B0 for ; Wed, 19 Feb 2014 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 s1JM0034019013 for ; Wed, 19 Feb 2014 22:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1JM00UV019012; Wed, 19 Feb 2014 22:00:00 GMT (envelope-from gnats) Resent-Date: Wed, 19 Feb 2014 22:00:00 GMT Resent-Message-Id: <201402192200.s1JM00UV019012@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, Jeremy Chadwick Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D960473A for ; Wed, 19 Feb 2014 21:50:01 +0000 (UTC) Received: from qmta14.emeryville.ca.mail.comcast.net (qmta14.emeryville.ca.mail.comcast.net [IPv6:2001:558:fe2d:44:76:96:27:212]) by mx1.freebsd.org (Postfix) with ESMTP id BA11C1805 for ; Wed, 19 Feb 2014 21:50:01 +0000 (UTC) Received: from omta03.emeryville.ca.mail.comcast.net ([76.96.30.27]) by qmta14.emeryville.ca.mail.comcast.net with comcast id UMP31n0040b6N64AEMq0Ss; Wed, 19 Feb 2014 21:50:00 +0000 Received: from jdc.koitsu.org ([76.102.14.35]) by omta03.emeryville.ca.mail.comcast.net with comcast id UMpz1n00T0lNtxY8PMq0an; Wed, 19 Feb 2014 21:50:00 +0000 Received: by icarus.home.lan (Postfix, from userid 1000) id 9329873A3B; Wed, 19 Feb 2014 13:49:59 -0800 (PST) Message-Id: <20140219214959.9329873A3B@icarus.home.lan> Date: Wed, 19 Feb 2014 13:49:59 -0800 (PST) From: Jeremy Chadwick To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/186902: ftp/curl -- NTLM option has no effect X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Jeremy Chadwick List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Feb 2014 22:00:00 -0000 >Number: 186902 >Category: ports >Synopsis: ftp/curl -- NTLM option has no effect >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 Feb 19 22:00:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Jeremy Chadwick >Release: FreeBSD 9.2-STABLE amd64 >Organization: >Environment: System: FreeBSD icarus.home.lan 9.2-STABLE FreeBSD 9.2-STABLE #0 r260665: Tue Jan 14 19:21:13 PST 2014 root@icarus.home.lan:/usr/obj/usr/src/sys/X7SBA_RELENG_9_amd64 amd64 >Description: The NTLM option has no effect, meaning NTLM support is still enabled even if the NTLM option/checkbox is disabled. I went through the port Makefile and I see nothing wrong. The option controls use of --disable-ntlm or --enable-ntlm during configure. However, both of these flags are no-ops in curl's configure script. curl's autoconf/configure script allows flags of any kind to work, e.g. --disable-tiny-brained-marmots won't throw an error or warning. I have no idea when the curl folks removed --{disable,enable}-ntlm. If you do ./configure --help | grep -i ntlm, you'll see there are no such options, but there are some called --enable-ntlm-wb and --disable-ntlm-wb, but those appear to be related to NTLM delegation to winbind ntlm_auth (I don't know what that is). >How-To-Repeat: Building the port without NTLM support, then do curl -V and look at the Features list; NTLM support will be shown. >Fix: My fix would be to remove the NTLM option from the Makefile entirely, however I'm not sure about the NTLM vs. SSL engine logic located at lines 141 to 143. Someone may want to add something like NTLM_WB as an option, but I don't know what the necessary logics would be (for SSL, winbind checking, dependencies, etc.) for this to work. I'll leave all of this up to sunpoet@ to decide. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 19 22:00:08 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 965A78F9; Wed, 19 Feb 2014 22:00:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6C31318B2; Wed, 19 Feb 2014 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 s1JM08Rc019149; Wed, 19 Feb 2014 22:00:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1JM08st019148; Wed, 19 Feb 2014 22:00:08 GMT (envelope-from edwin) Date: Wed, 19 Feb 2014 22:00:08 GMT Message-Id: <201402192200.s1JM08st019148@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186902: ftp/curl -- NTLM option has no effect X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Feb 2014 22:00:08 -0000 Synopsis: ftp/curl -- NTLM option has no effect Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: edwin Responsible-Changed-When: Wed Feb 19 22:00:08 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186902 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 19 23:00:00 2014 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 ESMTPS id D02B1BEA for ; Wed, 19 Feb 2014 23:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A8DB01D6F for ; Wed, 19 Feb 2014 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 s1JN00H8037776 for ; Wed, 19 Feb 2014 23:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1JN00D5037775; Wed, 19 Feb 2014 23:00:00 GMT (envelope-from gnats) Resent-Date: Wed, 19 Feb 2014 23:00:00 GMT Resent-Message-Id: <201402192300.s1JN00D5037775@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, Garrett Wollman Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 13D2D989 for ; Wed, 19 Feb 2014 22:52:05 +0000 (UTC) Received: from khavrinen.csail.mit.edu (khavrinen.csail.mit.edu [IPv6:2001:470:8b2d:1e1c:21b:21ff:feb8:d7b0]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D5CC81D12 for ; Wed, 19 Feb 2014 22:52:04 +0000 (UTC) Received: from xyz.csail.mit.edu (xyz.csail.mit.edu [128.31.0.28]) by khavrinen.csail.mit.edu (8.14.7/8.14.7) with ESMTP id s1JMq1lC008627 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO CN= issuer=) for ; Wed, 19 Feb 2014 17:52:01 -0500 (EST) (envelope-from wollman@xyz.csail.mit.edu) Received: (from wollman@localhost) by xyz.csail.mit.edu (8.14.7/8.14.5/Submit) id s1JMq1jh096237; Wed, 19 Feb 2014 17:52:01 -0500 (EST) (envelope-from wollman) Message-Id: <201402192252.s1JMq1jh096237@xyz.csail.mit.edu> Date: Wed, 19 Feb 2014 17:52:01 -0500 (EST) From: Garrett Wollman To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/186903: new port: security/krb5-strength X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Feb 2014 23:00:00 -0000 >Number: 186903 >Category: ports >Synopsis: new port: security/krb5-strength >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 Feb 19 23:00:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Garrett Wollman >Release: FreeBSD 9.2-RELEASE-p3 amd64 >Organization: MIT Computer Science & Artificial Intelligence Lab >Environment: System: FreeBSD xyz.csail.mit.edu 9.2-RELEASE-p3 FreeBSD 9.2-RELEASE-p3 #3 r260650M: Tue Jan 14 17:08:30 EST 2014 wollman@xyz.csail.mit.edu:/usr/obj/usr/src/sys/CSAIL amd64 >Description: krb5-strength is a policy plugin for Kerberos KDCs that provides improved password quality checking as compared to the built-in policy mechanisms. This port requires the MIT implementation (because that's what we use and I don't have a test environment for Heimdal) but it could easily be enhanced to allow selection of Kerberos implementations. (The port builds and installs a Heimdal plugin, which does not require Heimdal libraries or headers, but the MIT implementation is unconditionally required as a build-time and run-time dependency.) I have not provided a LICENSE= as the package is composed of numerous different files of disparate authorship under multiple licenses, some of which are one-offs. The license covering the package as a whole is BSD-flavored. >How-To-Repeat: >Fix: #!/bin/sh # This is a shell archive echo x krb5-strength mkdir -p krb5-strength > /dev/null 2>&1 echo x krb5-strength/pkg-descr sed 's/^X//' > krb5-strength/pkg-descr << 'SHAR_END' Xkrb5-strength is a plugin to provide additional password-quality Xchecking for MIT Kerberos and Heimdal KDCs. It can use either a Xcracklib dictionary (made with the cracklib packer tool) or a XTinyCDB database (a helper utility is provided for creating these). X XWWW: http://www.eyrie.org/~eagle/software/krb5-strength/ SHAR_END echo x krb5-strength/distinfo sed 's/^X//' > krb5-strength/distinfo << 'SHAR_END' XSHA256 (krb5-strength-2.2.tar.gz) = b3e4f742ec4cebbc66ac139d88dd650bf51a19f5de6de0bc10b836e28f9d6cb7 XSIZE (krb5-strength-2.2.tar.gz) = 478628 SHAR_END echo x krb5-strength/Makefile sed 's/^X//' > krb5-strength/Makefile << 'SHAR_END' X# $FreeBSD$ X XPORTNAME= krb5-strength XPORTVERSION= 2.2 XCATEGORIES= security XMASTER_SITES= http://archives.eyrie.org/software/kerberos/ X XMAINTAINER= wollman@csail.mit.edu XCOMMENT= Password-quality-checking plugin for Kerberos X X# XXX should allow selection of Kerberos implementation, since X# the package supports both Heimdal and MIT. XLIB_DEPENDS= libkrb5.so.3:${PORTSDIR}/security/krb5 X XOPTIONS_DEFINE= CDB XCDB_DESC= Use a TinyCDB wordlist database in addition to cracklib XCDB_LIB_DEPENDS=libcdb.so:${PORTSDIR}/databases/tinycdb XCDB_RUN_DEPENDS=cdb:${PORTSDIR}/databases/tinycdb X XOPTIONS_DEFAULT=CDB X X.include X XGNU_CONFIGURE= yes XUSES= perl5 X XPLIST_FILES= bin/heimdal-strength \ X lib/krb5/plugins/pwqual/strength.la \ X lib/krb5/plugins/pwqual/strength.so \ X man/man1/heimdal-strength.1.gz X X.if ${PORT_OPTIONS:MCDB} XPLIST_FILES+= bin/cdbmake-wordlist man/man1/cdbmake-wordlist.1.gz X.else XCONFIGURE_ARGS+=--without-cdb X.endif X X.include SHAR_END exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 19 23:00:08 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1082AC1A; Wed, 19 Feb 2014 23:00:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D92F41D74; Wed, 19 Feb 2014 23:00: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 s1JN07ku037921; Wed, 19 Feb 2014 23:00:07 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1JN0700037920; Wed, 19 Feb 2014 23:00:07 GMT (envelope-from edwin) Date: Wed, 19 Feb 2014 23:00:07 GMT Message-Id: <201402192300.s1JN0700037920@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186903: new port: security/krb5-strength X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Feb 2014 23:00:08 -0000 Synopsis: new port: security/krb5-strength Class-Changed-From-To: update->change-request Class-Changed-By: edwin Class-Changed-When: Wed Feb 19 23:00:07 UTC 2014 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=186903 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 19 23:00:17 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0C1E8C51; Wed, 19 Feb 2014 23:00:17 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D528C1D7B; Wed, 19 Feb 2014 23:00: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 s1JN0Ggm037998; Wed, 19 Feb 2014 23:00:16 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1JN0GFS037997; Wed, 19 Feb 2014 23:00:16 GMT (envelope-from edwin) Date: Wed, 19 Feb 2014 23:00:16 GMT Message-Id: <201402192300.s1JN0GFS037997@freefall.freebsd.org> To: beastie@tardisi.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186904: ports-mgmt/pkg_rmleaves: always says to resize terminal to at least 80x24 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Feb 2014 23:00:17 -0000 Synopsis: ports-mgmt/pkg_rmleaves: always says to resize terminal to at least 80x24 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Wed Feb 19 23:00:16 UTC 2014 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186904 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 19 23:00:01 2014 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 ESMTPS id ACAD8BEC for ; Wed, 19 Feb 2014 23:00:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 81A6F1D71 for ; Wed, 19 Feb 2014 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 s1JN01pe037846 for ; Wed, 19 Feb 2014 23:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1JN01CJ037845; Wed, 19 Feb 2014 23:00:01 GMT (envelope-from gnats) Resent-Date: Wed, 19 Feb 2014 23:00:01 GMT Resent-Message-Id: <201402192300.s1JN01CJ037845@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, Lawrence Chen Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4CE4498E for ; Wed, 19 Feb 2014 22:52:06 +0000 (UTC) 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 198FA1D15 for ; Wed, 19 Feb 2014 22:52:05 +0000 (UTC) Received: from ip70-179-144-228.fv.ks.cox.net ([70.179.144.228] helo=zen.lhaven.homeip.net) by mho-02-ewr.mailhop.org with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.72) (envelope-from ) id 1WGFzo-000MAf-9O for FreeBSD-gnats-submit@freebsd.org; Wed, 19 Feb 2014 22:52:04 +0000 Received: from zen.lhaven.homeip.net (localhost [127.0.0.1]) by zen.lhaven.homeip.net (8.14.8/8.14.7) with ESMTP id s1JMq2vq046390; Wed, 19 Feb 2014 16:52:02 -0600 (CST) (envelope-from lchen@zen.lhaven.homeip.net) Received: (from lchen@localhost) by zen.lhaven.homeip.net (8.14.8/8.14.7/Submit) id s1JMpvnB046389; Wed, 19 Feb 2014 16:51:57 -0600 (CST) (envelope-from lchen) Message-Id: <201402192251.s1JMpvnB046389@zen.lhaven.homeip.net> Date: Wed, 19 Feb 2014 16:51:57 -0600 (CST) From: Lawrence Chen To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/186904: ports-mgmt/pkg_rmleaves: always says to resize terminal to at least 80x24 Cc: beastie_t@lhaven.homeip.net X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Lawrence Chen List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Feb 2014 23:00:01 -0000 >Number: 186904 >Category: ports >Synopsis: ports-mgmt/pkg_rmleaves: always says to resize terminal to at least 80x24 >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 Feb 19 23:00:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Lawrence Chen >Release: FreeBSD 9.2-RELEASE-p3 amd64 >Organization: >Environment: System: FreeBSD zen.lhaven.homeip.net 9.2-RELEASE-p3 FreeBSD 9.2-RELEASE-p3 #0: Sat Jan 11 03:25:02 UTC 2014 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: No matter what terminal I use, or what size, it always fails with: Dialog Error, try to resize your terminal to at least 80x24. >How-To-Repeat: >Fix: Turns out this is a fixed message for any Exit status of 255 (-1) from dialog, which is the Exit status for any errors occuring inside dialog or dialog is exited by pressing the ESC key. After a deeper investigation, the problem is due to ports that use quotation marks in the package comment. Ugly kluge below is what I did to make it work for me. I have converted all my FreeBSD systems to pkgng, so don't know if the non-pkgng way is right. --- pkg_rmleaves.patch begins here --- --- pkg_rmleaves.orig 2014-02-19 13:58:20.969015298 -0600 +++ pkg_rmleaves 2014-02-19 13:57:29.478015196 -0600 @@ -61,17 +61,17 @@ # update leaf files checkLeafs() { if [ -n "$USE_PKGNG" ]; then - pkg query -e '%#r = 0' '"%n-%v" "%sh" "off" "%c"' + pkg query -e '%#r = 0' '#%n-%v# #%sh# #off# #%c#' else for i in "$PKGDIR/"*; do if [ ! -s "$i/+REQUIRED_BY" ]; then pkg=$(basename "$i") desc='' [ -f "$i/+COMMENT" ] && desc=$(cat "$i/+COMMENT") - echo "\"$pkg\" \"\" \"off\" \"$desc\"" + echo "#$pkg# ## #off# #$desc#" fi done - fi | sort > "$PKGFILE" + fi | sort | sed -e 's/"/_/g' | sed -e 's/#/"/g' > "$PKGFILE" if [ -f "$PREV" ]; then diff --unchanged-line-format='' --old-line-format='' --new-line-format='%L' "$PREV" "$PKGFILE" > "$TMPFILE" --- pkg_rmleaves.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 19 23:10:01 2014 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 ESMTPS id 4578CB5 for ; Wed, 19 Feb 2014 23:10:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2FA991E39 for ; Wed, 19 Feb 2014 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 s1JNA17f041132 for ; Wed, 19 Feb 2014 23:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1JNA1L6041131; Wed, 19 Feb 2014 23:10:01 GMT (envelope-from gnats) Date: Wed, 19 Feb 2014 23:10:01 GMT Message-Id: <201402192310.s1JNA1L6041131@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/186904: ports-mgmt/pkg_rmleaves: always says to resize terminal to at least 80x24 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 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, 19 Feb 2014 23:10:01 -0000 The following reply was made to PR ports/186904; it has been noted by GNATS. From: Edwin Groothuis To: alexander@wittig.name Cc: bug-followup@FreeBSD.org Subject: Re: ports/186904: ports-mgmt/pkg_rmleaves: always says to resize terminal to at least 80x24 Date: Wed, 19 Feb 2014 23:00:15 UT Maintainer of ports-mgmt/pkg_rmleaves, Please note that PR ports/186904 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/186904 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 04:30:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C2647FF6 for ; Thu, 20 Feb 2014 04:30:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 87FE51CDA for ; Thu, 20 Feb 2014 04: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 s1K4U0Pq052821 for ; Thu, 20 Feb 2014 04:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1K4U0tM052820; Thu, 20 Feb 2014 04:30:00 GMT (envelope-from gnats) Resent-Date: Thu, 20 Feb 2014 04:30:00 GMT Resent-Message-Id: <201402200430.s1K4U0tM052820@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 ESMTPS id 03398FD1 for ; Thu, 20 Feb 2014 04:27:57 +0000 (UTC) Received: from deep.tw (220-134-39-129.HINET-IP.hinet.net [220.134.39.129]) by mx1.freebsd.org (Postfix) with ESMTP id C5BDD1CC5 for ; Thu, 20 Feb 2014 04:27:55 +0000 (UTC) Received: by deep.tw (Postfix, from userid 0) id AB9875C14; Thu, 20 Feb 2014 12:21:04 +0800 (CST) Message-Id: <20140220042104.AB9875C14@deep.tw> Date: Thu, 20 Feb 2014 12:21:04 +0800 (CST) From: Jin-Sih Lin To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/186906: [MAINTAINER] www/node: update to 0.10.26 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 04:30:00 -0000 >Number: 186906 >Category: ports >Synopsis: [MAINTAINER] www/node: update to 0.10.26 >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 Feb 20 04:30:00 UTC 2014 >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.26 Generated with FreeBSD Port Tools 0.99_11 (mode: update, diff: suffix) >How-To-Repeat: >Fix: --- node-0.10.26.patch begins here --- diff -ruN ../node.orig/Makefile ./Makefile --- ../node.orig/Makefile 2014-01-25 08:45:58.000000000 +0800 +++ ./Makefile 2014-02-20 10:55:03.000000000 +0800 @@ -2,7 +2,7 @@ # $FreeBSD: head/www/node/Makefile 339634 2014-01-13 21:00:02Z rene $ PORTNAME= node -PORTVERSION= 0.10.25 +PORTVERSION= 0.10.26 CATEGORIES= www MASTER_SITES= http://nodejs.org/dist/v${PORTVERSION}/ DISTNAME= ${PORTNAME}-v${PORTVERSION} diff -ruN ../node.orig/distinfo ./distinfo --- ../node.orig/distinfo 2014-01-25 08:46:13.000000000 +0800 +++ ./distinfo 2014-02-20 10:55:16.000000000 +0800 @@ -1,2 +1,2 @@ -SHA256 (node-v0.10.25.tar.gz) = 46eef3b9d5475a2081dc2b2f7cf1f4c3a56824d1fc9b04e7ed1d7a88e8f6b36f -SIZE (node-v0.10.25.tar.gz) = 13732322 +SHA256 (node-v0.10.26.tar.gz) = ef5e4ea6f2689ed7f781355012b942a2347e0299da0804a58de8e6281c4b1daa +SIZE (node-v0.10.26.tar.gz) = 13339664 --- node-0.10.26.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 04:30:09 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C03489F; Thu, 20 Feb 2014 04:30:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9221E1D3A; Thu, 20 Feb 2014 04: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 s1K4U9Wb052957; Thu, 20 Feb 2014 04:30:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1K4U98d052956; Thu, 20 Feb 2014 04:30:09 GMT (envelope-from edwin) Date: Thu, 20 Feb 2014 04:30:09 GMT Message-Id: <201402200430.s1K4U98d052956@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, swills@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186906: [MAINTAINER] www/node: update to 0.10.26 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 04:30:09 -0000 Synopsis: [MAINTAINER] www/node: update to 0.10.26 Responsible-Changed-From-To: freebsd-ports-bugs->swills Responsible-Changed-By: edwin Responsible-Changed-When: Thu Feb 20 04:30:09 UTC 2014 Responsible-Changed-Why: swills@ wants this submitter's PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186906 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 04:50:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D80BC7C9 for ; Thu, 20 Feb 2014 04:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B2D981FC6 for ; Thu, 20 Feb 2014 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 s1K4o02D058408 for ; Thu, 20 Feb 2014 04:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1K4o0Gs058407; Thu, 20 Feb 2014 04:50:00 GMT (envelope-from gnats) Resent-Date: Thu, 20 Feb 2014 04:50:00 GMT Resent-Message-Id: <201402200450.s1K4o0Gs058407@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, Takefu Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 55747601 for ; Thu, 20 Feb 2014 04:46:36 +0000 (UTC) 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 160911FA7 for ; Thu, 20 Feb 2014 04:46:35 +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 A260412607F for ; Thu, 20 Feb 2014 13:46:27 +0900 (JST) Received: from [IPv6:2001:470:824b:a011:e93c:5625:68e8:a8b1] (unknown [IPv6:2001:470:824b:a011:e93c:5625:68e8:a8b1]) by ae-osaka.co.jp (Postfix) with ESMTPSA id 379CB125E98 for ; Thu, 20 Feb 2014 13:46:27 +0900 (JST) Message-Id: <530588A4.9000002@airport.fm> Date: Thu, 20 Feb 2014 13:46:28 +0900 From: Takefu To: freebsd-gnats-submit@freebsd.org Subject: ports/186907: [MAINTAINER] audio/libaacplus: fix warning message X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 04:50:01 -0000 >Number: 186907 >Category: ports >Synopsis: [MAINTAINER] audio/libaacplus: fix warning message >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 Feb 20 04:50:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Takefu >Release: FreeBSD 8.4-RELEASE-p7 i386 >Organization: FOX Amateur Radio Club >Environment: System: FreeBSD RELENG84-ix86.localIPv4.airport.fm 8.4-RELEASE-p7 FreeBSD 8.4-RELEASE-p7 #0: Wed Jan 15 09:30:02 JST 2014 >Description: fix warning message Generated with FreeBSD Port Tools 1.00.2014.02.18 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- libaacplus-2.0.2.patch begins here --- diff -ruN /usr/ports/audio/libaacplus/Makefile ./Makefile --- /usr/ports/audio/libaacplus/Makefile 2013-12-11 23:35:36.000000000 +0900 +++ ./Makefile 2014-02-20 11:31:51.000000000 +0900 @@ -21,7 +21,7 @@ USE_CSTD= gnu89 USES= pathfix pkgconfig USE_LDCONFIG= yes -USE_AUTOTOOLS= libtool libtoolize aclocal autoheader automake +USE_AUTOTOOLS= libtoolize aclocal autoheader automake PATHFIX_MAKEFILEIN= Makefile.am GNU_CONFIGURE= yes MAKE_JOBS_UNSAFE= yes @@ -50,5 +50,7 @@ ${WRKSRC}/aacplus.pc.in @${REINPLACE_CMD} -e 's,\/aacplus\.h,\/libaacplus\/aacplus\.h,' \ ${WRKSRC}/aacplus.spec.in + @${REINPLACE_CMD} -e 's,INCLUDES,AM_CPPFLAGS,'\ + ${WRKSRC}/frontend/Makefile.am ${WRKSRC}/src/Makefile.am .include --- libaacplus-2.0.2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 06:10:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 42FC9673 for ; Thu, 20 Feb 2014 06:10:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2B2C1167C for ; Thu, 20 Feb 2014 06: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 s1K6A0mh082165 for ; Thu, 20 Feb 2014 06:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1K6A0MD082164; Thu, 20 Feb 2014 06:10:00 GMT (envelope-from gnats) Date: Thu, 20 Feb 2014 06:10:00 GMT Message-Id: <201402200610.s1K6A0MD082164@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: =?ISO-2022-JP?B?GyRCRmJGI000MGxPOhsoQg==?= Subject: Re: ports/186563: databases/postgis21: error: use of undeclared identifier 'ICONV_SET_TRANSLITERATE' X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: =?ISO-2022-JP?B?GyRCRmJGI000MGxPOhsoQg==?= List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 06:10:01 -0000 The following reply was made to PR ports/186563; it has been noted by GNATS. From: =?ISO-2022-JP?B?GyRCRmJGI000MGxPOhsoQg==?= To: bug-followup@FreeBSD.org, ohartman@zedat.fu-berlin.de Cc: Subject: Re: ports/186563: databases/postgis21: error: use of undeclared identifier 'ICONV_SET_TRANSLITERATE' Date: Thu, 20 Feb 2014 15:07:36 +0900 --089e01538a7a67ab3b04f2d0524b Content-Type: text/plain; charset=ISO-8859-1 Hello. I'm facing same problem on FreeBSD 10.0-R. For quick fix, please apply following path. --- Makefile.org 2014-02-20 14:22:22.000000000 +0900 +++ Makefile 2014-02-20 14:24:56.000000000 +0900 @@ -19,7 +19,7 @@ USE_GNOME= libxml2 USE_PGSQL= yes -USES= gmake iconv perl5 pkgconfig +USES= gmake iconv:wchar_t perl5 pkgconfig USE_LDCONFIG= yes GNU_CONFIGURE= yes USE_PERL5= build This problem occurs when all following conditions are satisfied. 1. on FreeBSD 10.0-R or later (means base system has iconv library) 2. converters/libiconv is installed 3. a ports application is using iconvctl() function. For the condition 1. and 2. , ports/Mk/Uses/iconv.mk adds 'CFLAGS+=-DLIBICONV_PLUG' . LIBICONV_PLUG undefines iconvctl() and ICONV_SET_TRANSLITERATE in /usr/local/include/iconv.h This is the reason of the compile error. But I'm not sure this path is correct fix by the following reasons. a) postgis does not need wchar_t conversion. (Making iconv:iconvctl option is better solution?) b) if postgis configure does not detect iconvctl() function, they do not use iconvctl() and the defenitions. (I should make a problem report of autoconf ?) -- Yuichiro NAITO (naito.yuichiro@gmail.com) --089e01538a7a67ab3b04f2d0524b Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable
Hello.

I'm facing same problem = on FreeBSD 10.0-R.
For quick fix, please apply following path.
=
--- Makefile.org=A0=A0=A0 2014-02-20 14:22:22.000000000 +0900
+++ Ma= kefile=A0=A0=A0 2014-02-20 14:24:56.000000000 +0900
@@ -19,7 +19,7 @@
=A0
=A0USE_GNOME=3D=A0=A0=A0 libxml2
=A0USE_PGSQ= L=3D=A0=A0=A0 yes
-USES=3D=A0=A0=A0 =A0=A0=A0 gmake iconv perl5 pkgconfi= g
+USES=3D=A0=A0=A0 =A0=A0=A0 gmake iconv:wchar_t perl5 pkgconfig
=A0= USE_LDCONFIG=3D=A0=A0=A0 yes
=A0GNU_CONFIGURE=3D=A0=A0=A0 yes
=A0USE_PERL5=3D=A0=A0=A0 build

This problem occurs when all followin= g conditions are=A0 satisfied.
=A0 1. on FreeBSD 10.0-R or later (m= eans base system has iconv library)
=A0 2. converters/libicon= v is installed
=A0 3. a ports application is using iconvctl() function.

For the condition 1. and 2.= =A0 , ports/Mk/Uses/iconv.mk adds 'CFLA= GS+=3D-DLIBICONV_PLUG' .
LIBICONV_PLUG undefines iconvctl() and ICONV_SET_TRANSLITERATE= =A0 in /usr/local/include/iconv.h

This is the reason of t= he compile error.

But I'm not sure this path is = correct fix by the following reasons.

=A0a) postgis does not need wchar_t conversion.
=A0=A0=A0=A0=A0 (Making iconv:iconvctl option is better solution?)<= br>
=A0b) if postgis configure does not detect iconvctl() fun= ction, they=A0 do not use iconvctl() and the defenitions.
=A0=A0=A0=A0=A0 (I should make a problem report of autoconf ?)


--
Yuichiro NAITO
(naito.yuichiro@gmail.com)
--089e01538a7a67ab3b04f2d0524b-- From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 07:30:00 2014 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 ESMTPS id B0DDAF3 for ; Thu, 20 Feb 2014 07:30:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8AEAD1C2C for ; Thu, 20 Feb 2014 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 s1K7U0tP016777 for ; Thu, 20 Feb 2014 07:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1K7U0mR016776; Thu, 20 Feb 2014 07:30:00 GMT (envelope-from gnats) Resent-Date: Thu, 20 Feb 2014 07:30:00 GMT Resent-Message-Id: <201402200730.s1K7U0mR016776@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, Dmitriy Limonov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1B0CCF7A for ; Thu, 20 Feb 2014 07:22:06 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 070621BD3 for ; Thu, 20 Feb 2014 07:22:06 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1K7M5Np069055 for ; Thu, 20 Feb 2014 07:22:05 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1K7M5sS069047; Thu, 20 Feb 2014 07:22:05 GMT (envelope-from nobody) Message-Id: <201402200722.s1K7M5sS069047@cgiserv.freebsd.org> Date: Thu, 20 Feb 2014 07:22:05 GMT From: Dmitriy Limonov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186908: [Update] net-p2p/ncdc to 1.19 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 07:30:00 -0000 >Number: 186908 >Category: ports >Synopsis: [Update] net-p2p/ncdc to 1.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: Thu Feb 20 07:30:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Dmitriy Limonov >Release: FreeBSD 9.0-RELEASE-p5 amd64 >Organization: >Environment: FreeBSD excluzive.ws 9.0-RELEASE-p5 FreeBSD 9.0-RELEASE-p5 #0 r243502: Sun Nov 25 10:25:21 MSK 2012 earl@excluzive.ws:/usr/obj/usr/src/sys/EXCLUZIVE amd64 >Description: Update ncdc to version 1.19 >How-To-Repeat: >Fix: Patch attached with submission follows: diff -Naur ncdc.orig/Makefile ncdc/Makefile --- ncdc.orig/Makefile 2013-11-10 23:48:27.000000000 +0400 +++ ncdc/Makefile 2014-02-20 11:16:25.802699066 +0400 @@ -2,7 +2,7 @@ # $FreeBSD: head/net-p2p/ncdc/Makefile 333433 2013-11-10 19:48:27Z sunpoet $ PORTNAME= ncdc -PORTVERSION= 1.18.1 +PORTVERSION= 1.19 CATEGORIES= net-p2p MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} \ http://dev.yorhel.nl/download/ @@ -29,4 +29,14 @@ CFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib +OPTIONS_DEFINE= GEOIP +GEOIP_DESC= GeoIP Support + +.include + +.if ${PORT_OPTIONS:MGEOIP} +CONFIGURE_ARGS+= --with-geoip +CONFIGURE_ENV= GEOIP_CFLAGS="-I${LOCALBASE}/include" GEOIP_LIBS="-L${LOCALBASE}/lib -lGeoIP" +.endif + .include diff -Naur ncdc.orig/distinfo ncdc/distinfo --- ncdc.orig/distinfo 2013-11-10 23:48:27.000000000 +0400 +++ ncdc/distinfo 2014-02-20 09:16:41.060698214 +0400 @@ -1,2 +1,2 @@ -SHA256 (ncdc-1.18.1.tar.gz) = cc257731cd2ccc55831b8606694c379d0d8c441d250b8003785bec3d58fa8685 -SIZE (ncdc-1.18.1.tar.gz) = 350781 +SHA256 (ncdc-1.19.tar.gz) = c24130b8bb735f936b1090d4e5f4413c08548a45a2640193386c26dc1dc7fbf1 +SIZE (ncdc-1.19.tar.gz) = 354337 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 08:40:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0413316F for ; Thu, 20 Feb 2014 08:40:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B8E60134E for ; Thu, 20 Feb 2014 08: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 s1K8e0tT045174 for ; Thu, 20 Feb 2014 08:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1K8e0Rr045173; Thu, 20 Feb 2014 08:40:00 GMT (envelope-from gnats) Resent-Date: Thu, 20 Feb 2014 08:40:00 GMT Resent-Message-Id: <201402200840.s1K8e0Rr045173@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, webstyle FreeBSD ports Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 33068DA3 for ; Thu, 20 Feb 2014 08:35:04 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1B5C412EE for ; Thu, 20 Feb 2014 08:35:04 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1K8Z3Nx069535 for ; Thu, 20 Feb 2014 08:35:03 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1K8Z3aG069528; Thu, 20 Feb 2014 08:35:03 GMT (envelope-from nobody) Message-Id: <201402200835.s1K8Z3aG069528@cgiserv.freebsd.org> Date: Thu, 20 Feb 2014 08:35:03 GMT From: webstyle FreeBSD ports To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186910: pkg-plist doesn't declare file option-dependent X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 08:40:01 -0000 >Number: 186910 >Category: ports >Synopsis: pkg-plist doesn't declare file option-dependent >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 Feb 20 08:40:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: webstyle FreeBSD ports >Release: 9.2 >Organization: webstyle GmbH >Environment: >Description: There is obviously no xpdf binary going to be built WITHOUT_X11 >How-To-Repeat: >Fix: Patch attached with submission follows: Index: pkg-plist =================================================================== --- pkg-plist (revision 345182) +++ pkg-plist (working copy) @@ -5,7 +5,7 @@ libexec/xpdf/pdftoppm libexec/xpdf/pdftops libexec/xpdf/pdftotext -libexec/xpdf/xpdf +%%X11%%libexec/xpdf/xpdf %%X11%%bin/xpdf etc/xpdfrc %%PORTDOCS%%%%DOCSDIR%%/ANNOUNCE >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 09:50:01 2014 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 ESMTPS id 296A19DD for ; Thu, 20 Feb 2014 09:50:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 03D2619E3 for ; Thu, 20 Feb 2014 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 s1K9o0G6066344 for ; Thu, 20 Feb 2014 09:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1K9o0cm066343; Thu, 20 Feb 2014 09:50:00 GMT (envelope-from gnats) Resent-Date: Thu, 20 Feb 2014 09:50:00 GMT Resent-Message-Id: <201402200950.s1K9o0cm066343@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 ESMTPS id 3879C9CB for ; Thu, 20 Feb 2014 09:48:59 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 08EA819D7 for ; Thu, 20 Feb 2014 09:48:59 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1K9mw8x073001 for ; Thu, 20 Feb 2014 09:48:58 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1K9mwnF073000; Thu, 20 Feb 2014 09:48:58 GMT (envelope-from nobody) Message-Id: <201402200948.s1K9mwnF073000@cgiserv.freebsd.org> Date: Thu, 20 Feb 2014 09:48:58 GMT From: Bartek Rutkowski To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186913: [NEW PORT] devel/rubygem-librarian-puppet X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 09:50:01 -0000 >Number: 186913 >Category: ports >Synopsis: [NEW PORT] devel/rubygem-librarian-puppet >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 Feb 20 09:50:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Bartek Rutkowski >Release: 9.2-R >Organization: Pixeware LTD >Environment: FreeBSD ports-dev 9.2-RELEASE-p3 FreeBSD 9.2-RELEASE-p3 #0: Sat Jan 11 03:25:02 UTC 2014 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: WARNING: this port was submitted as a group of ports that are required to work together: rubygem-librarian-puppet, rubygem-librarian and rubygem-open3_backport. Those ports should be tested and commited as a group, otherwise they're usless because of missing dependencies. >How-To-Repeat: Test, commit. >Fix: Shar 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: # # rubygem-librarian-puppet # rubygem-librarian-puppet/distinfo # rubygem-librarian-puppet/Makefile # rubygem-librarian-puppet/pkg-descr # echo c - rubygem-librarian-puppet mkdir -p rubygem-librarian-puppet > /dev/null 2>&1 echo x - rubygem-librarian-puppet/distinfo sed 's/^X//' >rubygem-librarian-puppet/distinfo << 'END-of-rubygem-librarian-puppet/distinfo' XSHA256 (rubygem/librarian-puppet-0.9.13.gem) = beb66c609c72ac617e05cf7bded068e8d79a7b3ca1c76bd475146770e75777ae XSIZE (rubygem/librarian-puppet-0.9.13.gem) = 17408 END-of-rubygem-librarian-puppet/distinfo echo x - rubygem-librarian-puppet/Makefile sed 's/^X//' >rubygem-librarian-puppet/Makefile << 'END-of-rubygem-librarian-puppet/Makefile' X# $FreeBSD:$ X XPORTNAME= librarian-puppet XPORTVERSION= 0.9.13 XCATEGORIES= sysutils rubygems XMASTER_SITES= RG X XMAINTAINER= ports@robakdesign.com XCOMMENT= A tool for management and bundling Puppet modules X XRUN_DEPENDS= ${PKGNAMEPREFIX}json>=0:${PORTSDIR}/devel/rubygem-json \ X ${PKGNAMEPREFIX}librarian>=0.1.2:${PORTSDIR}/devel/rubygem-librarian \ X ${PKGNAMEPREFIX}open3_backport>=0:${PORTSDIR}/devel/rubygem-open3_backport X XLICENSE= MIT X XUSE_RUBY= yes XUSE_RUBYGEMS= yes XRUBYGEM_AUTOPLIST= yes X X.include END-of-rubygem-librarian-puppet/Makefile echo x - rubygem-librarian-puppet/pkg-descr sed 's/^X//' >rubygem-librarian-puppet/pkg-descr << 'END-of-rubygem-librarian-puppet/pkg-descr' XLibrarian-puppet is a bundler for your puppet infrastructure. XYou can use it to manage the puppet modules your infrastructure Xdepends on. It is based on Librarian framework. X XWWW: https://github.com/rodjek/librarian-puppet END-of-rubygem-librarian-puppet/pkg-descr exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 09:50:01 2014 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 ESMTPS id A0EEC9DF for ; Thu, 20 Feb 2014 09:50:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7AC2319E5 for ; Thu, 20 Feb 2014 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 s1K9o1LJ066358 for ; Thu, 20 Feb 2014 09:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1K9o1Vc066357; Thu, 20 Feb 2014 09:50:01 GMT (envelope-from gnats) Resent-Date: Thu, 20 Feb 2014 09:50:01 GMT Resent-Message-Id: <201402200950.s1K9o1Vc066357@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 ESMTPS id 899BA789 for ; Thu, 20 Feb 2014 09:42:01 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 58DF61990 for ; Thu, 20 Feb 2014 09:42:01 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1K9g0Zj069288 for ; Thu, 20 Feb 2014 09:42:00 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1K9g0DJ069287; Thu, 20 Feb 2014 09:42:00 GMT (envelope-from nobody) Message-Id: <201402200942.s1K9g0DJ069287@cgiserv.freebsd.org> Date: Thu, 20 Feb 2014 09:42:00 GMT From: Bartek Rutkowski To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186914: [NEW PORT] devel/rubygem-open3_backport X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 09:50:01 -0000 >Number: 186914 >Category: ports >Synopsis: [NEW PORT] devel/rubygem-open3_backport >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 Feb 20 09:50:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Bartek Rutkowski >Release: 9.2-R >Organization: Pixeware LTD >Environment: FreeBSD ports-dev 9.2-RELEASE-p3 FreeBSD 9.2-RELEASE-p3 #0: Sat Jan 11 03:25:02 UTC 2014 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: WARNING: this port was submitted as a group of ports that are required to work together: rubygem-librarian-puppet, rubygem-librarian and rubygem-open3_b ackport. Those ports should be tested and commited as a group, otherwise they're usless because of missing dependencies. >How-To-Repeat: Test and commit. >Fix: Shar 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: # # rubygem-open3_backport # rubygem-open3_backport/distinfo # rubygem-open3_backport/Makefile # rubygem-open3_backport/pkg-descr # echo c - rubygem-open3_backport mkdir -p rubygem-open3_backport > /dev/null 2>&1 echo x - rubygem-open3_backport/distinfo sed 's/^X//' >rubygem-open3_backport/distinfo << 'END-of-rubygem-open3_backport/distinfo' XSHA256 (rubygem/open3_backport-0.0.3.gem) = c4e8a1f4271b4424b548217634b3c469dbab56ca359c4df182034b3040a556c1 XSIZE (rubygem/open3_backport-0.0.3.gem) = 15872 END-of-rubygem-open3_backport/distinfo echo x - rubygem-open3_backport/Makefile sed 's/^X//' >rubygem-open3_backport/Makefile << 'END-of-rubygem-open3_backport/Makefile' X# $FreeBSD:$ X XPORTNAME= open3_backport XPORTVERSION= 0.0.3 XCATEGORIES= devel rubygems XMASTER_SITES= RG X XMAINTAINER= ports@robakdesign.com XCOMMENT= A backport of Ruby 1.9's Open3 methods for Ruby 1.8 X XRUN_DEPENDS= ${PKGNAMEPREFIX}open4>=1.3:${PORTSDIR}/devel/rubygem-open4 X XLICENSE= BSD2CLAUSE RUBY XLICENSE_COMB= dual X XUSE_RUBY= yes XUSE_RUBYGEMS= yes XRUBYGEM_AUTOPLIST= yes X X.include END-of-rubygem-open3_backport/Makefile echo x - rubygem-open3_backport/pkg-descr sed 's/^X//' >rubygem-open3_backport/pkg-descr << 'END-of-rubygem-open3_backport/pkg-descr' XBackport of Ruby 1.9's Open3 methods, for use in Ruby 1.8. X XWWW: https://github.com/kindkid/open3_backport END-of-rubygem-open3_backport/pkg-descr exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 09:50:09 2014 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 ESMTPS id 57D5BA0E; Thu, 20 Feb 2014 09:50:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2C54819E7; Thu, 20 Feb 2014 09: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 s1K9o9ms066437; Thu, 20 Feb 2014 09:50:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1K9o9Wh066436; Thu, 20 Feb 2014 09:50:09 GMT (envelope-from edwin) Date: Thu, 20 Feb 2014 09:50:09 GMT Message-Id: <201402200950.s1K9o9Wh066436@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ruby@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186913: [NEW PORT] devel/rubygem-librarian-puppet X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 09:50:09 -0000 Synopsis: [NEW PORT] devel/rubygem-librarian-puppet Responsible-Changed-From-To: freebsd-ports-bugs->ruby Responsible-Changed-By: edwin Responsible-Changed-When: Thu Feb 20 09:50:08 UTC 2014 Responsible-Changed-Why: ruby@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186913 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 09:50:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D4CCE9DB for ; Thu, 20 Feb 2014 09:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AF3DA19E1 for ; Thu, 20 Feb 2014 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 s1K9o00n066280 for ; Thu, 20 Feb 2014 09:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1K9o0Cq066279; Thu, 20 Feb 2014 09:50:00 GMT (envelope-from gnats) Resent-Date: Thu, 20 Feb 2014 09:50:00 GMT Resent-Message-Id: <201402200950.s1K9o0Cq066279@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 ESMTPS id 82ADE7A9 for ; Thu, 20 Feb 2014 09:43:39 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 514BA199C for ; Thu, 20 Feb 2014 09:43:39 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1K9hdv6070384 for ; Thu, 20 Feb 2014 09:43:39 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1K9hdMF070383; Thu, 20 Feb 2014 09:43:39 GMT (envelope-from nobody) Message-Id: <201402200943.s1K9hdMF070383@cgiserv.freebsd.org> Date: Thu, 20 Feb 2014 09:43:39 GMT From: Bartek Rutkowski To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186912: [NEW PORT] devel/rubygem-librarian X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 09:50:01 -0000 >Number: 186912 >Category: ports >Synopsis: [NEW PORT] devel/rubygem-librarian >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 Feb 20 09:50:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Bartek Rutkowski >Release: 9.2-R >Organization: Pixeware LTD >Environment: FreeBSD ports-dev 9.2-RELEASE-p3 FreeBSD 9.2-RELEASE-p3 #0: Sat Jan 11 03:25:02 UTC 2014 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: WARNING: this port was submitted as a group of ports that are required to work together: rubygem-librarian-puppet, rubygem-librarian and rubygem-open3_backport. Those ports should be tested and commited as a group, otherwise they're usless because of missing dependencies. >How-To-Repeat: Test, commit. >Fix: Shar 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: # # rubygem-librarian # rubygem-librarian/distinfo # rubygem-librarian/Makefile # rubygem-librarian/pkg-descr # echo c - rubygem-librarian mkdir -p rubygem-librarian > /dev/null 2>&1 echo x - rubygem-librarian/distinfo sed 's/^X//' >rubygem-librarian/distinfo << 'END-of-rubygem-librarian/distinfo' XSHA256 (rubygem/librarian-0.1.2.gem) = 7c263835ec5d5b03d89f1318f3abc073aefc8cc4669c55e36790024e994d6340 XSIZE (rubygem/librarian-0.1.2.gem) = 48640 END-of-rubygem-librarian/distinfo echo x - rubygem-librarian/Makefile sed 's/^X//' >rubygem-librarian/Makefile << 'END-of-rubygem-librarian/Makefile' X# $FreeBSD:$ X XPORTNAME= librarian XPORTVERSION= 0.1.2 XCATEGORIES= devel rubygems XMASTER_SITES= RG X XMAINTAINER= ports@robakdesign.com XCOMMENT= A Ruby framework for writing bundlers X XRUN_DEPENDS= ${PKGNAMEPREFIX}highline>=0:${PORTSDIR}/devel/rubygem-highline \ X ${PKGNAMEPREFIX}thor>=0.15:${PORTSDIR}/devel/rubygem-thor X XLICENSE= MIT X XUSE_RUBY= yes XUSE_RUBYGEMS= yes XRUBYGEM_AUTOPLIST= yes X X.include END-of-rubygem-librarian/Makefile echo x - rubygem-librarian/pkg-descr sed 's/^X//' >rubygem-librarian/pkg-descr << 'END-of-rubygem-librarian/pkg-descr' XLibrarian is a framework for writing bundlers, Xwhich are tools that resolve, fetch, install, Xand isolate a project's dependencies, in Ruby. X XWWW: https://github.com/applicationsonline/librarian END-of-rubygem-librarian/pkg-descr exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 09:50:29 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 722B0AA2; Thu, 20 Feb 2014 09:50:29 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 45A4619F8; Thu, 20 Feb 2014 09:50: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 s1K9oTjh066603; Thu, 20 Feb 2014 09:50:29 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1K9oTw2066602; Thu, 20 Feb 2014 09:50:29 GMT (envelope-from edwin) Date: Thu, 20 Feb 2014 09:50:29 GMT Message-Id: <201402200950.s1K9oTw2066602@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ruby@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186912: [NEW PORT] devel/rubygem-librarian X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 09:50:29 -0000 Synopsis: [NEW PORT] devel/rubygem-librarian Responsible-Changed-From-To: freebsd-ports-bugs->ruby Responsible-Changed-By: edwin Responsible-Changed-When: Thu Feb 20 09:50:28 UTC 2014 Responsible-Changed-Why: ruby@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186912 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 09:50:14 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 19D42A3C; Thu, 20 Feb 2014 09:50:14 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E3D7619E9; Thu, 20 Feb 2014 09:50: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 s1K9oDHw066519; Thu, 20 Feb 2014 09:50:13 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1K9oD4R066518; Thu, 20 Feb 2014 09:50:13 GMT (envelope-from edwin) Date: Thu, 20 Feb 2014 09:50:13 GMT Message-Id: <201402200950.s1K9oD4R066518@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ruby@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186914: [NEW PORT] devel/rubygem-open3_backport X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 09:50:14 -0000 Synopsis: [NEW PORT] devel/rubygem-open3_backport Responsible-Changed-From-To: freebsd-ports-bugs->ruby Responsible-Changed-By: edwin Responsible-Changed-When: Thu Feb 20 09:50:13 UTC 2014 Responsible-Changed-Why: ruby@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186914 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 09:54:31 2014 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 ESMTPS id 74256B8A for ; Thu, 20 Feb 2014 09:54:31 +0000 (UTC) Received: from mail-wi0-f180.google.com (mail-wi0-f180.google.com [209.85.212.180]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 01D2B1A85 for ; Thu, 20 Feb 2014 09:54:30 +0000 (UTC) Received: by mail-wi0-f180.google.com with SMTP id hm4so1578417wib.13 for ; Thu, 20 Feb 2014 01:54:23 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:content-type:mime-version:subject:from :in-reply-to:date:content-transfer-encoding:message-id:references:to; bh=LpoZ/vMGJO3nKqphxirFp5M5zrGxvG2ksPDbM6K5+cs=; b=SFmtPbkWeMRYlZAMX/GTuBjose7EKFNH55XJrDCJx4AxexbL0TUjw7qq37KjTkFd8h qfdJrhpaaRP8+DAlJ61OUowWkfwB0yhKiy7bS0MJyAo97zYXC5txzgiXDI4Xs/P11h7R ri2pLB0GS9dDuVb4+w6zJ4x4IMXGGxV7bLXX8TplDOB43UFUNHTTDISvZcTnzGWYh4wt dU20gWPQopAZp9uT0M8YSSuEdriIjam7SmJSd+bN3Jk7jVvWxnlh8/dLNUsiwRDwk0ZR yQojXBdXz54Sl3hX49BtmChJyt1upz3rTHjjYKHbKCvpQmXoRL5UpxmDlZvgbbXzrzmL GOTw== X-Gm-Message-State: ALoCoQmhCV77HRdapEKd4gEx+SgVr5R1A7qIpZGlLtA6vlh8MzhhD/1LnHNHtipfaKJ/VjpOdVBf X-Received: by 10.180.93.74 with SMTP id cs10mr6112649wib.15.1392890063048; Thu, 20 Feb 2014 01:54:23 -0800 (PST) Received: from [10.65.87.57] ([90.216.134.196]) by mx.google.com with ESMTPSA id f7sm7594236wjb.7.2014.02.20.01.54.21 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 20 Feb 2014 01:54:22 -0800 (PST) Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0 (Mac OS X Mail 7.1 \(1827\)) Subject: Re: ports/186913: [NEW PORT] devel/rubygem-librarian-puppet From: =?utf-8?Q?Bart=C5=82omiej_Rutkowski?= In-Reply-To: <201402200950.s1K9o07w066285@freefall.freebsd.org> Date: Thu, 20 Feb 2014 09:54:21 +0000 Content-Transfer-Encoding: quoted-printable Message-Id: <71B499BA-F183-44A7-8761-63DB335AD51D@robakdesign.com> References: <201402200950.s1K9o07w066285@freefall.freebsd.org> To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org X-Mailer: Apple Mail (2.1827) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 09:54:31 -0000 Wiadomo=C5=9B=C4=87 napisana przez FreeBSD-gnats-submit@FreeBSD.org w = dniu 20 lut 2014, o godz. 09:50: > Thank you very much for your problem report. > It has the internal identification `ports/186913'. > The individual assigned to look at your > report is: freebsd-ports-bugs.=20 >=20 > You can access the state of your problem report at any time > via this link: >=20 > http://www.freebsd.org/cgi/query-pr.cgi?pr=3D186913 >=20 >> Category: ports >> Responsible: freebsd-ports-bugs >> Synopsis: [NEW PORT] devel/rubygem-librarian-puppet >> Arrival-Date: Thu Feb 20 09:50:00 UTC 2014 Redports build reports are here: = https://redports.org/buildarchive/20140219144000-48619/ and here: = https://redports.org/buildarchive/20140219144300-4715 9/= From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 09:54:39 2014 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 ESMTPS id 13D3EBB8 for ; Thu, 20 Feb 2014 09:54:39 +0000 (UTC) Received: from mail-wi0-f171.google.com (mail-wi0-f171.google.com [209.85.212.171]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 967551A87 for ; Thu, 20 Feb 2014 09:54:38 +0000 (UTC) Received: by mail-wi0-f171.google.com with SMTP id cc10so5663561wib.16 for ; Thu, 20 Feb 2014 01:54:31 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:content-type:mime-version:subject:from :in-reply-to:date:content-transfer-encoding:message-id:references:to; bh=L5vtBT72fhBiPIY/ZZ2B/Tmi1jjkDE37vdnxEPzm0UQ=; b=iSqfxd/OQp9XhO+YnqRhmo4eexzQfIKEFKWQIsyHhZCZC+yox67rHy7NYw5cZkZQht zbX15u/tUCWKuMDYUwJuMImH+ZPPfwG7vkddvMfkmfWoh2hObikKRjlOHo2DoN2Hsb0x LSAANyp9WhsuuylGYBbo+75fOQS8WaX1U+RTy5JriZu89Gj90YN//HvyThhsbBGTLLMU wxqek/mLA0odWbXvhUoQPwE1iXUPnWX9HY/OUtlRSxaRNgiMRw3+WZS8IM4jSDA8ZRTI iigpopjxD3H8WxrdSU5LK6H9yhYfW3ZV/NOsnd/5cYph4tjR5YofPLR9dYx+q/SC9KDa avnw== X-Gm-Message-State: ALoCoQlpf2jDXSv5T4c8hltX7gVDqJS1TmKnE0Ju5tQkWYiqqNrq3r81lVYj+M66Kmc90vjp6N/4 X-Received: by 10.194.203.200 with SMTP id ks8mr911731wjc.61.1392890071007; Thu, 20 Feb 2014 01:54:31 -0800 (PST) Received: from [10.65.87.57] ([90.216.134.196]) by mx.google.com with ESMTPSA id f7sm7594236wjb.7.2014.02.20.01.54.29 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 20 Feb 2014 01:54:30 -0800 (PST) Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0 (Mac OS X Mail 7.1 \(1827\)) Subject: Re: ports/186912: [NEW PORT] devel/rubygem-librarian From: =?utf-8?Q?Bart=C5=82omiej_Rutkowski?= In-Reply-To: <201402200950.s1K9o004066264@freefall.freebsd.org> Date: Thu, 20 Feb 2014 09:54:29 +0000 Content-Transfer-Encoding: quoted-printable Message-Id: <595644C9-22C2-465D-B82C-9F837F32E015@robakdesign.com> References: <201402200950.s1K9o004066264@freefall.freebsd.org> To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org X-Mailer: Apple Mail (2.1827) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 09:54:39 -0000 Wiadomo=C5=9B=C4=87 napisana przez FreeBSD-gnats-submit@FreeBSD.org w = dniu 20 lut 2014, o godz. 09:50: > Thank you very much for your problem report. > It has the internal identification `ports/186912'. > The individual assigned to look at your > report is: freebsd-ports-bugs.=20 >=20 > You can access the state of your problem report at any time > via this link: >=20 > http://www.freebsd.org/cgi/query-pr.cgi?pr=3D186912 >=20 >> Category: ports >> Responsible: freebsd-ports-bugs >> Synopsis: [NEW PORT] devel/rubygem-librarian >> Arrival-Date: Thu Feb 20 09:50:00 UTC 2014 Redports build reports are here: = https://redports.org/buildarchive/20140219144000-48619/ and here: = https://redports.org/buildarchive/20140219144300-4715 9/= From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 10:01:42 2014 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 ESMTPS id 06A51CC4 for ; Thu, 20 Feb 2014 10:01:42 +0000 (UTC) Received: from mail-wg0-f52.google.com (mail-wg0-f52.google.com [74.125.82.52]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 89B061B58 for ; Thu, 20 Feb 2014 10:01:41 +0000 (UTC) Received: by mail-wg0-f52.google.com with SMTP id b13so1255347wgh.31 for ; Thu, 20 Feb 2014 02:01:38 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:content-type:mime-version:subject:from :in-reply-to:date:content-transfer-encoding:message-id:references:to; bh=qLi7OSFgLjT6s4Uy/MwTf3IWiKBQYLEJwix8wPVw4PQ=; b=Ml2IRBMbQuSKKFo/0DmbUi4BRpge0CFrNZBsgEeaG+gglqe2Xp5H8Fk/YrSGDWLApx EAxlco3/zyfpx9cd4STVrD3hmDLIwFl/cTTA9MGom/1Hmaj00/QcobJjRjyvJuwSKgQG Zgko9to7/NPtv7n2xS/tJtSPPXScaD7DURCzPevxmkC6spkLKIJwZW8KauwW7IQHOdJH 13gumLQPfJNhoTn0k+idkyoNuDMryH2znJazK3IlESCxfsiNIIfNGrHR/4cV77STmCFT Q3YPZgNMTcYl3KL4iuFAiYo/qEH/yzQuHjr5zAxMtv3eyITH7Ldr1UMWIUwvfQT43J/a iLBA== X-Gm-Message-State: ALoCoQn5buPEZ1qn3HnJG/VcTY8586utLSEf46IJRZmvlejr7xO9R7GsBoWyo18IR4J80lzABc9K X-Received: by 10.180.187.237 with SMTP id fv13mr1578510wic.26.1392890055190; Thu, 20 Feb 2014 01:54:15 -0800 (PST) Received: from [10.65.87.57] ([90.216.134.196]) by mx.google.com with ESMTPSA id f7sm7594236wjb.7.2014.02.20.01.54.13 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 20 Feb 2014 01:54:14 -0800 (PST) Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0 (Mac OS X Mail 7.1 \(1827\)) Subject: Re: ports/186914: [NEW PORT] devel/rubygem-open3_backport From: =?utf-8?Q?Bart=C5=82omiej_Rutkowski?= In-Reply-To: <201402200950.s1K9o1cX066350@freefall.freebsd.org> Date: Thu, 20 Feb 2014 09:54:12 +0000 Content-Transfer-Encoding: quoted-printable Message-Id: References: <201402200950.s1K9o1cX066350@freefall.freebsd.org> To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org X-Mailer: Apple Mail (2.1827) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 10:01:42 -0000 Wiadomo=C5=9B=C4=87 napisana przez FreeBSD-gnats-submit@FreeBSD.org w = dniu 20 lut 2014, o godz. 09:50: > Thank you very much for your problem report. > It has the internal identification `ports/186914'. > The individual assigned to look at your > report is: freebsd-ports-bugs.=20 >=20 > You can access the state of your problem report at any time > via this link: >=20 > http://www.freebsd.org/cgi/query-pr.cgi?pr=3D186914 >=20 >> Category: ports >> Responsible: freebsd-ports-bugs >> Synopsis: [NEW PORT] devel/rubygem-open3_backport >> Arrival-Date: Thu Feb 20 09:50:00 UTC 2014 Redports build reports are here: = https://redports.org/buildarchive/20140219144000-48619/ and here: = https://redports.org/buildarchive/20140219144300-4715 9/ From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 10:10:03 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 20BA2423 for ; Thu, 20 Feb 2014 10:10:03 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E7B291BE6 for ; Thu, 20 Feb 2014 10: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 s1KAA2fu072604 for ; Thu, 20 Feb 2014 10:10:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KAA2m1072603; Thu, 20 Feb 2014 10:10:02 GMT (envelope-from gnats) Date: Thu, 20 Feb 2014 10:10:02 GMT Message-Id: <201402201010.s1KAA2m1072603@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Pavel Timofeev Subject: Re: ports/186626: net/ss5 can't be installed under FreeBSD 10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Pavel Timofeev List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 10:10:03 -0000 The following reply was made to PR ports/186626; it has been noted by GNATS. From: Pavel Timofeev To: bug-followup@FreeBSD.org, timp87@gmail.com, raffaele.delorenzo@libero.it Cc: Subject: Re: ports/186626: net/ss5 can't be installed under FreeBSD 10 Date: Thu, 20 Feb 2014 14:03:57 +0400 So, what is the decision? Is there any way to build it by clang? Can gcc46 build it, for example? It such way this port has to have USE_GCC=any flag. (I tried, but no luck.) Maybe it has to be marked as BROKEN under FreeBSD 10. From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 10:21:38 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B887599B; Thu, 20 Feb 2014 10:21:38 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8A8391D25; Thu, 20 Feb 2014 10:21: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 s1KALceN078986; Thu, 20 Feb 2014 10:21:38 GMT (envelope-from nemysis@freefall.freebsd.org) Received: (from nemysis@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KALcFh078985; Thu, 20 Feb 2014 10:21:38 GMT (envelope-from nemysis) Date: Thu, 20 Feb 2014 10:21:38 GMT Message-Id: <201402201021.s1KALcFh078985@freefall.freebsd.org> To: nemysis@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, nemysis@FreeBSD.org From: nemysis@FreeBSD.org Subject: Re: ports/186910: pkg-plist doesn't declare file option-dependent X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 10:21:38 -0000 Synopsis: pkg-plist doesn't declare file option-dependent Responsible-Changed-From-To: freebsd-ports-bugs->nemysis Responsible-Changed-By: nemysis Responsible-Changed-When: Thu Feb 20 10:21:38 UTC 2014 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=186910 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 10:30:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8E81DCA1 for ; Thu, 20 Feb 2014 10:30:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 611321DAC for ; Thu, 20 Feb 2014 10: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 s1KAU1Fs079681 for ; Thu, 20 Feb 2014 10:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KAU17J079680; Thu, 20 Feb 2014 10:30:01 GMT (envelope-from gnats) Date: Thu, 20 Feb 2014 10:30:01 GMT Message-Id: <201402201030.s1KAU17J079680@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Pavel Timofeev Subject: Re: ports/186626: net/ss5 can't be installed under FreeBSD 10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Pavel Timofeev List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 10:30:01 -0000 The following reply was made to PR ports/186626; it has been noted by GNATS. From: Pavel Timofeev To: "bug-followup@FreeBSD.org" , raffaele.delorenzo@libero.it Cc: Subject: Re: ports/186626: net/ss5 can't be installed under FreeBSD 10 Date: Thu, 20 Feb 2014 14:27:13 +0400 Hmm, I managed to build it. I installed lang/gcc46. Then made symlink # ln -s /usr/local/bin/gcc46 /usr/local/bin/gcc Added USE_GCC=any to /usr/ports/net/ss5/Makefile. After, I tried to build ss5 and got such message: ..... gcc -O2 -pipe -DLDAP_DEPRECATED -Wl,-rpath=/usr/local/lib/gcc46 -DLDAP_DEPRECATED -fno-strict-aliasing -DFREEBSD -pthread -export-dynamic -I/usr/local/include -I . -I ../include -c SS5Srv.c --- ss5 --- gcc -O2 -pipe -DLDAP_DEPRECATED -Wl,-rpath=/usr/local/lib/gcc46 -DLDAP_DEPRECATED -fno-strict-aliasing -DFREEBSD -pthread -export-dynamic -I/usr/local/include -I . -I ../include -o ss5 SS5Main.o S S5Core.o SS5Server.o SS5Utils.o SS5Thread.o SS5Debug.o SS5GSSApi.o SS5Modules.o ../common/SS5OpenLdap.o ../common/SS5Radius.o ../co mmon/SS5MySql.o -lpthread -lpam -lldap -lc -L /usr/local/lib /usr/local/bin/ld: ../common/SS5Radius.o: undefined reference to symbol 'MD5_Final' //lib/libcrypto.so.7: error adding symbols: DSO missing from command line collect2: ld returned 1 exit status *** [ss5] Error code 1 make[2]: stopped in /usr/ports/net/ss5/work/ss5-3.8.5/src 1 error make[2]: stopped in /usr/ports/net/ss5/work/ss5-3.8.5/src ..... I googled it and found this unresolved closed ticket http://sourceforge.net/p/ss5/support-requests/32/ So I set EXTRA_LIBS to '-lcrypto' and managed to build ss5! It builds, installs and works now. 2014-02-20 14:03 GMT+04:00 Pavel Timofeev : > So, what is the decision? > Is there any way to build it by clang? Can gcc46 build it, for > example? It such way this port has to have USE_GCC=any flag. (I tried, > but no luck.) > > Maybe it has to be marked as BROKEN under FreeBSD 10. From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 10:34:50 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A6F13E40; Thu, 20 Feb 2014 10:34:50 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 798931F5A; Thu, 20 Feb 2014 10:34: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 s1KAYo51082318; Thu, 20 Feb 2014 10:34:50 GMT (envelope-from nemysis@freefall.freebsd.org) Received: (from nemysis@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KAYoQb082317; Thu, 20 Feb 2014 10:34:50 GMT (envelope-from nemysis) Date: Thu, 20 Feb 2014 10:34:50 GMT Message-Id: <201402201034.s1KAYoQb082317@freefall.freebsd.org> To: nemysis@FreeBSD.org, nemysis@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: nemysis@FreeBSD.org Subject: Re: ports/186910: [PATCH] graphics/xpdf: pkg-plist doesn't declare file option-dependent X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 10:34:50 -0000 Synopsis: [PATCH] graphics/xpdf: pkg-plist doesn't declare file option-dependent Responsible-Changed-From-To: nemysis->freebsd-ports-bugs Responsible-Changed-By: nemysis Responsible-Changed-When: Thu Feb 20 10:33:32 UTC 2014 Responsible-Changed-Why: This is for maintainer cy@ http://www.freebsd.org/cgi/query-pr.cgi?pr=186910 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 10:35:47 2014 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 ESMTPS id 8A3CCEA5; Thu, 20 Feb 2014 10:35:47 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5D8181F75; Thu, 20 Feb 2014 10:35: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 s1KAZlnW082452; Thu, 20 Feb 2014 10:35:47 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KAZlpM082451; Thu, 20 Feb 2014 10:35:47 GMT (envelope-from edwin) Date: Thu, 20 Feb 2014 10:35:47 GMT Message-Id: <201402201035.s1KAZlpM082451@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, cy@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186910: [PATCH] graphics/xpdf: pkg-plist doesn't declare file option-dependent X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 10:35:47 -0000 Synopsis: [PATCH] graphics/xpdf: pkg-plist doesn't declare file option-dependent Responsible-Changed-From-To: freebsd-ports-bugs->cy Responsible-Changed-By: edwin Responsible-Changed-When: Thu Feb 20 10:35:47 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186910 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 11:11:24 2014 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 ESMTPS id D3525A8B; Thu, 20 Feb 2014 11:11:24 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A522612D4; Thu, 20 Feb 2014 11:11: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 s1KBBO27094370; Thu, 20 Feb 2014 11:11:24 GMT (envelope-from lwhsu@freefall.freebsd.org) Received: (from lwhsu@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KBBOWg094369; Thu, 20 Feb 2014 11:11:24 GMT (envelope-from lwhsu) Date: Thu, 20 Feb 2014 11:11:24 GMT Message-Id: <201402201111.s1KBBOWg094369@freefall.freebsd.org> To: lwhsu@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, lwhsu@FreeBSD.org From: lwhsu@FreeBSD.org Subject: Re: ports/186512: [MAINTAINER UPDATE] math/stp X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 11:11:24 -0000 Synopsis: [MAINTAINER UPDATE] math/stp Responsible-Changed-From-To: freebsd-ports-bugs->lwhsu Responsible-Changed-By: lwhsu Responsible-Changed-When: Thu Feb 20 11:11:24 UTC 2014 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=186512 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 13:00:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D48325EC for ; Thu, 20 Feb 2014 13:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AD5351CEA for ; Thu, 20 Feb 2014 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 s1KD00TE029634 for ; Thu, 20 Feb 2014 13:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KD00PO029633; Thu, 20 Feb 2014 13:00:00 GMT (envelope-from gnats) Resent-Date: Thu, 20 Feb 2014 13:00:00 GMT Resent-Message-Id: <201402201300.s1KD00PO029633@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 ESMTPS id 6584C44B for ; Thu, 20 Feb 2014 12:51:29 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 510861C8B for ; Thu, 20 Feb 2014 12:51:29 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1KCpSH9059232 for ; Thu, 20 Feb 2014 12:51:28 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1KCpSnt059225; Thu, 20 Feb 2014 12:51:28 GMT (envelope-from nobody) Message-Id: <201402201251.s1KCpSnt059225@cgiserv.freebsd.org> Date: Thu, 20 Feb 2014 12:51:28 GMT From: Kenji Rikitake To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186917: editors/vim 7.4.182 does NOT run lua script X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 13:00:01 -0000 >Number: 186917 >Category: ports >Synopsis: editors/vim 7.4.182 does NOT run lua script >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 Feb 20 13:00:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Kenji Rikitake >Release: 10.0-STABLE >Organization: >Environment: FreeBSD wellmax.priv.k2r.org 10.0-STABLE FreeBSD 10.0-STABLE #27 r261910: Sat Feb 15 17:28:48 JST 2014 root@wellmax.priv.k2r.org:/usr/obj/usr/src/sys/K2RKERNEL amd64 >Description: Lua script cannot be invoked from vim. >How-To-Repeat: /usr/local/bin/vim then enter ":lua print(_VERSION)" >Fix: The modification on the Makefile by sunpoet on ports svn r344966 broke the code of r344782 on 7.4.161_1. Solution: revert back http://svnweb.freebsd.org/ports/head/editors/vim/Makefile?annotate=344966#l154 to http://svnweb.freebsd.org/ports/head/editors/vim/Makefile?annotate=344782#l183 See also http://svnweb.freebsd.org/ports/head/editors/vim/Makefile?r1=344782&r2=344966 I've attached the patch for the Makefile. Patch attached with submission follows: --- Makefile.FCS 2014-02-20 21:37:55.000000000 +0900 +++ Makefile 2014-02-20 21:38:48.000000000 +0900 @@ -155,7 +155,7 @@ @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \ -e 's|\$$gtk_config_prefix/bin/gtk-config|\$${GTK_CONFIG}|g' \ -e 's|\$$gtk_config_exec_prefix/bin/gtk-config|\$${GTK_CONFIG}|g' \ - -e 's|set dummy lua;|set dummy lua-${LUA_VER};|g' ${WRKSRC}/src/auto/configure + -e 's|set dummy lua;|set dummy ${LUA_CMD};|g' ${WRKSRC}/src/auto/configure .if ${PORT_OPTIONS:MXTERM_SAVE} @${REINPLACE_CMD} -e '/FEAT_XTERM_SAVE/ s|.*|#define FEAT_XTERM_SAVE|' ${WRKSRC}/src/feature.h .endif >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 13:00:09 2014 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 ESMTPS id 7F12C61E; Thu, 20 Feb 2014 13:00:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 527261CED; Thu, 20 Feb 2014 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 s1KD091Z029771; Thu, 20 Feb 2014 13:00:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KD09KY029770; Thu, 20 Feb 2014 13:00:09 GMT (envelope-from edwin) Date: Thu, 20 Feb 2014 13:00:09 GMT Message-Id: <201402201300.s1KD09KY029770@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186917: editors/vim 7.4.182 does NOT run lua script X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 13:00:09 -0000 Synopsis: editors/vim 7.4.182 does NOT run lua script Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: edwin Responsible-Changed-When: Thu Feb 20 13:00:08 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186917 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 14:10:02 2014 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 ESMTPS id 14CEE344 for ; Thu, 20 Feb 2014 14:10:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E3D4014D2 for ; Thu, 20 Feb 2014 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 s1KEA14x052308 for ; Thu, 20 Feb 2014 14:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KEA1gZ052307; Thu, 20 Feb 2014 14:10:01 GMT (envelope-from gnats) Resent-Date: Thu, 20 Feb 2014 14:10:01 GMT Resent-Message-Id: <201402201410.s1KEA1gZ052307@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, Lukasz Wasikowski Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 61C69190 for ; Thu, 20 Feb 2014 14:03:16 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3EC351470 for ; Thu, 20 Feb 2014 14:03:16 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1KE3FQP004030 for ; Thu, 20 Feb 2014 14:03:15 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1KE3FhR004028; Thu, 20 Feb 2014 14:03:15 GMT (envelope-from nobody) Message-Id: <201402201403.s1KE3FhR004028@cgiserv.freebsd.org> Date: Thu, 20 Feb 2014 14:03:15 GMT From: Lukasz Wasikowski To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186918: security/silktools can't build under poudriere X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 14:10:02 -0000 >Number: 186918 >Category: ports >Synopsis: security/silktools can't build under 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 Feb 20 14:10:01 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Lukasz Wasikowski >Release: 9.2-RELEASE >Organization: >Environment: FreeBSD ashnazg.cadera.com.pl 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r256440: Wed Oct 16 12:01:38 CEST 2013 root@ashnazg.cadera.com.pl:/usr/obj/usr/src/sys/ASHNAZG amd64 >Description: security/silktools build under poudriere fails with: =================================================== ===> Building package for silktools-3.8.1 tar: bin/rwipfix2silk: Cannot stat: No such file or directory tar: bin/rwp2yaf2silk: Cannot stat: No such file or directory tar: bin/rwsilk2ipfix: Cannot stat: No such file or directory tar: include/silk/skipfix.h: Cannot stat: No such file or directory tar: man/man1/rwipfix2silk.1.gz: Cannot stat: No such file or directory tar: man/man1/rwp2yaf2silk.1.gz: Cannot stat: No such file or directory tar: man/man1/rwsilk2ipfix.1.gz: Cannot stat: No such file or directory tar: Error exit delayed from previous errors. pkg_create: make_dist: tar command failed with code 256 Full build log is available here: http://pastebin.com/y2y5Jue8 There is no make.conf file for poudiere's jail in which silktools was build. >How-To-Repeat: # pkg iinfo poudriere poudriere-devel-3.0.99.20140131 # date && poudriere jail -c -j test -v 9.2-RELEASE -a amd64 -m ftp && poudriere ports -u && poudriere bulk -j test security/silktools Thu Feb 20 14:34:25 CET 2014 ====>> Creating test fs... done ====>> Fetching base.txz for FreeBSD 9.2-RELEASE amd64 /data/poudriere/jails/test/fromftp/base.txz 100% of 64 MB 2295 kBps 00m28s ====>> Extracting base.txz... done ====>> Fetching src.txz for FreeBSD 9.2-RELEASE amd64 /data/poudriere/jails/test/fromftp/src.txz 100% of 95 MB 2310 kBps 00m42s ====>> Extracting src.txz... done ====>> Fetching games.txz for FreeBSD 9.2-RELEASE amd64 /data/poudriere/jails/test/fromftp/games.txz 100% of 866 kB 1347 kBps 00m01s ====>> Extracting games.txz... done ====>> Fetching lib32.txz for FreeBSD 9.2-RELEASE amd64 /data/poudriere/jails/test/fromftp/lib32.txz 100% of 12 MB 2211 kBps 00m05s ====>> Extracting lib32.txz... done ====>> Cleaning up... done ====>> Recording filesystem state for clean... done ====>> Jail test 9.2-RELEASE amd64 is ready to be used ====>> Updating portstree "default" Looking up portsnap.FreeBSD.org mirrors... 7 mirrors found. Fetching snapshot tag from ec2-eu-west-1.portsnap.freebsd.org... done. Fetching snapshot metadata... done. Updating from Thu Feb 20 13:49:55 CET 2014 to Thu Feb 20 14:03:52 CET 2014. Fetching 4 metadata patches... done. Applying metadata patches... done. Fetching 0 metadata files... done. Fetching 15 patches.....10.. done. Applying patches... done. Fetching 0 new ports or files... done. Removing old files and directories... done. Extracting new files: /data/poudriere/ports/default/audio/taglib-extras/ /data/poudriere/ports/default/databases/libiodbc/ /data/poudriere/ports/default/devel/automoc4/ /data/poudriere/ports/default/graphics/kcoloredit/ /data/poudriere/ports/default/graphics/kiconedit/ /data/poudriere/ports/default/graphics/kphotoalbum-kde4/ /data/poudriere/ports/default/graphics/kpovmodeler/ /data/poudriere/ports/default/graphics/kuickshow-kde4/ /data/poudriere/ports/default/math/eigen2/ /data/poudriere/ports/default/ports-mgmt/kpackagekit/ /data/poudriere/ports/default/sysutils/k3b-kde4/ /data/poudriere/ports/default/sysutils/kshutdown-kde4/ /data/poudriere/ports/default/sysutils/policykit-qt/ /data/poudriere/ports/default/sysutils/polkit-qt/ /data/poudriere/ports/default/www/p5-HTML-FormFu-Model-DBIC/ Building new INDEX files... done. ====>> Creating the reference jail... done ====>> Mounting system devices for test-default ====>> Mounting ports/packages/distfiles ====>> Using packages from previously failed build ====>> Mounting packages from: /data/poudriere/data/packages/test-default ====>> Logs: /data/poudriere/data/logs/bulk/test-default/2014-02-20_14h36m45s ====>> WWW: http://poudriere.cadera.com.pl//bulk/test-default/2014-02-20_14h36m45s /etc/resolv.conf -> /data/poudriere/data/build/test-default/ref/etc/resolv.conf ====>> Starting jail test-default ====>> Loading MOVED ====>> Calculating ports order and dependencies ====>> Sanity checking the repository ====>> Deleting stale symlinks ====>> Deleting empty directories ====>> Cleaning the build queue ====>> Recording filesystem state for prepkg... done ====>> Building 1 packages using 1 builders ====>> Starting/Cloning builders ====>> Hit CTRL+t at any time to see build progress and stats ====>> [01] Starting build of security/silktools ====>> [01] Finished build of security/silktools: Failed: package ====>> Stopping 1 builders ====>> No package built, no need to update INDEX ====>> Committing packages to repository ====>> Removing old packages ====>> Cleaning up ====>> Umounting file systems ====>> Failed ports: security/silktools:package ====>> [test-default] 0 packages built, 1 failures, 0 ignored, 0 skipped >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 14:10:02 2014 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 ESMTPS id 6D91A346 for ; Thu, 20 Feb 2014 14:10:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4915C14D6 for ; Thu, 20 Feb 2014 14: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 s1KEA250052321 for ; Thu, 20 Feb 2014 14:10:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KEA2l8052320; Thu, 20 Feb 2014 14:10:02 GMT (envelope-from gnats) Resent-Date: Thu, 20 Feb 2014 14:10:02 GMT Resent-Message-Id: <201402201410.s1KEA2l8052320@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, buffy Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7366B19A for ; Thu, 20 Feb 2014 14:03:36 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5CB921475 for ; Thu, 20 Feb 2014 14:03:36 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1KE3Z11004294 for ; Thu, 20 Feb 2014 14:03:35 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1KE3Zqx004293; Thu, 20 Feb 2014 14:03:35 GMT (envelope-from nobody) Message-Id: <201402201403.s1KE3Zqx004293@cgiserv.freebsd.org> Date: Thu, 20 Feb 2014 14:03:35 GMT From: buffy To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186919: vim port fail to install X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 14:10:02 -0000 >Number: 186919 >Category: ports >Synopsis: vim port fail 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: Thu Feb 20 14:10:01 UTC 2014 >Closed-Date: >Last-Modified: >Originator: buffy >Release: Freebsd 10.0-STABLE FreeBSD 10.0-STABLE #0 r261771 >Organization: >Environment: FreeBSD freebsd 10.0-STABLE FreeBSD 10.0-STABLE #0 r261771: Tue Feb 11 06:17:45 GMT 2014 root@freebsd:/usr/obj/usr/home/bill/10/sys/GENERIC i386 >Description: I ran 'portsnap fetch update' (2/20/2014 at the time of writing) and try to update latest vim When I make install vim, these messages keep coming up and failed to install pkg-static: lstat(/usr/ports/editors/vim/work/stage/usr/local/bin/gvimtutor): No such file or directory pkg-static: lstat(/usr/ports/editors/vim/work/stage/usr/local/man/fr/man1/eview.1.gz): No such file or directory pkg-static: lstat(/usr/ports/editors/vim/work/stage/usr/local/man/fr/man1/gview.1.gz): No such file or directory pkg-static: lstat(/usr/ports/editors/vim/work/stage/usr/local/man/fr/man1/gvim.1.gz): No such file or directory pkg-static: lstat(/usr/ports/editors/vim/work/stage/usr/local/man/fr/man1/gvimdiff.1.gz): No such file or directory pkg-static: lstat(/usr/ports/editors/vim/work/stage/usr/local/man/fr/man1/rgview.1.gz): No such file or directory pkg-static: lstat(/usr/ports/editors/vim/work/stage/usr/local/man/fr/man1/rgvim.1.gz): No such file or directory pkg-static: lstat(/usr/ports/editors/vim/work/stage/usr/local/man/fr.ISO8859-1/man1/eview.1.gz): No such file or directory .. *** Error code 74 Stop. make[1]: stopped in /usr/ports/editors/vim *** Error code 1 >How-To-Repeat: # portsnap fetch udpate # cd /usr/ports/editors/vim # make install >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 14:10:10 2014 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 ESMTPS id D7973373; Thu, 20 Feb 2014 14:10:10 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AA35914DC; Thu, 20 Feb 2014 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 s1KEAAOx052443; Thu, 20 Feb 2014 14:10:10 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KEAAIA052442; Thu, 20 Feb 2014 14:10:10 GMT (envelope-from edwin) Date: Thu, 20 Feb 2014 14:10:10 GMT Message-Id: <201402201410.s1KEAAIA052442@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, lx@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186918: security/silktools can't build under poudriere X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 14:10:10 -0000 Synopsis: security/silktools can't build under poudriere Responsible-Changed-From-To: freebsd-ports-bugs->lx Responsible-Changed-By: edwin Responsible-Changed-When: Thu Feb 20 14:10:10 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186918 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 14:42:38 2014 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 ESMTPS id A52A4B57; Thu, 20 Feb 2014 14:42:38 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 799B418B8; Thu, 20 Feb 2014 14:42: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 s1KEgcV7066046; Thu, 20 Feb 2014 14:42:38 GMT (envelope-from sunpoet@freefall.freebsd.org) Received: (from sunpoet@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KEgcOo066045; Thu, 20 Feb 2014 14:42:38 GMT (envelope-from sunpoet) Date: Thu, 20 Feb 2014 14:42:38 GMT Message-Id: <201402201442.s1KEgcOo066045@freefall.freebsd.org> To: sunpoet@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: sunpoet@FreeBSD.org Subject: Re: ports/186919: vim port fail to install X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 14:42:38 -0000 Synopsis: vim port fail to install Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: sunpoet Responsible-Changed-When: Thu Feb 20 14:42:38 UTC 2014 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=186919 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 15:00:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AA7738F3 for ; Thu, 20 Feb 2014 15:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 82E7A1A46 for ; Thu, 20 Feb 2014 15: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 s1KF00or070151 for ; Thu, 20 Feb 2014 15:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KF00Sm070150; Thu, 20 Feb 2014 15:00:00 GMT (envelope-from gnats) Resent-Date: Thu, 20 Feb 2014 15:00:00 GMT Resent-Message-Id: <201402201500.s1KF00Sm070150@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, Chad Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6933C860 for ; Thu, 20 Feb 2014 14:57:58 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 430531A1D for ; Thu, 20 Feb 2014 14:57:58 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1KEvvBs011510 for ; Thu, 20 Feb 2014 14:57:57 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1KEvvbq011509; Thu, 20 Feb 2014 14:57:57 GMT (envelope-from nobody) Message-Id: <201402201457.s1KEvvbq011509@cgiserv.freebsd.org> Date: Thu, 20 Feb 2014 14:57:57 GMT From: Chad To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186920: Building net/rabbitmq package fails X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 15:00:00 -0000 >Number: 186920 >Category: ports >Synopsis: Building net/rabbitmq package 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: Thu Feb 20 15:00:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Chad >Release: FreeBSD 9.2 >Organization: >Environment: FreeBSD buildi386.wkrp 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255898: Thu Sep 26 22:50:31 UTC 2013 root@bake.isc.freebsd.org:/usr/obj/usr/src/sys/GENERIC i386 AND FreeBSD buildamd64.wkrp 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255898: Thu Sep 26 22:50:31 UTC 2013 root@bake.isc.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Creating a package for the current rabbitmq port fails: PORTNAME= rabbitmq PORTVERSION= 3.2.3 PORTREVISION= 2 $ make clean distclean package ===> Cleaning for rabbitmq-3.2.3_2 ===> Deleting distfiles for rabbitmq-3.2.3_2 ===> License MPL accepted by the user => rabbitmq-server-3.2.3.tar.gz doesn't seem to exist in /usr/ports/distfiles/. => Attempting to fetch http://www.rabbitmq.com/releases/rabbitmq-server/v3.2.3/rabbitmq-server-3.2.3.tar.gz rabbitmq-server-3.2.3.tar.gz 100% of 3502 kB 521 kBps 00m07s ===> Fetching all distfiles required by rabbitmq-3.2.3_2 for building ===> Extracting for rabbitmq-3.2.3_2 => SHA256 Checksum OK for rabbitmq-server-3.2.3.tar.gz. ===> Patching for rabbitmq-3.2.3_2 ===> Applying FreeBSD patches for rabbitmq-3.2.3_2 ===> rabbitmq-3.2.3_2 depends on executable: erl - found ===> rabbitmq-3.2.3_2 depends on package: py27-simplejson>=2.0 - found ===> rabbitmq-3.2.3_2 depends on executable: xmlto - found ===> rabbitmq-3.2.3_2 depends on executable: xsltproc - found ===> rabbitmq-3.2.3_2 depends on executable: unzip - found ===> rabbitmq-3.2.3_2 depends on executable: zip - found ===> rabbitmq-3.2.3_2 depends on file: /usr/local/bin/python2.7 - found ===> rabbitmq-3.2.3_2 depends on executable: gmake - found ===> Configuring for rabbitmq-3.2.3_2 ===> Building for rabbitmq-3.2.3_2 Makefile:378: deps.mk: No such file or directory /usr/local/bin/python2.7 codegen.py body codegen/amqp-rabbitmq-0.9.1.json codegen/credit_extension.json src/rabbit_framing_amqp_0_9_1.erl /usr/local/bin/python2.7 codegen.py body codegen/amqp-rabbitmq-0.8.json src/rabbit_framing_amqp_0_8.erl xsltproc --novalid --stringparam modulename "`basename src/rabbit_ctl_usage.erl .erl`" \ docs/usage.xsl docs/rabbitmqctl.1.xml > src/rabbit_ctl_usage.erl.tmp xsltproc --novalid --stringparam modulename "`basename src/rabbit_plugins_usage.erl .erl`" \ docs/usage.xsl docs/rabbitmq-plugins.1.xml > src/rabbit_plugins_usage.erl.tmp for script in rabbitmq-env rabbitmq-server rabbitmqctl rabbitmq-plugins rabbitmq-defaults; do \ cp scripts/$script /usr/ports/net/rabbitmq/work/stage/usr/local/lib/erlang/lib/rabbitmq_server-3.2.3/sbin; \ [ -e /usr/ports/net/rabbitmq/work/stage/usr/local/sbin//$script ] || ln -s ../lib/erlang/lib/rabbitmq_server-3.2.3/sbin/$script /usr/ports/net/rabbitmq/work/stage/usr/local/sbin//$script; \ done mkdir -p /usr/ports/net/rabbitmq/work/stage/usr/local/lib/erlang/lib/rabbitmq_server-3.2.3/plugins [ -d "plugins" ] && cp plugins/*.ez plugins/README /usr/ports/net/rabbitmq/work/stage/usr/local/lib/erlang/lib/rabbitmq_server-3.2.3/plugins || true xmlto --version | grep -E '^xmlto version 0\.0\.([0-9]|1[1-8])$' >/dev/null || opt='--stringparam man.indent.verbatims=0' ; \ xsltproc --novalid docs/examples-to-end.xsl docs/rabbitmq-env.conf.5.xml > docs/rabbitmq-env.conf.5.xml.tmp && \ xmlto -o docs $opt man docs/rabbitmq-env.conf.5.xml.tmp && \ gzip -f docs/`basename docs/rabbitmq-env.conf.5.xml .xml` xmlto: /usr/ports/net/rabbitmq/work/rabbitmq-server-3.2.3/docs/rabbitmq-env.conf.5.xml.tmp does not validate (status 3) xmlto: Fix document syntax or use --skip-validation option file:///usr/local/share/xml/catalog.ports:1: parser error : Start tag expected, '<' not found PUBLIC "-//OASIS//DTD Entity Resolution XML Catalog V1.0//EN" ^ I/O error : Attempt to load network entity http://www.docbook.org/xml/4.5/docbookx.dtd /usr/ports/net/rabbitmq/work/rabbitmq-server-3.2.3/docs/rabbitmq-env.conf.5.xml.tmp:2: warning: failed to load external entity "http://www.docbook.org/xml/4.5/docbookx.dtd" //OASIS//DTD DocBook XML V4.5//EN" "http://www.docbook.org/xml/4.5/docbookx.dtd" ^ I/O error : Attempt to load network entity http://www.docbook.org/xml/4.5/docbookx.dtd warning: failed to load external entity "http://www.docbook.org/xml/4.5/docbookx.dtd" validity error : Could not load the external subset "http://www.docbook.org/xml/4.5/docbookx.dtd" Document /usr/ports/net/rabbitmq/work/rabbitmq-server-3.2.3/docs/rabbitmq-env.conf.5.xml.tmp does not validate gmake: *** [docs/rabbitmq-env.conf.5.gz] Error 13 *** [do-install] Error code 2 Stop in /usr/ports/net/rabbitmq. $ make install ===> Staging for rabbitmq-3.2.3_2 ===> rabbitmq-3.2.3_2 depends on executable: erl - found ===> Generating temporary packing list ===> Creating users and/or groups. [ -d "plugins-src/rabbitmq-server" ] || ln -s "/usr/ports/net/rabbitmq/work/rabbitmq-server-3.2.3" "plugins-src/rabbitmq-server" mkdir -p plugins PLUGINS_SRC_DIR="" gmake -C "plugins-src" plugins-dist PLUGINS_DIST_DIR="/usr/ports/net/rabbitmq/work/rabbitmq-server-3.2.3/plugins" VERSION=3.2.3 gmake[1]: Entering directory `/usr/ports/net/rabbitmq/work/rabbitmq-server-3.2.3/plugins-src' gmake -f all-packages.mk all-releasable VERSION=3.2.3 gmake[2]: Entering directory `/usr/ports/net/rabbitmq/work/rabbitmq-server-3.2.3/plugins-src' gmake[2]: Nothing to be done for `all-releasable'. gmake[2]: Leaving directory `/usr/ports/net/rabbitmq/work/rabbitmq-server-3.2.3/plugins-src' rm -rf /usr/ports/net/rabbitmq/work/rabbitmq-server-3.2.3/plugins mkdir -p /usr/ports/net/rabbitmq/work/rabbitmq-server-3.2.3/plugins gmake -f all-packages.mk copy-releasable VERSION=3.2.3 PLUGINS_DIST_DIR=/usr/ports/net/rabbitmq/work/rabbitmq-server-3.2.3/plugins gmake[2]: Entering directory `/usr/ports/net/rabbitmq/work/rabbitmq-server-3.2.3/plugins-src' cp rabbitmq-management/dist/*.ez /usr/ports/net/rabbitmq/work/rabbitmq-server-3.2.3/plugins cp rabbitmq-auth-mechanism-ssl/dist/*.ez /usr/ports/net/rabbitmq/work/rabbitmq-server-3.2.3/plugins cp rabbitmq-amqp1.0/dist/*.ez /usr/ports/net/rabbitmq/work/rabbitmq-server-3.2.3/plugins cp rabbitmq-web-stomp/dist/*.ez /usr/ports/net/rabbitmq/work/rabbitmq-server-3.2.3/plugins cp ./rabbitmq-stomp/dist/*.ez /usr/ports/net/rabbitmq/work/rabbitmq-server-3.2.3/plugins cp rabbitmq-shovel/dist/*.ez /usr/ports/net/rabbitmq/work/rabbitmq-server-3.2.3/plugins cp rabbitmq-tracing/dist/*.ez /usr/ports/net/rabbitmq/work/rabbitmq-server-3.2.3/plugins cp rabbitmq-management-visualiser/dist/*.ez /usr/ports/net/rabbitmq/work/rabbitmq-server-3.2.3/plugins cp rabbitmq-jsonrpc-channel-examples/dist/*.ez /usr/ports/net/rabbitmq/work/rabbitmq-server-3.2.3/plugins cp ./rabbitmq-jsonrpc-channel/dist/*.ez /usr/ports/net/rabbitmq/work/rabbitmq-server-3.2.3/plugins cp rabbitmq-auth-backend-ldap/dist/*.ez /usr/ports/net/rabbitmq/work/rabbitmq-server-3.2.3/plugins cp rabbitmq-federation-management/dist/*.ez /usr/ports/net/rabbitmq/work/rabbitmq-server-3.2.3/plugins cp rabbitmq-shovel-management/dist/*.ez /usr/ports/net/rabbitmq/work/rabbitmq-server-3.2.3/plugins cp rabbitmq-consistent-hash-exchange/dist/*.ez /usr/ports/net/rabbitmq/work/rabbitmq-server-3.2.3/plugins cp rabbitmq-federation/dist/*.ez /usr/ports/net/rabbitmq/work/rabbitmq-server-3.2.3/plugins cp rabbitmq-web-stomp-examples/dist/*.ez /usr/ports/net/rabbitmq/work/rabbitmq-server-3.2.3/plugins cp rabbitmq-mqtt/dist/*.ez /usr/ports/net/rabbitmq/work/rabbitmq-server-3.2.3/plugins gmake[2]: Leaving directory `/usr/ports/net/rabbitmq/work/rabbitmq-server-3.2.3/plugins-src' gmake[1]: Leaving directory `/usr/ports/net/rabbitmq/work/rabbitmq-server-3.2.3/plugins-src' echo "Put your EZs here and use rabbitmq-plugins to enable them." > plugins/README rm -f plugins/rabbit_common*.ez mkdir -p /usr/ports/net/rabbitmq/work/stage/usr/local/lib/erlang/lib/rabbitmq_server-3.2.3/sbin mkdir -p /usr/ports/net/rabbitmq/work/stage/usr/local/sbin/ mkdir -p /usr/ports/net/rabbitmq/work/stage/usr/local/man mkdir -p /usr/ports/net/rabbitmq/work/stage/usr/local/share/examples/rabbitmq cp -r ebin include LICENSE* INSTALL /usr/ports/net/rabbitmq/work/stage/usr/local/lib/erlang/lib/rabbitmq_server-3.2.3 chmod 0755 scripts/* for script in rabbitmq-env rabbitmq-server rabbitmqctl rabbitmq-plugins rabbitmq-defaults; do \ cp scripts/$script /usr/ports/net/rabbitmq/work/stage/usr/local/lib/erlang/lib/rabbitmq_server-3.2.3/sbin; \ [ -e /usr/ports/net/rabbitmq/work/stage/usr/local/sbin//$script ] || ln -s ../lib/erlang/lib/rabbitmq_server-3.2.3/sbin/$script /usr/ports/net/rabbitmq/work/stage/usr/local/sbin//$script; \ done mkdir -p /usr/ports/net/rabbitmq/work/stage/usr/local/lib/erlang/lib/rabbitmq_server-3.2.3/plugins [ -d "plugins" ] && cp plugins/*.ez plugins/README /usr/ports/net/rabbitmq/work/stage/usr/local/lib/erlang/lib/rabbitmq_server-3.2.3/plugins || true xmlto --version | grep -E '^xmlto version 0\.0\.([0-9]|1[1-8])$' >/dev/null || opt='--stringparam man.indent.verbatims=0' ; \ xsltproc --novalid docs/examples-to-end.xsl docs/rabbitmq-env.conf.5.xml > docs/rabbitmq-env.conf.5.xml.tmp && \ xmlto -o docs $opt man docs/rabbitmq-env.conf.5.xml.tmp && \ gzip -f docs/`basename docs/rabbitmq-env.conf.5.xml .xml` xmlto: /usr/ports/net/rabbitmq/work/rabbitmq-server-3.2.3/docs/rabbitmq-env.conf.5.xml.tmp does not validate (status 3) xmlto: Fix document syntax or use --skip-validation option file:///usr/local/share/xml/catalog.ports:1: parser error : Start tag expected, '<' not found PUBLIC "-//OASIS//DTD Entity Resolution XML Catalog V1.0//EN" ^ I/O error : Attempt to load network entity http://www.docbook.org/xml/4.5/docbookx.dtd /usr/ports/net/rabbitmq/work/rabbitmq-server-3.2.3/docs/rabbitmq-env.conf.5.xml.tmp:2: warning: failed to load external entity "http://www.docbook.org/xml/4.5/docbookx.dtd" //OASIS//DTD DocBook XML V4.5//EN" "http://www.docbook.org/xml/4.5/docbookx.dtd" ^ I/O error : Attempt to load network entity http://www.docbook.org/xml/4.5/docbookx.dtd warning: failed to load external entity "http://www.docbook.org/xml/4.5/docbookx.dtd" validity error : Could not load the external subset "http://www.docbook.org/xml/4.5/docbookx.dtd" Document /usr/ports/net/rabbitmq/work/rabbitmq-server-3.2.3/docs/rabbitmq-env.conf.5.xml.tmp does not validate gmake: *** [docs/rabbitmq-env.conf.5.gz] Error 13 *** [do-install] Error code 2 Stop in /usr/ports/net/rabbitmq. >How-To-Repeat: $ cd /usr/ports/net/rabbitmq $ make clean distclean package $ make install (fails as well) >Fix: Likely related to the latest textproc/docbook* port updates. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 15:00:09 2014 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 ESMTPS id 559A9926; Thu, 20 Feb 2014 15:00:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 296E41A4A; Thu, 20 Feb 2014 15: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 s1KF09gM070290; Thu, 20 Feb 2014 15:00:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KF08Bq070289; Thu, 20 Feb 2014 15:00:08 GMT (envelope-from edwin) Date: Thu, 20 Feb 2014 15:00:08 GMT Message-Id: <201402201500.s1KF08Bq070289@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, olgeni@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186920: Building net/rabbitmq package fails X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 15:00:09 -0000 Synopsis: Building net/rabbitmq package fails Responsible-Changed-From-To: freebsd-ports-bugs->olgeni Responsible-Changed-By: edwin Responsible-Changed-When: Thu Feb 20 15:00:08 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186920 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 15:20:01 2014 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 ESMTPS id 477FC176 for ; Thu, 20 Feb 2014 15:20:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 313501C60 for ; Thu, 20 Feb 2014 15: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 s1KFK0jQ077279 for ; Thu, 20 Feb 2014 15:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KFK0Nk077278; Thu, 20 Feb 2014 15:20:00 GMT (envelope-from gnats) Date: Thu, 20 Feb 2014 15:20:00 GMT Message-Id: <201402201520.s1KFK0Nk077278@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: "Florian Degner" Subject: Re: ports/186670: [patch] astro/foxtrotgps: wrong paths in pkg-plist causes install to fail X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Florian Degner List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 15:20:01 -0000 The following reply was made to PR ports/186670; it has been noted by GNATS. From: "Florian Degner" To: "Craig Whipp" , bug-followup@freebsd.org Cc: Subject: Re: ports/186670: [patch] astro/foxtrotgps: wrong paths in pkg-plist causes install to fail Date: Thu, 20 Feb 2014 16:12:05 +0100 ------------audS1gc3SQgQr1jN9YdRQf Content-Type: text/plain; charset=iso-8859-1; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit On Thu, 13 Feb 2014 16:44:05 +0100, Craig Whipp wrote: > Florian, > > Can you provide me with more details on what your configuration was > when you were building this? I've been unable to duplicate the error > on a 10.0-RELEASE machine, and applying your patch results in a > failure similar to what you reported in the pr. > > What FreeBSD version, output of 'uname -a', any locales configured (I > see you have a .de top level domain in your email), customizations to > make.conf, etc. > > Thanks, > Craig Craig, there's indeed something non-standard in my /etc/make.conf. The problem is triggered by compiling astro/foxtrotgps with gcc46. When CC=gcc46 ./configure generates different Makefiles. Things break because it sets DATADIRNAME=share (it's DATADIRNAME=lib when $CC is "cc" or "clang"). DATADIRNAME is used to determine where the locale files go: % find work -name "Makefile" | xargs grep DATADIRNAME ... work/foxtrotgps-1.1.1/po/Makefile:itlocaledir = $(prefix)/$(DATADIRNAME)/locale ... % The interesting part is that "share" is actually the correct value. So the real problem is that we get DATADIRNAME=lib by default. This in turn can be fixed in a compiler-independent fashion by setting DATADIRNAME via CONFIGURE_ENV (see attached patch). Cheers, Flo ------------audS1gc3SQgQr1jN9YdRQf Content-Disposition: attachment; filename=foxtrotgps.patch Content-Type: application/octet-stream; name="foxtrotgps.patch" Content-Transfer-Encoding: Base64 SW5kZXg6IGFzdHJvL2ZveHRyb3RncHMvTWFrZWZpbGUKPT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PQotLS0gYXN0cm8vZm94dHJvdGdwcy9NYWtlZmlsZQkocmV2aXNpb24gMzQ0 MzE3KQorKysgYXN0cm8vZm94dHJvdGdwcy9NYWtlZmlsZQkod29ya2luZyBjb3B5 KQpAQCAtMTYsNiArMTYsNyBAQAogCQlsaWJncHMuc286JHtQT1JUU0RJUn0vYXN0 cm8vZ3BzZAogCiBHTlVfQ09ORklHVVJFPQl5ZXMKK0NPTkZJR1VSRV9FTlY9CQlE QVRBRElSTkFNRT1zaGFyZQogQ09ORklHVVJFX0FSR1M9CS0tZGlzYWJsZS1zY2hl bWFzLWluc3RhbGwKIFVTRVM9CQlnZXR0ZXh0IGdtYWtlIHBrZ2NvbmZpZyBzaGVi YW5nZml4CiBTSEVCQU5HX0ZJTEVTPQljb250cmliL2NvbnZlcnQyZ3B4IFwKSW5k ZXg6IGFzdHJvL2ZveHRyb3RncHMvcGtnLXBsaXN0Cj09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT0KLS0tIGFzdHJvL2ZveHRyb3RncHMvcGtnLXBsaXN0CShyZXZpc2lvbiAzNDQz MTcpCisrKyBhc3Ryby9mb3h0cm90Z3BzL3BrZy1wbGlzdAkod29ya2luZyBjb3B5 KQpAQCAtNCwxOCArNCwxOCBAQAogYmluL2dlb3JzczJmb3h0cm90Z3BzLXBvaQog YmluL29zYjJmb3h0cm90CiBiaW4vcG9pMm9zbQotbGliL2xvY2FsZS9iZy9MQ19N RVNTQUdFUy9mb3h0cm90Z3BzLm1vCi1saWIvbG9jYWxlL2NzL0xDX01FU1NBR0VT L2ZveHRyb3RncHMubW8KLWxpYi9sb2NhbGUvZGUvTENfTUVTU0FHRVMvZm94dHJv dGdwcy5tbwotbGliL2xvY2FsZS9lcy9MQ19NRVNTQUdFUy9mb3h0cm90Z3BzLm1v Ci1saWIvbG9jYWxlL2ZpL0xDX01FU1NBR0VTL2ZveHRyb3RncHMubW8KLWxpYi9s b2NhbGUvZnIvTENfTUVTU0FHRVMvZm94dHJvdGdwcy5tbwotbGliL2xvY2FsZS9o dS9MQ19NRVNTQUdFUy9mb3h0cm90Z3BzLm1vCi1saWIvbG9jYWxlL25sL0xDX01F U1NBR0VTL2ZveHRyb3RncHMubW8KLWxpYi9sb2NhbGUvcnUvTENfTUVTU0FHRVMv Zm94dHJvdGdwcy5tbwotbGliL2xvY2FsZS9zay9MQ19NRVNTQUdFUy9mb3h0cm90 Z3BzLm1vCi1saWIvbG9jYWxlL2phL0xDX01FU1NBR0VTL2ZveHRyb3RncHMubW8K LWxpYi9sb2NhbGUvc3IvTENfTUVTU0FHRVMvZm94dHJvdGdwcy5tbworc2hhcmUv bG9jYWxlL2JnL0xDX01FU1NBR0VTL2ZveHRyb3RncHMubW8KK3NoYXJlL2xvY2Fs ZS9jcy9MQ19NRVNTQUdFUy9mb3h0cm90Z3BzLm1vCitzaGFyZS9sb2NhbGUvZGUv TENfTUVTU0FHRVMvZm94dHJvdGdwcy5tbworc2hhcmUvbG9jYWxlL2VzL0xDX01F U1NBR0VTL2ZveHRyb3RncHMubW8KK3NoYXJlL2xvY2FsZS9maS9MQ19NRVNTQUdF Uy9mb3h0cm90Z3BzLm1vCitzaGFyZS9sb2NhbGUvZnIvTENfTUVTU0FHRVMvZm94 dHJvdGdwcy5tbworc2hhcmUvbG9jYWxlL2h1L0xDX01FU1NBR0VTL2ZveHRyb3Rn cHMubW8KK3NoYXJlL2xvY2FsZS9ubC9MQ19NRVNTQUdFUy9mb3h0cm90Z3BzLm1v CitzaGFyZS9sb2NhbGUvcnUvTENfTUVTU0FHRVMvZm94dHJvdGdwcy5tbworc2hh cmUvbG9jYWxlL3NrL0xDX01FU1NBR0VTL2ZveHRyb3RncHMubW8KK3NoYXJlL2xv Y2FsZS9qYS9MQ19NRVNTQUdFUy9mb3h0cm90Z3BzLm1vCitzaGFyZS9sb2NhbGUv c3IvTENfTUVTU0FHRVMvZm94dHJvdGdwcy5tbwogbWFuL21hbjEvY29udmVydDJn cHguMS5negogbWFuL21hbjEvY29udmVydDJvc20uMS5negogbWFuL21hbjEvZm94 dHJvdGdwcy4xLmd6CkBAIC0zOCwyOCArMzgsMjggQEAKIHNoYXJlL3BpeG1hcHMv Zm94dHJvdGdwcy5wbmcKIEBkaXJybSAlJURBVEFESVIlJQogQGRpcnJtICUlRE9D U0RJUiUlCi1AZGlycm10cnkgbGliL2xvY2FsZS9zay9MQ19NRVNTQUdFUwotQGRp cnJtdHJ5IGxpYi9sb2NhbGUvc2sKLUBkaXJybXRyeSBsaWIvbG9jYWxlL3J1L0xD X01FU1NBR0VTCi1AZGlycm10cnkgbGliL2xvY2FsZS9ydQotQGRpcnJtdHJ5IGxp Yi9sb2NhbGUvbmwvTENfTUVTU0FHRVMKLUBkaXJybXRyeSBsaWIvbG9jYWxlL25s Ci1AZGlycm10cnkgbGliL2xvY2FsZS9odS9MQ19NRVNTQUdFUwotQGRpcnJtdHJ5 IGxpYi9sb2NhbGUvaHUKLUBkaXJybXRyeSBsaWIvbG9jYWxlL2ZyL0xDX01FU1NB R0VTCi1AZGlycm10cnkgbGliL2xvY2FsZS9mcgotQGRpcnJtdHJ5IGxpYi9sb2Nh bGUvZmkvTENfTUVTU0FHRVMKLUBkaXJybXRyeSBsaWIvbG9jYWxlL2ZpCi1AZGly cm10cnkgbGliL2xvY2FsZS9lcy9MQ19NRVNTQUdFUwotQGRpcnJtdHJ5IGxpYi9s b2NhbGUvZXMKLUBkaXJybXRyeSBsaWIvbG9jYWxlL2RlL0xDX01FU1NBR0VTCi1A ZGlycm10cnkgbGliL2xvY2FsZS9kZQotQGRpcnJtdHJ5IGxpYi9sb2NhbGUvY3Mv TENfTUVTU0FHRVMKLUBkaXJybXRyeSBsaWIvbG9jYWxlL2NzCi1AZGlycm10cnkg bGliL2xvY2FsZS9iZy9MQ19NRVNTQUdFUwotQGRpcnJtdHJ5IGxpYi9sb2NhbGUv YmcKLUBkaXJybXRyeSBsaWIvbG9jYWxlL2phL0xDX01FU1NBR0VTCi1AZGlycm10 cnkgbGliL2xvY2FsZS9qYQotQGRpcnJtdHJ5IGxpYi9sb2NhbGUvc3IvTENfTUVT U0FHRVMKLUBkaXJybXRyeSBsaWIvbG9jYWxlL3NyCi1AZGlycm10cnkgbGliL2xv Y2FsZQorQGRpcnJtdHJ5IHNoYXJlL2xvY2FsZS9zay9MQ19NRVNTQUdFUworQGRp cnJtdHJ5IHNoYXJlL2xvY2FsZS9zaworQGRpcnJtdHJ5IHNoYXJlL2xvY2FsZS9y dS9MQ19NRVNTQUdFUworQGRpcnJtdHJ5IHNoYXJlL2xvY2FsZS9ydQorQGRpcnJt dHJ5IHNoYXJlL2xvY2FsZS9ubC9MQ19NRVNTQUdFUworQGRpcnJtdHJ5IHNoYXJl L2xvY2FsZS9ubAorQGRpcnJtdHJ5IHNoYXJlL2xvY2FsZS9odS9MQ19NRVNTQUdF UworQGRpcnJtdHJ5IHNoYXJlL2xvY2FsZS9odQorQGRpcnJtdHJ5IHNoYXJlL2xv Y2FsZS9mci9MQ19NRVNTQUdFUworQGRpcnJtdHJ5IHNoYXJlL2xvY2FsZS9mcgor QGRpcnJtdHJ5IHNoYXJlL2xvY2FsZS9maS9MQ19NRVNTQUdFUworQGRpcnJtdHJ5 IHNoYXJlL2xvY2FsZS9maQorQGRpcnJtdHJ5IHNoYXJlL2xvY2FsZS9lcy9MQ19N RVNTQUdFUworQGRpcnJtdHJ5IHNoYXJlL2xvY2FsZS9lcworQGRpcnJtdHJ5IHNo YXJlL2xvY2FsZS9kZS9MQ19NRVNTQUdFUworQGRpcnJtdHJ5IHNoYXJlL2xvY2Fs ZS9kZQorQGRpcnJtdHJ5IHNoYXJlL2xvY2FsZS9jcy9MQ19NRVNTQUdFUworQGRp cnJtdHJ5IHNoYXJlL2xvY2FsZS9jcworQGRpcnJtdHJ5IHNoYXJlL2xvY2FsZS9i Zy9MQ19NRVNTQUdFUworQGRpcnJtdHJ5IHNoYXJlL2xvY2FsZS9iZworQGRpcnJt dHJ5IHNoYXJlL2xvY2FsZS9qYS9MQ19NRVNTQUdFUworQGRpcnJtdHJ5IHNoYXJl L2xvY2FsZS9qYQorQGRpcnJtdHJ5IHNoYXJlL2xvY2FsZS9zci9MQ19NRVNTQUdF UworQGRpcnJtdHJ5IHNoYXJlL2xvY2FsZS9zcgorQGRpcnJtdHJ5IHNoYXJlL2xv Y2FsZQo= ------------audS1gc3SQgQr1jN9YdRQf-- From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 15:50:01 2014 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 ESMTPS id 0EF53A85 for ; Thu, 20 Feb 2014 15:50:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CA6271004 for ; Thu, 20 Feb 2014 15: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 s1KFo0Lp086209 for ; Thu, 20 Feb 2014 15:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KFo06f086208; Thu, 20 Feb 2014 15:50:00 GMT (envelope-from gnats) Resent-Date: Thu, 20 Feb 2014 15:50:00 GMT Resent-Message-Id: <201402201550.s1KFo06f086208@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, Niclas Zeising Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8F25B8E8 for ; Thu, 20 Feb 2014 15:43:32 +0000 (UTC) Received: from mail.lysator.liu.se (mail.lysator.liu.se [IPv6:2001:6b0:17:f0a0::3]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1706D1FBC for ; Thu, 20 Feb 2014 15:43:32 +0000 (UTC) Received: from mail.lysator.liu.se (localhost [127.0.0.1]) by mail.lysator.liu.se (Postfix) with ESMTP id 595C64000A for ; Thu, 20 Feb 2014 16:43:29 +0100 (CET) Received: by mail.lysator.liu.se (Postfix, from userid 1004) id 4EE674000F; Thu, 20 Feb 2014 16:43:29 +0100 (CET) Received: from mx.daemonic.se (unknown [94.254.45.105]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.lysator.liu.se (Postfix) with ESMTPSA id EEE1F4000A for ; Thu, 20 Feb 2014 16:43:28 +0100 (CET) Received: from mailscanner.daemonic.se (mailscanner.daemonic.se [IPv6:2001:470:dca9:0:1::6]) by mx.daemonic.se (Postfix) with ESMTPS id 3fVKp84rP0z8gh6 for ; Thu, 20 Feb 2014 16:43:28 +0100 (CET) Received: from mx.daemonic.se ([IPv6:2001:470:dca9:0:1::3]) (using TLS with cipher CAMELLIA256-SHA) by mailscanner.daemonic.se (mailscanner.daemonic.se [IPv6:2001:470:dca9:0:1::6]) (amavisd-new, port 10025) with ESMTPS id cHbxzX2NbJ9f for ; Thu, 20 Feb 2014 16:43:26 +0100 (CET) Received: from mail.daemonic.se (mail.daemonic.se [IPv6:2001:470:dca9:0:1::4]) by mx.daemonic.se (Postfix) with ESMTPS id 3fVKp12snZz8gh2 for ; Thu, 20 Feb 2014 16:43:21 +0100 (CET) Received: from vivi.daemonic.se (vivi.daemonic.se [IPv6:2001:470:dca9:1::4]) by mail.daemonic.se (Postfix) with ESMTPS id 3fVKp12Q5Gz9CvV for ; Thu, 20 Feb 2014 16:43:21 +0100 (CET) Received: (from zeising@localhost) by vivi.daemonic.se (8.14.7/8.14.7/Submit) id s1KFhLJ0017989; Thu, 20 Feb 2014 16:43:21 +0100 (CET) (envelope-from zeising) Message-Id: <201402201543.s1KFhLJ0017989@vivi.daemonic.se> Date: Thu, 20 Feb 2014 16:43:21 +0100 (CET) From: Niclas Zeising To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/186921: [PATCH] editors/vim fix plist and dependencies X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Niclas Zeising List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 15:50:01 -0000 >Number: 186921 >Category: ports >Synopsis: [PATCH] editors/vim fix plist and dependencies >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 Feb 20 15:50:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Niclas Zeising >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD vivi.daemonic.se 10.0-CURRENT FreeBSD 10.0-CURRENT #0 r252979M: Sun Jul 7 21:07:39 CEST 2013 root@vivi.daemonic.se:/usr/obj/usr/src/sys/VIVI amd64 >Description: The editors/vim port has a broken plist, missing two entries. It also misses a dependency and passes an unknown option to configure. >How-To-Repeat: >Fix: Attached patch adds the missing dependency, removes the unknown configure option and fixes the plist. --- ports.vim.cleanup.diff begins here --- Index: editors/vim/Makefile =================================================================== --- editors/vim/Makefile (revision 345249) +++ editors/vim/Makefile (working copy) @@ -3,7 +3,7 @@ PORTNAME= vim PORTVERSION= 7.4.${PATCHLEVEL} -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES?= editors MASTER_SITES= VIM:source \ ${MASTER_SITE_VIM:S|unix|patches/${PORTVERSION:R}|}:patch \ @@ -89,9 +89,9 @@ CSCOPE_RUN_DEPENDS= ${LOCALBASE}/bin/cscope:${PORTSDIR}/devel/cscope EXUBERANT_CTAGS_RUN_DEPENDS= ${LOCALBASE}/bin/exctags:${PORTSDIR}/devel/ctags GNOME_MAKE_ARGS= CONF_OPT_GUI=--enable-gui=gnome2 X_LIBS="$(X_LIBS) -lX11 -lXt" -GNOME_USE= GNOME=libgnomeui XORG=glproto,xt -GTK2_MAKE_ARGS= CONF_OPT_GUI="--enable-gui=gtk2 --with-gtk-prefix=${LOCALBASE}" X_LIBS="$(X_LIBS) -lX11 -lXt" -GTK2_USE= GNOME=gtk20 XORG=xt +GNOME_USE= GNOME=libgnomeui XORG=glproto,xpm,xt +GTK2_MAKE_ARGS= CONF_OPT_GUI=--enable-gui=gtk2 X_LIBS="$(X_LIBS) -lX11 -lXt" +GTK2_USE= GNOME=gtk20 XORG=xpm,xt LUA_MAKE_ARGS= CONF_OPT_LUA=--enable-luainterp=dynamic \ CONF_OPT_LUA_PREFIX=--with-lua-prefix=${LOCALBASE} LUA_USES= lua Index: editors/vim/pkg-plist =================================================================== --- editors/vim/pkg-plist (revision 345249) +++ editors/vim/pkg-plist (working copy) @@ -190,6 +190,8 @@ %%NON_LITE%%%%NLS%%@dirrmtry man/pl.UTF-8 %%NON_LITE%%%%NLS%%@dirrmtry man/pl.ISO8859-2/man1 %%NON_LITE%%%%NLS%%@dirrmtry man/pl.ISO8859-2 +%%NON_LITE%%%%NLS%%@dirrmtry man/pl/man1 +%%NON_LITE%%%%NLS%%@dirrmtry man/pl %%NON_LITE%%%%NLS%%@dirrmtry man/it.UTF-8/man1 %%NON_LITE%%%%NLS%%@dirrmtry man/it.UTF-8 %%NON_LITE%%%%NLS%%@dirrmtry man/it.ISO8859-1/man1 --- ports.vim.cleanup.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 15:50:09 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D43D5AB2; Thu, 20 Feb 2014 15:50:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A82881005; Thu, 20 Feb 2014 15: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 s1KFo9X8086344; Thu, 20 Feb 2014 15:50:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KFo9ds086343; Thu, 20 Feb 2014 15:50:09 GMT (envelope-from edwin) Date: Thu, 20 Feb 2014 15:50:09 GMT Message-Id: <201402201550.s1KFo9ds086343@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186921: [PATCH] editors/vim fix plist and dependencies X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 15:50:09 -0000 Synopsis: [PATCH] editors/vim fix plist and dependencies Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: edwin Responsible-Changed-When: Thu Feb 20 15:50:09 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186921 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 16:00:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E6452D2F for ; Thu, 20 Feb 2014 16:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AE75F1116 for ; Thu, 20 Feb 2014 16: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 s1KG00Ub089146 for ; Thu, 20 Feb 2014 16:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KG00x4089145; Thu, 20 Feb 2014 16:00:00 GMT (envelope-from gnats) Resent-Date: Thu, 20 Feb 2014 16:00:00 GMT Resent-Message-Id: <201402201600.s1KG00x4089145@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, Niclas Zeising Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5C068C57 for ; Thu, 20 Feb 2014 15:58:03 +0000 (UTC) Received: from mail.lysator.liu.se (mail.lysator.liu.se [IPv6:2001:6b0:17:f0a0::3]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D503010EB for ; Thu, 20 Feb 2014 15:58:02 +0000 (UTC) Received: from mail.lysator.liu.se (localhost [127.0.0.1]) by mail.lysator.liu.se (Postfix) with ESMTP id 625F34000A for ; Thu, 20 Feb 2014 16:58:01 +0100 (CET) Received: by mail.lysator.liu.se (Postfix, from userid 1004) id 551014000F; Thu, 20 Feb 2014 16:58:01 +0100 (CET) Received: from mx.daemonic.se (unknown [94.254.45.105]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.lysator.liu.se (Postfix) with ESMTPSA id 37D2F4000A for ; Thu, 20 Feb 2014 16:57:59 +0100 (CET) Received: from mailscanner.daemonic.se (mailscanner.daemonic.se [IPv6:2001:470:dca9:0:1::6]) by mx.daemonic.se (Postfix) with ESMTPS id 3fVL6v0F3Fz8gh2 for ; Thu, 20 Feb 2014 16:57:59 +0100 (CET) Received: from mx.daemonic.se ([10.1.0.3]) (using TLS with cipher CAMELLIA256-SHA) by mailscanner.daemonic.se (mailscanner.daemonic.se [10.1.0.6]) (amavisd-new, port 10025) with ESMTPS id mEokCOZFGS2z for ; Thu, 20 Feb 2014 16:57:56 +0100 (CET) Received: from mail.daemonic.se (mail.daemonic.se [IPv6:2001:470:dca9:0:1::4]) by mx.daemonic.se (Postfix) with ESMTPS id 3fVL6r17hJz8ggv for ; Thu, 20 Feb 2014 16:57:56 +0100 (CET) Received: from vivi.daemonic.se (vivi.daemonic.se [IPv6:2001:470:dca9:1::4]) by mail.daemonic.se (Postfix) with ESMTPS id 3fVL6r0DB3z9CvV for ; Thu, 20 Feb 2014 16:57:56 +0100 (CET) Received: (from zeising@localhost) by vivi.daemonic.se (8.14.7/8.14.7/Submit) id s1KFvtXm050532; Thu, 20 Feb 2014 16:57:55 +0100 (CET) (envelope-from zeising) Message-Id: <201402201557.s1KFvtXm050532@vivi.daemonic.se> Date: Thu, 20 Feb 2014 16:57:55 +0100 (CET) From: Niclas Zeising To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/186922: [PATCH] update x11/xcb-util-wm to 0.4.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Niclas Zeising List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 16:00:01 -0000 >Number: 186922 >Category: ports >Synopsis: [PATCH] update x11/xcb-util-wm to 0.4.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: Thu Feb 20 16:00:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Niclas Zeising >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD vivi.daemonic.se 10.0-CURRENT FreeBSD 10.0-CURRENT #0 r252979M: Sun Jul 7 21:07:39 CEST 2013 root@vivi.daemonic.se:/usr/obj/usr/src/sys/VIVI amd64 >Description: Attached patch updates x11/xcb-util-wm to 0.4.1, which is the latest version. >How-To-Repeat: >Fix: --- ports.xcb-util-wm.update.0.4.1.diff begins here --- Index: x11/xcb-util-wm/Makefile =================================================================== --- x11/xcb-util-wm/Makefile (revision 345142) +++ x11/xcb-util-wm/Makefile (working copy) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= xcb-util-wm -PORTVERSION= 0.4.0 +PORTVERSION= 0.4.1 CATEGORIES= x11 MASTER_SITES= http://xcb.freedesktop.org/dist/ Index: x11/xcb-util-wm/distinfo =================================================================== --- x11/xcb-util-wm/distinfo (revision 345142) +++ x11/xcb-util-wm/distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (xcb-util-wm-0.4.0.tar.bz2) = 66f97c18f7d98d3c873fe5db5842d2fca34519274c31ee668551ab8995a2f51f -SIZE (xcb-util-wm-0.4.0.tar.bz2) = 324316 +SHA256 (xcb-util-wm-0.4.1.tar.bz2) = 28bf8179640eaa89276d2b0f1ce4285103d136be6c98262b6151aaee1d3c2a3f +SIZE (xcb-util-wm-0.4.1.tar.bz2) = 321855 Index: x11/xcb-util-wm/pkg-plist =================================================================== --- x11/xcb-util-wm/pkg-plist (revision 345099) +++ x11/xcb-util-wm/pkg-plist (working copy) @@ -10,3 +10,4 @@ lib/libxcb-ewmh.a libdata/pkgconfig/xcb-icccm.pc libdata/pkgconfig/xcb-ewmh.pc +@dirrmtry include/xcb --- ports.xcb-util-wm.update.0.4.1.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 16:00:13 2014 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 ESMTPS id 15367D6B; Thu, 20 Feb 2014 16:00:13 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DCDFF117C; Thu, 20 Feb 2014 16: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 s1KG0C7T089281; Thu, 20 Feb 2014 16:00:12 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KG0CY3089280; Thu, 20 Feb 2014 16:00:12 GMT (envelope-from edwin) Date: Thu, 20 Feb 2014 16:00:12 GMT Message-Id: <201402201600.s1KG0CY3089280@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, garga@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186922: [PATCH] update x11/xcb-util-wm to 0.4.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 16:00:13 -0000 Synopsis: [PATCH] update x11/xcb-util-wm to 0.4.1 Responsible-Changed-From-To: freebsd-ports-bugs->garga Responsible-Changed-By: edwin Responsible-Changed-When: Thu Feb 20 16:00:12 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186922 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 17:10:00 2014 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 ESMTPS id C745CF7C for ; Thu, 20 Feb 2014 17:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A032B17B7 for ; Thu, 20 Feb 2014 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 s1KHA0cH011936 for ; Thu, 20 Feb 2014 17:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KHA0FX011934; Thu, 20 Feb 2014 17:10:00 GMT (envelope-from gnats) Resent-Date: Thu, 20 Feb 2014 17:10:00 GMT Resent-Message-Id: <201402201710.s1KHA0FX011934@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, Winston Weinert Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A7FC0E60 for ; Thu, 20 Feb 2014 17:06:18 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7782E179E for ; Thu, 20 Feb 2014 17:06:18 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1KH6H03089554 for ; Thu, 20 Feb 2014 17:06:17 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1KH6HqP089553; Thu, 20 Feb 2014 17:06:17 GMT (envelope-from nobody) Message-Id: <201402201706.s1KH6HqP089553@cgiserv.freebsd.org> Date: Thu, 20 Feb 2014 17:06:17 GMT From: Winston Weinert To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186924: Update port: net/drawterm 20140106 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 17:10:00 -0000 >Number: 186924 >Category: ports >Synopsis: Update port: net/drawterm 20140106 >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 Feb 20 17:10:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Winston Weinert >Release: 10.0-RELEASE >Organization: >Environment: FreeBSD freebsd 10.0-RELEASE FreeBSD 10.0-RELEASE #0 r260789: Thu Jan 16 22:34:59 UTC 2014 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Bumped version from 20110822 to 20140106 and added STAGEDIR support. I am the original maintainer (winstonw@lavabit.com). Unfortunately lavabit.com has since closed down -- my new email is winston@ml1.net >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN drawterm.orig/Makefile drawterm/Makefile --- drawterm.orig/Makefile 2014-02-20 11:03:37.000000000 -0600 +++ drawterm/Makefile 2014-02-20 01:41:36.000000000 -0600 @@ -2,12 +2,12 @@ # $FreeBSD: head/net/drawterm/Makefile 340722 2014-01-22 17:00:46Z mat $ PORTNAME= drawterm -PORTVERSION= 20110822 +PORTVERSION= 20140106 CATEGORIES= net MASTER_SITES= http://swtch.com/drawterm/ EXTRACT_SUFX= .tgz -MAINTAINER= winstonw@lavabit.com +MAINTAINER= winston@ml1.net COMMENT= Plan9 cpu client # Additionally the Lucent Public License @@ -21,14 +21,13 @@ MAKE_ARGS= CONF=pthread -NO_STAGE= yes do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/drawterm ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/drawterm ${STAGEDIR}${PREFIX}/bin post-install: .if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - ${INSTALL_MAN} ${WRKSRC}/README ${WRKSRC}/LICENSE ${DOCSDIR} + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_MAN} ${WRKSRC}/README ${WRKSRC}/LICENSE ${STAGEDIR}${DOCSDIR} .endif .include diff -ruN drawterm.orig/distinfo drawterm/distinfo --- drawterm.orig/distinfo 2014-02-20 11:03:37.000000000 -0600 +++ drawterm/distinfo 2014-02-17 17:08:22.000000000 -0600 @@ -1,2 +1,2 @@ -SHA256 (drawterm-20110822.tgz) = 457dddbd4719f6de912e06004f1f23136bed5364994904dd4a121d65b7bd1b6e -SIZE (drawterm-20110822.tgz) = 1191196 +SHA256 (drawterm-20140106.tgz) = d165e86f3a0aa82fd70764ac4b08f9312ac3c6c4f559bf3e37588d6a92af394a +SIZE (drawterm-20140106.tgz) = 1283386 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 17:10:09 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 48D34FAE; Thu, 20 Feb 2014 17:10:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1AD1417BD; Thu, 20 Feb 2014 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 s1KHA8KP012698; Thu, 20 Feb 2014 17:10:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KHA8c4012631; Thu, 20 Feb 2014 17:10:08 GMT (envelope-from edwin) Date: Thu, 20 Feb 2014 17:10:08 GMT Message-Id: <201402201710.s1KHA8c4012631@freefall.freebsd.org> To: winston@ml1.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186924: Update port: net/drawterm 20140106 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 17:10:09 -0000 Synopsis: Update port: net/drawterm 20140106 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Thu Feb 20 17:10:08 UTC 2014 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186924 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 17:20:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 776BE329 for ; Thu, 20 Feb 2014 17:20:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5B84118B0 for ; Thu, 20 Feb 2014 17: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 s1KHK1Du016011 for ; Thu, 20 Feb 2014 17:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KHK1s8016010; Thu, 20 Feb 2014 17:20:01 GMT (envelope-from gnats) Date: Thu, 20 Feb 2014 17:20:01 GMT Message-Id: <201402201720.s1KHK1s8016010@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/186924: Update port: net/drawterm 20140106 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 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, 20 Feb 2014 17:20:01 -0000 The following reply was made to PR ports/186924; it has been noted by GNATS. From: Edwin Groothuis To: winstonw@lavabit.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/186924: Update port: net/drawterm 20140106 Date: Thu, 20 Feb 2014 17:10:07 UT Maintainer of net/drawterm, Please note that PR ports/186924 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/186924 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 17:55:52 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7A54ED0D; Thu, 20 Feb 2014 17:55:52 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4B81C1C19; Thu, 20 Feb 2014 17:55: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 s1KHtqQZ027787; Thu, 20 Feb 2014 17:55:52 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KHtq5W027786; Thu, 20 Feb 2014 17:55:52 GMT (envelope-from linimon) Date: Thu, 20 Feb 2014 17:55:52 GMT Message-Id: <201402201755.s1KHtq5W027786@freefall.freebsd.org> To: quentin.stievenart@gmail.com, linimon@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/186887: Re: [UPDATE] graphics/zathura: update to 0.2.7 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 17:55:52 -0000 Synopsis: Re: [UPDATE] graphics/zathura: update to 0.2.7 State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Thu Feb 20 17:54:25 UTC 2014 State-Changed-Why: Misfiled followup to ports/186868, already committed. Responsible-Changed-From-To: gnats-admin->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Thu Feb 20 17:54:25 UTC 2014 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=186887 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 19:10:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9EC459F8 for ; Thu, 20 Feb 2014 19:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 78C4613C1 for ; Thu, 20 Feb 2014 19: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 s1KJA07q054252 for ; Thu, 20 Feb 2014 19:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KJA0hq054251; Thu, 20 Feb 2014 19:10:00 GMT (envelope-from gnats) Resent-Date: Thu, 20 Feb 2014 19:10:00 GMT Resent-Message-Id: <201402201910.s1KJA0hq054251@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, Winston Weinert Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 02A4C58E for ; Thu, 20 Feb 2014 19:00:28 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E1B1C12DA for ; Thu, 20 Feb 2014 19:00:27 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1KJ0P4G029616 for ; Thu, 20 Feb 2014 19:00:25 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1KJ0PxO029611; Thu, 20 Feb 2014 19:00:25 GMT (envelope-from nobody) Message-Id: <201402201900.s1KJ0PxO029611@cgiserv.freebsd.org> Date: Thu, 20 Feb 2014 19:00:25 GMT From: Winston Weinert To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186926: Update port: x11-fonts/roboto-fonts-ttf 1.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 19:10:00 -0000 >Number: 186926 >Category: ports >Synopsis: Update port: x11-fonts/roboto-fonts-ttf 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: Thu Feb 20 19:10:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Winston Weinert >Release: 10.0-RELEASE >Organization: >Environment: FreeBSD freebsd 10.0-RELEASE FreeBSD 10.0-RELEASE #0 r260789: Thu Jan 16 22:34:59 UTC 2014 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Bumped from 20111129 to 1.2, added STAGEDIR support, and added rules to pkg-plist to rebuild the font cache. I am the original maintainer (winstonw@lavabit.com). Unfortunately lavabit.com has since closed down -- my new email is winston@ml1.net >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN roboto-fonts-ttf.orig/Makefile roboto-fonts-ttf/Makefile --- roboto-fonts-ttf.orig/Makefile 2014-02-20 11:03:37.000000000 -0600 +++ roboto-fonts-ttf/Makefile 2014-02-20 11:19:12.000000000 -0600 @@ -2,20 +2,24 @@ # $FreeBSD: head/x11-fonts/roboto-fonts-ttf/Makefile 340722 2014-01-22 17:00:46Z mat $ PORTNAME= roboto-fonts-ttf -PORTVERSION= 20111129 +PORTVERSION= 1.2 +PORTEPOCH= 1 CATEGORIES= x11-fonts -MASTER_SITES= http://developer.android.com/design/static/download/ -DISTNAME= Roboto_Hinted_${PORTVERSION} +MASTER_SITES= http://developer.android.com/downloads/design/ +DISTNAME= roboto-${PORTVERSION} -MAINTAINER= winstonw@lavabit.com +MAINTAINER= winston@ml1.net COMMENT= The Roboto typeface family LICENSE= APACHE20 BUILD_DEPENDS= mkfontdir:${PORTSDIR}/x11-fonts/mkfontdir \ - mkfontscale:${PORTSDIR}/x11-fonts/mkfontscale + mkfontscale:${PORTSDIR}/x11-fonts/mkfontscale \ + fc-cache:${PORTSDIR}/x11-fonts/fontconfig +RUN_DEPENDS= fc-cache:${PORTSDIR}/x11-fonts/fontconfig USE_ZIP= yes +WRKSRC= ${WRKDIR}/Roboto_v${PORTVERSION} FONTDIR= lib/X11/fonts/Roboto PKGMESSAGE= ${WRKDIR}/pkg-message @@ -23,17 +27,15 @@ SUB_FILES= pkg-message SUB_LIST= FONTDIR=${FONTDIR} -NO_STAGE= yes do-build: - @cd ${WRKSRC}/ && \ + @${MV} ${WRKSRC}/Roboto/*.ttf ${WRKSRC}/RobotoCondensed/*.ttf ${WRKSRC} + @cd ${WRKSRC} && \ ${LOCALBASE}/bin/mkfontscale && \ ${LOCALBASE}/bin/mkfontdir do-install: - ${MKDIR} ${PREFIX}/${FONTDIR}/ - cd ${WRKSRC}/ && ${INSTALL_DATA} *.ttf fonts.* ${PREFIX}/${FONTDIR}/ - -post-install: - @${CAT} ${PKGMESSAGE} + ${MKDIR} ${STAGEDIR}${PREFIX}/${FONTDIR} + cd ${WRKSRC}/ && ${INSTALL_DATA} *.ttf fonts.dir fonts.scale \ + ${STAGEDIR}${PREFIX}/${FONTDIR} .include diff -ruN roboto-fonts-ttf.orig/distinfo roboto-fonts-ttf/distinfo --- roboto-fonts-ttf.orig/distinfo 2014-02-20 11:03:37.000000000 -0600 +++ roboto-fonts-ttf/distinfo 2014-02-17 17:15:56.000000000 -0600 @@ -1,2 +1,2 @@ -SHA256 (Roboto_Hinted_20111129.zip) = 99e865226391af3ac922f476c20d3e82fb471e7cece512486f92438b6d37dfcf -SIZE (Roboto_Hinted_20111129.zip) = 1505533 +SHA256 (roboto-1.2.zip) = 5101b5bdb3b7b14cc922a771ba068bfcae8634467c1f446bc89bc2b4f8b4f1b5 +SIZE (roboto-1.2.zip) = 2641284 diff -ruN roboto-fonts-ttf.orig/pkg-descr roboto-fonts-ttf/pkg-descr --- roboto-fonts-ttf.orig/pkg-descr 2014-02-20 11:03:37.000000000 -0600 +++ roboto-fonts-ttf/pkg-descr 2014-02-17 17:18:17.000000000 -0600 @@ -3,4 +3,4 @@ Cream Sandwich". This typeface is designed for high resolution mobile devices so it includes several typefaces for text in different sizes. -WWW: http://developer.android.com/design/style/typography.html +WWW: http://developer.android.com/design/style/typography.html diff -ruN roboto-fonts-ttf.orig/pkg-plist roboto-fonts-ttf/pkg-plist --- roboto-fonts-ttf.orig/pkg-plist 2014-02-20 11:03:37.000000000 -0600 +++ roboto-fonts-ttf/pkg-plist 2014-02-20 11:19:58.000000000 -0600 @@ -1,11 +1,7 @@ %%FONTDIR%%/Roboto-Black.ttf %%FONTDIR%%/Roboto-BlackItalic.ttf %%FONTDIR%%/Roboto-Bold.ttf -%%FONTDIR%%/Roboto-BoldCondensed.ttf -%%FONTDIR%%/Roboto-BoldCondensedItalic.ttf %%FONTDIR%%/Roboto-BoldItalic.ttf -%%FONTDIR%%/Roboto-Condensed.ttf -%%FONTDIR%%/Roboto-CondensedItalic.ttf %%FONTDIR%%/Roboto-Italic.ttf %%FONTDIR%%/Roboto-Light.ttf %%FONTDIR%%/Roboto-LightItalic.ttf @@ -14,7 +10,14 @@ %%FONTDIR%%/Roboto-Regular.ttf %%FONTDIR%%/Roboto-Thin.ttf %%FONTDIR%%/Roboto-ThinItalic.ttf +%%FONTDIR%%/RobotoCondensed-Bold.ttf +%%FONTDIR%%/RobotoCondensed-BoldItalic.ttf +%%FONTDIR%%/RobotoCondensed-Italic.ttf +%%FONTDIR%%/RobotoCondensed-Light.ttf +%%FONTDIR%%/RobotoCondensed-LightItalic.ttf +%%FONTDIR%%/RobotoCondensed-Regular.ttf %%FONTDIR%%/fonts.dir %%FONTDIR%%/fonts.scale -@unexec rm %D/%%FONTDIR%%/fonts.cache-1 2>/dev/null || true +@unexec /bin/rm %D/%%FONTDIR%%/fonts.cache-1 2>/dev/null || /usr/bin/true @dirrm %%FONTDIR%% +@exec %%LOCALBASE%%/bin/fc-cache -f -v %D/%%FONTDIR%% || /usr/bin/true >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 19:10:09 2014 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 ESMTPS id EE8E3A34; Thu, 20 Feb 2014 19:10:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9724C13C4; Thu, 20 Feb 2014 19: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 s1KJA9RY054385; Thu, 20 Feb 2014 19:10:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KJA9tl054384; Thu, 20 Feb 2014 19:10:09 GMT (envelope-from edwin) Date: Thu, 20 Feb 2014 19:10:09 GMT Message-Id: <201402201910.s1KJA9tl054384@freefall.freebsd.org> To: winston@ml1.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186926: Update port: x11-fonts/roboto-fonts-ttf 1.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 19:10:10 -0000 Synopsis: Update port: x11-fonts/roboto-fonts-ttf 1.2 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Thu Feb 20 19:10:09 UTC 2014 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186926 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 19:20:01 2014 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 ESMTPS id 56277E07 for ; Thu, 20 Feb 2014 19:20:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3E01F14F8 for ; Thu, 20 Feb 2014 19: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 s1KJK13I058389 for ; Thu, 20 Feb 2014 19:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KJK0n3058388; Thu, 20 Feb 2014 19:20:00 GMT (envelope-from gnats) Date: Thu, 20 Feb 2014 19:20:00 GMT Message-Id: <201402201920.s1KJK0n3058388@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/186926: Update port: x11-fonts/roboto-fonts-ttf 1.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 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, 20 Feb 2014 19:20:01 -0000 The following reply was made to PR ports/186926; it has been noted by GNATS. From: Edwin Groothuis To: winstonw@lavabit.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/186926: Update port: x11-fonts/roboto-fonts-ttf 1.2 Date: Thu, 20 Feb 2014 19:10:08 UT Maintainer of x11-fonts/roboto-fonts-ttf, Please note that PR ports/186926 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/186926 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 19:40:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BDB35682 for ; Thu, 20 Feb 2014 19:40:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A908716FD for ; Thu, 20 Feb 2014 19: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 s1KJe1o0064586 for ; Thu, 20 Feb 2014 19:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KJe1Cl064585; Thu, 20 Feb 2014 19:40:01 GMT (envelope-from gnats) Date: Thu, 20 Feb 2014 19:40:01 GMT Message-Id: <201402201940.s1KJe1Cl064585@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Rainer Hurling Subject: Re: ports/186563: databases/postgis21: error: use of undeclared identifier 'ICONV_SET_TRANSLITERATE' X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Rainer Hurling List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 19:40:01 -0000 The following reply was made to PR ports/186563; it has been noted by GNATS. From: Rainer Hurling To: bug-followup@FreeBSD.org, ohartman@zedat.fu-berlin.de Cc: Subject: Re: ports/186563: databases/postgis21: error: use of undeclared identifier 'ICONV_SET_TRANSLITERATE' Date: Thu, 20 Feb 2014 20:34:21 +0100 Caused on the error message, I think it should be more sufficient to use 'iconv:translit' instead of 'iconv:wchar_t', shouldn't it? At least it works for me on 11.0-CURRENT amd64 r262153. --- Makefile.orig 2013-11-10 07:10:40.000000000 +0100 +++ Makefile 2014-02-20 20:28:12.000000000 +0100 @@ -19,7 +19,7 @@ USE_GNOME= libxml2 USE_PGSQL= yes -USES= gmake iconv perl5 pkgconfig +USES= gmake iconv:translit perl5 pkgconfig USE_LDCONFIG= yes GNU_CONFIGURE= yes USE_PERL5= build From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 20:27:46 2014 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 ESMTPS id 84F9BBE4; Thu, 20 Feb 2014 20:27:46 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5990A1B46; Thu, 20 Feb 2014 20:27: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 s1KKRklg080263; Thu, 20 Feb 2014 20:27:46 GMT (envelope-from nemysis@freefall.freebsd.org) Received: (from nemysis@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KKRjo6080262; Thu, 20 Feb 2014 20:27:45 GMT (envelope-from nemysis) Date: Thu, 20 Feb 2014 20:27:45 GMT Message-Id: <201402202027.s1KKRjo6080262@freefall.freebsd.org> To: winstonw@lavabit.com, winston@ml1.net, nemysis@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: nemysis@FreeBSD.org Subject: Re: ports/186924: [MAINTAINER-UPDATE] net/drawterm: Update to 20140106 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 20:27:46 -0000 Old Synopsis: Update port: net/drawterm 20140106 New Synopsis: [MAINTAINER-UPDATE] net/drawterm: Update to 20140106 State-Changed-From-To: feedback->open State-Changed-By: nemysis State-Changed-When: Thu Feb 20 20:24:57 UTC 2014 State-Changed-Why: Maintainer is submiter. http://www.freebsd.org/cgi/query-pr.cgi?pr=186924 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 20:29:17 2014 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 ESMTPS id 0A063C4D; Thu, 20 Feb 2014 20:29:17 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D1B571B60; Thu, 20 Feb 2014 20:29: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 s1KKTGsM080352; Thu, 20 Feb 2014 20:29:16 GMT (envelope-from nemysis@freefall.freebsd.org) Received: (from nemysis@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KKTGlu080351; Thu, 20 Feb 2014 20:29:16 GMT (envelope-from nemysis) Date: Thu, 20 Feb 2014 20:29:16 GMT Message-Id: <201402202029.s1KKTGlu080351@freefall.freebsd.org> To: winstonw@lavabit.com, winston@ml1.net, nemysis@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: nemysis@FreeBSD.org Subject: Re: ports/186926: [MAINTAINER-UPDATE] x11-fonts/roboto-fonts-ttf: Update to 1.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 20:29:17 -0000 Old Synopsis: Update port: x11-fonts/roboto-fonts-ttf 1.2 New Synopsis: [MAINTAINER-UPDATE] x11-fonts/roboto-fonts-ttf: Update to 1.2 State-Changed-From-To: feedback->open State-Changed-By: nemysis State-Changed-When: Thu Feb 20 20:28:04 UTC 2014 State-Changed-Why: Maintainer is submiter. http://www.freebsd.org/cgi/query-pr.cgi?pr=186926 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 20:56:34 2014 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 ESMTPS id C28F6BA7; Thu, 20 Feb 2014 20:56:34 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 90F7B1E4E; Thu, 20 Feb 2014 20: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 s1KKuY4S089255; Thu, 20 Feb 2014 20:56:34 GMT (envelope-from antoine@freefall.freebsd.org) Received: (from antoine@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KKuUnd089254; Thu, 20 Feb 2014 20:56:30 GMT (envelope-from antoine) Date: Thu, 20 Feb 2014 20:56:30 GMT Message-Id: <201402202056.s1KKuUnd089254@freefall.freebsd.org> To: jnlin@csie.nctu.edu.tw, gslin@gslin.org, antoine@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: antoine@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.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 20:56:34 -0000 Synopsis: [PATCH] net/scribe: Update to 2.2.2013.04.15 State-Changed-From-To: feedback->closed State-Changed-By: antoine State-Changed-When: Thu Feb 20 20:56:10 UTC 2014 State-Changed-Why: Patch committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=181609 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 20:57:12 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 28481C35; Thu, 20 Feb 2014 20:57:12 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EDFB21E9A; Thu, 20 Feb 2014 20:57: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 s1KKvBnl089337; Thu, 20 Feb 2014 20:57:11 GMT (envelope-from antoine@freefall.freebsd.org) Received: (from antoine@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KKvBaG089336; Thu, 20 Feb 2014 20:57:11 GMT (envelope-from antoine) Date: Thu, 20 Feb 2014 20:57:11 GMT Message-Id: <201402202057.s1KKvBaG089336@freefall.freebsd.org> To: jnlin@csie.nctu.edu.tw, gslin@gslin.org, antoine@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: antoine@FreeBSD.org Subject: Re: ports/178973: [PATCH] net/scribe: Use USE_GITHUB framework to fetch file, and install two scripts X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 20:57:12 -0000 Synopsis: [PATCH] net/scribe: Use USE_GITHUB framework to fetch file, and install two scripts State-Changed-From-To: feedback->closed State-Changed-By: antoine State-Changed-When: Thu Feb 20 20:56:57 UTC 2014 State-Changed-Why: close http://www.freebsd.org/cgi/query-pr.cgi?pr=178973 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 20:57:51 2014 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 ESMTPS id B45C2CAC; Thu, 20 Feb 2014 20:57:51 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8768D1F60; Thu, 20 Feb 2014 20:57: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 s1KKvpKH089395; Thu, 20 Feb 2014 20:57:51 GMT (envelope-from antoine@freefall.freebsd.org) Received: (from antoine@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KKvmNB089394; Thu, 20 Feb 2014 20:57:48 GMT (envelope-from antoine) Date: Thu, 20 Feb 2014 20:57:48 GMT Message-Id: <201402202057.s1KKvmNB089394@freefall.freebsd.org> To: m.tsatsenko@gmail.com, garya@dreamchaser.org, antoine@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: antoine@FreeBSD.org Subject: Re: ports/181021: x11-toolkits/open-motif fails to build because YY_MAIN undefined for wmluiltok.c X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 20:57:51 -0000 Synopsis: x11-toolkits/open-motif fails to build because YY_MAIN undefined for wmluiltok.c State-Changed-From-To: feedback->closed State-Changed-By: antoine State-Changed-When: Thu Feb 20 20:57:28 UTC 2014 State-Changed-Why: Close, feedback timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=181021 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 21:00:01 2014 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 ESMTPS id 53533D49 for ; Thu, 20 Feb 2014 21:00:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3138D1F7C for ; Thu, 20 Feb 2014 21: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 s1KL01Iu089593 for ; Thu, 20 Feb 2014 21:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KL01gB089592; Thu, 20 Feb 2014 21:00:01 GMT (envelope-from gnats) Date: Thu, 20 Feb 2014 21:00:01 GMT Message-Id: <201402202100.s1KL01gB089592@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/181609: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 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: Thu, 20 Feb 2014 21:00:01 -0000 The following reply was made to PR ports/181609; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/181609: commit references a PR Date: Thu, 20 Feb 2014 20:55:53 +0000 (UTC) Author: antoine Date: Thu Feb 20 20:55:45 2014 New Revision: 345264 URL: http://svnweb.freebsd.org/changeset/ports/345264 QAT: https://qat.redports.org/buildarchive/r345264/ Log: - Update to 2.2.2013.04.15 - Possibly unbreak PR: ports/181609 Submitted by: Gea-Suan Lin Approved by: maintainer timeout (6 months) Deleted: head/net/scribe/files/patch-src-file.cpp Modified: head/net/scribe/Makefile head/net/scribe/distinfo head/net/scribe/pkg-descr Modified: head/net/scribe/Makefile ============================================================================== --- head/net/scribe/Makefile Thu Feb 20 20:29:12 2014 (r345263) +++ head/net/scribe/Makefile Thu Feb 20 20:55:45 2014 (r345264) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= scribe -DISTVERSION= 2.2.2012.01.07 -PORTREVISION= 5 +DISTVERSION= 2.2.2013.04.15 CATEGORIES= net MASTER_SITES= https://github.com/facebook/scribe/tarball/${GITVERSION}/ DISTNAME= facebook-scribe-${GITVERSION} @@ -20,7 +19,7 @@ RUN_DEPENDS= p5-Class-Accessor>0:${PORTS p5-Thrift>0:${PORTSDIR}/devel/p5-Thrift \ ${PYTHON_SITELIBDIR}/thrift/__init__.py:${PORTSDIR}/devel/py-thrift -GITVERSION= 63e4824 +GITVERSION= 7359a09 WRKSRC= ${WRKDIR}/${DISTNAME} ACLOCAL_ARGS= -I ./aclocal @@ -33,6 +32,9 @@ USE_PYTHON= yes USE_RC_SUBR= ${PORTNAME} USES= gmake perl5 +post-patch: + ${REINPLACE_CMD} -e 's/^AM_INIT_AUTOMAKE/#/' ${WRKSRC}/configure.ac + post-build: ${LOCALBASE}/bin/thrift -o ${WRKSRC} -I ${LOCALBASE}/share --gen "perl" ${WRKSRC}/if/scribe.thrift Modified: head/net/scribe/distinfo ============================================================================== --- head/net/scribe/distinfo Thu Feb 20 20:29:12 2014 (r345263) +++ head/net/scribe/distinfo Thu Feb 20 20:55:45 2014 (r345264) @@ -1,2 +1,2 @@ -SHA256 (facebook-scribe-63e4824.tar.gz) = e4fd56649e35b8ff508d8f915cd29bd15b888c301043a7d930acf83b9ee5aa2f -SIZE (facebook-scribe-63e4824.tar.gz) = 97107 +SHA256 (facebook-scribe-7359a09.tar.gz) = c40168c9a77f0d95242a1142f050d6d84a5a202ce2883e0dbb93af8a7a3a9204 +SIZE (facebook-scribe-7359a09.tar.gz) = 97261 Modified: head/net/scribe/pkg-descr ============================================================================== --- head/net/scribe/pkg-descr Thu Feb 20 20:29:12 2014 (r345263) +++ head/net/scribe/pkg-descr Thu Feb 20 20:55:45 2014 (r345264) @@ -3,4 +3,4 @@ from a large number of servers. It is de extensible without client-side modification, and robust to failure of the network or any specific machine. -WWW: http://github.com/facebook/scribe +WWW: http://github.com/facebook/scribe _______________________________________________ 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 Thu Feb 20 21:25:42 2014 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 ESMTPS id 920139FC; Thu, 20 Feb 2014 21:25:42 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6600C1215; Thu, 20 Feb 2014 21:25: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 s1KLPgV2099308; Thu, 20 Feb 2014 21:25:42 GMT (envelope-from rakuco@freefall.freebsd.org) Received: (from rakuco@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KLPfCV099307; Thu, 20 Feb 2014 21:25:41 GMT (envelope-from rakuco) Date: Thu, 20 Feb 2014 21:25:41 GMT Message-Id: <201402202125.s1KLPfCV099307@freefall.freebsd.org> To: winstonw@lavabit.com, winston@ml1.net, rakuco@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: rakuco@FreeBSD.org Subject: Re: ports/186924: [MAINTAINER-UPDATE] net/drawterm: Update to 20140106 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 21:25:42 -0000 Synopsis: [MAINTAINER-UPDATE] net/drawterm: Update to 20140106 State-Changed-From-To: open->closed State-Changed-By: rakuco State-Changed-When: Thu Feb 20 21:25:41 UTC 2014 State-Changed-Why: Committed. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=186924 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 21:30:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 677FCC4D for ; Thu, 20 Feb 2014 21:30:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3989A125F for ; Thu, 20 Feb 2014 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 s1KLU154099564 for ; Thu, 20 Feb 2014 21:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KLU1nJ099563; Thu, 20 Feb 2014 21:30:01 GMT (envelope-from gnats) Date: Thu, 20 Feb 2014 21:30:01 GMT Message-Id: <201402202130.s1KLU1nJ099563@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/186924: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 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: Thu, 20 Feb 2014 21:30:01 -0000 The following reply was made to PR ports/186924; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/186924: commit references a PR Date: Thu, 20 Feb 2014 21:25:15 +0000 (UTC) Author: rakuco Date: Thu Feb 20 21:25:08 2014 New Revision: 345268 URL: http://svnweb.freebsd.org/changeset/ports/345268 QAT: https://qat.redports.org/buildarchive/r345268/ Log: - Update to 20140106. - Support staging. - Update maintainer email address. PR: ports/186924 Submitted by: Winston Weinert (maintainer) Modified: head/net/drawterm/Makefile head/net/drawterm/distinfo Modified: head/net/drawterm/Makefile ============================================================================== --- head/net/drawterm/Makefile Thu Feb 20 21:06:49 2014 (r345267) +++ head/net/drawterm/Makefile Thu Feb 20 21:25:08 2014 (r345268) @@ -2,12 +2,12 @@ # $FreeBSD$ PORTNAME= drawterm -PORTVERSION= 20110822 +PORTVERSION= 20140106 CATEGORIES= net MASTER_SITES= http://swtch.com/drawterm/ EXTRACT_SUFX= .tgz -MAINTAINER= winstonw@lavabit.com +MAINTAINER= winston@ml1.net COMMENT= Plan9 cpu client # Additionally the Lucent Public License @@ -21,14 +21,13 @@ WRKSRC= ${WRKDIR}/${PORTNAME} MAKE_ARGS= CONF=pthread -NO_STAGE= yes do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/drawterm ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/drawterm ${STAGEDIR}${PREFIX}/bin post-install: .if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - ${INSTALL_MAN} ${WRKSRC}/README ${WRKSRC}/LICENSE ${DOCSDIR} + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_MAN} ${WRKSRC}/README ${WRKSRC}/LICENSE ${STAGEDIR}${DOCSDIR} .endif .include Modified: head/net/drawterm/distinfo ============================================================================== --- head/net/drawterm/distinfo Thu Feb 20 21:06:49 2014 (r345267) +++ head/net/drawterm/distinfo Thu Feb 20 21:25:08 2014 (r345268) @@ -1,2 +1,2 @@ -SHA256 (drawterm-20110822.tgz) = 457dddbd4719f6de912e06004f1f23136bed5364994904dd4a121d65b7bd1b6e -SIZE (drawterm-20110822.tgz) = 1191196 +SHA256 (drawterm-20140106.tgz) = d165e86f3a0aa82fd70764ac4b08f9312ac3c6c4f559bf3e37588d6a92af394a +SIZE (drawterm-20140106.tgz) = 1283386 _______________________________________________ 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 Thu Feb 20 22:00:01 2014 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 ESMTPS id DB890B7F for ; Thu, 20 Feb 2014 22:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B609E1584 for ; Thu, 20 Feb 2014 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 s1KM00tY008523 for ; Thu, 20 Feb 2014 22:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KM00AD008522; Thu, 20 Feb 2014 22:00:00 GMT (envelope-from gnats) Resent-Date: Thu, 20 Feb 2014 22:00:00 GMT Resent-Message-Id: <201402202200.s1KM00AD008522@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, "G. Tpdd" Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4B1B66C0 for ; Thu, 20 Feb 2014 21:50:26 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 14B6A149E for ; Thu, 20 Feb 2014 21:50:26 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1KLoPad065503 for ; Thu, 20 Feb 2014 21:50:25 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1KLoPKX065502; Thu, 20 Feb 2014 21:50:25 GMT (envelope-from nobody) Message-Id: <201402202150.s1KLoPKX065502@cgiserv.freebsd.org> Date: Thu, 20 Feb 2014 21:50:25 GMT From: "G. Tpdd" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186928: [UPDATE] net/fping -- ports patch for version 3.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 22:00:01 -0000 >Number: 186928 >Category: ports >Synopsis: [UPDATE] net/fping -- ports patch for version 3.8 >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 Feb 20 22:00:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: G. Tpdd >Release: 9.2-RELEASE >Organization: >Environment: FreeBSD localhost.internal 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255898: Thu Sep 26 22:50:31 UTC 2013 root@bake.isc.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: svn diff to update net/fping to 3.8 - Added LICENSE_FILE - Change LICENSE to match upstream (ancestral BSD license). - Included a header file. - Reported upstream. Probably could use a bit more testing - leaving that to maintainer/committer ;-) cheers >How-To-Repeat: update >Fix: svn diff of port is attached. Patch attached with submission follows: Index: Makefile =================================================================== --- Makefile (revision 343950) +++ Makefile (working copy) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= fping -PORTVERSION= 3.5 +PORTVERSION= 3.8 CATEGORIES= net ipv6 MASTER_SITES= http://fping.org/dist/ @@ -9,7 +9,8 @@ MAINTAINER= jharris@widomaker.com COMMENT= Quickly ping N hosts w/o flooding the network -LICENSE= GFDL +LICENSE= BSD +LICENSE_FILE= ${WRKSRC}/COPYING OPTIONS_MULTI= NET OPTIONS_MULTI_NET= IPV4 IPV6 Index: distinfo =================================================================== --- distinfo (revision 343950) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (fping-3.5.tar.gz) = 09b8960e235341bae6000085d38106357eae656a79e0119bd27e816c9003656a -SIZE (fping-3.5.tar.gz) = 145512 +SHA256 (fping-3.8.tar.gz) = c77406cfe93725e38506779c9a2a59d79fe8f81cab9e732e4f405b3e3a913c12 +SIZE (fping-3.8.tar.gz) = 147448 Index: files/patch-src::fping.h =================================================================== --- files/patch-src::fping.h (revision 0) +++ files/patch-src::fping.h (working copy) @@ -0,0 +1,10 @@ +--- src/fping.h.orig 2014-02-11 08:45:57.099772218 -0500 ++++ src/fping.h 2014-02-11 08:47:08.567771444 -0500 +@@ -4,6 +4,7 @@ + #define __APPLE_USE_RFC_3542 1 + + #include ++#include + #include + + #ifndef IPV6 Property changes on: files/patch-src::fping.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 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 22:00:09 2014 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 ESMTPS id D4EBABAF; Thu, 20 Feb 2014 22:00:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A9EAA15EC; Thu, 20 Feb 2014 22: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 s1KM09LJ008656; Thu, 20 Feb 2014 22:00:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KM09cb008655; Thu, 20 Feb 2014 22:00:09 GMT (envelope-from edwin) Date: Thu, 20 Feb 2014 22:00:09 GMT Message-Id: <201402202200.s1KM09cb008655@freefall.freebsd.org> To: gtodd@bellanet.org, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186928: [UPDATE] net/fping -- ports patch for version 3.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 22:00:09 -0000 Synopsis: [UPDATE] net/fping -- ports patch for version 3.8 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Thu Feb 20 22:00:09 UTC 2014 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186928 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 22:10:01 2014 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 ESMTPS id 3E25ED8C for ; Thu, 20 Feb 2014 22:10:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 29F33164E for ; Thu, 20 Feb 2014 22: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 s1KMA1H5011946 for ; Thu, 20 Feb 2014 22:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KMA0nw011945; Thu, 20 Feb 2014 22:10:01 GMT (envelope-from gnats) Date: Thu, 20 Feb 2014 22:10:01 GMT Message-Id: <201402202210.s1KMA0nw011945@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/186928: [UPDATE] net/fping -- ports patch for version 3.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 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, 20 Feb 2014 22:10:01 -0000 The following reply was made to PR ports/186928; it has been noted by GNATS. From: Edwin Groothuis To: jharris@widomaker.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/186928: [UPDATE] net/fping -- ports patch for version 3.8 Date: Thu, 20 Feb 2014 22:00:08 UT Maintainer of net/fping, Please note that PR ports/186928 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/186928 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 22:50:14 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 92F2F2EC; Thu, 20 Feb 2014 22:50:14 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6722419C7; Thu, 20 Feb 2014 22: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 s1KMoEP0024700; Thu, 20 Feb 2014 22:50:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KMoEms024699; Thu, 20 Feb 2014 22:50:14 GMT (envelope-from edwin) Date: Thu, 20 Feb 2014 22:50:14 GMT Message-Id: <201402202250.s1KMoEms024699@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186929: [patch] Mk/bsd.port.mk: unconditionally add -fno-strict-aliasing X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 22:50:14 -0000 Synopsis: [patch] Mk/bsd.port.mk: unconditionally add -fno-strict-aliasing Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: edwin Responsible-Changed-When: Thu Feb 20 22:50:14 UTC 2014 Responsible-Changed-Why: bsd.port.mk is portmgr territory (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186929 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 22:50:00 2014 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 ESMTPS id AC4942A6 for ; Thu, 20 Feb 2014 22:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 81EDC19C5 for ; Thu, 20 Feb 2014 22: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 s1KMo0kE024545 for ; Thu, 20 Feb 2014 22:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KMo0vZ024544; Thu, 20 Feb 2014 22:50:00 GMT (envelope-from gnats) Resent-Date: Thu, 20 Feb 2014 22:50:00 GMT Resent-Message-Id: <201402202250.s1KMo0vZ024544@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, Tijl Coosemans Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2657BFB9 for ; Thu, 20 Feb 2014 22:42:59 +0000 (UTC) Received: from mailrelay003.isp.belgacom.be (mailrelay003.isp.belgacom.be [195.238.6.53]) by mx1.freebsd.org (Postfix) with ESMTP id B09D11972 for ; Thu, 20 Feb 2014 22:42:58 +0000 (UTC) Received: from 150.141-176-91.adsl-dyn.isp.belgacom.be (HELO kalimero.tijl.coosemans.org) ([91.176.141.150]) by relay.skynet.be with ESMTP; 20 Feb 2014 23:42:51 +0100 Received: from kalimero.tijl.coosemans.org (kalimero.tijl.coosemans.org [127.0.0.1]) by kalimero.tijl.coosemans.org (8.14.8/8.14.8) with ESMTP id s1KMgnDY025705 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Thu, 20 Feb 2014 23:42:50 +0100 (CET) (envelope-from tijl@kalimero.tijl.coosemans.org) Received: (from tijl@localhost) by kalimero.tijl.coosemans.org (8.14.8/8.14.8/Submit) id s1KMgnth025704; Thu, 20 Feb 2014 23:42:49 +0100 (CET) (envelope-from tijl) Message-Id: <201402202242.s1KMgnth025704@kalimero.tijl.coosemans.org> Date: Thu, 20 Feb 2014 23:42:49 +0100 (CET) From: Tijl Coosemans To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/186929: [patch] Mk/bsd.port.mk: unconditionally add -fno-strict-aliasing X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 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: Thu, 20 Feb 2014 22:50:00 -0000 >Number: 186929 >Category: ports >Synopsis: [patch] Mk/bsd.port.mk: unconditionally add -fno-strict-aliasing >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 Feb 20 22:50:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Tijl Coosemans >Release: FreeBSD 11.0-CURRENT i386 >Organization: >Environment: >Description: Currently bsd.port.mk adds -fno-strict-aliasing to CFLAGS when it detects -O2, -O3 or -Os, but clang has new optimisation flags such as -O4, -Oz and -Ofast that also need it. The attached patch adds -fno-strict-aliasing unconditionally. There's no harm in adding it to -O0 and -O1. >How-To-Repeat: >Fix: --- bsd.port.mk.nostrictaliasing.patch begins here --- Index: Mk/bsd.port.mk =================================================================== --- Mk/bsd.port.mk (revision 345014) +++ Mk/bsd.port.mk (working copy) @@ -2053,7 +2053,7 @@ MAKE_ENV+= PREFIX=${PREFIX} \ # a lot of ports. .if !defined(WITHOUT_NO_STRICT_ALIASING) .if ${CC} != "icc" -.if !empty(CFLAGS:M-O[23s]) && empty(CFLAGS:M-fno-strict-aliasing) +.if empty(CFLAGS:M-fno-strict-aliasing) CFLAGS+= -fno-strict-aliasing .endif .endif --- bsd.port.mk.nostrictaliasing.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 23:00:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E6C244E3 for ; Thu, 20 Feb 2014 23:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A902F1A99 for ; Thu, 20 Feb 2014 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 s1KN00if027500 for ; Thu, 20 Feb 2014 23:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KN00jh027499; Thu, 20 Feb 2014 23:00:00 GMT (envelope-from gnats) Resent-Date: Thu, 20 Feb 2014 23:00:00 GMT Resent-Message-Id: <201402202300.s1KN00jh027499@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, Martin Pala Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2D7E93FB for ; Thu, 20 Feb 2014 22:54:08 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 181F91A62 for ; Thu, 20 Feb 2014 22:54:08 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1KMs75N012337 for ; Thu, 20 Feb 2014 22:54:07 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1KMs7NH012336; Thu, 20 Feb 2014 22:54:07 GMT (envelope-from nobody) Message-Id: <201402202254.s1KMs7NH012336@cgiserv.freebsd.org> Date: Thu, 20 Feb 2014 22:54:07 GMT From: Martin Pala To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186930: [maintainer update] sysutils/monit 5.7 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 23:00:01 -0000 >Number: 186930 >Category: ports >Synopsis: [maintainer update] sysutils/monit 5.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 Feb 20 23:00:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Martin Pala >Release: >Organization: >Environment: >Description: diff -ruN monit/Makefile monit-new/Makefile --- monit/Makefile 2013-09-21 01:05:58.000000000 +0200 +++ monit-new/Makefile 2014-02-20 23:48:13.000000000 +0100 @@ -2,7 +2,7 @@ # $FreeBSD: head/sysutils/monit/Makefile 327772 2013-09-20 23:05:58Z bapt $ PORTNAME= monit -PORTVERSION= 5.6 +PORTVERSION= 5.7 CATEGORIES= sysutils MASTER_SITES= http://www.mmonit.com/monit/dist/ diff -ruN monit/distinfo monit-new/distinfo --- monit/distinfo 2013-09-04 03:15:45.000000000 +0200 +++ monit-new/distinfo 2014-02-20 23:48:33.000000000 +0100 @@ -1,2 +1,2 @@ -SHA256 (monit-5.6.tar.gz) = 38e09bd8b39abc59e6b9a9bb7a78f7eac2b02a92f4de1f3a6dc24e84dfedae0d -SIZE (monit-5.6.tar.gz) = 1263370 +SHA256 (monit-5.7.tar.gz) = bb250ab011d805b5693972afdf95509e79bb3b390caa763275c9501f74b598a2 +SIZE (monit-5.7.tar.gz) = 1266763 >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 23:00:09 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1BDBD512; Thu, 20 Feb 2014 23:00:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E61331A9C; Thu, 20 Feb 2014 23: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 s1KN08WR027649; Thu, 20 Feb 2014 23:00:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KN0801027648; Thu, 20 Feb 2014 23:00:08 GMT (envelope-from edwin) Date: Thu, 20 Feb 2014 23:00:08 GMT Message-Id: <201402202300.s1KN0801027648@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186930: [maintainer update] sysutils/monit 5.7 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 23:00:09 -0000 Synopsis: [maintainer update] sysutils/monit 5.7 Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: edwin Responsible-Changed-When: Thu Feb 20 23:00:08 UTC 2014 Responsible-Changed-Why: sunpoet@ wants this submitter's PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186930 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 23:00:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 48E264E5 for ; Thu, 20 Feb 2014 23:00:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 097F91A9B for ; Thu, 20 Feb 2014 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 s1KN004n027564 for ; Thu, 20 Feb 2014 23:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KN006K027563; Thu, 20 Feb 2014 23:00:00 GMT (envelope-from gnats) Resent-Date: Thu, 20 Feb 2014 23:00:00 GMT Resent-Message-Id: <201402202300.s1KN006K027563@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, Ryan Frederick Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9299B3B5 for ; Thu, 20 Feb 2014 22:52:54 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7E2841A54 for ; Thu, 20 Feb 2014 22:52:54 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1KMqske009438 for ; Thu, 20 Feb 2014 22:52:54 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1KMqsRD009430; Thu, 20 Feb 2014 22:52:54 GMT (envelope-from nobody) Message-Id: <201402202252.s1KMqsRD009430@cgiserv.freebsd.org> Date: Thu, 20 Feb 2014 22:52:54 GMT From: Ryan Frederick To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186931: Request Commit of ports/184011 -- Patch for Preliminary pkgng Support in net-mgmt/nagios-check_ports X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 23:00:01 -0000 >Number: 186931 >Category: ports >Synopsis: Request Commit of ports/184011 -- Patch for Preliminary pkgng Support in net-mgmt/nagios-check_ports >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 Feb 20 23:00:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Ryan Frederick >Release: 10.0-RELEASE >Organization: >Environment: FreeBSD bofh-fbsd10vm.it.okstate.edu 10.0-RELEASE FreeBSD 10.0-RELEASE #0 r260789: Thu Jan 16 22:34:59 UTC 2014 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: I'd like to request that a committer look at ports/184011 -- Patch for Preliminary pkgng Support in net-mgmt/nagios-check_ports and see about committing the latest attached patch in the pr. This was a pr that I submitted before becoming maintainer of net-mgmt/nagios-check_ports. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 23:00:14 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 64266544; Thu, 20 Feb 2014 23:00:14 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 37E991AA0; Thu, 20 Feb 2014 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 s1KN0E5F027725; Thu, 20 Feb 2014 23:00:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KN0EP6027724; Thu, 20 Feb 2014 23:00:14 GMT (envelope-from edwin) Date: Thu, 20 Feb 2014 23:00:14 GMT Message-Id: <201402202300.s1KN0EP6027724@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186931: Request Commit of ports/184011 -- Patch for Preliminary pkgng Support in net-mgmt/nagios-check_ports X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 23:00:14 -0000 Synopsis: Request Commit of ports/184011 -- Patch for Preliminary pkgng Support in net-mgmt/nagios-check_ports Class-Changed-From-To: maintainer-update->change-request Class-Changed-By: edwin Class-Changed-When: Thu Feb 20 23:00:13 UTC 2014 Class-Changed-Why: Fix category (submitter is not maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186931 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 23:00:16 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4119B549; Thu, 20 Feb 2014 23:00:16 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 156F71AA2; Thu, 20 Feb 2014 23:00: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 s1KN0FLg027800; Thu, 20 Feb 2014 23:00:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KN0FBx027799; Thu, 20 Feb 2014 23:00:15 GMT (envelope-from edwin) Date: Thu, 20 Feb 2014 23:00:15 GMT Message-Id: <201402202300.s1KN0FBx027799@freefall.freebsd.org> To: ryanrfrederick@gmail.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186931: Request Commit of ports/184011 -- Patch for Preliminary pkgng Support in net-mgmt/nagios-check_ports X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Feb 2014 23:00:16 -0000 Synopsis: Request Commit of ports/184011 -- Patch for Preliminary pkgng Support in net-mgmt/nagios-check_ports State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Thu Feb 20 23:00:15 UTC 2014 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186931 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Feb 20 23:10:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A3998A7C for ; Thu, 20 Feb 2014 23:10:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8A1261BBD for ; Thu, 20 Feb 2014 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 s1KNA1ad030900 for ; Thu, 20 Feb 2014 23:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1KNA1pi030899; Thu, 20 Feb 2014 23:10:01 GMT (envelope-from gnats) Date: Thu, 20 Feb 2014 23:10:01 GMT Message-Id: <201402202310.s1KNA1pi030899@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/186931: Request Commit of ports/184011 -- Patch for Preliminary pkgng Support in net-mgmt/nagios-check_ports X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 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, 20 Feb 2014 23:10:01 -0000 The following reply was made to PR ports/186931; it has been noted by GNATS. From: Edwin Groothuis To: freebsd@troback.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/186931: Request Commit of ports/184011 -- Patch for Preliminary pkgng Support in net-mgmt/nagios-check_ports Date: Thu, 20 Feb 2014 23:00:14 UT Maintainer of net-mgmt/nagios-check_ports, Please note that PR ports/186931 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/186931 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 00:10:02 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 63148BA3 for ; Fri, 21 Feb 2014 00:10:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3FEA01211 for ; Fri, 21 Feb 2014 00: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 s1L0A2LY055519 for ; Fri, 21 Feb 2014 00:10:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1L0A28d055518; Fri, 21 Feb 2014 00:10:02 GMT (envelope-from gnats) Resent-Date: Fri, 21 Feb 2014 00:10:02 GMT Resent-Message-Id: <201402210010.s1L0A28d055518@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, Hung-Yi Chen Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E8012B8D for ; Fri, 21 Feb 2014 00:09:42 +0000 (UTC) Received: from cse.tw (cse.tw [140.138.145.234]) by mx1.freebsd.org (Postfix) with ESMTP id A72D91209 for ; Fri, 21 Feb 2014 00:09:42 +0000 (UTC) Received: from cse.tw (localhost [127.0.0.1]) by cse.tw (Postfix) with ESMTP id CD215187B00C for ; Fri, 21 Feb 2014 08:09:31 +0800 (CST) Received: (from gaod@localhost) by cse.tw (8.14.7/8.14.7/Submit) id s1L09VqU066131; Fri, 21 Feb 2014 08:09:31 +0800 (CST) (envelope-from gaod) Message-Id: <201402210009.s1L09VqU066131@cse.tw> Date: Fri, 21 Feb 2014 08:09:31 +0800 (CST) From: Hung-Yi Chen To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/186932: [MAINTAINER] chinese/ve: Fix compatibility for fbsd 10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 00:10:02 -0000 >Number: 186932 >Category: ports >Synopsis: [MAINTAINER] chinese/ve: Fix compatibility for fbsd 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 Feb 21 00:10:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Hung-Yi Chen >Release: FreeBSD 9.2-RELEASE-p3 amd64 >Organization: >Environment: System: FreeBSD cse.tw 9.2-RELEASE-p3 FreeBSD 9.2-RELEASE-p3 #0: Sat Jan 11 03:25:02 UTC 2014 >Description: - Fix compatibility for FreeBSD 10. - Add stage support. Generated with FreeBSD Port Tools 0.99_11 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- ve-1.1_1.patch begins here --- diff -ruN /usr/ports/chinese/ve/Makefile ./Makefile --- /usr/ports/chinese/ve/Makefile 2014-01-23 01:00:46.000000000 +0800 +++ ./Makefile 2014-02-21 08:08:54.000000000 +0800 @@ -3,6 +3,7 @@ PORTNAME= ve PORTVERSION= 1.1 +PORTREVISION= 1 CATEGORIES= chinese MASTER_SITES= LOCAL/vanilla EXTRACT_SUFX= .tgz @@ -10,5 +11,9 @@ MAINTAINER= gaod@hychen.org COMMENT= NTHU-CS Maple BBS 2.36 BBS-like editor -NO_STAGE= yes +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/ve ${STAGEDIR}${PREFIX}/bin/ + @${MKDIR} ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/ve.hlp ${STAGEDIR}${DATADIR} + .include diff -ruN /usr/ports/chinese/ve/files/patch-Makefile ./files/patch-Makefile --- /usr/ports/chinese/ve/files/patch-Makefile 1970-01-01 08:00:00.000000000 +0800 +++ ./files/patch-Makefile 2014-02-21 07:39:08.000000000 +0800 @@ -0,0 +1,7 @@ +--- Makefile.orig 2014-02-21 07:37:29.000000000 +0800 ++++ Makefile 2014-02-21 07:37:38.000000000 +0800 +@@ -1,4 +1,3 @@ +-CC = gcc + OBJ = edit.o term.o screen.o stuff.o io.o editor.o + + #---------------------------------------------------------- diff -ruN /usr/ports/chinese/ve/files/patch-edit.c ./files/patch-edit.c --- /usr/ports/chinese/ve/files/patch-edit.c 1970-01-01 08:00:00.000000000 +0800 +++ ./files/patch-edit.c 2014-02-21 07:39:26.000000000 +0800 @@ -0,0 +1,11 @@ +--- edit.c.orig 2014-02-21 07:38:19.000000000 +0800 ++++ edit.c 2014-02-21 07:38:29.000000000 +0800 +@@ -988,7 +988,7 @@ + redraw_everything = YEA; + } + +-match_paren() ++void match_paren() + { + static char parens[] = "()[]{}<>"; + int type, mode; diff -ruN /usr/ports/chinese/ve/files/patch-screen.c ./files/patch-screen.c --- /usr/ports/chinese/ve/files/patch-screen.c 1970-01-01 08:00:00.000000000 +0800 +++ ./files/patch-screen.c 2014-02-21 07:39:17.000000000 +0800 @@ -0,0 +1,11 @@ +--- screen.c.orig 2014-02-21 07:38:36.000000000 +0800 ++++ screen.c 2014-02-21 07:38:47.000000000 +0800 +@@ -643,7 +643,7 @@ + } + } + +-region_scroll_up(int top, int bottom) ++void region_scroll_up(int top, int bottom) + { + int i; + diff -ruN /usr/ports/chinese/ve/pkg-plist ./pkg-plist --- /usr/ports/chinese/ve/pkg-plist 2014-01-22 23:16:56.000000000 +0800 +++ ./pkg-plist 2014-02-21 08:07:26.000000000 +0800 @@ -1,3 +1,3 @@ bin/ve -share/ve/ve.hlp +%%DATADIR%%/ve.hlp @dirrm share/ve --- ve-1.1_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 00:10:10 2014 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 ESMTPS id 20CBFBDD; Fri, 21 Feb 2014 00:10:10 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EB0A91213; Fri, 21 Feb 2014 00: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 s1L0A9a8055599; Fri, 21 Feb 2014 00:10:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1L0A9Fa055598; Fri, 21 Feb 2014 00:10:09 GMT (envelope-from edwin) Date: Fri, 21 Feb 2014 00:10:09 GMT Message-Id: <201402210010.s1L0A9Fa055598@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186932: [MAINTAINER] chinese/ve: Fix compatibility for fbsd 10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 00:10:10 -0000 Synopsis: [MAINTAINER] chinese/ve: Fix compatibility for fbsd 10 Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: edwin Responsible-Changed-When: Fri Feb 21 00:10:09 UTC 2014 Responsible-Changed-Why: sunpoet@ wants this submitter's PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186932 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 00:20:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ACA9EEF7 for ; Fri, 21 Feb 2014 00:20:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6D1891301 for ; Fri, 21 Feb 2014 00: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 s1L0K0S9062555 for ; Fri, 21 Feb 2014 00:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1L0K0Dh062554; Fri, 21 Feb 2014 00:20:00 GMT (envelope-from gnats) Resent-Date: Fri, 21 Feb 2014 00:20:00 GMT Resent-Message-Id: <201402210020.s1L0K0Dh062554@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, "Jens K. Loewe" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 02BE3EB0 for ; Fri, 21 Feb 2014 00:18:23 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D479B12EF for ; Fri, 21 Feb 2014 00:18:22 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1L0ILif098107 for ; Fri, 21 Feb 2014 00:18:21 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1L0ILan098084; Fri, 21 Feb 2014 00:18:21 GMT (envelope-from nobody) Message-Id: <201402210018.s1L0ILan098084@cgiserv.freebsd.org> Date: Fri, 21 Feb 2014 00:18:21 GMT From: "Jens K. Loewe" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186933: [maintainer update] graphics/nomacs update to version 1.6.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 00:20:00 -0000 >Number: 186933 >Category: ports >Synopsis: [maintainer update] graphics/nomacs update to version 1.6.4 >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 Feb 21 00:20:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Jens K. Loewe >Release: 9.2 >Organization: Hochschule Ostfalia >Environment: n/a >Description: A wild update appears! >How-To-Repeat: - >Fix: Here's the diff: Patch attached with submission follows: diff -ruN nomacs/Makefile nomacs-neu/Makefile --- nomacs/Makefile 2014-02-21 01:12:21.000000000 +0100 +++ nomacs-neu/Makefile 2014-02-21 01:12:55.000000000 +0100 @@ -1,7 +1,7 @@ # $FreeBSD: head/graphics/nomacs/Makefile 341289 2014-01-26 21:20:03Z rakuco $ PORTNAME= nomacs -PORTVERSION= 1.6.2 +PORTVERSION= 1.6.4 PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= SF/nomacs/nomacs-${PORTVERSION}/ diff -ruN nomacs/distinfo nomacs-neu/distinfo --- nomacs/distinfo 2014-02-21 01:12:21.000000000 +0100 +++ nomacs-neu/distinfo 2014-02-21 01:13:05.000000000 +0100 @@ -1,2 +1,2 @@ -SHA256 (nomacs-1.6.2-source.tar.bz2) = c9a7bea91db1f12513b43d5d194009f9281f6084ffc30ceeadb5ec4a598a6c71 -SIZE (nomacs-1.6.2-source.tar.bz2) = 1168631 +SHA256 (nomacs-1.6.4-source.tar.bz2) = 85bb13567165af08f699ee87630151bf2a81d77cd75e025a7a332ab9c9022a94 +SIZE (nomacs-1.6.4-source.tar.bz2) = 1173684 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 00:50:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9F8B2670 for ; Fri, 21 Feb 2014 00:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6225D1620 for ; Fri, 21 Feb 2014 00: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 s1L0o0tV071085 for ; Fri, 21 Feb 2014 00:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1L0o0UD071084; Fri, 21 Feb 2014 00:50:00 GMT (envelope-from gnats) Resent-Date: Fri, 21 Feb 2014 00:50:00 GMT Resent-Message-Id: <201402210050.s1L0o0UD071084@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, Hung-Yi 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 ESMTPS id D13EA587 for ; Fri, 21 Feb 2014 00:44:55 +0000 (UTC) Received: from cse.tw (cse.tw [140.138.145.234]) by mx1.freebsd.org (Postfix) with ESMTP id 99F0115EA for ; Fri, 21 Feb 2014 00:44:55 +0000 (UTC) Received: from cse.tw (localhost [127.0.0.1]) by cse.tw (Postfix) with ESMTP id B27DD187B00C for ; Fri, 21 Feb 2014 08:44:54 +0800 (CST) Received: (from root@localhost) by cse.tw (8.14.7/8.14.7/Submit) id s1L0is6l018794; Fri, 21 Feb 2014 08:44:54 +0800 (CST) (envelope-from gaod) Message-Id: <201402210044.s1L0is6l018794@cse.tw> Date: Fri, 21 Feb 2014 08:44:54 +0800 (CST) From: Hung-Yi Chen To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/186934: [MAINTAINER] net/py-netlib: update to 0.10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 00:50:00 -0000 >Number: 186934 >Category: ports >Synopsis: [MAINTAINER] net/py-netlib: update to 0.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 Feb 21 00:50:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Hung-Yi Chen >Release: FreeBSD 9.2-RELEASE-p3 amd64 >Organization: >Environment: System: FreeBSD cse.tw 9.2-RELEASE-p3 FreeBSD 9.2-RELEASE-p3 #0: Sat Jan 11 03:25:02 UTC 2014 >Description: - Update to 0.10 Generated with FreeBSD Port Tools 0.99_11 (mode: update, diff: ports) >How-To-Repeat: >Fix: --- py27-netlib-0.10.patch begins here --- diff -ruN /usr/ports/net/py-netlib/Makefile ./Makefile --- /usr/ports/net/py-netlib/Makefile 2013-09-21 06:10:23.000000000 +0800 +++ ./Makefile 2014-02-21 08:21:09.000000000 +0800 @@ -2,7 +2,7 @@ # $FreeBSD: head/net/py-netlib/Makefile 327755 2013-09-20 22:10:23Z bapt $ PORTNAME= netlib -PORTVERSION= 0.9.2 +PORTVERSION= 0.10 CATEGORIES= net python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff -ruN /usr/ports/net/py-netlib/distinfo ./distinfo --- /usr/ports/net/py-netlib/distinfo 2013-09-09 02:32:34.000000000 +0800 +++ ./distinfo 2014-02-21 08:21:16.000000000 +0800 @@ -1,2 +1,2 @@ -SHA256 (netlib-0.9.2.tar.gz) = 4b7830dfef6e4826e236d8313229ee3a0ca015a1e2ce89fb37d58479e753f847 -SIZE (netlib-0.9.2.tar.gz) = 59016 +SHA256 (netlib-0.10.tar.gz) = 415e3db96f487177f372d47bc669dcc9068a435e49b8120ec8821026de36bd80 +SIZE (netlib-0.10.tar.gz) = 60256 --- py27-netlib-0.10.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 00:50:09 2014 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 ESMTPS id 7230B6A8; Fri, 21 Feb 2014 00:50:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 464641621; Fri, 21 Feb 2014 00: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 s1L0o9K4071221; Fri, 21 Feb 2014 00:50:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1L0o9WB071220; Fri, 21 Feb 2014 00:50:09 GMT (envelope-from edwin) Date: Fri, 21 Feb 2014 00:50:09 GMT Message-Id: <201402210050.s1L0o9WB071220@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186934: [MAINTAINER] net/py-netlib: update to 0.10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 00:50:09 -0000 Synopsis: [MAINTAINER] net/py-netlib: update to 0.10 Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: edwin Responsible-Changed-When: Fri Feb 21 00:50:08 UTC 2014 Responsible-Changed-Why: sunpoet@ wants this submitter's PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186934 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 01:00:00 2014 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 ESMTPS id 85F30910 for ; Fri, 21 Feb 2014 01:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 62FAE170C for ; Fri, 21 Feb 2014 01: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 s1L100n2074849 for ; Fri, 21 Feb 2014 01:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1L100cN074848; Fri, 21 Feb 2014 01:00:00 GMT (envelope-from gnats) Resent-Date: Fri, 21 Feb 2014 01:00:00 GMT Resent-Message-Id: <201402210100.s1L100cN074848@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, Hung-Yi Chen Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B38A07E6 for ; Fri, 21 Feb 2014 00:53:18 +0000 (UTC) Received: from cse.tw (cse.tw [140.138.145.234]) by mx1.freebsd.org (Postfix) with ESMTP id 673EA16B7 for ; Fri, 21 Feb 2014 00:53:18 +0000 (UTC) Received: from cse.tw (localhost [127.0.0.1]) by cse.tw (Postfix) with ESMTP id 8BE93187AFFF for ; Fri, 21 Feb 2014 08:53:17 +0800 (CST) Received: (from gaod@localhost) by cse.tw (8.14.7/8.14.7/Submit) id s1L0rHB8021592; Fri, 21 Feb 2014 08:53:17 +0800 (CST) (envelope-from gaod) Message-Id: <201402210053.s1L0rHB8021592@cse.tw> Date: Fri, 21 Feb 2014 08:53:17 +0800 (CST) From: Hung-Yi Chen To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/186935: [MAINTAINER] www/mitmproxy: update to 0.10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 01:00:00 -0000 >Number: 186935 >Category: ports >Synopsis: [MAINTAINER] www/mitmproxy: update to 0.10 >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: Fri Feb 21 01:00:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Hung-Yi Chen >Release: FreeBSD 9.2-RELEASE-p3 amd64 >Organization: >Environment: System: FreeBSD cse.tw 9.2-RELEASE-p3 FreeBSD 9.2-RELEASE-p3 #0: Sat Jan 11 03:25:02 UTC 2014 >Description: - Update to 0.10 Please commit PR.186934 first. Generated with FreeBSD Port Tools 0.99_11 (mode: update, diff: ports) >How-To-Repeat: >Fix: --- mitmproxy-0.10.patch begins here --- diff -ruN /usr/ports/www/mitmproxy/Makefile ./Makefile --- /usr/ports/www/mitmproxy/Makefile 2013-09-21 07:36:50.000000000 +0800 +++ ./Makefile 2014-02-21 08:29:52.000000000 +0800 @@ -2,7 +2,7 @@ # $FreeBSD: head/www/mitmproxy/Makefile 327776 2013-09-20 23:36:50Z bapt $ PORTNAME= mitmproxy -PORTVERSION= 0.9.2 +PORTVERSION= 0.10 CATEGORIES= www python MASTER_SITES= http://mitmproxy.org/download/ @@ -13,10 +13,10 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}asn1>0:${PORTSDIR}/devel/py-asn1 \ ${PYTHON_PKGNAMEPREFIX}Flask>0:${PORTSDIR}/www/py-flask \ - ${PYTHON_PKGNAMEPREFIX}imaging>0:${PORTSDIR}/graphics/py-imaging \ ${PYTHON_PKGNAMEPREFIX}lxml>0:${PORTSDIR}/devel/py-lxml \ ${PYTHON_PKGNAMEPREFIX}netlib>0:${PORTSDIR}/net/py-netlib \ ${PYTHON_PKGNAMEPREFIX}openssl>0:${PORTSDIR}/security/py-openssl \ + ${PYTHON_PKGNAMEPREFIX}pillow>=2.3.0:${PORTSDIR}/graphics/py-pillow \ ${PYTHON_PKGNAMEPREFIX}urwid>0:${PORTSDIR}/devel/py-urwid USE_PYDISTUTILS=easy_install diff -ruN /usr/ports/www/mitmproxy/distinfo ./distinfo --- /usr/ports/www/mitmproxy/distinfo 2013-09-10 22:38:14.000000000 +0800 +++ ./distinfo 2014-02-21 08:16:24.000000000 +0800 @@ -1,2 +1,2 @@ -SHA256 (mitmproxy-0.9.2.tar.gz) = 00b200cd7867ca7b0c907bb6a05075807040318cb32fc6bedcd4cb8363c6d795 -SIZE (mitmproxy-0.9.2.tar.gz) = 3180194 +SHA256 (mitmproxy-0.10.tar.gz) = 524e3e91ec9b63f1aec4fd86c55a43e935808da7d558d806c1212b4ba18deea5 +SIZE (mitmproxy-0.10.tar.gz) = 3408925 diff -ruN /usr/ports/www/mitmproxy/files/patch-setup.py ./files/patch-setup.py --- /usr/ports/www/mitmproxy/files/patch-setup.py 2013-08-22 00:14:48.000000000 +0800 +++ ./files/patch-setup.py 2014-02-21 08:20:06.000000000 +0800 @@ -1,12 +1,12 @@ ---- setup.py.orig 2013-07-23 03:08:39.785592808 +0800 -+++ setup.py 2013-07-23 03:09:19.367592415 +0800 +--- setup.py.orig 2014-02-21 08:17:11.000000000 +0800 ++++ setup.py 2014-02-21 08:19:43.000000000 +0800 @@ -1,4 +1,5 @@ from distutils.core import setup +from setuptools import setup import fnmatch, os.path from libmproxy import version -@@ -92,13 +93,4 @@ +@@ -98,13 +99,4 @@ "Topic :: Internet :: Proxy Servers", "Topic :: Software Development :: Testing" ], @@ -15,7 +15,7 @@ - "urwid>=1.1", - "pyasn1>0.1.2", - "pyopenssl>=0.13", -- "PIL", +- "Pillow>=2.3.0,<2.4", - "lxml", - "flask" - ], diff -ruN /usr/ports/www/mitmproxy/pkg-plist ./pkg-plist --- /usr/ports/www/mitmproxy/pkg-plist 2013-09-10 22:38:14.000000000 +0800 +++ ./pkg-plist 2014-02-21 08:34:55.000000000 +0800 @@ -108,6 +108,13 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/libmproxy/platform/linux.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/libmproxy/platform/osx.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/libmproxy/platform/pf.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/libmproxy/static/fontawesome/css/font-awesome.css +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/libmproxy/static/fontawesome/css/font-awesome.min.css +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/libmproxy/static/fontawesome/fonts/FontAwesome.otf +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/libmproxy/static/fontawesome/fonts/fontawesome-webfont.eot +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/libmproxy/static/fontawesome/fonts/fontawesome-webfont.svg +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/libmproxy/static/fontawesome/fonts/fontawesome-webfont.ttf +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/libmproxy/static/fontawesome/fonts/fontawesome-webfont.woff %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/libmproxy/static/bootstrap.min.css %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/libmproxy/static/bootstrap.min.js %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/libmproxy/static/jquery-1.10.1.min.js @@ -130,6 +137,8 @@ @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/libmproxy/contrib/jsbeautifier @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/libmproxy/contrib @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/libmproxy/platform +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/libmproxy/static/fontawesome/css +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/libmproxy/static/fontawesome/fonts @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/libmproxy/static @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/libmproxy/templates @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/libmproxy --- mitmproxy-0.10.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 01:00:09 2014 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 ESMTPS id 1CAFA97F; Fri, 21 Feb 2014 01:00:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E656A170F; Fri, 21 Feb 2014 01: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 s1L108ow075002; Fri, 21 Feb 2014 01:00:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1L108wT075001; Fri, 21 Feb 2014 01:00:08 GMT (envelope-from edwin) Date: Fri, 21 Feb 2014 01:00:08 GMT Message-Id: <201402210100.s1L108wT075001@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186935: [MAINTAINER] www/mitmproxy: update to 0.10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 01:00:09 -0000 Synopsis: [MAINTAINER] www/mitmproxy: update to 0.10 Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: edwin Responsible-Changed-When: Fri Feb 21 01:00:08 UTC 2014 Responsible-Changed-Why: sunpoet@ wants this submitter's PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186935 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 02:00:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EB5D6F7 for ; Fri, 21 Feb 2014 02:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CA99F1BE0 for ; Fri, 21 Feb 2014 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 s1L2006P094769 for ; Fri, 21 Feb 2014 02:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1L200FG094768; Fri, 21 Feb 2014 02:00:00 GMT (envelope-from gnats) Resent-Date: Fri, 21 Feb 2014 02:00:00 GMT Resent-Message-Id: <201402210200.s1L200FG094768@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, Gasol Wu Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7CCCF516 for ; Fri, 21 Feb 2014 01:56:16 +0000 (UTC) Received: from kkbox.com (ip-203-69-67-167.kkcube.com [203.69.67.167]) by mx1.freebsd.org (Postfix) with ESMTP id 37BA11BA5 for ; Fri, 21 Feb 2014 01:56:15 +0000 (UTC) Received: by goingmarry.kkbox.com (Postfix, from userid 1033) id E8C647508AA; Fri, 21 Feb 2014 09:51:06 +0800 (CST) Message-Id: <20140221015106.E8C647508AA@goingmarry.kkbox.com> Date: Fri, 21 Feb 2014 09:51:06 +0800 (CST) From: Gasol Wu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/186936: [NEW PORT] net/libcapn: C Library to interact with Apple Push Notification Service X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 02:00:01 -0000 >Number: 186936 >Category: ports >Synopsis: [NEW PORT] net/libcapn: C Library to interact with Apple Push Notification 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: Fri Feb 21 02:00:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Gasol Wu >Release: FreeBSD 9.2-RELEASE amd64 >Organization: >Environment: System: FreeBSD goingmarry 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255898: Thu Sep 26 22:50:31 UTC >Description: libcapn is a C Library to interact with the Apple Push Notification Service using simple and intuitive API. With the library you can easily send push notifications to iOS and Mac OS X devices. WWW: http://libcapn.org Generated with FreeBSD Port Tools 0.99_11 (mode: new) >How-To-Repeat: >Fix: --- .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: # # libcapn # libcapn/Makefile # libcapn/pkg-descr # libcapn/pkg-plist # libcapn/files # libcapn/files/patch-CMakeLists.txt # libcapn/files/patch-libcapn.pc.cmake # libcapn/distinfo # echo c - libcapn mkdir -p libcapn > /dev/null 2>&1 echo x - libcapn/Makefile sed 's/^X//' >libcapn/Makefile << 'acc4fb5e4f79bed3ef0d7e3cb78d3fdf' X# Created by: Gasol Wu X# $FreeBSD$ X XPORTNAME= libcapn XPORTVERSION= 1.0.0.b3 XCATEGORIES= net X XMAINTAINER= gasol.wu@gmail.com XCOMMENT= C Library to interact with Apple Push Notification Service X XLICENSE= MIT X XLIB_DEPENDS= libjansson.so:${PORTSDIR}/devel/jansson X XUSE_GITHUB= yes XGH_ACCOUNT= adobkin XGH_TAGNAME= 1.0.0beta3 XGH_COMMIT= 050dfd8 X XUSES= cmake XUSE_LDCONFIG= yes XCMAKE_ARGS+= -DOS_FREEBSD=yes X X.include acc4fb5e4f79bed3ef0d7e3cb78d3fdf echo x - libcapn/pkg-descr sed 's/^X//' >libcapn/pkg-descr << '334829b3878d0814289e1a020b83d8a4' Xlibcapn is a C Library to interact with the Apple Push Notification Service Xusing simple and intuitive API. With the library you can easily send push Xnotifications to iOS and Mac OS X devices. X XWWW: http://libcapn.org 334829b3878d0814289e1a020b83d8a4 echo x - libcapn/pkg-plist sed 's/^X//' >libcapn/pkg-plist << '3f88a750643dfa2a770a51aa6d9f3f8b' X@comment $FreeBSD$ Xinclude/capn/apn.h Xinclude/capn/platform.h Xinclude/capn/version.h Xlib/libcapn.so Xlib/libcapn.so.1 Xlib/libcapn.so.1.0.0 Xlibdata/pkgconfig/libcapn.pc X@dirrmtry lib/pkgconfig X@dirrmtry include/capn 3f88a750643dfa2a770a51aa6d9f3f8b echo c - libcapn/files mkdir -p libcapn/files > /dev/null 2>&1 echo x - libcapn/files/patch-CMakeLists.txt sed 's/^X//' >libcapn/files/patch-CMakeLists.txt << '5ec53943dd0bc0f2279d84cbd4435cea' X--- ./CMakeLists.txt.orig 2013-04-27 14:08:27.000000000 +0800 X+++ ./CMakeLists.txt 2014-02-21 08:53:47.000000000 +0800 X@@ -48,20 +48,6 @@ X X INCLUDE(ExternalProject) X X-ExternalProject_Add( X- jansson X- SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/jansson" X- #GIT_REPOSITORY git://github.com/akheron/jansson.git X- BINARY_DIR "${CMAKE_CURRENT_SOURCE_DIR}/jansson" X- INSTALL_DIR "${CMAKE_CURRENT_SOURCE_DIR}/jansson" X- CMAKE_COMMAND cmake . X- BUILD_COMMAND "" X- INSTALL_COMMAND "" X-) X- X-INCLUDE_DIRECTORIES ("${CMAKE_CURRENT_SOURCE_DIR}/jansson") X-INCLUDE_DIRECTORIES ("${CMAKE_CURRENT_SOURCE_DIR}/jansson/include") X- X CONFIGURE_FILE("${CMAKE_CURRENT_SOURCE_DIR}/src/platform.h.cmake" "${CMAKE_CURRENT_SOURCE_DIR}/src/platform.h") X CONFIGURE_FILE("${CMAKE_CURRENT_SOURCE_DIR}/src/version.h.cmake" "${CMAKE_CURRENT_SOURCE_DIR}/src/version.h") X X@@ -86,7 +72,7 @@ X ENDIF(APN_ARCH_X86_64 AND OS_LINUX) X ENDIF(LIB_SUFFIX) X X- SET(APN_INSTALL_PATH_LIB "${APN_INSTALL_PATH_LIB}/${APN_LIB_NAME}") X+ SET(APN_INSTALL_PATH_LIB "${APN_INSTALL_PATH_LIB}") X SET(APN_INSTALL_PATH_HEADERS "include/${APN_LIB_NAME}") X SET(APN_INSTALL_PATH_BIN "bin") X X@@ -126,12 +112,9 @@ X SET(APN_INSTALL_FULL_PATH_LIB ${CMAKE_INSTALL_PREFIX}/${INSTALL_LIB_DIR}) X MARK_AS_ADVANCED(APN_INSTALL_FULL_PATH_LIB) X X-FILE (GLOB JANSSON_SOURCE_FILES jansson/src/*.c) X- X SET(APN_SOURCE_FILES X src/apn.c X src/apn_strings.c X- ${JANSSON_SOURCE_FILES} X ) X X SET(APN_PUBLIC_HEADER_FILES X@@ -175,8 +158,14 @@ X ADD_CUSTOM_TARGET(zip COMMAND ${PROJECT_BINARY_DIR}/win/createpkg.bat) X ENDIF(DEFINED WIN32) X X+ X ADD_LIBRARY(${APN_LIB_NAME} SHARED ${APN_SOURCE_FILES}) X TARGET_LINK_LIBRARIES(${APN_LIB_NAME} ${OPENSSL_LIBRARIES}) X+FIND_PATH(JANSSON_INCLUDES jansson.h) X+INCLUDE_DIRECTORIES(${JANSSON_INCLUDES}) X+FIND_LIBRARY(JANSSON_LIBRARIES jansson) X+TARGET_LINK_LIBRARIES(${APN_LIB_NAME} ${JANSSON_LIBRARIES}) X+ X X IF(DEFINED WIN32) X TARGET_LINK_LIBRARIES(${APN_LIB_NAME} Ws2_32.lib) 5ec53943dd0bc0f2279d84cbd4435cea echo x - libcapn/files/patch-libcapn.pc.cmake sed 's/^X//' >libcapn/files/patch-libcapn.pc.cmake << '7d1d3464ac3313ee37a495ea249b790e' X--- ./libcapn.pc.cmake.orig 2013-04-27 14:08:27.000000000 +0800 X+++ ./libcapn.pc.cmake 2014-02-21 08:53:31.000000000 +0800 X@@ -3,4 +3,4 @@ X Version: ${APN_VERSION} X Libs: -L${CMAKE_INSTALL_PREFIX}/${APN_INSTALL_PATH_LIB} -l${APN_LIB_NAME} X Libs.private: -lopenssl X-Cflags: -I${CMAKE_INSTALL_PREFIX}/${APN_INSTALL_PATH_HEADERS} X+Cflags: -I${CMAKE_INSTALL_PREFIX} 7d1d3464ac3313ee37a495ea249b790e echo x - libcapn/distinfo sed 's/^X//' >libcapn/distinfo << '5bb1bcc57867baaea8b169e3658566b2' XSHA256 (libcapn-1.0.0.b3.tar.gz) = ff2f960c02404fdc7c6ac4155659af1178e90b7a8e62d35e0e4e4a94914a2b18 XSIZE (libcapn-1.0.0.b3.tar.gz) = 348396 5bb1bcc57867baaea8b169e3658566b2 exit --- .shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 02:00:18 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1C8C4200; Fri, 21 Feb 2014 02:00:18 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E3BE31BE3; Fri, 21 Feb 2014 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 s1L20HPa094907; Fri, 21 Feb 2014 02:00:17 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1L20HVq094906; Fri, 21 Feb 2014 02:00:17 GMT (envelope-from edwin) Date: Fri, 21 Feb 2014 02:00:17 GMT Message-Id: <201402210200.s1L20HVq094906@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186936: [NEW PORT] net/libcapn: C Library to interact with Apple Push Notification Service X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 02:00:18 -0000 Synopsis: [NEW PORT] net/libcapn: C Library to interact with Apple Push Notification Service Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: edwin Responsible-Changed-When: Fri Feb 21 02:00:17 UTC 2014 Responsible-Changed-Why: sunpoet@ wants this submitter's PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186936 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 02:20:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9B7B35FF for ; Fri, 21 Feb 2014 02:20:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 79EA71D4F for ; Fri, 21 Feb 2014 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 s1L2K1mc001760 for ; Fri, 21 Feb 2014 02:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1L2K1fO001759; Fri, 21 Feb 2014 02:20:01 GMT (envelope-from gnats) Date: Fri, 21 Feb 2014 02:20:01 GMT Message-Id: <201402210220.s1L2K1fO001759@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Jason Unovitch Subject: Re: ports/186865: [patch] change rc.d script for security/strongswan X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Jason Unovitch List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 02:20:01 -0000 The following reply was made to PR ports/186865; it has been noted by GNATS. From: Jason Unovitch To: robert.sevat@live.nl Cc: bug-followup@FreeBSD.org Subject: Re: ports/186865: [patch] change rc.d script for security/strongswan Date: Thu, 20 Feb 2014 21:11:01 -0500 This is a multi-part message in MIME format. --------------000704040105040500000204 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Robert, There's actually a few things that can use some tweaking per RC lint. =20 I've attached a fixed version of the RC script for you to try along with = a patch that fixes the first 4 of the RC lint issues. It makes sense to = me as the one-line function results in much less clutter above but the=20 maintainer/committer can decide on exactly what do do with that. RC Lint before: Checking strongswan ERROR:root:[0]: Order of rc file incorrect ERROR:root:[0]: Order of variables incorrect ERROR:root:[13]: Do not quote values unless necessary ERROR:root:[14]: rcvar is not set correctly ERROR:root:[27]: One-line functions discouraged; put command directly in = variable RC Lint after: Checking strongswan ERROR:root:[27]: One-line functions discouraged; put command directly in = variable Jason --------------000704040105040500000204 Content-Type: text/plain; charset=UTF-8; name="strongswan" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="strongswan" #!/bin/sh # Start or stop strongswan # $FreeBSD: head/security/strongswan/files/strongswan.in 340872 2014-01-2= 4 00:14:07Z mat $ # PROVIDE: strongswan # REQUIRE: DAEMON # BEFORE: LOGIN # KEYWORD: shutdown =2E /etc/rc.subr name=3Dstrongswan rcvar=3Dstrongswan_enable load_rc_config $name command=3D/usr/local/sbin/ipsec extra_commands=3D"reload statusall" start_cmd=3D"strongswan_command start" stop_cmd=3D"strongswan_command stop" restart_cmd=3D"strongswan_command restart" status_cmd=3D"strongswan_command status" reload_cmd=3D"strongswan_command reload" statusall_cmd=3D"strongswan_command statusall" strongswan_command() { $command ${rc_arg} } run_rc_command "$1" --------------000704040105040500000204 Content-Type: text/x-patch; name="strongswan.lint.patch" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="strongswan.lint.patch" --- /usr/ports/security/strongswan/files/strongswan.in 2014-01-24 00:14:0= 7.000000000 +0000 +++ /usr/ports/security/strongswan/files/strongswan.in 2014-02-21 01:42:1= 0.000000000 +0000 @@ -7,15 +7,16 @@ # BEFORE: LOGIN # KEYWORD: shutdown =20 -command=3D"%%PREFIX%%/sbin/ipsec" . /etc/rc.subr =20 -name=3D"strongswan" -rcvar=3D`set_rcvar` -extra_commands=3D"reload statusall" +name=3Dstrongswan +rcvar=3Dstrongswan_enable =20 load_rc_config $name =20 +command=3D%%PREFIX%%/sbin/ipsec +extra_commands=3D"reload statusall" + start_cmd=3D"strongswan_command start" stop_cmd=3D"strongswan_command stop" restart_cmd=3D"strongswan_command restart" @@ -23,11 +24,9 @@ reload_cmd=3D"strongswan_command reload" statusall_cmd=3D"strongswan_command statusall" =20 - strongswan_command() { $command ${rc_arg} } =20 run_rc_command "$1" - --------------000704040105040500000204-- From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 03:16:52 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A95AB96; Fri, 21 Feb 2014 03:16:52 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7BEF91659; Fri, 21 Feb 2014 03:16: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 s1L3Gqmc019842; Fri, 21 Feb 2014 03:16:52 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1L3GqQv019841; Fri, 21 Feb 2014 03:16:52 GMT (envelope-from linimon) Date: Fri, 21 Feb 2014 03:16:52 GMT Message-Id: <201402210316.s1L3GqQv019841@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/186892: x11-fonts/gnu-unifont: update from 20131020 to 20140214 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 03:16:52 -0000 Synopsis: x11-fonts/gnu-unifont: update from 20131020 to 20140214 Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Fri Feb 21 03:16:40 UTC 2014 Responsible-Changed-Why: ports PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=186892 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 03:16:57 2014 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 ESMTPS id 66BF79D; Fri, 21 Feb 2014 03:16:57 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 39377165C; Fri, 21 Feb 2014 03:16: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 s1L3Gv6n019940; Fri, 21 Feb 2014 03:16:57 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1L3GuJ4019939; Fri, 21 Feb 2014 03:16:56 GMT (envelope-from edwin) Date: Fri, 21 Feb 2014 03:16:56 GMT Message-Id: <201402210316.s1L3GuJ4019939@freefall.freebsd.org> To: vmagerya@gmail.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186892: x11-fonts/gnu-unifont: update from 20131020 to 20140214 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 03:16:57 -0000 Synopsis: x11-fonts/gnu-unifont: update from 20131020 to 20140214 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Fri Feb 21 03:16:56 UTC 2014 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186892 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 03:20:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B6FC619A for ; Fri, 21 Feb 2014 03:20:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A351F1685 for ; Fri, 21 Feb 2014 03: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 s1L3K18S020203 for ; Fri, 21 Feb 2014 03:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1L3K1Tq020202; Fri, 21 Feb 2014 03:20:01 GMT (envelope-from gnats) Date: Fri, 21 Feb 2014 03:20:01 GMT Message-Id: <201402210320.s1L3K1Tq020202@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/186892: x11-fonts/gnu-unifont: update from 20131020 to 20140214 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 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, 21 Feb 2014 03:20:01 -0000 The following reply was made to PR ports/186892; it has been noted by GNATS. From: Edwin Groothuis To: bsdports@gmail.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/186892: x11-fonts/gnu-unifont: update from 20131020 to 20140214 Date: Fri, 21 Feb 2014 03:16:56 UT Maintainer of x11-fonts/gnu-unifont, Please note that PR ports/186892 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/186892 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 03:22:32 2014 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 ESMTPS id 874D41F6; Fri, 21 Feb 2014 03:22:32 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5A89216F4; Fri, 21 Feb 2014 03:22: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 s1L3MWuN022806; Fri, 21 Feb 2014 03:22:32 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1L3MWv4022805; Fri, 21 Feb 2014 03:22:32 GMT (envelope-from linimon) Date: Fri, 21 Feb 2014 03:22:32 GMT Message-Id: <201402210322.s1L3MWv4022805@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/186911: net-mgmt/zabbix22-server: update to 2.2.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 03:22:32 -0000 Synopsis: net-mgmt/zabbix22-server: update to 2.2.2 Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Fri Feb 21 03:22:14 UTC 2014 Responsible-Changed-Why: ports PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=186911 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 03:23:17 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1003F29E; Fri, 21 Feb 2014 03:23:17 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D69001714; Fri, 21 Feb 2014 03:23: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 s1L3NGTK022882; Fri, 21 Feb 2014 03:23:16 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1L3NGr7022881; Fri, 21 Feb 2014 03:23:16 GMT (envelope-from linimon) Date: Fri, 21 Feb 2014 03:23:16 GMT Message-Id: <201402210323.s1L3NGr7022881@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/186915: ports-mgmt/portmaster: tries to use pkg to resolve missing dependency issue X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 03:23:17 -0000 Synopsis: ports-mgmt/portmaster: tries to use pkg to resolve missing dependency issue Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Fri Feb 21 03:23:04 UTC 2014 Responsible-Changed-Why: ports PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=186915 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 03:23:21 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B35102A1; Fri, 21 Feb 2014 03:23:21 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 867721716; Fri, 21 Feb 2014 03:23: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 s1L3NLZ1022984; Fri, 21 Feb 2014 03:23:21 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1L3NLKZ022983; Fri, 21 Feb 2014 03:23:21 GMT (envelope-from edwin) Date: Fri, 21 Feb 2014 03:23:21 GMT Message-Id: <201402210323.s1L3NLKZ022983@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, bdrewery@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186915: ports-mgmt/portmaster: tries to use pkg to resolve missing dependency issue X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 03:23:21 -0000 Synopsis: ports-mgmt/portmaster: tries to use pkg to resolve missing dependency issue Responsible-Changed-From-To: freebsd-ports-bugs->bdrewery Responsible-Changed-By: edwin Responsible-Changed-When: Fri Feb 21 03:23:21 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186915 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 04:00:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 90DECACB for ; Fri, 21 Feb 2014 04:00:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7AE201972 for ; Fri, 21 Feb 2014 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 s1L4017f031639 for ; Fri, 21 Feb 2014 04:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1L401jr031638; Fri, 21 Feb 2014 04:00:01 GMT (envelope-from gnats) Date: Fri, 21 Feb 2014 04:00:01 GMT Message-Id: <201402210400.s1L401jr031638@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: James Andersen Subject: Re: ports/186892: x11-fonts/gnu-unifont: update from 20131020 to 20140214 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: James Andersen List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 04:00:01 -0000 The following reply was made to PR ports/186892; it has been noted by GNATS. From: James Andersen To: bug-followup@freebsd.org Cc: Subject: Re: ports/186892: x11-fonts/gnu-unifont: update from 20131020 to 20140214 Date: Thu, 20 Feb 2014 19:54:35 -0800 --e89a8f6476f18afe2104f2e2940c Content-Type: text/plain; charset=ISO-8859-1 please commit. 2014/02/21 12:16 "Edwin Groothuis" : > Maintainer of x11-fonts/gnu-unifont, > > Please note that PR ports/186892 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/186892 > > -- > Edwin Groothuis via the GNATS Auto Assign Tool > edwin@FreeBSD.org > --e89a8f6476f18afe2104f2e2940c Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable

please commit.

2014/02/21 12:16 "Edwin Groothuis" <= ;edwin@freebsd.org>:
Maintainer of x11-fonts/gnu-unifont,

Please note that PR ports/186892 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/186= 892

--
Edwin Groothuis via the GNATS Auto Assign Tool
edwin@FreeBSD.org
--e89a8f6476f18afe2104f2e2940c-- From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 04:50:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C8C2D220 for ; Fri, 21 Feb 2014 04:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A68CC1DE8 for ; Fri, 21 Feb 2014 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 s1L4o0YD046682 for ; Fri, 21 Feb 2014 04:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1L4o0k8046681; Fri, 21 Feb 2014 04:50:00 GMT (envelope-from gnats) Resent-Date: Fri, 21 Feb 2014 04:50:00 GMT Resent-Message-Id: <201402210450.s1L4o0k8046681@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, Gasol Wu Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7D93CF29 for ; Fri, 21 Feb 2014 04:42:18 +0000 (UTC) Received: from kkbox.com (ip-203-69-67-167.kkcube.com [203.69.67.167]) by mx1.freebsd.org (Postfix) with ESMTP id 1A8BA1D66 for ; Fri, 21 Feb 2014 04:42:17 +0000 (UTC) Received: by goingmarry.kkbox.com (Postfix, from userid 1033) id 969A47509C2; Fri, 21 Feb 2014 12:42:16 +0800 (CST) Message-Id: <20140221044216.969A47509C2@goingmarry.kkbox.com> Date: Fri, 21 Feb 2014 12:42:16 +0800 (CST) From: Gasol Wu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/186938: [NEW PORT] net/pecl-apn: Extension to interact with Apple Push Notification Service X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 04:50:00 -0000 >Number: 186938 >Category: ports >Synopsis: [NEW PORT] net/pecl-apn: Extension to interact with Apple Push Notification 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: Fri Feb 21 04:50:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Gasol Wu >Release: FreeBSD 9.2-RELEASE amd64 >Organization: >Environment: System: FreeBSD goingmarry 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255898: Thu Sep 26 22:50:31 UTC >Description: apn is a PHP extension to introduce simple yet powerful interface for sending push notifications to iOS and OS X devices from within your PHP code. WWW: http://libcapn.org/php-apn Depends on ports/186936 Generated with FreeBSD Port Tools 0.99_11 (mode: new) >How-To-Repeat: >Fix: --- .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: # # pecl-apn # pecl-apn/Makefile # pecl-apn/pkg-descr # pecl-apn/distinfo # pecl-apn/files # pecl-apn/files/patch-config.m4 # echo c - pecl-apn mkdir -p pecl-apn > /dev/null 2>&1 echo x - pecl-apn/Makefile sed 's/^X//' >pecl-apn/Makefile << '7c290f292117e56377a334c42d770fe3' X# Created by: Gasol Wu X# $FreeBSD$ X XPORTNAME= apn XPORTVERSION= 1.0.3 XCATEGORIES= net pear XMASTER_SITES= http://pecl.php.net/get/ XPKGNAMEPREFIX= pecl- XEXTRACT_SUFX= .tgz XDIST_SUBDIR= PECL X XMAINTAINER= gasol.wu@gmail.com XCOMMENT= Extension to interact with Apple Push Notification Service X XLICENSE= PHP301 X XLIB_DEPENDS= libcapn.so:${PORTSDIR}/net/libcapn X XUSE_PHP= yes XUSE_PHPIZE= yes XUSE_PHPEXT= yes XCONFIGURE_ARGS+= --with-apn=${LOCALBASE} X X.include 7c290f292117e56377a334c42d770fe3 echo x - pecl-apn/pkg-descr sed 's/^X//' >pecl-apn/pkg-descr << '09a3f556d32af92eeea8de084491a977' Xapn is a PHP extension to introduce simple yet powerful interface for sending Xpush notifications to iOS and OS X devices from within your PHP code. X XWWW: http://libcapn.org/php-apn 09a3f556d32af92eeea8de084491a977 echo x - pecl-apn/distinfo sed 's/^X//' >pecl-apn/distinfo << '970253e058971cc07995cca9dfb631f2' XSHA256 (PECL/apn-1.0.3.tgz) = 1d554f1a79dbc86212e0abd97b380ae9ee66e073969deb522941bc7866a3c3ca XSIZE (PECL/apn-1.0.3.tgz) = 14406 970253e058971cc07995cca9dfb631f2 echo c - pecl-apn/files mkdir -p pecl-apn/files > /dev/null 2>&1 echo x - pecl-apn/files/patch-config.m4 sed 's/^X//' >pecl-apn/files/patch-config.m4 << '36a58cd5ac215194683334e11684523c' X--- ./config.m4.orig 2014-02-20 16:43:19.000000000 +0800 X+++ ./config.m4 2014-02-21 09:06:40.000000000 +0800 X@@ -37,16 +37,16 @@ X AC_MSG_ERROR([libcapn is not found. Please visit to http://www.libcapn.org/php-apn for more information]) X fi X X- APN_INCDIR=$APN_DIR/include/capn X+ APN_INCDIR=$APN_DIR/include X X SEARCH_LIBS_PATH="/usr/local/lib /usr/lib /usr/lib64 /usr/local/lib64" X SEARCH_LIB_FILE=libcapn.$SHLIB_SUFFIX_NAME X- if test -r $PHP_APN/capn/$SEARCH_LIB_FILE; then X+ if test -r $PHP_APN/$SEARCH_LIB_FILE; then X APN_LIBDIR=$PHP_APN X else X AC_MSG_CHECKING([for $SEARCH_LIB_FILE in default path]) X for i in $SEARCH_LIBS_PATH; do X- if test -r $i/capn/$SEARCH_LIB_FILE; then X+ if test -r $i/$SEARCH_LIB_FILE; then X APN_LIBDIR=$i X AC_MSG_RESULT(found in $i) X break X@@ -59,7 +59,7 @@ X AC_MSG_ERROR([libcapn is not found. Please visit to http://www.libcapn.org/php-apn for more information]) X fi X X- APN_LIBDIR=$APN_LIBDIR/capn X+ APN_LIBDIR=$APN_LIBDIR X X PHP_ADD_INCLUDE($APN_INCDIR) X PHP_ADD_LIBRARY_WITH_PATH(capn, $APN_LIBDIR, APN_SHARED_LIBADD) 36a58cd5ac215194683334e11684523c exit --- .shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 04:50:14 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 44A3B259; Fri, 21 Feb 2014 04:50:14 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 159B01DE9; Fri, 21 Feb 2014 04: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 s1L4oDlK049332; Fri, 21 Feb 2014 04:50:13 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1L4oD3t049331; Fri, 21 Feb 2014 04:50:13 GMT (envelope-from edwin) Date: Fri, 21 Feb 2014 04:50:13 GMT Message-Id: <201402210450.s1L4oD3t049331@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186938: [NEW PORT] net/pecl-apn: Extension to interact with Apple Push Notification Service X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 04:50:14 -0000 Synopsis: [NEW PORT] net/pecl-apn: Extension to interact with Apple Push Notification Service Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: edwin Responsible-Changed-When: Fri Feb 21 04:50:13 UTC 2014 Responsible-Changed-Why: sunpoet@ wants this submitter's PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186938 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 07:10:01 2014 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 ESMTPS id 8C603D50 for ; Fri, 21 Feb 2014 07:10:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5EB971910 for ; Fri, 21 Feb 2014 07: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 s1L7A1io095823 for ; Fri, 21 Feb 2014 07:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1L7A1AE095822; Fri, 21 Feb 2014 07:10:01 GMT (envelope-from gnats) Resent-Date: Fri, 21 Feb 2014 07:10:01 GMT Resent-Message-Id: <201402210710.s1L7A1AE095822@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 ESMTPS id DECE6C93 for ; Fri, 21 Feb 2014 07:06:46 +0000 (UTC) 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 6C89118F9 for ; Fri, 21 Feb 2014 07:06:46 +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 75B842EC003; Fri, 21 Feb 2014 16:06:32 +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 5A2B52EC001; Fri, 21 Feb 2014 16:06:32 +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 s1L76RS0041371; Fri, 21 Feb 2014 16:06:27 +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 s1L76Rkf041370; Fri, 21 Feb 2014 16:06:27 +0900 (JST) (envelope-from turutani) Message-Id: <201402210706.s1L76Rkf041370@h120.65.226.10.32118.vlan.kuins.net> Date: Fri, 21 Feb 2014 16:06:27 +0900 (JST) From: Tsurutani Naoki To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/186939: www/linux-f10-flashplugin is vulnerable Cc: turutani@scphys.kyoto-u.ac.jp X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 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, 21 Feb 2014 07:10:01 -0000 >Number: 186939 >Category: ports >Synopsis: www/linux-f10-flashplugin is vulnerable >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: Fri Feb 21 07:10:00 UTC 2014 >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: www/linux-f10-flashplugin11 is vulnerable. ref: http://helpx.adobe.com/security/products/flash-player/apsb14-07.html >How-To-Repeat: >Fix: 11.2r202.341 is available. here is a patch: diff -urN linux-f10-flashplugin11.orig/Makefile linux-f10-flashplugin11/Makefile --- linux-f10-flashplugin11.orig/Makefile 2014-02-06 00:56:41.000000000 +0900 +++ linux-f10-flashplugin11/Makefile 2014-02-21 15:57:36.000000000 +0900 @@ -2,7 +2,7 @@ # $FreeBSD: head/www/linux-f10-flashplugin11/Makefile 342741 2014-02-05 15:56:41Z eadler $ PORTNAME= flashplugin -PORTVERSION= 11.2r202.336 +PORTVERSION= 11.2r202.341 CATEGORIES= www multimedia linux MASTER_SITES= http://fpdownload.macromedia.com/get/flashplayer/pdc/${PORTVERSION:C/r/\./}/:plugin \ LOCAL/nox:suplib diff -urN linux-f10-flashplugin11.orig/distinfo linux-f10-flashplugin11/distinfo --- linux-f10-flashplugin11.orig/distinfo 2014-02-06 00:56:41.000000000 +0900 +++ linux-f10-flashplugin11/distinfo 2014-02-21 15:59:00.000000000 +0900 @@ -1,4 +1,4 @@ -SHA256 (flashplugin/11.2r202.336/install_flash_player_11_linux.i386.tar.gz) = 05c1ab26da7089115e5d987154463e9b8b99e9360a7f5c2f7ee4e472e4925d56 -SIZE (flashplugin/11.2r202.336/install_flash_player_11_linux.i386.tar.gz) = 6923195 -SHA256 (flashplugin/11.2r202.336/linux-f10-flashsupport-9.0.1.i386.tar.gz) = 4a309b1a326bd2212cc72480628659e5a7fd61d9e0572cb7350c206f030955bf -SIZE (flashplugin/11.2r202.336/linux-f10-flashsupport-9.0.1.i386.tar.gz) = 3455 +SHA256 (flashplugin/11.2r202.341/install_flash_player_11_linux.i386.tar.gz) = 4cc1d08661c8b39bd86bc8ad867fcecfd344916ca076e2f9b4b20c405a0cdf2d +SIZE (flashplugin/11.2r202.341/install_flash_player_11_linux.i386.tar.gz) = 6924197 +SHA256 (flashplugin/11.2r202.341/linux-f10-flashsupport-9.0.1.i386.tar.gz) = 4a309b1a326bd2212cc72480628659e5a7fd61d9e0572cb7350c206f030955bf +SIZE (flashplugin/11.2r202.341/linux-f10-flashsupport-9.0.1.i386.tar.gz) = 3455 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 08:07:22 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 769EEB63; Fri, 21 Feb 2014 08:07:22 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4B1B01D35; Fri, 21 Feb 2014 08:07: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 s1L87MTG021516; Fri, 21 Feb 2014 08:07:22 GMT (envelope-from tijl@freefall.freebsd.org) Received: (from tijl@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1L87MTs021515; Fri, 21 Feb 2014 09:07:22 +0100 (CET) (envelope-from tijl) Date: Fri, 21 Feb 2014 09:07:22 +0100 (CET) Message-Id: <201402210807.s1L87MTs021515@freefall.freebsd.org> To: tijl@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, eadler@FreeBSD.org From: tijl@FreeBSD.org Subject: Re: ports/186939: www/linux-f10-flashplugin is vulnerable X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 08:07:22 -0000 Synopsis: www/linux-f10-flashplugin is vulnerable Responsible-Changed-From-To: freebsd-ports-bugs->eadler Responsible-Changed-By: tijl Responsible-Changed-When: Fri Feb 21 09:06:46 CET 2014 Responsible-Changed-Why: Assign to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=186939 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 09:00:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D6BDADCD for ; Fri, 21 Feb 2014 09:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9CB4612D0 for ; Fri, 21 Feb 2014 09: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 s1L900OU040094 for ; Fri, 21 Feb 2014 09:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1L900Mn040093; Fri, 21 Feb 2014 09:00:00 GMT (envelope-from gnats) Resent-Date: Fri, 21 Feb 2014 09:00:00 GMT Resent-Message-Id: <201402210900.s1L900Mn040093@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, Gasol Wu Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E2ED3924 for ; Fri, 21 Feb 2014 08:50:46 +0000 (UTC) Received: from kkbox.com (ip-203-69-67-167.kkcube.com [203.69.67.167]) by mx1.freebsd.org (Postfix) with ESMTP id B1D5C11EB for ; Fri, 21 Feb 2014 08:50:46 +0000 (UTC) Received: by goingmarry.kkbox.com (Postfix, from userid 1033) id C3F707508AA; Fri, 21 Feb 2014 16:50:44 +0800 (CST) Message-Id: <20140221085044.C3F707508AA@goingmarry.kkbox.com> Date: Fri, 21 Feb 2014 16:50:44 +0800 (CST) From: Gasol Wu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/186940: [PATCH] www/phalcon: update to 1.2.6 Cc: linpct@gmail.com X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 09:00:00 -0000 >Number: 186940 >Category: ports >Synopsis: [PATCH] www/phalcon: update to 1.2.6 >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: Fri Feb 21 09:00:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Gasol Wu >Release: FreeBSD 9.2-RELEASE amd64 >Organization: >Environment: System: FreeBSD goingmarry 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255898: Thu Sep 26 22:50:31 UTC >Description: - Update to 1.2.6 Port maintainer (linpct@gmail.com) is cc'd. Generated with FreeBSD Port Tools 0.99_11 (mode: update, diff: ports) >How-To-Repeat: >Fix: --- phalcon-1.2.6.patch begins here --- diff -ruN /usr/ports/www/phalcon/Makefile ./Makefile --- /usr/ports/www/phalcon/Makefile 2014-01-29 17:02:29.000000000 +0800 +++ ./Makefile 2014-02-21 16:30:58.000000000 +0800 @@ -2,7 +2,7 @@ # $FreeBSD: head/www/phalcon/Makefile 341701 2014-01-29 09:02:29Z miwi $ PORTNAME= phalcon -PORTVERSION= 1.2.4 +PORTVERSION= 1.2.6 CATEGORIES= www MASTER_SITES= https://github.com/phalcon/cphalcon/archive/v${PORTVERSION}/ DISTNAME= ${PORTNAME}-v${PORTVERSION} diff -ruN /usr/ports/www/phalcon/distinfo ./distinfo --- /usr/ports/www/phalcon/distinfo 2013-12-13 11:01:27.000000000 +0800 +++ ./distinfo 2014-02-21 16:31:08.000000000 +0800 @@ -1,2 +1,2 @@ -SHA256 (phalcon-v1.2.4.tar.gz) = ad4132b5e74206015be473a25b169fe8c774b82c87ffc4e7dc388a97692f616f -SIZE (phalcon-v1.2.4.tar.gz) = 2608470 +SHA256 (phalcon-v1.2.6.tar.gz) = 63006071e641f956b6ee524b38d3a6b9b0801176e6753aa0ecda225dd98e3513 +SIZE (phalcon-v1.2.6.tar.gz) = 2584664 --- phalcon-1.2.6.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 09:00:09 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7673CE07; Fri, 21 Feb 2014 09:00:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4CE6F12D7; Fri, 21 Feb 2014 09: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 s1L909jg040228; Fri, 21 Feb 2014 09:00:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1L909QE040227; Fri, 21 Feb 2014 09:00:09 GMT (envelope-from edwin) Date: Fri, 21 Feb 2014 09:00:09 GMT Message-Id: <201402210900.s1L909QE040227@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186940: [PATCH] www/phalcon: update to 1.2.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 09:00:09 -0000 Synopsis: [PATCH] www/phalcon: update to 1.2.6 Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: edwin Responsible-Changed-When: Fri Feb 21 09:00:09 UTC 2014 Responsible-Changed-Why: sunpoet@ wants this submitter's PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186940 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 09:40:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 11FED18E for ; Fri, 21 Feb 2014 09:40:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E4FAC16D7 for ; Fri, 21 Feb 2014 09: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 s1L9e0aF052924 for ; Fri, 21 Feb 2014 09:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1L9e0BZ052888; Fri, 21 Feb 2014 09:40:00 GMT (envelope-from gnats) Resent-Date: Fri, 21 Feb 2014 09:40:00 GMT Resent-Message-Id: <201402210940.s1L9e0BZ052888@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, Gea-Suan 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 ESMTPS id 0758111B for ; Fri, 21 Feb 2014 09:35:41 +0000 (UTC) Received: from a8-22.smtp-out.amazonses.com (a8-22.smtp-out.amazonses.com [54.240.8.22]) by mx1.freebsd.org (Postfix) with ESMTP id C9DF516B3 for ; Fri, 21 Feb 2014 09:35:40 +0000 (UTC) Message-Id: <0000014453c87246-5d480a39-0b13-4645-ac89-fa06e29858c7-000000@email.amazonses.com> Date: Fri, 21 Feb 2014 09:30:49 +0000 From: Gea-Suan Lin To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/186941: [PATCH] net/p5-Net-NIS-Listgroup: Install missing pm file. Cc: perl@FreeBSD.org, gslin@gslin.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 09:40:01 -0000 >Number: 186941 >Category: ports >Synopsis: [PATCH] net/p5-Net-NIS-Listgroup: Install missing pm file. >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 Feb 21 09:40:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Gea-Suan Lin >Release: FreeBSD 10.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD freebsd.gslin.org 10.0-RELEASE FreeBSD 10.0-RELEASE #0 r260789: Thu Jan 16 22:34:59 UTC >Description: - Install missing pm file. - Add LICENSE. Port maintainer (perl@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 1.00.2014.02.11 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- p5-Net-NIS-Listgroup-1.0.0.patch begins here --- diff -ruN /usr/ports/net/p5-Net-NIS-Listgroup/Makefile ./Makefile --- /usr/ports/net/p5-Net-NIS-Listgroup/Makefile 2013-11-06 00:42:55.000000000 +0800 +++ ./Makefile 2014-02-20 03:15:24.000000000 +0800 @@ -3,7 +3,7 @@ PORTNAME= Net-NIS-Listgroup PORTVERSION= 1.0.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -11,9 +11,15 @@ MAINTAINER= perl@FreeBSD.org COMMENT= Lists hosts/users in a netgroup group +LICENSE= GPLv2 + RUN_DEPENDS= p5-Net-NIS>0:${PORTSDIR}/net/p5-Net-NIS USES= perl5 USE_PERL5= configure +post-patch: + ${MKDIR} ${WRKSRC}/lib + ${MV} ${WRKSRC}/Net ${WRKSRC}/lib + .include diff -ruN /usr/ports/net/p5-Net-NIS-Listgroup/pkg-plist ./pkg-plist --- /usr/ports/net/p5-Net-NIS-Listgroup/pkg-plist 2014-01-22 23:16:56.000000000 +0800 +++ ./pkg-plist 2014-02-20 03:05:39.000000000 +0800 @@ -1,7 +1,19 @@ +%%PERL5_MAN3%%/Net::NIS::Listgroup.3.gz +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/NIS/Listgroup/.packlist +%%SITE_PERL%%/Net/NIS/Listgroup.pm bin/listgroup bin/make_cron -%%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/NIS/Listgroup/.packlist man/man1/listgroup.1.gz +@dirrmtry lib/perl5/site_perl +@dirrmtry lib/perl5/%%PERL_VER%%/man +@dirrmtry lib/perl5/%%PERL_VER%% +@dirrmtry lib/perl5 +@dirrmtry %%SITE_PERL%%/Net/NIS +@dirrmtry %%SITE_PERL%%/Net @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/NIS/Listgroup @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/NIS @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%% +@dirrmtry %%SITE_PERL%% +@dirrmtry %%PERL5_MAN3%% --- p5-Net-NIS-Listgroup-1.0.0.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 09:40:09 2014 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 ESMTPS id 17D1F1BF; Fri, 21 Feb 2014 09:40:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DFA3E16DB; Fri, 21 Feb 2014 09: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 s1L9e8tq053031; Fri, 21 Feb 2014 09:40:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1L9e8Ox053030; Fri, 21 Feb 2014 09:40:08 GMT (envelope-from edwin) Date: Fri, 21 Feb 2014 09:40:08 GMT Message-Id: <201402210940.s1L9e8Ox053030@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186941: [PATCH] net/p5-Net-NIS-Listgroup: Install missing pm file. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 09:40:09 -0000 Synopsis: [PATCH] net/p5-Net-NIS-Listgroup: Install missing pm file. Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Fri Feb 21 09:40:08 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186941 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 10:30:01 2014 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 ESMTPS id C4071D93 for ; Fri, 21 Feb 2014 10:30:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 96E841ACE for ; Fri, 21 Feb 2014 10: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 s1LAU12s068761 for ; Fri, 21 Feb 2014 10:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1LAU1JF068760; Fri, 21 Feb 2014 10:30:01 GMT (envelope-from gnats) Date: Fri, 21 Feb 2014 10:30:01 GMT Message-Id: <201402211030.s1LAU1JF068760@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: SHIOZAKI Takehiko Subject: Re: ports/185122: japanese/mutt-devel uses japanese/libslang, but it has probrem X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: SHIOZAKI Takehiko List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 10:30:01 -0000 The following reply was made to PR ports/185122; it has been noted by GNATS. From: SHIOZAKI Takehiko To: bug-followup@FreeBSD.org Cc: linimon@freebsd.org, ribbon@ribbon.or.jp Subject: Re: ports/185122: japanese/mutt-devel uses japanese/libslang, but it has probrem Date: Fri, 21 Feb 2014 19:25:31 +0900 Hi team Could someone take care of this patch and close this PR, please? Regards -- st@be.to From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 12:55:08 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 14246375; Fri, 21 Feb 2014 12:55:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DB80B195F; Fri, 21 Feb 2014 12:55: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 s1LCt7hl017848; Fri, 21 Feb 2014 12:55:07 GMT (envelope-from jadawin@freefall.freebsd.org) Received: (from jadawin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1LCt7da017847; Fri, 21 Feb 2014 12:55:07 GMT (envelope-from jadawin) Date: Fri, 21 Feb 2014 12:55:07 GMT Message-Id: <201402211255.s1LCt7da017847@freefall.freebsd.org> To: jadawin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jadawin@FreeBSD.org From: jadawin@FreeBSD.org Subject: Re: ports/186933: [maintainer update] graphics/nomacs update to version 1.6.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 12:55:08 -0000 Synopsis: [maintainer update] graphics/nomacs update to version 1.6.4 Responsible-Changed-From-To: freebsd-ports-bugs->jadawin Responsible-Changed-By: jadawin Responsible-Changed-When: Fri Feb 21 12:55:07 UTC 2014 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=186933 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 14:20:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 031EAC6 for ; Fri, 21 Feb 2014 14:20:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D17981319 for ; Fri, 21 Feb 2014 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 s1LEK0LP043346 for ; Fri, 21 Feb 2014 14:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1LEK01B043337; Fri, 21 Feb 2014 14:20:00 GMT (envelope-from gnats) Resent-Date: Fri, 21 Feb 2014 14:20:00 GMT Resent-Message-Id: <201402211420.s1LEK01B043337@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 ESMTPS id 85F80C15; Fri, 21 Feb 2014 14:11:13 +0000 (UTC) Received: from smtpout6.timeweb.ru (smtpout6.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 3CF1512BA; Fri, 21 Feb 2014 14:11:12 +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 1WGqoo-0006L7-W4; Fri, 21 Feb 2014 18:11:11 +0400 Received: from hades.panopticon (hades.panopticon [192.168.0.32]) by hive.panopticon (Postfix) with ESMTP id A5284365; Fri, 21 Feb 2014 18:11:10 +0400 (MSK) Received: by hades.panopticon (Postfix, from userid 1000) id A29C56D18; Fri, 21 Feb 2014 18:11:10 +0400 (MSK) Message-Id: <20140221141110.A29C56D18@hades.panopticon> Date: Fri, 21 Feb 2014 18:11:10 +0400 (MSK) From: Dmitry Marakasov To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/186944: [PATCH] security/pidgin-otr: should explicitely require soversion of libotr Cc: jgh@FreeBSD.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 14:20:01 -0000 >Number: 186944 >Category: ports >Synopsis: [PATCH] security/pidgin-otr: should explicitely require soversion of libotr >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 Feb 21 14:20:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Dmitry Marakasov >Release: FreeBSD 10.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD hades.panopticon 10.0-RELEASE FreeBSD 10.0-RELEASE #0 r260807: Fri Jan 17 13:14:28 MSK >Description: Since there are both security/libotr3 with libotr.so.4 and security/libotr with libotr.so.5, a port should explicity set soversion in dependency to not pick up a wrong library. Port maintainer (jgh@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 1.00.2014.02.18 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- pidgin-otr-4.0.0.patch begins here --- diff -ruN /usr/ports/security/pidgin-otr/Makefile ./Makefile --- /usr/ports/security/pidgin-otr/Makefile 2014-02-02 11:39:09.000000000 +0400 +++ ./Makefile 2014-02-21 18:10:26.183888077 +0400 @@ -14,7 +14,7 @@ COMMENT= Allows deniable private conversations using Pidgin BUILD_DEPENDS= pidgin:${PORTSDIR}/net-im/pidgin -LIB_DEPENDS= libotr.so:${PORTSDIR}/security/libotr \ +LIB_DEPENDS= libotr.so.5:${PORTSDIR}/security/libotr \ libgcrypt.so:${PORTSDIR}/security/libgcrypt \ libpurple.so:${PORTSDIR}/net-im/libpurple --- pidgin-otr-4.0.0.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 14:20:08 2014 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 ESMTPS id D1543F5; Fri, 21 Feb 2014 14:20:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A411D131B; Fri, 21 Feb 2014 14: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 s1LEK8EU043459; Fri, 21 Feb 2014 14:20:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1LEK88w043458; Fri, 21 Feb 2014 14:20:08 GMT (envelope-from edwin) Date: Fri, 21 Feb 2014 14:20:08 GMT Message-Id: <201402211420.s1LEK88w043458@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jgh@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186944: [PATCH] security/pidgin-otr: should explicitely require soversion of libotr X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 14:20:08 -0000 Synopsis: [PATCH] security/pidgin-otr: should explicitely require soversion of libotr Responsible-Changed-From-To: freebsd-ports-bugs->jgh Responsible-Changed-By: edwin Responsible-Changed-When: Fri Feb 21 14:20:08 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186944 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 14:20:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B32F3C4 for ; Fri, 21 Feb 2014 14:20:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8D9AA1317 for ; Fri, 21 Feb 2014 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 s1LEK0U2043308 for ; Fri, 21 Feb 2014 14:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1LEK01f043307; Fri, 21 Feb 2014 14:20:00 GMT (envelope-from gnats) Resent-Date: Fri, 21 Feb 2014 14:20:00 GMT Resent-Message-Id: <201402211420.s1LEK01f043307@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 ESMTPS id 33648B84; Fri, 21 Feb 2014 14:10:12 +0000 (UTC) Received: from smtpout6.timeweb.ru (smtpout6.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 DECAB1248; Fri, 21 Feb 2014 14:10:11 +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 1WGqni-0004pP-OY; Fri, 21 Feb 2014 18:10:02 +0400 Received: from hades.panopticon (hades.panopticon [192.168.0.32]) by hive.panopticon (Postfix) with ESMTP id 5AF97364; Fri, 21 Feb 2014 18:10:02 +0400 (MSK) Received: by hades.panopticon (Postfix, from userid 1000) id 4C13D6D16; Fri, 21 Feb 2014 18:10:02 +0400 (MSK) Message-Id: <20140221141002.4C13D6D16@hades.panopticon> Date: Fri, 21 Feb 2014 18:10:02 +0400 (MSK) From: Dmitry Marakasov To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/186943: [PATCH] net-im/kopete-kde4: should explicitely require soversion of libotr Cc: kde@FreeBSD.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 14:20:00 -0000 >Number: 186943 >Category: ports >Synopsis: [PATCH] net-im/kopete-kde4: should explicitely require soversion of libotr >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 Feb 21 14:20:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Dmitry Marakasov >Release: FreeBSD 10.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD hades.panopticon 10.0-RELEASE FreeBSD 10.0-RELEASE #0 r260807: Fri Jan 17 13:14:28 MSK >Description: Since there are both security/libotr3 with libotr.so.4 and security/libotr with libotr.so.5, kopete should explicity set soversion in dependency to not pick up a wrong library. Port maintainer (kde@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 1.00.2014.02.18 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- kopete-4.12.2.patch begins here --- diff -ruN /usr/ports/net-im/kopete-kde4/Makefile ./Makefile --- /usr/ports/net-im/kopete-kde4/Makefile 2014-02-18 18:23:03.000000000 +0400 +++ ./Makefile 2014-02-21 18:08:09.210334644 +0400 @@ -11,7 +11,7 @@ LIB_DEPENDS= libidn.so:${PORTSDIR}/dns/libidn \ libqca.so:${PORTSDIR}/devel/qca \ - libotr.so:${PORTSDIR}/security/libotr \ + libotr.so.5:${PORTSDIR}/security/libotr \ libgadu.so:${PORTSDIR}/polish/libgadu \ libortp.so:${PORTSDIR}/net/linphone-base \ libmediastreamer.so:${PORTSDIR}/net/linphone-base \ --- kopete-4.12.2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 14:20:23 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D8F28173; Fri, 21 Feb 2014 14:20:23 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id ACD661325; Fri, 21 Feb 2014 14:20: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 s1LEKNIn043543; Fri, 21 Feb 2014 14:20:23 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1LEKNbG043542; Fri, 21 Feb 2014 14:20:23 GMT (envelope-from edwin) Date: Fri, 21 Feb 2014 14:20:23 GMT Message-Id: <201402211420.s1LEKNbG043542@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kde@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186943: [PATCH] net-im/kopete-kde4: should explicitely require soversion of libotr X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 14:20:23 -0000 Synopsis: [PATCH] net-im/kopete-kde4: should explicitely require soversion of libotr Responsible-Changed-From-To: freebsd-ports-bugs->kde Responsible-Changed-By: edwin Responsible-Changed-When: Fri Feb 21 14:20:23 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186943 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 14:36:03 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 60A62906; Fri, 21 Feb 2014 14:36:03 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 33945151F; Fri, 21 Feb 2014 14:36: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 s1LEa3Eg049541; Fri, 21 Feb 2014 14:36:03 GMT (envelope-from thierry@freefall.freebsd.org) Received: (from thierry@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1LEa3I0049540; Fri, 21 Feb 2014 14:36:03 GMT (envelope-from thierry) Date: Fri, 21 Feb 2014 14:36:03 GMT Message-Id: <201402211436.s1LEa3I0049540@freefall.freebsd.org> To: thierry@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, thierry@FreeBSD.org From: thierry@FreeBSD.org Subject: Re: ports/177692: New port: science/openkim X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 14:36:03 -0000 Synopsis: New port: science/openkim Responsible-Changed-From-To: freebsd-ports-bugs->thierry Responsible-Changed-By: thierry Responsible-Changed-When: ven 21 fév 2014 14:35:20 UTC Responsible-Changed-Why: Take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=177692 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 14:40:02 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 77826D5F for ; Fri, 21 Feb 2014 14:40:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 43ABC158F for ; Fri, 21 Feb 2014 14: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 s1LEe1TS049730 for ; Fri, 21 Feb 2014 14:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1LEe1ks049729; Fri, 21 Feb 2014 14:40:01 GMT (envelope-from gnats) Resent-Date: Fri, 21 Feb 2014 14:40:01 GMT Resent-Message-Id: <201402211440.s1LEe1ks049729@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, Anton Shterenlikht Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7B32E7DA for ; Fri, 21 Feb 2014 14:34:02 +0000 (UTC) Received: from eu1sys200aog120.obsmtp.com (eu1sys200aog120.obsmtp.com [207.126.144.149]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C4C1D150E for ; Fri, 21 Feb 2014 14:34:01 +0000 (UTC) Received: from mail-wi0-f174.google.com ([209.85.212.174]) (using TLSv1) by eu1sys200aob120.postini.com ([207.126.147.11]) with SMTP ID DSNKUwdjvfCElfT48+42WMMDf9GvJYE+08CZ@postini.com; Fri, 21 Feb 2014 14:34:01 UTC Received: by mail-wi0-f174.google.com with SMTP id f8so890100wiw.7 for ; Fri, 21 Feb 2014 06:33:33 -0800 (PST) Received: from mech-cluster241.men.bris.ac.uk (mech-cluster241.men.bris.ac.uk. [137.222.187.241]) by mx.google.com with ESMTPSA id ju6sm17498985wjc.1.2014.02.21.06.33.32 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 21 Feb 2014 06:33:32 -0800 (PST) Received: from mech-cluster241.men.bris.ac.uk (localhost [127.0.0.1]) by mech-cluster241.men.bris.ac.uk (8.14.7/8.14.6) with ESMTP id s1LEXUZh052114 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Fri, 21 Feb 2014 14:33:31 GMT (envelope-from mexas@mech-cluster241.men.bris.ac.uk) Received: (from mexas@localhost) by mech-cluster241.men.bris.ac.uk (8.14.7/8.14.6/Submit) id s1LEXUVO052113; Fri, 21 Feb 2014 14:33:30 GMT (envelope-from mexas) Message-Id: <201402211433.s1LEXUVO052113@mech-cluster241.men.bris.ac.uk> Date: Fri, 21 Feb 2014 06:33:32 -0800 (PST) From: Anton Shterenlikht Sender: Anton Shterenlikht To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/186945: graphics/jbig2dec: ia64 current: FAIL: test_jbig2dec.py, env: python: No such file or directory X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Anton Shterenlikht List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 14:40:02 -0000 >Number: 186945 >Category: ports >Synopsis: graphics/jbig2dec: ia64 current: FAIL: test_jbig2dec.py, env: python: No such file or directory >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: Fri Feb 21 14:40:01 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Anton Shterenlikht >Release: FreeBSD 11.0-CURRENT ia64 >Organization: University of Bristol >Environment: System: FreeBSD mech-cluster241.men.bris.ac.uk 11.0-CURRENT FreeBSD 11.0-CURRENT #11 r260914: Fri Feb 7 13:43:53 GMT 2014 root@mech-cluster241.men.bris.ac.uk:/usr/obj/usr/src/sys/TZAV ia64 >Description: building in a poudriere jail. Fails with: make -C /wrkdirs/usr/ports/graphics/jbig2dec/work/jbig2dec-0.11 check-TESTS verifying SHA-1 implementation... ok PASS: test_sha1 env: python: No such file or directory FAIL: test_jbig2dec.py testing jbig2 huffmann decoding... (should be 8 5 (oob) 8) 8 5 (oob) 8 PASS: test_huffman PASS: test_arith ========================================== 1 of 4 tests failed Please report to jbig2-dev@ghostscript.com ========================================== *** Error code 1 Full build log: http://eis.bris.ac.uk/~mexas/logs/jbig2dec-0.11_1.log >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 14:50:00 2014 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 ESMTPS id A195355A for ; Fri, 21 Feb 2014 14:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6BD8B1680 for ; Fri, 21 Feb 2014 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 s1LEo07k052500 for ; Fri, 21 Feb 2014 14:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1LEo0I7052499; Fri, 21 Feb 2014 14:50:00 GMT (envelope-from gnats) Resent-Date: Fri, 21 Feb 2014 14:50:00 GMT Resent-Message-Id: <201402211450.s1LEo0I7052499@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, Anton Shterenlikht Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E7A232A8 for ; Fri, 21 Feb 2014 14:46:20 +0000 (UTC) Received: from eu1sys200aog101.obsmtp.com (eu1sys200aog101.obsmtp.com [207.126.144.111]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3EBF31644 for ; Fri, 21 Feb 2014 14:46:19 +0000 (UTC) Received: from mail-we0-f175.google.com ([74.125.82.175]) (using TLSv1) by eu1sys200aob101.postini.com ([207.126.147.11]) with SMTP ID DSNKUwdms3wqAI+bwZY9fwFKjAFIS/TXcqqZ@postini.com; Fri, 21 Feb 2014 14:46:20 UTC Received: by mail-we0-f175.google.com with SMTP id q59so2601672wes.20 for ; Fri, 21 Feb 2014 06:46:11 -0800 (PST) Received: from mech-cluster241.men.bris.ac.uk (mech-cluster241.men.bris.ac.uk. [137.222.187.241]) by mx.google.com with ESMTPSA id bm8sm17551065wjc.12.2014.02.21.06.46.09 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 21 Feb 2014 06:46:10 -0800 (PST) Received: from mech-cluster241.men.bris.ac.uk (localhost [127.0.0.1]) by mech-cluster241.men.bris.ac.uk (8.14.7/8.14.6) with ESMTP id s1LEk3ua052250 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Fri, 21 Feb 2014 14:46:07 GMT (envelope-from mexas@mech-cluster241.men.bris.ac.uk) Received: (from mexas@localhost) by mech-cluster241.men.bris.ac.uk (8.14.7/8.14.6/Submit) id s1LEk36I052249; Fri, 21 Feb 2014 14:46:03 GMT (envelope-from mexas) Message-Id: <201402211446.s1LEk36I052249@mech-cluster241.men.bris.ac.uk> Date: Fri, 21 Feb 2014 06:46:10 -0800 (PST) From: Anton Shterenlikht Sender: Anton Shterenlikht To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/186946: science/netcdf: ia64 11-current build failure: configure: error: C compiler cannot create executables X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Anton Shterenlikht List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 14:50:00 -0000 >Number: 186946 >Category: ports >Synopsis: science/netcdf: ia64 11-current build failure: configure: error: C compiler cannot create executables >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: Fri Feb 21 14:50:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Anton Shterenlikht >Release: FreeBSD 11.0-CURRENT ia64 >Organization: University of Bristol >Environment: System: FreeBSD mech-cluster241.men.bris.ac.uk 11.0-CURRENT FreeBSD 11.0-CURRENT #11 r260914: Fri Feb 7 13:43:53 GMT 2014 root@mech-cluster241.men.bris.ac.uk:/usr/obj/usr/src/sys/TZAV ia64 >Description: building in a poudriere jail, fails with: configure: finding C compiler checking for C compiler default output file name... configure: error: C compiler cannot create executables See `config.log' for more details. The full build log: http://eis.bris.ac.uk/~mexas/logs/netcdf3-3.6.3_5.log config.log: http://eis.bris.ac.uk/~mexas/logs/ia64-11-current-netcdf-config.log >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 14:50:08 2014 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 ESMTPS id 4754B599; Fri, 21 Feb 2014 14:50:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 185F816E3; Fri, 21 Feb 2014 14: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 s1LEo7Ie052640; Fri, 21 Feb 2014 14:50:07 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1LEo7QE052639; Fri, 21 Feb 2014 14:50:07 GMT (envelope-from edwin) Date: Fri, 21 Feb 2014 14:50:07 GMT Message-Id: <201402211450.s1LEo7QE052639@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186946: science/netcdf: ia64 11-current build failure: configure: error: C compiler cannot create executables X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 14:50:08 -0000 Synopsis: science/netcdf: ia64 11-current build failure: configure: error: C compiler cannot create executables Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: edwin Responsible-Changed-When: Fri Feb 21 14:50:07 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186946 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 15:00:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C440AB54 for ; Fri, 21 Feb 2014 15:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A0C4E1770 for ; Fri, 21 Feb 2014 15: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 s1LF00qp055428 for ; Fri, 21 Feb 2014 15:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1LF00XT055427; Fri, 21 Feb 2014 15:00:00 GMT (envelope-from gnats) Resent-Date: Fri, 21 Feb 2014 15:00:00 GMT Resent-Message-Id: <201402211500.s1LF00XT055427@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, Jim Ohlstein Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EF38EB11 for ; Fri, 21 Feb 2014 14:58:50 +0000 (UTC) Received: from bromine.jlkhosting.com (bromine.jlkhosting.com [5.135.138.142]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B41FF175F for ; Fri, 21 Feb 2014 14:58:50 +0000 (UTC) Received: from root by bromine.jlkhosting.com with local (Exim 4.82 (FreeBSD)) (envelope-from ) id 1WGrC7-0005Mb-D5 for FreeBSD-gnats-submit@freebsd.org; Fri, 21 Feb 2014 15:35:15 +0100 Message-Id: Date: Fri, 21 Feb 2014 15:35:15 +0100 From: Jim Ohlstein To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/186947: [PATCH] databases/dbvis: update to 9.1.6, take maintainership X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 15:00:00 -0000 >Number: 186947 >Category: ports >Synopsis: [PATCH] databases/dbvis: update to 9.1.6, take maintainership >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: Fri Feb 21 15:00:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Jim Ohlstein >Release: FreeBSD 10.0-STABLE amd64 >Organization: >Environment: System: FreeBSD bromine.jlkhosting.com 10.0-STABLE FreeBSD 10.0-STABLE #0 r260997: Wed Jan 22 02:56:43 CET >Description: - Update to 9.1.6 - Take maintainership - Add license - Adjust "Categories" to more intuitive - will need entry in "MOVED" Generated with FreeBSD Port Tools 1.00.2014.02.18 (mode: update, diff: SVN) >How-To-Repeat: >Fix: --- dbvis-9.1.6.patch begins here --- Index: Makefile =================================================================== --- Makefile (revision 345469) +++ Makefile (working copy) @@ -2,21 +2,27 @@ # $FreeBSD$ PORTNAME= dbvis -PORTVERSION= 7.1 -CATEGORIES= java devel +PORTVERSION= 9.1.6 +CATEGORIES= databases java MASTER_SITES= http://www.dbvis.com/product_download/${PORTNAME}-${PORTVERSION}/media/ DISTNAME= dbvis_unix_${PORTVERSION:S/./_/g} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= jim@ohlste.in COMMENT= DbVisualizer database tool +LICENSE= DbVisualizer_EULA +LICENSE_NAME= End-User License Agreement for DbVisualizer +LICENSE_TEXT= Full license can be found at http://www.dbvis.com/eula/ +LICENSE_PERMS= auto-accept + USE_JAVA= yes JAVA_VERSION= 1.6+ +JAVA_VENDOR= openjdk NO_BUILD= yes RESTRICTED= Redistribution is not permitted PLIST_FILES= bin/dbvis -WRKSRC= ${WRKDIR}/DbVisualizer-${PORTVERSION} +WRKSRC= ${WRKDIR}/DbVisualizer do-install: cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR} Index: distinfo =================================================================== --- distinfo (revision 345469) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (dbvis_unix_7_1.tar.gz) = a2ec23044ef15c9c302ac4618f7df484cf00b7b761516fa3e6ca299d6f5dbd40 -SIZE (dbvis_unix_7_1.tar.gz) = 30566317 +SHA256 (dbvis_unix_9_1_6.tar.gz) = 30b515c602f83eeb2f9f16d4f7d1ac3af9eaed20cf8b4aada609169ebe6ef7db +SIZE (dbvis_unix_9_1_6.tar.gz) = 54267957 --- dbvis-9.1.6.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 16:20:01 2014 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 ESMTPS id 08DA0A43 for ; Fri, 21 Feb 2014 16:20:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C872F10CA for ; Fri, 21 Feb 2014 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 s1LGK0Xt080512 for ; Fri, 21 Feb 2014 16:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1LGK0q2080511; Fri, 21 Feb 2014 16:20:00 GMT (envelope-from gnats) Resent-Date: Fri, 21 Feb 2014 16:20:00 GMT Resent-Message-Id: <201402211620.s1LGK0q2080511@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, Anton Shterenlikht Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1F6D17DB for ; Fri, 21 Feb 2014 16:12:51 +0000 (UTC) Received: from eu1sys200aog119.obsmtp.com (eu1sys200aog119.obsmtp.com [207.126.144.147]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 65EE3107E for ; Fri, 21 Feb 2014 16:12:49 +0000 (UTC) Received: from mail-wi0-f178.google.com ([209.85.212.178]) (using TLSv1) by eu1sys200aob119.postini.com ([207.126.147.11]) with SMTP ID DSNKUwd7AHnXljy7nGEsGi3SKW2AlZccb52b@postini.com; Fri, 21 Feb 2014 16:12:50 UTC Received: by mail-wi0-f178.google.com with SMTP id cc10so989836wib.17 for ; Fri, 21 Feb 2014 08:12:48 -0800 (PST) Received: from mech-cluster241.men.bris.ac.uk (mech-cluster241.men.bris.ac.uk. [137.222.187.241]) by mx.google.com with ESMTPSA id f3sm8798420wiv.2.2014.02.21.07.41.18 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 21 Feb 2014 07:41:19 -0800 (PST) Received: from mech-cluster241.men.bris.ac.uk (localhost [127.0.0.1]) by mech-cluster241.men.bris.ac.uk (8.14.7/8.14.6) with ESMTP id s1LFfHRE052457 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Fri, 21 Feb 2014 15:41:17 GMT (envelope-from mexas@mech-cluster241.men.bris.ac.uk) Received: (from mexas@localhost) by mech-cluster241.men.bris.ac.uk (8.14.7/8.14.6/Submit) id s1LFfHed052456; Fri, 21 Feb 2014 15:41:17 GMT (envelope-from mexas) Message-Id: <201402211541.s1LFfHed052456@mech-cluster241.men.bris.ac.uk> Date: Fri, 21 Feb 2014 07:41:19 -0800 (PST) From: Anton Shterenlikht Sender: Anton Shterenlikht To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/186948: www/netsurf: ia64 11-current build failure: /usr/local/lib/libiconv.so.3: invalid DSO for symbol `libiconv' definition X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Anton Shterenlikht List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 16:20:01 -0000 >Number: 186948 >Category: ports >Synopsis: www/netsurf: ia64 11-current build failure: /usr/local/lib/libiconv.so.3: invalid DSO for symbol `libiconv' definition >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: Fri Feb 21 16:20:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Anton Shterenlikht >Release: FreeBSD 11.0-CURRENT ia64 >Organization: University of Bristol >Environment: System: FreeBSD mech-cluster241.men.bris.ac.uk 11.0-CURRENT FreeBSD 11.0-CURRENT #11 r260914: Fri Feb 7 13:43:53 GMT 2014 root@mech-cluster241.men.bris.ac.uk:/usr/obj/usr/src/sys/TZAV ia64 >Description: building in a poudriere jail, fails with: gmake[2]: Entering directory `/wrkdirs/usr/ports/www/netsurf/work/netsurf-full-3.0/src/netsurf-3.0' TESTMENT: unchanged LINK: nsgtk /usr/bin/ld: //usr/local/lib/libiconv.so.3: invalid DSO for symbol `libiconv' definition //usr/local/lib/libiconv.so.3: could not read symbols: Bad value gmake[2]: *** [nsgtk] Error 1 Full build log: http://eis.bris.ac.uk/~mexas/logs/netsurf-3.0_2.log >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 17:40:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9CA31172 for ; Fri, 21 Feb 2014 17:40:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 875E018E6 for ; Fri, 21 Feb 2014 17: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 s1LHe1ad005194 for ; Fri, 21 Feb 2014 17:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1LHe1vQ005193; Fri, 21 Feb 2014 17:40:01 GMT (envelope-from gnats) Date: Fri, 21 Feb 2014 17:40:01 GMT Message-Id: <201402211740.s1LHe1vQ005193@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: =?ISO-8859-1?Q?Fernando_Apestegu=EDa?= Subject: Re: ports/183723: [new port]: devel/visualparadigm Tool for UML based diagrams and SE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: =?ISO-8859-1?Q?Fernando_Apestegu=EDa?= List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 17:40:01 -0000 The following reply was made to PR ports/183723; it has been noted by GNATS. From: =?ISO-8859-1?Q?Fernando_Apestegu=EDa?= To: bug-followup@FreeBSD.org, fernando.apesteguia@gmail.com Cc: Subject: Re: ports/183723: [new port]: devel/visualparadigm Tool for UML based diagrams and SE Date: Fri, 21 Feb 2014 18:33:14 +0100 --047d7bb04ba6418bc804f2ee04a3 Content-Type: text/plain; charset=ISO-8859-1 Any changes on this? --047d7bb04ba6418bc804f2ee04a3 Content-Type: text/html; charset=ISO-8859-1
Any changes on this?
--047d7bb04ba6418bc804f2ee04a3-- From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 19:00:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E4B75DBF for ; Fri, 21 Feb 2014 19:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BD7441105 for ; Fri, 21 Feb 2014 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 s1LJ00Kh033064 for ; Fri, 21 Feb 2014 19:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1LJ00mK033063; Fri, 21 Feb 2014 19:00:00 GMT (envelope-from gnats) Resent-Date: Fri, 21 Feb 2014 19:00:00 GMT Resent-Message-Id: <201402211900.s1LJ00mK033063@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, Christer Edwards Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9C7B9BA0 for ; Fri, 21 Feb 2014 18:55:57 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8670B10BD for ; Fri, 21 Feb 2014 18:55:57 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1LItvMq022633 for ; Fri, 21 Feb 2014 18:55:57 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1LItvHl022631; Fri, 21 Feb 2014 18:55:57 GMT (envelope-from nobody) Message-Id: <201402211855.s1LItvHl022631@cgiserv.freebsd.org> Date: Fri, 21 Feb 2014 18:55:57 GMT From: Christer Edwards To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186950: maintainer update : sysutils/py-salt X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 19:00:01 -0000 >Number: 186950 >Category: ports >Synopsis: maintainer update : sysutils/py-salt >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 Feb 21 19:00:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Christer Edwards >Release: 9.2-RELEASE-p3 >Organization: SaltStack >Environment: FreeBSD jupiter 9.2-RELEASE-p3 FreeBSD 9.2-RELEASE-p3 #0: Sat Jan 11 03:25:02 UTC 2014 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: maintainer update : sysutils/py-salt This release changes the versioning scheme to a year.month.x, in this case 2014.1.0. Upstream is also now bundling sysutils/py-salt-cloud with sysutils/py-salt, so that port can be removed / updated in MOVED. I added PORTEPOCH in this release. Not sure if it's needed or not with the versioning scheme update. >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN py-salt/Makefile py-salt-2014.1.0/Makefile --- py-salt/Makefile 2014-01-29 12:05:16.000000000 -0700 +++ py-salt-2014.1.0/Makefile 2014-02-21 10:16:36.000000000 -0700 @@ -1,8 +1,9 @@ # Created by: Christer Edwards -# $FreeBSD: head/sysutils/py-salt/Makefile 341769 2014-01-29 19:05:16Z vg $ +# $FreeBSD: sysutils/py-salt/Makefile 341769 2014-01-29 19:05:16Z vg $ PORTNAME= salt -PORTVERSION= 0.17.5 +PORTVERSION= 2014.1.0 +PORTEPOCH= 1 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -18,6 +19,8 @@ ${PYTHON_PKGNAMEPREFIX}Jinja2>=0:${PORTSDIR}/devel/py-Jinja2 \ ${PYTHON_PKGNAMEPREFIX}msgpack>=0.1.9:${PORTSDIR}/devel/py-msgpack \ ${PYTHON_PKGNAMEPREFIX}m2crypto>=0:${PORTSDIR}/security/py-m2crypto \ + ${PYTHON_PKGNAMEPREFIX}libcloud>=0.11.4:${PORTSDIR}/net/py-libcloud \ + ${PYTHON_PKGNAMEPREFIX}botocore>=0:${PORTSDIR}/devel/py-botocore \ sshpass>=0:${PORTSDIR}/security/sshpass RUN_DEPENDS:= ${BUILD_DEPENDS} diff -ruN py-salt/distinfo py-salt-2014.1.0/distinfo --- py-salt/distinfo 2014-01-29 12:05:16.000000000 -0700 +++ py-salt-2014.1.0/distinfo 2014-02-20 17:35:31.000000000 -0700 @@ -1,2 +1,2 @@ -SHA256 (salt-0.17.5.tar.gz) = 36ae196ef87af0ae33e880d1ad593783e2cb102221edda2782071738d595ea3f -SIZE (salt-0.17.5.tar.gz) = 1873131 +SHA256 (salt-2014.1.0.tar.gz) = 168dd154a9243b1c853700e61f56e7d6ab5cbc9862fb215ab991e05f46b2a406 +SIZE (salt-2014.1.0.tar.gz) = 2787665 diff -ruN py-salt/files/patch-salt__grains__core.py py-salt-2014.1.0/files/patch-salt__grains__core.py --- py-salt/files/patch-salt__grains__core.py 2013-10-29 13:11:18.000000000 -0600 +++ py-salt-2014.1.0/files/patch-salt__grains__core.py 2014-02-21 08:44:59.000000000 -0700 @@ -1,9 +1,9 @@ ---- ./salt/grains/core.py.orig 2013-10-17 08:48:57.000000000 +0400 -+++ ./salt/grains/core.py 2013-10-25 10:46:21.000000000 +0400 -@@ -1059,7 +1059,7 @@ - ''' +--- ./salt/grains/core.py.orig 2014-02-20 17:35:56.000000000 -0700 ++++ ./salt/grains/core.py 2014-02-20 17:42:09.000000000 -0700 +@@ -1133,7 +1133,7 @@ # Provides: # path + - return {'path': os.environ['PATH'].strip()} + return {'path': os.environ['PATH'].strip() + ':/usr/local/bin:/usr/local/sbin'} diff -ruN py-salt/files/patch-salt__modules__reebsdpkg.py py-salt-2014.1.0/files/patch-salt__modules__reebsdpkg.py --- py-salt/files/patch-salt__modules__reebsdpkg.py 2013-10-31 14:48:47.000000000 -0600 +++ py-salt-2014.1.0/files/patch-salt__modules__reebsdpkg.py 1969-12-31 17:00:00.000000000 -0700 @@ -1,11 +0,0 @@ ---- salt/modules/freebsdpkg.py.orig 2013-10-30 16:16:31.850225522 +0000 -+++ salt/modules/freebsdpkg.py 2013-10-30 16:16:47.868224728 +0000 -@@ -27,7 +27,7 @@ - ''' - Looks to see if pkgng is being used by checking if database exists - ''' -- return os.path.isfile('/var/db/pkg/local.sqlite') -+ return os.path.isfile('/usr/local/etc/pkg.conf') - - - @decorators.memoize diff -ruN py-salt/files/patch-setup.py py-salt-2014.1.0/files/patch-setup.py --- py-salt/files/patch-setup.py 2013-10-29 13:11:18.000000000 -0600 +++ py-salt-2014.1.0/files/patch-setup.py 2014-01-30 10:50:41.000000000 -0700 @@ -1,20 +1,17 @@ ---- ./setup.py.orig 2013-10-17 21:27:29.000000000 +0400 -+++ ./setup.py 2013-10-25 10:43:51.000000000 +0400 -@@ -313,7 +313,7 @@ - 'salt.log.handlers', - ], - 'package_data': {'salt.modules': ['rh_ip/*.jinja']}, +--- setup.py 2014-01-30 10:47:35.000000000 -0700 ++++ setup.py.new 2014-01-30 10:50:14.000000000 -0700 +@@ -451,12 +451,12 @@ + 'virt/*.jinja' + ], + }, - 'data_files': [('share/man/man1', + 'data_files': [('man/man1', - ['doc/man/salt-master.1', - 'doc/man/salt-key.1', - 'doc/man/salt.1', -@@ -324,7 +324,7 @@ - 'doc/man/salt-ssh.1', + ['doc/man/salt-cp.1', + 'doc/man/salt-call.1', 'doc/man/salt-minion.1', ]), -- ('share/man/man7', ['doc/man/salt.7']), -+ ('man/man7', ['doc/man/salt.7']), +- ('share/man/man7', ++ ('man/man7', + ['doc/man/salt.7', + ]), ], - # Required for esky builds - 'install_requires': REQUIREMENTS, diff -ruN py-salt/files/salt_master.in py-salt-2014.1.0/files/salt_master.in --- py-salt/files/salt_master.in 2012-11-03 05:46:30.000000000 -0600 +++ py-salt-2014.1.0/files/salt_master.in 2012-11-03 05:46:30.000000000 -0600 @@ -1,6 +1,6 @@ #!/bin/sh -# $FreeBSD: head/sysutils/py-salt/files/salt_master.in 306910 2012-11-03 11:46:30Z madpilot $ +# $FreeBSD: sysutils/py-salt/files/salt_master.in 306910 2012-11-03 11:46:30Z madpilot $ # # Salt Master startup script # diff -ruN py-salt/files/salt_minion.in py-salt-2014.1.0/files/salt_minion.in --- py-salt/files/salt_minion.in 2012-11-03 05:46:30.000000000 -0600 +++ py-salt-2014.1.0/files/salt_minion.in 2012-11-03 05:46:30.000000000 -0600 @@ -1,6 +1,6 @@ #!/bin/sh -# $FreeBSD: head/sysutils/py-salt/files/salt_minion.in 306910 2012-11-03 11:46:30Z madpilot $ +# $FreeBSD: sysutils/py-salt/files/salt_minion.in 306910 2012-11-03 11:46:30Z madpilot $ # # Salt Minion startup script # diff -ruN py-salt/files/salt_syndic.in py-salt-2014.1.0/files/salt_syndic.in --- py-salt/files/salt_syndic.in 2012-11-03 05:46:30.000000000 -0600 +++ py-salt-2014.1.0/files/salt_syndic.in 2012-11-03 05:46:30.000000000 -0600 @@ -1,6 +1,6 @@ #!/bin/sh -# $FreeBSD: head/sysutils/py-salt/files/salt_syndic.in 306910 2012-11-03 11:46:30Z madpilot $ +# $FreeBSD: sysutils/py-salt/files/salt_syndic.in 306910 2012-11-03 11:46:30Z madpilot $ # # Salt Synic startup script # diff -ruN py-salt/pkg-plist py-salt-2014.1.0/pkg-plist --- py-salt/pkg-plist 2013-11-14 14:17:27.000000000 -0700 +++ py-salt-2014.1.0/pkg-plist 2014-02-21 08:55:59.000000000 -0700 @@ -1,5 +1,6 @@ bin/salt bin/salt-call +bin/salt-cloud bin/salt-cp bin/salt-key bin/salt-master @@ -57,6 +58,74 @@ %%PYTHON_SITELIBDIR%%/salt/client/ssh/wrapper/pillar.pyc %%PYTHON_SITELIBDIR%%/salt/client/ssh/wrapper/state.py %%PYTHON_SITELIBDIR%%/salt/client/ssh/wrapper/state.pyc +%%PYTHON_SITELIBDIR%%/salt/cloud/__init__.py +%%PYTHON_SITELIBDIR%%/salt/cloud/__init__.pyc +%%PYTHON_SITELIBDIR%%/salt/cloud/cli.py +%%PYTHON_SITELIBDIR%%/salt/cloud/cli.pyc +%%PYTHON_SITELIBDIR%%/salt/cloud/exceptions.py +%%PYTHON_SITELIBDIR%%/salt/cloud/exceptions.pyc +%%PYTHON_SITELIBDIR%%/salt/cloud/libcloudfuncs.py +%%PYTHON_SITELIBDIR%%/salt/cloud/libcloudfuncs.pyc +%%PYTHON_SITELIBDIR%%/salt/cloud/clouds/__init__.py +%%PYTHON_SITELIBDIR%%/salt/cloud/clouds/__init__.pyc +%%PYTHON_SITELIBDIR%%/salt/cloud/clouds/botocore_aws.py +%%PYTHON_SITELIBDIR%%/salt/cloud/clouds/botocore_aws.pyc +%%PYTHON_SITELIBDIR%%/salt/cloud/clouds/cloudstack.py +%%PYTHON_SITELIBDIR%%/salt/cloud/clouds/cloudstack.pyc +%%PYTHON_SITELIBDIR%%/salt/cloud/clouds/digital_ocean.py +%%PYTHON_SITELIBDIR%%/salt/cloud/clouds/digital_ocean.pyc +%%PYTHON_SITELIBDIR%%/salt/cloud/clouds/ec2.py +%%PYTHON_SITELIBDIR%%/salt/cloud/clouds/ec2.pyc +%%PYTHON_SITELIBDIR%%/salt/cloud/clouds/gce.py +%%PYTHON_SITELIBDIR%%/salt/cloud/clouds/gce.pyc +%%PYTHON_SITELIBDIR%%/salt/cloud/clouds/gogrid.py +%%PYTHON_SITELIBDIR%%/salt/cloud/clouds/gogrid.pyc +%%PYTHON_SITELIBDIR%%/salt/cloud/clouds/ibmsce.py +%%PYTHON_SITELIBDIR%%/salt/cloud/clouds/ibmsce.pyc +%%PYTHON_SITELIBDIR%%/salt/cloud/clouds/joyent.py +%%PYTHON_SITELIBDIR%%/salt/cloud/clouds/joyent.pyc +%%PYTHON_SITELIBDIR%%/salt/cloud/clouds/libcloud_aws.py +%%PYTHON_SITELIBDIR%%/salt/cloud/clouds/libcloud_aws.pyc +%%PYTHON_SITELIBDIR%%/salt/cloud/clouds/linode.py +%%PYTHON_SITELIBDIR%%/salt/cloud/clouds/linode.pyc +%%PYTHON_SITELIBDIR%%/salt/cloud/clouds/msazure.py +%%PYTHON_SITELIBDIR%%/salt/cloud/clouds/msazure.pyc +%%PYTHON_SITELIBDIR%%/salt/cloud/clouds/nova.py +%%PYTHON_SITELIBDIR%%/salt/cloud/clouds/nova.pyc +%%PYTHON_SITELIBDIR%%/salt/cloud/clouds/openstack.py +%%PYTHON_SITELIBDIR%%/salt/cloud/clouds/openstack.pyc +%%PYTHON_SITELIBDIR%%/salt/cloud/clouds/parallels.py +%%PYTHON_SITELIBDIR%%/salt/cloud/clouds/parallels.pyc +%%PYTHON_SITELIBDIR%%/salt/cloud/clouds/rackspace.py +%%PYTHON_SITELIBDIR%%/salt/cloud/clouds/rackspace.pyc +%%PYTHON_SITELIBDIR%%/salt/cloud/clouds/saltify.py +%%PYTHON_SITELIBDIR%%/salt/cloud/clouds/saltify.pyc +%%PYTHON_SITELIBDIR%%/salt/cloud/clouds/softlayer.py +%%PYTHON_SITELIBDIR%%/salt/cloud/clouds/softlayer.pyc +%%PYTHON_SITELIBDIR%%/salt/cloud/clouds/softlayer_hw.py +%%PYTHON_SITELIBDIR%%/salt/cloud/clouds/softlayer_hw.pyc +%%PYTHON_SITELIBDIR%%/salt/cloud/deploy/Arch-git.sh +%%PYTHON_SITELIBDIR%%/salt/cloud/deploy/Arch.sh +%%PYTHON_SITELIBDIR%%/salt/cloud/deploy/Debian-git.sh +%%PYTHON_SITELIBDIR%%/salt/cloud/deploy/Debian.sh +%%PYTHON_SITELIBDIR%%/salt/cloud/deploy/Fedora-git.sh +%%PYTHON_SITELIBDIR%%/salt/cloud/deploy/Fedora.sh +%%PYTHON_SITELIBDIR%%/salt/cloud/deploy/FreeBSD-git.sh +%%PYTHON_SITELIBDIR%%/salt/cloud/deploy/FreeBSD.sh +%%PYTHON_SITELIBDIR%%/salt/cloud/deploy/None.sh +%%PYTHON_SITELIBDIR%%/salt/cloud/deploy/RHEL5-git.sh +%%PYTHON_SITELIBDIR%%/salt/cloud/deploy/RHEL5.sh +%%PYTHON_SITELIBDIR%%/salt/cloud/deploy/RHEL6-git.sh +%%PYTHON_SITELIBDIR%%/salt/cloud/deploy/RHEL6.sh +%%PYTHON_SITELIBDIR%%/salt/cloud/deploy/SmartOS.sh +%%PYTHON_SITELIBDIR%%/salt/cloud/deploy/Ubuntu-git.sh +%%PYTHON_SITELIBDIR%%/salt/cloud/deploy/Ubuntu.sh +%%PYTHON_SITELIBDIR%%/salt/cloud/deploy/bootstrap-salt.sh +%%PYTHON_SITELIBDIR%%/salt/cloud/deploy/curl-bootstrap-git.sh +%%PYTHON_SITELIBDIR%%/salt/cloud/deploy/curl-bootstrap.sh +%%PYTHON_SITELIBDIR%%/salt/cloud/deploy/python-bootstrap.sh +%%PYTHON_SITELIBDIR%%/salt/cloud/deploy/wget-bootstrap-nocert.sh +%%PYTHON_SITELIBDIR%%/salt/cloud/deploy/wget-bootstrap.sh %%PYTHON_SITELIBDIR%%/salt/config.py %%PYTHON_SITELIBDIR%%/salt/config.pyc %%PYTHON_SITELIBDIR%%/salt/crypt.py @@ -73,18 +142,28 @@ %%PYTHON_SITELIBDIR%%/salt/fileserver/gitfs.pyc %%PYTHON_SITELIBDIR%%/salt/fileserver/hgfs.py %%PYTHON_SITELIBDIR%%/salt/fileserver/hgfs.pyc +%%PYTHON_SITELIBDIR%%/salt/fileserver/minionfs.py +%%PYTHON_SITELIBDIR%%/salt/fileserver/minionfs.pyc %%PYTHON_SITELIBDIR%%/salt/fileserver/roots.py %%PYTHON_SITELIBDIR%%/salt/fileserver/roots.pyc %%PYTHON_SITELIBDIR%%/salt/fileserver/s3fs.py %%PYTHON_SITELIBDIR%%/salt/fileserver/s3fs.pyc +%%PYTHON_SITELIBDIR%%/salt/fileserver/svnfs.py +%%PYTHON_SITELIBDIR%%/salt/fileserver/svnfs.pyc %%PYTHON_SITELIBDIR%%/salt/grains/__init__.py %%PYTHON_SITELIBDIR%%/salt/grains/__init__.pyc %%PYTHON_SITELIBDIR%%/salt/grains/core.py %%PYTHON_SITELIBDIR%%/salt/grains/core.pyc %%PYTHON_SITELIBDIR%%/salt/grains/extra.py %%PYTHON_SITELIBDIR%%/salt/grains/extra.pyc +%%PYTHON_SITELIBDIR%%/salt/grains/external_ip.py +%%PYTHON_SITELIBDIR%%/salt/grains/external_ip.pyc +%%PYTHON_SITELIBDIR%%/salt/grains/junos.py +%%PYTHON_SITELIBDIR%%/salt/grains/junos.pyc %%PYTHON_SITELIBDIR%%/salt/grains/opts.py %%PYTHON_SITELIBDIR%%/salt/grains/opts.pyc +%%PYTHON_SITELIBDIR%%/salt/grains/rest_sample.py +%%PYTHON_SITELIBDIR%%/salt/grains/rest_sample.pyc %%PYTHON_SITELIBDIR%%/salt/key.py %%PYTHON_SITELIBDIR%%/salt/key.pyc %%PYTHON_SITELIBDIR%%/salt/loader.py @@ -113,14 +192,16 @@ %%PYTHON_SITELIBDIR%%/salt/modules/alternatives.pyc %%PYTHON_SITELIBDIR%%/salt/modules/apache.py %%PYTHON_SITELIBDIR%%/salt/modules/apache.pyc -%%PYTHON_SITELIBDIR%%/salt/modules/apt.py -%%PYTHON_SITELIBDIR%%/salt/modules/apt.pyc +%%PYTHON_SITELIBDIR%%/salt/modules/aptpkg.py +%%PYTHON_SITELIBDIR%%/salt/modules/aptpkg.pyc %%PYTHON_SITELIBDIR%%/salt/modules/archive.py %%PYTHON_SITELIBDIR%%/salt/modules/archive.pyc %%PYTHON_SITELIBDIR%%/salt/modules/at.py %%PYTHON_SITELIBDIR%%/salt/modules/at.pyc %%PYTHON_SITELIBDIR%%/salt/modules/augeas_cfg.py %%PYTHON_SITELIBDIR%%/salt/modules/augeas_cfg.pyc +%%PYTHON_SITELIBDIR%%/salt/modules/aws_sqs.py +%%PYTHON_SITELIBDIR%%/salt/modules/aws_sqs.pyc %%PYTHON_SITELIBDIR%%/salt/modules/bluez.py %%PYTHON_SITELIBDIR%%/salt/modules/bluez.pyc %%PYTHON_SITELIBDIR%%/salt/modules/brew.py @@ -131,6 +212,12 @@ %%PYTHON_SITELIBDIR%%/salt/modules/bsd_shadow.pyc %%PYTHON_SITELIBDIR%%/salt/modules/cassandra.py %%PYTHON_SITELIBDIR%%/salt/modules/cassandra.pyc +%%PYTHON_SITELIBDIR%%/salt/modules/chocolatey.py +%%PYTHON_SITELIBDIR%%/salt/modules/chocolatey.pyc +%%PYTHON_SITELIBDIR%%/salt/modules/cloud.py +%%PYTHON_SITELIBDIR%%/salt/modules/cloud.pyc +%%PYTHON_SITELIBDIR%%/salt/modules/composer.py +%%PYTHON_SITELIBDIR%%/salt/modules/composer.pyc %%PYTHON_SITELIBDIR%%/salt/modules/cmdmod.py %%PYTHON_SITELIBDIR%%/salt/modules/cmdmod.pyc %%PYTHON_SITELIBDIR%%/salt/modules/config.py @@ -149,8 +236,12 @@ %%PYTHON_SITELIBDIR%%/salt/modules/ddns.pyc %%PYTHON_SITELIBDIR%%/salt/modules/debconfmod.py %%PYTHON_SITELIBDIR%%/salt/modules/debconfmod.pyc +%%PYTHON_SITELIBDIR%%/salt/modules/debian_ip.py +%%PYTHON_SITELIBDIR%%/salt/modules/debian_ip.pyc %%PYTHON_SITELIBDIR%%/salt/modules/debian_service.py %%PYTHON_SITELIBDIR%%/salt/modules/debian_service.pyc +%%PYTHON_SITELIBDIR%%/salt/modules/defaults.py +%%PYTHON_SITELIBDIR%%/salt/modules/defaults.pyc %%PYTHON_SITELIBDIR%%/salt/modules/dig.py %%PYTHON_SITELIBDIR%%/salt/modules/dig.pyc %%PYTHON_SITELIBDIR%%/salt/modules/disk.py @@ -161,6 +252,8 @@ %%PYTHON_SITELIBDIR%%/salt/modules/dnsmasq.pyc %%PYTHON_SITELIBDIR%%/salt/modules/dnsutil.py %%PYTHON_SITELIBDIR%%/salt/modules/dnsutil.pyc +%%PYTHON_SITELIBDIR%%/salt/modules/dockerio.py +%%PYTHON_SITELIBDIR%%/salt/modules/dockerio.pyc %%PYTHON_SITELIBDIR%%/salt/modules/dpkg.py %%PYTHON_SITELIBDIR%%/salt/modules/dpkg.pyc %%PYTHON_SITELIBDIR%%/salt/modules/ebuild.py @@ -183,6 +276,8 @@ %%PYTHON_SITELIBDIR%%/salt/modules/freebsdkmod.pyc %%PYTHON_SITELIBDIR%%/salt/modules/freebsdpkg.py %%PYTHON_SITELIBDIR%%/salt/modules/freebsdpkg.pyc +%%PYTHON_SITELIBDIR%%/salt/modules/freebsdports.py +%%PYTHON_SITELIBDIR%%/salt/modules/freebsdports.pyc %%PYTHON_SITELIBDIR%%/salt/modules/freebsdservice.py %%PYTHON_SITELIBDIR%%/salt/modules/freebsdservice.pyc %%PYTHON_SITELIBDIR%%/salt/modules/gem.py @@ -191,6 +286,8 @@ %%PYTHON_SITELIBDIR%%/salt/modules/gentoo_service.pyc %%PYTHON_SITELIBDIR%%/salt/modules/gentoolkitmod.py %%PYTHON_SITELIBDIR%%/salt/modules/gentoolkitmod.pyc +%%PYTHON_SITELIBDIR%%/salt/modules/gnomedesktop.py +%%PYTHON_SITELIBDIR%%/salt/modules/gnomedesktop.pyc %%PYTHON_SITELIBDIR%%/salt/modules/git.py %%PYTHON_SITELIBDIR%%/salt/modules/git.pyc %%PYTHON_SITELIBDIR%%/salt/modules/glance.py @@ -203,6 +300,8 @@ %%PYTHON_SITELIBDIR%%/salt/modules/grub_legacy.pyc %%PYTHON_SITELIBDIR%%/salt/modules/guestfs.py %%PYTHON_SITELIBDIR%%/salt/modules/guestfs.pyc +%%PYTHON_SITELIBDIR%%/salt/modules/hadoop.py +%%PYTHON_SITELIBDIR%%/salt/modules/hadoop.pyc %%PYTHON_SITELIBDIR%%/salt/modules/hg.py %%PYTHON_SITELIBDIR%%/salt/modules/hg.pyc %%PYTHON_SITELIBDIR%%/salt/modules/hosts.py @@ -211,8 +310,12 @@ %%PYTHON_SITELIBDIR%%/salt/modules/htpasswd.pyc %%PYTHON_SITELIBDIR%%/salt/modules/img.py %%PYTHON_SITELIBDIR%%/salt/modules/img.pyc +%%PYTHON_SITELIBDIR%%/salt/modules/incron.py +%%PYTHON_SITELIBDIR%%/salt/modules/incron.pyc %%PYTHON_SITELIBDIR%%/salt/modules/iptables.py %%PYTHON_SITELIBDIR%%/salt/modules/iptables.pyc +%%PYTHON_SITELIBDIR%%/salt/modules/junos.py +%%PYTHON_SITELIBDIR%%/salt/modules/junos.pyc %%PYTHON_SITELIBDIR%%/salt/modules/key.py %%PYTHON_SITELIBDIR%%/salt/modules/key.pyc %%PYTHON_SITELIBDIR%%/salt/modules/keyboard.py @@ -239,6 +342,8 @@ %%PYTHON_SITELIBDIR%%/salt/modules/locate.pyc %%PYTHON_SITELIBDIR%%/salt/modules/logrotate.py %%PYTHON_SITELIBDIR%%/salt/modules/logrotate.pyc +%%PYTHON_SITELIBDIR%%/salt/modules/lvs.py +%%PYTHON_SITELIBDIR%%/salt/modules/lvs.pyc %%PYTHON_SITELIBDIR%%/salt/modules/lxc.py %%PYTHON_SITELIBDIR%%/salt/modules/lxc.pyc %%PYTHON_SITELIBDIR%%/salt/modules/mac_group.py @@ -251,6 +356,8 @@ %%PYTHON_SITELIBDIR%%/salt/modules/match.pyc %%PYTHON_SITELIBDIR%%/salt/modules/mdadm.py %%PYTHON_SITELIBDIR%%/salt/modules/mdadm.pyc +%%PYTHON_SITELIBDIR%%/salt/modules/memcached.py +%%PYTHON_SITELIBDIR%%/salt/modules/memcached.pyc %%PYTHON_SITELIBDIR%%/salt/modules/mine.py %%PYTHON_SITELIBDIR%%/salt/modules/mine.pyc %%PYTHON_SITELIBDIR%%/salt/modules/modjk.py @@ -281,18 +388,20 @@ %%PYTHON_SITELIBDIR%%/salt/modules/nova.pyc %%PYTHON_SITELIBDIR%%/salt/modules/npm.py %%PYTHON_SITELIBDIR%%/salt/modules/npm.pyc -%%PYTHON_SITELIBDIR%%/salt/modules/nzbget.py -%%PYTHON_SITELIBDIR%%/salt/modules/nzbget.pyc %%PYTHON_SITELIBDIR%%/salt/modules/omapi.py %%PYTHON_SITELIBDIR%%/salt/modules/omapi.pyc %%PYTHON_SITELIBDIR%%/salt/modules/openbsdpkg.py %%PYTHON_SITELIBDIR%%/salt/modules/openbsdpkg.pyc %%PYTHON_SITELIBDIR%%/salt/modules/openbsdservice.py %%PYTHON_SITELIBDIR%%/salt/modules/openbsdservice.pyc +%%PYTHON_SITELIBDIR%%/salt/modules/openstack_config.py +%%PYTHON_SITELIBDIR%%/salt/modules/openstack_config.pyc %%PYTHON_SITELIBDIR%%/salt/modules/osxdesktop.py %%PYTHON_SITELIBDIR%%/salt/modules/osxdesktop.pyc %%PYTHON_SITELIBDIR%%/salt/modules/pacman.py %%PYTHON_SITELIBDIR%%/salt/modules/pacman.pyc +%%PYTHON_SITELIBDIR%%/salt/modules/pagerduty.py +%%PYTHON_SITELIBDIR%%/salt/modules/pagerduty.pyc %%PYTHON_SITELIBDIR%%/salt/modules/pam.py %%PYTHON_SITELIBDIR%%/salt/modules/pam.pyc %%PYTHON_SITELIBDIR%%/salt/modules/parted.py @@ -343,21 +452,24 @@ %%PYTHON_SITELIBDIR%%/salt/modules/rdp.pyc %%PYTHON_SITELIBDIR%%/salt/modules/reg.py %%PYTHON_SITELIBDIR%%/salt/modules/reg.pyc +%%PYTHON_SITELIBDIR%%/salt/modules/rest_package.py +%%PYTHON_SITELIBDIR%%/salt/modules/rest_package.pyc +%%PYTHON_SITELIBDIR%%/salt/modules/rest_sample.py +%%PYTHON_SITELIBDIR%%/salt/modules/rest_sample.pyc +%%PYTHON_SITELIBDIR%%/salt/modules/rest_service.py +%%PYTHON_SITELIBDIR%%/salt/modules/rest_service.pyc %%PYTHON_SITELIBDIR%%/salt/modules/ret.py %%PYTHON_SITELIBDIR%%/salt/modules/ret.pyc %%PYTHON_SITELIBDIR%%/salt/modules/rh_ip.py %%PYTHON_SITELIBDIR%%/salt/modules/rh_ip.pyc -%%PYTHON_SITELIBDIR%%/salt/modules/rh_ip/conf.jinja -%%PYTHON_SITELIBDIR%%/salt/modules/rh_ip/network.jinja -%%PYTHON_SITELIBDIR%%/salt/modules/rh_ip/rh5_eth.jinja -%%PYTHON_SITELIBDIR%%/salt/modules/rh_ip/rh6_eth.jinja -%%PYTHON_SITELIBDIR%%/salt/modules/rh_ip/route_eth.jinja %%PYTHON_SITELIBDIR%%/salt/modules/rh_service.py %%PYTHON_SITELIBDIR%%/salt/modules/rh_service.pyc %%PYTHON_SITELIBDIR%%/salt/modules/riak.py %%PYTHON_SITELIBDIR%%/salt/modules/riak.pyc %%PYTHON_SITELIBDIR%%/salt/modules/rpm.py %%PYTHON_SITELIBDIR%%/salt/modules/rpm.pyc +%%PYTHON_SITELIBDIR%%/salt/modules/rsync.py +%%PYTHON_SITELIBDIR%%/salt/modules/rsync.pyc %%PYTHON_SITELIBDIR%%/salt/modules/rvm.py %%PYTHON_SITELIBDIR%%/salt/modules/rvm.pyc %%PYTHON_SITELIBDIR%%/salt/modules/s3.py @@ -438,6 +550,10 @@ %%PYTHON_SITELIBDIR%%/salt/modules/win_firewall.pyc %%PYTHON_SITELIBDIR%%/salt/modules/win_groupadd.py %%PYTHON_SITELIBDIR%%/salt/modules/win_groupadd.pyc +%%PYTHON_SITELIBDIR%%/salt/modules/win_ip.py +%%PYTHON_SITELIBDIR%%/salt/modules/win_ip.pyc +%%PYTHON_SITELIBDIR%%/salt/modules/win_ntp.py +%%PYTHON_SITELIBDIR%%/salt/modules/win_ntp.pyc %%PYTHON_SITELIBDIR%%/salt/modules/win_network.py %%PYTHON_SITELIBDIR%%/salt/modules/win_network.pyc %%PYTHON_SITELIBDIR%%/salt/modules/win_path.py @@ -462,10 +578,12 @@ %%PYTHON_SITELIBDIR%%/salt/modules/win_useradd.pyc %%PYTHON_SITELIBDIR%%/salt/modules/xapi.py %%PYTHON_SITELIBDIR%%/salt/modules/xapi.pyc +%%PYTHON_SITELIBDIR%%/salt/modules/xmpp.py +%%PYTHON_SITELIBDIR%%/salt/modules/xmpp.pyc %%PYTHON_SITELIBDIR%%/salt/modules/yumpkg.py %%PYTHON_SITELIBDIR%%/salt/modules/yumpkg.pyc -%%PYTHON_SITELIBDIR%%/salt/modules/yumpkg5.py -%%PYTHON_SITELIBDIR%%/salt/modules/yumpkg5.pyc +%%PYTHON_SITELIBDIR%%/salt/modules/zcbuildout.py +%%PYTHON_SITELIBDIR%%/salt/modules/zcbuildout.pyc %%PYTHON_SITELIBDIR%%/salt/modules/zfs.py %%PYTHON_SITELIBDIR%%/salt/modules/zfs.pyc %%PYTHON_SITELIBDIR%%/salt/modules/zpool.py @@ -522,6 +640,8 @@ %%PYTHON_SITELIBDIR%%/salt/pillar/libvirt.pyc %%PYTHON_SITELIBDIR%%/salt/pillar/mongo.py %%PYTHON_SITELIBDIR%%/salt/pillar/mongo.pyc +%%PYTHON_SITELIBDIR%%/salt/pillar/mysql.py +%%PYTHON_SITELIBDIR%%/salt/pillar/mysql.pyc %%PYTHON_SITELIBDIR%%/salt/pillar/pillar_ldap.py %%PYTHON_SITELIBDIR%%/salt/pillar/pillar_ldap.pyc %%PYTHON_SITELIBDIR%%/salt/pillar/puppet.py @@ -588,8 +708,20 @@ %%PYTHON_SITELIBDIR%%/salt/runner.pyc %%PYTHON_SITELIBDIR%%/salt/runners/__init__.py %%PYTHON_SITELIBDIR%%/salt/runners/__init__.pyc +%%PYTHON_SITELIBDIR%%/salt/runners/cloud.py +%%PYTHON_SITELIBDIR%%/salt/runners/cloud.pyc %%PYTHON_SITELIBDIR%%/salt/runners/cache.py %%PYTHON_SITELIBDIR%%/salt/runners/cache.pyc +%%PYTHON_SITELIBDIR%%/salt/runners/error.py +%%PYTHON_SITELIBDIR%%/salt/runners/error.pyc +%%PYTHON_SITELIBDIR%%/salt/runners/git_pillar.py +%%PYTHON_SITELIBDIR%%/salt/runners/git_pillar.pyc +%%PYTHON_SITELIBDIR%%/salt/runners/lxc.py +%%PYTHON_SITELIBDIR%%/salt/runners/lxc.pyc +%%PYTHON_SITELIBDIR%%/salt/runners/mine.py +%%PYTHON_SITELIBDIR%%/salt/runners/mine.pyc +%%PYTHON_SITELIBDIR%%/salt/runners/pillar.py +%%PYTHON_SITELIBDIR%%/salt/runners/pillar.pyc %%PYTHON_SITELIBDIR%%/salt/runners/doc.py %%PYTHON_SITELIBDIR%%/salt/runners/doc.pyc %%PYTHON_SITELIBDIR%%/salt/runners/fileserver.py @@ -628,10 +760,20 @@ %%PYTHON_SITELIBDIR%%/salt/states/alternatives.pyc %%PYTHON_SITELIBDIR%%/salt/states/apt.py %%PYTHON_SITELIBDIR%%/salt/states/apt.pyc +%%PYTHON_SITELIBDIR%%/salt/states/archive.py +%%PYTHON_SITELIBDIR%%/salt/states/archive.pyc +%%PYTHON_SITELIBDIR%%/salt/states/at.py +%%PYTHON_SITELIBDIR%%/salt/states/at.pyc %%PYTHON_SITELIBDIR%%/salt/states/augeas.py %%PYTHON_SITELIBDIR%%/salt/states/augeas.pyc +%%PYTHON_SITELIBDIR%%/salt/states/aws_sqs.py +%%PYTHON_SITELIBDIR%%/salt/states/aws_sqs.pyc +%%PYTHON_SITELIBDIR%%/salt/states/cloud.py +%%PYTHON_SITELIBDIR%%/salt/states/cloud.pyc %%PYTHON_SITELIBDIR%%/salt/states/cmd.py %%PYTHON_SITELIBDIR%%/salt/states/cmd.pyc +%%PYTHON_SITELIBDIR%%/salt/states/composer.py +%%PYTHON_SITELIBDIR%%/salt/states/composer.pyc %%PYTHON_SITELIBDIR%%/salt/states/cron.py %%PYTHON_SITELIBDIR%%/salt/states/cron.pyc %%PYTHON_SITELIBDIR%%/salt/states/ddns.py @@ -640,6 +782,8 @@ %%PYTHON_SITELIBDIR%%/salt/states/debconfmod.pyc %%PYTHON_SITELIBDIR%%/salt/states/disk.py %%PYTHON_SITELIBDIR%%/salt/states/disk.pyc +%%PYTHON_SITELIBDIR%%/salt/states/dockerio.py +%%PYTHON_SITELIBDIR%%/salt/states/dockerio.pyc %%PYTHON_SITELIBDIR%%/salt/states/eselect.py %%PYTHON_SITELIBDIR%%/salt/states/eselect.pyc %%PYTHON_SITELIBDIR%%/salt/states/file.py @@ -648,6 +792,8 @@ %%PYTHON_SITELIBDIR%%/salt/states/gem.pyc %%PYTHON_SITELIBDIR%%/salt/states/git.py %%PYTHON_SITELIBDIR%%/salt/states/git.pyc +%%PYTHON_SITELIBDIR%%/salt/states/gnomedesktop.py +%%PYTHON_SITELIBDIR%%/salt/states/gnomedesktop.pyc %%PYTHON_SITELIBDIR%%/salt/states/grains.py %%PYTHON_SITELIBDIR%%/salt/states/grains.pyc %%PYTHON_SITELIBDIR%%/salt/states/group.py @@ -656,6 +802,8 @@ %%PYTHON_SITELIBDIR%%/salt/states/hg.pyc %%PYTHON_SITELIBDIR%%/salt/states/host.py %%PYTHON_SITELIBDIR%%/salt/states/host.pyc +%%PYTHON_SITELIBDIR%%/salt/states/incron.py +%%PYTHON_SITELIBDIR%%/salt/states/incron.pyc %%PYTHON_SITELIBDIR%%/salt/states/iptables.py %%PYTHON_SITELIBDIR%%/salt/states/iptables.pyc %%PYTHON_SITELIBDIR%%/salt/states/keyboard.py @@ -672,10 +820,16 @@ %%PYTHON_SITELIBDIR%%/salt/states/locale.pyc %%PYTHON_SITELIBDIR%%/salt/states/lvm.py %%PYTHON_SITELIBDIR%%/salt/states/lvm.pyc +%%PYTHON_SITELIBDIR%%/salt/states/lvs_server.py +%%PYTHON_SITELIBDIR%%/salt/states/lvs_server.pyc +%%PYTHON_SITELIBDIR%%/salt/states/lvs_service.py +%%PYTHON_SITELIBDIR%%/salt/states/lvs_service.pyc %%PYTHON_SITELIBDIR%%/salt/states/makeconf.py %%PYTHON_SITELIBDIR%%/salt/states/makeconf.pyc %%PYTHON_SITELIBDIR%%/salt/states/mdadm.py %%PYTHON_SITELIBDIR%%/salt/states/mdadm.pyc +%%PYTHON_SITELIBDIR%%/salt/states/memcached.py +%%PYTHON_SITELIBDIR%%/salt/states/memcached.pyc %%PYTHON_SITELIBDIR%%/salt/states/modjk_worker.py %%PYTHON_SITELIBDIR%%/salt/states/modjk_worker.pyc %%PYTHON_SITELIBDIR%%/salt/states/module.py @@ -696,6 +850,12 @@ %%PYTHON_SITELIBDIR%%/salt/states/network.pyc %%PYTHON_SITELIBDIR%%/salt/states/npm.py %%PYTHON_SITELIBDIR%%/salt/states/npm.pyc +%%PYTHON_SITELIBDIR%%/salt/states/ntp.py +%%PYTHON_SITELIBDIR%%/salt/states/ntp.pyc +%%PYTHON_SITELIBDIR%%/salt/states/openstack_config.py +%%PYTHON_SITELIBDIR%%/salt/states/openstack_config.pyc +%%PYTHON_SITELIBDIR%%/salt/states/pagerduty.py +%%PYTHON_SITELIBDIR%%/salt/states/pagerduty.pyc %%PYTHON_SITELIBDIR%%/salt/states/pecl.py %%PYTHON_SITELIBDIR%%/salt/states/pecl.pyc %%PYTHON_SITELIBDIR%%/salt/states/pip_state.py @@ -708,6 +868,8 @@ %%PYTHON_SITELIBDIR%%/salt/states/pkgrepo.pyc %%PYTHON_SITELIBDIR%%/salt/states/portage_config.py %%PYTHON_SITELIBDIR%%/salt/states/portage_config.pyc +%%PYTHON_SITELIBDIR%%/salt/states/ports.py +%%PYTHON_SITELIBDIR%%/salt/states/ports.pyc %%PYTHON_SITELIBDIR%%/salt/states/postgres_database.py %%PYTHON_SITELIBDIR%%/salt/states/postgres_database.pyc %%PYTHON_SITELIBDIR%%/salt/states/postgres_group.py @@ -720,6 +882,10 @@ %%PYTHON_SITELIBDIR%%/salt/states/process.pyc %%PYTHON_SITELIBDIR%%/salt/states/quota.py %%PYTHON_SITELIBDIR%%/salt/states/quota.pyc +%%PYTHON_SITELIBDIR%%/salt/states/rabbitmq_cluster.py +%%PYTHON_SITELIBDIR%%/salt/states/rabbitmq_cluster.pyc +%%PYTHON_SITELIBDIR%%/salt/states/rabbitmq_plugin.py +%%PYTHON_SITELIBDIR%%/salt/states/rabbitmq_plugin.pyc %%PYTHON_SITELIBDIR%%/salt/states/rabbitmq_policy.py %%PYTHON_SITELIBDIR%%/salt/states/rabbitmq_policy.pyc %%PYTHON_SITELIBDIR%%/salt/states/rabbitmq_user.py @@ -746,6 +912,8 @@ %%PYTHON_SITELIBDIR%%/salt/states/ssh_known_hosts.pyc %%PYTHON_SITELIBDIR%%/salt/states/stateconf.py %%PYTHON_SITELIBDIR%%/salt/states/stateconf.pyc +%%PYTHON_SITELIBDIR%%/salt/states/status.py +%%PYTHON_SITELIBDIR%%/salt/states/status.pyc %%PYTHON_SITELIBDIR%%/salt/states/supervisord.py %%PYTHON_SITELIBDIR%%/salt/states/supervisord.pyc %%PYTHON_SITELIBDIR%%/salt/states/svn.py @@ -764,14 +932,52 @@ %%PYTHON_SITELIBDIR%%/salt/states/win_dns_client.pyc %%PYTHON_SITELIBDIR%%/salt/states/win_firewall.py %%PYTHON_SITELIBDIR%%/salt/states/win_firewall.pyc +%%PYTHON_SITELIBDIR%%/salt/states/win_network.py +%%PYTHON_SITELIBDIR%%/salt/states/win_network.pyc +%%PYTHON_SITELIBDIR%%/salt/states/win_system.py +%%PYTHON_SITELIBDIR%%/salt/states/win_system.pyc %%PYTHON_SITELIBDIR%%/salt/states/win_path.py %%PYTHON_SITELIBDIR%%/salt/states/win_path.pyc %%PYTHON_SITELIBDIR%%/salt/states/win_servermanager.py %%PYTHON_SITELIBDIR%%/salt/states/win_servermanager.pyc +%%PYTHON_SITELIBDIR%%/salt/states/xmpp.py +%%PYTHON_SITELIBDIR%%/salt/states/xmpp.pyc +%%PYTHON_SITELIBDIR%%/salt/states/zcbuildout.py +%%PYTHON_SITELIBDIR%%/salt/states/zcbuildout.pyc %%PYTHON_SITELIBDIR%%/salt/syspaths.py %%PYTHON_SITELIBDIR%%/salt/syspaths.pyc %%PYTHON_SITELIBDIR%%/salt/template.py %%PYTHON_SITELIBDIR%%/salt/template.pyc +%%PYTHON_SITELIBDIR%%/salt/templates/debian_ip/conf.jinja +%%PYTHON_SITELIBDIR%%/salt/templates/debian_ip/debian_eth.jinja +%%PYTHON_SITELIBDIR%%/salt/templates/debian_ip/display-network.jinja +%%PYTHON_SITELIBDIR%%/salt/templates/debian_ip/network.jinja +%%PYTHON_SITELIBDIR%%/salt/templates/debian_ip/route_eth.jinja +%%PYTHON_SITELIBDIR%%/salt/templates/rh_ip/conf.jinja +%%PYTHON_SITELIBDIR%%/salt/templates/rh_ip/network.jinja +%%PYTHON_SITELIBDIR%%/salt/templates/rh_ip/rh5_eth.jinja +%%PYTHON_SITELIBDIR%%/salt/templates/rh_ip/rh6_eth.jinja +%%PYTHON_SITELIBDIR%%/salt/templates/rh_ip/route_eth.jinja +%%PYTHON_SITELIBDIR%%/salt/templates/virt/libvirt_domain.jinja +%%PYTHON_SITELIBDIR%%/salt/templates/virt/libvirt_volume.jinja +%%PYTHON_SITELIBDIR%%/salt/transport/__init__.py +%%PYTHON_SITELIBDIR%%/salt/transport/__init__.pyc +%%PYTHON_SITELIBDIR%%/salt/utils/cloud.py +%%PYTHON_SITELIBDIR%%/salt/utils/cloud.pyc +%%PYTHON_SITELIBDIR%%/salt/utils/context.py +%%PYTHON_SITELIBDIR%%/salt/utils/context.pyc +%%PYTHON_SITELIBDIR%%/salt/utils/error.py +%%PYTHON_SITELIBDIR%%/salt/utils/error.pyc +%%PYTHON_SITELIBDIR%%/salt/utils/vt.py +%%PYTHON_SITELIBDIR%%/salt/utils/vt.pyc +%%PYTHON_SITELIBDIR%%/salt/utils/decorators/__init__.py +%%PYTHON_SITELIBDIR%%/salt/utils/decorators/__init__.pyc +%%PYTHON_SITELIBDIR%%/salt/utils/validate/ssh.py +%%PYTHON_SITELIBDIR%%/salt/utils/validate/ssh.pyc +%%PYTHON_SITELIBDIR%%/salt/utils/validate/user.py +%%PYTHON_SITELIBDIR%%/salt/utils/validate/user.pyc +%%PYTHON_SITELIBDIR%%/salt/wheel/error.py +%%PYTHON_SITELIBDIR%%/salt/wheel/error.pyc %%PYTHON_SITELIBDIR%%/salt/tops/__init__.py %%PYTHON_SITELIBDIR%%/salt/tops/__init__.pyc %%PYTHON_SITELIBDIR%%/salt/tops/cobbler.py @@ -788,8 +994,6 @@ %%PYTHON_SITELIBDIR%%/salt/utils/atomicfile.pyc %%PYTHON_SITELIBDIR%%/salt/utils/debug.py %%PYTHON_SITELIBDIR%%/salt/utils/debug.pyc -%%PYTHON_SITELIBDIR%%/salt/utils/decorators.py -%%PYTHON_SITELIBDIR%%/salt/utils/decorators.pyc %%PYTHON_SITELIBDIR%%/salt/utils/dictupdate.py %%PYTHON_SITELIBDIR%%/salt/utils/dictupdate.pyc %%PYTHON_SITELIBDIR%%/salt/utils/event.py @@ -869,6 +1073,7 @@ %%PYTHON_SITELIBDIR%%/salt/wheel/pillar_roots.py %%PYTHON_SITELIBDIR%%/salt/wheel/pillar_roots.pyc man/man1/salt-call.1.gz +man/man1/salt-cloud.1.gz man/man1/salt-cp.1.gz man/man1/salt-key.1.gz man/man1/salt-master.1.gz @@ -878,30 +1083,38 @@ man/man1/salt-syndic.1.gz man/man1/salt.1.gz man/man7/salt.7.gz -@dirrm %%PYTHON_SITELIBDIR%%/salt/wheel -@dirrm %%PYTHON_SITELIBDIR%%/salt/utils/validate -@dirrm %%PYTHON_SITELIBDIR%%/salt/utils -@dirrm %%PYTHON_SITELIBDIR%%/salt/tops -@dirrm %%PYTHON_SITELIBDIR%%/salt/states -@dirrm %%PYTHON_SITELIBDIR%%/salt/search -@dirrm %%PYTHON_SITELIBDIR%%/salt/runners -@dirrm %%PYTHON_SITELIBDIR%%/salt/roster -@dirrm %%PYTHON_SITELIBDIR%%/salt/returners -@dirrm %%PYTHON_SITELIBDIR%%/salt/renderers -@dirrm %%PYTHON_SITELIBDIR%%/salt/pillar -@dirrm %%PYTHON_SITELIBDIR%%/salt/output -@dirrm %%PYTHON_SITELIBDIR%%/salt/modules/rh_ip -@dirrm %%PYTHON_SITELIBDIR%%/salt/modules -@dirrm %%PYTHON_SITELIBDIR%%/salt/log/handlers -@dirrm %%PYTHON_SITELIBDIR%%/salt/log -@dirrm %%PYTHON_SITELIBDIR%%/salt/grains -@dirrm %%PYTHON_SITELIBDIR%%/salt/fileserver -@dirrm %%PYTHON_SITELIBDIR%%/salt/ext +@dirrm %%PYTHON_SITELIBDIR%%/salt/auth +@dirrm %%PYTHON_SITELIBDIR%%/salt/cloud/clouds +@dirrm %%PYTHON_SITELIBDIR%%/salt/cloud/deploy +@dirrm %%PYTHON_SITELIBDIR%%/salt/cloud @dirrm %%PYTHON_SITELIBDIR%%/salt/client/ssh/wrapper @dirrm %%PYTHON_SITELIBDIR%%/salt/client/ssh @dirrm %%PYTHON_SITELIBDIR%%/salt/client @dirrm %%PYTHON_SITELIBDIR%%/salt/cli -@dirrm %%PYTHON_SITELIBDIR%%/salt/auth +@dirrm %%PYTHON_SITELIBDIR%%/salt/ext +@dirrm %%PYTHON_SITELIBDIR%%/salt/fileserver +@dirrm %%PYTHON_SITELIBDIR%%/salt/grains +@dirrm %%PYTHON_SITELIBDIR%%/salt/log/handlers +@dirrm %%PYTHON_SITELIBDIR%%/salt/log +@dirrm %%PYTHON_SITELIBDIR%%/salt/modules +@dirrm %%PYTHON_SITELIBDIR%%/salt/output +@dirrm %%PYTHON_SITELIBDIR%%/salt/pillar +@dirrm %%PYTHON_SITELIBDIR%%/salt/returners +@dirrm %%PYTHON_SITELIBDIR%%/salt/renderers +@dirrm %%PYTHON_SITELIBDIR%%/salt/runners +@dirrm %%PYTHON_SITELIBDIR%%/salt/roster +@dirrm %%PYTHON_SITELIBDIR%%/salt/states +@dirrm %%PYTHON_SITELIBDIR%%/salt/search +@dirrm %%PYTHON_SITELIBDIR%%/salt/templates/debian_ip +@dirrm %%PYTHON_SITELIBDIR%%/salt/templates/rh_ip +@dirrm %%PYTHON_SITELIBDIR%%/salt/templates/virt +@dirrm %%PYTHON_SITELIBDIR%%/salt/templates +@dirrm %%PYTHON_SITELIBDIR%%/salt/transport +@dirrm %%PYTHON_SITELIBDIR%%/salt/tops +@dirrm %%PYTHON_SITELIBDIR%%/salt/utils/decorators +@dirrm %%PYTHON_SITELIBDIR%%/salt/utils/validate +@dirrm %%PYTHON_SITELIBDIR%%/salt/utils +@dirrm %%PYTHON_SITELIBDIR%%/salt/wheel @dirrm %%PYTHON_SITELIBDIR%%/salt @dirrmtry %%ETCDIR%% @stopdaemon salt-master >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 19:00:11 2014 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 ESMTPS id 8C3E5DF9; Fri, 21 Feb 2014 19:00:11 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1616E110B; Fri, 21 Feb 2014 19:00: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 s1LJ0A1B033210; Fri, 21 Feb 2014 19:00:10 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1LJ0Afi033209; Fri, 21 Feb 2014 19:00:10 GMT (envelope-from edwin) Date: Fri, 21 Feb 2014 19:00:10 GMT Message-Id: <201402211900.s1LJ0Afi033209@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186950: maintainer update : sysutils/py-salt X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 19:00:11 -0000 Synopsis: maintainer update : sysutils/py-salt Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Fri Feb 21 19:00:10 UTC 2014 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186950 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 19:11:25 2014 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 ESMTPS id A38A7242; Fri, 21 Feb 2014 19:11:25 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 764D41243; Fri, 21 Feb 2014 19: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 s1LJBPu8038929; Fri, 21 Feb 2014 19:11:25 GMT (envelope-from pawel@freefall.freebsd.org) Received: (from pawel@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1LJBP0f038928; Fri, 21 Feb 2014 19:11:25 GMT (envelope-from pawel) Date: Fri, 21 Feb 2014 19:11:25 GMT Message-Id: <201402211911.s1LJBP0f038928@freefall.freebsd.org> To: pawel@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pawel@FreeBSD.org From: pawel@FreeBSD.org Subject: Re: ports/182395: [MAINTAINER] japanese/lookup: add staging support. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 19:11:25 -0000 Synopsis: [MAINTAINER] japanese/lookup: add staging support. Responsible-Changed-From-To: freebsd-ports-bugs->pawel Responsible-Changed-By: pawel Responsible-Changed-When: Fri Feb 21 19:11:25 UTC 2014 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=182395 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 19:25:23 2014 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 ESMTPS id 0D8BA7E3 for ; Fri, 21 Feb 2014 19:25:23 +0000 (UTC) Received: from redundancy.redundancy.org (redundancy.redundancy.org [IPv6:2607:f2f8:a9c4::2]) by mx1.freebsd.org (Postfix) with ESMTP id E89661369 for ; Fri, 21 Feb 2014 19:25:22 +0000 (UTC) Received: by redundancy.redundancy.org (Postfix, from userid 1001) id C615640E84F; Fri, 21 Feb 2014 11:25:22 -0800 (PST) Date: Fri, 21 Feb 2014 11:25:22 -0800 From: David Thiel To: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/186918: security/silktools can't build under poudriere Message-ID: <20140221192522.GZ8859@redundancy.redundancy.org> References: <201402201410.s1KEAAIA052442@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201402201410.s1KEAAIA052442@freefall.freebsd.org> X-OpenPGP-Key-fingerprint: 482A 8C46 C844 7E7C 8CBC 2313 96EE BEE5 1F4B CA13 X-OpenPGP-Key-available: http://redundancy.redundancy.org/lx.gpg X-Face: %H~{$1~NOw1y#%mM6{|4:/ List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 19:25:23 -0000 I can't speak to poudriere, but it does a "make package" just fine in a clean 10.0 jail. Something doesn't look right with your environment; libfixbuf is supposedly getting installed, but not being recognized by the configure script of silktools. From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 19:36:14 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EA2DFB51; Fri, 21 Feb 2014 19:36:14 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BD8E01498; Fri, 21 Feb 2014 19:36: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 s1LJaElc046409; Fri, 21 Feb 2014 19:36:14 GMT (envelope-from pawel@freefall.freebsd.org) Received: (from pawel@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1LJaEgp046408; Fri, 21 Feb 2014 19:36:14 GMT (envelope-from pawel) Date: Fri, 21 Feb 2014 19:36:14 GMT Message-Id: <201402211936.s1LJaEgp046408@freefall.freebsd.org> To: nukama+maintainer@gmail.com, nukama@gmail.com, pawel@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: pawel@FreeBSD.org Subject: Re: ports/186335: sysutils/scalpel - STAGEify X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 19:36:15 -0000 Synopsis: sysutils/scalpel - STAGEify State-Changed-From-To: feedback->closed State-Changed-By: pawel State-Changed-When: Fri Feb 21 19:36:14 UTC 2014 State-Changed-Why: Staging support added in r344936 http://www.freebsd.org/cgi/query-pr.cgi?pr=186335 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 19:39:36 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8D51ABCC; Fri, 21 Feb 2014 19:39:36 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6238D14BE; Fri, 21 Feb 2014 19:39: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 s1LJdav9046565; Fri, 21 Feb 2014 19:39:36 GMT (envelope-from pawel@freefall.freebsd.org) Received: (from pawel@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1LJdaSN046564; Fri, 21 Feb 2014 19:39:36 GMT (envelope-from pawel) Date: Fri, 21 Feb 2014 19:39:36 GMT Message-Id: <201402211939.s1LJdaSN046564@freefall.freebsd.org> To: nukama+maintainer@gmail.com, nukama@gmail.com, pawel@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: pawel@FreeBSD.org Subject: Re: ports/186339: devel/fuel add STAGE support X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 19:39:36 -0000 Synopsis: devel/fuel add STAGE support State-Changed-From-To: feedback->closed State-Changed-By: pawel State-Changed-When: Fri Feb 21 19:39:36 UTC 2014 State-Changed-Why: Staging support added in r334873 http://www.freebsd.org/cgi/query-pr.cgi?pr=186339 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 20:30:00 2014 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 ESMTPS id D9F2BCD5 for ; Fri, 21 Feb 2014 20:30:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B19171913 for ; Fri, 21 Feb 2014 20: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 s1LKU0BU062598 for ; Fri, 21 Feb 2014 20:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1LKU0gd062597; Fri, 21 Feb 2014 20:30:00 GMT (envelope-from gnats) Resent-Date: Fri, 21 Feb 2014 20:30:00 GMT Resent-Message-Id: <201402212030.s1LKU0gd062597@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, Nuno Subtil Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1E43A899 for ; Fri, 21 Feb 2014 20:24:15 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0601E18E2 for ; Fri, 21 Feb 2014 20:24:15 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1LKOEOh019701 for ; Fri, 21 Feb 2014 20:24:14 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1LKOEOI019693; Fri, 21 Feb 2014 20:24:14 GMT (envelope-from nobody) Message-Id: <201402212024.s1LKOEOI019693@cgiserv.freebsd.org> Date: Fri, 21 Feb 2014 20:24:14 GMT From: Nuno Subtil To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186951: Update linux-crashplan to version 3.6.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 20:30:00 -0000 >Number: 186951 >Category: ports >Synopsis: Update linux-crashplan to version 3.6.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: Fri Feb 21 20:30:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Nuno Subtil >Release: 9.2-RELEASE >Organization: >Environment: FreeBSD ponyo 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r+05c3e78: Wed Nov 27 11:05:49 PST 2013 root@ponyo:/usr/obj/store/devel/freebsd/src/sys/PONYO amd64 >Description: This patch updates CrashPlan to version 3.6.3. It also fixes the dependency on linux-sun-jre16. This is a simple, straightforward update patch. Seems to work fine on my machine. >How-To-Repeat: >Fix: Patch attached with submission follows: diff --git a/sysutils/linux-crashplan/Makefile b/sysutils/linux-crashplan/Makefile index a23a9dc..d7f2259 100644 --- a/sysutils/linux-crashplan/Makefile +++ b/sysutils/linux-crashplan/Makefile @@ -2,17 +2,17 @@ # $FreeBSD$ PORTNAME= linux-crashplan -DISTVERSION= 3.5.3 +DISTVERSION= 3.6.3 PORTREVISION= 1 CATEGORIES= sysutils linux MASTER_SITES= http://download.crashplan.com/installs/linux/install/CrashPlan/ -DISTNAME= CrashPlan_3.5.3_Linux +DISTNAME= CrashPlan_3.6.3_Linux EXTRACT_SUFX= .tgz MAINTAINER= wg@FreeBSD.org COMMENT= Backs up data to remote servers or hard drives -RUN_DEPENDS= linux-sun-jre>=0:${PORTSDIR}/java/linux-sun-jre16 \ +RUN_DEPENDS= linux-sun-jre16>=0:${PORTSDIR}/java/linux-sun-jre16 \ bash>=0:${PORTSDIR}/shells/bash WRKSRC= ${WRKDIR}/CrashPlan-install diff --git a/sysutils/linux-crashplan/distinfo b/sysutils/linux-crashplan/distinfo index 04b9285..6265e14 100644 --- a/sysutils/linux-crashplan/distinfo +++ b/sysutils/linux-crashplan/distinfo @@ -1,2 +1,2 @@ -SHA256 (CrashPlan_3.5.3_Linux.tgz) = 4ba6e7144b6184192e16fd1cd93ff342bd333e8e7080baaa9f8f46410cffa9df -SIZE (CrashPlan_3.5.3_Linux.tgz) = 21404033 +SHA256 (CrashPlan_3.6.3_Linux.tgz) = ddee41f515514156e4a2550a4b9304d39952b5a7c64ce33432e11ae38e5bb384 +SIZE (CrashPlan_3.6.3_Linux.tgz) = 21187875 diff --git a/sysutils/linux-crashplan/pkg-plist b/sysutils/linux-crashplan/pkg-plist index 730a162..eaa98bb 100644 --- a/sysutils/linux-crashplan/pkg-plist +++ b/sysutils/linux-crashplan/pkg-plist @@ -1,102 +1,100 @@ bin/CrashPlanDesktop -share/crashplan/libjniwrap64.so -share/crashplan/libjtux.so -share/crashplan/libjtux64.so +etc/rc.d/crashplan +share/crashplan/bin/.keepme +share/crashplan/bin/CrashPlanEngine +share/crashplan/bin/restartLinux.sh +share/crashplan/bin/run.conf +share/crashplan/conf/custom_sample.properties +share/crashplan/conf/default.service.xml +share/crashplan/conf/service.log.properties +share/crashplan/conf/ui.log.properties +share/crashplan/conf/ui.properties +share/crashplan/conf/upgradeui.log.properties +share/crashplan/conf/upgradeui.properties +share/crashplan/doc/readme.html +share/crashplan/doc/readme.odt +share/crashplan/doc/readme.pdf +share/crashplan/doc/readme.rtf +share/crashplan/install.vars +share/crashplan/jniwrap.lic +share/crashplan/lang/txt.properties +share/crashplan/lang/txt_ca.properties share/crashplan/lang/txt_da.properties -share/crashplan/lang/txt_zh_TW.properties -share/crashplan/lang/txt_pt.properties +share/crashplan/lang/txt_de.properties +share/crashplan/lang/txt_en.properties +share/crashplan/lang/txt_es.properties share/crashplan/lang/txt_es_ES.properties +share/crashplan/lang/txt_fi.properties share/crashplan/lang/txt_fr.properties -share/crashplan/lang/txt_es.properties +share/crashplan/lang/txt_hu.properties +share/crashplan/lang/txt_it.properties +share/crashplan/lang/txt_ja.properties share/crashplan/lang/txt_nl.properties +share/crashplan/lang/txt_no.properties share/crashplan/lang/txt_pl.properties -share/crashplan/lang/txt_en.properties -share/crashplan/lang/txt_zh.properties -share/crashplan/lang/txt_pt_BR.properties -share/crashplan/lang/txt_ca.properties -share/crashplan/lang/txt_es_AR.properties -share/crashplan/lang/txt_es_MX.properties +share/crashplan/lang/txt_pt.properties share/crashplan/lang/txt_sv.properties -share/crashplan/lang/txt_it.properties -share/crashplan/lang/txt_hu.properties share/crashplan/lang/txt_th.properties -share/crashplan/lang/txt_de.properties -share/crashplan/lang/txt_fi.properties share/crashplan/lang/txt_tr.properties -share/crashplan/lang/txt_no.properties -share/crashplan/lang/txt.properties -share/crashplan/lang/txt_ja.properties -share/crashplan/bin/run.conf -share/crashplan/bin/CrashPlanEngine -share/crashplan/bin/.keepme -share/crashplan/bin/restartLinux.sh +share/crashplan/lang/txt_zh.properties +share/crashplan/lang/txt_zh_TW.properties share/crashplan/lib/c42_protolib.jar +share/crashplan/lib/com.backup42.desktop.jar +share/crashplan/lib/com.jniwrapper.jniwrap.jar +share/crashplan/lib/com.jniwrapper.macpack.jar share/crashplan/lib/com.jniwrapper.winpack.jar -share/crashplan/lib/sbbi-upnplib-1.0.4.jar share/crashplan/lib/commons-collections-3.2.1-mini.jar -share/crashplan/lib/protobuf-java-2.4.1.jar +share/crashplan/lib/commons-jxpath-1.1.jar +share/crashplan/lib/jna-3.2.5.jar +share/crashplan/lib/json-20070829.jar +share/crashplan/lib/json-lib-2.4.jar +share/crashplan/lib/jtux.jar +share/crashplan/lib/log4j-1.2.16.jar share/crashplan/lib/miglayout15-swt.jar +share/crashplan/lib/org.eclipse.core.commands_3.6.1.v20120814-150512.jar +share/crashplan/lib/org.eclipse.equinox.common_3.6.100.v20120522-1841.jar +share/crashplan/lib/org.eclipse.jface_3.8.101.v20120817-083647.jar +share/crashplan/lib/org.eclipse.osgi_3.8.1.v20120830-144521.jar +share/crashplan/lib/protobuf-java-2.4.1.jar +share/crashplan/lib/rhino-1.7r3.jar +share/crashplan/lib/sbbi-upnplib-1.0.4.jar +share/crashplan/lib/slf4j-api-1.6.1.jar +share/crashplan/lib/slf4j-log4j12-1.6.1.jar share/crashplan/lib/swt-64.jar share/crashplan/lib/swt.jar -share/crashplan/lib/jtux.jar share/crashplan/lib/trove-3.0.2.jar -share/crashplan/lib/org.eclipse.osgi_3.8.1.v20120830-144521.jar -share/crashplan/lib/slf4j-log4j12-1.6.1.jar -share/crashplan/lib/org.eclipse.jface_3.8.101.v20120817-083647.jar -share/crashplan/lib/log4j-1.2.16.jar -share/crashplan/lib/com.jniwrapper.macpack.jar -share/crashplan/lib/slf4j-api-1.6.1.jar -share/crashplan/lib/com.backup42.desktop.jar -share/crashplan/lib/json-20070829.jar -share/crashplan/lib/commons-jxpath-1.1.jar -share/crashplan/lib/json-lib-2.4.jar share/crashplan/lib/twitter4j.jar -share/crashplan/lib/rhino-1.7r3.jar -share/crashplan/lib/org.eclipse.core.commands_3.6.1.v20120814-150512.jar -share/crashplan/lib/org.eclipse.equinox.common_3.6.100.v20120522-1841.jar -share/crashplan/lib/jna-3.2.5.jar -share/crashplan/lib/com.jniwrapper.jniwrap.jar -share/crashplan/jniwrap.lic -share/crashplan/upgrade/startLinux.sh -share/crashplan/upgrade/startFirst.sh -share/crashplan/upgrade/startSolaris.sh -share/crashplan/upgrade/startDesktopSolaris.sh -share/crashplan/upgrade/start.sh -share/crashplan/upgrade/startDesktop.sh -share/crashplan/upgrade/startDesktopLinux.sh -share/crashplan/upgrade/start.bat -share/crashplan/upgrade/startDesktop.bat share/crashplan/libjniwrap.so +share/crashplan/libjniwrap64.so +share/crashplan/libjtux.so +share/crashplan/libjtux64.so share/crashplan/libmd5.so -share/crashplan/install.vars +share/crashplan/libmd564.so +share/crashplan/skin/icon_app_128x128.png +share/crashplan/skin/icon_app_16x16.png +share/crashplan/skin/icon_app_32x32.png +share/crashplan/skin/icon_app_64x64.png share/crashplan/skin/logo_main.png +share/crashplan/skin/skin.properties share/crashplan/skin/splash_default.png -share/crashplan/skin/icon_app_16x16.png -share/crashplan/skin/icon_app_128x128.png share/crashplan/skin/splash_plus.png -share/crashplan/skin/skin.properties share/crashplan/skin/window_bg.jpg -share/crashplan/skin/icon_app_64x64.png -share/crashplan/skin/icon_app_32x32.png -share/crashplan/conf/ui.properties -share/crashplan/conf/ui.log.properties -share/crashplan/conf/upgradeui.log.properties -share/crashplan/conf/upgradeui.properties -share/crashplan/conf/default.service.xml -share/crashplan/conf/custom_sample.properties -share/crashplan/conf/service.log.properties -share/crashplan/libmd564.so -share/crashplan/doc/readme.rtf -share/crashplan/doc/readme.html -share/crashplan/doc/readme.pdf -share/crashplan/doc/readme.odt -@dirrm share/crashplan/log -@dirrm share/crashplan/doc -@dirrm share/crashplan/conf -@dirrm share/crashplan/skin -@dirrm share/crashplan/upgrade/UpgradeUI -@dirrm share/crashplan/upgrade -@dirrm share/crashplan/lib -@dirrm share/crashplan/bin -@dirrm share/crashplan/lang -@dirrm share/crashplan +share/crashplan/upgrade/start.bat +share/crashplan/upgrade/start.sh +share/crashplan/upgrade/startDesktop.bat +share/crashplan/upgrade/startDesktop.sh +share/crashplan/upgrade/startDesktopLinux.sh +share/crashplan/upgrade/startDesktopSolaris.sh +share/crashplan/upgrade/startFirst.sh +share/crashplan/upgrade/startLinux.sh +share/crashplan/upgrade/startSolaris.sh +@dirrmtry share/crashplan/upgrade/UpgradeUI +@dirrmtry share/crashplan/upgrade +@dirrmtry share/crashplan/skin +@dirrmtry share/crashplan/log +@dirrmtry share/crashplan/lib +@dirrmtry share/crashplan/lang +@dirrmtry share/crashplan/doc +@dirrmtry share/crashplan/conf +@dirrmtry share/crashplan/bin +@dirrmtry share/crashplan >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 22:18:04 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8549611B; Fri, 21 Feb 2014 22:18:04 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 58F59131B; Fri, 21 Feb 2014 22:18: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 s1LMI4Em097084; Fri, 21 Feb 2014 22:18:04 GMT (envelope-from pawel@freefall.freebsd.org) Received: (from pawel@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1LMI4lk097083; Fri, 21 Feb 2014 22:18:04 GMT (envelope-from pawel) Date: Fri, 21 Feb 2014 22:18:04 GMT Message-Id: <201402212218.s1LMI4lk097083@freefall.freebsd.org> To: pawel@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pawel@FreeBSD.org From: pawel@FreeBSD.org Subject: Re: ports/186127: net/pimdd remove GCC deps, stagify and fix RAW socket API changes X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 22:18:04 -0000 Synopsis: net/pimdd remove GCC deps, stagify and fix RAW socket API changes Responsible-Changed-From-To: freebsd-ports-bugs->pawel Responsible-Changed-By: pawel Responsible-Changed-When: Fri Feb 21 22:18:04 UTC 2014 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=186127 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 22:43:35 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BB046887; Fri, 21 Feb 2014 22:43:35 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8C85615E0; Fri, 21 Feb 2014 22:43: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 s1LMhZBA005766; Fri, 21 Feb 2014 22:43:35 GMT (envelope-from pawel@freefall.freebsd.org) Received: (from pawel@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1LMhZw5005765; Fri, 21 Feb 2014 22:43:35 GMT (envelope-from pawel) Date: Fri, 21 Feb 2014 22:43:35 GMT Message-Id: <201402212243.s1LMhZw5005765@freefall.freebsd.org> To: oleg.derevenetz@gmail.com, pawel@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pawel@FreeBSD.org From: pawel@FreeBSD.org Subject: Re: ports/186140: [PATCH] net/bwping update to 1.7 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 22:43:35 -0000 Synopsis: [PATCH] net/bwping update to 1.7 Responsible-Changed-From-To: freebsd-ports-bugs->pawel Responsible-Changed-By: pawel Responsible-Changed-When: Fri Feb 21 22:43:35 UTC 2014 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=186140 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 22:56:32 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4D37ED7A; Fri, 21 Feb 2014 22:56:32 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1D8CA16D5; Fri, 21 Feb 2014 22:56: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 s1LMuVgQ008947; Fri, 21 Feb 2014 22:56:31 GMT (envelope-from pawel@freefall.freebsd.org) Received: (from pawel@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1LMuVuA008946; Fri, 21 Feb 2014 22:56:31 GMT (envelope-from pawel) Date: Fri, 21 Feb 2014 22:56:31 GMT Message-Id: <201402212256.s1LMuVuA008946@freefall.freebsd.org> To: pawel@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pawel@FreeBSD.org From: pawel@FreeBSD.org Subject: Re: ports/186834: [maintainer update] textproc/py-regex update to version 2014.02.16 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 22:56:32 -0000 Synopsis: [maintainer update] textproc/py-regex update to version 2014.02.16 Responsible-Changed-From-To: freebsd-ports-bugs->pawel Responsible-Changed-By: pawel Responsible-Changed-When: Fri Feb 21 22:56:31 UTC 2014 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=186834 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 21 23:06:57 2014 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 ESMTPS id 99BA5FF4; Fri, 21 Feb 2014 23:06:57 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6CBBC1799; Fri, 21 Feb 2014 23:06: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 s1LN6vj6012327; Fri, 21 Feb 2014 23:06:57 GMT (envelope-from pawel@freefall.freebsd.org) Received: (from pawel@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1LN6vxc012326; Fri, 21 Feb 2014 23:06:57 GMT (envelope-from pawel) Date: Fri, 21 Feb 2014 23:06:57 GMT Message-Id: <201402212306.s1LN6vxc012326@freefall.freebsd.org> To: pawel@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pawel@FreeBSD.org From: pawel@FreeBSD.org Subject: Re: ports/186849: [maintainer update] Important update lang/basic256 to 1.1.0.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 23:06:57 -0000 Synopsis: [maintainer update] Important update lang/basic256 to 1.1.0.0 Responsible-Changed-From-To: freebsd-ports-bugs->pawel Responsible-Changed-By: pawel Responsible-Changed-When: Fri Feb 21 23:06:57 UTC 2014 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=186849 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Feb 22 01:30:00 2014 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 ESMTPS id AB9DC433 for ; Sat, 22 Feb 2014 01:30:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 833B913A0 for ; Sat, 22 Feb 2014 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 s1M1U0wS070193 for ; Sat, 22 Feb 2014 01:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1M1U0MI070192; Sat, 22 Feb 2014 01:30:00 GMT (envelope-from gnats) Resent-Date: Sat, 22 Feb 2014 01:30:00 GMT Resent-Message-Id: <201402220130.s1M1U0MI070192@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, Tony Morlan Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3585442D for ; Sat, 22 Feb 2014 01:29:24 +0000 (UTC) Received: from krusty.scroner.com (krusty.scroner.com [12.47.45.153]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DEB9D139C for ; Sat, 22 Feb 2014 01:29:23 +0000 (UTC) Received: from krusty.scroner.com (localhost [127.0.0.1]) by krusty.scroner.com (8.14.5/8.14.5) with ESMTP id s1M10QJ0036807 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Fri, 21 Feb 2014 19:00:26 -0600 (CST) (envelope-from tony@krusty.scroner.com) Received: (from tony@localhost) by krusty.scroner.com (8.14.5/8.14.5/Submit) id s1M10QJW036806; Fri, 21 Feb 2014 19:00:26 -0600 (CST) (envelope-from tony) Message-Id: <201402220100.s1M10QJW036806@krusty.scroner.com> Date: Fri, 21 Feb 2014 19:00:26 -0600 (CST) From: Tony Morlan To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/186953: [patch] devel/p5-File-LibMagic: 0.96 fails to build with perl5.18, update to 1.00 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Tony Morlan List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Feb 2014 01:30:00 -0000 >Number: 186953 >Category: ports >Synopsis: [patch] devel/p5-File-LibMagic: 0.96 fails to build with perl5.18, update to 1.00 >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 Feb 22 01:30:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Tony Morlan >Release: FreeBSD 10.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD hoover.servadmin.com 10.0-RELEASE FreeBSD 10.0-RELEASE #0 r260789: Thu Jan 16 22:34:59 UTC 2014 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: With DEFAULT_VERSIONS=perl5=5.18: =================================================== ===> Configuring for p5-File-LibMagic-0.96 "my" variable $mm_attr_key masks earlier declaration in same statement at inc/Devel/CheckLib.pm line 168. "my" variable $arg masks earlier declaration in same statement at inc/Devel/CheckLib.pm line 176. "my" variable $arg masks earlier declaration in same statement at inc/Devel/CheckLib.pm line 177. "my" variable $arg masks earlier declaration in same scope at inc/Devel/CheckLib.pm line 181. "my" variable %args masks earlier declaration in same scope at inc/Devel/CheckLib.pm line 181. "my" variable $arg masks earlier declaration in same statement at inc/Devel/CheckLib.pm line 182. "my" variable $arg masks earlier declaration in same statement at inc/Devel/CheckLib.pm line 183. syntax error at inc/Devel/CheckLib.pm line 163, near "$mm_attr_key qw(LIBS INC)" syntax error at inc/Devel/CheckLib.pm line 170, near "}" Global symbol "%args" requires explicit package name at inc/Devel/CheckLib.pm line 174. syntax error at inc/Devel/CheckLib.pm line 178, near "}" syntax error at inc/Devel/CheckLib.pm line 184, near "}" Global symbol "@headers" requires explicit package name at inc/Devel/CheckLib.pm line 191. Global symbol "@libs" requires explicit package name at inc/Devel/CheckLib.pm line 222. Global symbol "@libpaths" requires explicit package name at inc/Devel/CheckLib.pm line 229. Global symbol "@libpaths" requires explicit package name at inc/Devel/CheckLib.pm line 235. Global symbol "@libpaths" requires explicit package name at inc/Devel/CheckLib.pm line 239. syntax error at inc/Devel/CheckLib.pm line 251, near "}" inc/Devel/CheckLib.pm has too many errors. Compilation failed in require at ./Makefile.PL line 8. BEGIN failed--compilation aborted at ./Makefile.PL line 8. *** Error code 255 Stop. make: stopped in /usr/ports/devel/p5-File-LibMagic >How-To-Repeat: In make.conf: DEFAULT_VERSIONS=perl5=5.18 cd /usr/ports/devel/p5-File-LibMagic make >Fix: Attached patch updates port to 1.00, which packages a newer version of Devel::CheckLib. Tested in poudriere on 10.0-RELEASE, amd64 with perl5.14, 5.16, and 5.18. --- devel_p5-file-libmagic-1.00.patch begins here --- Index: devel/p5-File-LibMagic/Makefile =================================================================== --- devel/p5-File-LibMagic/Makefile (revision 345140) +++ devel/p5-File-LibMagic/Makefile (working copy) @@ -1,11 +1,10 @@ # $FreeBSD$ PORTNAME= File-LibMagic -PORTVERSION= 0.96 +PORTVERSION= 1.00 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- -EXTRACT_SUFX= .tgz MAINTAINER= tj@FreeBSD.org COMMENT= Nice wrapper for libmagic Index: devel/p5-File-LibMagic/distinfo =================================================================== --- devel/p5-File-LibMagic/distinfo (revision 345140) +++ devel/p5-File-LibMagic/distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (File-LibMagic-0.96.tgz) = 7db199854317237c4cbe680faa045d392183e71f50b33a0e90e6a267ce4afab6 -SIZE (File-LibMagic-0.96.tgz) = 16942 +SHA256 (File-LibMagic-1.00.tar.gz) = ead63c668e5ba0bb5dc55ced159ddf8f9d1afea1af7b9f5168d124d77c9045b1 +SIZE (File-LibMagic-1.00.tar.gz) = 71549 Index: devel/p5-File-LibMagic/pkg-plist =================================================================== --- devel/p5-File-LibMagic/pkg-plist (revision 345140) +++ devel/p5-File-LibMagic/pkg-plist (working copy) @@ -1,7 +1,6 @@ %%SITE_PERL%%/%%PERL_ARCH%%/File/LibMagic.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/File/LibMagic/LibMagic.so %%SITE_PERL%%/%%PERL_ARCH%%/auto/File/LibMagic/LibMagic.bs -%%SITE_PERL%%/%%PERL_ARCH%%/auto/File/LibMagic/autosplit.ix %%SITE_PERL%%/%%PERL_ARCH%%/auto/File/LibMagic/.packlist %%PERL5_MAN3%%/File::LibMagic.3.gz @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/File/LibMagic --- devel_p5-file-libmagic-1.00.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Feb 22 01:30:08 2014 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 ESMTPS id E150A463; Sat, 22 Feb 2014 01:30:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B4ECF13A3; Sat, 22 Feb 2014 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 s1M1U8MA070330; Sat, 22 Feb 2014 01:30:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1M1U8Ad070329; Sat, 22 Feb 2014 01:30:08 GMT (envelope-from edwin) Date: Sat, 22 Feb 2014 01:30:08 GMT Message-Id: <201402220130.s1M1U8Ad070329@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, tj@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186953: [patch] devel/p5-File-LibMagic: 0.96 fails to build with perl5.18, update to 1.00 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Feb 2014 01:30:09 -0000 Synopsis: [patch] devel/p5-File-LibMagic: 0.96 fails to build with perl5.18, update to 1.00 Responsible-Changed-From-To: freebsd-ports-bugs->tj Responsible-Changed-By: edwin Responsible-Changed-When: Sat Feb 22 01:30:08 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186953 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Feb 22 02:58:13 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E3DB0157; Sat, 22 Feb 2014 02:58:13 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B723D1A0E; Sat, 22 Feb 2014 02:58: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 s1M2wDDi097733; Sat, 22 Feb 2014 02:58:13 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1M2wDUV097732; Sat, 22 Feb 2014 02:58:13 GMT (envelope-from edwin) Date: Sat, 22 Feb 2014 02:58:13 GMT Message-Id: <201402220258.s1M2wDUV097732@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, mat@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186890: dns/bind99: building BIND without XML option breaks named-checkconf X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Feb 2014 02:58:14 -0000 Synopsis: dns/bind99: building BIND without XML option breaks named-checkconf Responsible-Changed-From-To: freebsd-ports-bugs->mat Responsible-Changed-By: edwin Responsible-Changed-When: Sat Feb 22 02:58:13 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186890 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Feb 22 06:40:02 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9CD91EA for ; Sat, 22 Feb 2014 06:40:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7688E1797 for ; Sat, 22 Feb 2014 06: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 s1M6e2Ak073355 for ; Sat, 22 Feb 2014 06:40:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1M6e2kR073354; Sat, 22 Feb 2014 06:40:02 GMT (envelope-from gnats) Resent-Date: Sat, 22 Feb 2014 06:40:02 GMT Resent-Message-Id: <201402220640.s1M6e2kR073354@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 [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C13DBD7 for ; Sat, 22 Feb 2014 06:38:25 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8A3CC1737 for ; Sat, 22 Feb 2014 06:38:25 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1M6cOpO053672 for ; Sat, 22 Feb 2014 06:38:24 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1M6cOca053650; Sat, 22 Feb 2014 06:38:24 GMT (envelope-from nobody) Message-Id: <201402220638.s1M6cOca053650@cgiserv.freebsd.org> Date: Sat, 22 Feb 2014 06:38:24 GMT From: Yuri To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186955: [PATCH] Port ftp/curl needs openssl and heimdal dependencies X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Feb 2014 06:40:02 -0000 >Number: 186955 >Category: ports >Synopsis: [PATCH] Port ftp/curl needs openssl and heimdal dependencies >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 Feb 22 06:40:02 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Yuri >Release: 9.2 >Organization: n/a >Environment: >Description: Currently curl-7.35.0 depends on /usr/lib/libheimntlm.so.10 from the base system. This dependency pulls /lib/libcrypto.so.6 which conflicts with openssl-1.0.1_9 package. The effect of this conflict for me was that command 'git clone https://...' always fails. This is because git-helper-https is linked with libcurl and always gets /lib/libcrypto.so.6 dependency in addition to /usr/local/lib/libcrypto.so.8 The patch attached establishes dependencies on openssl and heimdal from the ports, eliminating potential conflicts with libheimntlm.so and libcrypto.so Caveat: current security/heimdal has conflict with openssl in manpages. Removing MAN3 from security/heimdal/Makefile fixed the conflict. (MAN3= after include Makefile.man there) In general, ports shopuld never link to security libraries from the base system, only to their counterparts from ports, due to such conflicts. >How-To-Repeat: >Fix: Patch attached with submission follows: Index: ftp/curl/Makefile =================================================================== --- ftp/curl/Makefile (revision 345565) +++ ftp/curl/Makefile (working copy) @@ -3,6 +3,7 @@ PORTNAME= curl PORTVERSION= 7.35.0 +PORTREVISION= 1 CATEGORIES= ftp www MASTER_SITES= http://curl.haxx.se/download/ \ LOCAL/sunpoet @@ -33,6 +34,7 @@ CONFIGURE_ENV+= LOCALBASE=${LOCALBASE} GNU_CONFIGURE= yes MAKE_ENV+= INSTALL_STRIP_FLAG=${STRIP} +USE_OPENSSL= yes USE_PERL5= build USE_XZ= yes USES= pathfix perl5 @@ -71,8 +73,8 @@ GNUTLS_CONFIGURE_ON= --with-gnutls=${LOCALBASE} GNUTLS_LIB_DEPENDS= libgnutls.so:${PORTSDIR}/security/gnutls GSSAPI_CONFIGURE_OFF= --without-gssapi -GSSAPI_CONFIGURE_ON= --with-gssapi=/usr -GSSAPI_CPPFLAGS= -I${INCLUDEDIR}/gssapi +GSSAPI_CONFIGURE_ON= --with-gssapi=${LOCALBASE} +GSSAPI_CPPFLAGS= -I${LOCALBASE}/include/gssapi IDN_CONFIGURE_OFF= --without-libidn IDN_CONFIGURE_ON= --with-libidn=${LOCALBASE} IDN_LIB_DEPENDS= libidn.so:${PORTSDIR}/dns/libidn @@ -115,6 +117,8 @@ THREADED_RESOLVER_CONFIGURE_ON= --enable-threaded-resolver TLS_SRP_CONFIGURE_OFF= --disable-tls-srp TLS_SRP_CONFIGURE_ON= --enable-tls-srp +BUILD_DEPENDS+= ${LOCALBASE}/lib/libgssapi.so:${PORTSDIR}/security/heimdal +RUN_DEPENDS+= ${LOCALBASE}/lib/libgssapi.so:${PORTSDIR}/security/heimdal .include >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Feb 22 06:40:10 2014 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 ESMTPS id EC963117; Sat, 22 Feb 2014 06:40:10 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BD92317A1; Sat, 22 Feb 2014 06: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 s1M6eAJ6075943; Sat, 22 Feb 2014 06:40:10 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1M6eA0X075942; Sat, 22 Feb 2014 06:40:10 GMT (envelope-from edwin) Date: Sat, 22 Feb 2014 06:40:10 GMT Message-Id: <201402220640.s1M6eA0X075942@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186955: [PATCH] Port ftp/curl needs openssl and heimdal dependencies X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Feb 2014 06:40:11 -0000 Synopsis: [PATCH] Port ftp/curl needs openssl and heimdal dependencies Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: edwin Responsible-Changed-When: Sat Feb 22 06:40:10 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186955 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Feb 22 07:00:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5380436E for ; Sat, 22 Feb 2014 07:00:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3F0DC1884 for ; Sat, 22 Feb 2014 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 s1M701Pn079012 for ; Sat, 22 Feb 2014 07:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1M701JF079011; Sat, 22 Feb 2014 07:00:01 GMT (envelope-from gnats) Date: Sat, 22 Feb 2014 07:00:01 GMT Message-Id: <201402220700.s1M701JF079011@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Robert Sevat Subject: RE: ports/186865: [patch] change rc.d script for security/strongswan X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Robert Sevat List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Feb 2014 07:00:01 -0000 The following reply was made to PR ports/186865; it has been noted by GNATS. From: Robert Sevat To: "bug-followup@FreeBSD.org" , "jason.unovitch@gmail.com" Cc: Subject: RE: ports/186865: [patch] change rc.d script for security/strongswan Date: Sat, 22 Feb 2014 07:51:01 +0100 --_7ada49d0-1371-4c15-bc89-3584d39d4624_ Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hey Jason=2C I've tested your changes to the rc script and it works as it is supposed to= . Kind Regards=2C Robert Sevat > Date: Thu=2C 20 Feb 2014 21:11:01 -0500 > From: jason.unovitch@gmail.com > To: robert.sevat@live.nl > CC: bug-followup@FreeBSD.org > Subject: Re: ports/186865: [patch] change rc.d script for security/strong= swan >=20 > Robert=2C > There's actually a few things that can use some tweaking per RC lint. =20 > I've attached a fixed version of the RC script for you to try along with= =20 > a patch that fixes the first 4 of the RC lint issues. It makes sense to= =20 > me as the one-line function results in much less clutter above but the=20 > maintainer/committer can decide on exactly what do do with that. >=20 > RC Lint before: > Checking strongswan > ERROR:root:[0]: Order of rc file incorrect > ERROR:root:[0]: Order of variables incorrect > ERROR:root:[13]: Do not quote values unless necessary > ERROR:root:[14]: rcvar is not set correctly > ERROR:root:[27]: One-line functions discouraged=3B put command directly i= n=20 > variable >=20 > RC Lint after: > Checking strongswan > ERROR:root:[27]: One-line functions discouraged=3B put command directly i= n=20 > variable >=20 > Jason = --_7ada49d0-1371-4c15-bc89-3584d39d4624_ Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hey Jason=2C

I've tested = your changes to the rc script and it works as it is supposed to.

Kin= d Regards=2C

Robert Sevat


>=3B Date: Thu=2C 20 Feb= 2014 21:11:01 -0500
>=3B From: jason.unovitch@gmail.com
>=3B To:= robert.sevat@live.nl
>=3B CC: bug-followup@FreeBSD.org
>=3B Subj= ect: Re: ports/186865: [patch] change rc.d script for security/strongswan>=3B
>=3B Robert=2C
>=3B There's actually a few things that = can use some tweaking per RC lint.
>=3B I've attached a fixed versio= n of the RC script for you to try along with
>=3B a patch that fixes = the first 4 of the RC lint issues. It makes sense to
>=3B me as the = one-line function results in much less clutter above but the
>=3B mai= ntainer/committer can decide on exactly what do do with that.
>=3B >=3B RC Lint before:
>=3B Checking strongswan
>=3B ERROR:root:= [0]: Order of rc file incorrect
>=3B ERROR:root:[0]: Order of variable= s incorrect
>=3B ERROR:root:[13]: Do not quote values unless necessary=
>=3B ERROR:root:[14]: rcvar is not set correctly
>=3B ERROR:root= :[27]: One-line functions discouraged=3B put command directly in
>=3B= variable
>=3B
>=3B RC Lint after:
>=3B Checking strongswan=
>=3B ERROR:root:[27]: One-line functions discouraged=3B put command d= irectly in
>=3B variable
>=3B
>=3B Jason
=
= --_7ada49d0-1371-4c15-bc89-3584d39d4624_-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Feb 22 08:10:01 2014 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 ESMTPS id 41E4CAF2 for ; Sat, 22 Feb 2014 08:10:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1B4141D2D for ; Sat, 22 Feb 2014 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 s1M8A03X009244 for ; Sat, 22 Feb 2014 08:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1M8A02t009243; Sat, 22 Feb 2014 08:10:00 GMT (envelope-from gnats) Resent-Date: Sat, 22 Feb 2014 08:10:00 GMT Resent-Message-Id: <201402220810.s1M8A02t009243@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, Jonathan 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 ESMTPS id 1F456A8F for ; Sat, 22 Feb 2014 08:01:39 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 084EE1D07 for ; Sat, 22 Feb 2014 08:01:39 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1M81cK4085998 for ; Sat, 22 Feb 2014 08:01:38 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1M81cG5085996; Sat, 22 Feb 2014 08:01:38 GMT (envelope-from nobody) Message-Id: <201402220801.s1M81cG5085996@cgiserv.freebsd.org> Date: Sat, 22 Feb 2014 08:01:38 GMT From: Jonathan Chen To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186956: Remote debugging on openjdk7 fails with "/usr/local/openjdk7/jre/lib/amd64/libnpt.so: Undefined symbol "libiconv_open" X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Feb 2014 08:10:01 -0000 >Number: 186956 >Category: ports >Synopsis: Remote debugging on openjdk7 fails with "/usr/local/openjdk7/jre/lib/amd64/libnpt.so: Undefined symbol "libiconv_open" >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 Feb 22 08:10:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Jonathan Chen >Release: 10.0-STABLE amd64 >Organization: >Environment: System: FreeBSD osiris.chen.org.nz 10.0-STABLE FreeBSD 10.0-STABLE #0 r261220: T hu Jan 30 18:36:34 NZDT 2014 root@osiris.chen.org.nz:/usr/obj/usr/src/sys/OSIRIS amd64 >Description: Starting up tomcat-7 with additional debug flags: "-Xdebug -Xrunjdwp:server=y,transport=dt_socket,address=8000,suspend=n" results in: /usr/local/openjdk7/jre/lib/amd64/libnpt.so: Undefined symbol "libiconv_open" Sure enough: 8:53pm> nm /usr/local/openjdk7/jre/lib/amd64/libnpt.so | grep iconv 0000000000002070 t iconvConvert U libiconv U libiconv_close U libiconv_open This is because I also have libiconv installed, and openjdk/jdk/src/solaris/instrument/EncodingSupport_md.c is including /usr/local/include/iconv.h instead of /usr/include/iconv.h during compilation from its: #include directive. >How-To-Repeat: Install libiconv. Build java/openjdk7 >Fix: A workaround is to shift /usr/local/include/iconv.h out of the way during the build (and restore once complete). A possible fix would be to patch EncodingSupport_md.c to force it to use the base system's iconv.h during post-patch? >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Feb 22 09:50:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B0CE9A52 for ; Sat, 22 Feb 2014 09:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8A9561518 for ; Sat, 22 Feb 2014 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 s1M9o08u041282 for ; Sat, 22 Feb 2014 09:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1M9o0l8041280; Sat, 22 Feb 2014 09:50:00 GMT (envelope-from gnats) Resent-Date: Sat, 22 Feb 2014 09:50:00 GMT Resent-Message-Id: <201402220950.s1M9o0l8041280@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, _root_ Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 20FF1948 for ; Sat, 22 Feb 2014 09:47:50 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0AB031507 for ; Sat, 22 Feb 2014 09:47:50 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1M9lnsr098913 for ; Sat, 22 Feb 2014 09:47:49 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1M9lnFF098912; Sat, 22 Feb 2014 09:47:49 GMT (envelope-from nobody) Message-Id: <201402220947.s1M9lnFF098912@cgiserv.freebsd.org> Date: Sat, 22 Feb 2014 09:47:49 GMT From: _root_ To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186957: waf-1.7.15 and mpv-0.3.3_1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Feb 2014 09:50:00 -0000 >Number: 186957 >Category: ports >Synopsis: waf-1.7.15 and mpv-0.3.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: Sat Feb 22 09:50:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: _root_ >Release: 10 -RELEASE >Organization: >Environment: FreeBSD AVALON 10.0-RELEASE FreeBSD 10.0-RELEASE #0 r260789: Thu Jan 16 22:34:59 UTC 2014 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: I am trying to compile your port via portmaster `portmaster multimedia/mpv` but I get an error regarding waf: `=> SHA256 Checksum mismatch for waf-1.7.15. ===> Refetch for 1 more times files: waf-1.7.15 ===> License GPLv2 accepted by the user ===> Found saved configuration for mpv-0.3.3_1,1 ===> mpv-0.3.3_1,1 depends on file: /usr/local/sbin/pkg - found => waf-1.7.15 doesn't seem to exist in /usr/ports/distfiles/. => Attempting to fetch https://waf.googlecode.com/files/waf-1.7.15 fetch: https://waf.googlecode.com/files/waf-1.7.15: Forbidden => Attempting to fetch ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/waf-1.7.15 fetch: ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/waf-1.7.15: File unavailable (e.g., file not found, no access) => Couldn't fetch it - please try to retrieve this => port manually into /usr/ports/distfiles/ and try again. *** Error code 1 Stop. make[2]: stopped in /usr/ports/multimedia/mpv *** Error code 1 Stop. make[1]: stopped in /usr/ports/multimedia/mpv *** Error code 1 Stop. make: stopped in /usr/ports/multimedia/mpv` as I am in collage library,I can't access the google code due to certificate issue. But the regular method of downloading and placing the file in disfiles doesn't work here: First what is waf? a file a directory? is it a port? does it have an extension like bzip or tar.gz? I search the google code and found `waf-1.7.15.tar.bz2` . I downloaded and placed it in distfiles but no luck. extract it and leave it as a folder again no joy. even tried to remove the etension and again no luck. Please look into this matter. thanks >How-To-Repeat: portmaster multimedia/mpv >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Feb 22 12:24:20 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 77C29D65; Sat, 22 Feb 2014 12:24:20 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4448512AC; Sat, 22 Feb 2014 12:24: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 s1MCOKkF093907; Sat, 22 Feb 2014 12:24:20 GMT (envelope-from pawel@freefall.freebsd.org) Received: (from pawel@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1MCOJLE093906; Sat, 22 Feb 2014 12:24:19 GMT (envelope-from pawel) Date: Sat, 22 Feb 2014 12:24:19 GMT Message-Id: <201402221224.s1MCOJLE093906@freefall.freebsd.org> To: jaap@NLnetLabs.nl, pawel@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pawel@FreeBSD.org From: pawel@FreeBSD.org Subject: Re: ports/186693: dns/nsd: lost mans after stagify X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Feb 2014 12:24:20 -0000 Synopsis: dns/nsd: lost mans after stagify Responsible-Changed-From-To: freebsd-ports-bugs->pawel Responsible-Changed-By: pawel Responsible-Changed-When: Sat Feb 22 12:24:19 UTC 2014 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=186693 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Feb 22 12:52:08 2014 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 ESMTPS id CB6762D5; Sat, 22 Feb 2014 12:52:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9F24E14F5; Sat, 22 Feb 2014 12:52: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 s1MCq81L002875; Sat, 22 Feb 2014 12:52:08 GMT (envelope-from pawel@freefall.freebsd.org) Received: (from pawel@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1MCq8Fm002874; Sat, 22 Feb 2014 12:52:08 GMT (envelope-from pawel) Date: Sat, 22 Feb 2014 12:52:08 GMT Message-Id: <201402221252.s1MCq8Fm002874@freefall.freebsd.org> To: pawel@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pawel@FreeBSD.org From: pawel@FreeBSD.org Subject: Re: ports/186878: [maintainer][patch] Update dns/gdnsd to 1.11.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Feb 2014 12:52:08 -0000 Synopsis: [maintainer][patch] Update dns/gdnsd to 1.11.1 Responsible-Changed-From-To: freebsd-ports-bugs->pawel Responsible-Changed-By: pawel Responsible-Changed-When: Sat Feb 22 12:52:08 UTC 2014 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=186878 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Feb 22 13:24:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4D67E110; Sat, 22 Feb 2014 13:24:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1F13F172C; Sat, 22 Feb 2014 13:24: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 s1MDNxL0012724; Sat, 22 Feb 2014 13:23:59 GMT (envelope-from antoine@freefall.freebsd.org) Received: (from antoine@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1MDNxuD012723; Sat, 22 Feb 2014 13:23:59 GMT (envelope-from antoine) Date: Sat, 22 Feb 2014 13:23:59 GMT Message-Id: <201402221323.s1MDNxuD012723@freefall.freebsd.org> To: antoine@FreeBSD.org, mm@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: antoine@FreeBSD.org Subject: Re: ports/183649: lang/hiphop-php 2.1 asserts on hhvm startup X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Feb 2014 13:24:00 -0000 Synopsis: lang/hiphop-php 2.1 asserts on hhvm startup Responsible-Changed-From-To: mm->freebsd-ports-bugs Responsible-Changed-By: antoine Responsible-Changed-When: Sat Feb 22 13:20:38 UTC 2014 Responsible-Changed-Why: Reassign as mm no longer maintains this port http://www.freebsd.org/cgi/query-pr.cgi?pr=183649 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Feb 22 14:00:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AD3E8A07 for ; Sat, 22 Feb 2014 14:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 88BF219A0 for ; Sat, 22 Feb 2014 14: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 s1ME00Bb021632 for ; Sat, 22 Feb 2014 14:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1ME00JD021631; Sat, 22 Feb 2014 14:00:00 GMT (envelope-from gnats) Resent-Date: Sat, 22 Feb 2014 14:00:00 GMT Resent-Message-Id: <201402221400.s1ME00JD021631@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, Carlo Strub Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E624A8F4 for ; Sat, 22 Feb 2014 13:55:33 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D12011975 for ; Sat, 22 Feb 2014 13:55:33 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1MDtXoS008165 for ; Sat, 22 Feb 2014 13:55:33 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1MDtXTc008164; Sat, 22 Feb 2014 13:55:33 GMT (envelope-from nobody) Message-Id: <201402221355.s1MDtXTc008164@cgiserv.freebsd.org> Date: Sat, 22 Feb 2014 13:55:33 GMT From: Carlo Strub To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186959: [UPDATE] www/mathjax X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Feb 2014 14:00:00 -0000 >Number: 186959 >Category: ports >Synopsis: [UPDATE] www/mathjax >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 Feb 22 14:00:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Carlo Strub >Release: >Organization: >Environment: >Description: - Update to 2.3 >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN /usr/ports/www/mathjax/Makefile mathjax/Makefile --- /usr/ports/www/mathjax/Makefile 2013-11-19 23:04:57.000000000 +0100 +++ mathjax/Makefile 2014-02-20 21:50:49.000000000 +0100 @@ -2,7 +2,7 @@ # $FreeBSD: head/www/mathjax/Makefile 334355 2013-11-19 22:04:57Z cs $ PORTNAME= MathJax -PORTVERSION= 2.2 +PORTVERSION= 2.3 CATEGORIES= www MAINTAINER= lukasz.stelmach@iem.pw.edu.pl @@ -13,7 +13,7 @@ GH_ACCOUNT= mathjax GH_TAGNAME= v${PORTVERSION} -WRKSRC= ${WRKDIR}/${GH_ACCOUNT}-${PORTNAME}-54280bb +WRKSRC= ${WRKDIR}/${GH_ACCOUNT}-${PORTNAME}-705548f # Changing permissions of 30k files with find -exec (COPYTREE) is way # too slow. diff -ruN /usr/ports/www/mathjax/distinfo mathjax/distinfo --- /usr/ports/www/mathjax/distinfo 2014-01-22 16:30:13.000000000 +0100 +++ mathjax/distinfo 2014-02-20 21:51:30.000000000 +0100 @@ -1,2 +1,2 @@ -SHA256 (MathJax-2.2.tar.gz) = 3c01dc8c3fd6869311d45c15c348f7ad682aefa3ae03ccf201f9cad83e26ceb1 -SIZE (MathJax-2.2.tar.gz) = 8972964 +SHA256 (MathJax-2.3.tar.gz) = 6c67da8de9db5620bf5219e505967304130d54c24d166e07134f491db5bb4c9b +SIZE (MathJax-2.3.tar.gz) = 22931313 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Feb 22 14:00:08 2014 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 ESMTPS id 9CD28A3C; Sat, 22 Feb 2014 14:00:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 717AA1A08; Sat, 22 Feb 2014 14: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 s1ME08UZ021789; Sat, 22 Feb 2014 14:00:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1ME08Es021788; Sat, 22 Feb 2014 14:00:08 GMT (envelope-from edwin) Date: Sat, 22 Feb 2014 14:00:08 GMT Message-Id: <201402221400.s1ME08Es021788@freefall.freebsd.org> To: cs@FreeBSD.org, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186959: [UPDATE] www/mathjax X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Feb 2014 14:00:08 -0000 Synopsis: [UPDATE] www/mathjax State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sat Feb 22 14:00:08 UTC 2014 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186959 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Feb 22 14:10:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 881EF5DA for ; Sat, 22 Feb 2014 14:10:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 705691A7B for ; Sat, 22 Feb 2014 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 s1MEA1UY024867 for ; Sat, 22 Feb 2014 14:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1MEA1eZ024866; Sat, 22 Feb 2014 14:10:01 GMT (envelope-from gnats) Date: Sat, 22 Feb 2014 14:10:01 GMT Message-Id: <201402221410.s1MEA1eZ024866@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/186959: [UPDATE] www/mathjax X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 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, 22 Feb 2014 14:10:01 -0000 The following reply was made to PR ports/186959; it has been noted by GNATS. From: Edwin Groothuis To: lukasz.stelmach@iem.pw.edu.pl Cc: bug-followup@FreeBSD.org Subject: Re: ports/186959: [UPDATE] www/mathjax Date: Sat, 22 Feb 2014 14:00:07 UT Maintainer of www/mathjax, Please note that PR ports/186959 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/186959 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Feb 22 14:20:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 52830933 for ; Sat, 22 Feb 2014 14:20:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3C8251B3E for ; Sat, 22 Feb 2014 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 s1MEK1j1028633 for ; Sat, 22 Feb 2014 14:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1MEK1Mh028632; Sat, 22 Feb 2014 14:20:01 GMT (envelope-from gnats) Date: Sat, 22 Feb 2014 14:20:01 GMT Message-Id: <201402221420.s1MEK1Mh028632@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Alexander Wittig Subject: Re: ports/186904: ports-mgmt/pkg_rmleaves: always says to resize terminal to at least 80x24 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Alexander Wittig List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Feb 2014 14:20:01 -0000 The following reply was made to PR ports/186904; it has been noted by GNATS. From: Alexander Wittig To: bug-followup@FreeBSD.org, beastie@tardisi.com, Lawrence Chen Cc: Subject: Re: ports/186904: ports-mgmt/pkg_rmleaves: always says to resize terminal to at least 80x24 Date: Sat, 22 Feb 2014 15:10:28 +0100 Thanks for bringing the problem to my attention. I was aware of the = described deficiency in the quote handling, however, on my test system = with FreeBSD 10 everything worked also with e.g. php55-extensions (A = =93meta-port=94 to install PHP extensions), despite the quotes in the = description. I included a modified version of the proposed patch, please try the new = version of the script at = http://alex.wittig.name/pkg_rmleaves/pkg_rmleaves-20140222.tar.gz If it works for you, I=92ll submit an update to the port.= From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Feb 22 14:50:36 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ABDDBCEE; Sat, 22 Feb 2014 14:50:36 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7AEE31DA4; Sat, 22 Feb 2014 14:50: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 s1MEoaSp037513; Sat, 22 Feb 2014 14:50:36 GMT (envelope-from riggs@freefall.freebsd.org) Received: (from riggs@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1MEoaAn037512; Sat, 22 Feb 2014 14:50:36 GMT (envelope-from riggs) Date: Sat, 22 Feb 2014 14:50:36 GMT Message-Id: <201402221450.s1MEoaAn037512@freefall.freebsd.org> To: thomas.e.zander@googlemail.com, riggs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, riggs@FreeBSD.org From: riggs@FreeBSD.org Subject: Re: ports/185560: multimedia/mplayer crashed on flv and mp4 video X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Feb 2014 14:50:36 -0000 Synopsis: multimedia/mplayer crashed on flv and mp4 video Responsible-Changed-From-To: freebsd-ports-bugs->riggs Responsible-Changed-By: riggs Responsible-Changed-When: Sat Feb 22 14:50:36 UTC 2014 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=185560 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Feb 22 14:53:10 2014 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 ESMTPS id 38BF1D44; Sat, 22 Feb 2014 14:53:10 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 095E41DBE; Sat, 22 Feb 2014 14:53: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 s1MEr9qK040130; Sat, 22 Feb 2014 14:53:09 GMT (envelope-from pawel@freefall.freebsd.org) Received: (from pawel@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1MEr9rp040129; Sat, 22 Feb 2014 14:53:09 GMT (envelope-from pawel) Date: Sat, 22 Feb 2014 14:53:09 GMT Message-Id: <201402221453.s1MEr9rp040129@freefall.freebsd.org> To: pawel@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pawel@FreeBSD.org From: pawel@FreeBSD.org Subject: Re: ports/186908: [Update] net-p2p/ncdc to 1.19 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Feb 2014 14:53:10 -0000 Synopsis: [Update] net-p2p/ncdc to 1.19 Responsible-Changed-From-To: freebsd-ports-bugs->pawel Responsible-Changed-By: pawel Responsible-Changed-When: Sat Feb 22 14:53:09 UTC 2014 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=186908 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Feb 22 15:06:15 2014 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 ESMTPS id 92EBEE43; Sat, 22 Feb 2014 15:06:15 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 642A01F94; Sat, 22 Feb 2014 15:06: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 s1MF6FsT043354; Sat, 22 Feb 2014 15:06:15 GMT (envelope-from riggs@freefall.freebsd.org) Received: (from riggs@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1MF6Feh043353; Sat, 22 Feb 2014 15:06:15 GMT (envelope-from riggs) Date: Sat, 22 Feb 2014 15:06:15 GMT Message-Id: <201402221506.s1MF6Feh043353@freefall.freebsd.org> To: riggs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, riggs@FreeBSD.org From: riggs@FreeBSD.org Subject: Re: ports/186462: audio/mixxx fails to configure when SHOUTCAST option is disabled X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Feb 2014 15:06:15 -0000 Synopsis: audio/mixxx fails to configure when SHOUTCAST option is disabled Responsible-Changed-From-To: freebsd-ports-bugs->riggs Responsible-Changed-By: riggs Responsible-Changed-When: Sat Feb 22 15:06:15 UTC 2014 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=186462 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Feb 22 15:31:32 2014 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 ESMTPS id 1F8CD5A0; Sat, 22 Feb 2014 15:31:32 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E86C011E7; Sat, 22 Feb 2014 15:31: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 s1MFVV2B052601; Sat, 22 Feb 2014 15:31:31 GMT (envelope-from vg@freefall.freebsd.org) Received: (from vg@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1MFVVjA052600; Sat, 22 Feb 2014 15:31:31 GMT (envelope-from vg) Date: Sat, 22 Feb 2014 15:31:31 GMT Message-Id: <201402221531.s1MFVVjA052600@freefall.freebsd.org> To: vg@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vg@FreeBSD.org From: vg@FreeBSD.org Subject: Re: ports/186864: sysutils/cbsd update to 10.0.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Feb 2014 15:31:32 -0000 Synopsis: sysutils/cbsd update to 10.0.3 Responsible-Changed-From-To: freebsd-ports-bugs->vg Responsible-Changed-By: vg Responsible-Changed-When: Sat Feb 22 15:31:31 UTC 2014 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=186864 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Feb 22 16:57:53 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CFE633FF; Sat, 22 Feb 2014 16:57:53 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A0F4A17D2; Sat, 22 Feb 2014 16:57: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 s1MGvrww076410; Sat, 22 Feb 2014 16:57:53 GMT (envelope-from pawel@freefall.freebsd.org) Received: (from pawel@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1MGvr9N076406; Sat, 22 Feb 2014 16:57:53 GMT (envelope-from pawel) Date: Sat, 22 Feb 2014 16:57:53 GMT Message-Id: <201402221657.s1MGvr9N076406@freefall.freebsd.org> To: winstonw@lavabit.com, pawel@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pawel@FreeBSD.org From: pawel@FreeBSD.org Subject: Re: ports/186926: [MAINTAINER-UPDATE] x11-fonts/roboto-fonts-ttf: Update to 1.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Feb 2014 16:57:53 -0000 Synopsis: [MAINTAINER-UPDATE] x11-fonts/roboto-fonts-ttf: Update to 1.2 Responsible-Changed-From-To: freebsd-ports-bugs->pawel Responsible-Changed-By: pawel Responsible-Changed-When: Sat Feb 22 16:57:52 UTC 2014 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=186926 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Feb 22 17:03:20 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C0034651; Sat, 22 Feb 2014 17:03:20 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 92429188F; Sat, 22 Feb 2014 17:03: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 s1MH3KXJ079223; Sat, 22 Feb 2014 17:03:20 GMT (envelope-from pawel@freefall.freebsd.org) Received: (from pawel@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1MH3KJk079222; Sat, 22 Feb 2014 17:03:20 GMT (envelope-from pawel) Date: Sat, 22 Feb 2014 17:03:20 GMT Message-Id: <201402221703.s1MH3KJk079222@freefall.freebsd.org> To: pawel@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wg@FreeBSD.org From: pawel@FreeBSD.org Subject: Re: ports/186951: Update linux-crashplan to version 3.6.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Feb 2014 17:03:20 -0000 Synopsis: Update linux-crashplan to version 3.6.3 Responsible-Changed-From-To: freebsd-ports-bugs->wg Responsible-Changed-By: pawel Responsible-Changed-When: Sat Feb 22 17:03:08 UTC 2014 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=186951 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Feb 22 17:04:56 2014 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 ESMTPS id AB0C7720; Sat, 22 Feb 2014 17:04:56 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7E2FC18A5; Sat, 22 Feb 2014 17:04: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 s1MH4ukO079337; Sat, 22 Feb 2014 17:04:56 GMT (envelope-from riggs@freefall.freebsd.org) Received: (from riggs@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1MH4umG079336; Sat, 22 Feb 2014 17:04:56 GMT (envelope-from riggs) Date: Sat, 22 Feb 2014 17:04:56 GMT Message-Id: <201402221704.s1MH4umG079336@freefall.freebsd.org> To: riggs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, riggs@FreeBSD.org From: riggs@FreeBSD.org Subject: Re: ports/177182: audio/mixxx segmentation fault X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Feb 2014 17:04:56 -0000 Synopsis: audio/mixxx segmentation fault Responsible-Changed-From-To: freebsd-ports-bugs->riggs Responsible-Changed-By: riggs Responsible-Changed-When: Sat Feb 22 17:04:45 UTC 2014 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=177182 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Feb 22 18:10:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AC47B3C8 for ; Sat, 22 Feb 2014 18:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8500B1D96 for ; Sat, 22 Feb 2014 18: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 s1MIA0lu097921 for ; Sat, 22 Feb 2014 18:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1MIA0E5097920; Sat, 22 Feb 2014 18:10:00 GMT (envelope-from gnats) Resent-Date: Sat, 22 Feb 2014 18:10:00 GMT Resent-Message-Id: <201402221810.s1MIA0E5097920@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 Harris Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D6EA32C3 for ; Sat, 22 Feb 2014 18:07:08 +0000 (UTC) Received: from wilma.widomaker.com (wilma.widomaker.com [204.17.220.5]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AAFB81D7B for ; Sat, 22 Feb 2014 18:07:08 +0000 (UTC) Received: from wilma.widomaker.com ([204.17.220.5]) by wilma.widomaker.com with esmtp (Exim 4.72 (FreeBSD)) (envelope-from ) id 1WHGPj-0006Kg-0x; Sat, 22 Feb 2014 12:30:59 -0500 Received: (from jason@localhost) by wilma.widomaker.com (8.14.7/8.14.7/Submit) id s1MHUwe0034880; Sat, 22 Feb 2014 13:30:58 -0400 (AST) (envelope-from jason) Message-Id: <201402221730.s1MHUwe0034880@wilma.widomaker.com> Date: Sat, 22 Feb 2014 13:30:58 -0400 (AST) From: Jason Harris To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/186961: archivers/lzip - take MAINTAINERSHIP, mirror DISTFILES Cc: Jason Harris X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Jason Harris List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Feb 2014 18:10:00 -0000 >Number: 186961 >Category: ports >Synopsis: archivers/lzip - take MAINTAINERSHIP, mirror DISTFILES >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 Feb 22 18:10:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Jason Harris >Release: FreeBSD 9.2-RELEASE-p3 amd64 >Organization: bitrote.org >Environment: FreeBSD laptop 9.2-RELEASE-p3 FreeBSD 9.2-RELEASE-p3 #0: Sat Jan 11 03:25:02 UTC 2014 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: archivers/lzip - take MAINTAINERSHIP, mirror DISTFILES >How-To-Repeat: apply patch below >Fix: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 NotDashEscaped: You need GnuPG to verify this message Index: Makefile =================================================================== --- Makefile (revision 345660) +++ Makefile (working copy) @@ -4,9 +4,9 @@ PORTNAME= lzip PORTVERSION= 1.15 CATEGORIES= archivers -MASTER_SITES= SAVANNAH/lzip LOCAL/marino +MASTER_SITES= SAVANNAH/lzip http://bitrote.org/distfiles/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= jharris@widomaker.com COMMENT= Lossless data compressor based on the LZMA algorithm LICENSE= GPLv3 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iJ0EARECAF0FAlMI3gJWGGh0dHA6Ly9rZXlzZXJ2ZXIua2pzbC5jb206MTEzNzEv cGtzL2xvb2t1cD9vcD1nZXQmc2VhcmNoPTB4RDM5REEwRTMmd2VoYXZleW91bm93 PXRydWUACgkQSypIl9OdoON5yQCfYSpbl1PXc06Qf84EsFvcm4Zy7hAAoLGoXdbe +vD2IE5aXFTAGdcp8/JJ =MrTo -----END PGP SIGNATURE----- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Feb 22 18:10:08 2014 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 ESMTPS id B25D93FF; Sat, 22 Feb 2014 18:10:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 886951D9C; Sat, 22 Feb 2014 18: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 s1MIA8gF098072; Sat, 22 Feb 2014 18:10:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1MIA89J098071; Sat, 22 Feb 2014 18:10:08 GMT (envelope-from edwin) Date: Sat, 22 Feb 2014 18:10:08 GMT Message-Id: <201402221810.s1MIA89J098071@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sylvio@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186961: archivers/lzip - take MAINTAINERSHIP, mirror DISTFILES X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Feb 2014 18:10:08 -0000 Synopsis: archivers/lzip - take MAINTAINERSHIP, mirror DISTFILES Responsible-Changed-From-To: freebsd-ports-bugs->sylvio Responsible-Changed-By: edwin Responsible-Changed-When: Sat Feb 22 18:10:08 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186961 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Feb 22 18:20:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B7E73970 for ; Sat, 22 Feb 2014 18:20:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A19211FC3 for ; Sat, 22 Feb 2014 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 s1MIK14U005224 for ; Sat, 22 Feb 2014 18:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1MIK1aL005223; Sat, 22 Feb 2014 18:20:01 GMT (envelope-from gnats) Date: Sat, 22 Feb 2014 18:20:01 GMT Message-Id: <201402221820.s1MIK1aL005223@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: KATO Tsuguru Subject: Re: ports/174176: audio/timidity++: Update to version 2.14.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: KATO Tsuguru List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Feb 2014 18:20:01 -0000 The following reply was made to PR ports/174176; it has been noted by GNATS. From: KATO Tsuguru To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/174176: audio/timidity++: Update to version 2.14.0 Date: Sun, 23 Feb 2014 02:57:38 +0900 This is a multi-part message in MIME format. --Multipart=_Sun__23_Feb_2014_02_57_38_+0900_NKtKs5WkI0TeAYP9 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Remake of the patch against current tree. --Multipart=_Sun__23_Feb_2014_02_57_38_+0900_NKtKs5WkI0TeAYP9 Content-Type: text/x-diff; name="audio_timidity++.diff" Content-Disposition: attachment; filename="audio_timidity++.diff" Content-Transfer-Encoding: 7bit diff -urN /usr/ports/audio/timidity++/Makefile audio/timidity++/Makefile --- /usr/ports/audio/timidity++/Makefile 2014-02-22 05:45:17.000000000 +0900 +++ audio/timidity++/Makefile 2014-02-23 00:00:00.000000000 +0900 @@ -2,8 +2,8 @@ # $FreeBSD: head/audio/timidity++/Makefile 345395 2014-02-21 13:35:10Z ehaupt $ PORTNAME= timidity++ -PORTVERSION= 2.13.2 -PORTREVISION?= 11 +PORTVERSION= 2.14.0 +PORTREVISION?= 0 CATEGORIES+= audio MASTER_SITES= SF/timidity/TiMidity%2B%2B/TiMidity%2B%2B-${PORTVERSION} DISTNAME= TiMidity++-${PORTVERSION} @@ -11,86 +11,89 @@ MAINTAINER?= ports@FreeBSD.org COMMENT?= Software MIDI player +LICENSE= GPLv2 # (or later) + .if !defined(PKGNAMESUFFIX) -LIB_DEPENDS= libvorbis.so:${PORTSDIR}/audio/libvorbis \ - libarc.so:${PORTSDIR}/archivers/libarc -RUN_DEPENDS= ${LOCALBASE}/share/timidity/timidity.cfg:${PORTSDIR}/audio/eawpats +LIB_DEPENDS+= libarc.so:${PORTSDIR}/archivers/libarc \ + libvorbis.so:${PORTSDIR}/audio/libvorbis +RUN_DEPENDS+= eawpats>0:${PORTSDIR}/audio/eawpats + +OPTIONS_DEFINE= EAWPLUS ESOUND X11 DOCS +OPTIONS_DEFAULT=X11 +EAWPLUS_DESC= Collection of Gravis Ultrasound MIDI patches -CONFLICTS= timidity-0.* +CONFLICTS_INSTALL= timidity-[0-9]* .endif -USES= gmake -NO_STAGE= yes USE_BZIP2= yes +USES= gmake GNU_CONFIGURE= yes +CONFIGURE_ENV+= SHLD="${CC} -shared" +CPPFLAGS+= -I${LOCALBASE}/include/libarc -I${LOCALBASE}/include +LDFLAGS+= -Wl,--export-dynamic -PLIST_SUB+= TIMID_LIBDIR=${TIMID_LIBDIR} EUCJP_LOCALE=${EUCJP_LOCALE} +PLIST_SUB+= TIMID_LIBDIR="${TIMID_LIBDIR}" EUCJP_LOCALE="${EUCJP_LOCALE}" -EUCJP_LOCALE= ja_JP.eucJP TIMID_LIBDIR= lib/timidity - -OPTIONS_DEFINE= DOCS +EUCJP_LOCALE= ja_JP.eucJP .include -.if !defined(PKGNAMESUFFIX) -WANT_GNOME= yes -EXTRACT_AFTER_ARGS= --exclude '*/libarc/*' \ - --exclude '*/utils/mblock.h' --exclude '*/utils/memb.h' - +.if defined(PKGNAMESUFFIX) +.include "Makefile.interface" +.else +USES+= ncurses CONFIGURE_ARGS= --enable-interface=ncurses,vt100,server \ - --program-transform-name= --enable-network -CPPFLAGS+= -I${LOCALBASE}/include/libarc -LDFLAGS+= -export-dynamic + --enable-network DOCFILES= README.alsaseq README.dl README.m2m README.mts README.sf -DOCLANG= C ja_JP.eucJP -MANLANG= "" ja -MAN1= timidity.1 -MAN5= timidity.cfg.5 - -.if defined(WITHOUT_X11) -CONFIGURE_ARGS+=--without-x --disable-spectrogram --disable-wrd --disable-dynamic -.else -CONFIGURE_ARGS+=--with-x --enable-spectrogram --enable-wrd --enable-dynamic -USE_XORG= x11 xext -LIB_DEPENDS+= libpng15.so:${PORTSDIR}/graphics/png -CPPFLAGS+= -I${LOCALBASE}/include/libpng15 +.if ${PORT_OPTIONS:MEAWPLUS} +RUN_DEPENDS+= eawplus>0:${PORTSDIR}/audio/eawplus .endif -.include - -.if ${HAVE_GNOME:Mesound}!="" -USE_GNOME= esound +.if ${PORT_OPTIONS:MESOUND} +USE_GNOME+= esound CONFIGURE_ARGS+=--enable-audio=oss,esd,vorbis .else CONFIGURE_ARGS+=--enable-audio=oss,vorbis .endif -pre-su-install: - @${MKDIR} ${PREFIX}/share/timidity ${PREFIX}/${TIMID_LIBDIR} +.if ${PORT_OPTIONS:MX11} +LIB_DEPENDS+= libpng15.so:${PORTSDIR}/graphics/png +USE_XORG= x11 xext +CONFIGURE_ARGS+=--with-x \ + --enable-spectrogram \ + --enable-wrd \ + --enable-dynamic +CPPFLAGS+= $$(libpng-config --I_opts) +.else +CONFIGURE_ARGS+=--without-x \ + --disable-spectrogram \ + --disable-wrd \ + --disable-dynamic +.endif -post-install:: - ${INSTALL_MAN} ${WRKSRC}/doc/ja_JP.eucJP/timidity.1 \ - ${PREFIX}/man/ja/man1 - ${INSTALL_MAN} ${WRKSRC}/doc/ja_JP.eucJP/timidity.cfg.5 \ - ${PREFIX}/man/ja/man5 -.else # defined(PKGNAMESUFFIX) -.include "${MASTERDIR}/Makefile.interface" -.endif # !defined(PKGNAMESUFFIX) +post-extract: + @${RM} -f ${WRKSRC}/libarc/*.h + @${RM} -f ${WRKSRC}/utils/mblock.h + +pre-su-install: + @${MKDIR} ${STAGEDIR}${PREFIX}/${TIMID_LIBDIR} + @${MKDIR} ${STAGEDIR}${PREFIX}/share/timidity post-install:: -.if ${PORT_OPTIONS:MDOCS} && defined(DOCFILES) -.for lang in ${DOCLANG} - ${MKDIR} ${PREFIX}/share/doc/${lang:C,^C$,,:C,ja_.*,ja/,}timidity++ - cd ${WRKSRC}/doc/${lang} && ${INSTALL_DATA} ${DOCFILES} \ - ${PREFIX}/share/doc/${lang:C,^C$,,:C,ja_.*,ja/,}timidity++/ -.endfor -.endif -.if exists(${PKGMESSAGE}) - @${CAT} ${PKGMESSAGE} -.endif + (cd ${WRKSRC}/doc/ja_JP.eucJP && ${INSTALL_MAN} timidity.1 \ + ${STAGEDIR}${MANPREFIX}/man/ja/man1) + (cd ${WRKSRC}/doc/ja_JP.eucJP && ${INSTALL_MAN} timidity.cfg.5 \ + ${STAGEDIR}${MANPREFIX}/man/ja/man5) + @${MKDIR} ${STAGEDIR}${DOCSDIR} + (cd ${WRKSRC}/doc/C && ${INSTALL_DATA} ${DOCFILES} \ + ${STAGEDIR}${DOCSDIR}) + @${MKDIR} ${STAGEDIR}${PREFIX}/share/doc/ja/${PORTNAME} + (cd ${WRKSRC}/doc/ja_JP.eucJP && ${INSTALL_DATA} ${DOCFILES} \ + ${STAGEDIR}${PREFIX}/share/doc/ja/${PORTNAME}) -.include +.endif # PKGNAMESUFFIX +.include diff -urN /usr/ports/audio/timidity++/Makefile.interface audio/timidity++/Makefile.interface --- /usr/ports/audio/timidity++/Makefile.interface 2014-01-23 03:57:03.000000000 +0900 +++ audio/timidity++/Makefile.interface 2014-02-23 00:00:00.000000000 +0900 @@ -1,12 +1,14 @@ -#$FreeBSD: head/audio/timidity++/Makefile.interface 340722 2014-01-22 17:00:46Z mat $ +#$FreeBSD: head/audio/timidity++/Makefile.interface 322579 2013-07-09 21:20:28Z bapt $ # Shared by timidity++ interface ports -RUN_DEPENDS+= ${LOCALBASE}/bin/timidity:${PORTSDIR}/audio/timidity++ +BUILD_DEPENDS+= libarc>0:${PORTSDIR}/archivers/libarc +RUN_DEPENDS+= timidity++>0:${PORTSDIR}/audio/timidity++ -SLAVEDIRS= audio/timidity++-gtk audio/timidity++-motif \ - audio/timidity++-slang audio/timidity++-tcltk \ - audio/timidity++-xaw audio/timidity++-xskin \ +SLAVEDIRS= audio/timidity++-emacs audio/timidity++-gtk \ + audio/timidity++-motif audio/timidity++-slang \ + audio/timidity++-tcltk audio/timidity++-xaw \ + audio/timidity++-xskin \ japanese/timidity++-slang japanese/timidity++-tcltk INTERFACE= ${PKGNAMESUFFIX:S/^-//} @@ -14,34 +16,35 @@ DESCR= ${.CURDIR}/pkg-descr .if exists(${.CURDIR}/pkg-plist) -PLIST= ${.CURDIR}/pkg-plist +PLIST= ${.CURDIR}/pkg-plist .else PLIST= ${NONEXISTENT} .endif + .if exists(${.CURDIR}/pkg-message) PKGMESSAGE= ${.CURDIR}/pkg-message .else PKGMESSAGE= ${NONEXISTENT} .endif -CONFIGURE_ENV+= SHLD="${CC} -shared ${LDFLAGS}" -LDFLAGS+= -export-dynamic - -CONFIGURE_ARGS+=--enable-dynamic=${INTERFACE} - BUILD_WRKSRC= ${WRKSRC}/interface INSTALL_WRKSRC= ${WRKSRC}/interface +CONFIGURE_ARGS+=--enable-dynamic=${INTERFACE} + # interface section .if ${INTERFACE} == "emacs" -ELISPDIR= share/emacs/site-lisp +CONFIGURE_ARGS+=--with-lispdir=${PREFIX}/share/emacs/site-lisp .endif .if ${INTERFACE} == "gtk" LINK= gtkmidi -USE_GNOME= gtk12 +USES+= pkgconfig +USE_GNOME= gtk20 + +DESKTOP_ENTRIES="GtkMidi" "" "" "${LINK}" "GTK;AudioVideo;Audio;Midi;" "" .endif .if ${INTERFACE} == "motif" @@ -49,52 +52,64 @@ USES+= motif -CONFIGURE_ENV+= MOTIFLIB="${MOTIFLIB}" +DESKTOP_ENTRIES="XmMidi" "" "" "${LINK}" "Motif;AudioVideo;Audio;Midi;" "" .endif .if ${INTERFACE} == "slang" -CONFIGURE_ARGS+=--with-includes=${LOCALBASE}/include \ +.if defined(JAPANESE) +LIB_DEPENDS+= libslang.so:${PORTSDIR}/japanese/libslang +.else +LIB_DEPENDS+= libslang.so:${PORTSDIR}/devel/libslang2 +.endif + +CONFIGURE_ENV+= LIBS="-L${LOCALBASE}/lib" +CONFIGURE_ARGS+=\ + --with-includes=${LOCALBASE}/include \ --with-libraries=${LOCALBASE}/lib \ --enable-ncurses - -LDFLAGS+= -L${LOCALBASE}/lib -LIB_DEPENDS+= slang.2:${PORTSDIR}/japanese/libslang .endif .if ${INTERFACE} == "tcltk" LINK= tkmidi -USE_XORG= x11 - -DOCFILES= README.tk -DOCLANG= C ja_JP.eucJP - .if defined(JAPANESE) -LIB_DEPENDS+= tk80jp.1:${PORTSDIR}/japanese/tk80 - -CONFIGURE_ARGS+= --with-tcl-includes=${LOCALBASE}/include/tcl8.0jp \ +LIB_DEPENDS+= libtk80jp.so:${PORTSDIR}/japanese/tk80 +CONFIGURE_ARGS+=\ + --with-tcl-includes=${LOCALBASE}/include/tcl8.0jp \ --with-tk-includes=${LOCALBASE}/include/tk8.0jp \ - --with-tcl-libs=${LOCALBASE}/lib --with-tk-libs=${LOCALBASE}/lib -CONFIGURE_ENV+= WISH=wish8.0jp + --with-tcl-libs=${LOCALBASE}/lib \ + --with-tk-libs=${LOCALBASE}/lib +WISH= ${LOCALBASE}/bin/wish8.0jp .else -LIB_DEPENDS+= tk84:${PORTSDIR}/x11-toolkits/tk84 - -CONFIGURE_ARGS+= --with-tcl-includes=${LOCALBASE}/include/tcl8.4 \ - --with-tk-includes=${LOCALBASE}/include/tk8.4 \ - --with-tcl-libs=${LOCALBASE}/lib --with-tk-libs=${LOCALBASE}/lib -CONFIGURE_ENV+= WISH=wish8.4 +USES+= tk +CONFIGURE_ARGS+=\ + --with-tcl-includes=${TCL_INCLUDEDIR} \ + --with-tk-includes=${TK_INCLUDEDIR} \ + --with-tcl-libs=${LOCALBASE}/lib \ + --with-tk-libs=${LOCALBASE}/lib .endif + +USES+= shebangfix +SHEBANG_FILES= interface/tkmidity.ptcl interface/tkpanel.tcl +SHEBANG_LANG= wish +wish_OLD_CMD= /usr/bin/wish +wish_CMD= ${WISH} +USE_XORG= x11 +CONFIGURE_ENV+= WISH="${WISH}" + +LDFLAGS+= -L${LOCALBASE}/lib -lX11 + +DESKTOP_ENTRIES="TkMidi" "" "" "${LINK}" "AudioVideo;Audio;Midi;" "" .endif .if ${INTERFACE} == "xaw" LINK= xawmidi -LIB_DEPENDS+= Xaw3d:${PORTSDIR}/x11-toolkits/Xaw3d -USE_XORG= xaw +LIB_DEPENDS+= libXaw3d.so:${PORTSDIR}/x11-toolkits/Xaw3d -DOCFILES= README.xaw -DOCLANG= C ja_JP.eucJP +USE_XORG= x11 xext xmu xt sm ice xpm +DESKTOP_ENTRIES="XawMidi" "" "" "${LINK}" "AudioVideo;Audio;Midi;" "" .endif .if ${INTERFACE} == "xskin" @@ -102,24 +117,64 @@ USE_XORG= x11 -DOCFILES= README.xskin -DOCLANG= C ja_JP.eucJP +DESKTOP_ENTRIES="XSkinMidi" "" "" "${LINK}" "AudioVideo;Audio;Midi;" "" .endif -.include +post-extract: + @${RM} -f ${WRKSRC}/libarc/*.h + @${RM} -f ${WRKSRC}/utils/mblock.h -post-install:: -.if ${INTERFACE} == "emacs" - @${MKDIR} ${PREFIX}/${ELISPDIR} - ${INSTALL_DATA} ${WRKSRC}/interface/timidity.el ${PREFIX}/${ELISPDIR} +post-patch: +.if ${INTERFACE} == "slang" + @${REINPLACE_CMD} -e \ + 's|"-lslang"|"-lslang $$LIBS"|' ${WRKSRC}/configure +.endif +.if ${INTERFACE} == "tcltk" +.if defined(JAPANESE) + @${REINPLACE_CMD} -e \ + 's|in tcl.*;|in tcl80jp;| ; \ + s|in tk.*;|in tk80jp;|' ${WRKSRC}/configure +.else + @${REINPLACE_CMD} -e \ + 's|in tcl.*;|in tcl${TCL_VER:S|.||};| ; \ + s|in tk.*;|in tk${TK_VER:S|.||};|' ${WRKSRC}/configure +.endif +.endif + +post-install: +.if ${INTERFACE} == "tcltk" + @${MKDIR} ${STAGEDIR}${DOCSDIR} + (cd ${WRKSRC}/doc/C && ${INSTALL_DATA} README.tk \ + ${STAGEDIR}${DOCSDIR}) + @${MKDIR} ${STAGEDIR}${PREFIX}/share/doc/ja/${PORTNAME} + (cd ${WRKSRC}/doc/ja_JP.eucJP && ${INSTALL_DATA} README.tk \ + ${STAGEDIR}${PREFIX}/share/doc/ja/${PORTNAME}) .endif +# .if ${INTERFACE} == "xaw" - @${MKDIR} ${PREFIX}/lib/X11/${EUCJP_LOCALE}/app-defaults - ${INSTALL_DATA} ${WRKSRC}/TiMidity.ad \ - ${PREFIX}/lib/X11/app-defaults/TiMidity - ${INSTALL_DATA} ${WRKSRC}/TiMidity-uj.ad \ - ${PREFIX}/lib/X11/${EUCJP_LOCALE}/app-defaults/TiMidity + @${MKDIR} ${STAGEDIR}${PREFIX}/lib/X11/app-defaults + cd ${INSTALL_WRKSRC} && ${INSTALL_DATA} TiMidity.ad \ + ${STAGEDIR}${PREFIX}/lib/X11/app-defaults/TiMidity + @${MKDIR} ${STAGEDIR}${PREFIX}/lib/X11/${EUCJP_LOCALE}/app-defaults + cd ${INSTALL_WRKSRC} && ${INSTALL_DATA} TiMidity-uj.ad \ + ${STAGEDIR}${PREFIX}/lib/X11/${EUCJP_LOCALE}/app-defaults/TiMidity + @${MKDIR} ${STAGEDIR}${DOCSDIR} + (cd ${WRKSRC}/doc/C && ${INSTALL_DATA} README.xaw \ + ${STAGEDIR}${DOCSDIR}) + @${MKDIR} ${STAGEDIR}${PREFIX}/share/doc/ja/${PORTNAME} + (cd ${WRKSRC}/doc/ja_JP.eucJP && ${INSTALL_DATA} README.xaw \ + ${STAGEDIR}${PREFIX}/share/doc/ja/${PORTNAME}) +.endif +# +.if ${INTERFACE} == "xskin" + @${MKDIR} ${STAGEDIR}${DOCSDIR} + (cd ${WRKSRC}/doc/C && ${INSTALL_DATA} README.xskin \ + ${STAGEDIR}${DOCSDIR}) + @${MKDIR} ${STAGEDIR}${PREFIX}/share/doc/ja/${PORTNAME} + (cd ${WRKSRC}/doc/ja_JP.eucJP && ${INSTALL_DATA} README.xskin \ + ${STAGEDIR}${PREFIX}/share/doc/ja/${PORTNAME}) .endif +# .if defined(LINK) - ${LN} -sf ${PREFIX}/bin/timidity ${PREFIX}/bin/${LINK} + ${LN} -sf timidity ${STAGEDIR}${PREFIX}/bin/${LINK} .endif diff -urN /usr/ports/audio/timidity++/distinfo audio/timidity++/distinfo --- /usr/ports/audio/timidity++/distinfo 2014-01-23 03:57:03.000000000 +0900 +++ audio/timidity++/distinfo 2014-02-23 00:00:00.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (TiMidity++-2.13.2.tar.bz2) = 0a8524b789b57eaf944c3d9bce32c21a4e893016b22a02a24cd0a4c6afee7260 -SIZE (TiMidity++-2.13.2.tar.bz2) = 1581230 +SHA256 (TiMidity++-2.14.0.tar.bz2) = f97fb643f049e9c2e5ef5b034ea9eeb582f0175dce37bc5df843cc85090f6476 +SIZE (TiMidity++-2.14.0.tar.bz2) = 1611424 diff -urN /usr/ports/audio/timidity++/files/patch-Makefile.in audio/timidity++/files/patch-Makefile.in --- /usr/ports/audio/timidity++/files/patch-Makefile.in 2014-01-23 03:57:03.000000000 +0900 +++ audio/timidity++/files/patch-Makefile.in 2014-02-23 00:00:00.000000000 +0900 @@ -1,37 +1,10 @@ -http://timidity-docs.sourceforge.jp/cgi-bin/kagemai-en/guest.cgi?project=timidity-bugs-en&action=view_report&id=56 - -Plus another patch... - ---- timidity/Makefile.in Sun Oct 3 08:39:54 2004 -+++ timidity/Makefile.in Thu Sep 22 03:11:09 2005 -@@ -478,5 +477,5 @@ - @BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(SYSEXTRAS:.c=.$(OBJEXT)) \ - @BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/interface/libinterface.a \ --@BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/libarc/libarc.a \ -+@BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ -larc \ - @BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/libunimod/libunimod.a \ - @BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/utils/libutils.a \ -@@ -509,5 +507,4 @@ - @BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@timidity_dep = $(SYSEXTRAS:.c=.$(OBJEXT)) \ - @BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/interface/libinterface.a \ --@BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/libarc/libarc.a \ - @BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/libunimod/libunimod.a \ - @BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/utils/libutils.a \ -@@ -585,5 +583,4 @@ - @BORLANDC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(SYSEXTRAS:.c=.$(OBJEXT)) \ - @BORLANDC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/interface/libinterface.a \ --@BORLANDC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/libarc/libarc.a \ - @BORLANDC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/libunimod/libunimod.a \ - @BORLANDC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/utils/libutils.a -@@ -576,9 +576,8 @@ - p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ - if test -f $$p \ - ; then \ -- f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ -- echo " $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$f"; \ -- $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$f || exit 1; \ -+ echo " $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$p"; \ -+ $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$p || exit 1; \ - else :; fi; \ - done - +--- Makefile.in.orig 2012-06-28 23:14:25.000000000 +0900 ++++ Makefile.in 2012-10-01 02:41:14.000000000 +0900 +@@ -284,7 +284,6 @@ + SUBDIRS = \ + autoconf \ + utils \ +- libarc \ + libunimod \ + interface \ + timidity \ diff -urN /usr/ports/audio/timidity++/files/patch-configure audio/timidity++/files/patch-configure --- /usr/ports/audio/timidity++/files/patch-configure 2014-01-23 03:57:03.000000000 +0900 +++ audio/timidity++/files/patch-configure 1970-01-01 09:00:00.000000000 +0900 @@ -1,33 +0,0 @@ -http://timidity-docs.sourceforge.jp/cgi-bin/kagemai-en/guest.cgi?project=timidity-bugs-en&action=view_report&id=58 - ---- configure Sun Oct 3 08:39:51 2004 -+++ configure Thu Sep 22 02:49:01 2005 -@@ -16605,5 +16605,5 @@ - tcl_lib= - tk_lib= -- for l in tcl tcl8.4 tcl8.3 tcl8.0jp tcl7.6jp tcl80jp tcl76jp tcl8.0 tcl7.6 tcl80 tcl76; do -+ for l in tcl84 tcl83 tcl8.0jp tcl7.6jp tcl80jp tcl76jp tcl8.0 tcl7.6 tcl80 tcl76; do - case "x$tcl_lib" in x) as_ac_Lib=`echo "ac_cv_lib_$l''_Tcl_Init" | $as_tr_sh` - echo "$as_me:$LINENO: checking for Tcl_Init in -l$l" >&5 -@@ -16677,5 +16677,5 @@ - done - LIBS="$LIBS $tcl_lib" -- for l in tk tk8.4 tk8.3 tk8.0jp tk4.2jp tk80jp tk42jp tk8.0 tk4.2 tk80 tk42; do -+ for l in tk tk84 tk83 tk8.0jp tk4.2jp tk80jp tk42jp tk8.0 tk4.2 tk80 tk42; do - case "x$tk_lib" in x) as_ac_Lib=`echo "ac_cv_lib_$l''_Tk_Init" | $as_tr_sh` - echo "$as_me:$LINENO: checking for Tk_Init in -l$l" >&5 -@@ -19522,5 +19522,5 @@ - - -- ac_config_files="$ac_config_files Makefile autoconf/Makefile common.makefile configs/Makefile doc/Makefile doc/C/Makefile doc/ja_JP.eucJP/Makefile interface/Makefile interface/motif_bitmaps/Makefile interface/bitmaps/Makefile interface/pixmaps/Makefile libarc/Makefile libunimod/Makefile timidity/Makefile utils/Makefile script/M akefile TiMidity.ad TiMidity-uj.ad" -+ ac_config_files="$ac_config_files Makefile autoconf/Makefile common.makefile configs/Makefile doc/Makefile doc/C/Makefile doc/ja_JP.eucJP/Makefile interface/Makefile interface/motif_bitmaps/Makefile interface/bitmaps/Makefile interface/pixmaps/Makefile libunimod/Makefile timidity/Makefile utils/Makefile script/Makefile TiMidity .ad TiMidity-uj.ad" - - cat >confcache <<\_ACEOF ---- Makefile.in Wed Sep 22 13:23:32 2004 -+++ Makefile.in Thu Sep 22 02:49:17 2005 -@@ -268,5 +268,4 @@ - autoconf \ - utils \ -- libarc \ - libunimod \ - interface \ diff -urN /usr/ports/audio/timidity++/files/patch-dynamic audio/timidity++/files/patch-dynamic --- /usr/ports/audio/timidity++/files/patch-dynamic 2014-01-23 03:57:03.000000000 +0900 +++ audio/timidity++/files/patch-dynamic 1970-01-01 09:00:00.000000000 +0900 @@ -1,230 +0,0 @@ -http://timidity-docs.sourceforge.jp/cgi-bin/kagemai-en/guest.cgi?project=timidity-bugs-en&action=view_report&id=54 - ---- interface/Makefile.in Sun Oct 3 08:39:54 2004 -+++ interface/Makefile.in Thu Sep 22 00:01:34 2005 -@@ -1240,5 +1240,5 @@ - @NEEDDLOPEN_TRUE@install.dynamics: $(dynamic_targets) - @NEEDDLOPEN_TRUE@ test -d $(DESTDIR)$(SHLIB_DIR) || mkdir -p $(DESTDIR)$(SHLIB_DIR) --@NEEDDLOPEN_TRUE@ for f in $(dynamic_targets) ''; do case ".$$f" in .);; *) $(INSTALL_PROGRAM) $$f $(DESTDIR)$(SHLIB_DIR) ; $(INSTALL_DATA) $${f%%$(so)}txt $(DESTDIR)$(SHLIB_DIR);; esac; done -+@NEEDDLOPEN_TRUE@ for f in $(dynamic_targets) ''; do case ".$$f" in .);; *) $(INSTALL_PROGRAM) $$f $(DESTDIR)$(SHLIB_DIR);; esac; done - - @NEEDDLOPEN_TRUE@.c.$(so): ---- timidity/timidity.c Sat Oct 2 06:46:17 2004 -+++ timidity/timidity.c Thu Sep 22 02:32:24 2005 -@@ -386,5 +386,5 @@ - static inline int parse_opt_c(char *); - static inline int parse_opt_D(const char *); --static inline int parse_opt_d(const char *); -+static inline int parse_opt_d(char *); - static inline int parse_opt_E(char *); - static inline int parse_opt_mod_wheel(const char *); -@@ -418,5 +418,5 @@ - #ifdef IA_DYNAMIC - static inline void list_dyna_interface(FILE *, char *, char *); --static inline char *dynamic_interface_info(int); -+static inline const char *dynamic_interface_info(int); - char *dynamic_interface_module(int); - #endif -@@ -501,4 +501,5 @@ - #ifdef IA_DYNAMIC - MAIN_INTERFACE char dynamic_interface_id; -+ControlMode *ctl_load(int id); - #endif /* IA_DYNAMIC */ - -@@ -2929,11 +2930,9 @@ - } - --static inline int parse_opt_d(const char *arg) -+static inline int parse_opt_d(char *arg) - { - /* dynamic lib root */ - #ifdef IA_DYNAMIC -- if (dynamic_lib_root) -- free(dynamic_lib_root); -- dynamic_lib_root = safe_strdup(arg); -+ dynamic_lib_root = arg; - return 0; - #else -@@ -3935,5 +3934,6 @@ - { - URL url; -- char fname[BUFSIZ], *info; -+ char fname[63]; -+ const char *info; - int id; - -@@ -3946,6 +3946,5 @@ - continue; - mark[id] = 1; -- if ((info = dynamic_interface_info(id)) == NULL) -- info = dynamic_interface_module(id); -+ info = dynamic_interface_info(id); - if (info != NULL) - fprintf(fp, " -i%c %s" NLS, id, info); -@@ -3954,39 +3953,27 @@ - } - --static inline char *dynamic_interface_info(int id) -+static inline const char * -+dynamic_interface_info(int id) - { -- static char libinfo[MAXPATHLEN]; -- int fd, n; -- char *nl; -- -- sprintf(libinfo, "%s" PATH_STRING "interface_%c.txt", -- dynamic_lib_root, id); -- if ((fd = open(libinfo, 0)) < 0) -- return NULL; -- n = read(fd, libinfo, sizeof(libinfo) - 1); -- close(fd); -- if (n <= 0) -- return NULL; -- libinfo[n] = '\0'; -- if ((nl = strchr(libinfo, '\n')) == libinfo) -+ ControlMode *actl; -+ -+ actl = ctl_load(id); -+ if (actl == NULL) - return NULL; -- if (nl != NULL) { -- *nl = '\0'; -- if (*(nl - 1) == '\r') -- *(nl - 1) = '\0'; -- } -- return libinfo; -+ -+ return actl->id_name; - } - --char *dynamic_interface_module(int id) -+char * -+dynamic_interface_module(int id) - { -- static char shared_library[MAXPATHLEN]; -- int fd; -+ char *shared_library; - -+ shared_library = malloc(strlen(dynamic_lib_root) + -+ sizeof(PATH_STRING) - 1 + sizeof("interface_X") - 1 + -+ sizeof(SHARED_LIB_EXT) - 1 + 1); -- sprintf(shared_library, "%s" PATH_STRING "interface_%c%s", -- dynamic_lib_root, id, SHARED_LIB_EXT); -+ sprintf(shared_library, "%s" PATH_STRING "interface_%c" SHARED_LIB_EXT, -+ dynamic_lib_root, id); -- if ((fd = open(shared_library, 0)) < 0) -- return NULL; -- close(fd); -+ - return shared_library; - } -@@ -4012,5 +3996,5 @@ - #ifdef IA_DYNAMIC - if (cmp->id_character == dynamic_interface_id -- && dynamic_interface_module(*arg)) { -+ && ctl_load(*arg)) { - /* Dynamic interface loader */ - found = 1; ---- interface/dynamic_c.c Tue Jan 15 05:53:20 2002 -+++ interface/dynamic_c.c Thu Sep 22 01:17:11 2005 -@@ -80,40 +80,66 @@ - } - --static int ctl_open(int using_stdin, int using_stdout) -+ControlMode * -+ctl_load(int id) - { -- ControlMode *(* inferface_loader)(void); -- char *path; -- char buff[256]; -- int id; -- -- if(dynamic_control_mode.opened) -- return 0; -- dynamic_control_mode.opened = 1; -- -- id = dynamic_control_mode.id_character; -- path = dynamic_interface_module(id); -- if(path == NULL) -- { -- fprintf(stderr, "FATAL ERROR: dynamic_c.c: ctl_open()\n"); -- exit(1); -- } -- -- if((libhandle = dl_load_file(path)) == NULL) -- return -1; -- -- sprintf(buff, "interface_%c_loader", id); -- if((inferface_loader = (ControlMode *(*)(void)) -- dl_find_symbol(libhandle, buff)) == NULL) -- return -1; -- -- ctl = inferface_loader(); -- -- ctl->verbosity = dynamic_control_mode.verbosity; -- ctl->trace_playing = dynamic_control_mode.trace_playing; -- ctl->flags = dynamic_control_mode.flags; -- ctl_close_hook = ctl->close; -- ctl->close = dynamic_control_mode.close; /* ctl_close() */ -+ static int last_id; -+ static ControlMode *last_ctl; -+ ControlMode *(* inferface_loader)(void); -+ char *path; -+ char buff[sizeof("interface_%_loader")]; -+ -+ if (last_id == id) -+ return last_ctl; /* success */ -+ if (last_id) { -+ dl_free(libhandle); -+ last_ctl = NULL; -+ } -+ -+ last_id = id; -+ path = dynamic_interface_module(id); -+ if(path == NULL) { -+ fprintf(stderr, "FATAL ERROR: dynamic_c.c: ctl_load()\n"); -+ exit(1); -+ } -+ -+ libhandle = dl_load_file(path); -+ free(path); -+ if (libhandle == NULL) -+ return NULL; -+ -+ sprintf(buff, "interface_%c_loader", id); -+ if((inferface_loader = (ControlMode *(*)(void)) -+ dl_find_symbol(libhandle, buff)) == NULL) { -+ dl_free(libhandle); -+ return NULL; -+ } - -- return ctl->open(using_stdin, using_stdout); -+ last_ctl = inferface_loader(); -+ -+ return last_ctl; -+} -+ -+static int -+ctl_open(int using_stdin, int using_stdout) -+{ -+ int id; -+ ControlMode *newctl; -+ -+ if(dynamic_control_mode.opened) -+ return 0; -+ dynamic_control_mode.opened = 1; -+ -+ id = dynamic_control_mode.id_character; -+ newctl = ctl_load(id); -+ if (newctl == NULL) -+ return 0; -+ -+ ctl = newctl; -+ ctl->verbosity = dynamic_control_mode.verbosity; -+ ctl->trace_playing = dynamic_control_mode.trace_playing; -+ ctl->flags = dynamic_control_mode.flags; -+ ctl_close_hook = ctl->close; -+ ctl->close = dynamic_control_mode.close; /* ctl_close() */ -+ return ctl->open(using_stdin, using_stdout); - } - diff -urN /usr/ports/audio/timidity++/files/patch-interface__Makefile.in audio/timidity++/files/patch-interface__Makefile.in --- /usr/ports/audio/timidity++/files/patch-interface__Makefile.in 1970-01-01 09:00:00.000000000 +0900 +++ audio/timidity++/files/patch-interface__Makefile.in 2014-02-23 00:00:00.000000000 +0900 @@ -0,0 +1,10 @@ +--- interface/Makefile.in.orig 2012-06-28 23:14:25.000000000 +0900 ++++ interface/Makefile.in 2012-10-13 00:59:03.000000000 +0900 +@@ -340,7 +340,6 @@ + + INCLUDES = \ + -I$(top_srcdir)/timidity \ +- -I$(top_srcdir)/libarc \ + -I$(top_srcdir)/utils + + diff -urN /usr/ports/audio/timidity++/files/patch-interface__tk_c.c audio/timidity++/files/patch-interface__tk_c.c --- /usr/ports/audio/timidity++/files/patch-interface__tk_c.c 1970-01-01 09:00:00.000000000 +0900 +++ audio/timidity++/files/patch-interface__tk_c.c 2014-02-23 00:00:00.000000000 +0900 @@ -0,0 +1,11 @@ +--- interface/tk_c.c.orig ++++ interface/tk_c.c +@@ -913,7 +913,7 @@ + vsnprintf(buf, sizeof(buf), fmt, ap); + Tcl_Eval(my_interp, buf); + va_end(ap); +- return my_interp->result; ++ return Tcl_GetStringResult(my_interp); + } + + static const char *v_get2(const char *v1, const char *v2) diff -urN /usr/ports/audio/timidity++/files/patch-playmidi audio/timidity++/files/patch-playmidi --- /usr/ports/audio/timidity++/files/patch-playmidi 2014-01-23 03:57:03.000000000 +0900 +++ audio/timidity++/files/patch-playmidi 1970-01-01 09:00:00.000000000 +0900 @@ -1,11 +0,0 @@ -http://timidity-docs.sourceforge.jp/cgi-bin/kagemai-en/guest.cgi?project=timidity-bugs-en&action=view_report&id=55 - ---- timidity/playmidi.c Sat Aug 28 01:38:18 2004 -+++ timidity/playmidi.c Sat Sep 10 17:07:45 2005 -@@ -4160,5 +4162,5 @@ - case 0x20: /* Delay Send Level to Reverb */ - ctl->cmsg(CMSG_INFO,VERB_NOISY,"Delay Send Level to Reverb (%d)",val); -- if (delay_status_gs.send_reverb = val) { -+ if (delay_status_gs.send_reverb != val) { - delay_status_gs.send_reverb = val; - recompute_delay_status_gs(); diff -urN /usr/ports/audio/timidity++/files/patch-timidity__Makefile.in audio/timidity++/files/patch-timidity__Makefile.in --- /usr/ports/audio/timidity++/files/patch-timidity__Makefile.in 1970-01-01 09:00:00.000000000 +0900 +++ audio/timidity++/files/patch-timidity__Makefile.in 2014-02-23 00:00:00.000000000 +0900 @@ -0,0 +1,88 @@ +--- timidity/Makefile.in.orig 2012-06-28 23:14:25.000000000 +0900 ++++ timidity/Makefile.in 2012-10-01 03:09:08.000000000 +0900 +@@ -336,7 +336,6 @@ + + INCLUDES = \ + -I$(top_srcdir) \ +- -I$(top_srcdir)/libarc \ + -I$(top_srcdir)/libunimod \ + -I$(top_srcdir)/interface \ + -I$(top_srcdir)/utils \ +@@ -497,7 +496,7 @@ + @VCPP_TRUE@timidity_LDADD = \ + @VCPP_TRUE@ $(SYSEXTRAS:.c=.$(OBJEXT)) \ + @VCPP_TRUE@ $(top_builddir)/interface/interface.lib \ +-@VCPP_TRUE@ $(top_builddir)/libarc/arc.lib \ ++@VCPP_TRUE@ -larc \ + @VCPP_TRUE@ $(top_builddir)/libunimod/unimod.lib \ + @VCPP_TRUE@ $(top_builddir)/utils/utils.lib \ + @VCPP_TRUE@ $(W32GUI_RES) +@@ -528,7 +527,7 @@ + @BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@timidity_LDADD = \ + @BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(SYSEXTRAS:.c=.$(OBJEXT)) \ + @BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/interface/libinterface.a \ +-@BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/libarc/libarc.a \ ++@BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ -larc \ + @BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/libunimod/libunimod.a \ + @BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/utils/libutils.a \ + @BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(W32GUI_RES) +@@ -558,7 +557,6 @@ + + @BORLANDC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@timidity_dep = $(SYSEXTRAS:.c=.$(OBJEXT)) \ + @BORLANDC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@ $(top_builddir)/interface/interface.lib \ +-@BORLANDC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@ $(top_builddir)/libarc/arc.lib \ + @BORLANDC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@ $(top_builddir)/libunimod/unimod.lib \ + @BORLANDC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@ $(top_builddir)/utils/utils.lib \ + @BORLANDC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@ $(W32GUI_RES) +@@ -573,7 +571,6 @@ + + @BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@timidity_dep = $(SYSEXTRAS:.c=.$(OBJEXT)) \ + @BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/interface/libinterface.a \ +-@BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/libarc/libarc.a \ + @BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/libunimod/libunimod.a \ + @BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/utils/libutils.a \ + @BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(W32GUI_RES) +@@ -648,7 +645,6 @@ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@timidity_DEPENDENCIES = \ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(SYSEXTRAS:.c=.$(OBJEXT)) \ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/interface/libinterface.a \ +-@BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/libarc/libarc.a \ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/libunimod/libunimod.a \ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/utils/libutils.a + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@timidity_DEPENDENCIES = \ +@@ -695,7 +691,6 @@ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@timidity_DEPENDENCIES = \ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(SYSEXTRAS:.c=.$(OBJEXT)) \ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/interface/libinterface.a \ +-@BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/libarc/libarc.a \ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/libunimod/libunimod.a \ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/utils/libutils.a \ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/interface/w32g_res.res +@@ -749,7 +744,6 @@ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@timidity_DEPENDENCIES = \ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(SYSEXTRAS:.c=.$(OBJEXT)) \ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/interface/libinterface.a \ +-@BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/libarc/libarc.a \ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/libunimod/libunimod.a \ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/utils/libutils.a \ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/interface/w32g_res.res +@@ -803,7 +797,6 @@ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@timidity_DEPENDENCIES = \ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(SYSEXTRAS:.c=.$(OBJEXT)) \ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/interface/libinterface.a \ +-@BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/libarc/libarc.a \ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/libunimod/libunimod.a \ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/utils/libutils.a \ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/interface/w32g_res.res +@@ -1538,9 +1531,8 @@ + p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ + if test -f $$p \ + ; then \ +- f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ +- echo " $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$f"; \ +- $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$f || exit 1; \ ++ echo " $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$p"; \ ++ $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$p || exit 1; \ + else :; fi; \ + done + diff -urN /usr/ports/audio/timidity++/files/patch-x_sherry.c audio/timidity++/files/patch-x_sherry.c --- /usr/ports/audio/timidity++/files/patch-x_sherry.c 2014-01-23 03:57:03.000000000 +0900 +++ audio/timidity++/files/patch-x_sherry.c 1970-01-01 09:00:00.000000000 +0900 @@ -1,28 +0,0 @@ ---- interface/x_sherry.c.orig 2002-07-14 23:19:32.000000000 +0200 -+++ interface/x_sherry.c 2012-04-27 13:12:58.000000000 +0200 -@@ -34,6 +34,7 @@ - #endif - #include - #include -+#include - - #include "timidity.h" - #include "common.h" -@@ -909,7 +910,7 @@ - { - if(png_get_valid(pngPtr, infoPtr, PNG_INFO_hIST)) - png_get_hIST(pngPtr, infoPtr, &hist); -- png_set_dither(pngPtr, palette, -+ png_set_quantize(pngPtr, palette, - numPalette, MAX_SCREEN_COLORS, hist, 1); - } - } -@@ -934,7 +935,7 @@ - } - } - } -- png_set_dither(pngPtr, stdColorCube, -+ png_set_quantize(pngPtr, stdColorCube, - 6*7*6, MAX_SCREEN_COLORS, - NULL, 1); - /*???*/ diff -urN /usr/ports/audio/timidity++/files/patch-xaw_i.c audio/timidity++/files/patch-xaw_i.c --- /usr/ports/audio/timidity++/files/patch-xaw_i.c 2014-01-23 03:57:03.000000000 +0900 +++ audio/timidity++/files/patch-xaw_i.c 1970-01-01 09:00:00.000000000 +0900 @@ -1,38 +0,0 @@ ---- interface/xaw_i.c.orig 2004-09-27 08:40:14.000000000 +0900 -+++ interface/xaw_i.c 2007-07-04 01:31:24.000000000 +0900 -@@ -261,7 +261,7 @@ - String bitmapdir = XAW_BITMAP_DIR; - Boolean arrangetitle,savelist; - static char **current_flist = NULL; --static int voices = 0, last_voice = 0, voices_num_width; -+static int xaw_i_voices = 0, last_voice = 0, voices_num_width; - static int maxentry_on_a_menu = 0,submenu_n = 0; - #define OPTIONS_WINDOW 1 - #define FLIST_WINDOW 2 -@@ -1329,7 +1329,7 @@ - c= *(local_buf+1); - n= atoi(local_buf+2); - if(c == 'L') -- voices = n; -+ xaw_i_voices = n; - else - last_voice = n; - if(IsTracePlaying()) drawVoices(); -@@ -2070,7 +2070,7 @@ - XSetForeground(disp, gct, tracecolor); - XFillRectangle(disp,XtWindow(trace),gct,voices_num_width +4, - MAX_XAW_MIDI_CHANNELS*BAR_SPACE+TRACEV_OFS+1,VOICENUM_WIDTH,TRACE_FOOT); -- sprintf(local_buf, "%3d/%d", last_voice, voices); -+ sprintf(local_buf, "%3d/%d", last_voice, xaw_i_voices); - XSetForeground(disp, gct, capcolor); - XDrawString(disp, XtWindow(trace),gct,voices_num_width+6, - MAX_XAW_MIDI_CHANNELS*BAR_SPACE+TRACEV_OFS+16,local_buf,strlen(local_buf)); -@@ -2326,7 +2326,7 @@ - if (c == LF || c == EOF || i > SSIZE) break; - *p++ = c; - } -- *p = (char)NULL; -+ *p = '\0'; - if (0 != strncasecmp(s, "set ", 4)) continue; - switch (configcmp(s+4, &k)) { - case S_RepeatPlay: diff -urN /usr/ports/audio/timidity++/pkg-descr audio/timidity++/pkg-descr --- /usr/ports/audio/timidity++/pkg-descr 2014-01-23 03:57:03.000000000 +0900 +++ audio/timidity++/pkg-descr 2014-02-23 00:00:00.000000000 +0900 @@ -9,4 +9,3 @@ Now, Masanao Izumo and many hackers are developing "TiMidity++". WWW: http://timidity.sourceforge.net/ -WWW: http://www.linet.gr.jp/~tamuki/ diff -urN /usr/ports/audio/timidity++/pkg-plist audio/timidity++/pkg-plist --- /usr/ports/audio/timidity++/pkg-plist 2014-01-23 03:57:03.000000000 +0900 +++ audio/timidity++/pkg-plist 2014-02-23 00:00:00.000000000 +0900 @@ -1,16 +1,20 @@ bin/timidity -%%PORTDOCS%%%%DOCSDIR%%/README.alsaseq -%%PORTDOCS%%%%DOCSDIR%%/README.dl -%%PORTDOCS%%%%DOCSDIR%%/README.m2m -%%PORTDOCS%%%%DOCSDIR%%/README.mts -%%PORTDOCS%%%%DOCSDIR%%/README.sf +man/ja/man1/timidity.1.gz +man/ja/man5/timidity.cfg.5.gz +man/man1/timidity.1.gz +man/man5/timidity.cfg.5.gz %%PORTDOCS%%share/doc/ja/timidity++/README.alsaseq %%PORTDOCS%%share/doc/ja/timidity++/README.dl %%PORTDOCS%%share/doc/ja/timidity++/README.m2m %%PORTDOCS%%share/doc/ja/timidity++/README.mts %%PORTDOCS%%share/doc/ja/timidity++/README.sf -%%PORTDOCS%%@dirrm share/doc/ja/timidity++/ +%%PORTDOCS%%%%DOCSDIR%%/README.alsaseq +%%PORTDOCS%%%%DOCSDIR%%/README.dl +%%PORTDOCS%%%%DOCSDIR%%/README.m2m +%%PORTDOCS%%%%DOCSDIR%%/README.mts +%%PORTDOCS%%%%DOCSDIR%%/README.sf %%PORTDOCS%%@dirrm %%DOCSDIR%% +%%PORTDOCS%%@dirrm share/doc/ja/timidity++ @exec mkdir -p %D/%%TIMID_LIBDIR%% @exec mkdir -p %D/share/timidity @dirrmtry %%TIMID_LIBDIR%% --Multipart=_Sun__23_Feb_2014_02_57_38_+0900_NKtKs5WkI0TeAYP9 Content-Type: text/x-diff; name="audio_timidity++-emacs.diff" Content-Disposition: attachment; filename="audio_timidity++-emacs.diff" Content-Transfer-Encoding: 7bit diff -urN /usr/ports/audio/timidity++-emacs/Makefile audio/timidity++-emacs/Makefile --- /usr/ports/audio/timidity++-emacs/Makefile 2014-01-23 04:01:56.000000000 +0900 +++ audio/timidity++-emacs/Makefile 2014-02-23 00:00:00.000000000 +0900 @@ -1,5 +1,5 @@ # Created by: Yoichi Asai -# $FreeBSD: head/audio/timidity++-emacs/Makefile 340722 2014-01-22 17:00:46Z mat $ +# $FreeBSD: head/audio/timidity++-emacs/Makefile 327706 2013-09-20 14:36:35Z bapt $ PKGNAMESUFFIX= -emacs @@ -8,7 +8,7 @@ MASTERDIR= ${.CURDIR}/../../audio/timidity++ -PLIST_FILES= ${TIMID_LIBDIR}/interface_e.so ${ELISPDIR}/timidity.el -NO_STAGE= yes +PLIST_FILES= ${TIMID_LIBDIR}/if_emacs.so \ + share/emacs/site-lisp/timidity.el .include "${MASTERDIR}/Makefile" --Multipart=_Sun__23_Feb_2014_02_57_38_+0900_NKtKs5WkI0TeAYP9 Content-Type: text/x-diff; name="audio_timidity++-gtk.diff" Content-Disposition: attachment; filename="audio_timidity++-gtk.diff" Content-Transfer-Encoding: 7bit diff -urN /usr/ports/audio/timidity++-gtk/Makefile audio/timidity++-gtk/Makefile --- /usr/ports/audio/timidity++-gtk/Makefile 2014-01-23 04:01:55.000000000 +0900 +++ audio/timidity++-gtk/Makefile 2014-02-23 00:00:00.000000000 +0900 @@ -1,5 +1,5 @@ # Created by: Yoichi Asai -# $FreeBSD: head/audio/timidity++-gtk/Makefile 340722 2014-01-22 17:00:46Z mat $ +# $FreeBSD: head/audio/timidity++-gtk/Makefile 327706 2013-09-20 14:36:35Z bapt $ PKGNAMESUFFIX= -gtk @@ -8,7 +8,6 @@ MASTERDIR= ${.CURDIR}/../../audio/timidity++ -PLIST_FILES= bin/gtkmidi ${TIMID_LIBDIR}/interface_g.so -NO_STAGE= yes +PLIST_FILES= bin/${LINK} ${TIMID_LIBDIR}/if_gtk.so .include "${MASTERDIR}/Makefile" --Multipart=_Sun__23_Feb_2014_02_57_38_+0900_NKtKs5WkI0TeAYP9 Content-Type: text/x-diff; name="audio_timidity++-motif.diff" Content-Disposition: attachment; filename="audio_timidity++-motif.diff" Content-Transfer-Encoding: 7bit diff -urN /usr/ports/audio/timidity++-motif/Makefile audio/timidity++-motif/Makefile --- /usr/ports/audio/timidity++-motif/Makefile 2014-01-23 03:59:19.000000000 +0900 +++ audio/timidity++-motif/Makefile 2014-02-23 00:00:00.000000000 +0900 @@ -1,5 +1,5 @@ # Created by: Yoichi Asai -# $FreeBSD: head/audio/timidity++-motif/Makefile 340722 2014-01-22 17:00:46Z mat $ +# $FreeBSD: head/audio/timidity++-motif/Makefile 327706 2013-09-20 14:36:35Z bapt $ PKGNAMESUFFIX= -motif @@ -8,13 +8,6 @@ MASTERDIR= ${.CURDIR}/../../audio/timidity++ -PLIST_FILES= bin/xmmidi ${TIMID_LIBDIR}/interface_m.so -NO_STAGE= yes - -post-configure: - @${MV} ${WRKSRC}/interface/Makefile ${WRKSRC}/interface/Makefile.orig - @${SED} -e 's^m_so_libs = $$^m_so_libs = -L${LOCALBASE}/lib ${MOTIFLIB} -lXt -lXext -lSM -lICE -lX11 ^' \ - -e 's^dynamic_targets = $$^dynamic_targets = interface_m.so^' \ - ${WRKSRC}/interface/Makefile.orig > ${WRKSRC}/interface/Makefile +PLIST_FILES= bin/${LINK} ${TIMID_LIBDIR}/if_motif.so .include "${MASTERDIR}/Makefile" --Multipart=_Sun__23_Feb_2014_02_57_38_+0900_NKtKs5WkI0TeAYP9 Content-Type: text/x-diff; name="audio_timidity++-slang.diff" Content-Disposition: attachment; filename="audio_timidity++-slang.diff" Content-Transfer-Encoding: 7bit diff -urN /usr/ports/audio/timidity++-slang/Makefile audio/timidity++-slang/Makefile --- /usr/ports/audio/timidity++-slang/Makefile 2013-11-06 21:51:57.000000000 +0900 +++ audio/timidity++-slang/Makefile 2014-02-23 00:00:00.000000000 +0900 @@ -6,10 +6,8 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Slang interface for TiMidity++ - MASTERDIR= ${.CURDIR}/../../audio/timidity++ -PLIST_FILES= ${TIMID_LIBDIR}/interface_s.so -NO_STAGE= yes +PLIST_FILES= ${TIMID_LIBDIR}/if_${INTERFACE}.so .include "${MASTERDIR}/Makefile" --Multipart=_Sun__23_Feb_2014_02_57_38_+0900_NKtKs5WkI0TeAYP9 Content-Type: text/x-diff; name="audio_timidity++-tcltk.diff" Content-Disposition: attachment; filename="audio_timidity++-tcltk.diff" Content-Transfer-Encoding: 7bit diff -urN /usr/ports/audio/timidity++-tcltk/Makefile audio/timidity++-tcltk/Makefile --- /usr/ports/audio/timidity++-tcltk/Makefile 2014-01-23 04:03:03.000000000 +0900 +++ audio/timidity++-tcltk/Makefile 2014-02-23 00:00:00.000000000 +0900 @@ -1,12 +1,13 @@ # Created by: Yoichi Asai -# $FreeBSD: head/audio/timidity++-tcltk/Makefile 340722 2014-01-22 17:00:46Z mat $ +# $FreeBSD: head/audio/timidity++-tcltk/Makefile 327706 2013-09-20 14:36:35Z bapt $ PKGNAMESUFFIX= -tcltk MAINTAINER= ports@FreeBSD.org COMMENT= Tcl/Tk interface for TiMidity++ +OPTIONS_DEFINE= DOCS + MASTERDIR= ${.CURDIR}/../../audio/timidity++ -NO_STAGE= yes .include "${MASTERDIR}/Makefile" diff -urN /usr/ports/audio/timidity++-tcltk/pkg-plist audio/timidity++-tcltk/pkg-plist --- /usr/ports/audio/timidity++-tcltk/pkg-plist 2014-01-23 04:03:03.000000000 +0900 +++ audio/timidity++-tcltk/pkg-plist 2014-02-23 00:00:00.000000000 +0900 @@ -1,21 +1,30 @@ bin/tkmidi +%%TIMID_LIBDIR%%/bitmaps/arrow.xbm %%TIMID_LIBDIR%%/bitmaps/back.xbm +%%TIMID_LIBDIR%%/bitmaps/check.xbm +%%TIMID_LIBDIR%%/bitmaps/fast.xbm %%TIMID_LIBDIR%%/bitmaps/fwrd.xbm +%%TIMID_LIBDIR%%/bitmaps/keydown.xbm +%%TIMID_LIBDIR%%/bitmaps/keyup.xbm %%TIMID_LIBDIR%%/bitmaps/next.xbm +%%TIMID_LIBDIR%%/bitmaps/off.xbm +%%TIMID_LIBDIR%%/bitmaps/on.xbm %%TIMID_LIBDIR%%/bitmaps/pause.xbm %%TIMID_LIBDIR%%/bitmaps/play.xbm %%TIMID_LIBDIR%%/bitmaps/prev.xbm %%TIMID_LIBDIR%%/bitmaps/quit.xbm %%TIMID_LIBDIR%%/bitmaps/random.xbm %%TIMID_LIBDIR%%/bitmaps/repeat.xbm +%%TIMID_LIBDIR%%/bitmaps/slow.xbm %%TIMID_LIBDIR%%/bitmaps/stop.xbm %%TIMID_LIBDIR%%/bitmaps/timidity.xbm %%TIMID_LIBDIR%%/browser.tcl -%%TIMID_LIBDIR%%/interface_k.so +%%TIMID_LIBDIR%%/if_tcltk.so %%TIMID_LIBDIR%%/misc.tcl -%%TIMID_LIBDIR%%/tclIndex %%TIMID_LIBDIR%%/tkmidity.tcl %%TIMID_LIBDIR%%/tkpanel.tcl %%PORTDOCS%%%%DOCSDIR%%/README.tk %%PORTDOCS%%share/doc/ja/timidity++/README.tk +%%PORTDOCS%%@dirrmtry share/doc/ja/timidity++ +%%PORTDOCS%%@dirrmtry %%DOCSDIR%% @dirrm %%TIMID_LIBDIR%%/bitmaps --Multipart=_Sun__23_Feb_2014_02_57_38_+0900_NKtKs5WkI0TeAYP9 Content-Type: text/x-diff; name="audio_timidity++-xaw.diff" Content-Disposition: attachment; filename="audio_timidity++-xaw.diff" Content-Transfer-Encoding: 7bit diff -urN /usr/ports/audio/timidity++-xaw/Makefile audio/timidity++-xaw/Makefile --- /usr/ports/audio/timidity++-xaw/Makefile 2014-01-23 03:58:31.000000000 +0900 +++ audio/timidity++-xaw/Makefile 2014-02-23 00:00:00.000000000 +0900 @@ -1,12 +1,13 @@ # Created by: Yoichi Asai -# $FreeBSD: head/audio/timidity++-xaw/Makefile 340722 2014-01-22 17:00:46Z mat $ +# $FreeBSD: head/audio/timidity++-xaw/Makefile 327706 2013-09-20 14:36:35Z bapt $ PKGNAMESUFFIX= -xaw MAINTAINER= ports@FreeBSD.org COMMENT= Xaw interface for TiMidity++ +OPTIONS_DEFINE= DOCS + MASTERDIR= ${.CURDIR}/../../audio/timidity++ -NO_STAGE= yes .include "${MASTERDIR}/Makefile" diff -urN /usr/ports/audio/timidity++-xaw/pkg-plist audio/timidity++-xaw/pkg-plist --- /usr/ports/audio/timidity++-xaw/pkg-plist 2014-01-23 03:58:31.000000000 +0900 +++ audio/timidity++-xaw/pkg-plist 2014-02-23 00:00:00.000000000 +0900 @@ -1,20 +1,10 @@ bin/xawmidi lib/X11/app-defaults/TiMidity lib/X11/%%EUCJP_LOCALE%%/app-defaults/TiMidity -%%TIMID_LIBDIR%%/bitmaps/back.xbm -%%TIMID_LIBDIR%%/bitmaps/fwrd.xbm -%%TIMID_LIBDIR%%/bitmaps/next.xbm -%%TIMID_LIBDIR%%/bitmaps/pause.xbm -%%TIMID_LIBDIR%%/bitmaps/play.xbm -%%TIMID_LIBDIR%%/bitmaps/prev.xbm -%%TIMID_LIBDIR%%/bitmaps/quit.xbm -%%TIMID_LIBDIR%%/bitmaps/random.xbm -%%TIMID_LIBDIR%%/bitmaps/repeat.xbm -%%TIMID_LIBDIR%%/bitmaps/stop.xbm -%%TIMID_LIBDIR%%/bitmaps/timidity.xbm -%%TIMID_LIBDIR%%/interface_a.so +%%TIMID_LIBDIR%%/if_xaw.so %%PORTDOCS%%%%DOCSDIR%%/README.xaw %%PORTDOCS%%share/doc/ja/timidity++/README.xaw -@dirrm %%TIMID_LIBDIR%%/bitmaps +%%PORTDOCS%%@dirrmtry share/doc/ja/timidity++ +%%PORTDOCS%%@dirrmtry %%DOCSDIR%% @dirrmtry lib/X11/%%EUCJP_LOCALE%%/app-defaults @dirrmtry lib/X11/%%EUCJP_LOCALE%% --Multipart=_Sun__23_Feb_2014_02_57_38_+0900_NKtKs5WkI0TeAYP9 Content-Type: text/x-diff; name="audio_timidity++-xskin.diff" Content-Disposition: attachment; filename="audio_timidity++-xskin.diff" Content-Transfer-Encoding: 7bit diff -urN /usr/ports/audio/timidity++-xskin/Makefile audio/timidity++-xskin/Makefile --- /usr/ports/audio/timidity++-xskin/Makefile 2014-01-23 04:00:38.000000000 +0900 +++ audio/timidity++-xskin/Makefile 2014-02-23 00:00:00.000000000 +0900 @@ -1,12 +1,13 @@ # Created by: Yoichi Asai -# $FreeBSD: head/audio/timidity++-xskin/Makefile 340722 2014-01-22 17:00:46Z mat $ +# $FreeBSD: head/audio/timidity++-xskin/Makefile 327706 2013-09-20 14:36:35Z bapt $ PKGNAMESUFFIX= -xskin MAINTAINER= ports@FreeBSD.org COMMENT= X11AMP skin interface for TiMidity++ +OPTIONS_DEFINE= DOCS + MASTERDIR= ${.CURDIR}/../../audio/timidity++ -NO_STAGE= yes .include "${MASTERDIR}/Makefile" diff -urN /usr/ports/audio/timidity++-xskin/pkg-plist audio/timidity++-xskin/pkg-plist --- /usr/ports/audio/timidity++-xskin/pkg-plist 2014-01-23 04:00:38.000000000 +0900 +++ audio/timidity++-xskin/pkg-plist 2014-02-23 00:00:00.000000000 +0900 @@ -1,4 +1,6 @@ bin/xskinmidi -%%TIMID_LIBDIR%%/interface_i.so +%%TIMID_LIBDIR%%/if_xskin.so %%PORTDOCS%%%%DOCSDIR%%/README.xskin %%PORTDOCS%%share/doc/ja/timidity++/README.xskin +%%PORTDOCS%%@dirrmtry share/doc/ja/timidity++ +%%PORTDOCS%%@dirrmtry %%DOCSDIR%% --Multipart=_Sun__23_Feb_2014_02_57_38_+0900_NKtKs5WkI0TeAYP9 Content-Type: text/x-diff; name="japanese_timidity++-slang.diff" Content-Disposition: attachment; filename="japanese_timidity++-slang.diff" Content-Transfer-Encoding: 7bit diff -urN /usr/ports/japanese/timidity++-slang/Makefile japanese/timidity++-slang/Makefile --- /usr/ports/japanese/timidity++-slang/Makefile 2013-11-06 21:58:50.000000000 +0900 +++ japanese/timidity++-slang/Makefile 2014-02-23 00:00:00.000000000 +0900 @@ -8,12 +8,10 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Slang interface for TiMidity++ with Japanese support - MASTERDIR= ${.CURDIR}/../../audio/timidity++ -JAPANESE= yes +PLIST_FILES= ${TIMID_LIBDIR}/if_slang.so -PLIST_FILES= ${TIMID_LIBDIR}/interface_s.so +JAPANESE= yes -NO_STAGE= yes .include "${MASTERDIR}/Makefile" --Multipart=_Sun__23_Feb_2014_02_57_38_+0900_NKtKs5WkI0TeAYP9 Content-Type: text/x-diff; name="japanese_timidity++-tcltk.diff" Content-Disposition: attachment; filename="japanese_timidity++-tcltk.diff" Content-Transfer-Encoding: 7bit diff -urN /usr/ports/japanese/timidity++-tcltk/Makefile japanese/timidity++-tcltk/Makefile --- /usr/ports/japanese/timidity++-tcltk/Makefile 2014-01-23 05:05:06.000000000 +0900 +++ japanese/timidity++-tcltk/Makefile 2014-02-23 00:00:00.000000000 +0900 @@ -1,5 +1,5 @@ # Created by: Yoichi Asai -# $FreeBSD: head/japanese/timidity++-tcltk/Makefile 340722 2014-01-22 17:00:46Z mat $ +# $FreeBSD: head/japanese/timidity++-tcltk/Makefile 327737 2013-09-20 18:47:54Z bapt $ PKGNAMESUFFIX= -tcltk @@ -8,9 +8,10 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Tcl/Tk interface for TiMidity++ with Japanese support -JAPANESE= yes +OPTIONS_DEFINE= DOCS MASTERDIR= ${.CURDIR}/../../audio/timidity++ -NO_STAGE= yes +JAPANESE= yes + .include "${MASTERDIR}/Makefile" diff -urN /usr/ports/japanese/timidity++-tcltk/pkg-plist japanese/timidity++-tcltk/pkg-plist --- /usr/ports/japanese/timidity++-tcltk/pkg-plist 2014-01-23 05:05:06.000000000 +0900 +++ japanese/timidity++-tcltk/pkg-plist 2014-02-23 00:00:00.000000000 +0900 @@ -1,21 +1,30 @@ bin/tkmidi +%%TIMID_LIBDIR%%/bitmaps/arrow.xbm %%TIMID_LIBDIR%%/bitmaps/back.xbm +%%TIMID_LIBDIR%%/bitmaps/check.xbm +%%TIMID_LIBDIR%%/bitmaps/fast.xbm %%TIMID_LIBDIR%%/bitmaps/fwrd.xbm +%%TIMID_LIBDIR%%/bitmaps/keydown.xbm +%%TIMID_LIBDIR%%/bitmaps/keyup.xbm %%TIMID_LIBDIR%%/bitmaps/next.xbm +%%TIMID_LIBDIR%%/bitmaps/off.xbm +%%TIMID_LIBDIR%%/bitmaps/on.xbm %%TIMID_LIBDIR%%/bitmaps/pause.xbm %%TIMID_LIBDIR%%/bitmaps/play.xbm %%TIMID_LIBDIR%%/bitmaps/prev.xbm %%TIMID_LIBDIR%%/bitmaps/quit.xbm %%TIMID_LIBDIR%%/bitmaps/random.xbm %%TIMID_LIBDIR%%/bitmaps/repeat.xbm +%%TIMID_LIBDIR%%/bitmaps/slow.xbm %%TIMID_LIBDIR%%/bitmaps/stop.xbm %%TIMID_LIBDIR%%/bitmaps/timidity.xbm %%TIMID_LIBDIR%%/browser.tcl -%%TIMID_LIBDIR%%/interface_k.so +%%TIMID_LIBDIR%%/if_tcltk.so %%TIMID_LIBDIR%%/misc.tcl -%%TIMID_LIBDIR%%/tclIndex %%TIMID_LIBDIR%%/tkmidity.tcl %%TIMID_LIBDIR%%/tkpanel.tcl -%%PORTDOCS%%share/doc/timidity++/README.tk +%%PORTDOCS%%%%DOCSDIR%%/README.tk %%PORTDOCS%%share/doc/ja/timidity++/README.tk +%%PORTDOCS%%@dirrmtry share/doc/ja/timidity++ +%%PORTDOCS%%@dirrmtry %%DOCSDIR%% @dirrm %%TIMID_LIBDIR%%/bitmaps --Multipart=_Sun__23_Feb_2014_02_57_38_+0900_NKtKs5WkI0TeAYP9-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Feb 22 19:49:17 2014 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 ESMTPS id 0E739B6A; Sat, 22 Feb 2014 19:49:17 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D6587171E; Sat, 22 Feb 2014 19:49: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 s1MJnG6I031221; Sat, 22 Feb 2014 19:49:16 GMT (envelope-from cs@freefall.freebsd.org) Received: (from cs@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1MJnGCq031220; Sat, 22 Feb 2014 19:49:16 GMT (envelope-from cs) Date: Sat, 22 Feb 2014 19:49:16 GMT Message-Id: <201402221949.s1MJnGCq031220@freefall.freebsd.org> To: lukasz.stelmach@iem.pw.edu.pl, cs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, cs@FreeBSD.org From: cs@FreeBSD.org Subject: Re: ports/186959: [UPDATE] www/mathjax X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Feb 2014 19:49:17 -0000 Synopsis: [UPDATE] www/mathjax Responsible-Changed-From-To: freebsd-ports-bugs->cs Responsible-Changed-By: cs Responsible-Changed-When: Sat Feb 22 19:49:03 UTC 2014 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=186959 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Feb 22 20:00:01 2014 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 ESMTPS id E0F33DB7 for ; Sat, 22 Feb 2014 20:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B831817DE for ; Sat, 22 Feb 2014 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 s1MK00GP034093 for ; Sat, 22 Feb 2014 20:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1MK006Y034091; Sat, 22 Feb 2014 20:00:00 GMT (envelope-from gnats) Resent-Date: Sat, 22 Feb 2014 20:00:00 GMT Resent-Message-Id: <201402222000.s1MK006Y034091@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 Nehren Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8798DD94 for ; Sat, 22 Feb 2014 19:56:57 +0000 (UTC) Received: from smtp.pobox.com (b-pb-sasl-quonix.pobox.com [208.72.237.35]) by mx1.freebsd.org (Postfix) with ESMTP id 5556A17C5 for ; Sat, 22 Feb 2014 19:56:57 +0000 (UTC) Received: from smtp.pobox.com (unknown [127.0.0.1]) by b-sasl-quonix.pobox.com (Postfix) with ESMTP id 0A1946D470 for ; Sat, 22 Feb 2014 14:51:52 -0500 (EST) Received: from b-pb-sasl-quonix.pobox.com (unknown [127.0.0.1]) by b-sasl-quonix.pobox.com (Postfix) with ESMTP id EA5186D46F for ; Sat, 22 Feb 2014 14:51:51 -0500 (EST) Received: from localhost (unknown [76.99.50.36]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by b-sasl-quonix.pobox.com (Postfix) with ESMTPSA id 0F6B86D46B for ; Sat, 22 Feb 2014 14:51:50 -0500 (EST) Message-Id: <20140222195150.0F6B86D46B@b-sasl-quonix.pobox.com> Date: Sat, 22 Feb 2014 14:51:50 -0500 (EST) From: Chris Nehren To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/186962: minbif only needs imlib2 if the user wants caca X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Chris Nehren List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Feb 2014 20:00:01 -0000 >Number: 186962 >Category: ports >Synopsis: minbif only needs imlib2 if the user wants caca >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Feb 22 20:00:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: apeiron >Release: FreeBSD 9.2-RELEASE-p3 amd64 >Organization: >Environment: System: FreeBSD eschaton.local 9.2-RELEASE-p3 FreeBSD 9.2-RELEASE-p3 #0: Sat Jan 11 03:25:02 UTC 2014 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 irc/minbif latest as of date of PR submission >Description: irc/minbif requires imlib2, regardless of whether it's actually needed for the port to function. In reality, imlib2 is only needed when the user selects caca support. I've attached a patch that fixes the dependencies and disables libcaca and imlib2 support if the user doesn't select caca. >How-To-Repeat: Try to build minbif without imlib2 installed. Observe minbif installation recurse into imlib2 port, despite not needing it. >Fix: See below. --- Makefile.orig 2014-02-22 14:36:04.000000000 -0500 +++ Makefile 2014-02-22 14:43:45.000000000 -0500 @@ -25,8 +25,6 @@ USES= cmake pkgconfig USE_GNOME= glib20 -USE_EFL= imlib2 -CMAKE_ARGS= -DENABLE_IMLIB:BOOL=ON CFLAGS+= -DX_DISPLAY_MISSING LDFLAGS+= -pthread @@ -66,6 +64,14 @@ CMAKE_ARGS+= -DENABLE_VIDEO:BOOL=OFF .endif +.if ${PORT_OPTIONS:MCACA} +USE_EFL= imlib2 +CMAKE_ARGS+= -DENABLE_IMLIB:BOOL=ON +.else +CMAKE_ARGS+= -DENABLE_CACA:BOOL=OFF +CMAKE_ARGS+= -DENABLE_IMLIB:BOOL=OFF +.endif + .if ${PORT_OPTIONS:MVIDEO} && empty(PORT_OPTIONS:MCACA) IGNORE= if you want to enable webcam support, you must \ also enable CACA. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Feb 22 20:45:52 2014 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 ESMTPS id 681069E9; Sat, 22 Feb 2014 20:45:52 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3A6061B06; Sat, 22 Feb 2014 20:45: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 s1MKjqNt049650; Sat, 22 Feb 2014 20:45:52 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1MKjqC3049649; Sat, 22 Feb 2014 20:45:52 GMT (envelope-from edwin) Date: Sat, 22 Feb 2014 20:45:52 GMT Message-Id: <201402222045.s1MKjqC3049649@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, glewis@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186956: Remote debugging on java/openjdk7 fails with "/usr/local/openjdk7/jre/lib/amd64/libnpt.so: Undefined symbol "libiconv_open" X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Feb 2014 20:45:52 -0000 Synopsis: Remote debugging on java/openjdk7 fails with "/usr/local/openjdk7/jre/lib/amd64/libnpt.so: Undefined symbol "libiconv_open" Responsible-Changed-From-To: freebsd-ports-bugs->glewis Responsible-Changed-By: edwin Responsible-Changed-When: Sat Feb 22 20:45:51 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186956 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Feb 22 21:00:01 2014 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 ESMTPS id B521AB9A for ; Sat, 22 Feb 2014 21:00:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9EBE81BFC for ; Sat, 22 Feb 2014 21: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 s1ML01g4052625 for ; Sat, 22 Feb 2014 21:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1ML01VS052624; Sat, 22 Feb 2014 21:00:01 GMT (envelope-from gnats) Date: Sat, 22 Feb 2014 21:00:01 GMT Message-Id: <201402222100.s1ML01VS052624@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: The BSD Dreamer Subject: Re: ports/186904: =?UTF-8?Q?ports-mgmt/pkg=5Frmleaves=3A=20always?= =?UTF-8?Q?=20says=20to=20resize=20terminal=20to=20at=20least=20=38=30x=32?= =?UTF-8?Q?=34?= X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: The BSD Dreamer List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Feb 2014 21:00:01 -0000 The following reply was made to PR ports/186904; it has been noted by GNATS. From: The BSD Dreamer To: Alexander Wittig Cc: bug-followup@freebsd.org, Lawrence Chen Subject: Re: ports/186904: =?UTF-8?Q?ports-mgmt/pkg=5Frmleaves=3A=20always?= =?UTF-8?Q?=20says=20to=20resize=20terminal=20to=20at=20least=20=38=30x=32?= =?UTF-8?Q?=34?= Date: Sat, 22 Feb 2014 14:58:34 -0600 On 2014-02-22 08:10, Alexander Wittig wrote: > Thanks for bringing the problem to my attention. I was aware of the > described deficiency in the quote handling, however, on my test system with > FreeBSD 10 everything worked also with e.g. php55-extensions (A “meta-port” > to install PHP extensions), despite the quotes in the description. > I included a modified version of the proposed patch, please try the new > version of the script at > http://alex.wittig.name/pkg_rmleaves/pkg_rmleaves-20140222.tar.gz > If it works for you, I’ll submit an update to the port. Yes, this works for me. -- Name: Lawrence "The Dreamer" Chen Call: W0LKC Snail: 1530 College Ave, A5 Email: beastie@tardisi.com Manhattan, KS 66502-2768 Blog: http://lawrencechen.net From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Feb 22 21:20:01 2014 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 ESMTPS id 1FC49DAA for ; Sat, 22 Feb 2014 21:20:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E61E51D5A for ; Sat, 22 Feb 2014 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 s1MLK0i8059282 for ; Sat, 22 Feb 2014 21:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1MLK0Qc059281; Sat, 22 Feb 2014 21:20:00 GMT (envelope-from gnats) Resent-Date: Sat, 22 Feb 2014 21:20:00 GMT Resent-Message-Id: <201402222120.s1MLK0Qc059281@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, Lawrence Chen Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 22C70C86 for ; Sat, 22 Feb 2014 21:12:45 +0000 (UTC) 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 DD49C1D19 for ; Sat, 22 Feb 2014 21:12:44 +0000 (UTC) Received: from ip70-179-144-228.fv.ks.cox.net ([70.179.144.228] helo=zen.lhaven.homeip.net) by mho-02-ewr.mailhop.org with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.72) (envelope-from ) id 1WHJsI-0009P1-QG for FreeBSD-gnats-submit@freebsd.org; Sat, 22 Feb 2014 21:12:43 +0000 Received: from zen.lhaven.homeip.net (localhost [127.0.0.1]) by zen.lhaven.homeip.net (8.14.8/8.14.7) with ESMTP id s1MLCdxt005108; Sat, 22 Feb 2014 15:12:39 -0600 (CST) (envelope-from lchen@zen.lhaven.homeip.net) Received: (from lchen@localhost) by zen.lhaven.homeip.net (8.14.8/8.14.7/Submit) id s1MLCYRO005106; Sat, 22 Feb 2014 15:12:34 -0600 (CST) (envelope-from lchen) Message-Id: <201402222112.s1MLCYRO005106@zen.lhaven.homeip.net> Date: Sat, 22 Feb 2014 15:12:34 -0600 (CST) From: Lawrence Chen To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/186963: [patch] ports-mgmt/portrac: reports no updates to installed ports since switch to pkgng Cc: beastie_t@lhaven.homeip.net X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Lawrence Chen List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Feb 2014 21:20:01 -0000 >Number: 186963 >Category: ports >Synopsis: [patch] ports-mgmt/portrac: reports no updates to installed ports since switch to pkgng >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 Feb 22 21:20:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Lawrence Chen >Release: FreeBSD 9.2-RELEASE-p3 amd64 >Organization: >Environment: System: FreeBSD zen.lhaven.homeip.net 9.2-RELEASE-p3 FreeBSD 9.2-RELEASE-p3 #0: Sat Jan 11 03:25:02 UTC 2014 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: After I switched to pkgng and cleaned up /var/db/pkg, portrac showed there had been no updates for the last few days. Knowing that I updated ports on another system that I hadn't updated at home, I concluded that there's a problem with portrac. Found that it doesn't know about pkgng. >How-To-Repeat: >Fix: Taking a lead from ports-mgmt/pkg_cutleaves, I created the patch below to make portrac work again for me. --- patch begins here --- --- Makefile.orig 2013-11-22 12:48:41.000000000 -0600 +++ Makefile 2014-02-22 14:28:16.405015353 -0600 @@ -3,7 +3,7 @@ PORTNAME= portrac PORTVERSION= 0.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= ports-mgmt MASTER_SITES= http://e-soul.org/distfiles/ \ http://home.e-soul.org/~mgp/distfiles/ @@ -24,6 +24,10 @@ USE_BZIP2= yes USE_QT4= gui moc_build +.if defined(WITH_PKGNG) +EXTRA_PATCHES+= ${FILESDIR}/extra-patch-PortChecker.cc +.endif + do-install: ${INSTALL_PROGRAM} ${WRKDIR}/${DISTNAME}/portrac ${STAGEDIR}${PREFIX}/bin && \ ${MKDIR} ${STAGEDIR}${DATADIR} && \ --- files/extra-patch-PortChecker.cc.orig 1969-12-31 18:00:00.000000000 -0600 +++ files/extra-patch-PortChecker.cc 2014-02-22 14:26:47.367015320 -0600 @@ -0,0 +1,11 @@ +--- PortChecker.cc.orig 2011-05-29 04:27:22.000000000 -0500 ++++ PortChecker.cc 2014-02-22 14:26:23.633015152 -0600 +@@ -88,7 +88,7 @@ + { + index = (preferences->getPreference(INDEX_PREF).c_str()); + } +- execl("/usr/sbin/pkg_version", "pkg_version", "-I", index, (char *) 0); ++ execl("/usr/sbin/pkg", "pkg", "version", "-I", index, (char *) 0); + perror("execl"); + } + --- patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Feb 22 21:20:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 600FEDAE for ; Sat, 22 Feb 2014 21:20:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3B8D81D5C for ; Sat, 22 Feb 2014 21: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 s1MLK1xS059348 for ; Sat, 22 Feb 2014 21:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1MLK1EA059347; Sat, 22 Feb 2014 21:20:01 GMT (envelope-from gnats) Resent-Date: Sat, 22 Feb 2014 21:20:01 GMT Resent-Message-Id: <201402222120.s1MLK1EA059347@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 Wittig Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CC842C5D for ; Sat, 22 Feb 2014 21:11:55 +0000 (UTC) Received: from hotzenplotz.wittig.name (hotzenplotz.wittig.name [IPv6:2a03:2900:7:23::1:1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8E97F1D11 for ; Sat, 22 Feb 2014 21:11:55 +0000 (UTC) Received: from alex by hotzenplotz.wittig.name with local (Exim 4.82 (FreeBSD)) (envelope-from ) id 1WHJrT-000Dfy-NM; Sat, 22 Feb 2014 22:11:51 +0100 Message-Id: Date: Sat, 22 Feb 2014 22:11:51 +0100 From: Alexander Wittig Sender: Alexander Wittig To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/186964: [maintainer-update] ports-mgmt/pkg_rmleaves Cc: beastie@tardisi.com X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Alexander Wittig List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Feb 2014 21:20:01 -0000 >Number: 186964 >Category: ports >Synopsis: [maintainer-update] ports-mgmt/pkg_rmleaves >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 Feb 22 21:20:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Alexander Wittig >Release: FreeBSD 10.0-STABLE amd64 >Organization: >Environment: System: FreeBSD hotzenplotz.wittig.name 10.0-STABLE FreeBSD 10.0-STABLE #1 r262132: Tue Feb 18 01:03:26 CET 2014 root@hotzenplotz.wittig.name:/usr/obj/usr/src/sys/ALEX amd64 >Description: Update to new version to address PR ports/186904. Based on patch by Lawrence Chen . >How-To-Repeat: N/A >Fix: update attached --- patch begins here --- Index: Makefile =================================================================== --- Makefile (revision 345640) +++ Makefile (working copy) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pkg_rmleaves -PORTVERSION= 20140110 +PORTVERSION= 20140222 CATEGORIES= ports-mgmt MASTER_SITES= http://alex.wittig.name/${PORTNAME}/ Index: distinfo =================================================================== --- distinfo (revision 345640) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (pkg_rmleaves-20140110.tar.gz) = e0ac071a2d774843a597268830000a81c423eb5ade1cb0a5c66fad20e4559382 -SIZE (pkg_rmleaves-20140110.tar.gz) = 3167 +SHA256 (pkg_rmleaves-20140222.tar.gz) = 2b2f7e19c96d885dab2c36bf2fdbdd30c9529a40ac3a77bda1d5fb1f7690c4a3 +SIZE (pkg_rmleaves-20140222.tar.gz) = 3179 --- patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Feb 22 21:20:09 2014 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 ESMTPS id 672DADDD; Sat, 22 Feb 2014 21:20:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3B3201D5D; Sat, 22 Feb 2014 21: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 s1MLK9kM059422; Sat, 22 Feb 2014 21:20:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1MLK9Bg059421; Sat, 22 Feb 2014 21:20:09 GMT (envelope-from edwin) Date: Sat, 22 Feb 2014 21:20:09 GMT Message-Id: <201402222120.s1MLK9Bg059421@freefall.freebsd.org> To: beastie@tardisi.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186963: [patch] ports-mgmt/portrac: reports no updates to installed ports since switch to pkgng X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Feb 2014 21:20:09 -0000 Synopsis: [patch] ports-mgmt/portrac: reports no updates to installed ports since switch to pkgng State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sat Feb 22 21:20:08 UTC 2014 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186963 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Feb 22 21:30:01 2014 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 ESMTPS id 53DC8ED6 for ; Sat, 22 Feb 2014 21:30:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4025A1E05 for ; Sat, 22 Feb 2014 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 s1MLU19n062269 for ; Sat, 22 Feb 2014 21:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1MLU1fc062268; Sat, 22 Feb 2014 21:30:01 GMT (envelope-from gnats) Date: Sat, 22 Feb 2014 21:30:01 GMT Message-Id: <201402222130.s1MLU1fc062268@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/186963: [patch] ports-mgmt/portrac: reports no updates to installed ports since switch to pkgng X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 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, 22 Feb 2014 21:30:01 -0000 The following reply was made to PR ports/186963; it has been noted by GNATS. From: Edwin Groothuis To: mgp@e-soul.org Cc: bug-followup@FreeBSD.org Subject: Re: ports/186963: [patch] ports-mgmt/portrac: reports no updates to installed ports since switch to pkgng Date: Sat, 22 Feb 2014 21:20:08 UT Maintainer of ports-mgmt/portrac, Please note that PR ports/186963 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/186963 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Feb 22 22:50:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AC42D230 for ; Sat, 22 Feb 2014 22:50:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 94D611501 for ; Sat, 22 Feb 2014 22: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 s1MMo1Ql085929 for ; Sat, 22 Feb 2014 22:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1MMo19f085928; Sat, 22 Feb 2014 22:50:01 GMT (envelope-from gnats) Date: Sat, 22 Feb 2014 22:50:01 GMT Message-Id: <201402222250.s1MMo19f085928@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Gerald Pfeifer Subject: Re: ports/178557: Ports with USE_GCC=any don't respect local CC and CXX settings X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Gerald Pfeifer List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Feb 2014 22:50:01 -0000 The following reply was made to PR ports/178557; it has been noted by GNATS. From: Gerald Pfeifer To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/178557: Ports with USE_GCC=any don't respect local CC and CXX settings Date: Sat, 22 Feb 2014 23:42:18 +0100 (CET) On Mon, 13 May 2013, Mikhail T. wrote: >>Description: > Even though I set CC and CXX in make.conf to gcc48 and g++48 > respectively, ports such as audio/nas or graphics/devil, which > specify USE_GCC=any, attempt to build using the regular gcc > instead. The way I understand things, /etc/make.conf is for setting system wide defaults. USE_GCC or USES=compiler, on the other hand, are specific per port settings that override system wide defaults. If the ports infrastructure would now honor setting of CC and CXX at the global level (/etc/make.conf), how could special requirements to build a certain port be made? In fact, if USE_GCC=any, and CC is set manually, should the ports infrastructure really check (and how) whether CC points to GCC as opposed to some other compiler and then, and only then, use it? If you prefer a certain version of GCC, what you can do is set GCC_DEFAULT_VERSION on Mk/bsd.gcc.mk, and I am shortly going to commit a patch to move a variation of that to Mk/bsd.default-versions.mk. That should help in a case like that, since USE_GCC=any will then use that version. Grald From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Feb 22 23:00:00 2014 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 ESMTPS id E0A9D2E7 for ; Sat, 22 Feb 2014 23:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A00ED15BD for ; Sat, 22 Feb 2014 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 s1MN00pi088812 for ; Sat, 22 Feb 2014 23:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1MN00Vn088811; Sat, 22 Feb 2014 23:00:00 GMT (envelope-from gnats) Resent-Date: Sat, 22 Feb 2014 23:00:00 GMT Resent-Message-Id: <201402222300.s1MN00Vn088811@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, Nikola Kolev Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DB30E2A7 for ; Sat, 22 Feb 2014 22:57:13 +0000 (UTC) Received: from newred.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C41FD15A2 for ; Sat, 22 Feb 2014 22:57:13 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by newred.freebsd.org (8.14.7/8.14.7) with ESMTP id s1MMvDC6040027 for ; Sat, 22 Feb 2014 22:57:13 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.7/8.14.7/Submit) id s1MMvDjS040026; Sat, 22 Feb 2014 22:57:13 GMT (envelope-from nobody) Message-Id: <201402222257.s1MMvDjS040026@cgiserv.freebsd.org> Date: Sat, 22 Feb 2014 22:57:13 GMT From: Nikola Kolev To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/186965: [patch] prayer missing header X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Feb 2014 23:00:00 -0000 >Number: 186965 >Category: ports >Synopsis: [patch] prayer missing header >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 Feb 22 23:00:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Nikola Kolev >Release: 9.1-RELEASE >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: Versions before FreeBSD 10 cannot find iconv.h header file. This is second patch for this port. I can merge them if its necessary. >How-To-Repeat: >Fix: Patch attached with submission follows: 45c45,46 < CPPFLAGS="${CFLAGS}" \ --- > CPPFLAGS="${CFLAGS} -I${LOCALBASE}/include" \ > LDFLAGS="-L${LOCALBASE}/lib" \ 94c95 < @${REINPLACE_CMD} "s,-liconv,${ICONV_LIB}," ${WRKSRC}/Config --- > @${REINPLACE_CMD} "s,-lutil,-lutil ${ICONV_LIB}," ${WRKSRC}/Config >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 23 00:00:00 2014 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 ESMTPS id EDFD01C9 for ; Sun, 23 Feb 2014 00:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C74AD19E5 for ; Sun, 23 Feb 2014 00: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 s1N0003c007130 for ; Sun, 23 Feb 2014 00:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1N000J1007126; Sun, 23 Feb 2014 00:00:00 GMT (envelope-from gnats) Resent-Date: Sun, 23 Feb 2014 00:00:00 GMT Resent-Message-Id: <201402230000.s1N000J1007126@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 ESMTPS id 9FB397D for ; Sat, 22 Feb 2014 23:50:56 +0000 (UTC) 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 4C3CE19BB for ; Sat, 22 Feb 2014 23:50:56 +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 s1MNojBx029302 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Sat, 22 Feb 2014 23:50:50 GMT (envelope-from swills@meatwad.mouf.net) Received: (from swills@localhost) by meatwad.mouf.net (8.14.7/8.14.5/Submit) id s1MNoboK085429; Sat, 22 Feb 2014 23:50:37 GMT (envelope-from swills) Message-Id: <201402222350.s1MNoboK085429@meatwad.mouf.net> Date: Sat, 22 Feb 2014 23:50:37 GMT From: Steve Wills To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/186966: [PATCH] games/doomlegacy: Add an option to disable IPX support Cc: danfe@FreeBSD.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Feb 2014 00:00:01 -0000 >Number: 186966 >Category: ports >Synopsis: [PATCH] games/doomlegacy: Add an option to disable IPX support >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 Feb 23 00:00:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: FreeBSD 11.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD meatwad.mouf.net 11.0-CURRENT FreeBSD 11.0-CURRENT #0 r260369M: Sat Jan 18 14:51:04 UTC >Description: - Add an option to disable IPX support For those who have removed it from base via WITHOUT_IPX in src.conf Port maintainer (danfe@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 1.00.2014.02.11 (mode: change, diff: SVN) >How-To-Repeat: >Fix: --- doomlegacy-1.44.a4.patch begins here --- Index: Makefile =================================================================== --- Makefile (revision 345682) +++ Makefile (working copy) @@ -31,8 +31,10 @@ SVN_REV= 999 -OPTIONS_DEFINE= DOCS +OPTIONS_DEFINE= DOCS IPX OPTIONS_DEFINE_i386= ASM +OPTIONS_DEFAULT= IPX +IPX_DESC= Support for IPX networking NO_STAGE= yes .include @@ -42,6 +44,12 @@ MAKE_ENV= USEASM=1 OLD_DEPENDENCIES=1 .endif +.if ${PORT_OPTIONS:MIPX} +EXTRA_PATCHES+= ${FILESDIR}/extra-patch-Makefile-ipx +.else +EXTRA_PATCHES+= ${FILESDIR}/extra-patch-Makefile-noipx +.endif + post-patch: .SILENT ${REINPLACE_CMD} -e 's| ../dep/$(@F) +- sed --separate -e "s@^[a-zA-Z0-9_]*.o:@\$$(O)/&@" ../dep/$(@F) > sed.dep ++ sed -e "s@^[a-zA-Z0-9_]*.o:@\$$(O)/&@" ../dep/$(@F) > sed.dep + mv sed.dep ../dep/$(@F) + endif + Property changes on: files/extra-patch-Makefile-noipx ___________________________________________________________________ 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-Makefile =================================================================== --- files/patch-Makefile (revision 345682) +++ files/patch-Makefile (working copy) @@ -1,73 +0,0 @@ ---- Makefile.orig -+++ Makefile -@@ -84,7 +84,7 @@ - # std=c89, does not support // commments, no inline, no asm - - # gcc or g++ --CC=gcc -+CC?=gcc - ifdef CC_WATCOM - CC=WATCOMC - endif -@@ -135,9 +135,9 @@ - LIBS := -lopengl32 -lglu32 -lwsock32 -lm - else - # default is Linux, for all unix SDL -- OPTS := -DLINUX -+ OPTS := -DLINUX -DFREEBSD - LDFLAGS=-L/usr/X11R6/lib -- LIBS := -lGL -lGLU -lm -+ LIBS := -lGL -lGLU -lm -lipx - # -L/usr/X11R6/lib is needed by Linux 2.4 and others that still have - # the GLU libraries in an X11 directory. - # -lm is needed for pow, powf, and other MATH1 functions. -@@ -392,7 +392,7 @@ - endif - - # compiler and linker flags --CFLAGS = $(WFLAGS) -+#CFLAGS = $(WFLAGS) - - ifdef PROFILEMODE - # build with gprof profiling information -@@ -405,7 +405,7 @@ - else - # build a normal optimized version - #CFLAGS += -O3 -- CFLAGS += $(OPTLEV) -fomit-frame-pointer -+ #CFLAGS += $(OPTLEV) -fomit-frame-pointer - endif - endif - -@@ -583,7 +583,7 @@ - - # executable - $(BIN)/$(EXENAME): $(O) $(OBJS) $(MAINOBJ) versionstring --# @mkdir $(BIN) -+ @mkdir -p $(BIN) - @echo Linking... - $(CC) $(CFLAGS) $(LDFLAGS) $(OBJS) $(MAINOBJ) \ - -o $(BIN)/$(EXENAME) $(LIBS) -@@ -651,7 +651,7 @@ - ../dep/main2.dep : i*.c m*.c p*.c - ../dep/main3.dep : q*.c r*.c s*.c t*.c v*.c z*.c - # none: e*.c j*.c k*.c l*.c n*.c o*.c --../dep/hardware.dep : hardware/*.c hardware/*/*.c -+../dep/hardware.dep : hardware/*.c hardware/r_opengl/*.c - # $(INTERFACE).dep : $(INTERFACE)/*.c - ../dep/djgppdos.dep : djgppdos/*.c - ../dep/linux_x.dep : linux_x/*.c linux_x/musserv/*.c linux_x/sndserv/*.c -@@ -673,11 +673,10 @@ - ../dep : - @mkdir ../dep; - --%.dep : -+%.dep : ../dep - @echo "Making dependencies $(@F)" -- if test ! -d ../dep; then mkdir ../dep; fi - $(CC) $(CFLAGS) -MM $^ > ../dep/$(@F) -- sed --separate -e "s@^[a-zA-Z0-9_]*.o:@\$$(O)/&@" ../dep/$(@F) > sed.dep -+ sed -e "s@^[a-zA-Z0-9_]*.o:@\$$(O)/&@" ../dep/$(@F) > sed.dep - mv sed.dep ../dep/$(@F) - endif - --- doomlegacy-1.44.a4.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: