From owner-freebsd-ports-bugs@FreeBSD.ORG Sun May 1 03:50:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3B8831065672 for ; Sun, 1 May 2011 03:50:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 104D48FC0A for ; Sun, 1 May 2011 03:50:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p413o9ai089349 for ; Sun, 1 May 2011 03:50:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p413o9fN089348; Sun, 1 May 2011 03:50:09 GMT (envelope-from gnats) Resent-Date: Sun, 1 May 2011 03:50:09 GMT Resent-Message-Id: <201105010350.p413o9fN089348@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Zhihao Yuan Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0FF371065670 for ; Sun, 1 May 2011 03:46:17 +0000 (UTC) (envelope-from lichray@gmail.com) Received: from mail-iw0-f182.google.com (mail-iw0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id CA7DB8FC19 for ; Sun, 1 May 2011 03:46:16 +0000 (UTC) Received: by iwn33 with SMTP id 33so5516145iwn.13 for ; Sat, 30 Apr 2011 20:46:16 -0700 (PDT) Received: by 10.43.46.138 with SMTP id uo10mr8604964icb.319.1304221576094; Sat, 30 Apr 2011 20:46:16 -0700 (PDT) Received: from compaq.yuetime (c-98-228-191-105.hsd1.il.comcast.net [98.228.191.105]) by mx.google.com with ESMTPS id gx2sm1787158ibb.26.2011.04.30.20.46.12 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 30 Apr 2011 20:46:15 -0700 (PDT) Received: by compaq.yuetime (sSMTP sendmail emulation); Sat, 30 Apr 2011 22:46:10 -0500 Message-Id: <4dbcd787.c2d5e70a.31a2.5a2e@mx.google.com> Date: Sat, 30 Apr 2011 22:46:10 -0500 From: Zhihao Yuan To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/156747: multimedia/mplayer: fix 24-bits OSS + some improvements X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Zhihao Yuan List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 May 2011 03:50:10 -0000 >Number: 156747 >Category: ports >Synopsis: multimedia/mplayer: fix 24-bits OSS + some improvements >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 May 01 03:50:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Zhihao Yuan >Release: FreeBSD 8.2-STABLE amd64 >Organization: Northern Illinois University >Environment: System: FreeBSD compaq.yuetime 8.2-STABLE FreeBSD 8.2-STABLE #0: Mon Mar 14 02:51:28 CDT 2011 root@compaq.yuetime:/usr/obj/usr/src/sys/HOUKAGO amd64 >Description: mplayer does not detects 24-bits OSS correctly. It only detects AFMT_S24_PACKED, which is not available for the OSS on FreeBSD. Two improvements includes: Since alsa-libs is available on FreeBSD, mplayer will link to it (without add it as a dependence in ports). I added a --disable-alsa to the port, since alsa on FreeBSD is for compatibility-only. The log2 in libc is MFCed. Enable it if OS_VERSION matches. >How-To-Repeat: >Fix: Detects both AFMT_S24_LE and AFMT_S24_BE (3 bytes mode, FreeBSD-only). --- patch-mplayer_1 begins here --- diff -ruN --exclude=CVS /usr/ports/multimedia/mplayer.orig/Makefile /usr/ports/multimedia/mplayer/Makefile --- /usr/ports/multimedia/mplayer.orig/Makefile 2011-04-01 06:09:36.000000000 -0500 +++ /usr/ports/multimedia/mplayer/Makefile 2011-04-30 21:53:50.515792533 -0500 @@ -7,7 +7,7 @@ PORTNAME= mplayer PORTVERSION= ${MPLAYER_PORT_VERSION} -PORTREVISION= 0 +PORTREVISION= 1 COMMENT= High performance media player supporting many formats .include "${.CURDIR}/Makefile.shared" @@ -89,6 +89,7 @@ --disable-libdirac-lavc \ --disable-mencoder \ --disable-mpg123 \ + --disable-alsa \ --disable-musepack .include "${.CURDIR}/Makefile.options" @@ -272,9 +273,13 @@ ${WRKSRC}/config.mak @${REINPLACE_CMD} \ -e 's#HAVE_FAST_CMOV 1#HAVE_FAST_CMOV 0#g' \ + ${WRKSRC}/config.h +.if ${OSVERSION} < 802502 + @${REINPLACE_CMD} \ -e 's#HAVE_LOG2 1#HAVE_LOG2 0#g' \ -e 's#HAVE_LOG2F 1#HAVE_LOG2F 0#g' \ ${WRKSRC}/config.h +.endif post-install: @${MKDIR} ${DATADIR} diff -ruN --exclude=CVS /usr/ports/multimedia/mplayer.orig/files/patch-libao2-ao_oss.c /usr/ports/multimedia/mplayer/files/patch-libao2-ao_oss.c --- /usr/ports/multimedia/mplayer.orig/files/patch-libao2-ao_oss.c 2010-04-21 08:07:22.000000000 -0500 +++ /usr/ports/multimedia/mplayer/files/patch-libao2-ao_oss.c 2011-04-30 22:30:14.559196350 -0500 @@ -1,14 +1,36 @@ ---- libao2/ao_oss.c.orig 2009-05-12 21:58:57.000000000 -0500 -+++ libao2/ao_oss.c 2009-07-23 19:58:44.870097203 -0500 -@@ -453,6 +453,7 @@ +--- libao2/ao_oss.c.orig 2010-01-11 14:27:52.000000000 -0600 ++++ libao2/ao_oss.c 2011-04-30 22:30:09.695270802 -0500 +@@ -72,6 +72,10 @@ static int format2oss(int format) + case AF_FORMAT_S16_BE: return AFMT_S16_BE; + #ifdef AFMT_S24_PACKED + case AF_FORMAT_S24_LE: return AFMT_S24_PACKED; ++#elif defined(AFMT_S24_LE) && defined(__FreeBSD__) ++ case AF_FORMAT_S24_LE: return AFMT_S24_LE; ++#elif defined(AFMT_S24_BE) && defined(__FreeBSD__) ++ case AF_FORMAT_S24_BE: return AFMT_S24_BE; + #endif + #ifdef AFMT_U32_LE + case AF_FORMAT_U32_LE: return AFMT_U32_LE; +@@ -115,6 +119,10 @@ static int oss2format(int format) + case AFMT_S16_BE: return AF_FORMAT_S16_BE; + #ifdef AFMT_S24_PACKED + case AFMT_S24_PACKED: return AF_FORMAT_S24_LE; ++#elif defined(AFMT_S24_LE) && defined(__FreeBSD__) ++ case AFMT_S24_LE: return AF_FORMAT_S24_LE; ++#elif defined(AFMT_S24_BE) && defined(__FreeBSD__) ++ case AFMT_S24_BE: return AF_FORMAT_S24_BE; + #endif + #ifdef AFMT_U32_LE + case AFMT_U32_LE: return AF_FORMAT_U32_LE; +@@ -448,6 +456,7 @@ static void reset(void){ fcntl(audio_fd, F_SETFD, FD_CLOEXEC); #endif + ioctl (audio_fd, SNDCTL_DSP_SPEED, &ao_data.samplerate); oss_format = format2oss(ao_data.format); - if(ao_data.format == AF_FORMAT_AC3) + if(AF_FORMAT_IS_AC3(ao_data.format)) ioctl (audio_fd, SNDCTL_DSP_SPEED, &ao_data.samplerate); -@@ -464,7 +465,6 @@ +@@ -459,7 +468,6 @@ static void reset(void){ int c = ao_data.channels-1; ioctl (audio_fd, SNDCTL_DSP_STEREO, &c); } --- patch-mplayer_1 ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun May 1 03:50:21 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 67F9D1065670; Sun, 1 May 2011 03:50:21 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3ED958FC0C; Sun, 1 May 2011 03:50:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p413oLCs090065; Sun, 1 May 2011 03:50:21 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p413oLd3090054; Sun, 1 May 2011 03:50:21 GMT (envelope-from edwin) Date: Sun, 1 May 2011 03:50:21 GMT Message-Id: <201105010350.p413oLd3090054@freefall.freebsd.org> To: lichray@gmail.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156747: multimedia/mplayer: fix 24-bits OSS + some improvements X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 May 2011 03:50:21 -0000 Synopsis: multimedia/mplayer: fix 24-bits OSS + some improvements State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sun May 1 03:50:20 UTC 2011 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156747 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun May 1 04:00:21 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A60CF1065672 for ; Sun, 1 May 2011 04:00:21 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8B1F58FC14 for ; Sun, 1 May 2011 04:00:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p4140Ltq097721 for ; Sun, 1 May 2011 04:00:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p4140LoI097720; Sun, 1 May 2011 04:00:21 GMT (envelope-from gnats) Date: Sun, 1 May 2011 04:00:21 GMT Message-Id: <201105010400.p4140LoI097720@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/156747: multimedia/mplayer: fix 24-bits OSS + some improvements X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 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, 01 May 2011 04:00:21 -0000 The following reply was made to PR ports/156747; it has been noted by GNATS. From: Edwin Groothuis To: riggs@rrr.de Cc: bug-followup@FreeBSD.org Subject: Re: ports/156747: multimedia/mplayer: fix 24-bits OSS + some improvements Date: Sun, 1 May 2011 03:50:18 UT Maintainer of multimedia/mplayer, Please note that PR ports/156747 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/156747 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Sun May 1 06:40:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9A162106564A for ; Sun, 1 May 2011 06:40:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6FFEA8FC08 for ; Sun, 1 May 2011 06:40:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p416eBT6048797 for ; Sun, 1 May 2011 06:40:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p416eB0e048796; Sun, 1 May 2011 06:40:11 GMT (envelope-from gnats) Date: Sun, 1 May 2011 06:40:11 GMT Message-Id: <201105010640.p416eB0e048796@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Kai Wang Cc: Subject: Re: ports/156734: Fix port: sysutils/uhidd rc script fails to set default X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Kai Wang List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 May 2011 06:40:11 -0000 The following reply was made to PR ports/156734; it has been noted by GNATS. From: Kai Wang To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/156734: Fix port: sysutils/uhidd rc script fails to set default Date: Sun, 1 May 2011 08:06:43 +0200 Patch looks good to me. Thanks Kai From owner-freebsd-ports-bugs@FreeBSD.ORG Sun May 1 07:40:13 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E6543106564A for ; Sun, 1 May 2011 07:40:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CA1E88FC18 for ; Sun, 1 May 2011 07:40:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p417eC5k027566 for ; Sun, 1 May 2011 07:40:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p417eCZE027565; Sun, 1 May 2011 07:40:12 GMT (envelope-from gnats) Date: Sun, 1 May 2011 07:40:12 GMT Message-Id: <201105010740.p417eCZE027565@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Pan Tsu Cc: Subject: Re: ports/156747: multimedia/mplayer: fix 24-bits OSS + some improvements X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Pan Tsu List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 May 2011 07:40:13 -0000 The following reply was made to PR ports/156747; it has been noted by GNATS. From: Pan Tsu To: Zhihao Yuan Cc: bug-followup@FreeBSD.org Subject: Re: ports/156747: multimedia/mplayer: fix 24-bits OSS + some improvements Date: Sun, 01 May 2011 11:32:36 +0400 Zhihao Yuan writes: > mplayer does not detects 24-bits OSS correctly. It only > detects AFMT_S24_PACKED, which is not available for the OSS on > FreeBSD. [...] > +@@ -72,6 +72,10 @@ static int format2oss(int format) > + case AF_FORMAT_S16_BE: return AFMT_S16_BE; > + #ifdef AFMT_S24_PACKED > + case AF_FORMAT_S24_LE: return AFMT_S24_PACKED; > ++#elif defined(AFMT_S24_LE) && defined(__FreeBSD__) > ++ case AF_FORMAT_S24_LE: return AFMT_S24_LE; > ++#elif defined(AFMT_S24_BE) && defined(__FreeBSD__) > ++ case AF_FORMAT_S24_BE: return AFMT_S24_BE; Only signed 24bit formats? They do not seem to be specific to our OSS implementation. $ cd audio/oss; make extract $ fgrep -lr AFMT_S24_LE $(make -V WRKDIR) [...] WRKDIR/oss-v4.2-build2004-src-bsd/include/soundcard.h Not so for unsigned (*_U24_*) which are supported by libaf, too. But they're similar to AFMT_U32_(LE|BE) that are used by ao_oss *without* __FreeBSD__ ifdef around them. And because AFMT_S24_(LE|BE) are defined unconditionally on both little- and big-endian systems only the first match would be compiled in, i.e. only AFMT_S24_LE. How about below patch? > + #endif > + #ifdef AFMT_U32_LE > + case AF_FORMAT_U32_LE: return AFMT_U32_LE; > +@@ -115,6 +119,10 @@ static int oss2format(int format) > + case AFMT_S16_BE: return AF_FORMAT_S16_BE; > + #ifdef AFMT_S24_PACKED > + case AFMT_S24_PACKED: return AF_FORMAT_S24_LE; > ++#elif defined(AFMT_S24_LE) && defined(__FreeBSD__) > ++ case AFMT_S24_LE: return AF_FORMAT_S24_LE; > ++#elif defined(AFMT_S24_BE) && defined(__FreeBSD__) > ++ case AFMT_S24_BE: return AF_FORMAT_S24_BE; > + #endif > + #ifdef AFMT_U32_LE > + case AFMT_U32_LE: return AF_FORMAT_U32_LE; > +@@ -448,6 +456,7 @@ static void reset(void){ --- a.diff begins here --- Index: multimedia/mplayer/files/patch-libao2-ao_oss.c =================================================================== RCS file: /a/.cvsup/ports/multimedia/mplayer/files/patch-libao2-ao_oss.c,v retrieving revision 1.4 diff -u -p -r1.4 patch-libao2-ao_oss.c --- multimedia/mplayer/files/patch-libao2-ao_oss.c 21 Apr 2010 13:07:22 -0000 1.4 +++ multimedia/mplayer/files/patch-libao2-ao_oss.c 1 May 2011 07:26:38 -0000 @@ -1,5 +1,43 @@ --- libao2/ao_oss.c.orig 2009-05-12 21:58:57.000000000 -0500 +++ libao2/ao_oss.c 2009-07-23 19:58:44.870097203 -0500 +@@ -72,6 +72,18 @@ static int format2oss(int format) + #ifdef AFMT_S24_PACKED + case AF_FORMAT_S24_LE: return AFMT_S24_PACKED; + #endif ++#ifdef AFMT_U24_LE ++ case AF_FORMAT_U24_LE: return AFMT_U24_LE; ++#endif ++#ifdef AFMT_U24_BE ++ case AF_FORMAT_U24_BE: return AFMT_U24_BE; ++#endif ++#ifdef AFMT_S24_LE ++ case AF_FORMAT_S24_LE: return AFMT_S24_LE; ++#endif ++#ifdef AFMT_S24_BE ++ case AF_FORMAT_S24_BE: return AFMT_S24_BE; ++#endif + #ifdef AFMT_U32_LE + case AF_FORMAT_U32_LE: return AFMT_U32_LE; + #endif +@@ -115,6 +127,18 @@ static int oss2format(int format) + #ifdef AFMT_S24_PACKED + case AFMT_S24_PACKED: return AF_FORMAT_S24_LE; + #endif ++#ifdef AFMT_U24_LE ++ case AFMT_U24_LE: return AF_FORMAT_U24_LE; ++#endif ++#ifdef AFMT_U24_BE ++ case AFMT_U24_BE: return AF_FORMAT_U24_BE; ++#endif ++#ifdef AFMT_S24_LE ++ case AFMT_S24_LE: return AF_FORMAT_S24_LE; ++#endif ++#ifdef AFMT_S24_BE ++ case AFMT_S24_BE: return AF_FORMAT_S24_BE; ++#endif + #ifdef AFMT_U32_LE + case AFMT_U32_LE: return AF_FORMAT_U32_LE; + #endif @@ -453,6 +453,7 @@ fcntl(audio_fd, F_SETFD, FD_CLOEXEC); #endif --- a.diff ends here --- From owner-freebsd-ports-bugs@FreeBSD.ORG Sun May 1 08:10:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A98DA1065672 for ; Sun, 1 May 2011 08:10:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 985AF8FC0A for ; Sun, 1 May 2011 08:10:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p418AB3n055683 for ; Sun, 1 May 2011 08:10:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p418ABiq055682; Sun, 1 May 2011 08:10:11 GMT (envelope-from gnats) Date: Sun, 1 May 2011 08:10:11 GMT Message-Id: <201105010810.p418ABiq055682@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Zhihao Yuan Cc: Subject: Re: ports/156747: multimedia/mplayer: fix 24-bits OSS + some improvements X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Zhihao Yuan List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 May 2011 08:10:11 -0000 The following reply was made to PR ports/156747; it has been noted by GNATS. From: Zhihao Yuan To: Pan Tsu Cc: bug-followup@freebsd.org Subject: Re: ports/156747: multimedia/mplayer: fix 24-bits OSS + some improvements Date: Sun, 1 May 2011 03:07:27 -0500 On Sun, May 1, 2011 at 2:32 AM, Pan Tsu wrote: > Zhihao Yuan writes: > >> =C2=A0 =C2=A0 =C2=A0 mplayer does not detects 24-bits OSS correctly. It = only >> detects AFMT_S24_PACKED, which is not available for the OSS on >> FreeBSD. > [...] >> +@@ -72,6 +72,10 @@ static int format2oss(int format) >> + =C2=A0 =C2=A0 case AF_FORMAT_S16_BE: return AFMT_S16_BE; >> + #ifdef AFMT_S24_PACKED >> + =C2=A0 =C2=A0 case AF_FORMAT_S24_LE: return AFMT_S24_PACKED; > >> ++#elif defined(AFMT_S24_LE) && defined(__FreeBSD__) >> ++ =C2=A0 =C2=A0case AF_FORMAT_S24_LE: return AFMT_S24_LE; >> ++#elif defined(AFMT_S24_BE) && defined(__FreeBSD__) >> ++ =C2=A0 =C2=A0case AF_FORMAT_S24_BE: return AFMT_S24_BE; > > Only signed 24bit formats? They do not seem to be specific to our OSS > implementation. > > =C2=A0$ cd audio/oss; make extract > =C2=A0$ fgrep -lr AFMT_S24_LE $(make -V WRKDIR) > =C2=A0[...] > =C2=A0WRKDIR/oss-v4.2-build2004-src-bsd/include/soundcard.h > > Not so for unsigned (*_U24_*) which are supported by libaf, too. > But they're similar to AFMT_U32_(LE|BE) that are used by ao_oss > *without* __FreeBSD__ ifdef around them. > > And because AFMT_S24_(LE|BE) are defined unconditionally on both little- > and big-endian systems only the first match would be compiled in, > i.e. only AFMT_S24_LE. How about below patch? > >> + #endif >> + #ifdef AFMT_U32_LE >> + =C2=A0 =C2=A0 case AF_FORMAT_U32_LE: return AFMT_U32_LE; >> +@@ -115,6 +119,10 @@ static int oss2format(int format) >> + =C2=A0 =C2=A0 case AFMT_S16_BE: return AF_FORMAT_S16_BE; >> + #ifdef AFMT_S24_PACKED >> + =C2=A0 =C2=A0 case AFMT_S24_PACKED: return AF_FORMAT_S24_LE; >> ++#elif defined(AFMT_S24_LE) && defined(__FreeBSD__) >> ++ =C2=A0 =C2=A0case AFMT_S24_LE: return AF_FORMAT_S24_LE; >> ++#elif defined(AFMT_S24_BE) && defined(__FreeBSD__) >> ++ =C2=A0 =C2=A0case AFMT_S24_BE: return AF_FORMAT_S24_BE; >> + #endif >> + #ifdef AFMT_U32_LE >> + =C2=A0 =C2=A0 case AFMT_U32_LE: return AF_FORMAT_U32_LE; >> +@@ -448,6 +456,7 @@ static void reset(void){ > > --- a.diff begins here --- > Index: multimedia/mplayer/files/patch-libao2-ao_oss.c > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > RCS file: /a/.cvsup/ports/multimedia/mplayer/files/patch-libao2-ao_oss.c,= v > retrieving revision 1.4 > diff -u -p -r1.4 patch-libao2-ao_oss.c > --- multimedia/mplayer/files/patch-libao2-ao_oss.c =C2=A0 =C2=A0 =C2=A021= Apr 2010 13:07:22 -0000 =C2=A0 =C2=A0 =C2=A01.4 > +++ multimedia/mplayer/files/patch-libao2-ao_oss.c =C2=A0 =C2=A0 =C2=A01 = May 2011 07:26:38 -0000 > @@ -1,5 +1,43 @@ > =C2=A0--- libao2/ao_oss.c.orig =C2=A0 =C2=A0 =C2=A0 2009-05-12 21:58:57.0= 00000000 -0500 > =C2=A0+++ libao2/ao_oss.c =C2=A0 =C2=A02009-07-23 19:58:44.870097203 -050= 0 > +@@ -72,6 +72,18 @@ static int format2oss(int format) > + #ifdef AFMT_S24_PACKED > + =C2=A0 =C2=A0 case AF_FORMAT_S24_LE: return AFMT_S24_PACKED; > + #endif > ++#ifdef AFMT_U24_LE > ++ =C2=A0 =C2=A0case AF_FORMAT_U24_LE: return AFMT_U24_LE; > ++#endif > ++#ifdef AFMT_U24_BE > ++ =C2=A0 =C2=A0case AF_FORMAT_U24_BE: return AFMT_U24_BE; > ++#endif > ++#ifdef AFMT_S24_LE > ++ =C2=A0 =C2=A0case AF_FORMAT_S24_LE: return AFMT_S24_LE; > ++#endif > ++#ifdef AFMT_S24_BE > ++ =C2=A0 =C2=A0case AF_FORMAT_S24_BE: return AFMT_S24_BE; > ++#endif > + #ifdef AFMT_U32_LE > + =C2=A0 =C2=A0 case AF_FORMAT_U32_LE: return AFMT_U32_LE; > + #endif > +@@ -115,6 +127,18 @@ static int oss2format(int format) > + #ifdef AFMT_S24_PACKED > + =C2=A0 =C2=A0 case AFMT_S24_PACKED: return AF_FORMAT_S24_LE; > + #endif > ++#ifdef AFMT_U24_LE > ++ =C2=A0 =C2=A0case AFMT_U24_LE: return AF_FORMAT_U24_LE; > ++#endif > ++#ifdef AFMT_U24_BE > ++ =C2=A0 =C2=A0case AFMT_U24_BE: return AF_FORMAT_U24_BE; > ++#endif > ++#ifdef AFMT_S24_LE > ++ =C2=A0 =C2=A0case AFMT_S24_LE: return AF_FORMAT_S24_LE; > ++#endif > ++#ifdef AFMT_S24_BE > ++ =C2=A0 =C2=A0case AFMT_S24_BE: return AF_FORMAT_S24_BE; > ++#endif > + #ifdef AFMT_U32_LE > + =C2=A0 =C2=A0 case AFMT_U32_LE: return AF_FORMAT_U32_LE; > + #endif > =C2=A0@@ -453,6 +453,7 @@ > =C2=A0 =C2=A0fcntl(audio_fd, F_SETFD, FD_CLOEXEC); > =C2=A0#endif > --- a.diff ends here --- > I checked the 'official' oss header file (on linux/netbsd), and AFMT_*24_* exist in both FreeBSD and OSS 4.x. I agree with the new patch. --=20 Zhihao Yuan The best way to predict the future is to invent it. From owner-freebsd-ports-bugs@FreeBSD.ORG Sun May 1 08:20:13 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5C07B106564A for ; Sun, 1 May 2011 08:20:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3049E8FC12 for ; Sun, 1 May 2011 08:20:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p418KCjS066517 for ; Sun, 1 May 2011 08:20:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p418KCFC066516; Sun, 1 May 2011 08:20:12 GMT (envelope-from gnats) Date: Sun, 1 May 2011 08:20:12 GMT Message-Id: <201105010820.p418KCFC066516@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Zhihao Yuan Cc: Subject: Re: ports/156747: multimedia/mplayer: fix 24-bits OSS some improvements X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Zhihao Yuan List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 May 2011 08:20:13 -0000 The following reply was made to PR ports/156747; it has been noted by GNATS. From: Zhihao Yuan To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/156747: multimedia/mplayer: fix 24-bits OSS some improvements Date: Sun, 1 May 2011 03:12:44 -0500 I mean, these macros only exist in OSS 4.x and FreeBSD, and we won't suffer from incompatible implementations (like, 24-bit in 4 bytes mode...) (I should not just reply the mail in my previous followup) -- Zhihao Yuan The best way to predict the future is to invent it. From owner-freebsd-ports-bugs@FreeBSD.ORG Sun May 1 08:30:15 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A25021065674 for ; Sun, 1 May 2011 08:30:15 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 76BD68FC16 for ; Sun, 1 May 2011 08:30:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p418UFfF075949 for ; Sun, 1 May 2011 08:30:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p418UFZs075944; Sun, 1 May 2011 08:30:15 GMT (envelope-from gnats) Date: Sun, 1 May 2011 08:30:15 GMT Message-Id: <201105010830.p418UFZs075944@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Zhihao Yuan Cc: Subject: Re: ports/156747: multimedia/mplayer: fix 24-bits OSS some improvements X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Zhihao Yuan List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 May 2011 08:30:15 -0000 The following reply was made to PR ports/156747; it has been noted by GNATS. From: Zhihao Yuan To: bug-followup@FreeBSD.org, lichray@gmail.com Cc: Subject: Re: ports/156747: multimedia/mplayer: fix 24-bits OSS some improvements Date: Sun, 1 May 2011 03:20:24 -0500 Oh no. The new patch is wrong.... Because the AFMT_*24_*E in OSS 4.x is in 4 bytes mode! And that's why mplayer uses AFMT_S24_PACKED, which is the real useful OSS v4 24-bit API. My first patch is correct, relatively. Just need to add the BE support (though may not be as useful as SE). -- Zhihao Yuan The best way to predict the future is to invent it. From owner-freebsd-ports-bugs@FreeBSD.ORG Sun May 1 08:40:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0FB34106564A for ; Sun, 1 May 2011 08:40:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D86B38FC17 for ; Sun, 1 May 2011 08:40:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p418eAZb085671 for ; Sun, 1 May 2011 08:40:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p418eATZ085670; Sun, 1 May 2011 08:40:10 GMT (envelope-from gnats) Date: Sun, 1 May 2011 08:40:10 GMT Message-Id: <201105010840.p418eATZ085670@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Zhihao Yuan Cc: Subject: Re: ports/156747: multimedia/mplayer: fix 24-bits OSS some improvements X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Zhihao Yuan List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 May 2011 08:40:11 -0000 The following reply was made to PR ports/156747; it has been noted by GNATS. From: Zhihao Yuan To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/156747: multimedia/mplayer: fix 24-bits OSS some improvements Date: Sun, 1 May 2011 03:31:52 -0500 --0016368e2ffb22761704a232bd9c Content-Type: text/plain; charset=UTF-8 In this patch, I just make everything FreeBSD-only (since these macros have different meanings from those in OSS v4). I have tested the signed 24-bit audio, OK. But I don't have any unsigned audio, since PCM is signed-only. -- Zhihao Yuan The best way to predict the future is to invent it. --0016368e2ffb22761704a232bd9c Content-Type: text/x-csrc; charset=US-ASCII; name="patch-libao2-ao_oss.c" Content-Disposition: attachment; filename="patch-libao2-ao_oss.c" Content-Transfer-Encoding: base64 X-Attachment-Id: f_gn5q0zdz0 LS0tIGxpYmFvMi9hb19vc3MuYy5vcmlnCTIwMTAtMDEtMTEgMTQ6Mjc6NTIuMDAwMDAwMDAwIC0w NjAwCisrKyBsaWJhbzIvYW9fb3NzLmMJMjAxMS0wNS0wMSAwMzoyNDozNy40NjU1ODAzNjIgLTA1 MDAKQEAgLTcyLDYgKzcyLDExIEBAIHN0YXRpYyBpbnQgZm9ybWF0Mm9zcyhpbnQgZm9ybWF0KQog ICAgIGNhc2UgQUZfRk9STUFUX1MxNl9CRTogcmV0dXJuIEFGTVRfUzE2X0JFOwogI2lmZGVmIEFG TVRfUzI0X1BBQ0tFRAogICAgIGNhc2UgQUZfRk9STUFUX1MyNF9MRTogcmV0dXJuIEFGTVRfUzI0 X1BBQ0tFRDsKKyNlbGlmIGRlZmluZWQoX19GcmVlQlNEX18pCisgICAgY2FzZSBBRl9GT1JNQVRf VTI0X0xFOiByZXR1cm4gQUZNVF9VMjRfTEU7CisgICAgY2FzZSBBRl9GT1JNQVRfVTI0X0JFOiBy ZXR1cm4gQUZNVF9VMjRfQkU7CisgICAgY2FzZSBBRl9GT1JNQVRfUzI0X0xFOiByZXR1cm4gQUZN VF9TMjRfTEU7CisgICAgY2FzZSBBRl9GT1JNQVRfUzI0X0JFOiByZXR1cm4gQUZNVF9TMjRfQkU7 CiAjZW5kaWYKICNpZmRlZiBBRk1UX1UzMl9MRQogICAgIGNhc2UgQUZfRk9STUFUX1UzMl9MRTog cmV0dXJuIEFGTVRfVTMyX0xFOwpAQCAtMTE1LDYgKzEyMCwxMSBAQCBzdGF0aWMgaW50IG9zczJm b3JtYXQoaW50IGZvcm1hdCkKICAgICBjYXNlIEFGTVRfUzE2X0JFOiByZXR1cm4gQUZfRk9STUFU X1MxNl9CRTsKICNpZmRlZiBBRk1UX1MyNF9QQUNLRUQKICAgICBjYXNlIEFGTVRfUzI0X1BBQ0tF RDogcmV0dXJuIEFGX0ZPUk1BVF9TMjRfTEU7CisjZWxpZiBkZWZpbmVkKF9fRnJlZUJTRF9fKQor ICAgIGNhc2UgQUZNVF9VMjRfTEU6IHJldHVybiBBRl9GT1JNQVRfVTI0X0xFOworICAgIGNhc2Ug QUZNVF9VMjRfQkU6IHJldHVybiBBRl9GT1JNQVRfVTI0X0JFOworICAgIGNhc2UgQUZNVF9TMjRf TEU6IHJldHVybiBBRl9GT1JNQVRfUzI0X0xFOworICAgIGNhc2UgQUZNVF9TMjRfQkU6IHJldHVy biBBRl9GT1JNQVRfUzI0X0JFOwogI2VuZGlmCiAjaWZkZWYgQUZNVF9VMzJfTEUKICAgICBjYXNl IEFGTVRfVTMyX0xFOiByZXR1cm4gQUZfRk9STUFUX1UzMl9MRTsKQEAgLTQ0OCw2ICs0NTgsNyBA QCBzdGF0aWMgdm9pZCByZXNldCh2b2lkKXsKICAgZmNudGwoYXVkaW9fZmQsIEZfU0VURkQsIEZE X0NMT0VYRUMpOwogI2VuZGlmCiAKKyAgaW9jdGwgKGF1ZGlvX2ZkLCBTTkRDVExfRFNQX1NQRUVE LCAmYW9fZGF0YS5zYW1wbGVyYXRlKTsKICAgb3NzX2Zvcm1hdCA9IGZvcm1hdDJvc3MoYW9fZGF0 YS5mb3JtYXQpOwogICBpZihBRl9GT1JNQVRfSVNfQUMzKGFvX2RhdGEuZm9ybWF0KSkKICAgICBp b2N0bCAoYXVkaW9fZmQsIFNORENUTF9EU1BfU1BFRUQsICZhb19kYXRhLnNhbXBsZXJhdGUpOwpA QCAtNDU5LDcgKzQ3MCw2IEBAIHN0YXRpYyB2b2lkIHJlc2V0KHZvaWQpewogICAgICAgaW50IGMg PSBhb19kYXRhLmNoYW5uZWxzLTE7CiAgICAgICBpb2N0bCAoYXVkaW9fZmQsIFNORENUTF9EU1Bf U1RFUkVPLCAmYyk7CiAgICAgfQotICAgIGlvY3RsIChhdWRpb19mZCwgU05EQ1RMX0RTUF9TUEVF RCwgJmFvX2RhdGEuc2FtcGxlcmF0ZSk7CiAgIH0KIH0KIAo= --0016368e2ffb22761704a232bd9c-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sun May 1 08:50:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 93870106564A for ; Sun, 1 May 2011 08:50:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 675AF8FC18 for ; Sun, 1 May 2011 08:50:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p418oBSX094490 for ; Sun, 1 May 2011 08:50:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p418oBRW094489; Sun, 1 May 2011 08:50:11 GMT (envelope-from gnats) Date: Sun, 1 May 2011 08:50:11 GMT Message-Id: <201105010850.p418oBRW094489@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Kai Wang Cc: Subject: Re: ports/156734: Fix port: sysutils/uhidd rc script fails to set default X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Kai Wang List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 May 2011 08:50:11 -0000 The following reply was made to PR ports/156734; it has been noted by GNATS. From: Kai Wang To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/156734: Fix port: sysutils/uhidd rc script fails to set default Date: Sun, 1 May 2011 10:47:12 +0200 Approved. Kai From owner-freebsd-ports-bugs@FreeBSD.ORG Sun May 1 09:50:09 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 246531065672 for ; Sun, 1 May 2011 09:50:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DB8728FC17 for ; Sun, 1 May 2011 09:50:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p419o75Y048663 for ; Sun, 1 May 2011 09:50:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p419o7cB048662; Sun, 1 May 2011 09:50:07 GMT (envelope-from gnats) Resent-Date: Sun, 1 May 2011 09:50:07 GMT Resent-Message-Id: <201105010950.p419o7cB048662@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Stefan Walter Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8C4F71065770 for ; Sun, 1 May 2011 09:44:58 +0000 (UTC) (envelope-from sw@gegenunendlich.de) Received: from mail.hamcom.de (mail.hamcom.de [212.37.37.213]) by mx1.freebsd.org (Postfix) with ESMTP id B336B8FC16 for ; Sun, 1 May 2011 09:44:57 +0000 (UTC) Received: from adsl-dyn-88-208-145-136.heliweb.de ([88.208.145.136] helo=birne.dunkelkammer.void) by mail.hamcom.de with esmtpa (Exim 4.73) (envelope-from ) id 1QGSn7-0002GL-89; Sun, 01 May 2011 11:18:14 +0200 Received: by birne.dunkelkammer.void (Postfix, from userid 1002) id D08981142D; Sun, 1 May 2011 11:18:12 +0200 (CEST) Message-Id: <20110501091812.D08981142D@birne.dunkelkammer.void> Date: Sun, 1 May 2011 11:18:12 +0200 (CEST) From: Stefan Walter To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: johnson.peter@gmail.com Subject: ports/156750: [PATCH] Update textproc/dblatex to 0.3.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Stefan Walter List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 May 2011 09:50:09 -0000 >Number: 156750 >Category: ports >Synopsis: [PATCH] Update textproc/dblatex to 0.3.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: Sun May 01 09:50:07 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Stefan Walter >Release: FreeBSD 8.2-RELEASE amd64 >Organization: Infinity Approximation Task Force >Environment: System: FreeBSD birne.dunkelkammer.void 8.2-RELEASE FreeBSD 8.2-RELEASE #1: Sat Mar 5 09:15:40 CET 2011 root@birne.dunkelkammer.void:/usr/obj/usr/src/sys/BIRNE amd64 >Description: - Update textproc/dblatex to 0.3.1. - Use DOCSDIR and DATADIR macros in pkg-plist. >How-To-Repeat: >Fix: --- dblatex-0.3.1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/textproc/dblatex/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- Makefile 25 Feb 2011 03:19:28 -0000 1.11 +++ Makefile 1 May 2011 09:12:16 -0000 @@ -6,8 +6,8 @@ # PORTNAME= dblatex -PORTVERSION= 0.2.12 -PORTREVISION= 3 +PORTVERSION= 0.3.1 +#PORTREVISION= 0 CATEGORIES= textproc MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} @@ -31,7 +31,7 @@ post-patch: .if defined(NOPORTDOCS) @${REINPLACE_CMD} -e '/pdfdocs),/d' ${WRKSRC}/setup.py - @${REINPLACE_CMD} -e '/docs\/html/d' ${WRKSRC}/setup.py + @${REINPLACE_CMD} -e '/htmldoc)/d' ${WRKSRC}/setup.py .endif @${REINPLACE_CMD} -e "s,share/man/man1,man/man1,g" ${WRKSRC}/setup.py Index: distinfo =================================================================== RCS file: /home/pcvs/ports/textproc/dblatex/distinfo,v retrieving revision 1.6 diff -u -r1.6 distinfo --- distinfo 25 Feb 2011 03:19:28 -0000 1.6 +++ distinfo 1 May 2011 09:12:16 -0000 @@ -1,2 +1,2 @@ -SHA256 (dblatex-0.2.12.tar.bz2) = e2fb8a77d659f075e8477944345958859ef2c353ff7b6bc1c9131ecb68864ff2 -SIZE (dblatex-0.2.12.tar.bz2) = 1108825 +SHA256 (dblatex-0.3.1.tar.bz2) = 37190dac7db740853e18d60ff5aa1e39f0f929c5cfdbbf2f063c40edefc2da07 +SIZE (dblatex-0.3.1.tar.bz2) = 1174256 Index: pkg-plist =================================================================== RCS file: /home/pcvs/ports/textproc/dblatex/pkg-plist,v retrieving revision 1.5 diff -u -r1.5 pkg-plist --- pkg-plist 4 Sep 2009 14:29:54 -0000 1.5 +++ pkg-plist 1 May 2011 09:12:16 -0000 @@ -1,456 +1,498 @@ @comment $FreeBSD: ports/textproc/dblatex/pkg-plist,v 1.5 2009/09/04 14:29:54 wxs Exp $ bin/dblatex -share/dblatex/latex/contrib/db2latex/db2latex.sty -share/dblatex/latex/contrib/db2latex/graphics/caution.eps -share/dblatex/latex/contrib/db2latex/graphics/caution.pdf -share/dblatex/latex/contrib/db2latex/graphics/important.eps -share/dblatex/latex/contrib/db2latex/graphics/important.pdf -share/dblatex/latex/contrib/db2latex/graphics/note.eps -share/dblatex/latex/contrib/db2latex/graphics/note.pdf -share/dblatex/latex/contrib/db2latex/graphics/tip.eps -share/dblatex/latex/contrib/db2latex/graphics/tip.pdf -share/dblatex/latex/contrib/db2latex/graphics/warning.eps -share/dblatex/latex/contrib/db2latex/graphics/warning.pdf -share/dblatex/latex/contrib/db2latex/param.xsl -share/dblatex/latex/contrib/example/dbsimple.sty -share/dblatex/latex/graphics/dblatex.eps -share/dblatex/latex/graphics/dblatex.png -share/dblatex/latex/graphics/warning.eps -share/dblatex/latex/graphics/warning.fig -share/dblatex/latex/graphics/warning.pdf -share/dblatex/latex/misc/attachfile.sty -share/dblatex/latex/misc/bibtopic.sty -share/dblatex/latex/misc/enumitem.sty -share/dblatex/latex/misc/multirow2.sty -share/dblatex/latex/misc/passivetex/LICENSE -share/dblatex/latex/misc/passivetex/dummyels.sty -share/dblatex/latex/misc/passivetex/unicode.sty -share/dblatex/latex/misc/ragged2e.sty -share/dblatex/latex/misc/lastpage.sty -share/dblatex/latex/misc/xelatex/xecyr.sty -share/dblatex/latex/scripts/doc.ist -share/dblatex/latex/specs/db2latex.specs -share/dblatex/latex/specs/native.specs -share/dblatex/latex/specs/simple.specs -share/dblatex/latex/style/dbk_admonition.sty -share/dblatex/latex/style/dbk_annot.sty -share/dblatex/latex/style/dbk_biblio.sty -share/dblatex/latex/style/dbk_callout.sty -share/dblatex/latex/style/dbk_changebar.sty -share/dblatex/latex/style/dbk_core.sty -share/dblatex/latex/style/dbk_fonts.sty -share/dblatex/latex/style/dbk_graphic.sty -share/dblatex/latex/style/dbk_headfoot.sty -share/dblatex/latex/style/dbk_hyper.sty -share/dblatex/latex/style/dbk_item.sty -share/dblatex/latex/style/dbk_locale.sty -share/dblatex/latex/style/dbk_revision.sty -share/dblatex/latex/style/dbk_table.sty -share/dblatex/latex/style/dbk_title.sty -share/dblatex/latex/style/dbk_verbatim.sty -share/dblatex/latex/style/docbook.sty -share/dblatex/xsl/abstract.xsl -share/dblatex/xsl/admon.xsl -share/dblatex/xsl/annotation.xsl -share/dblatex/xsl/appendix.xsl -share/dblatex/xsl/biblio.xsl -share/dblatex/xsl/bridgehead.xsl -share/dblatex/xsl/callout.xsl -share/dblatex/xsl/chapter.xsl -share/dblatex/xsl/chunker.xsl -share/dblatex/xsl/citation.xsl -share/dblatex/xsl/classsynopsis.xsl -share/dblatex/xsl/color.xsl -share/dblatex/xsl/common/af.xml -share/dblatex/xsl/common/am.xml -share/dblatex/xsl/common/ar.xml -share/dblatex/xsl/common/az.xml -share/dblatex/xsl/common/bg.xml -share/dblatex/xsl/common/bn.xml -share/dblatex/xsl/common/bs.xml -share/dblatex/xsl/common/ca.xml -share/dblatex/xsl/common/common.xsl -share/dblatex/xsl/common/cs.xml -share/dblatex/xsl/common/cy.xml -share/dblatex/xsl/common/da.xml -share/dblatex/xsl/common/de.xml -share/dblatex/xsl/common/el.xml -share/dblatex/xsl/common/en.xml -share/dblatex/xsl/common/es.xml -share/dblatex/xsl/common/et.xml -share/dblatex/xsl/common/eu.xml -share/dblatex/xsl/common/fa.xml -share/dblatex/xsl/common/fi.xml -share/dblatex/xsl/common/fr.xml -share/dblatex/xsl/common/ga.xml -share/dblatex/xsl/common/gentext.xsl -share/dblatex/xsl/common/gu.xml -share/dblatex/xsl/common/he.xml -share/dblatex/xsl/common/hi.xml -share/dblatex/xsl/common/hr.xml -share/dblatex/xsl/common/hu.xml -share/dblatex/xsl/common/id.xml -share/dblatex/xsl/common/it.xml -share/dblatex/xsl/common/ja.xml -share/dblatex/xsl/common/kn.xml -share/dblatex/xsl/common/ko.xml -share/dblatex/xsl/common/l10n.dtd -share/dblatex/xsl/common/l10n.xml -share/dblatex/xsl/common/l10n.xsl -share/dblatex/xsl/common/la.xml -share/dblatex/xsl/common/labels.xsl -share/dblatex/xsl/common/lib.xsl -share/dblatex/xsl/common/lt.xml -share/dblatex/xsl/common/mkdoclist.xsl -share/dblatex/xsl/common/mklistings.xsl -share/dblatex/xsl/common/mn.xml -share/dblatex/xsl/common/nl.xml -share/dblatex/xsl/common/nn.xml -share/dblatex/xsl/common/no.xml -share/dblatex/xsl/common/olink.xsl -share/dblatex/xsl/common/or.xml -share/dblatex/xsl/common/pa.xml -share/dblatex/xsl/common/pl.xml -share/dblatex/xsl/common/pt.xml -share/dblatex/xsl/common/pt_br.xml -share/dblatex/xsl/common/ro.xml -share/dblatex/xsl/common/ru.xml -share/dblatex/xsl/common/sk.xml -share/dblatex/xsl/common/sl.xml -share/dblatex/xsl/common/sq.xml -share/dblatex/xsl/common/sr.xml -share/dblatex/xsl/common/sr_Latn.xml -share/dblatex/xsl/common/subtitles.xsl -share/dblatex/xsl/common/sv.xml -share/dblatex/xsl/common/ta.xml -share/dblatex/xsl/common/th.xml -share/dblatex/xsl/common/titles.xsl -share/dblatex/xsl/common/tl.xml -share/dblatex/xsl/common/tr.xml -share/dblatex/xsl/common/uk.xml -share/dblatex/xsl/common/vi.xml -share/dblatex/xsl/common/xh.xml -share/dblatex/xsl/common/zh_cn.xml -share/dblatex/xsl/common/zh_tw.xml -share/dblatex/xsl/component.xsl -share/dblatex/xsl/dingbat.xsl -share/dblatex/xsl/docbook.xsl -share/dblatex/xsl/docbookng.xsl -share/dblatex/xsl/email.xsl -share/dblatex/xsl/equation.xsl -share/dblatex/xsl/errors.xsl -share/dblatex/xsl/example.xsl -share/dblatex/xsl/fasttext.xsl -share/dblatex/xsl/figure.xsl -share/dblatex/xsl/footnote.xsl -share/dblatex/xsl/format.xsl -share/dblatex/xsl/glossary.xsl -share/dblatex/xsl/graphic.xsl -share/dblatex/xsl/index.xsl -share/dblatex/xsl/inlined.xsl -share/dblatex/xsl/keyword.xsl -share/dblatex/xsl/labelid.xsl -share/dblatex/xsl/lang.xsl -share/dblatex/xsl/latex_book.xsl -share/dblatex/xsl/latex_book_fast.xsl -share/dblatex/xsl/legalnotice.xsl -share/dblatex/xsl/lists.xsl -share/dblatex/xsl/main.xsl -share/dblatex/xsl/mapping.dtd -share/dblatex/xsl/mathml2/README -share/dblatex/xsl/mathml2/cmarkup.xsl -share/dblatex/xsl/mathml2/entities.xsl -share/dblatex/xsl/mathml2/glayout.xsl -share/dblatex/xsl/mathml2/mapmmlent.xml -share/dblatex/xsl/mathml2/mathml.xsl -share/dblatex/xsl/mathml2/mmltex.xsl -share/dblatex/xsl/mathml2/scripts.xsl -share/dblatex/xsl/mathml2/tables.xsl -share/dblatex/xsl/mathml2/tokens.xsl -share/dblatex/xsl/mediaobject.xsl -share/dblatex/xsl/mediaobjectco.xsl -share/dblatex/xsl/msgset.xsl -share/dblatex/xsl/newtbl.xsl -share/dblatex/xsl/para.xsl -share/dblatex/xsl/param.xsl -share/dblatex/xsl/part.xsl -share/dblatex/xsl/pi.xsl -share/dblatex/xsl/preamble.xsl -share/dblatex/xsl/procedure.xsl -share/dblatex/xsl/qandaset.xsl -share/dblatex/xsl/quote.xsl -share/dblatex/xsl/refentry.xsl -share/dblatex/xsl/revision.xsl -share/dblatex/xsl/scape.xsl -share/dblatex/xsl/secmap.xml -share/dblatex/xsl/sections.xsl -share/dblatex/xsl/set.xsl -share/dblatex/xsl/sgmltag.xsl -share/dblatex/xsl/sidebar.xsl -share/dblatex/xsl/synopsis.xsl -share/dblatex/xsl/tablen.xsl -share/dblatex/xsl/texmap.xml -share/dblatex/xsl/toc_lot.xsl -share/dblatex/xsl/url.xsl -share/dblatex/xsl/verbatim.xsl -share/dblatex/xsl/verbatimco.xsl -share/dblatex/xsl/version.xsl -share/dblatex/xsl/xref.xsl -%%PORTDOCS%%share/doc/dblatex/html/manual/alt.use.html -%%PORTDOCS%%share/doc/dblatex/html/manual/annotation.support.html -%%PORTDOCS%%share/doc/dblatex/html/manual/apas02.html -%%PORTDOCS%%share/doc/dblatex/html/manual/apas03.html -%%PORTDOCS%%share/doc/dblatex/html/manual/apas04.html -%%PORTDOCS%%share/doc/dblatex/html/manual/apas05.html -%%PORTDOCS%%share/doc/dblatex/html/manual/apas06.html -%%PORTDOCS%%share/doc/dblatex/html/manual/apas07.html -%%PORTDOCS%%share/doc/dblatex/html/manual/apas08.html -%%PORTDOCS%%share/doc/dblatex/html/manual/apas09.html -%%PORTDOCS%%share/doc/dblatex/html/manual/apas10.html -%%PORTDOCS%%share/doc/dblatex/html/manual/apas11.html -%%PORTDOCS%%share/doc/dblatex/html/manual/apas12.html -%%PORTDOCS%%share/doc/dblatex/html/manual/apas13.html -%%PORTDOCS%%share/doc/dblatex/html/manual/apas14.html -%%PORTDOCS%%share/doc/dblatex/html/manual/apas15.html -%%PORTDOCS%%share/doc/dblatex/html/manual/apas16.html -%%PORTDOCS%%share/doc/dblatex/html/manual/apas17.html -%%PORTDOCS%%share/doc/dblatex/html/manual/apas18.html -%%PORTDOCS%%share/doc/dblatex/html/manual/apas19.html -%%PORTDOCS%%share/doc/dblatex/html/manual/apas20.html -%%PORTDOCS%%share/doc/dblatex/html/manual/bi01.html -%%PORTDOCS%%share/doc/dblatex/html/manual/bibliography.numbered.html -%%PORTDOCS%%share/doc/dblatex/html/manual/bibliography.tocdepth.html -%%PORTDOCS%%share/doc/dblatex/html/manual/biblioentry.item.separator.html -%%PORTDOCS%%share/doc/dblatex/html/manual/callout.linkends.hot.html -%%PORTDOCS%%share/doc/dblatex/html/manual/callout.markup.circled.html -%%PORTDOCS%%share/doc/dblatex/html/manual/calloutlist.style.html -%%PORTDOCS%%share/doc/dblatex/html/manual/ch01.html -%%PORTDOCS%%share/doc/dblatex/html/manual/ch01s02.html -%%PORTDOCS%%share/doc/dblatex/html/manual/ch01s03.html -%%PORTDOCS%%share/doc/dblatex/html/manual/ch01s05.html -%%PORTDOCS%%share/doc/dblatex/html/manual/ch02.html -%%PORTDOCS%%share/doc/dblatex/html/manual/ch02s02.html -%%PORTDOCS%%share/doc/dblatex/html/manual/ch02s03.html -%%PORTDOCS%%share/doc/dblatex/html/manual/ch03.html -%%PORTDOCS%%share/doc/dblatex/html/manual/ch03s05.html -%%PORTDOCS%%share/doc/dblatex/html/manual/ch03s06.html -%%PORTDOCS%%share/doc/dblatex/html/manual/ch03s08.html -%%PORTDOCS%%share/doc/dblatex/html/manual/ch03s09.html -%%PORTDOCS%%share/doc/dblatex/html/manual/ch03s10.html -%%PORTDOCS%%share/doc/dblatex/html/manual/ch03s11.html -%%PORTDOCS%%share/doc/dblatex/html/manual/ch04s03.html -%%PORTDOCS%%share/doc/dblatex/html/manual/ch04s07.html -%%PORTDOCS%%share/doc/dblatex/html/manual/ch05.html -%%PORTDOCS%%share/doc/dblatex/html/manual/citation.default.style.html -%%PORTDOCS%%share/doc/dblatex/html/manual/citation.natbib.options.html -%%PORTDOCS%%share/doc/dblatex/html/manual/citation.natbib.use.html -%%PORTDOCS%%share/doc/dblatex/html/manual/cjk.font.html -%%PORTDOCS%%share/doc/dblatex/html/manual/co.linkends.show.html -%%PORTDOCS%%share/doc/dblatex/html/manual/colophon.tocdepth.html -%%PORTDOCS%%share/doc/dblatex/html/manual/dedication.tocdepth.html -%%PORTDOCS%%share/doc/dblatex/html/manual/doc.alignment.html -%%PORTDOCS%%share/doc/dblatex/html/manual/doc.collab.show.html -%%PORTDOCS%%share/doc/dblatex/html/manual/doc.layout.html -%%PORTDOCS%%share/doc/dblatex/html/manual/doc.lot.show.html -%%PORTDOCS%%share/doc/dblatex/html/manual/doc.pdfcreator.show.html -%%PORTDOCS%%share/doc/dblatex/html/manual/doc.publisher.show.html -%%PORTDOCS%%share/doc/dblatex/html/manual/doc.section.depth.html -%%PORTDOCS%%share/doc/dblatex/html/manual/doc.toc.show.html -%%PORTDOCS%%share/doc/dblatex/html/manual/draft.mode.html -%%PORTDOCS%%share/doc/dblatex/html/manual/draft.watermark.html -%%PORTDOCS%%share/doc/dblatex/html/manual/equation.default.position.html -%%PORTDOCS%%share/doc/dblatex/html/manual/example.default.position.html -%%PORTDOCS%%share/doc/dblatex/html/manual/figure.caution.html -%%PORTDOCS%%share/doc/dblatex/html/manual/figure.default.position.html -%%PORTDOCS%%share/doc/dblatex/html/manual/figure.important.html -%%PORTDOCS%%share/doc/dblatex/html/manual/figure.note.html -%%PORTDOCS%%share/doc/dblatex/html/manual/figure.tip.html -%%PORTDOCS%%share/doc/dblatex/html/manual/figure.title.top.html -%%PORTDOCS%%share/doc/dblatex/html/manual/figure.warning.html -%%PORTDOCS%%share/doc/dblatex/html/manual/figures/eq1.png -%%PORTDOCS%%share/doc/dblatex/html/manual/figures/eq4.png -%%PORTDOCS%%share/doc/dblatex/html/manual/filename.as.url.html -%%PORTDOCS%%share/doc/dblatex/html/manual/funcsynopsis.decoration.html -%%PORTDOCS%%share/doc/dblatex/html/manual/funcsynopsis.style.html -%%PORTDOCS%%share/doc/dblatex/html/manual/function.parens.html -%%PORTDOCS%%share/doc/dblatex/html/manual/glossary.numbered.html -%%PORTDOCS%%share/doc/dblatex/html/manual/glossary.tocdepth.html -%%PORTDOCS%%share/doc/dblatex/html/manual/glossterm.auto.link.html -%%PORTDOCS%%share/doc/dblatex/html/manual/imagedata.boxed.html -%%PORTDOCS%%share/doc/dblatex/html/manual/imagedata.default.scale.html -%%PORTDOCS%%share/doc/dblatex/html/manual/imagedata.file.check.html -%%PORTDOCS%%share/doc/dblatex/html/manual/imageobjectco.hide.html -%%PORTDOCS%%share/doc/dblatex/html/manual/images/blank.png -%%PORTDOCS%%share/doc/dblatex/html/manual/images/callouts/1.gif -%%PORTDOCS%%share/doc/dblatex/html/manual/images/callouts/1.png -%%PORTDOCS%%share/doc/dblatex/html/manual/images/callouts/10.gif -%%PORTDOCS%%share/doc/dblatex/html/manual/images/callouts/10.png -%%PORTDOCS%%share/doc/dblatex/html/manual/images/callouts/11.gif -%%PORTDOCS%%share/doc/dblatex/html/manual/images/callouts/11.png -%%PORTDOCS%%share/doc/dblatex/html/manual/images/callouts/12.gif -%%PORTDOCS%%share/doc/dblatex/html/manual/images/callouts/12.png -%%PORTDOCS%%share/doc/dblatex/html/manual/images/callouts/13.gif -%%PORTDOCS%%share/doc/dblatex/html/manual/images/callouts/13.png -%%PORTDOCS%%share/doc/dblatex/html/manual/images/callouts/14.gif -%%PORTDOCS%%share/doc/dblatex/html/manual/images/callouts/14.png -%%PORTDOCS%%share/doc/dblatex/html/manual/images/callouts/15.gif -%%PORTDOCS%%share/doc/dblatex/html/manual/images/callouts/15.png -%%PORTDOCS%%share/doc/dblatex/html/manual/images/callouts/2.gif -%%PORTDOCS%%share/doc/dblatex/html/manual/images/callouts/2.png -%%PORTDOCS%%share/doc/dblatex/html/manual/images/callouts/3.gif -%%PORTDOCS%%share/doc/dblatex/html/manual/images/callouts/3.png -%%PORTDOCS%%share/doc/dblatex/html/manual/images/callouts/4.gif -%%PORTDOCS%%share/doc/dblatex/html/manual/images/callouts/4.png -%%PORTDOCS%%share/doc/dblatex/html/manual/images/callouts/5.gif -%%PORTDOCS%%share/doc/dblatex/html/manual/images/callouts/5.png -%%PORTDOCS%%share/doc/dblatex/html/manual/images/callouts/6.gif -%%PORTDOCS%%share/doc/dblatex/html/manual/images/callouts/6.png -%%PORTDOCS%%share/doc/dblatex/html/manual/images/callouts/7.gif -%%PORTDOCS%%share/doc/dblatex/html/manual/images/callouts/7.png -%%PORTDOCS%%share/doc/dblatex/html/manual/images/callouts/8.gif -%%PORTDOCS%%share/doc/dblatex/html/manual/images/callouts/8.png -%%PORTDOCS%%share/doc/dblatex/html/manual/images/callouts/9.gif -%%PORTDOCS%%share/doc/dblatex/html/manual/images/callouts/9.png -%%PORTDOCS%%share/doc/dblatex/html/manual/images/caution.gif -%%PORTDOCS%%share/doc/dblatex/html/manual/images/caution.png -%%PORTDOCS%%share/doc/dblatex/html/manual/images/caution.svg -%%PORTDOCS%%share/doc/dblatex/html/manual/images/caution.tif -%%PORTDOCS%%share/doc/dblatex/html/manual/images/draft.png -%%PORTDOCS%%share/doc/dblatex/html/manual/images/home.gif -%%PORTDOCS%%share/doc/dblatex/html/manual/images/home.png -%%PORTDOCS%%share/doc/dblatex/html/manual/images/home.svg -%%PORTDOCS%%share/doc/dblatex/html/manual/images/important.gif -%%PORTDOCS%%share/doc/dblatex/html/manual/images/important.png -%%PORTDOCS%%share/doc/dblatex/html/manual/images/important.svg -%%PORTDOCS%%share/doc/dblatex/html/manual/images/important.tif -%%PORTDOCS%%share/doc/dblatex/html/manual/images/next.gif -%%PORTDOCS%%share/doc/dblatex/html/manual/images/next.png -%%PORTDOCS%%share/doc/dblatex/html/manual/images/next.svg -%%PORTDOCS%%share/doc/dblatex/html/manual/images/note.gif -%%PORTDOCS%%share/doc/dblatex/html/manual/images/note.png -%%PORTDOCS%%share/doc/dblatex/html/manual/images/note.svg -%%PORTDOCS%%share/doc/dblatex/html/manual/images/note.tif -%%PORTDOCS%%share/doc/dblatex/html/manual/images/prev.gif -%%PORTDOCS%%share/doc/dblatex/html/manual/images/prev.png -%%PORTDOCS%%share/doc/dblatex/html/manual/images/prev.svg -%%PORTDOCS%%share/doc/dblatex/html/manual/images/tip.gif -%%PORTDOCS%%share/doc/dblatex/html/manual/images/tip.png -%%PORTDOCS%%share/doc/dblatex/html/manual/images/tip.svg -%%PORTDOCS%%share/doc/dblatex/html/manual/images/tip.tif -%%PORTDOCS%%share/doc/dblatex/html/manual/images/toc-blank.png -%%PORTDOCS%%share/doc/dblatex/html/manual/images/toc-minus.png -%%PORTDOCS%%share/doc/dblatex/html/manual/images/toc-plus.png -%%PORTDOCS%%share/doc/dblatex/html/manual/images/up.gif -%%PORTDOCS%%share/doc/dblatex/html/manual/images/up.png -%%PORTDOCS%%share/doc/dblatex/html/manual/images/up.svg -%%PORTDOCS%%share/doc/dblatex/html/manual/images/warning.gif -%%PORTDOCS%%share/doc/dblatex/html/manual/images/warning.png -%%PORTDOCS%%share/doc/dblatex/html/manual/images/warning.svg -%%PORTDOCS%%share/doc/dblatex/html/manual/images/warning.tif -%%PORTDOCS%%share/doc/dblatex/html/manual/img-tbl-color.png -%%PORTDOCS%%share/doc/dblatex/html/manual/index.html -%%PORTDOCS%%share/doc/dblatex/html/manual/index.numbered.html -%%PORTDOCS%%share/doc/dblatex/html/manual/index.tocdepth.html -%%PORTDOCS%%share/doc/dblatex/html/manual/insert.xref.page.number.html -%%PORTDOCS%%share/doc/dblatex/html/manual/korean.package.html -%%PORTDOCS%%share/doc/dblatex/html/manual/latex.babel.language.html -%%PORTDOCS%%share/doc/dblatex/html/manual/latex.babel.use.html -%%PORTDOCS%%share/doc/dblatex/html/manual/latex.bibfiles.html -%%PORTDOCS%%share/doc/dblatex/html/manual/latex.biblio.output.html -%%PORTDOCS%%share/doc/dblatex/html/manual/latex.biblio.style.html -%%PORTDOCS%%share/doc/dblatex/html/manual/latex.bibwidelabel.html -%%PORTDOCS%%share/doc/dblatex/html/manual/latex.class.article.html -%%PORTDOCS%%share/doc/dblatex/html/manual/latex.class.book.html -%%PORTDOCS%%share/doc/dblatex/html/manual/latex.class.options.html -%%PORTDOCS%%share/doc/dblatex/html/manual/latex.encoding.html -%%PORTDOCS%%share/doc/dblatex/html/manual/latex.hyperparam.html -%%PORTDOCS%%share/doc/dblatex/html/manual/latex.output.revhistory.html -%%PORTDOCS%%share/doc/dblatex/html/manual/latex.unicode.use.html -%%PORTDOCS%%share/doc/dblatex/html/manual/literal.layout.options.html -%%PORTDOCS%%share/doc/dblatex/html/manual/literal.lines.showall.html -%%PORTDOCS%%share/doc/dblatex/html/manual/literal.width.ignore.html -%%PORTDOCS%%share/doc/dblatex/html/manual/make.single.year.ranges.html -%%PORTDOCS%%share/doc/dblatex/html/manual/make.year.ranges.html -%%PORTDOCS%%share/doc/dblatex/html/manual/manual.css -%%PORTDOCS%%share/doc/dblatex/html/manual/mediaobject.caption.style.html -%%PORTDOCS%%share/doc/dblatex/html/manual/monoseq.hyphenation.html -%%PORTDOCS%%share/doc/dblatex/html/manual/monoseq.small.html -%%PORTDOCS%%share/doc/dblatex/html/manual/newtbl.autowidth.html -%%PORTDOCS%%share/doc/dblatex/html/manual/newtbl.bgcolor.thead.html -%%PORTDOCS%%share/doc/dblatex/html/manual/newtbl.default.colsep.html -%%PORTDOCS%%share/doc/dblatex/html/manual/newtbl.default.rowsep.html -%%PORTDOCS%%share/doc/dblatex/html/manual/newtbl.format.tbody.html -%%PORTDOCS%%share/doc/dblatex/html/manual/newtbl.format.tfoot.html -%%PORTDOCS%%share/doc/dblatex/html/manual/newtbl.format.thead.html -%%PORTDOCS%%share/doc/dblatex/html/manual/newtbl.use.hhline.html -%%PORTDOCS%%share/doc/dblatex/html/manual/olink.params.html -%%PORTDOCS%%share/doc/dblatex/html/manual/pdf.annot.options.html -%%PORTDOCS%%share/doc/dblatex/html/manual/preface.tocdepth.html -%%PORTDOCS%%share/doc/dblatex/html/manual/processus.png -%%PORTDOCS%%share/doc/dblatex/html/manual/qanda.defaultlabel.html -%%PORTDOCS%%share/doc/dblatex/html/manual/re01.html -%%PORTDOCS%%share/doc/dblatex/html/manual/refclass.suppress.html -%%PORTDOCS%%share/doc/dblatex/html/manual/refentry.generate.name.html -%%PORTDOCS%%share/doc/dblatex/html/manual/refentry.numbered.html -%%PORTDOCS%%share/doc/dblatex/html/manual/refentry.tocdepth.html -%%PORTDOCS%%share/doc/dblatex/html/manual/refentry.xref.manvolnum.html -%%PORTDOCS%%share/doc/dblatex/html/manual/sec-changelog.html -%%PORTDOCS%%share/doc/dblatex/html/manual/sec-custom-latex.html -%%PORTDOCS%%share/doc/dblatex/html/manual/sec-custom.html -%%PORTDOCS%%share/doc/dblatex/html/manual/sec-figinclude.html -%%PORTDOCS%%share/doc/dblatex/html/manual/sec-param-value.html -%%PORTDOCS%%share/doc/dblatex/html/manual/sec-params.html -%%PORTDOCS%%share/doc/dblatex/html/manual/sec-pub-output.html -%%PORTDOCS%%share/doc/dblatex/html/manual/sec-specs.html -%%PORTDOCS%%share/doc/dblatex/html/manual/sec-style.html -%%PORTDOCS%%share/doc/dblatex/html/manual/sec-texpost.html -%%PORTDOCS%%share/doc/dblatex/html/manual/sec-thanks.html -%%PORTDOCS%%share/doc/dblatex/html/manual/sec-verbatim.html -%%PORTDOCS%%share/doc/dblatex/html/manual/sec-xref.html -%%PORTDOCS%%share/doc/dblatex/html/manual/seg.item.separator.html -%%PORTDOCS%%share/doc/dblatex/html/manual/set.book.num.html -%%PORTDOCS%%share/doc/dblatex/html/manual/show.comments.html -%%PORTDOCS%%share/doc/dblatex/html/manual/table.default.position.html -%%PORTDOCS%%share/doc/dblatex/html/manual/table.in.float.html -%%PORTDOCS%%share/doc/dblatex/html/manual/table.title.top.html -%%PORTDOCS%%share/doc/dblatex/html/manual/term.breakline.html -%%PORTDOCS%%share/doc/dblatex/html/manual/tex.math.in.alt.html -%%PORTDOCS%%share/doc/dblatex/html/manual/titleabbrev.in.toc.html -%%PORTDOCS%%share/doc/dblatex/html/manual/toc.section.depth.html -%%PORTDOCS%%share/doc/dblatex/html/manual/ulink.footnotes.html -%%PORTDOCS%%share/doc/dblatex/html/manual/ulink.show.html -%%PORTDOCS%%share/doc/dblatex/html/manual/use.id.as.filename.html -%%PORTDOCS%%share/doc/dblatex/html/manual/variablelist.term.separator.html -%%PORTDOCS%%share/doc/dblatex/html/manual/xetex.font.html -%%PORTDOCS%%share/doc/dblatex/html/manual/xref.hypermarkup.html -%%PORTDOCS%%share/doc/dblatex/html/manual/xref.with.number.and.title.html -%%PORTDOCS%%share/doc/dblatex/html/release-notes/changes-txt.html -%%PORTDOCS%%share/doc/dblatex/html/release-notes/index.html -%%PORTDOCS%%share/doc/dblatex/html/release-notes/manual.css -%%PORTDOCS%%share/doc/dblatex/html/release-notes/sec-changes-0110.html -%%PORTDOCS%%share/doc/dblatex/html/release-notes/sec-changes-014.html -%%PORTDOCS%%share/doc/dblatex/html/release-notes/sec-changes-0141.html -%%PORTDOCS%%share/doc/dblatex/html/release-notes/sec-changes-015.html -%%PORTDOCS%%share/doc/dblatex/html/release-notes/sec-changes-016.html -%%PORTDOCS%%share/doc/dblatex/html/release-notes/sec-changes-017.html -%%PORTDOCS%%share/doc/dblatex/html/release-notes/sec-changes-018.html -%%PORTDOCS%%share/doc/dblatex/html/release-notes/sec-changes-019.html -%%PORTDOCS%%share/doc/dblatex/html/release-notes/sec-changes-020.html -%%PORTDOCS%%share/doc/dblatex/html/release-notes/sec-changes-021.html -%%PORTDOCS%%share/doc/dblatex/html/release-notes/sec-changes-0210.html -%%PORTDOCS%%share/doc/dblatex/html/release-notes/sec-changes-0211.html -%%PORTDOCS%%share/doc/dblatex/html/release-notes/sec-changes-0212.html -%%PORTDOCS%%share/doc/dblatex/html/release-notes/sec-changes-022.html -%%PORTDOCS%%share/doc/dblatex/html/release-notes/sec-changes-023.html -%%PORTDOCS%%share/doc/dblatex/html/release-notes/sec-changes-024.html -%%PORTDOCS%%share/doc/dblatex/html/release-notes/sec-changes-025.html -%%PORTDOCS%%share/doc/dblatex/html/release-notes/sec-changes-026.html -%%PORTDOCS%%share/doc/dblatex/html/release-notes/sec-changes-027.html -%%PORTDOCS%%share/doc/dblatex/html/release-notes/sec-changes-028.html -%%PORTDOCS%%share/doc/dblatex/html/release-notes/sec-changes-029.html -%%PORTDOCS%%share/doc/dblatex/html/release-notes/sec-changes-02pre.html -%%PORTDOCS%%share/doc/dblatex/manual.pdf -%%PORTDOCS%%share/doc/dblatex/release-notes.pdf +%%DATADIR%%/latex/contrib/db2latex/db2latex.sty +%%DATADIR%%/latex/contrib/db2latex/graphics/caution.eps +%%DATADIR%%/latex/contrib/db2latex/graphics/caution.pdf +%%DATADIR%%/latex/contrib/db2latex/graphics/important.eps +%%DATADIR%%/latex/contrib/db2latex/graphics/important.pdf +%%DATADIR%%/latex/contrib/db2latex/graphics/note.eps +%%DATADIR%%/latex/contrib/db2latex/graphics/note.pdf +%%DATADIR%%/latex/contrib/db2latex/graphics/tip.eps +%%DATADIR%%/latex/contrib/db2latex/graphics/tip.pdf +%%DATADIR%%/latex/contrib/db2latex/graphics/warning.eps +%%DATADIR%%/latex/contrib/db2latex/graphics/warning.pdf +%%DATADIR%%/latex/contrib/db2latex/param.xsl +%%DATADIR%%/latex/contrib/example/dbsimple.sty +%%DATADIR%%/latex/graphics/dblatex.eps +%%DATADIR%%/latex/graphics/dblatex.png +%%DATADIR%%/latex/graphics/warning.eps +%%DATADIR%%/latex/graphics/warning.fig +%%DATADIR%%/latex/graphics/warning.pdf +%%DATADIR%%/latex/misc/attachfile.sty +%%DATADIR%%/latex/misc/bibtopic.sty +%%DATADIR%%/latex/misc/enumitem.sty +%%DATADIR%%/latex/misc/multirow2.sty +%%DATADIR%%/latex/misc/passivetex/LICENSE +%%DATADIR%%/latex/misc/passivetex/dummyels.sty +%%DATADIR%%/latex/misc/passivetex/unicode.sty +%%DATADIR%%/latex/misc/ragged2e.sty +%%DATADIR%%/latex/misc/lastpage.sty +%%DATADIR%%/latex/misc/xelatex/xecyr.sty +%%DATADIR%%/latex/scripts/doc.ist +%%DATADIR%%/latex/specs/db2latex.specs +%%DATADIR%%/latex/specs/native.specs +%%DATADIR%%/latex/specs/simple.specs +%%DATADIR%%/latex/style/dbk_admonition.sty +%%DATADIR%%/latex/style/dbk_annot.sty +%%DATADIR%%/latex/style/dbk_biblio.sty +%%DATADIR%%/latex/style/dbk_callout.sty +%%DATADIR%%/latex/style/dbk_changebar.sty +%%DATADIR%%/latex/style/dbk_core.sty +%%DATADIR%%/latex/style/dbk_fonts.sty +%%DATADIR%%/latex/style/dbk_graphic.sty +%%DATADIR%%/latex/style/dbk_headfoot.sty +%%DATADIR%%/latex/style/dbk_hyper.sty +%%DATADIR%%/latex/style/dbk_item.sty +%%DATADIR%%/latex/style/dbk_locale.sty +%%DATADIR%%/latex/style/dbk_revision.sty +%%DATADIR%%/latex/style/dbk_table.sty +%%DATADIR%%/latex/style/dbk_title.sty +%%DATADIR%%/latex/style/dbk_verbatim.sty +%%DATADIR%%/latex/style/docbook.sty +%%DATADIR%%/xsl/abstract.xsl +%%DATADIR%%/xsl/admon.xsl +%%DATADIR%%/xsl/annotation.xsl +%%DATADIR%%/xsl/appendix.xsl +%%DATADIR%%/xsl/biblio.xsl +%%DATADIR%%/xsl/bridgehead.xsl +%%DATADIR%%/xsl/callout.xsl +%%DATADIR%%/xsl/chapter.xsl +%%DATADIR%%/xsl/chunker.xsl +%%DATADIR%%/xsl/citation.xsl +%%DATADIR%%/xsl/classsynopsis.xsl +%%DATADIR%%/xsl/color.xsl +%%DATADIR%%/xsl/common/af.xml +%%DATADIR%%/xsl/common/am.xml +%%DATADIR%%/xsl/common/ar.xml +%%DATADIR%%/xsl/common/az.xml +%%DATADIR%%/xsl/common/bg.xml +%%DATADIR%%/xsl/common/bn.xml +%%DATADIR%%/xsl/common/bs.xml +%%DATADIR%%/xsl/common/ca.xml +%%DATADIR%%/xsl/common/common.xsl +%%DATADIR%%/xsl/common/cs.xml +%%DATADIR%%/xsl/common/cy.xml +%%DATADIR%%/xsl/common/da.xml +%%DATADIR%%/xsl/common/de.xml +%%DATADIR%%/xsl/common/el.xml +%%DATADIR%%/xsl/common/en.xml +%%DATADIR%%/xsl/common/es.xml +%%DATADIR%%/xsl/common/et.xml +%%DATADIR%%/xsl/common/eu.xml +%%DATADIR%%/xsl/common/fa.xml +%%DATADIR%%/xsl/common/fi.xml +%%DATADIR%%/xsl/common/fr.xml +%%DATADIR%%/xsl/common/ga.xml +%%DATADIR%%/xsl/common/gentext.xsl +%%DATADIR%%/xsl/common/gu.xml +%%DATADIR%%/xsl/common/he.xml +%%DATADIR%%/xsl/common/hi.xml +%%DATADIR%%/xsl/common/hr.xml +%%DATADIR%%/xsl/common/hu.xml +%%DATADIR%%/xsl/common/id.xml +%%DATADIR%%/xsl/common/it.xml +%%DATADIR%%/xsl/common/ja.xml +%%DATADIR%%/xsl/common/kn.xml +%%DATADIR%%/xsl/common/ko.xml +%%DATADIR%%/xsl/common/l10n.dtd +%%DATADIR%%/xsl/common/l10n.xml +%%DATADIR%%/xsl/common/l10n.xsl +%%DATADIR%%/xsl/common/la.xml +%%DATADIR%%/xsl/common/labels.xsl +%%DATADIR%%/xsl/common/lib.xsl +%%DATADIR%%/xsl/common/lt.xml +%%DATADIR%%/xsl/common/mkdoclist.xsl +%%DATADIR%%/xsl/common/mklistings.xsl +%%DATADIR%%/xsl/common/mn.xml +%%DATADIR%%/xsl/common/nl.xml +%%DATADIR%%/xsl/common/nn.xml +%%DATADIR%%/xsl/common/no.xml +%%DATADIR%%/xsl/common/olink.xsl +%%DATADIR%%/xsl/common/or.xml +%%DATADIR%%/xsl/common/pa.xml +%%DATADIR%%/xsl/common/pl.xml +%%DATADIR%%/xsl/common/pt.xml +%%DATADIR%%/xsl/common/pt_br.xml +%%DATADIR%%/xsl/common/ro.xml +%%DATADIR%%/xsl/common/ru.xml +%%DATADIR%%/xsl/common/sk.xml +%%DATADIR%%/xsl/common/sl.xml +%%DATADIR%%/xsl/common/sq.xml +%%DATADIR%%/xsl/common/sr.xml +%%DATADIR%%/xsl/common/sr_Latn.xml +%%DATADIR%%/xsl/common/subtitles.xsl +%%DATADIR%%/xsl/common/sv.xml +%%DATADIR%%/xsl/common/ta.xml +%%DATADIR%%/xsl/common/th.xml +%%DATADIR%%/xsl/common/titles.xsl +%%DATADIR%%/xsl/common/tl.xml +%%DATADIR%%/xsl/common/tr.xml +%%DATADIR%%/xsl/common/uk.xml +%%DATADIR%%/xsl/common/vi.xml +%%DATADIR%%/xsl/common/xh.xml +%%DATADIR%%/xsl/common/zh_cn.xml +%%DATADIR%%/xsl/common/zh_tw.xml +%%DATADIR%%/xsl/component.xsl +%%DATADIR%%/xsl/dingbat.xsl +%%DATADIR%%/xsl/docbook.xsl +%%DATADIR%%/xsl/docbookng.xsl +%%DATADIR%%/xsl/email.xsl +%%DATADIR%%/xsl/equation.xsl +%%DATADIR%%/xsl/errors.xsl +%%DATADIR%%/xsl/example.xsl +%%DATADIR%%/xsl/fasttext.xsl +%%DATADIR%%/xsl/figure.xsl +%%DATADIR%%/xsl/footnote.xsl +%%DATADIR%%/xsl/format.xsl +%%DATADIR%%/xsl/glossary.xsl +%%DATADIR%%/xsl/graphic.xsl +%%DATADIR%%/xsl/index.xsl +%%DATADIR%%/xsl/inlined.xsl +%%DATADIR%%/xsl/keyword.xsl +%%DATADIR%%/xsl/labelid.xsl +%%DATADIR%%/xsl/lang.xsl +%%DATADIR%%/xsl/latex_book.xsl +%%DATADIR%%/xsl/latex_book_fast.xsl +%%DATADIR%%/xsl/legalnotice.xsl +%%DATADIR%%/xsl/lists.xsl +%%DATADIR%%/xsl/main.xsl +%%DATADIR%%/xsl/mapping.dtd +%%DATADIR%%/xsl/mathml2/README +%%DATADIR%%/xsl/mathml2/cmarkup.xsl +%%DATADIR%%/xsl/mathml2/entities.xsl +%%DATADIR%%/xsl/mathml2/glayout.xsl +%%DATADIR%%/xsl/mathml2/mapmmlent.xml +%%DATADIR%%/xsl/mathml2/mathml.xsl +%%DATADIR%%/xsl/mathml2/mmltex.xsl +%%DATADIR%%/xsl/mathml2/scripts.xsl +%%DATADIR%%/xsl/mathml2/tables.xsl +%%DATADIR%%/xsl/mathml2/tokens.xsl +%%DATADIR%%/xsl/mediaobject.xsl +%%DATADIR%%/xsl/mediaobjectco.xsl +%%DATADIR%%/xsl/msgset.xsl +%%DATADIR%%/xsl/newtbl.xsl +%%DATADIR%%/xsl/para.xsl +%%DATADIR%%/xsl/param.xsl +%%DATADIR%%/xsl/part.xsl +%%DATADIR%%/xsl/pi.xsl +%%DATADIR%%/xsl/preamble.xsl +%%DATADIR%%/xsl/procedure.xsl +%%DATADIR%%/xsl/qandaset.xsl +%%DATADIR%%/xsl/quote.xsl +%%DATADIR%%/xsl/refentry.xsl +%%DATADIR%%/xsl/revision.xsl +%%DATADIR%%/xsl/scape.xsl +%%DATADIR%%/xsl/secmap.xml +%%DATADIR%%/xsl/sections.xsl +%%DATADIR%%/xsl/set.xsl +%%DATADIR%%/xsl/sgmltag.xsl +%%DATADIR%%/xsl/sidebar.xsl +%%DATADIR%%/xsl/synopsis.xsl +%%DATADIR%%/xsl/tablen.xsl +%%DATADIR%%/xsl/texmap.xml +%%DATADIR%%/xsl/toc_lot.xsl +%%DATADIR%%/xsl/url.xsl +%%DATADIR%%/xsl/verbatim.xsl +%%DATADIR%%/xsl/verbatimco.xsl +%%DATADIR%%/xsl/version.xsl +%%DATADIR%%/xsl/xref.xsl +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/alt.use.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/annotation.support.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/apas02.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/apas03.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/apas04.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/apas05.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/apas06.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/apas07.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/apas08.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/apas09.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/apas10.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/apas11.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/apas12.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/apas13.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/apas14.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/apas15.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/apas16.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/apas17.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/apas18.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/apas19.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/apas20.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/bi01.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/bibliography.numbered.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/bibliography.tocdepth.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/biblioentry.item.separator.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/biblioentry.numbered.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/callout.linkends.hot.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/callout.markup.circled.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/calloutlist.style.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/ch01.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/ch01s02.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/ch01s03.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/ch01s05.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/ch02.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/ch02s02.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/ch02s03.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/ch03.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/ch03s06.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/ch03s08.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/ch03s09.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/ch03s10.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/ch03s11.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/ch04s03.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/ch04s07.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/ch05.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/citation.default.style.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/citation.natbib.options.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/citation.natbib.use.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/cjk.font.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/co.linkends.show.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/colophon.tocdepth.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/dedication.tocdepth.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/default.table.width.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/doc.alignment.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/doc.collab.show.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/doc.layout.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/doc.lot.show.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/doc.pdfcreator.show.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/doc.publisher.show.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/doc.section.depth.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/doc.toc.show.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/draft.mode.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/draft.watermark.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/equation.default.position.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/example.default.position.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/figure.caution.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/figure.default.position.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/figure.important.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/figure.note.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/figure.tip.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/figure.title.top.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/figure.warning.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/figures/eq1.png +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/figures/eq4.png +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/filename.as.url.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/funcsynopsis.decoration.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/funcsynopsis.style.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/function.parens.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/glossary.numbered.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/glossary.tocdepth.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/glossterm.auto.link.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/imagedata.boxed.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/imagedata.default.scale.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/imagedata.file.check.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/imageobjectco.hide.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/annot-close.png +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/annot-open.png +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/blank.png +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/1.gif +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/1.png +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/1.svg +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/10.gif +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/10.png +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/10.svg +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/11.gif +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/11.png +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/11.svg +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/12.gif +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/12.png +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/12.svg +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/13.gif +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/13.png +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/13.svg +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/14.gif +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/14.png +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/14.svg +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/15.gif +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/15.png +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/15.svg +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/16.svg +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/17.svg +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/18.svg +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/19.svg +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/2.gif +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/2.png +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/2.svg +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/20.svg +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/21.svg +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/22.svg +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/23.svg +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/24.svg +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/25.svg +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/26.svg +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/27.svg +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/28.svg +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/29.svg +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/3.gif +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/3.png +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/3.svg +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/30.svg +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/4.gif +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/4.png +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/4.svg +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/5.gif +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/5.png +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/5.svg +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/6.gif +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/6.png +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/6.svg +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/7.gif +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/7.png +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/7.svg +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/8.gif +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/8.png +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/8.svg +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/9.gif +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/9.png +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/callouts/9.svg +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/caution.gif +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/caution.png +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/caution.svg +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/caution.tif +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/draft.png +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/home.gif +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/home.png +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/home.svg +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/important.gif +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/important.png +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/important.svg +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/important.tif +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/next.gif +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/next.png +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/next.svg +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/note.gif +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/note.png +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/note.svg +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/note.tif +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/prev.gif +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/prev.png +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/prev.svg +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/tip.gif +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/tip.png +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/tip.svg +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/tip.tif +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/toc-blank.png +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/toc-minus.png +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/toc-plus.png +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/up.gif +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/up.png +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/up.svg +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/warning.gif +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/warning.png +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/warning.svg +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/images/warning.tif +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/img-tbl-color.png +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/index.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/index.numbered.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/index.tocdepth.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/insert.xref.page.number.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/keep.relative.image.uris.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/korean.package.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/latex.babel.language.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/latex.babel.use.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/latex.bibfiles.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/latex.biblio.output.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/latex.biblio.style.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/latex.bibwidelabel.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/latex.class.article.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/latex.class.book.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/latex.class.options.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/latex.encoding.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/latex.hyperparam.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/latex.output.revhistory.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/latex.unicode.use.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/linenumbering.default.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/linenumbering.everyNth.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/linenumbering.scope.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/literal.layout.options.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/literal.lines.showall.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/literal.width.ignore.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/make.single.year.ranges.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/make.year.ranges.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/manual.css +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/mediaobject.caption.style.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/monoseq.hyphenation.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/monoseq.small.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/newtbl.autowidth.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/newtbl.bgcolor.thead.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/newtbl.default.colsep.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/newtbl.default.rowsep.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/newtbl.format.tbody.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/newtbl.format.tfoot.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/newtbl.format.thead.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/newtbl.use.hhline.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/olink.params.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/pdf.annot.options.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/preface.tocdepth.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/processus.png +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/qanda.defaultlabel.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/re01.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/refclass.suppress.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/refentry.generate.name.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/refentry.numbered.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/refentry.tocdepth.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/refentry.xref.manvolnum.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/sec-changelog.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/sec-custom-latex.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/sec-custom.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/sec-figinclude.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/sec-param-value.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/sec-params.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/sec-pub-output.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/sec-specs.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/sec-style.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/sec-table.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/sec-texpost.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/sec-thanks.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/sec-verbatim.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/sec-xref.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/seg.item.separator.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/set.book.num.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/show.comments.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/table.default.position.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/table.default.tabstyle.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/table.in.float.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/table.title.top.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/term.breakline.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/texlive.version.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/tex.math.in.alt.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/titleabbrev.in.toc.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/toc.section.depth.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/ulink.footnotes.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/ulink.show.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/use.id.as.filename.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/variablelist.term.separator.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/xetex.font.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/xref.hypermarkup.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/manual/xref.with.number.and.title.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/release-notes/changes-txt.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/release-notes/index.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/release-notes/manual.css +%%PORTDOCS%%%%DOCSDIR%%/xhtml/release-notes/sec-changes-0110.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/release-notes/sec-changes-014.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/release-notes/sec-changes-0141.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/release-notes/sec-changes-015.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/release-notes/sec-changes-016.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/release-notes/sec-changes-017.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/release-notes/sec-changes-018.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/release-notes/sec-changes-019.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/release-notes/sec-changes-020.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/release-notes/sec-changes-021.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/release-notes/sec-changes-0210.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/release-notes/sec-changes-0211.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/release-notes/sec-changes-0212.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/release-notes/sec-changes-022.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/release-notes/sec-changes-023.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/release-notes/sec-changes-024.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/release-notes/sec-changes-025.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/release-notes/sec-changes-026.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/release-notes/sec-changes-027.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/release-notes/sec-changes-028.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/release-notes/sec-changes-029.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/release-notes/sec-changes-02pre.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/release-notes/sec-changes-03.html +%%PORTDOCS%%%%DOCSDIR%%/xhtml/release-notes/sec-changes-031.html +%%PORTDOCS%%%%DOCSDIR%%/manual.pdf +%%PORTDOCS%%%%DOCSDIR%%/release-notes.pdf %%PYTHON_SITELIBDIR%%/dbtexmf/__init__.py %%PYTHON_SITELIBDIR%%/dbtexmf/__init__.pyc %%PYTHON_SITELIBDIR%%/dbtexmf/__init__.pyo @@ -593,26 +635,26 @@ @dirrm %%PYTHON_SITELIBDIR%%/dbtexmf/dblatex @dirrm %%PYTHON_SITELIBDIR%%/dbtexmf/core @dirrm %%PYTHON_SITELIBDIR%%/dbtexmf -@dirrm share/dblatex/xsl/mathml2 -@dirrm share/dblatex/xsl/common -@dirrm share/dblatex/xsl -@dirrm share/dblatex/latex/style -@dirrm share/dblatex/latex/specs -@dirrm share/dblatex/latex/scripts -@dirrm share/dblatex/latex/misc/passivetex -@dirrm share/dblatex/latex/misc/xelatex -@dirrm share/dblatex/latex/misc -@dirrm share/dblatex/latex/graphics -@dirrm share/dblatex/latex/contrib/db2latex/graphics -@dirrm share/dblatex/latex/contrib/db2latex -@dirrm share/dblatex/latex/contrib/example -@dirrm share/dblatex/latex/contrib -@dirrm share/dblatex/latex -@dirrm share/dblatex -%%PORTDOCS%%@dirrm share/doc/dblatex/html/manual/figures -%%PORTDOCS%%@dirrm share/doc/dblatex/html/manual/images/callouts -%%PORTDOCS%%@dirrm share/doc/dblatex/html/manual/images -%%PORTDOCS%%@dirrm share/doc/dblatex/html/manual -%%PORTDOCS%%@dirrm share/doc/dblatex/html/release-notes -%%PORTDOCS%%@dirrm share/doc/dblatex/html -%%PORTDOCS%%@dirrm share/doc/dblatex +@dirrm %%DATADIR%%/xsl/mathml2 +@dirrm %%DATADIR%%/xsl/common +@dirrm %%DATADIR%%/xsl +@dirrm %%DATADIR%%/latex/style +@dirrm %%DATADIR%%/latex/specs +@dirrm %%DATADIR%%/latex/scripts +@dirrm %%DATADIR%%/latex/misc/passivetex +@dirrm %%DATADIR%%/latex/misc/xelatex +@dirrm %%DATADIR%%/latex/misc +@dirrm %%DATADIR%%/latex/graphics +@dirrm %%DATADIR%%/latex/contrib/db2latex/graphics +@dirrm %%DATADIR%%/latex/contrib/db2latex +@dirrm %%DATADIR%%/latex/contrib/example +@dirrm %%DATADIR%%/latex/contrib +@dirrm %%DATADIR%%/latex +@dirrm %%DATADIR%% +%%PORTDOCS%%@dirrm %%DOCSDIR%%/xhtml/manual/figures +%%PORTDOCS%%@dirrm %%DOCSDIR%%/xhtml/manual/images/callouts +%%PORTDOCS%%@dirrm %%DOCSDIR%%/xhtml/manual/images +%%PORTDOCS%%@dirrm %%DOCSDIR%%/xhtml/manual +%%PORTDOCS%%@dirrm %%DOCSDIR%%/xhtml/release-notes +%%PORTDOCS%%@dirrm %%DOCSDIR%%/xhtml +%%PORTDOCS%%@dirrm %%DOCSDIR%% Index: files/patch-setup.py =================================================================== RCS file: files/patch-setup.py diff -N files/patch-setup.py --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-setup.py 1 May 2011 09:12:16 -0000 @@ -0,0 +1,11 @@ +--- setup.py.orig 2011-05-01 10:30:11.000000000 +0200 ++++ setup.py 2011-05-01 10:30:22.000000000 +0200 +@@ -386,7 +386,7 @@ + + if __name__ == "__main__": + pdfdocs = glob.glob(os.path.join("docs", "*.pdf")) +- htmldoc = [os.path.join("docs", "html")] ++ htmldoc = [os.path.join("docs", "xhtml")] + + setup(name="dblatex", + version=get_version(), --- dblatex-0.3.1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun May 1 09:50:21 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A0F88106564A; Sun, 1 May 2011 09:50:21 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 76FAD8FC0A; Sun, 1 May 2011 09:50:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p419oLpb049295; Sun, 1 May 2011 09:50:21 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p419oLDK049291; Sun, 1 May 2011 09:50:21 GMT (envelope-from edwin) Date: Sun, 1 May 2011 09:50:21 GMT Message-Id: <201105010950.p419oLDK049291@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, stefan@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156750: [PATCH] Update textproc/dblatex to 0.3.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 May 2011 09:50:21 -0000 Synopsis: [PATCH] Update textproc/dblatex to 0.3.1 Responsible-Changed-From-To: freebsd-ports-bugs->stefan Responsible-Changed-By: edwin Responsible-Changed-When: Sun May 1 09:50:20 UTC 2011 Responsible-Changed-Why: Submitter has GNATS access (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156750 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun May 1 10:04:49 2011 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 79BE8106566C; Sun, 1 May 2011 10:04:49 +0000 (UTC) (envelope-from magik@roorback.net) Received: from mail-qy0-f175.google.com (mail-qy0-f175.google.com [209.85.216.175]) by mx1.freebsd.org (Postfix) with ESMTP id 2196C8FC12; Sun, 1 May 2011 10:04:48 +0000 (UTC) Received: by qyk35 with SMTP id 35so976673qyk.13 for ; Sun, 01 May 2011 03:04:48 -0700 (PDT) Received: by 10.229.25.211 with SMTP id a19mr5339144qcc.81.1304244288137; Sun, 01 May 2011 03:04:48 -0700 (PDT) MIME-Version: 1.0 Received: by 10.229.223.208 with HTTP; Sun, 1 May 2011 03:04:28 -0700 (PDT) X-Originating-IP: [89.72.104.219] In-Reply-To: <201104282010.p3SKAFZm079331@freefall.freebsd.org> References: <1304021396.69976@silver.nine> <201104282010.p3SKAFZm079331@freefall.freebsd.org> From: Grzegorz Blach Date: Sun, 1 May 2011 12:04:28 +0200 Message-ID: To: FreeBSD-gnats-submit@freebsd.org, freebsd-ports-bugs@freebsd.org Content-Type: text/plain; charset=UTF-8 Cc: Subject: Re: ports/156705: Update for databases/hiredis library X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 May 2011 10:04:49 -0000 I can't reproduce this bug, but log message looks like files/patch-Makefile was not applied, before build. Please check this. From owner-freebsd-ports-bugs@FreeBSD.ORG Sun May 1 11:10:12 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 553EA106567F for ; Sun, 1 May 2011 11:10:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2E28C8FC15 for ; Sun, 1 May 2011 11:10:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p41BABZD021303 for ; Sun, 1 May 2011 11:10:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p41BABm8021302; Sun, 1 May 2011 11:10:11 GMT (envelope-from gnats) Resent-Date: Sun, 1 May 2011 11:10:11 GMT Resent-Message-Id: <201105011110.p41BABm8021302@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Marcin Cieslak Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AA02C106566B; Sun, 1 May 2011 11:07:11 +0000 (UTC) (envelope-from saper@saper.info) Received: from l.saper.info (l.saper.info [IPv6:2001:41d0:1:d467::1000]) by mx1.freebsd.org (Postfix) with ESMTP id 399898FC19; Sun, 1 May 2011 11:07:10 +0000 (UTC) Received: from l.saper.info (uucp@localhost [127.0.0.1]) by l.saper.info (8.14.4/8.14.4) with ESMTP id p41B6Dsu060544 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 1 May 2011 11:06:14 GMT (envelope-from saper@saper.info) Received: (from uucp@localhost) by l.saper.info (8.14.4/8.14.4/Submit) with UUCP id p41B6DnE060543; Sun, 1 May 2011 11:06:13 GMT (envelope-from saper@saper.info) Received: from radziecki.saper.info (localhost [127.0.0.1]) by radziecki.saper.info (8.14.4/8.14.4) with ESMTP id p41B6uaJ090493 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 1 May 2011 11:06:56 GMT (envelope-from saper@saper.info) Received: (from saper@localhost) by radziecki.saper.info (8.14.4/8.14.4/Submit) id p41B6tTB090415; Sun, 1 May 2011 11:06:55 GMT (envelope-from saper) Message-Id: <201105011106.p41B6tTB090415@radziecki.saper.info> Date: Sun, 1 May 2011 11:06:55 GMT From: Marcin Cieslak To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: ume@FreeBSD.org Subject: ports/156751: net-mgmt/mpd-l2tp-ipv6pd-client: does not respect BATCH=yes X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Marcin Cieslak List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 May 2011 11:10:12 -0000 >Number: 156751 >Category: ports >Synopsis: net-mgmt/mpd-l2tp-ipv6pd-client: does not respect BATCH=yes >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: Sun May 01 11:10:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Marcin Cieslak >Release: FreeBSD 9.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD radziecki.saper.info 9.0-CURRENT FreeBSD 9.0-CURRENT #1 r219785M: Mon Mar 21 11:40:40 CET 2011 saper@radziecki.saper.info:/usr/obj/usr/src/sys/VAIO amd64 >Description: When building/installing net-mgmt/mpd-l2tp-ipv6pd-client it pops up with the text dialog asking for L2TP user name. I was doing "portupgrade -aO -m BATCH=yes" on all ports and this stopped the process waiting for input. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun May 1 11:36:17 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EFBCF106564A; Sun, 1 May 2011 11:36:17 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C61E18FC08; Sun, 1 May 2011 11:36:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p41BaHuN052110; Sun, 1 May 2011 11:36:17 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p41BaHse052106; Sun, 1 May 2011 11:36:17 GMT (envelope-from arved) Date: Sun, 1 May 2011 11:36:17 GMT Message-Id: <201105011136.p41BaHse052106@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ume@FreeBSD.org From: arved@FreeBSD.org Cc: Subject: Re: ports/156751: net-mgmt/mpd-l2tp-ipv6pd-client: does not respect BATCH=yes X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 May 2011 11:36:18 -0000 Synopsis: net-mgmt/mpd-l2tp-ipv6pd-client: does not respect BATCH=yes Responsible-Changed-From-To: freebsd-ports-bugs->ume Responsible-Changed-By: arved Responsible-Changed-When: Sun May 1 11:35:55 UTC 2011 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=156751 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun May 1 11:38:00 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EC4EC106566B; Sun, 1 May 2011 11:38:00 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C34E58FC08; Sun, 1 May 2011 11:38:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p41Bc0dn052250; Sun, 1 May 2011 11:38:00 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p41Bc0RI052246; Sun, 1 May 2011 11:38:00 GMT (envelope-from arved) Date: Sun, 1 May 2011 11:38:00 GMT Message-Id: <201105011138.p41Bc0RI052246@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kde@FreeBSD.org From: arved@FreeBSD.org Cc: Subject: Re: ports/156717: Cannot install port for phonon_gstreamer X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 May 2011 11:38:01 -0000 Synopsis: Cannot install port for phonon_gstreamer Responsible-Changed-From-To: freebsd-ports-bugs->kde Responsible-Changed-By: arved Responsible-Changed-When: Sun May 1 11:37:39 UTC 2011 Responsible-Changed-Why: Over to maintainers http://www.freebsd.org/cgi/query-pr.cgi?pr=156717 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun May 1 11:39:37 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 22E8E106566C; Sun, 1 May 2011 11:39:37 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EDCBF8FC16; Sun, 1 May 2011 11:39:36 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p41BdaGX052326; Sun, 1 May 2011 11:39:36 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p41BdafV052321; Sun, 1 May 2011 11:39:36 GMT (envelope-from arved) Date: Sun, 1 May 2011 11:39:36 GMT Message-Id: <201105011139.p41BdafV052321@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, dinoex@FreeBSD.org From: arved@FreeBSD.org Cc: Subject: Re: ports/156577: Upgrade of graphics/netpbm-10.26.64_4 to netpbm-10.35.80_2 fails X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 May 2011 11:39:37 -0000 Synopsis: Upgrade of graphics/netpbm-10.26.64_4 to netpbm-10.35.80_2 fails Responsible-Changed-From-To: freebsd-ports-bugs->dinoex Responsible-Changed-By: arved Responsible-Changed-When: Sun May 1 11:39:13 UTC 2011 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=156577 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun May 1 11:42:09 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DEBC01065670; Sun, 1 May 2011 11:42:09 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B5C6F8FC20; Sun, 1 May 2011 11:42:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p41Bg9Ri060418; Sun, 1 May 2011 11:42:09 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p41Bg9qh060414; Sun, 1 May 2011 11:42:09 GMT (envelope-from arved) Date: Sun, 1 May 2011 11:42:09 GMT Message-Id: <201105011142.p41Bg9qh060414@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, skv@FreeBSD.org From: arved@FreeBSD.org Cc: Subject: Re: ports/156492: Multiple versions of Perl not supported X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 May 2011 11:42:10 -0000 Synopsis: Multiple versions of Perl not supported Responsible-Changed-From-To: freebsd-ports-bugs->skv Responsible-Changed-By: arved Responsible-Changed-When: Sun May 1 11:41:47 UTC 2011 Responsible-Changed-Why: Over to perl maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=156492 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun May 1 12:30:16 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 200381065670 for ; Sun, 1 May 2011 12:30:16 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0F97B8FC18 for ; Sun, 1 May 2011 12:30:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p41CUFUx096459 for ; Sun, 1 May 2011 12:30:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p41CUFbY096454; Sun, 1 May 2011 12:30:15 GMT (envelope-from gnats) Date: Sun, 1 May 2011 12:30:15 GMT Message-Id: <201105011230.p41CUFbY096454@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Pan Tsu Cc: Subject: Re: ports/156747: multimedia/mplayer: fix 24-bits OSS some improvements X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Pan Tsu List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 May 2011 12:30:16 -0000 The following reply was made to PR ports/156747; it has been noted by GNATS. From: Pan Tsu To: Zhihao Yuan Cc: bug-followup@freebsd.org Subject: Re: ports/156747: multimedia/mplayer: fix 24-bits OSS some improvements Date: Sun, 01 May 2011 16:26:27 +0400 Zhihao Yuan writes: > In this patch, I just make everything FreeBSD-only (since these macros > have different meanings from those in OSS v4). So, they'd break mplayer with 24bit samples on 4front implementation, i.e. audio/oss? > I have tested the signed 24-bit audio, OK. But I don't have any > unsigned audio, since PCM is signed-only. You can still feed unsigned 24bit samples to ao_oss. For example, $ mplayer -af format=u24le -msglevel all=-1:ao=9 foo.ogg Trying every known audio driver... ao2: 44100 Hz 2 chans u24le audio_setup: using '/dev/dsp' dsp device audio_setup: using '/dev/mixer' mixer device audio_setup: using 'pcm' mixer device audio_setup: sample format: u24le (requested: u24le) audio_setup: using 2 channels (requested: 2) audio_setup: using 44100 Hz samplerate (requested: 44100) audio_setup: frags: 32/32 (4092 bytes/frag) free: 130944 which seems to work fine $ sysctl hw.snd.verbose=2 $ fgrep -A3 mplayer /dev/sndstat pcm1:play:dsp1.p0[pcm1:virtual:dsp1.vp2]: spd 44100, fmt 0x00240000/0x00201000, flags 0x1000010c, 0x00000023, pid 34306 (mplayer) interrupts 0, underruns 0, feed 4810, ready 114660 [b:0/0/0|bs:130944/4092/32] channel flags=0x1000010c {userland} -> feeder_root(0x00240000) -> feeder_format(0x00240000 -> 0x00201000) -> feeder_volume(0x00201000) -> {hardware} From owner-freebsd-ports-bugs@FreeBSD.ORG Sun May 1 12:44:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 86153106566B; Sun, 1 May 2011 12:44:10 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5BF5A8FC08; Sun, 1 May 2011 12:44:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p41CiAIt015275; Sun, 1 May 2011 12:44:10 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p41CiAAS015271; Sun, 1 May 2011 12:44:10 GMT (envelope-from linimon) Date: Sun, 1 May 2011 12:44:10 GMT Message-Id: <201105011244.p41CiAAS015271@freefall.freebsd.org> To: kaiwang27@gmail.com, utisoft@gmail.com, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/156734: Fix port: sysutils/uhidd rc script fails to set default X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 May 2011 12:44:10 -0000 Synopsis: Fix port: sysutils/uhidd rc script fails to set default State-Changed-From-To: feedback->open State-Changed-By: linimon State-Changed-When: Sun May 1 12:44:04 UTC 2011 State-Changed-Why: Maintainer approved. http://www.freebsd.org/cgi/query-pr.cgi?pr=156734 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun May 1 13:30:15 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E8BE3106566B for ; Sun, 1 May 2011 13:30:14 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C25A68FC12 for ; Sun, 1 May 2011 13:30:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p41DUET2051641 for ; Sun, 1 May 2011 13:30:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p41DUEO5051637; Sun, 1 May 2011 13:30:14 GMT (envelope-from gnats) Resent-Date: Sun, 1 May 2011 13:30:14 GMT Resent-Message-Id: <201105011330.p41DUEO5051637@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Geoffroy Desvernay Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 90E4F1065670 for ; Sun, 1 May 2011 13:22:52 +0000 (UTC) (envelope-from root@ec-m.fr) Received: from melo.ec-m.fr (melo.ec-m.fr [147.94.19.139]) by mx1.freebsd.org (Postfix) with ESMTP id 4BAC58FC18 for ; Sun, 1 May 2011 13:22:51 +0000 (UTC) Received: from amavis4.serv.int (amavis4.serv.int [10.3.0.48]) by melo.ec-m.fr (GrosseBox 1743 XXL) with ESMTP id EA579AC894; Sun, 1 May 2011 15:22:49 +0200 (CEST) Received: from melo.ec-m.fr ([10.3.0.13]) by amavis4.serv.int (amavis4.serv.int [10.3.0.48]) (amavisd-new, port 10024) with LMTP id iWST87bkU1pz; Sun, 1 May 2011 15:22:49 +0200 (CEST) Received: from dgeo.sysadm.ec-m.fr (dgeo.sysadm.ec-m.fr [147.94.19.169]) by melo.ec-m.fr (GrosseBox 1743 XXL) with ESMTP id 351C6AC885; Sun, 1 May 2011 15:22:49 +0200 (CEST) Received: by dgeo.sysadm.ec-m.fr (Postfix, from userid 0) id 0644F1CC92; Sun, 1 May 2011 15:22:48 +0200 (CEST) Message-Id: <20110501132249.0644F1CC92@dgeo.sysadm.ec-m.fr> Date: Sun, 1 May 2011 15:22:48 +0200 (CEST) From: Geoffroy Desvernay To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: lwhsu@FreeBSD.org Subject: ports/156752: [PATCH] devel/jenkins: update to 1.409 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 May 2011 13:30:15 -0000 >Number: 156752 >Category: ports >Synopsis: [PATCH] devel/jenkins: update to 1.409 >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 May 01 13:30:13 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Geoffroy Desvernay >Release: FreeBSD 8.2-RELEASE-p1 amd64 >Organization: Ecole Centrale de Marseille >Environment: System: FreeBSD dgeo.sysadm.ec-m.fr 8.2-RELEASE-p1 FreeBSD 8.2-RELEASE-p1 #0: Fri Apr 22 01:04:23 CEST 2011 >Description: - Update to 1.409 http://jenkins-ci.org/changelog Port maintainer (lwhsu@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- jenkins-1.409_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/devel/jenkins.orig/Makefile /usr/ports/devel/jenkins/Makefile --- /usr/ports/devel/jenkins.orig/Makefile 2011-04-29 13:57:53.000000000 +0200 +++ /usr/ports/devel/jenkins/Makefile 2011-04-30 22:19:55.000000000 +0200 @@ -6,7 +6,7 @@ # PORTNAME= jenkins -PORTVERSION= 1.407 +PORTVERSION= 1.409 PORTREVISION= 1 CATEGORIES= devel java MASTER_SITES= http://mirrors.jenkins-ci.org/war/${PORTVERSION}/ diff -ruN --exclude=CVS /usr/ports/devel/jenkins.orig/distinfo /usr/ports/devel/jenkins/distinfo --- /usr/ports/devel/jenkins.orig/distinfo 2011-04-16 09:21:10.000000000 +0200 +++ /usr/ports/devel/jenkins/distinfo 2011-04-30 22:19:44.000000000 +0200 @@ -1,2 +1,2 @@ -SHA256 (jenkins/1.407/jenkins.war) = a54b1cdbdc05ca3e087a5576c84b7baaf254616c38575eeeff4f6a0e7db9ed2b -SIZE (jenkins/1.407/jenkins.war) = 38783477 +SHA256 (jenkins/1.409/jenkins.war) = e4f6fbaef4c48d05b85dfafa2036f62ab95779b2c043332590cf2dc05c1a1e20 +SIZE (jenkins/1.409/jenkins.war) = 38593352 --- jenkins-1.409_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun May 1 13:30:26 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E8510106566C; Sun, 1 May 2011 13:30:26 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C0D4C8FC15; Sun, 1 May 2011 13:30:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p41DUQRf052837; Sun, 1 May 2011 13:30:26 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p41DUQdm052828; Sun, 1 May 2011 13:30:26 GMT (envelope-from edwin) Date: Sun, 1 May 2011 13:30:26 GMT Message-Id: <201105011330.p41DUQdm052828@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, lwhsu@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156752: [PATCH] devel/jenkins: update to 1.409 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 May 2011 13:30:27 -0000 Synopsis: [PATCH] devel/jenkins: update to 1.409 Responsible-Changed-From-To: freebsd-ports-bugs->lwhsu Responsible-Changed-By: edwin Responsible-Changed-When: Sun May 1 13:30:25 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156752 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun May 1 14:00:24 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 34DD9106564A for ; Sun, 1 May 2011 14:00:24 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0AB228FC0A for ; Sun, 1 May 2011 14:00:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p41E0NgE078631 for ; Sun, 1 May 2011 14:00:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p41E0NDt078630; Sun, 1 May 2011 14:00:23 GMT (envelope-from gnats) Date: Sun, 1 May 2011 14:00:23 GMT Message-Id: <201105011400.p41E0NDt078630@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Thomas Zander Cc: Subject: Re: ports/156747: multimedia/mplayer: fix 24-bits OSS + some improvements X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Thomas Zander List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 May 2011 14:00:24 -0000 The following reply was made to PR ports/156747; it has been noted by GNATS. From: Thomas Zander To: bug-followup@freebsd.org Cc: Subject: Re: ports/156747: multimedia/mplayer: fix 24-bits OSS + some improvements Date: Sun, 1 May 2011 15:52:03 +0200 Hi, I have very limited capability of testing 24 bit support, but so far what I tested works good! One thing I would like you to do however is to apply your changes to the port Makefile to the mencoder port, too, when you submit the final version of this patch. Thank you in advance Riggs From owner-freebsd-ports-bugs@FreeBSD.ORG Sun May 1 14:30:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 643211065670 for ; Sun, 1 May 2011 14:30:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 42EA48FC14 for ; Sun, 1 May 2011 14:30:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p41EUAfN005840 for ; Sun, 1 May 2011 14:30:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p41EUACP005838; Sun, 1 May 2011 14:30:10 GMT (envelope-from gnats) Resent-Date: Sun, 1 May 2011 14:30:10 GMT Resent-Message-Id: <201105011430.p41EUACP005838@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Wen Heping Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0C9E2106566B for ; Sun, 1 May 2011 14:26:00 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id D7AC38FC13 for ; Sun, 1 May 2011 14:25:59 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p41EPxFq033472 for ; Sun, 1 May 2011 14:25:59 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p41EPxGY033471; Sun, 1 May 2011 14:25:59 GMT (envelope-from nobody) Message-Id: <201105011425.p41EPxGY033471@red.freebsd.org> Date: Sun, 1 May 2011 14:25:59 GMT From: Wen Heping To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156753: [REPOCOPY] deskutils/opengoo --> deskutils/fengoffice X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 May 2011 14:30:10 -0000 >Number: 156753 >Category: ports >Synopsis: [REPOCOPY] deskutils/opengoo --> deskutils/fengoffice >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 May 01 14:30:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Wen Heping >Release: >Organization: FreeBSD >Environment: >Description: opengoo changed name to fengoffice and updated to 1.7.4 upstream, so please repocopy deskutils/opengoo --> deskutils/fengoffice the diff file is too large, so I emailed to maintainer. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun May 1 14:30:21 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CC5B1106566B; Sun, 1 May 2011 14:30:21 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A473E8FC1E; Sun, 1 May 2011 14:30:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p41EULMA006579; Sun, 1 May 2011 14:30:21 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p41EULm6006571; Sun, 1 May 2011 14:30:21 GMT (envelope-from edwin) Date: Sun, 1 May 2011 14:30:21 GMT Message-Id: <201105011430.p41EULm6006571@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, acm@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156753: [REPOCOPY] deskutils/opengoo --> deskutils/fengoffice X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 May 2011 14:30:21 -0000 Synopsis: [REPOCOPY] deskutils/opengoo --> deskutils/fengoffice Responsible-Changed-From-To: freebsd-ports-bugs->acm Responsible-Changed-By: edwin Responsible-Changed-When: Sun May 1 14:30:20 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156753 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun May 1 14:50:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6E9671065670 for ; Sun, 1 May 2011 14:50:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4CD828FC16 for ; Sun, 1 May 2011 14:50:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p41EoAn2024483 for ; Sun, 1 May 2011 14:50:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p41EoASd024482; Sun, 1 May 2011 14:50:10 GMT (envelope-from gnats) Resent-Date: Sun, 1 May 2011 14:50:10 GMT Resent-Message-Id: <201105011450.p41EoASd024482@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jase Thew Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5F59C1065744 for ; Sun, 1 May 2011 14:45:38 +0000 (UTC) (envelope-from freebsd@beardz.net) Received: from beardz.net (beardz.net [IPv6:2a01:4f8:121:2403:1::]) by mx1.freebsd.org (Postfix) with ESMTP id EE5DB8FC08 for ; Sun, 1 May 2011 14:45:37 +0000 (UTC) Received: from beardz.net (localhost [127.0.1.7]) by beardz.net (8.14.4/8.14.4) with ESMTP id p41EjZuv077586 for ; Sun, 1 May 2011 15:45:35 +0100 (BST) (envelope-from freebsd@beardz.net) Received: (from root@localhost) by beardz.net (8.14.4/8.14.4/Submit) id p41EjZF1077585; Sun, 1 May 2011 15:45:35 +0100 (BST) (envelope-from freebsd@beardz.net) Message-Id: <201105011445.p41EjZF1077585@beardz.net> Date: Sun, 1 May 2011 15:45:35 +0100 (BST) From: Jase Thew To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/156754: [MAINTAINER] irc/weechat-devel: update to 20110501 (0.3.5-rc2) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 May 2011 14:50:10 -0000 >Number: 156754 >Category: ports >Synopsis: [MAINTAINER] irc/weechat-devel: update to 20110501 (0.3.5-rc2) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun May 01 14:50:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Jase Thew >Release: FreeBSD 8.2-STABLE amd64 >Organization: >Environment: System: FreeBSD jail-ports.localdomain 8.2-STABLE FreeBSD 8.2-STABLE #0: Sat Apr 2 19:17:15 BST >Description: - Update to 20110501 (0.3.5-rc2) Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- weechat-devel-20110501.patch begins here --- diff -ruN --exclude=CVS /usr/ports/irc/weechat-devel.orig/Makefile /usr/ports/irc/weechat-devel/Makefile --- /usr/ports/irc/weechat-devel.orig/Makefile 2011-04-23 23:14:23.000000000 +0100 +++ /usr/ports/irc/weechat-devel/Makefile 2011-05-01 15:40:33.230032436 +0100 @@ -6,11 +6,11 @@ # PORTNAME= weechat -PORTVERSION= 20110421 +PORTVERSION= 20110501 CATEGORIES= irc MASTER_SITES= http://perturb.me.uk/distfiles/ PKGNAMESUFFIX= -devel -DISTNAME= weechat-devel-b7853444d80d5be64531b7eefbfa2bb2b07abe42 +DISTNAME= weechat-devel-97bc4b6eed4e2f33139e3055513fa9a9c204d66a MAINTAINER= freebsd@beardz.net COMMENT= A lightweight and user friendly ncurse based IRC client @@ -37,7 +37,7 @@ NLS "NLS support." On \ DOCUMENTATION "Build documentation." Off -WRKSRC= ${WRKDIR}/${PORTNAME}-b785344 +WRKSRC= ${WRKDIR}/${PORTNAME}-97bc4b6 .include diff -ruN --exclude=CVS /usr/ports/irc/weechat-devel.orig/distinfo /usr/ports/irc/weechat-devel/distinfo --- /usr/ports/irc/weechat-devel.orig/distinfo 2011-04-23 23:14:23.000000000 +0100 +++ /usr/ports/irc/weechat-devel/distinfo 2011-05-01 15:40:33.229015829 +0100 @@ -1,2 +1,2 @@ -SHA256 (weechat-devel-b7853444d80d5be64531b7eefbfa2bb2b07abe42.tar.gz) = 027859c017beb937bdaf52d08ad8b48a1c8fefc4e1519dbb8b5bc6af99a09940 -SIZE (weechat-devel-b7853444d80d5be64531b7eefbfa2bb2b07abe42.tar.gz) = 1757198 +SHA256 (weechat-devel-97bc4b6eed4e2f33139e3055513fa9a9c204d66a.tar.gz) = ecd1aa75f866379f38c8212e655945c699a7e8f3c7708107b981ae533cd9eddf +SIZE (weechat-devel-97bc4b6eed4e2f33139e3055513fa9a9c204d66a.tar.gz) = 1767522 --- weechat-devel-20110501.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun May 1 15:29:05 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 12499106566C; Sun, 1 May 2011 15:29:05 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DD61E8FC12; Sun, 1 May 2011 15:29:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p41FT4Eh059571; Sun, 1 May 2011 15:29:04 GMT (envelope-from culot@freefall.freebsd.org) Received: (from culot@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p41FT4xp059567; Sun, 1 May 2011 15:29:04 GMT (envelope-from culot) Date: Sun, 1 May 2011 15:29:04 GMT Message-Id: <201105011529.p41FT4xp059567@freefall.freebsd.org> To: culot@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, culot@FreeBSD.org From: culot@FreeBSD.org Cc: Subject: Re: ports/156754: [MAINTAINER] irc/weechat-devel: update to 20110501 (0.3.5-rc2) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 May 2011 15:29:05 -0000 Synopsis: [MAINTAINER] irc/weechat-devel: update to 20110501 (0.3.5-rc2) Responsible-Changed-From-To: freebsd-ports-bugs->culot Responsible-Changed-By: culot Responsible-Changed-When: Sun May 1 15:29:04 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=156754 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun May 1 16:00:22 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BBF9E1065672 for ; Sun, 1 May 2011 16:00:22 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6F1678FC13 for ; Sun, 1 May 2011 16:00:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p41G0MVY086292 for ; Sun, 1 May 2011 16:00:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p41G0Mpj086291; Sun, 1 May 2011 16:00:22 GMT (envelope-from gnats) Resent-Date: Sun, 1 May 2011 16:00:22 GMT Resent-Message-Id: <201105011600.p41G0Mpj086291@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Goran Lowkrantz Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6AFA3106564A for ; Sun, 1 May 2011 15:59:57 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 59C0F8FC13 for ; Sun, 1 May 2011 15:59:57 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p41FxuDk025812 for ; Sun, 1 May 2011 15:59:56 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p41Fxu59025808; Sun, 1 May 2011 15:59:56 GMT (envelope-from nobody) Message-Id: <201105011559.p41Fxu59025808@red.freebsd.org> Date: Sun, 1 May 2011 15:59:56 GMT From: Goran Lowkrantz To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156755: nullmailer package can't install as directory only create in ports install X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 May 2011 16:00:22 -0000 >Number: 156755 >Category: ports >Synopsis: nullmailer package can't install as directory only create in ports install >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: Sun May 01 16:00:22 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Goran Lowkrantz >Release: FreeBSD 8.2-STABLE >Organization: isMobuile AB >Environment: FreeBSD midgard.glz.hidden-powers.com 8.2-STABLE FreeBSD 8.2-STABLE #97: Sat Apr 2 18:50:40 CEST 2011 root@midgard.glz.hidden-powers.com:/usr/obj/usr/src/sys/SERVER amd64 >Description: pkg_add of a nullmailer package create from current ports failes with Creating "/usr/local/etc/nullmailer/me.sample". ./+INSTALL: cannot create /usr/local/etc/nullmailer/me.sample: No such file or directory pkg_add: install script returned error status This is due to the fact that the etc/nullmailer directory is create with a Makefile command in post-install: @${INSTALL_DATA} -c ${FILESDIR}/remotes.sample ${PREFIX}/etc/nullmailer/ During package installation this line is not executed so when the installation script runs it fails with the above error. >How-To-Repeat: Build a package of nullmailer nullmailer-1.05_2,1 and try to install using pkg_add. >Fix: Either add a line mkdir -p %%PREFIX%%/etc/nullmailer to the pkg-install.in file or change the way the remote.samples is included in the package. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun May 1 17:10:12 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AACCE1065674 for ; Sun, 1 May 2011 17:10:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 86A768FC16 for ; Sun, 1 May 2011 17:10:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p41HACRg048918 for ; Sun, 1 May 2011 17:10:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p41HAC7O048917; Sun, 1 May 2011 17:10:12 GMT (envelope-from gnats) Resent-Date: Sun, 1 May 2011 17:10:12 GMT Resent-Message-Id: <201105011710.p41HAC7O048917@freefall.freebsd.org> 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:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 97EEE1065672 for ; Sun, 1 May 2011 17:06:18 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id E69828FC12 for ; Sun, 1 May 2011 17:06:06 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p41H5J3c000592 for ; Sun, 1 May 2011 17:05:19 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p41H5J9W000591; Sun, 1 May 2011 17:05:19 GMT (envelope-from nobody) Message-Id: <201105011705.p41H5J9W000591@red.freebsd.org> Date: Sun, 1 May 2011 17:05:19 GMT From: Olivier To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156756: libmemcached tests fail with gcc46 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 May 2011 17:10:12 -0000 >Number: 156756 >Category: ports >Synopsis: libmemcached tests fail with gcc46 >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 May 01 17:10:12 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Olivier >Release: 8.2 >Organization: interfaSys sàrl >Environment: 8.2-STABLE FreeBSD 8.2-STABLE #0: Sun Apr 10 amd64 >Description: No problem to compile 0.48, but impossible to compile 0.49 as tests fail with this: CC tests/atomsmasher.o CXX tests/tests_hash_plus-hash_plus.o CC tests/start.o CXX tests/basic.o CXX tests/deprecated.o CXX tests/error_conditions.o CC tests/tests_testapp-mem_functions.o CXX tests/parser.o CXX tests/pool.o CXX tests/print.o CXX tests/replication.o CXX tests/string.o tests/basic.cc: In function 'test_return_t basic_reset_stack_clone_test(memcached_st*)': tests/basic.cc:107:34: error: 'memset' was not declared in this scope gmake[1]: *** [tests/basic.o] Error 1 gmake[1]: *** Waiting for unfinished jobs.... clients/memparse.cc: In function 'int main(int, char**)': clients/memparse.cc:57:65: error: 'strlen' was not declared in this scope gmake[1]: *** [clients/memparse.o] Error 1 tests/pool.cc: In function 'test_return_t memcached_pool_test(memcached_st*)': tests/pool.cc:59:78: error: 'strlen' was not declared in this scope tests/pool.cc:60:152: error: 'strerror' was not declared in this scope gmake[1]: *** [tests/pool.o] Error 1 tests/parser.cc: In function 'test_return_t __check_host(memcached_st*, const scanner_string_st&)': tests/parser.cc:92:53: error: 'strcmp' was not declared in this scope tests/parser.cc: In function 'test_return_t __check_prefix_key(memcached_st*, const scanner_string_st&)': tests/parser.cc:107:53: error: 'strcmp' was not declared in this scope gmake[1]: *** [tests/parser.o] Error 1 gmake[1]: Leaving directory `/usr/ports/databases/libmemcached/work/libmemcached-0.49' gmake: *** [all] Error 2 I've tried with various CFLAGS, but couldn't succeed. >How-To-Repeat: Install gcc46, compile libmemcached >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun May 1 17:50:07 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 21BE3106566B for ; Sun, 1 May 2011 17:50:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EDE778FC16 for ; Sun, 1 May 2011 17:50:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p41Ho6IG085423 for ; Sun, 1 May 2011 17:50:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p41Ho6lq085422; Sun, 1 May 2011 17:50:06 GMT (envelope-from gnats) Resent-Date: Sun, 1 May 2011 17:50:06 GMT Resent-Message-Id: <201105011750.p41Ho6lq085422@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Romain Garbage Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D3022106564A for ; Sun, 1 May 2011 17:48:59 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id B7FE38FC08 for ; Sun, 1 May 2011 17:48:59 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p41HmxWQ055006 for ; Sun, 1 May 2011 17:48:59 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p41Hmxui055005; Sun, 1 May 2011 17:48:59 GMT (envelope-from nobody) Message-Id: <201105011748.p41Hmxui055005@red.freebsd.org> Date: Sun, 1 May 2011 17:48:59 GMT From: Romain Garbage To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156757: New port: security/belier: easily cross several machines with ssh X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 May 2011 17:50:07 -0000 >Number: 156757 >Category: ports >Synopsis: New port: security/belier: easily cross several machines with ssh >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 May 01 17:50:06 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Romain Garbage >Release: 9.0-CURRENT >Organization: >Environment: FreeBSD freebsd-laptop 9.0-CURRENT FreeBSD 9.0-CURRENT #0 r220730M: Tue Apr 19 22:24:33 CEST 2011 root@freebsd-laptop:/usr/obj/usr/src/sys/GENERIC amd64 >Description: New port for belier. Belier is a python app that allows opening a shell or executing a command on a remote computer through a SSH connection. The main feature of Belier is its ability to cross several intermediate computers before realizing the job. >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: # # belier # belier/distinfo # belier/pkg-descr # belier/Makefile # echo c - belier mkdir -p belier > /dev/null 2>&1 echo x - belier/distinfo sed 's/^X//' >belier/distinfo << 'd936b8caf8bc8a34066ed531b9ad17b8' XSHA256 (belier-1.2.tar.gz) = 9fe20425d0e061112c38288ce105bc7905a55c22836e801b310541b56e4df409 XSIZE (belier-1.2.tar.gz) = 9774 d936b8caf8bc8a34066ed531b9ad17b8 echo x - belier/pkg-descr sed 's/^X//' >belier/pkg-descr << '8caf411b5a6d9b5557069847298bcbb5' XBelier allows opening a shell or executing a command on a remote computer Xthrough a SSH connection. The main feature of Belier is its ability to cross Xseveral intermediate computers before realizing the job. X X Belier reaches the final computer through intermediate machines. X You can execute commands with any account available on the remote computer. X It is possible to switch account on intermediate computers before accessing X the final computer. X You can open a data tunnel through every host you cross to the final host. X Belier generates one script for each final computer to reach. X XBelier aims to give a single system administrator a tool to work independently, Xwithout requiring to modify the computers he has to cross, just using the Xcurrent configurations of every machines he has to work with. X XWWW: http://www.ohmytux.com/belier/index.html 8caf411b5a6d9b5557069847298bcbb5 echo x - belier/Makefile sed 's/^X//' >belier/Makefile << '2f83b7471cc78c7b83287d54754afed2' X# New ports collection makefile for: belier X# Date created: 1 May 2011 X# Whom: rokaz X# X# $FreeBSD$ X# X XPORTNAME= belier XPORTVERSION= 1.2 XCATEGORIES= security net XMASTER_SITES= http://www.ohmytux.com/belier/ XPKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} X XMAINTAINER= romain.garbage@gmail.com XCOMMENT= Belier allows automated openings of a shell or command \ X executions on remote computers through ssh. The main feature \ X is Belier\'s ability to cross several computers before joining \ X the final machine. X XRUN_DEPENDS= expect>=5.42.1:${PORTSDIR}/lang/expect X XPLIST_FILES= lib/${PYTHON_VERSION}/site-packages/belier/corps.pyo \ X lib/${PYTHON_VERSION}/site-packages/belier/terminal.pyc \ X lib/${PYTHON_VERSION}/site-packages/belier/options.pyo \ X lib/${PYTHON_VERSION}/site-packages/belier/corps.py \ X lib/${PYTHON_VERSION}/site-packages/belier/__init__.pyo \ X lib/${PYTHON_VERSION}/site-packages/belier/optionstunnel.pyc \ X lib/${PYTHON_VERSION}/site-packages/belier/terminal.py \ X lib/${PYTHON_VERSION}/site-packages/belier/__init__.py \ X lib/${PYTHON_VERSION}/site-packages/belier/corps.pyc \ X lib/${PYTHON_VERSION}/site-packages/belier/optionstunnel.py \ X lib/${PYTHON_VERSION}/site-packages/belier/terminal.pyo \ X lib/${PYTHON_VERSION}/site-packages/belier/options.pyc \ X lib/${PYTHON_VERSION}/site-packages/belier/__init__.pyc \ X lib/${PYTHON_VERSION}/site-packages/belier/options.py \ X lib/${PYTHON_VERSION}/site-packages/belier/optionstunnel.pyo \ X bin/bel \ X share/locale/fr/LC_MESSAGES/bel.mo XPLIST_DIRS= lib/${PYTHON_VERSION}/site-packages/belier X XUSE_PYTHON= 2.4+ XUSE_PYDISTUTILS= yes X X.include 2f83b7471cc78c7b83287d54754afed2 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun May 1 18:30:16 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D0BB6106573F for ; Sun, 1 May 2011 18:30:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 412A18FC0C for ; Sun, 1 May 2011 18:30:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p41IUBwN020784 for ; Sun, 1 May 2011 18:30:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p41IUB4e020776; Sun, 1 May 2011 18:30:11 GMT (envelope-from gnats) Resent-Date: Sun, 1 May 2011 18:30:11 GMT Resent-Message-Id: <201105011830.p41IUB4e020776@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, David Naylor Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 54275106564A for ; Sun, 1 May 2011 18:29:39 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 2ABBD8FC14 for ; Sun, 1 May 2011 18:29:39 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p41ITcDN099136 for ; Sun, 1 May 2011 18:29:38 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p41ITchR099135; Sun, 1 May 2011 18:29:38 GMT (envelope-from nobody) Message-Id: <201105011829.p41ITchR099135@red.freebsd.org> Date: Sun, 1 May 2011 18:29:38 GMT From: David Naylor To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156759: [patch] lang/python: kevent does not accept KQ_NOTE_EXIT (and other (f)flags) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 May 2011 18:30:16 -0000 >Number: 156759 >Category: ports >Synopsis: [patch] lang/python: kevent does not accept KQ_NOTE_EXIT (and other (f)flags) >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 May 01 18:30:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: David Naylor >Release: FreeBSD-current >Organization: Private >Environment: FreeBSD dragon.dg 9.0-CURRENT FreeBSD 9.0-CURRENT #0: Wed Apr 13 19:16:40 SAST 2011 root@dragon.dg:/tmp/home/freebsd9/src/sys/DRAGON amd64 >Description: (Taken from upstream bug report: http://bugs.python.org/issue11973) (This issue appears to affect all releases of python) kevent does not accept all legitimate parameters, such as KQ_NOTE_EXIT. For example: >How-To-Repeat: >Fix: Patch attached with submission follows: --- Modules/selectmodule.c~ 2011-05-01 20:05:12.000000000 +0200 +++ Modules/selectmodule.c 2011-05-01 20:19:46.000000000 +0200 @@ -1246,7 +1246,7 @@ PyObject *pfd; static char *kwlist[] = {"ident", "filter", "flags", "fflags", "data", "udata", NULL}; - static char *fmt = "O|hhi" INTPTRT_FMT_UNIT UINTPTRT_FMT_UNIT ":kevent"; + static char *fmt = "O|hHI" INTPTRT_FMT_UNIT UINTPTRT_FMT_UNIT ":kevent"; EV_SET(&(self->e), 0, EVFILT_READ, EV_ADD, 0, 0, 0); /* defaults */ >Release-Note: >Audit-Trail: >Unformatted: >> from select import * >> kevent(0, KQ_FILTER_PROC, KQ_EV_ADD | KQ_EV_ENABLE, KQ_NOTE_EXIT) OverflowError: signed integer is greater than maximum While the following C code compiles (under -Wall -pedantic) without error, or warning: """ #include #include #include int main(int argc, char **argv) { struct kevent ke; EV_SET(&ke, 0, EVFILT_PROC, EV_ADD | EV_ENABLE, NOTE_EXIT, 0, 0); return (0); } """ Looking at the Modules/selectmodule.c file it is clear that the fields "flags" and "fflags" are defined as T_USHORT and T_UINT however the flags passed to PyArg_ParseTupleAndKeywords are 'h' and 'i' respectively (implying signed numbers). A workaround exists where values X > (2**31 - 1) are passed as (X - 2**32). Also the attached patch fixes the error. From owner-freebsd-ports-bugs@FreeBSD.ORG Sun May 1 18:30:29 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2369E106566B; Sun, 1 May 2011 18:30:29 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EF6DD8FC1A; Sun, 1 May 2011 18:30:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p41IUSP8022421; Sun, 1 May 2011 18:30:28 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p41IUS8j022410; Sun, 1 May 2011 18:30:28 GMT (envelope-from edwin) Date: Sun, 1 May 2011 18:30:28 GMT Message-Id: <201105011830.p41IUS8j022410@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156759: [patch] lang/python: kevent does not accept KQ_NOTE_EXIT (and other (f)flags) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 May 2011 18:30:29 -0000 Synopsis: [patch] lang/python: kevent does not accept KQ_NOTE_EXIT (and other (f)flags) Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Sun May 1 18:30:27 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156759 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun May 1 19:30:15 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 48822106566C for ; Sun, 1 May 2011 19:30:15 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2ED408FC19 for ; Sun, 1 May 2011 19:30:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p41JUEcl074691 for ; Sun, 1 May 2011 19:30:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p41JUEhX074679; Sun, 1 May 2011 19:30:14 GMT (envelope-from gnats) Date: Sun, 1 May 2011 19:30:14 GMT Message-Id: <201105011930.p41JUEhX074679@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Zhihao Yuan Cc: Subject: Re: ports/156747: multimedia/mplayer: fix 24-bits OSS some improvements X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Zhihao Yuan List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 May 2011 19:30:15 -0000 The following reply was made to PR ports/156747; it has been noted by GNATS. From: Zhihao Yuan To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/156747: multimedia/mplayer: fix 24-bits OSS some improvements Date: Sun, 1 May 2011 14:25:43 -0500 --00151744872289fcb704a23bdf27 Content-Type: text/plain; charset=UTF-8 The macro __FreeBSD__ does guarantee the FreeBSD-only 24bit-3bytes macros since 1997. But, just in case, I added one more macro test. Although I don't think there are users who do no update their -current boxes, I added a -current log2 test to Makefile. And I synchronized the modification to Makefile to mencoder. I think these patches are stable enough. -- Zhihao Yuan The best way to predict the future is to invent it. --00151744872289fcb704a23bdf27 Content-Type: application/octet-stream; name=patch-mplayer_1 Content-Disposition: attachment; filename=patch-mplayer_1 Content-Transfer-Encoding: base64 X-Attachment-Id: f_gn6d95cn0 ZGlmZiAtcnVOIC0tZXhjbHVkZT1DVlMgL3Vzci9wb3J0cy9tdWx0aW1lZGlhL21wbGF5ZXIub3Jp Zy9NYWtlZmlsZSAvdXNyL3BvcnRzL211bHRpbWVkaWEvbXBsYXllci9NYWtlZmlsZQotLS0gL3Vz ci9wb3J0cy9tdWx0aW1lZGlhL21wbGF5ZXIub3JpZy9NYWtlZmlsZQkyMDExLTA0LTAxIDA2OjA5 OjM2LjAwMDAwMDAwMCAtMDUwMAorKysgL3Vzci9wb3J0cy9tdWx0aW1lZGlhL21wbGF5ZXIvTWFr ZWZpbGUJMjAxMS0wNS0wMSAxNDowOTo0Ni45OTMzNTk3MzEgLTA1MDAKQEAgLTcsNyArNyw3IEBA CiAKIFBPUlROQU1FPQltcGxheWVyCiBQT1JUVkVSU0lPTj0JJHtNUExBWUVSX1BPUlRfVkVSU0lP Tn0KLVBPUlRSRVZJU0lPTj0JMAorUE9SVFJFVklTSU9OPQkxCiBDT01NRU5UPQlIaWdoIHBlcmZv cm1hbmNlIG1lZGlhIHBsYXllciBzdXBwb3J0aW5nIG1hbnkgZm9ybWF0cwogCiAuaW5jbHVkZSAi JHsuQ1VSRElSfS9NYWtlZmlsZS5zaGFyZWQiCkBAIC04OSw2ICs4OSw3IEBACiAJCQktLWRpc2Fi bGUtbGliZGlyYWMtbGF2YyBcCiAJCQktLWRpc2FibGUtbWVuY29kZXIgXAogCQkJLS1kaXNhYmxl LW1wZzEyMyBcCisJCQktLWRpc2FibGUtYWxzYSBcCiAJCQktLWRpc2FibGUtbXVzZXBhY2sKIAog LmluY2x1ZGUgIiR7LkNVUkRJUn0vTWFrZWZpbGUub3B0aW9ucyIKQEAgLTI3Miw5ICsyNzMsMTMg QEAKIAkJJHtXUktTUkN9L2NvbmZpZy5tYWsKIAlAJHtSRUlOUExBQ0VfQ01EfSBcCiAJCS1lICdz I0hBVkVfRkFTVF9DTU9WIDEjSEFWRV9GQVNUX0NNT1YgMCNnJyBcCisJCSR7V1JLU1JDfS9jb25m aWcuaAorLmlmICR7T1NWRVJTSU9OfSA8IDgwMjUwMiB8fCAoJHtPU1ZFUlNJT059ID49IDkwMDAw MCAmJiAke09TVkVSU0lPTn0gPCA5MDAwMjcpCisJQCR7UkVJTlBMQUNFX0NNRH0gXAogCQktZSAn cyNIQVZFX0xPRzIgMSNIQVZFX0xPRzIgMCNnJyBcCiAJCS1lICdzI0hBVkVfTE9HMkYgMSNIQVZF X0xPRzJGIDAjZycgXAogCQkke1dSS1NSQ30vY29uZmlnLmgKKy5lbmRpZgogCiBwb3N0LWluc3Rh bGw6CiAJQCR7TUtESVJ9ICR7REFUQURJUn0KZGlmZiAtcnVOIC0tZXhjbHVkZT1DVlMgL3Vzci9w b3J0cy9tdWx0aW1lZGlhL21wbGF5ZXIub3JpZy9maWxlcy9wYXRjaC1saWJhbzItYW9fb3NzLmMg L3Vzci9wb3J0cy9tdWx0aW1lZGlhL21wbGF5ZXIvZmlsZXMvcGF0Y2gtbGliYW8yLWFvX29zcy5j Ci0tLSAvdXNyL3BvcnRzL211bHRpbWVkaWEvbXBsYXllci5vcmlnL2ZpbGVzL3BhdGNoLWxpYmFv Mi1hb19vc3MuYwkyMDEwLTA0LTIxIDA4OjA3OjIyLjAwMDAwMDAwMCAtMDUwMAorKysgL3Vzci9w b3J0cy9tdWx0aW1lZGlhL21wbGF5ZXIvZmlsZXMvcGF0Y2gtbGliYW8yLWFvX29zcy5jCTIwMTEt MDUtMDEgMTQ6MTI6NDkuODI5MjU0NzI5IC0wNTAwCkBAIC0xLDE0ICsxLDM4IEBACi0tLS0gbGli YW8yL2FvX29zcy5jLm9yaWcJMjAwOS0wNS0xMiAyMTo1ODo1Ny4wMDAwMDAwMDAgLTA1MDAKLSsr KyBsaWJhbzIvYW9fb3NzLmMJMjAwOS0wNy0yMyAxOTo1ODo0NC44NzAwOTcyMDMgLTA1MDAKLUBA IC00NTMsNiArNDUzLDcgQEAKKy0tLSBsaWJhbzIvYW9fb3NzLmMub3JpZwkyMDEwLTAxLTExIDE0 OjI3OjUyLjAwMDAwMDAwMCAtMDYwMAorKysrIGxpYmFvMi9hb19vc3MuYwkyMDExLTA1LTAxIDAz OjI0OjM3LjQ2NTU4MDM2MiAtMDUwMAorQEAgLTcyLDYgKzcyLDExIEBAIHN0YXRpYyBpbnQgZm9y bWF0Mm9zcyhpbnQgZm9ybWF0KQorICAgICBjYXNlIEFGX0ZPUk1BVF9TMTZfQkU6IHJldHVybiBB Rk1UX1MxNl9CRTsKKyAjaWZkZWYgQUZNVF9TMjRfUEFDS0VECisgICAgIGNhc2UgQUZfRk9STUFU X1MyNF9MRTogcmV0dXJuIEFGTVRfUzI0X1BBQ0tFRDsKKysjZWxpZiBkZWZpbmVkKF9fRnJlZUJT RF9fKSAmJiBkZWZpbmVkKEFGTVRfUzI0X0xFKQorKyAgICBjYXNlIEFGX0ZPUk1BVF9VMjRfTEU6 IHJldHVybiBBRk1UX1UyNF9MRTsKKysgICAgY2FzZSBBRl9GT1JNQVRfVTI0X0JFOiByZXR1cm4g QUZNVF9VMjRfQkU7CisrICAgIGNhc2UgQUZfRk9STUFUX1MyNF9MRTogcmV0dXJuIEFGTVRfUzI0 X0xFOworKyAgICBjYXNlIEFGX0ZPUk1BVF9TMjRfQkU6IHJldHVybiBBRk1UX1MyNF9CRTsKKyAj ZW5kaWYKKyAjaWZkZWYgQUZNVF9VMzJfTEUKKyAgICAgY2FzZSBBRl9GT1JNQVRfVTMyX0xFOiBy ZXR1cm4gQUZNVF9VMzJfTEU7CitAQCAtMTE1LDYgKzEyMCwxMSBAQCBzdGF0aWMgaW50IG9zczJm b3JtYXQoaW50IGZvcm1hdCkKKyAgICAgY2FzZSBBRk1UX1MxNl9CRTogcmV0dXJuIEFGX0ZPUk1B VF9TMTZfQkU7CisgI2lmZGVmIEFGTVRfUzI0X1BBQ0tFRAorICAgICBjYXNlIEFGTVRfUzI0X1BB Q0tFRDogcmV0dXJuIEFGX0ZPUk1BVF9TMjRfTEU7CisrI2VsaWYgZGVmaW5lZChfX0ZyZWVCU0Rf XykgJiYgZGVmaW5lZChBRk1UX1MyNF9MRSkKKysgICAgY2FzZSBBRk1UX1UyNF9MRTogcmV0dXJu IEFGX0ZPUk1BVF9VMjRfTEU7CisrICAgIGNhc2UgQUZNVF9VMjRfQkU6IHJldHVybiBBRl9GT1JN QVRfVTI0X0JFOworKyAgICBjYXNlIEFGTVRfUzI0X0xFOiByZXR1cm4gQUZfRk9STUFUX1MyNF9M RTsKKysgICAgY2FzZSBBRk1UX1MyNF9CRTogcmV0dXJuIEFGX0ZPUk1BVF9TMjRfQkU7CisgI2Vu ZGlmCisgI2lmZGVmIEFGTVRfVTMyX0xFCisgICAgIGNhc2UgQUZNVF9VMzJfTEU6IHJldHVybiBB Rl9GT1JNQVRfVTMyX0xFOworQEAgLTQ0OCw2ICs0NTgsNyBAQCBzdGF0aWMgdm9pZCByZXNldCh2 b2lkKXsKICAgIGZjbnRsKGF1ZGlvX2ZkLCBGX1NFVEZELCBGRF9DTE9FWEVDKTsKICAjZW5kaWYK ICAKICsgIGlvY3RsIChhdWRpb19mZCwgU05EQ1RMX0RTUF9TUEVFRCwgJmFvX2RhdGEuc2FtcGxl cmF0ZSk7CiAgICBvc3NfZm9ybWF0ID0gZm9ybWF0Mm9zcyhhb19kYXRhLmZvcm1hdCk7Ci0gICBp Zihhb19kYXRhLmZvcm1hdCA9PSBBRl9GT1JNQVRfQUMzKQorICAgaWYoQUZfRk9STUFUX0lTX0FD Myhhb19kYXRhLmZvcm1hdCkpCiAgICAgIGlvY3RsIChhdWRpb19mZCwgU05EQ1RMX0RTUF9TUEVF RCwgJmFvX2RhdGEuc2FtcGxlcmF0ZSk7Ci1AQCAtNDY0LDcgKzQ2NSw2IEBACitAQCAtNDU5LDcg KzQ3MCw2IEBAIHN0YXRpYyB2b2lkIHJlc2V0KHZvaWQpewogICAgICAgIGludCBjID0gYW9fZGF0 YS5jaGFubmVscy0xOwogICAgICAgIGlvY3RsIChhdWRpb19mZCwgU05EQ1RMX0RTUF9TVEVSRU8s ICZjKTsKICAgICAgfQo= --00151744872289fcb704a23bdf27 Content-Type: application/octet-stream; name=patch-mencoder_1 Content-Disposition: attachment; filename=patch-mencoder_1 Content-Transfer-Encoding: base64 X-Attachment-Id: f_gn6d9cng1 ZGlmZiAtcnVOIC0tZXhjbHVkZT1DVlMgL3Vzci9wb3J0cy9tdWx0aW1lZGlhL21lbmNvZGVyLm9y aWcvTWFrZWZpbGUgL3Vzci9wb3J0cy9tdWx0aW1lZGlhL21lbmNvZGVyL01ha2VmaWxlCi0tLSAv dXNyL3BvcnRzL211bHRpbWVkaWEvbWVuY29kZXIub3JpZy9NYWtlZmlsZQkyMDExLTA0LTAxIDA2 OjA5OjM2LjAwMDAwMDAwMCAtMDUwMAorKysgL3Vzci9wb3J0cy9tdWx0aW1lZGlhL21lbmNvZGVy L01ha2VmaWxlCTIwMTEtMDUtMDEgMTQ6MDc6NTUuMzgwMjA0NTAyIC0wNTAwCkBAIC02LDcgKzYs NyBAQAogCiBQT1JUTkFNRT0JbWVuY29kZXIKIFBPUlRWRVJTSU9OPQkke01QTEFZRVJfUE9SVF9W RVJTSU9OfQotUE9SVFJFVklTSU9OPQkwCitQT1JUUkVWSVNJT049CTEKIENPTU1FTlQ9CUNvbnZl bmllbnQgdmlkZW8gZmlsZSBhbmQgbW92aWUgZW5jb2RlcgogUkVTVFJJQ1RFRD0JUG9ydCBoYXMg cmVzdHJpY3RlZCBkZXBlbmRlbmNpZXMKIApAQCAtODQsNiArODQsNyBAQAogCQkJLS1kaXNhYmxl LWRpcmVjdGZiIFwKIAkJCS0tZGlzYWJsZS1zc3NlMyBcCiAJCQktLWRpc2FibGUtbXBnMTIzIFwK KwkJCS0tZGlzYWJsZS1hbHNhIFwKIAkJCS0tZGlzYWJsZS1tdXNlcGFjawogCiBBTExfVEFSR0VU PQltZW5jb2RlcgpAQCAtMTY3LDkgKzE2OCwxMyBAQAogCQkke1dSS1NSQ30vY29uZmlnLm1hawog CUAke1JFSU5QTEFDRV9DTUR9IFwKIAkJLWUgJ3MjSEFWRV9GQVNUX0NNT1YgMSNIQVZFX0ZBU1Rf Q01PViAwI2cnIFwKKwkJJHtXUktTUkN9L2NvbmZpZy5oCisuaWYgJHtPU1ZFUlNJT059IDwgODAy NTAyIHx8ICgke09TVkVSU0lPTn0gPj0gOTAwMDAwICYmICR7T1NWRVJTSU9OfSA8IDkwMDAyNykK KwlAJHtSRUlOUExBQ0VfQ01EfSBcCiAJCS1lICdzI0hBVkVfTE9HMiAxI0hBVkVfTE9HMiAwI2cn IFwKIAkJLWUgJ3MjSEFWRV9MT0cyRiAxI0hBVkVfTE9HMkYgMCNnJyBcCiAJCSR7V1JLU1JDfS9j b25maWcuaAorLmVuZGlmCiAKIGRvLWluc3RhbGw6CiAJQCR7SU5TVEFMTF9QUk9HUkFNfSAke1dS S1NSQ30vbWVuY29kZXIgJHtQUkVGSVh9L2Jpbgo= --00151744872289fcb704a23bdf27-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sun May 1 20:13:47 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A466F106566C; Sun, 1 May 2011 20:13:47 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7B7548FC16; Sun, 1 May 2011 20:13:47 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p41KDl7a022125; Sun, 1 May 2011 20:13:47 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p41KDl3a022121; Sun, 1 May 2011 20:13:47 GMT (envelope-from linimon) Date: Sun, 1 May 2011 20:13:47 GMT Message-Id: <201105012013.p41KDl3a022121@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, glarkin@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/156755: mail/nullmailer package can't install as directory only create in ports install X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 May 2011 20:13:47 -0000 Old Synopsis: nullmailer package can't install as directory only create in ports install New Synopsis: mail/nullmailer package can't install as directory only create in ports install Responsible-Changed-From-To: freebsd-ports-bugs->glarkin Responsible-Changed-By: linimon Responsible-Changed-When: Sun May 1 20:13:21 UTC 2011 Responsible-Changed-Why: Fix synopsis and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=156755 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun May 1 20:15:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D879E10656A4; Sun, 1 May 2011 20:15:11 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B00568FC19; Sun, 1 May 2011 20:15:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p41KFBZa022591; Sun, 1 May 2011 20:15:11 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p41KFBNp022587; Sun, 1 May 2011 20:15:11 GMT (envelope-from linimon) Date: Sun, 1 May 2011 20:15:11 GMT Message-Id: <201105012015.p41KFBNp022587@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vanilla@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/156756: databases/libmemcached tests fail with gcc46 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 May 2011 20:15:11 -0000 Old Synopsis: libmemcached tests fail with gcc46 New Synopsis: databases/libmemcached tests fail with gcc46 Responsible-Changed-From-To: freebsd-ports-bugs->vanilla Responsible-Changed-By: linimon Responsible-Changed-When: Sun May 1 20:14:34 UTC 2011 Responsible-Changed-Why: Fix synopsis and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=156756 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon May 2 01:40:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A91AF1065678 for ; Mon, 2 May 2011 01:40:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 85C488FC18 for ; Mon, 2 May 2011 01:40:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p421eAwY011003 for ; Mon, 2 May 2011 01:40:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p421eAn1011002; Mon, 2 May 2011 01:40:10 GMT (envelope-from gnats) Resent-Date: Mon, 2 May 2011 01:40:10 GMT Resent-Message-Id: <201105020140.p421eAn1011002@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Naram Qashat Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 871E1106566B for ; Mon, 2 May 2011 01:30:33 +0000 (UTC) (envelope-from root@cyberbotx.com) Received: from qmta03.emeryville.ca.mail.comcast.net (qmta03.emeryville.ca.mail.comcast.net [76.96.30.32]) by mx1.freebsd.org (Postfix) with ESMTP id 751798FC15 for ; Mon, 2 May 2011 01:30:33 +0000 (UTC) Received: from omta21.emeryville.ca.mail.comcast.net ([76.96.30.88]) by qmta03.emeryville.ca.mail.comcast.net with comcast id eQYY1g0031u4NiLA3RHN2n; Mon, 02 May 2011 01:17:22 +0000 Received: from kirby.cyberbotx.com ([69.244.146.119]) by omta21.emeryville.ca.mail.comcast.net with comcast id eRHL1g00L2anbQt8hRHMJH; Mon, 02 May 2011 01:17:22 +0000 Received: by kirby.cyberbotx.com (Postfix, from userid 0) id 8E20528459; Sun, 1 May 2011 21:17:19 -0400 (EDT) Message-Id: <20110502011719.8E20528459@kirby.cyberbotx.com> Date: Sun, 1 May 2011 21:17:19 -0400 (EDT) From: Naram Qashat To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/156761: [MAINTAINER] x11-toolkits/scintilla: update to 2.25 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 May 2011 01:40:10 -0000 >Number: 156761 >Category: ports >Synopsis: [MAINTAINER] x11-toolkits/scintilla: update to 2.25 >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 May 02 01:40:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Naram Qashat >Release: FreeBSD 8.2-RELEASE amd64 >Organization: >Environment: System: FreeBSD kirby.cyberbotx.com 8.2-RELEASE FreeBSD 8.2-RELEASE #3: Sun Feb 27 08:58:31 EST 2011 >Description: - Update to 2.25 Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- scintilla-2.25.patch begins here --- diff -ruN --exclude=CVS /usr/ports/x11-toolkits/scintilla/Makefile /kirby/shared/ports/scintilla/Makefile --- /usr/ports/x11-toolkits/scintilla/Makefile 2011-02-06 12:37:11.000000000 -0500 +++ /kirby/shared/ports/scintilla/Makefile 2011-05-01 19:52:35.000000000 -0400 @@ -6,7 +6,7 @@ # $MCom: ports/x11-toolkits/scintilla/Makefile,v 1.3 2006/09/17 21:58:56 marcus Exp $ PORTNAME= scintilla -PORTVERSION= 2.24 +PORTVERSION= 2.25 CATEGORIES= x11-toolkits MASTER_SITES= SF/scintilla/SciTE/${PORTVERSION} DISTNAME= scite${PORTVERSION:S/.//g} diff -ruN --exclude=CVS /usr/ports/x11-toolkits/scintilla/distinfo /kirby/shared/ports/scintilla/distinfo --- /usr/ports/x11-toolkits/scintilla/distinfo 2011-02-06 12:37:11.000000000 -0500 +++ /kirby/shared/ports/scintilla/distinfo 2011-05-01 19:52:44.000000000 -0400 @@ -1,2 +1,2 @@ -SHA256 (scite224.tgz) = b2de71d4e9d36465e410dd41186ab86d287be5a00e3d06037cb40bb4510f7360 -SIZE (scite224.tgz) = 1829813 +SHA256 (scite225.tgz) = e9f1c7d5909fca359cb2993eb82a07b3323d53bcd0d4ba1e8ff181a8d471061f +SIZE (scite225.tgz) = 1843570 diff -ruN --exclude=CVS /usr/ports/x11-toolkits/scintilla/files/patch-aa /kirby/shared/ports/scintilla/files/patch-aa --- /usr/ports/x11-toolkits/scintilla/files/patch-aa 2010-06-02 19:42:39.000000000 -0400 +++ /kirby/shared/ports/scintilla/files/patch-aa 2011-05-01 19:57:33.000000000 -0400 @@ -1,5 +1,5 @@ ---- makefile.orig 2010-05-31 23:35:35.000000000 -0400 -+++ makefile 2010-06-01 17:41:51.000000000 -0400 +--- makefile.orig 2011-03-17 18:41:24.000000000 -0400 ++++ makefile 2011-05-01 19:57:17.000000000 -0400 @@ -7,14 +7,14 @@ # Also works with ming32-make on Windows. @@ -22,18 +22,18 @@ +AR = $(CXX) -shared RANLIB = touch - ifndef windir -@@ -23,7 +23,8 @@ - endif - endif - + # Environment variable windir always defined on Win32 +@@ -30,7 +30,8 @@ + COMPLIB=..\bin\scintilla.a + else + DEL = rm -f -COMPLIB=../bin/scintilla.a +COMPLIB=../bin/libscintilla.so.2 +LEXRLIB=../bin/libscintilla_lexers.so.2 + endif - vpath %.h ../src ../include - vpath %.cxx ../src -@@ -38,18 +39,18 @@ + vpath %.h ../src ../include ../lexlib +@@ -47,22 +48,22 @@ endif ifdef DEBUG @@ -55,19 +55,15 @@ - $(CCOMP) $(CONFIGFLAGS) $(CXXFLAGS) -w -c $< + $(CCOMP) $(PICFLAGS) $(CONFIGFLAGS) $(CXXFLAGS) -w -c $< - #++Autogenerated -- run src/LexGen.py to regenerate - #**LEXOBJS=\\\n\(\*.o \) -@@ -68,7 +69,7 @@ - LexVHDL.o LexYAML.o - #--Autogenerated -- end of automatically generated section + LEXOBJS:=$(addsuffix .o,$(basename $(notdir $(wildcard ../lexers/Lex*.cxx)))) -all: $(COMPLIB) +all: $(COMPLIB) $(LEXRLIB) clean: - rm -f *.o $(COMPLIB) -@@ -81,9 +82,11 @@ - ScintillaBase.o ContractionState.o Editor.o ExternalLexer.o PropSet.o PlatGTK.o \ + $(DEL) *.o $(COMPLIB) +@@ -75,9 +76,11 @@ + ScintillaBase.o ContractionState.o Editor.o ExternalLexer.o PropSetSimple.o PlatGTK.o \ KeyMap.o LineMarker.o PositionCache.o ScintillaGTK.o CellBuffer.o ViewStyle.o \ RESearch.o RunStyles.o Selection.o Style.o Indicator.o AutoComplete.o UniConversion.o XPM.o \ - $(MARSHALLER) $(LEXOBJS) --- scintilla-2.25.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon May 2 01:50:07 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B11A91065672 for ; Mon, 2 May 2011 01:50:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 868088FC14 for ; Mon, 2 May 2011 01:50:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p421o7OI019814 for ; Mon, 2 May 2011 01:50:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p421o71A019813; Mon, 2 May 2011 01:50:07 GMT (envelope-from gnats) Resent-Date: Mon, 2 May 2011 01:50:07 GMT Resent-Message-Id: <201105020150.p421o71A019813@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Naram Qashat Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4AA73106566B for ; Mon, 2 May 2011 01:43:56 +0000 (UTC) (envelope-from root@cyberbotx.com) Received: from qmta14.emeryville.ca.mail.comcast.net (qmta14.emeryville.ca.mail.comcast.net [76.96.27.212]) by mx1.freebsd.org (Postfix) with ESMTP id 377A38FC12 for ; Mon, 2 May 2011 01:43:55 +0000 (UTC) Received: from omta11.emeryville.ca.mail.comcast.net ([76.96.30.36]) by qmta14.emeryville.ca.mail.comcast.net with comcast id eRex1g0040mlR8UAERjv4B; Mon, 02 May 2011 01:43:55 +0000 Received: from kirby.cyberbotx.com ([69.244.146.119]) by omta11.emeryville.ca.mail.comcast.net with comcast id eRjh1g00q2anbQt8XRjs4o; Mon, 02 May 2011 01:43:54 +0000 Received: by kirby.cyberbotx.com (Postfix, from userid 0) id 941D128459; Sun, 1 May 2011 21:43:40 -0400 (EDT) Message-Id: <20110502014340.941D128459@kirby.cyberbotx.com> Date: Sun, 1 May 2011 21:43:40 -0400 (EDT) From: Naram Qashat To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/156762: [MAINTAINER] editors/scite: update to 2.25 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 May 2011 01:50:07 -0000 >Number: 156762 >Category: ports >Synopsis: [MAINTAINER] editors/scite: update to 2.25 >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 May 02 01:50:07 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Naram Qashat >Release: FreeBSD 8.2-RELEASE amd64 >Organization: >Environment: System: FreeBSD kirby.cyberbotx.com 8.2-RELEASE FreeBSD 8.2-RELEASE #3: Sun Feb 27 08:58:31 EST 2011 >Description: - Update to 2.25 NOTE: This PR relies on PR ports/156761 to be committed first. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- scite-2.25.patch begins here --- diff -ruN --exclude=CVS /usr/ports/editors/scite/Makefile /kirby/shared/ports/scite/Makefile --- /usr/ports/editors/scite/Makefile 2011-02-06 12:34:50.000000000 -0500 +++ /kirby/shared/ports/scite/Makefile 2011-05-01 21:17:40.000000000 -0400 @@ -6,7 +6,7 @@ # PORTNAME= scite -PORTVERSION= 2.24 +PORTVERSION= 2.25 CATEGORIES= editors gnome MASTER_SITES= SF/scintilla/SciTE/${PORTVERSION} DISTNAME= ${PORTNAME}${PORTVERSION:S/.//g} diff -ruN --exclude=CVS /usr/ports/editors/scite/distinfo /kirby/shared/ports/scite/distinfo --- /usr/ports/editors/scite/distinfo 2011-02-06 12:34:50.000000000 -0500 +++ /kirby/shared/ports/scite/distinfo 2011-05-01 21:17:46.000000000 -0400 @@ -1,2 +1,2 @@ -SHA256 (scite224.tgz) = b2de71d4e9d36465e410dd41186ab86d287be5a00e3d06037cb40bb4510f7360 -SIZE (scite224.tgz) = 1829813 +SHA256 (scite225.tgz) = e9f1c7d5909fca359cb2993eb82a07b3323d53bcd0d4ba1e8ff181a8d471061f +SIZE (scite225.tgz) = 1843570 diff -ruN --exclude=CVS /usr/ports/editors/scite/pkg-plist /kirby/shared/ports/scite/pkg-plist --- /usr/ports/editors/scite/pkg-plist 2010-08-01 12:39:17.000000000 -0400 +++ /kirby/shared/ports/scite/pkg-plist 2011-05-01 21:18:25.000000000 -0400 @@ -60,6 +60,7 @@ %%DATADIR%%/matlab.properties %%DATADIR%%/metapost.properties %%DATADIR%%/mmixal.properties +%%DATADIR%%/modula3.properties %%DATADIR%%/nimrod.properties %%DATADIR%%/nncrontab.properties %%DATADIR%%/nsis.properties --- scite-2.25.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon May 2 05:20:09 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D3B50106564A for ; Mon, 2 May 2011 05:20:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A82538FC0C for ; Mon, 2 May 2011 05:20:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p425K98S015328 for ; Mon, 2 May 2011 05:20:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p425K9fb015327; Mon, 2 May 2011 05:20:09 GMT (envelope-from gnats) Resent-Date: Mon, 2 May 2011 05:20:09 GMT Resent-Message-Id: <201105020520.p425K9fb015327@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Rob Farmer Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E84731065672 for ; Mon, 2 May 2011 05:16:12 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id D8D9B8FC16 for ; Mon, 2 May 2011 05:16:12 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p425GCPr066061 for ; Mon, 2 May 2011 05:16:12 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p425GCV9066060; Mon, 2 May 2011 05:16:12 GMT (envelope-from nobody) Message-Id: <201105020516.p425GCV9066060@red.freebsd.org> Date: Mon, 2 May 2011 05:16:12 GMT From: Rob Farmer To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156763: [patch] databases/mantis Update to 1.2.5 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 May 2011 05:20:09 -0000 >Number: 156763 >Category: ports >Synopsis: [patch] databases/mantis Update to 1.2.5 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon May 02 05:20:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Rob Farmer >Release: 9.0-CURRENT >Organization: >Environment: FreeBSD turquoise.predatorlabs.net 9.0-CURRENT FreeBSD 9.0-CURRENT #1: Sun May 1 19:34:13 PDT 2011 rfarmer@turquoise.predatorlabs.net:/usr/obj/usr/src/sys/TURQUOISE amd64 >Description: Update to 1.2.5 MantisBT 1.2.5 is a maintenance update for the stable 1.2.x branch. It is recommended that all MantisBT users (including those still using 1.1.x or earlier versions) upgrade to this latest release. This release brings improved translations in many languages as well as numerous bug fixes across a range of MantisBT features. A full changelog for 1.2.5 can be found on the official site: http://www.mantisbt.org/bugs/changelog_page.php?version_id=113 >How-To-Repeat: >Fix: Patch attached with submission follows: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/databases/mantis/Makefile,v retrieving revision 1.28 diff -u -r1.28 Makefile --- Makefile 29 Jan 2011 14:30:47 -0000 1.28 +++ Makefile 1 May 2011 21:25:27 -0000 @@ -6,7 +6,7 @@ # PORTNAME= mantis -PORTVERSION= 1.2.4 +PORTVERSION= 1.2.5 CATEGORIES= databases www MASTER_SITES= SF/${PORTNAME}bt/${PORTNAME}-stable/${PORTVERSION} DISTNAME= mantisbt-${PORTVERSION} Index: distinfo =================================================================== RCS file: /home/ncvs/ports/databases/mantis/distinfo,v retrieving revision 1.21 diff -u -r1.21 distinfo --- distinfo 29 Jan 2011 14:30:47 -0000 1.21 +++ distinfo 1 May 2011 21:25:42 -0000 @@ -1,2 +1,2 @@ -SHA256 (mantisbt-1.2.4.tar.gz) = f7c4abeea41dec9f0e7be03d27147f6dec183c55f53b7fabc9383e4b749130cf -SIZE (mantisbt-1.2.4.tar.gz) = 3287059 +SHA256 (mantisbt-1.2.5.tar.gz) = 61ee5f65ec3bde92ee918934a5f463a5af6a603ff2684cf7125a6925bb802efe +SIZE (mantisbt-1.2.5.tar.gz) = 3331571 Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/databases/mantis/pkg-plist,v retrieving revision 1.18 diff -u -r1.18 pkg-plist --- pkg-plist 29 Jan 2011 14:30:47 -0000 1.18 +++ pkg-plist 2 May 2011 04:42:40 -0000 @@ -395,6 +395,7 @@ %%WWWDIR%%/lang/strings_turkish.txt %%WWWDIR%%/lang/strings_ukrainian.txt %%WWWDIR%%/lang/strings_urdu.txt +%%WWWDIR%%/lang/strings_vietnamese.txt %%WWWDIR%%/lang/strings_volapuk.txt %%WWWDIR%%/library/README.libs %%WWWDIR%%/library/adodb/adodb-active-record.inc.php @@ -924,8 +925,11 @@ %%WWWDIR%%/plugins/MantisCoreFormatting/lang/strings_russian.txt %%WWWDIR%%/plugins/MantisCoreFormatting/lang/strings_slovak.txt %%WWWDIR%%/plugins/MantisCoreFormatting/lang/strings_spanish.txt +%%WWWDIR%%/plugins/MantisCoreFormatting/lang/strings_swedish.txt %%WWWDIR%%/plugins/MantisCoreFormatting/lang/strings_swissgerman.txt %%WWWDIR%%/plugins/MantisCoreFormatting/lang/strings_tagalog.txt +%%WWWDIR%%/plugins/MantisCoreFormatting/lang/strings_turkish.txt +%%WWWDIR%%/plugins/MantisCoreFormatting/lang/strings_vietnamese.txt %%WWWDIR%%/plugins/MantisCoreFormatting/pages/config.php %%WWWDIR%%/plugins/MantisCoreFormatting/pages/config_edit.php %%WWWDIR%%/plugins/MantisGraph/MantisGraph.php @@ -965,6 +969,7 @@ %%WWWDIR%%/plugins/MantisGraph/lang/strings_swedish.txt %%WWWDIR%%/plugins/MantisGraph/lang/strings_swissgerman.txt %%WWWDIR%%/plugins/MantisGraph/lang/strings_tagalog.txt +%%WWWDIR%%/plugins/MantisGraph/lang/strings_vietnamese.txt %%WWWDIR%%/plugins/MantisGraph/pages/bug_graph_bycategory.php %%WWWDIR%%/plugins/MantisGraph/pages/bug_graph_bystatus.php %%WWWDIR%%/plugins/MantisGraph/pages/bug_graph_page.php @@ -998,6 +1003,7 @@ %%WWWDIR%%/plugins/XmlImportExport/ImportXml/Issue.php %%WWWDIR%%/plugins/XmlImportExport/ImportXml/Mapper.php %%WWWDIR%%/plugins/XmlImportExport/XmlImportExport.php +%%WWWDIR%%/plugins/XmlImportExport/lang/strings_afrikaans.txt %%WWWDIR%%/plugins/XmlImportExport/lang/strings_arabic.txt %%WWWDIR%%/plugins/XmlImportExport/lang/strings_breton.txt %%WWWDIR%%/plugins/XmlImportExport/lang/strings_catalan.txt @@ -1024,6 +1030,8 @@ %%WWWDIR%%/plugins/XmlImportExport/lang/strings_spanish.txt %%WWWDIR%%/plugins/XmlImportExport/lang/strings_swissgerman.txt %%WWWDIR%%/plugins/XmlImportExport/lang/strings_tagalog.txt +%%WWWDIR%%/plugins/XmlImportExport/lang/strings_turkish.txt +%%WWWDIR%%/plugins/XmlImportExport/lang/strings_vietnamese.txt %%WWWDIR%%/plugins/XmlImportExport/mantis.dtd %%WWWDIR%%/plugins/XmlImportExport/pages/export.php %%WWWDIR%%/plugins/XmlImportExport/pages/import.php @@ -1079,6 +1087,7 @@ %%WWWDIR%%/tests/soap/EnumTest.php %%WWWDIR%%/tests/soap/FilterTest.php %%WWWDIR%%/tests/soap/IssueAddTest.php +%%WWWDIR%%/tests/soap/IssueMonitorTest.php %%WWWDIR%%/tests/soap/IssueNoteTest.php %%WWWDIR%%/tests/soap/IssueUpdateTest.php %%WWWDIR%%/tests/soap/LoginTest.php >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon May 2 05:20:20 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D6B651065672; Mon, 2 May 2011 05:20:20 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id AEC6D8FC14; Mon, 2 May 2011 05:20:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p425KKKc016110; Mon, 2 May 2011 05:20:20 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p425KKOh016099; Mon, 2 May 2011 05:20:20 GMT (envelope-from edwin) Date: Mon, 2 May 2011 05:20:20 GMT Message-Id: <201105020520.p425KKOh016099@freefall.freebsd.org> To: rfarmer@predatorlabs.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156763: [patch] databases/mantis Update to 1.2.5 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 May 2011 05:20:20 -0000 Synopsis: [patch] databases/mantis Update to 1.2.5 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Mon May 2 05:20:20 UTC 2011 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156763 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon May 2 05:30:16 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3C5621065672 for ; Mon, 2 May 2011 05:30:16 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2CE3C8FC15 for ; Mon, 2 May 2011 05:30:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p425UFR2023790 for ; Mon, 2 May 2011 05:30:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p425UFFc023787; Mon, 2 May 2011 05:30:15 GMT (envelope-from gnats) Date: Mon, 2 May 2011 05:30:15 GMT Message-Id: <201105020530.p425UFFc023787@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/156763: [patch] databases/mantis Update to 1.2.5 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 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, 02 May 2011 05:30:16 -0000 The following reply was made to PR ports/156763; it has been noted by GNATS. From: Edwin Groothuis To: dan@langille.org Cc: bug-followup@FreeBSD.org Subject: Re: ports/156763: [patch] databases/mantis Update to 1.2.5 Date: Mon, 2 May 2011 05:20:17 UT Maintainer of databases/mantis, Please note that PR ports/156763 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/156763 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Mon May 2 11:50:13 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 890131065674 for ; Mon, 2 May 2011 11:50:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4BFC78FC1C for ; Mon, 2 May 2011 11:50:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p42BoDvr006953 for ; Mon, 2 May 2011 11:50:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p42BoDnx006952; Mon, 2 May 2011 11:50:13 GMT (envelope-from gnats) Resent-Date: Mon, 2 May 2011 11:50:13 GMT Resent-Message-Id: <201105021150.p42BoDnx006952@freefall.freebsd.org> 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 Morozovsky Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 03C1D106566B for ; Mon, 2 May 2011 11:49:36 +0000 (UTC) (envelope-from marck@woozle.rinet.ru) Received: from woozle.rinet.ru (woozle.rinet.ru [195.54.192.68]) by mx1.freebsd.org (Postfix) with ESMTP id 7F7888FC15 for ; Mon, 2 May 2011 11:49:34 +0000 (UTC) Received: from woozle.rinet.ru (localhost [127.0.0.1]) by woozle.rinet.ru (8.14.4/8.14.4) with ESMTP id p42Ba6lv031525 for ; Mon, 2 May 2011 15:36:06 +0400 (MSD) (envelope-from marck@woozle.rinet.ru) Received: (from marck@localhost) by woozle.rinet.ru (8.14.4/8.14.4/Submit) id p42Ba6aK031524; Mon, 2 May 2011 15:36:06 +0400 (MSD) (envelope-from marck) Message-Id: <201105021136.p42Ba6aK031524@woozle.rinet.ru> Date: Mon, 2 May 2011 15:36:06 +0400 (MSD) From: Dmitry Morozovsky To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/156764: databases/postgis hardcoded server version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Dmitry Morozovsky List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 May 2011 11:50:13 -0000 >Number: 156764 >Category: ports >Synopsis: databases/postgis hardcoded server version >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 May 02 11:50:12 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Dmitry Morozovsky >Release: FreeBSD [78]-STABLE {i386,amd64} >Organization: Cronyx Plus LLC (RiNet ISP) >Environment: System: FreeBSD 8-STABLE, 7-STABLE >Description: In database/postgis PGSQL version hardcoded as 83, which seems incorrect, as postgis 1.5.2 supports all versions up to 9.0 >How-To-Repeat: cd /usr/ports/databases/postgis && make all-depends-list | grep 'postgresql.*server' >Fix: Index: databases/postgis/Makefile =================================================================== RCS file: /home/ncvs/ports/databases/postgis/Makefile,v retrieving revision 1.60 diff -u -r1.60 Makefile --- databases/postgis/Makefile 14 Oct 2010 03:19:59 -0000 1.60 +++ databases/postgis/Makefile 2 May 2011 11:33:45 -0000 @@ -20,7 +20,6 @@ USE_BISON= build USE_PGSQL= yes -DEFAULT_PGSQL_VER= 83 USE_GMAKE= yes USE_ICONV= yes USE_LDCONFIG= yes >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon May 2 11:50:28 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E5753106566B; Mon, 2 May 2011 11:50:28 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BCD9D8FC1B; Mon, 2 May 2011 11:50:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p42BoSYW008469; Mon, 2 May 2011 11:50:28 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p42BoSDE008458; Mon, 2 May 2011 11:50:28 GMT (envelope-from edwin) Date: Mon, 2 May 2011 11:50:28 GMT Message-Id: <201105021150.p42BoSDE008458@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, marck@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156764: databases/postgis hardcoded server version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 May 2011 11:50:29 -0000 Synopsis: databases/postgis hardcoded server version Responsible-Changed-From-To: freebsd-ports-bugs->marck Responsible-Changed-By: edwin Responsible-Changed-When: Mon May 2 11:50:28 UTC 2011 Responsible-Changed-Why: Submitter has GNATS access (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156764 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon May 2 14:40:15 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3ECFA10656B3 for ; Mon, 2 May 2011 14:40:15 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 196158FC36 for ; Mon, 2 May 2011 14:40:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p42EeCbO062260 for ; Mon, 2 May 2011 14:40:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p42EeCMK062259; Mon, 2 May 2011 14:40:12 GMT (envelope-from gnats) Resent-Date: Mon, 2 May 2011 14:40:12 GMT Resent-Message-Id: <201105021440.p42EeCMK062259@freefall.freebsd.org> 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 Brovikov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A00DE106566C for ; Mon, 2 May 2011 14:32:52 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 845488FC0C for ; Mon, 2 May 2011 14:32:52 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p42EWpOF053634 for ; Mon, 2 May 2011 14:32:51 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p42EWpNd053628; Mon, 2 May 2011 14:32:51 GMT (envelope-from nobody) Message-Id: <201105021432.p42EWpNd053628@red.freebsd.org> Date: Mon, 2 May 2011 14:32:51 GMT From: Alexander Brovikov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156766: New port: net/libsrtp library implementing Secure RTP X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 May 2011 14:40:15 -0000 >Number: 156766 >Category: ports >Synopsis: New port: net/libsrtp library implementing Secure RTP >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 May 02 14:40:12 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Alexander Brovikov >Release: 8.1-RELEASE >Organization: >Environment: FreeBSD vbox 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Mon Jul 19 02:55:53 UTC 2010 root@almeida.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: This is new port for srtp library: http://sourceforge.net/projects/srtp/ It's needed for SRTP in asterisk. >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: # # libsrtp # libsrtp/Makefile # libsrtp/distinfo # libsrtp/pkg-plist # libsrtp/pkg-descr # echo c - libsrtp mkdir -p libsrtp > /dev/null 2>&1 echo x - libsrtp/Makefile sed 's/^X//' >libsrtp/Makefile << 'd4cf7bf0aae55f533ca056abeec779fb' X# New ports collection makefile for: libsrtp X# Date created: 2 May 2011 X# Whom: Alexander Brovikov X# X# $FreeBSD$ X# X XPORTNAME= libsrtp XPORTVERSION= 1.4.4 XCATEGORIES= net XMASTER_SITES= SF/${ORIGNAME}/${ORIGNAME}/${PORTVERSION} XDISTNAME= ${ORIGNAME}-${PORTVERSION} XEXTRACT_SUFX= .tgz X XMAINTAINER= alexander@brovikov.ru XCOMMENT= libsrtp is a library implementing Secure RTP X XWRKSRC= ${WRKDIR}/${ORIGNAME} XORIGNAME= srtp X XGNU_CONFIGURE= yes XUSE_GMAKE= yes X X.include d4cf7bf0aae55f533ca056abeec779fb echo x - libsrtp/distinfo sed 's/^X//' >libsrtp/distinfo << 'df8360034b1d65b614af4b04fc38fa77' XSHA256 (srtp-1.4.4.tgz) = d9c2cbb1c95172ed2dc963eff0d6ce1072326dc81cb1dd38414e9f0e430af314 XSIZE (srtp-1.4.4.tgz) = 502890 df8360034b1d65b614af4b04fc38fa77 echo x - libsrtp/pkg-plist sed 's/^X//' >libsrtp/pkg-plist << 'c0d5c985f84a109437214147a6ab076c' Xlib/libsrtp.a Xinclude/srtp/aes.h Xinclude/srtp/aes_cbc.h Xinclude/srtp/aes_icm.h Xinclude/srtp/alloc.h Xinclude/srtp/auth.h Xinclude/srtp/cipher.h Xinclude/srtp/config.h Xinclude/srtp/crypto.h Xinclude/srtp/crypto_kernel.h Xinclude/srtp/crypto_math.h Xinclude/srtp/crypto_types.h Xinclude/srtp/cryptoalg.h Xinclude/srtp/datatypes.h Xinclude/srtp/err.h Xinclude/srtp/getopt_s.h Xinclude/srtp/gf2_8.h Xinclude/srtp/hmac.h Xinclude/srtp/integers.h Xinclude/srtp/kernel_compat.h Xinclude/srtp/key.h Xinclude/srtp/null_auth.h Xinclude/srtp/null_cipher.h Xinclude/srtp/prng.h Xinclude/srtp/rand_source.h Xinclude/srtp/rdb.h Xinclude/srtp/rdbx.h Xinclude/srtp/rtp.h Xinclude/srtp/rtp_priv.h Xinclude/srtp/sha1.h Xinclude/srtp/srtp.h Xinclude/srtp/srtp_priv.h Xinclude/srtp/stat.h Xinclude/srtp/ut_sim.h Xinclude/srtp/xfm.h X@dirrm include/srtp c0d5c985f84a109437214147a6ab076c echo x - libsrtp/pkg-descr sed 's/^X//' >libsrtp/pkg-descr << 'bfe3e59782419bc5aa26efcc96ed831c' Xlibsrtp is a library implementing Secure RTP. XRTP is used for Voice over IP (VoIP) as well as audio and video streaming; X XWWW: http://sourceforge.net/projects/srtp/ bfe3e59782419bc5aa26efcc96ed831c exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon May 2 15:49:09 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0BC0A1065673; Mon, 2 May 2011 15:49:09 +0000 (UTC) (envelope-from dhn@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D67578FC1E; Mon, 2 May 2011 15:49:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p42Fn8Ch024784; Mon, 2 May 2011 15:49:08 GMT (envelope-from dhn@freefall.freebsd.org) Received: (from dhn@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p42Fn8BB024780; Mon, 2 May 2011 15:49:08 GMT (envelope-from dhn) Date: Mon, 2 May 2011 15:49:08 GMT Message-Id: <201105021549.p42Fn8BB024780@freefall.freebsd.org> To: dhn@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, dhn@FreeBSD.org From: dhn@FreeBSD.org Cc: Subject: Re: ports/156761: [MAINTAINER] x11-toolkits/scintilla: update to 2.25 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 May 2011 15:49:09 -0000 Synopsis: [MAINTAINER] x11-toolkits/scintilla: update to 2.25 Responsible-Changed-From-To: freebsd-ports-bugs->dhn Responsible-Changed-By: dhn Responsible-Changed-When: Mon May 2 15:49:08 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=156761 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon May 2 15:49:28 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3FCD3106566C; Mon, 2 May 2011 15:49:28 +0000 (UTC) (envelope-from dhn@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 16C178FC19; Mon, 2 May 2011 15:49:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p42FnROu024916; Mon, 2 May 2011 15:49:27 GMT (envelope-from dhn@freefall.freebsd.org) Received: (from dhn@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p42FnRAa024912; Mon, 2 May 2011 15:49:27 GMT (envelope-from dhn) Date: Mon, 2 May 2011 15:49:27 GMT Message-Id: <201105021549.p42FnRAa024912@freefall.freebsd.org> To: dhn@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, dhn@FreeBSD.org From: dhn@FreeBSD.org Cc: Subject: Re: ports/156762: [MAINTAINER] editors/scite: update to 2.25 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 May 2011 15:49:28 -0000 Synopsis: [MAINTAINER] editors/scite: update to 2.25 Responsible-Changed-From-To: freebsd-ports-bugs->dhn Responsible-Changed-By: dhn Responsible-Changed-When: Mon May 2 15:49:27 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=156762 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon May 2 17:27:47 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B6C7E1065674; Mon, 2 May 2011 17:27:47 +0000 (UTC) (envelope-from flo@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8AE408FC1A; Mon, 2 May 2011 17:27:47 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p42HRlkg014095; Mon, 2 May 2011 17:27:47 GMT (envelope-from flo@freefall.freebsd.org) Received: (from flo@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p42HRlBp014091; Mon, 2 May 2011 17:27:47 GMT (envelope-from flo) Date: Mon, 2 May 2011 17:27:47 GMT Message-Id: <201105021727.p42HRlBp014091@freefall.freebsd.org> To: flo@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, flo@FreeBSD.org From: flo@FreeBSD.org Cc: Subject: Re: ports/156766: New port: net/libsrtp library implementing Secure RTP X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 May 2011 17:27:47 -0000 Synopsis: New port: net/libsrtp library implementing Secure RTP Responsible-Changed-From-To: freebsd-ports-bugs->flo Responsible-Changed-By: flo Responsible-Changed-When: Mon May 2 17:27:27 UTC 2011 Responsible-Changed-Why: Take. http://www.freebsd.org/cgi/query-pr.cgi?pr=156766 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon May 2 17:30:13 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5BEFB106566B for ; Mon, 2 May 2011 17:30:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3FFCB8FC0C for ; Mon, 2 May 2011 17:30:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p42HUD40014348 for ; Mon, 2 May 2011 17:30:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p42HUD0Y014345; Mon, 2 May 2011 17:30:13 GMT (envelope-from gnats) Date: Mon, 2 May 2011 17:30:13 GMT Message-Id: <201105021730.p42HUD0Y014345@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Jesse Smith Cc: Subject: Re: ports/156618: Port update: games/searchandrescue X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Jesse Smith List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 May 2011 17:30:13 -0000 The following reply was made to PR ports/156618; it has been noted by GNATS. From: Jesse Smith To: bug-followup@FreeBSD.org, jessefrgsmith@yahoo.ca Cc: Subject: Re: ports/156618: Port update: games/searchandrescue Date: Mon, 02 May 2011 14:11:29 -0300 --=-fTz1LP2BrKKhEc9JM1QM Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit Thank you for pointing out the issue. I made some changes and did a clean build/install and I think everything is working ok. Please find attached a new patch. --=-fTz1LP2BrKKhEc9JM1QM Content-Disposition: attachment; filename="searchandrescue-update-patch.txt" Content-Type: text/plain; name="searchandrescue-update-patch.txt"; charset="UTF-8" Content-Transfer-Encoding: 7bit diff -ruN searchandrescue.bak/Makefile searchandrescue/Makefile --- searchandrescue.bak/Makefile 2011-05-02 13:19:13.000000000 -0300 +++ searchandrescue/Makefile 2011-05-02 13:19:36.000000000 -0300 @@ -2,11 +2,11 @@ # Date created: 10 June 2010 # Whom: Jesse Smith # -# $FreeBSD: ports/games/searchandrescue/Makefile,v 1.2 2010/09/25 14:09:55 makc Exp $ +# $FreeBSD: # PORTNAME= SearchAndRescue -PORTVERSION= 1.1.0 +PORTVERSION= 1.3.0 CATEGORIES= games MASTER_SITES= SF/${PORTNAME:L}/Program/ diff -ruN searchandrescue.bak/distinfo searchandrescue/distinfo --- searchandrescue.bak/distinfo 2011-05-02 13:19:13.000000000 -0300 +++ searchandrescue/distinfo 2011-05-02 14:06:52.000000000 -0300 @@ -1,3 +1,2 @@ -MD5 (SearchAndRescue-1.1.0.tar.gz) = f785d5968a8c3f57b021d40953ac4d32 -SHA256 (SearchAndRescue-1.1.0.tar.gz) = bd3625d920a48cb349975987be7fc79900bde25b2c75a94e300fd0f1035cb94d -SIZE (SearchAndRescue-1.1.0.tar.gz) = 864674 +SHA256 (SearchAndRescue-1.3.0.tar.gz) = 260a3962e0bccb2822a809707acecdfdec4061053a20ad67a33bbda60ca2e13c +SIZE (SearchAndRescue-1.3.0.tar.gz) = 1472727 diff -ruN searchandrescue.bak/files/patch-SearchAndRescue.desktop searchandrescue/files/patch-SearchAndRescue.desktop --- searchandrescue.bak/files/patch-SearchAndRescue.desktop 2011-05-02 13:19:13.000000000 -0300 +++ searchandrescue/files/patch-SearchAndRescue.desktop 1969-12-31 20:00:00.000000000 -0400 @@ -1,10 +0,0 @@ ---- ./SearchAndRescue.desktop.orig 2010-03-05 22:10:43.000000000 +0300 -+++ ./SearchAndRescue.desktop 2010-07-22 23:03:07.163020299 +0400 -@@ -2,6 +2,7 @@ - Encoding=UTF-8 - Name=Search and rescue - Exec=SearchAndRescue -+Icon=SearchAndRescue.xpm - Terminal=False - Type=Application - Categories=Game diff -ruN searchandrescue.bak/files/patch-sar__Makefile searchandrescue/files/patch-sar__Makefile --- searchandrescue.bak/files/patch-sar__Makefile 2011-05-02 13:19:13.000000000 -0300 +++ searchandrescue/files/patch-sar__Makefile 2011-05-02 13:44:29.000000000 -0300 @@ -1,13 +1,13 @@ ---- ./sar/Makefile.orig 2010-06-04 04:33:22.000000000 +0400 -+++ ./sar/Makefile 2010-07-20 23:58:53.189939887 +0400 +--- ./sar/Makefile.orig 2011-04-01 15:29:49.000000000 -0300 ++++ ./sar/Makefile 2011-05-02 13:43:50.000000000 -0300 @@ -1,12 +1,12 @@ # Platform Configurator generated Makefile # -PREFIX = $(DESTDIR)/usr/ +PREFIX = %%PREFIX%% --CFLAGS = -Wall -O6 -funroll-loops -fomit-frame-pointer -ffast-math -finline-functions -fexpensive-optimizations -D__USE_BSD -DHAVE_SDL_MIXER -Wno-write-strings -DUSE_XSHM -DHAVE_MWMUTIL_H -DHAVE_LIBXPM -DHAVE_XF86_VIDMODE -+CFLAGS = -Wall -O6 -funroll-loops -fomit-frame-pointer -ffast-math -D__USE_BSD -DUSE_XSHM -DHAVE_MWMUTIL_H -DHAVE_LIBXPM -DHAVE_XF86_VIDMODE -DHAVE_SDL_MIXER -I/usr/local/include +-CFLAGS = -Wall -O6 -funroll-loops -fomit-frame-pointer -ffast-math -finline-functions -fexpensive-optimizations -D__USE_BSD -DHAVE_SDL_MIXER -Wno-write-strings -DUSE_XSHM -DHAVE_MWMUTIL_H -DHAVE_LIBXPM -DHAVE_XF86_VIDMODE -DNEW_GRAPHICS #-DOLD_GRAPHICS ++CFLAGS = -Wall -O6 -funroll-loops -fomit-frame-pointer -ffast-math -D__USE_BSD -DUSE_XSHM -DHAVE_MWMUTIL_H -DUSE_LIBXPM -DHAVE_XF86_VIDMOD -DHAVE_SDL_MIXER -DNEW_GRAPHICS -I/usr/local/include #-DOLD_GRAPHICS INC_DIRS = --=-fTz1LP2BrKKhEc9JM1QM-- From owner-freebsd-ports-bugs@FreeBSD.ORG Mon May 2 18:20:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9BFB5106566B for ; Mon, 2 May 2011 18:20:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 78C588FC21 for ; Mon, 2 May 2011 18:20:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p42IKAOh059842 for ; Mon, 2 May 2011 18:20:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p42IKAh3059841; Mon, 2 May 2011 18:20:10 GMT (envelope-from gnats) Resent-Date: Mon, 2 May 2011 18:20:10 GMT Resent-Message-Id: <201105021820.p42IKAh3059841@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Olivier Duchateau Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4ADB7106566C for ; Mon, 2 May 2011 18:16:47 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 1F92F8FC18 for ; Mon, 2 May 2011 18:16:47 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p42IGkhh072447 for ; Mon, 2 May 2011 18:16:46 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p42IGkLK072446; Mon, 2 May 2011 18:16:46 GMT (envelope-from nobody) Message-Id: <201105021816.p42IGkLK072446@red.freebsd.org> Date: Mon, 2 May 2011 18:16:46 GMT From: Olivier Duchateau To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156772: [UPDATE] www/midori to 0.3.5 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 May 2011 18:20:10 -0000 >Number: 156772 >Category: ports >Synopsis: [UPDATE] www/midori to 0.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: Mon May 02 18:20:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Olivier Duchateau >Release: FreeBSD 8.2-RELEASE >Organization: >Environment: FreeBSD bornem.errements.net 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Fri Feb 18 02:24:46 UTC 2011 root@almeida.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: Announce: http://foo-projects.org/pipermail/xfce/2011-May/028633.html ChangeLog: http://git.xfce.org/apps/midori/tree/ChangeLog?id=0.3.5 >How-To-Repeat: >Fix: Patch attached with submission follows: diff -urN /usr/ports/www/midori/Makefile midori/Makefile --- /usr/ports/www/midori/Makefile 2011-03-14 22:08:30.000000000 +0100 +++ midori/Makefile 2011-05-02 19:58:24.000000000 +0200 @@ -7,7 +7,7 @@ # PORTNAME= midori -PORTVERSION= 0.3.3 +PORTVERSION= 0.3.5 CATEGORIES= www xfce MASTER_SITES= ${MASTER_SITE_XFCE} MASTER_SITE_SUBDIR= src/apps/${PORTNAME}/${PORTVERSION:R} diff -urN /usr/ports/www/midori/distinfo midori/distinfo --- /usr/ports/www/midori/distinfo 2011-03-14 22:08:30.000000000 +0100 +++ midori/distinfo 2011-05-02 19:58:24.000000000 +0200 @@ -1,2 +1,2 @@ -SHA256 (xfce4/midori-0.3.3.tar.bz2) = 236770d134e2eb9c44776e233903fc0afa760cd3b8b87d12316e1b25afe2d3fe -SIZE (xfce4/midori-0.3.3.tar.bz2) = 848720 +SHA256 (xfce4/midori-0.3.5.tar.bz2) = 748059b90d48cd5897d776d88f55d154081ea38eac8735ca393ed1c4317383ac +SIZE (xfce4/midori-0.3.5.tar.bz2) = 871235 diff -urN /usr/ports/www/midori/pkg-plist midori/pkg-plist --- /usr/ports/www/midori/pkg-plist 2011-03-14 22:08:30.000000000 +0100 +++ midori/pkg-plist 2011-05-02 19:58:24.000000000 +0200 @@ -10,7 +10,6 @@ lib/midori/libformhistory.so lib/midori/libhistory-list.so lib/midori/libmouse-gestures.so -lib/midori/libpage-holder.so lib/midori/libshortcuts.so lib/midori/libstatus-clock.so lib/midori/libstatusbar-features.so @@ -137,7 +136,6 @@ %%DATADIR%%/res/logo-shade.png %%DATADIR%%/res/mootools.js %%DATADIR%%/res/speeddial-head.html -%%DATADIR%%/res/speeddial.json share/vala/vapi/history-list.deps share/vala/vapi/history-list.vapi @dirrmtry share/vala/vapi >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon May 2 18:20:20 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AA001106566C; Mon, 2 May 2011 18:20:20 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 80DDC8FC17; Mon, 2 May 2011 18:20:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p42IKKwN060542; Mon, 2 May 2011 18:20:20 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p42IKK7S060538; Mon, 2 May 2011 18:20:20 GMT (envelope-from edwin) Date: Mon, 2 May 2011 18:20:20 GMT Message-Id: <201105021820.p42IKK7S060538@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kwm@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156772: [UPDATE] www/midori to 0.3.5 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 May 2011 18:20:20 -0000 Synopsis: [UPDATE] www/midori to 0.3.5 Responsible-Changed-From-To: freebsd-ports-bugs->kwm Responsible-Changed-By: edwin Responsible-Changed-When: Mon May 2 18:20:20 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156772 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon May 2 19:02:13 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 68D29106566B for ; Mon, 2 May 2011 19:02:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4A1378FC15 for ; Mon, 2 May 2011 19:01:29 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p42J0Ns6095071 for ; Mon, 2 May 2011 19:00:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p42J0NsA095070; Mon, 2 May 2011 19:00:23 GMT (envelope-from gnats) Resent-Date: Mon, 2 May 2011 19:00:23 GMT Resent-Message-Id: <201105021900.p42J0NsA095070@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Lung-Pin Chang Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 611F5106566B for ; Mon, 2 May 2011 18:50:19 +0000 (UTC) (envelope-from iamben@iamben.csie.net) Received: from Archon.iamben.csie.net (Archon.Dorm7.NCTU.edu.tw [140.113.252.59]) by mx1.freebsd.org (Postfix) with ESMTP id 3190B8FC17 for ; Mon, 2 May 2011 18:50:18 +0000 (UTC) Received: by Archon.iamben.csie.net (Postfix, from userid 1001) id 0153D9B4D0; Tue, 3 May 2011 02:50:16 +0800 (CST) Message-Id: <20110502185017.0153D9B4D0@Archon.iamben.csie.net> Date: Tue, 3 May 2011 02:50:16 +0800 (CST) From: Lung-Pin Chang To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: codeblock@eighthbit.net Subject: ports/156773: [PATCH] www/gist: update to 2.0.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 May 2011 19:02:13 -0000 >Number: 156773 >Category: ports >Synopsis: [PATCH] www/gist: update to 2.0.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: Mon May 02 19:00:22 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Lung-Pin Chang >Release: FreeBSD 8.2-RELEASE amd64 >Organization: >Environment: System: FreeBSD Archon.iamben.csie.net 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Thu Feb 17 02:41:51 UTC 2011 >Description: - Update to 2.0.3 - Remove the security/ca_root_nss dependency and obsolete patch since built-in certificate issue has been resolved Removed file(s): - files/patch-gist Port maintainer (codeblock@eighthbit.net) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- gist-2.0.3.patch begins here --- diff -ruN --exclude=CVS /usr/ports/www/gist/Makefile /home/iamben/tmp/gist/Makefile --- /usr/ports/www/gist/Makefile 2011-04-16 01:16:53.000000000 +0800 +++ /home/iamben/tmp/gist/Makefile 2011-05-03 02:41:06.701314079 +0800 @@ -6,9 +6,9 @@ # PORTNAME= gist -PORTVERSION= 2.0.1 +PORTVERSION= 2.0.3 CATEGORIES= www net -MASTER_SITES= https://github.com/defunkt/gist/raw/7340b581e0b7219f5fe39cea3ee7e9e8a653f2dc/ +MASTER_SITES= https://github.com/defunkt/${PORTNAME}/raw/v${PORTVERSION}/ DISTNAME= gist EXTRACT_SUFX= EXTRACT_ONLY= @@ -16,21 +16,13 @@ MAINTAINER= codeblock@eighthbit.net COMMENT= A gist pastebin posting command -RUN_DEPENDS= ${LOCALBASE}/share/certs/ca-root-nss.crt:${PORTSDIR}/security/ca_root_nss - CONFLICTS= p5-WWW-GitHub-Gist-[0-9]* USE_RUBY= YES NO_BUILD= YES -NO_WRKSUBDIR= YES PLIST_FILES= bin/gist -do-extract: - @${RM} -rf ${WRKDIR} - @${MKDIR} ${WRKDIR} - @${CP} ${DISTDIR}/gist ${WRKDIR} - do-install: - ${INSTALL_SCRIPT} ${WRKDIR}/gist ${PREFIX}/bin/gist + ${INSTALL_SCRIPT} ${DISTDIR}/gist ${PREFIX}/bin/gist .include diff -ruN --exclude=CVS /usr/ports/www/gist/distinfo /home/iamben/tmp/gist/distinfo --- /usr/ports/www/gist/distinfo 2011-04-16 01:16:53.000000000 +0800 +++ /home/iamben/tmp/gist/distinfo 2011-05-03 02:37:34.983517854 +0800 @@ -1,2 +1,2 @@ -SHA256 (gist) = 1e5591286f012d65644efdec20430530716ea5db488a244bc52adb4847751dcb -SIZE (gist) = 235655 +SHA256 (gist) = 5089b3b300d16a83b54c7ddf5dfc3561cadda35dae4a002bc66d888526ef9033 +SIZE (gist) = 17761 diff -ruN --exclude=CVS /usr/ports/www/gist/files/patch-gist /home/iamben/tmp/gist/files/patch-gist --- /usr/ports/www/gist/files/patch-gist 2011-04-16 01:16:53.000000000 +0800 +++ /home/iamben/tmp/gist/files/patch-gist 1970-01-01 08:00:00.000000000 +0800 @@ -1,11 +0,0 @@ ---- gist.orig 2011-03-29 18:51:45.258852583 +0800 -+++ gist 2011-03-29 14:51:47.060574433 +0800 -@@ -182,7 +182,7 @@ - - http.use_ssl = true - http.verify_mode = OpenSSL::SSL::VERIFY_PEER -- http.cert = OpenSSL::X509::Certificate.new(ca_cert) -+ http.ca_file = "/usr/local/share/certs/ca-root-nss.crt" - - req = Net::HTTP::Post.new(url.path) - req.form_data = data(files, private_gist) --- gist-2.0.3.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon May 2 19:02:25 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E2139106566C; Mon, 2 May 2011 19:02:25 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 833818FC14; Mon, 2 May 2011 19:02:25 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p42J2PSw003415; Mon, 2 May 2011 19:02:25 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p42J2PPJ003411; Mon, 2 May 2011 19:02:25 GMT (envelope-from edwin) Date: Mon, 2 May 2011 19:02:25 GMT Message-Id: <201105021902.p42J2PPJ003411@freefall.freebsd.org> To: changlp@cs.nctu.edu.tw, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156773: [PATCH] www/gist: update to 2.0.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 May 2011 19:02:26 -0000 Synopsis: [PATCH] www/gist: update to 2.0.3 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Mon May 2 19:02:24 UTC 2011 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156773 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon May 2 19:10:09 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B20E11065674 for ; Mon, 2 May 2011 19:10:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9F8F08FC20 for ; Mon, 2 May 2011 19:10:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p42JA90u004046 for ; Mon, 2 May 2011 19:10:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p42JA9k2004045; Mon, 2 May 2011 19:10:09 GMT (envelope-from gnats) Date: Mon, 2 May 2011 19:10:09 GMT Message-Id: <201105021910.p42JA9k2004045@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/156773: [PATCH] www/gist: update to 2.0.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 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, 02 May 2011 19:10:09 -0000 The following reply was made to PR ports/156773; it has been noted by GNATS. From: Edwin Groothuis To: codeblock@eighthbit.net Cc: bug-followup@FreeBSD.org Subject: Re: ports/156773: [PATCH] www/gist: update to 2.0.3 Date: Mon, 2 May 2011 19:02:22 UT Maintainer of www/gist, Please note that PR ports/156773 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/156773 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Mon May 2 19:20:05 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 406441065672 for ; Mon, 2 May 2011 19:20:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 13C578FC13 for ; Mon, 2 May 2011 19:20:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p42JK4Rm013913 for ; Mon, 2 May 2011 19:20:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p42JK4NB013912; Mon, 2 May 2011 19:20:04 GMT (envelope-from gnats) Resent-Date: Mon, 2 May 2011 19:20:04 GMT Resent-Message-Id: <201105021920.p42JK4NB013912@freefall.freebsd.org> 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 Rees Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 90F40106566C for ; Mon, 2 May 2011 19:14:48 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 66B4C8FC0C for ; Mon, 2 May 2011 19:14:48 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p42JEm8M027525 for ; Mon, 2 May 2011 19:14:48 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p42JEm5l027524; Mon, 2 May 2011 19:14:48 GMT (envelope-from nobody) Message-Id: <201105021914.p42JEm5l027524@red.freebsd.org> Date: Mon, 2 May 2011 19:14:48 GMT From: Chris Rees To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156774: Fix port: mail/biabam Change MASTER_SITES && grab maintainership X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 May 2011 19:20:05 -0000 >Number: 156774 >Category: ports >Synopsis: Fix port: mail/biabam Change MASTER_SITES && grab 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: Mon May 02 19:20:04 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Chris Rees >Release: >Organization: >Environment: >Description: Biabam is deprecated, but certain people still use it! I'm offering to host it. >How-To-Repeat: >Fix: - Change to new MASTER_SITE - Pass maintainership to submitter - Make REINPLACE quicker by restricting to first line Submitted by: Chris Rees (utisoft@gmail.com) [1] http://www.bayofrum.net/~crees/patches/biabam-master-sites.diff >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon May 2 19:50:09 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6FE24106566C for ; Mon, 2 May 2011 19:50:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4D9028FC14 for ; Mon, 2 May 2011 19:50:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p42Jo9KN040744 for ; Mon, 2 May 2011 19:50:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p42Jo9BK040743; Mon, 2 May 2011 19:50:09 GMT (envelope-from gnats) Resent-Date: Mon, 2 May 2011 19:50:09 GMT Resent-Message-Id: <201105021950.p42Jo9BK040743@freefall.freebsd.org> 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 Brovikov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 36F59106566B for ; Mon, 2 May 2011 19:43:44 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 273578FC0C for ; Mon, 2 May 2011 19:43:44 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p42JhhkN052837 for ; Mon, 2 May 2011 19:43:43 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p42JhhAS052816; Mon, 2 May 2011 19:43:43 GMT (envelope-from nobody) Message-Id: <201105021943.p42JhhAS052816@red.freebsd.org> Date: Mon, 2 May 2011 19:43:43 GMT From: Alexander Brovikov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156775: [patch] net/asterisk: prevent asterisk.conf nuking X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 May 2011 19:50:09 -0000 >Number: 156775 >Category: ports >Synopsis: [patch] net/asterisk: prevent asterisk.conf nuking >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 May 02 19:50:08 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Alexander Brovikov >Release: 8.1-RELEASE >Organization: >Environment: >Description: >How-To-Repeat: >Fix: Patch attached with submission follows: --- /usr/ports/net/asterisk/pkg-plist.orig 2011-02-19 04:37:52.000000000 +0500 +++ /usr/ports/net/asterisk/pkg-plist 2011-05-03 01:35:41.000000000 +0600 @@ -48,7 +48,6 @@ etc/asterisk/asterisk.adsi-dist @unexec if cmp -s %D/etc/asterisk/asterisk.conf %D/etc/asterisk/asterisk.conf-dist; then rm -f %D/etc/asterisk/asterisk.conf; fi etc/asterisk/asterisk.conf-dist -etc/asterisk/asterisk.conf @unexec if cmp -s %D/etc/asterisk/calendar.conf %D/etc/asterisk/calendar.conf-dist; then rm -f %D/etc/asterisk/calendar.conf; fi etc/asterisk/calendar.conf-dist @unexec if cmp -s %D/etc/asterisk/ccss.conf %D/etc/asterisk/ccss.conf-dist; then rm -f %D/etc/asterisk/ccss.conf; fi >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon May 2 19:50:19 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 583FE106564A; Mon, 2 May 2011 19:50:19 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EC0068FC0C; Mon, 2 May 2011 19:50:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p42JoIel041407; Mon, 2 May 2011 19:50:18 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p42JoIcL041396; Mon, 2 May 2011 19:50:18 GMT (envelope-from edwin) Date: Mon, 2 May 2011 19:50:18 GMT Message-Id: <201105021950.p42JoIcL041396@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, flo@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156775: [patch] net/asterisk: prevent asterisk.conf nuking X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 May 2011 19:50:19 -0000 Synopsis: [patch] net/asterisk: prevent asterisk.conf nuking Responsible-Changed-From-To: freebsd-ports-bugs->flo Responsible-Changed-By: edwin Responsible-Changed-When: Mon May 2 19:50:18 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156775 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon May 2 20:10:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C5229106566B for ; Mon, 2 May 2011 20:10:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 979E58FC19 for ; Mon, 2 May 2011 20:10:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p42KAA9r057812 for ; Mon, 2 May 2011 20:10:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p42KAAwX057811; Mon, 2 May 2011 20:10:10 GMT (envelope-from gnats) Date: Mon, 2 May 2011 20:10:10 GMT Message-Id: <201105022010.p42KAAwX057811@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Dan Langille Cc: Subject: Re: ports/156763: [patch] databases/mantis Update to 1.2.5 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Dan Langille List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 May 2011 20:10:10 -0000 The following reply was made to PR ports/156763; it has been noted by GNATS. From: Dan Langille To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/156763: [patch] databases/mantis Update to 1.2.5 Date: Mon, 2 May 2011 15:48:13 -0400 Approved [but not tested] by maintainer [who is otherwise occupied with = BSDCan/PGCon at present]. --=20 Dan Langille - http://langille.org From owner-freebsd-ports-bugs@FreeBSD.ORG Mon May 2 20:20:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 562211065679 for ; Mon, 2 May 2011 20:20:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1AB048FC21 for ; Mon, 2 May 2011 20:20:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p42KK9Fp067716 for ; Mon, 2 May 2011 20:20:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p42KK9j3067715; Mon, 2 May 2011 20:20:09 GMT (envelope-from gnats) Resent-Date: Mon, 2 May 2011 20:20:09 GMT Resent-Message-Id: <201105022020.p42KK9j3067715@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Brett Wynkoop Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B2FE7106566B for ; Mon, 2 May 2011 20:19:34 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id A34348FC16 for ; Mon, 2 May 2011 20:19:34 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p42KJXBC083034 for ; Mon, 2 May 2011 20:19:33 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p42KJXjH083033; Mon, 2 May 2011 20:19:33 GMT (envelope-from nobody) Message-Id: <201105022019.p42KJXjH083033@red.freebsd.org> Date: Mon, 2 May 2011 20:19:33 GMT From: Brett Wynkoop To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156776: collectd in current ports will not build with libgcrypt support without hacking makefile X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 May 2011 20:20:10 -0000 >Number: 156776 >Category: ports >Synopsis: collectd in current ports will not build with libgcrypt support without hacking makefile >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 May 02 20:20:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Brett Wynkoop >Release: 8.2 >Organization: Wynn Data Ltd. >Environment: [root@fbsd81test /usr/ports/net-mgmt/collectd]# uname -a FreeBSD fbsd81test.isprime.com 8.2-RELEASE FreeBSD 8.2-RELEASE #0 r219081M: Wed Mar 2 08:29:52 CET 2011 root@www4:/usr/obj/usr/src/sys/GENERIC amd64 >Description: make config gives no option for linking collectd with libgcrypt. If built without hacking the make file gcrypt support can not be built into the current port of collectd. Older ports trees did have collectd linking against libgcrypt. I am not sure how far back one would have to go, but I built it on a FreeBSD 8.1 box in November of 2010 and libgcrypt linked in. Some sites use encryption with collectd so this should be an easy to select option and not need any make file hacking. >How-To-Repeat: build collectd from ports-current then ldd /usr/local/sbin/collectd >Fix: Add libgcrypt to the make config section of the port. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon May 2 20:50:07 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AAD69106566C for ; Mon, 2 May 2011 20:50:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 800FB8FC1B for ; Mon, 2 May 2011 20:50:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p42Ko707002471 for ; Mon, 2 May 2011 20:50:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p42Ko75E002470; Mon, 2 May 2011 20:50:07 GMT (envelope-from gnats) Resent-Date: Mon, 2 May 2011 20:50:07 GMT Resent-Message-Id: <201105022050.p42Ko75E002470@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Heikki Suonsivu Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2BE2C106564A for ; Mon, 2 May 2011 20:49:26 +0000 (UTC) (envelope-from hsu@lelu.suonsivu.net) Received: from lelu.suonsivu.net (lelu.suonsivu.net [212.16.96.66]) by mx1.freebsd.org (Postfix) with ESMTP id 0C99D8FC0C for ; Mon, 2 May 2011 20:49:24 +0000 (UTC) Received: from lelu.suonsivu.net (localhost [127.0.0.1]) by lelu.suonsivu.net (8.14.4/8.14.4) with ESMTP id p42KJlHq079355 for ; Mon, 2 May 2011 23:19:47 +0300 (EEST) (envelope-from hsu@lelu.suonsivu.net) Received: (from hsu@localhost) by lelu.suonsivu.net (8.14.4/8.14.4/Submit) id p42KJkLd079354; Mon, 2 May 2011 23:19:46 +0300 (EEST) (envelope-from hsu) Message-Id: <201105022019.p42KJkLd079354@lelu.suonsivu.net> Date: Mon, 2 May 2011 23:19:46 +0300 (EEST) From: Heikki Suonsivu To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/156777: Firefox and thunderbird menus show corrupt data X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Heikki Suonsivu List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 May 2011 20:50:07 -0000 >Number: 156777 >Category: ports >Synopsis: Firefox and thunderbird menus show corrupt data >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 May 02 20:50:06 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Heikki Suonsivu >Release: FreeBSD 8.2-STABLE amd64 >Organization: bbnetworks.net >Environment: System: FreeBSD lelu.suonsivu.net 8.2-STABLE FreeBSD 8.2-STABLE #7: Mon May 2 00:25:15 EEST 2011 root@lelu.suonsivu.net:/usr/obj/usr/src/sys/HSU8 amd64 dmesg, and X log under it. Copyright (c) 1992-2011 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD is a registered trademark of The FreeBSD Foundation. FreeBSD 8.2-STABLE #7: Mon May 2 00:25:15 EEST 2011 root@lelu.suonsivu.net:/usr/obj/usr/src/sys/HSU8 amd64 Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: AMD Athlon(tm) 64 X2 Dual Core Processor 5200+ (2612.06-MHz K8-class CPU) Origin = "AuthenticAMD" Id = 0x40f32 Family = f Model = 43 Stepping = 2 Features=0x178bfbff Features2=0x2001 AMD Features=0xea500800 AMD Features2=0x1f real memory = 4294967296 (4096 MB) avail memory = 4105764864 (3915 MB) ACPI APIC Table: FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs FreeBSD/SMP: 1 package(s) x 2 core(s) cpu0 (BSP): APIC ID: 0 cpu1 (AP): APIC ID: 1 ioapic0: Changing APIC ID to 4 ioapic0 irqs 0-23 on motherboard kbd1 at kbdmux0 cryptosoft0: on motherboard acpi0: on motherboard acpi0: [ITHREAD] acpi0: Power Button (fixed) acpi0: reservation of 0, a0000 (3) failed acpi0: reservation of 100000, dfde0000 (3) failed Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000 acpi_timer0: <24-bit timer at 3.579545MHz> port 0x1008-0x100b on acpi0 cpu0: on acpi0 cpu1: on acpi0 acpi_button0: on acpi0 pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 pci0: at device 0.0 (no driver attached) isab0: at device 1.0 on pci0 isa0: on isab0 pci0: at device 1.1 (no driver attached) ohci0: mem 0xfe02f000-0xfe02ffff irq 21 at device 2.0 on pci0 ohci0: [ITHREAD] usbus0: on ohci0 ehci0: mem 0xfe02e000-0xfe02e0ff irq 22 at device 2.1 on pci0 ehci0: [ITHREAD] usbus1: EHCI version 1.0 usbus1: on ehci0 atapci0: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xf000-0xf00f at device 4.0 on pci0 ata0: on atapci0 ata0: [ITHREAD] ata1: on atapci0 ata1: [ITHREAD] atapci1: port 0x9f0-0x9f7,0xbf0-0xbf3,0x970-0x977,0xb70-0xb73,0xdc00-0xdc0f mem 0xfe02d000-0xfe02dfff irq 23 at device 5.0 on pci0 atapci1: [ITHREAD] ata2: on atapci1 ata2: [ITHREAD] ata3: on atapci1 ata3: [ITHREAD] atapci2: port 0x9e0-0x9e7,0xbe0-0xbe3,0x960-0x967,0xb60-0xb63,0xc800-0xc80f mem 0xfe02c000-0xfe02cfff irq 20 at device 5.1 on pci0 atapci2: [ITHREAD] ata4: on atapci2 ata4: [ITHREAD] ata5: on atapci2 ata5: [ITHREAD] atapci3: port 0xc400-0xc407,0xc000-0xc003,0xbc00-0xbc07,0xb800-0xb803,0xb400-0xb40f mem 0xfe02b000-0xfe02bfff irq 21 at device 5.2 on pci0 atapci3: [ITHREAD] ata6: on atapci3 ata6: [ITHREAD] ata7: on atapci3 ata7: [ITHREAD] pcib1: at device 6.0 on pci0 pci1: on pcib1 fwohci0: mem 0xfdeff000-0xfdeff7ff,0xfdef8000-0xfdefbfff at device 11.0 on pci1 fwohci0: [ITHREAD] fwohci0: OHCI version 1.10 (ROM=1) fwohci0: No. of Isochronous channels is 4. fwohci0: EUI64 00:11:d8:00:00:e8:de:41 fwohci0: Phy 1394a available S400, 2 ports. fwohci0: Link S400, max_rec 2048 bytes. firewire0: on fwohci0 dcons_crom0: on firewire0 dcons_crom0: bus_addr 0xd7740000 fwe0: on firewire0 if_fwe0: Fake Ethernet address: 02:11:d8:e8:de:41 fwe0: Ethernet address: 02:11:d8:e8:de:41 fwip0: on firewire0 fwip0: Firewire address: 00:11:d8:00:00:e8:de:41 @ 0xfffe00000000, S400, maxrec 2048 fwohci0: Initiate bus reset fwohci0: fwohci_intr_core: BUS reset fwohci0: fwohci_intr_core: node_id=0x00000000, SelfID Count=1, CYCLEMASTER mode hdac0: mem 0xfe020000-0xfe023fff irq 22 at device 6.1 on pci0 hdac0: HDA Driver Revision: 20100226_0142 hdac0: [ITHREAD] nfe0: port 0xb000-0xb007 mem 0xfe02a000-0xfe02afff,0xfe029000-0xfe0290ff,0xfe028000-0xfe02800f irq 23 at device 8.0 on pci0 miibus0: on nfe0 e1000phy0: PHY 1 on miibus0 e1000phy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseT, 1000baseT-master, 1000baseT-FDX, 1000baseT-FDX-master, auto, auto-flow nfe0: Ethernet address: 00:18:f3:7c:73:06 nfe0: [FILTER] nfe0: [FILTER] nfe0: [FILTER] nfe0: [FILTER] nfe0: [FILTER] nfe0: [FILTER] nfe0: [FILTER] nfe0: [FILTER] nfe1: port 0xac00-0xac07 mem 0xfe027000-0xfe027fff,0xfe026000-0xfe0260ff,0xfe025000-0xfe02500f irq 20 at device 9.0 on pci0 miibus1: on nfe1 e1000phy1: PHY 1 on miibus1 e1000phy1: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseT, 1000baseT-master, 1000baseT-FDX, 1000baseT-FDX-master, auto, auto-flow nfe1: Ethernet address: 00:18:f3:7c:79:7c nfe1: [FILTER] nfe1: [FILTER] nfe1: [FILTER] nfe1: [FILTER] nfe1: [FILTER] nfe1: [FILTER] nfe1: [FILTER] nfe1: [FILTER] pcib2: at device 14.0 on pci0 pci2: on pcib2 atapci4: port 0x9c00-0x9c07,0x9800-0x9803,0x9400-0x9407,0x9000-0x9003,0x8c00-0x8c0f mem 0xfddfe000-0xfddfffff irq 16 at device 0.0 on pci2 atapci4: [ITHREAD] atapci5: on atapci4 atapci5: [ITHREAD] atapci5: AHCI v1.00 controller with 2 3Gbps ports, PM supported ata8: on atapci5 ata8: [ITHREAD] ata9: on atapci5 ata9: [ITHREAD] ata10: on atapci4 ata10: [ITHREAD] pcib3: at device 15.0 on pci0 pci3: on pcib3 vgapci0: port 0x7c00-0x7cff mem 0xe0000000-0xefffffff,0xfdcf0000-0xfdcfffff irq 16 at device 0.0 on pci3 vgapci1: mem 0xfdce0000-0xfdceffff at device 0.1 on pci3 acpi_tz0: on acpi0 ACPI Warning: For \\_TZ_.THRM._PSL: Return Package type mismatch at index 0 - found [NULL Object Descriptor], expected Reference (20101013/nspredef-1197) acpi_hpet0: iomem 0xfefff000-0xfefff3ff irq 0,8 on acpi0 Timecounter "HPET" frequency 25000000 Hz quality 900 atrtc0: port 0x70-0x73 on acpi0 fdc0: port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on acpi0 fdc0: [FILTER] fd0: <1440-KB 3.5" drive> on fdc0 drive 0 uart0: <16550 or compatible> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0 uart0: [FILTER] ppc0: port 0x378-0x37f irq 7 on acpi0 ppc0: Generic chipset (EPP/NIBBLE) in COMPATIBLE mode ppc0: [ITHREAD] ppbus0: on ppc0 plip0: on ppbus0 plip0: [ITHREAD] lpt0: on ppbus0 lpt0: [ITHREAD] lpt0: Interrupt-driven port ppi0: on ppbus0 atkbdc0: port 0x60,0x64 irq 1 on acpi0 atkbd0: irq 1 on atkbdc0 kbd0 at atkbd0 atkbd0: [GIANT-LOCKED] atkbd0: [ITHREAD] orm0: at iomem 0xc0000-0xcffff,0xd0000-0xd27ff on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 powernow0: on cpu0 device_attach: powernow0 attach returned 6 powernow1: on cpu1 device_attach: powernow1 attach returned 6 Timecounters tick every 1.000 msec IPsec: Initialized Security Association Processing. firewire0: 1 nodes, maxhop <= 0 cable IRM irm(0) (me) firewire0: bus manager 0 IP Filter: v4.1.28 initialized. Default = pass all, Logging = enabled ipfw2 (+ipv6) initialized, divert enabled, nat enabled, rule-based forwarding enabled, default to accept, logging disabled load_dn_sched dn_sched FIFO loaded load_dn_sched dn_sched PRIO loaded load_dn_sched dn_sched QFQ loaded load_dn_sched dn_sched RR loaded load_dn_sched dn_sched WF2Q+ loaded usbus0: 12Mbps Full Speed USB v1.0 usbus1: 480Mbps High Speed USB v2.0 ugen0.1: at usbus0 uhub0: on usbus0 ugen1.1: at usbus1 uhub1: on usbus1 acd0: DVDR at ata0-master UDMA33 acd1: CDRW at ata0-slave UDMA33 ad4: 1907729MB at ata2-master UDMA100 SATA 3Gb/s ad6: 1907729MB at ata3-master UDMA100 SATA 3Gb/s ad8: 715404MB at ata4-master UDMA100 SATA 1.5Gb/s ad10: 715404MB at ata5-master UDMA100 SATA 1.5Gb/s ad12: 1907729MB at ata6-master UDMA100 SATA 3Gb/s hdac0: HDA Codec #0: Analog Devices AD1988B pcm0: at cad 0 nid 1 on hdac0 pcm1: at cad 0 nid 1 on hdac0 pcm2: at cad 0 nid 1 on hdac0 SMP: AP CPU #1 Launched! uhub0: 10 ports with 10 removable, self powered GEOM_MIRROR: Device mirror/root launched (2/2). GEOM: mirror/roots1: geometry does not match label (16h,63s != 255h,63s). Root mount waiting for: usbus1 Root mount waiting for: usbus1 Root mount waiting for: usbus1 acd0: FAILURE - INQUIRY ILLEGAL REQUEST asc=0x24 ascq=0x00 acd1: FAILURE - INQUIRY ILLEGAL REQUEST asc=0x24 ascq=0x00 uhub1: 10 ports with 10 removable, self powered (probe0:ata0:0:0:0): TEST UNIT READY. CDB: 0 0 0 0 0 0 (probe0:ata0:0:0:0): CAM status: SCSI Status Error (probe0:ata0:0:0:0): SCSI status: Check Condition (probe0:ata0:0:0:0): SCSI sense: NOT READY asc:3a,1 (Medium not present - tray closed) Root mount waiting for: usbus1 (probe1:ata0:0:1:0): TEST UNIT READY. CDB: 0 0 0 0 0 0 (probe1:ata0:0:1:0): CAM status: SCSI Status Error (probe1:ata0:0:1:0): SCSI status: Check Condition (probe1:ata0:0:1:0): SCSI sense: NOT READY asc:3a,0 (Medium not present) cd0 at ata0 bus 0 scbus0 target 0 lun 0 cd0: Removable CD-ROM SCSI-0 device cd0: 33.000MB/s transfers cd0: Attempt to query device size failed: NOT READY, Medium not present - tray closed cd1 at ata0 bus 0 scbus0 target 1 lun 0 cd1: Removable CD-ROM SCSI-0 device cd1: 33.000MB/s transfers cd1: Attempt to query device size failed: NOT READY, Medium not present ugen1.2: at usbus1 uhub2: on usbus1 uhub2: 4 ports with 4 removable, self powered Root mount waiting for: usbus1 ugen1.3: at usbus1 uhub3: on usbus1 Root mount waiting for: usbus1 uhub3: 7 ports with 7 removable, self powered usbd_set_config_index: could not read device status: USB_ERR_SHORT_XFER ugen1.4: at usbus1 umass0: on usbus1 umass0: 8070i (ATAPI) over Bulk-Only; quirks = 0x0000 Root mount waiting for: usbus1 umass0:6:0:-1: Attached to scbus6 (probe0:umass-sim0:0:0:0): TEST UNIT READY. CDB: 0 0 0 0 0 0 (probe0:umass-sim0:0:0:0): CAM status: SCSI Status Error (probe0:umass-sim0:0:0:0): SCSI status: Check Condition (probe0:umass-sim0:0:0:0): SCSI sense: NOT READY asc:3a,1 (Medium not present - tray closed) cd2 at umass-sim0 bus 0 scbus6 target 0 lun 0 cd2: Removable CD-ROM SCSI-0 device cd2: 40.000MB/s transfers cd2: Attempt to query device size failed: NOT READY, Medium not present - tray closed ugen1.5: at usbus1 ukbd0: on usbus1 kbd2 at ukbd0 uhid0: on usbus1 ugen1.6: at usbus1 ums0: on usbus1 ums0: 5 buttons and [XYZ] coordinates ID=0 Root mount waiting for: usbus1 ugen1.7: at usbus1 umass1: on usbus1 umass1: SCSI over Bulk-Only; quirks = 0x0000 umass1:7:1:-1: Attached to scbus7 Trying to mount root from ufs:/dev/mirror/roots1a da0 at umass-sim1 bus 1 scbus7 target 0 lun 0 da0: Fixed Direct Access SCSI-2 device da0: 40.000MB/s transfers da0: 476940MB (976773168 512 byte sectors: 255H 63S/T 60801C) % X.Org X Server 1.7.7 Release Date: 2010-05-04 X Protocol Version 11, Revision 0 Build Operating System: FreeBSD 8.2-STABLE amd64 Current Operating System: FreeBSD lelu.suonsivu.net 8.2-STABLE FreeBSD 8.2-STABLE #7: Mon May 2 00:25:15 EEST 2011 root@lelu.suonsivu.net:/usr/obj/usr/src/sys/HSU8 amd64 Build Date: 23 April 2011 05:54:59AM Current version of pixman: 0.21.4 Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. (==) Log file: "/var/log/Xorg.0.log", Time: Mon May 2 22:58:15 2011 (==) Using config file: "/etc/X11/xorg.conf" (==) ServerLayout "X.org Configured" (**) |-->Screen "Screen0" (0) (**) | |-->Monitor "Monitor0" (**) | |-->Device "Card0" (**) |-->Input Device "Mouse0" (**) |-->Input Device "Keyboard0" (**) Option "AllowEmptyInput" "off" (==) Automatically adding devices (==) Automatically enabling devices (**) FontPath set to: /usr/local/lib/X11/fonts/misc/, /usr/local/lib/X11/fonts/TTF/, /usr/local/lib/X11/fonts/OTF, /usr/local/lib/X11/fonts/Type1/, /usr/local/lib/X11/fonts/100dpi/, /usr/local/lib/X11/fonts/75dpi/, /usr/local/lib/X11/fonts/misc/, /usr/local/lib/X11/fonts/TTF/, /usr/local/lib/X11/fonts/OTF, /usr/local/lib/X11/fonts/Type1/, /usr/local/lib/X11/fonts/100dpi/, /usr/local/lib/X11/fonts/75dpi/ (**) ModulePath set to "/usr/local/lib/xorg/modules" (II) Loader magic: 0x6993a0 (II) Module ABI versions: X.Org ANSI C Emulation: 0.4 X.Org Video Driver: 6.0 X.Org XInput driver : 7.0 X.Org Server Extension : 2.0 (--) Using syscons driver with X support (version 2.0) (--) using VT number 9 (--) PCI:*(0:3:0:0) 1002:554d:1043:006c ATI Technologies Inc R430 [Radeon X800 XL] (PCIe) rev 0, Mem @ 0xe0000000/268435456, 0xfdcf0000/65536, I/O @ 0x00007c00/256, BIOS @ 0x????????/65536 (--) PCI: (0:3:0:1) 1002:556d:1043:006d ATI Technologies Inc R430 [Radeon X800 XL] (PCIe) (Secondary) rev 0, Mem @ 0xfdce0000/65536 (II) "extmod" will be loaded. This was enabled by default and also specified in the config file. (II) "dbe" will be loaded. This was enabled by default and also specified in the config file. (II) "glx" will be loaded. This was enabled by default and also specified in the config file. (II) "record" will be loaded. This was enabled by default and also specified in the config file. (II) "dri" will be loaded. This was enabled by default and also specified in the config file. (II) "dri2" will be loaded. This was enabled by default and also specified in the config file. (II) LoadModule: "extmod" (II) Loading /usr/local/lib/xorg/modules/extensions/libextmod.so (II) Module extmod: vendor="X.Org Foundation" compiled for 1.7.7, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 2.0 (II) Loading extension MIT-SCREEN-SAVER (II) Loading extension XFree86-VidModeExtension (II) Loading extension XFree86-DGA (II) Loading extension DPMS (II) Loading extension XVideo (II) Loading extension XVideo-MotionCompensation (II) Loading extension X-Resource (II) LoadModule: "record" (II) Loading /usr/local/lib/xorg/modules/extensions/librecord.so (II) Module record: vendor="X.Org Foundation" compiled for 1.7.7, module version = 1.13.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 2.0 (II) Loading extension RECORD (II) LoadModule: "dbe" (II) Loading /usr/local/lib/xorg/modules/extensions/libdbe.so (II) Module dbe: vendor="X.Org Foundation" compiled for 1.7.7, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 2.0 (II) Loading extension DOUBLE-BUFFER (II) LoadModule: "glx" (II) Loading /usr/local/lib/xorg/modules/extensions/libglx.so (II) Module glx: vendor="X.Org Foundation" compiled for 1.7.7, module version = 1.0.0 ABI class: X.Org Server Extension, version 2.0 (==) AIGLX disabled (II) Loading extension GLX (II) LoadModule: "dri" (II) Loading /usr/local/lib/xorg/modules/extensions/libdri.so (II) Module dri: vendor="X.Org Foundation" compiled for 1.7.7, module version = 1.0.0 ABI class: X.Org Server Extension, version 2.0 (II) Loading extension XFree86-DRI (II) LoadModule: "dri2" (II) Loading /usr/local/lib/xorg/modules/extensions/libdri2.so (II) Module dri2: vendor="X.Org Foundation" compiled for 1.7.7, module version = 1.1.0 ABI class: X.Org Server Extension, version 2.0 (II) Loading extension DRI2 (II) LoadModule: "radeon" (II) Loading /usr/local/lib/xorg/modules/drivers/radeon_drv.so (II) Module radeon: vendor="X.Org Foundation" compiled for 1.7.7, module version = 6.14.1 Module class: X.Org Video Driver ABI class: X.Org Video Driver, version 6.0 (II) LoadModule: "mouse" (II) Loading /usr/local/lib/xorg/modules/input/mouse_drv.so (II) Module mouse: vendor="X.Org Foundation" compiled for 1.7.7, module version = 1.6.0 Module class: X.Org XInput Driver ABI class: X.Org XInput driver, version 7.0 (II) LoadModule: "kbd" (II) Loading /usr/local/lib/xorg/modules/input/kbd_drv.so (II) Module kbd: vendor="X.Org Foundation" compiled for 1.7.7, module version = 1.5.0 Module class: X.Org XInput Driver ABI class: X.Org XInput driver, version 7.0 (II) RADEON: Driver for ATI Radeon chipsets: ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI), ATI Radeon Mobility X300 (M24) 3152 (PCIE), ATI FireGL M24 GL 3154 (PCIE), ATI FireMV 2400 3155 (PCI), ATI Radeon X600 (RV380) 3E50 (PCIE), ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136, ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP), ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP), ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP), ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP), ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP), ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP), ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650, ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237, ATI Radeon 8500 AIW BB (AGP), ATI Radeon IGP320M (U1) 4336, ATI Radeon IGP330M/340M/350M (U2) 4337, ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI), ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP), ATI Radeon X800PRO (R420) JI (AGP), ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP), ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP), ATI Radeon Mobility 9800 (M18) JN (AGP), ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP), ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP), ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP), ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP), ATI Radeon Mobility M7 LW (AGP), ATI Mobility FireGL 7800 M7 LX (AGP), ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP), ATI FireGL Mobility 9000 (M9) Ld (AGP), ATI Radeon Mobility 9000 (M9) Lf (AGP), ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI Radeon 9700 Pro ND (AGP), ATI Radeon 9700/9500Pro NE (AGP), ATI Radeon 9600TX NF (AGP), ATI FireGL X1 NG (AGP), ATI Radeon 9800PRO NH (AGP), ATI Radeon 9800 NI (AGP), ATI FireGL X2 NK (AGP), ATI Radeon 9800XT NJ (AGP), ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP), ATI Radeon Mobility 9600 (M10) NQ (AGP), ATI Radeon Mobility 9600 (M11) NR (AGP), ATI Radeon Mobility 9600 (M10) NS (AGP), ATI FireGL Mobility T2 (M10) NT (AGP), ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP), ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP), ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP), ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI), ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI), ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI), ATI Radeon Mobility X300 (M22) 5460 (PCIE), ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE), ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE), ATI Radeon X800PRO (R423) UI (PCIE), ATI Radeon X800LE (R423) UJ (PCIE), ATI Radeon X800SE (R423) UK (PCIE), ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE), ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE), ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE), ATI FireGL unknown (R423) UR (PCIE), ATI FireGL unknown (R423) UT (PCIE), ATI Mobility FireGL V5000 (M26) (PCIE), ATI Mobility FireGL V5000 (M26) (PCIE), ATI Mobility Radeon X700 XL (M26) (PCIE), ATI Mobility Radeon X700 (M26) (PCIE), ATI Mobility Radeon X700 (M26) (PCIE), ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834, ATI Radeon Mobility 9100 IGP (U3) 5835, ATI Radeon XPRESS 200 5954 (PCIE), ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP), ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP), ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI), ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE), ATI Radeon XPRESS 200M 5975 (PCIE), ATI Radeon XPRESS 200 5A41 (PCIE), ATI Radeon XPRESS 200M 5A42 (PCIE), ATI Radeon XPRESS 200 5A61 (PCIE), ATI Radeon XPRESS 200M 5A62 (PCIE), ATI Radeon X300 (RV370) 5B60 (PCIE), ATI Radeon X600 (RV370) 5B62 (PCIE), ATI Radeon X550 (RV370) 5B63 (PCIE), ATI FireGL V3100 (RV370) 5B64 (PCIE), ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE), ATI Radeon Mobility 9200 (M9+) 5C61 (AGP), ATI Radeon Mobility 9200 (M9+) 5C63 (AGP), ATI Mobility Radeon X800 XT (M28) (PCIE), ATI Mobility FireGL V5100 (M28) (PCIE), ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE), ATI Radeon X850 XT PE (R480) (PCIE), ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE), ATI unknown Radeon / FireGL (R480) 5D50 (PCIE), ATI Radeon X850 XT (R480) (PCIE), ATI Radeon X800XT (R423) 5D57 (PCIE), ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE), ATI Radeon X700 PRO (RV410) (PCIE), ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE), ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800, ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800, ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300, ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800, ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505, ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL, ATI Mobility Radeon X1400, ATI Radeon X1300/X1550, ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300, ATI Mobility Radeon X1300, ATI Mobility Radeon X1300, ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300, ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350, ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550, ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450, ATI Radeon X1300/X1550, ATI Mobility Radeon X2300, ATI Mobility Radeon X2300, ATI Mobility Radeon X1350, ATI Mobility Radeon X1350, ATI Mobility Radeon X1450, ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350, ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600, ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600, ATI Mobility FireGL V5200, ATI Mobility Radeon X1600, ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400, ATI Mobility FireGL V5250, ATI Mobility Radeon X1700, ATI Mobility Radeon X1700 XT, ATI FireGL V5200, ATI Mobility Radeon X1700, ATI Radeon X2300HD, ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300, ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900, ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950, ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560, ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400, ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560, ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835, ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740, ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT, ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600, ATI Radeon 4800 Series, ATI Radeon HD 4870 x2, ATI Radeon 4800 Series, ATI Radeon HD 4850 x2, ATI FirePro V8750 (FireGL), ATI FirePro V7760 (FireGL), ATI Mobility RADEON HD 4850, ATI Mobility RADEON HD 4850 X2, ATI Radeon 4800 Series, ATI FirePro RV770, AMD FireStream 9270, AMD FireStream 9250, ATI FirePro V8700 (FireGL), ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98, ATI Mobility RADEON HD 4870, ATI Radeon 4800 Series, ATI Radeon 4800 Series, ATI FirePro M7750, ATI M98, ATI M98, ATI M98, ATI Mobility Radeon HD 4650, ATI Radeon RV730 (AGP), ATI Mobility Radeon HD 4670, ATI FirePro M5750, ATI Mobility Radeon HD 4670, ATI Radeon RV730 (AGP), ATI RV730XT [Radeon HD 4670], ATI RADEON E4600, ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650], ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL), ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830, ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740, ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI Radeon HD 4770, ATI FirePro M5750, ATI RV610, ATI Radeon HD 2400 XT, ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000, ATI RV610, ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT, ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610, ATI FireMV 2260, ATI RV670, ATI Radeon HD3870, ATI Mobility Radeon HD 3850, ATI Radeon HD3850, ATI Mobility Radeon HD 3850 X2, ATI RV670, ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2, ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850, ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550, ATI Radeon RV710, ATI Radeon RV710, ATI Radeon RV710, ATI Radeon HD 4350, ATI Mobility Radeon 4300 Series, ATI Mobility Radeon 4500 Series, ATI Mobility Radeon 4500 Series, ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630, ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT, ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP, ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630, ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600, ATI FireGL V3600, ATI Radeon HD 2600 LE, ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470, ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series, ATI Radeon HD 3450, ATI Radeon HD 3450, ATI Radeon HD 3430, ATI Radeon HD 3450, ATI FirePro V3700, ATI FireMV 2450, ATI FireMV 2260, ATI FireMV 2260, ATI Radeon HD 3600 Series, ATI Radeon HD 3650 AGP, ATI Radeon HD 3600 PRO, ATI Radeon HD 3600 XT, ATI Radeon HD 3600 PRO, ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670, ATI Mobility FireGL V5700, ATI Mobility FireGL V5725, ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics, ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics, ATI Radeon HD 3300 Graphics, ATI Radeon HD 3200 Graphics, ATI Radeon 3000 Graphics, ATI Radeon HD 4200, ATI Radeon 4100, ATI Mobility Radeon HD 4200, ATI Mobility Radeon 4100, ATI Radeon HD 4290, ATI Radeon HD 4250, AMD Radeon HD 6310 Graphics, AMD Radeon HD 6310 Graphics, AMD Radeon HD 6250 Graphics, AMD Radeon HD 6250 Graphics, CYPRESS, ATI FirePro (FireGL) Graphics Adapter, ATI FirePro (FireGL) Graphics Adapter, ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370, AMD Firestream 9350, ATI Radeon HD 5800 Series, ATI Radeon HD 5800 Series, ATI Radeon HD 5800 Series, ATI Radeon HD 5900 Series, ATI Radeon HD 5900 Series, ATI Mobility Radeon HD 5800 Series, ATI Mobility Radeon HD 5800 Series, ATI FirePro (FireGL) Graphics Adapter, ATI FirePro (FireGL) Graphics Adapter, ATI Mobility Radeon HD 5800 Series, ATI Radeon HD 5700 Series, ATI Radeon HD 5700 Series, ATI Radeon HD 5700 Series, ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570, ATI FirePro (FireGL) Graphics Adapter, ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5670, ATI Radeon HD 5570, ATI Radeon HD 5500 Series, REDWOOD, ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon Graphics, ATI Mobility Radeon Graphics, CEDAR, ATI FirePro (FireGL) Graphics Adapter, ATI FirePro (FireGL) Graphics Adapter, ATI FirePro 2270, CEDAR, ATI Radeon HD 5450, CEDAR, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, AMD Radeon HD 6900 Series, AMD Radeon HD 6900 Series, CAYMAN, CAYMAN, AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series, BARTS, BARTS, Mobility Radeon HD 6000 Series, Mobility Radeon HD 6000 Series, BARTS, BARTS, BARTS, BARTS, AMD Radeon HD 6800 Series, AMD Radeon HD 6800 Series, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS (II) Primary Device is: PCI 03@00:00:0 (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support (II) RADEON(0): TOTO SAYS 00000000fdcf0000 (II) RADEON(0): MMIO registers at 0x00000000fdcf0000: size 64KB (II) RADEON(0): PCI bus 3 card 0 func 0 (++) RADEON(0): Depth 24, (--) framebuffer bpp 32 (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps) (==) RADEON(0): Default visual is TrueColor (II) Loading sub module "vgahw" (II) LoadModule: "vgahw" (II) Loading /usr/local/lib/xorg/modules/libvgahw.so (II) Module vgahw: vendor="X.Org Foundation" compiled for 1.7.7, module version = 0.1.0 ABI class: X.Org Video Driver, version 6.0 (II) RADEON(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000 (==) RADEON(0): RGB weight 888 (II) RADEON(0): Using 8 bits per RGB (8 bit DAC) (--) RADEON(0): Chipset: "ATI Radeon X800 XL (R430) (PCIE)" (ChipID = 0x554d) (--) RADEON(0): Linear framebuffer at 0x00000000e0000000 (II) RADEON(0): PCIE card detected (II) Loading sub module "int10" (II) LoadModule: "int10" (II) Loading /usr/local/lib/xorg/modules/libint10.so (II) Module int10: vendor="X.Org Foundation" compiled for 1.7.7, module version = 1.0.0 ABI class: X.Org Video Driver, version 6.0 (II) RADEON(0): initializing int10 (==) RADEON(0): Write-combining range (0xa0000,0x20000) was already clear (==) RADEON(0): Write-combining range (0xc0000,0x40000) was already clear (II) RADEON(0): Primary V_BIOS segment is: 0xc000 (==) RADEON(0): Write-combining range (0x0,0x1000) was already clear (II) RADEON(0): ATOM BIOS detected (II) RADEON(0): ATOM BIOS Rom: SubsystemVendorID: 0x1043 SubsystemID: 0x006c IOBaseAddress: 0x7c00 Filename: 3AA40600.102 BIOS Bootup Message: 554D.9.7.1.AS03 (II) RADEON(0): Framebuffer space used by Firmware (kb): 19 (II) RADEON(0): Start of VRAM area used by Firmware: 0x7ffb400 (II) RADEON(0): AtomBIOS requests 19kB of VRAM scratch space (II) RADEON(0): AtomBIOS VRAM scratch base: 0x7ffb400 (II) RADEON(0): Cannot get VRAM scratch space. Allocating in main memory instead (II) RADEON(0): Default Engine Clock: 400000 (II) RADEON(0): Default Memory Clock: 490000 (II) RADEON(0): Maximum Pixel ClockPLL Frequency Output: 500000 (II) RADEON(0): Minimum Pixel ClockPLL Frequency Output: 200000 (II) RADEON(0): Maximum Pixel ClockPLL Frequency Input: 13500 (II) RADEON(0): Minimum Pixel ClockPLL Frequency Input: 1000 (II) RADEON(0): Maximum Pixel Clock: 400000 (II) RADEON(0): Reference Clock: 27000 drmOpenDevice: node name is /dev/dri/card0 Failed to change owner or group for file /dev/dri! 2: No such file or directory Failed to change owner or group for file /dev/dri/card0! 2: No such file or directory drmOpenDevice: open result is -1, (No such file or directory) Failed to change owner or group for file /dev/dri/card0! 2: No such file or directory drmOpenDevice: open result is -1, (No such file or directory) drmOpenDevice: Open failed drmOpenByBusid: Searching for BusID pci:0000:03:00.0 drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 10, (OK) drmOpenByBusid: drmOpenMinor returns 10 drmOpenByBusid: drmGetBusid reports pci:0000:03:00.0 (II) RADEON(0): [dri] Found DRI library version 1.3.0 and kernel module version 1.31.0 (==) RADEON(0): Page Flipping disabled (II) RADEON(0): Will try to use DMA for Xv image transfers (II) RADEON(0): Generation 2 PCI interface, using max accessible memory (II) RADEON(0): Detected total video RAM=262144K, accessible=262144K (PCI BAR=262144K) (--) RADEON(0): Mapped VideoRAM: 262144 kByte (256 bit DDR SDRAM) (II) RADEON(0): Color tiling enabled by default (II) Loading sub module "ddc" (II) LoadModule: "ddc" (II) Module "ddc" already built-in (II) Loading sub module "i2c" (II) LoadModule: "i2c" (II) Module "i2c" already built-in (II) RADEON(0): PLL parameters: rf=2700 rd=5 min=20000 max=50000; xclk=40000 (II) RADEON(0): Skipping TV-Out (II) RADEON(0): TMDS PLL from BIOS: 16500 b011c (II) RADEON(0): Skipping Component Video (II) RADEON(0): Output DVI-1 using monitor section Monitor0 (II) RADEON(0): I2C bus "DVI-1" initialized. (II) RADEON(0): Output DVI-0 has no monitor section (II) RADEON(0): I2C bus "DVI-0" initialized. (II) RADEON(0): Port0: XRANDR name: DVI-1 Connector: DVI-I CRT2: INTERNAL_DAC2 DFP1: INTERNAL_TMDS1 DDC reg: 0x68 (II) RADEON(0): Port1: XRANDR name: DVI-0 Connector: DVI-I CRT1: INTERNAL_DAC1 DFP2: INTERNAL_DVO1 DDC reg: 0x64 (II) RADEON(0): I2C device "DVI-1:ddc2" registered at address 0xA0. Dac detection success (II) RADEON(0): Output: DVI-1, Detected Monitor Type: 0 Unhandled monitor type 0 finished output detect: 0 (II) RADEON(0): I2C device "DVI-0:ddc2" registered at address 0xA0. (II) RADEON(0): I2C device "DVI-0:DDC control interface" registered at address 0x6E. (II) RADEON(0): Output: DVI-0, Detected Monitor Type: 3 (II) RADEON(0): EDID data from the display on output: DVI-0 ---------------------- (II) RADEON(0): Manufacturer: BNQ Model: 780a Serial#: 263019 (II) RADEON(0): Year: 2008 Week: 5 (II) RADEON(0): EDID Version: 1.3 (II) RADEON(0): Digital Display Input (II) RADEON(0): Max Image Size [cm]: horiz.: 52 vert.: 32 (II) RADEON(0): Gamma: 2.20 (II) RADEON(0): DPMS capabilities: Off (II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 (II) RADEON(0): Default color space is primary color space (II) RADEON(0): First detailed timing is preferred mode (II) RADEON(0): redX: 0.640 redY: 0.340 greenX: 0.290 greenY: 0.610 (II) RADEON(0): blueX: 0.140 blueY: 0.070 whiteX: 0.310 whiteY: 0.320 (II) RADEON(0): Supported established timings: (II) RADEON(0): 720x400@70Hz (II) RADEON(0): 640x480@60Hz (II) RADEON(0): 640x480@75Hz (II) RADEON(0): 800x600@60Hz (II) RADEON(0): 800x600@75Hz (II) RADEON(0): 832x624@75Hz (II) RADEON(0): 1024x768@60Hz (II) RADEON(0): 1024x768@75Hz (II) RADEON(0): 1280x1024@75Hz (II) RADEON(0): 1152x864@75Hz (II) RADEON(0): Manufacturer's mask: 0 (II) RADEON(0): Supported standard timings: (II) RADEON(0): #0: hsize: 1152 vsize 720 refresh: 60 vid: 113 (II) RADEON(0): #1: hsize: 1280 vsize 800 refresh: 60 vid: 129 (II) RADEON(0): #2: hsize: 1440 vsize 900 refresh: 60 vid: 149 (II) RADEON(0): #3: hsize: 1280 vsize 1024 refresh: 60 vid: 32897 (II) RADEON(0): #4: hsize: 1680 vsize 1050 refresh: 60 vid: 179 (II) RADEON(0): #5: hsize: 1600 vsize 1200 refresh: 60 vid: 16553 (II) RADEON(0): #6: hsize: 1920 vsize 1200 refresh: 60 vid: 209 (II) RADEON(0): Supported detailed timing: (II) RADEON(0): clock: 154.0 MHz Image Size: 519 x 324 mm (II) RADEON(0): h_active: 1920 h_sync: 1968 h_sync_end 2000 h_blank_end 2080 h_border: 0 (II) RADEON(0): v_active: 1200 v_sync: 1203 v_sync_end 1209 v_blanking: 1235 v_border: 0 (II) RADEON(0): Serial No: X1801415ZL0 (II) RADEON(0): Ranges: V min: 50 V max: 85 Hz, H min: 31 H max: 94 kHz, PixClock max 170 MHz (II) RADEON(0): Monitor name: BenQ G2400W (II) RADEON(0): EDID (in hex): (II) RADEON(0): 00ffffffffffff0009d10a786b030400 (II) RADEON(0): 05120103803420782ec5c4a3574a9c23 (II) RADEON(0): 124f52a56b807100810095008180b300 (II) RADEON(0): a940d1000101283c80a070b023403020 (II) RADEON(0): 360007442100001a000000ff00583138 (II) RADEON(0): 30313431355a4c300a20000000fd0032 (II) RADEON(0): 551f5e11000a202020202020000000fc (II) RADEON(0): 0042656e51204732343030570a200023 finished output detect: 1 finished all detect Dac detection success (II) RADEON(0): Output: DVI-1, Detected Monitor Type: 0 Unhandled monitor type 0 (II) RADEON(0): Output: DVI-0, Detected Monitor Type: 3 (II) RADEON(0): EDID data from the display on output: DVI-0 ---------------------- (II) RADEON(0): Manufacturer: BNQ Model: 780a Serial#: 263019 (II) RADEON(0): Year: 2008 Week: 5 (II) RADEON(0): EDID Version: 1.3 (II) RADEON(0): Digital Display Input (II) RADEON(0): Max Image Size [cm]: horiz.: 52 vert.: 32 (II) RADEON(0): Gamma: 2.20 (II) RADEON(0): DPMS capabilities: Off (II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 (II) RADEON(0): Default color space is primary color space (II) RADEON(0): First detailed timing is preferred mode (II) RADEON(0): redX: 0.640 redY: 0.340 greenX: 0.290 greenY: 0.610 (II) RADEON(0): blueX: 0.140 blueY: 0.070 whiteX: 0.310 whiteY: 0.320 (II) RADEON(0): Supported established timings: (II) RADEON(0): 720x400@70Hz (II) RADEON(0): 640x480@60Hz (II) RADEON(0): 640x480@75Hz (II) RADEON(0): 800x600@60Hz (II) RADEON(0): 800x600@75Hz (II) RADEON(0): 832x624@75Hz (II) RADEON(0): 1024x768@60Hz (II) RADEON(0): 1024x768@75Hz (II) RADEON(0): 1280x1024@75Hz (II) RADEON(0): 1152x864@75Hz (II) RADEON(0): Manufacturer's mask: 0 (II) RADEON(0): Supported standard timings: (II) RADEON(0): #0: hsize: 1152 vsize 720 refresh: 60 vid: 113 (II) RADEON(0): #1: hsize: 1280 vsize 800 refresh: 60 vid: 129 (II) RADEON(0): #2: hsize: 1440 vsize 900 refresh: 60 vid: 149 (II) RADEON(0): #3: hsize: 1280 vsize 1024 refresh: 60 vid: 32897 (II) RADEON(0): #4: hsize: 1680 vsize 1050 refresh: 60 vid: 179 (II) RADEON(0): #5: hsize: 1600 vsize 1200 refresh: 60 vid: 16553 (II) RADEON(0): #6: hsize: 1920 vsize 1200 refresh: 60 vid: 209 (II) RADEON(0): Supported detailed timing: (II) RADEON(0): clock: 154.0 MHz Image Size: 519 x 324 mm (II) RADEON(0): h_active: 1920 h_sync: 1968 h_sync_end 2000 h_blank_end 2080 h_border: 0 (II) RADEON(0): v_active: 1200 v_sync: 1203 v_sync_end 1209 v_blanking: 1235 v_border: 0 (II) RADEON(0): Serial No: X1801415ZL0 (II) RADEON(0): Ranges: V min: 50 V max: 85 Hz, H min: 31 H max: 94 kHz, PixClock max 170 MHz (II) RADEON(0): Monitor name: BenQ G2400W (II) RADEON(0): EDID (in hex): (II) RADEON(0): 00ffffffffffff0009d10a786b030400 (II) RADEON(0): 05120103803420782ec5c4a3574a9c23 (II) RADEON(0): 124f52a56b807100810095008180b300 (II) RADEON(0): a940d1000101283c80a070b023403020 (II) RADEON(0): 360007442100001a000000ff00583138 (II) RADEON(0): 30313431355a4c300a20000000fd0032 (II) RADEON(0): 551f5e11000a202020202020000000fc (II) RADEON(0): 0042656e51204732343030570a200023 (II) RADEON(0): Panel infos found from DDC detailed: 1920x1200 (II) RADEON(0): EDID vendor "BNQ", prod id 30730 (II) RADEON(0): Output DVI-1 disconnected (II) RADEON(0): Output DVI-0 connected (II) RADEON(0): Using exact sizes for initial modes (II) RADEON(0): Output DVI-0 using initial mode 1920x1200 (II) RADEON(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated. (==) RADEON(0): DPI set to (96, 96) (II) Loading sub module "fb" (II) LoadModule: "fb" (II) Loading /usr/local/lib/xorg/modules/libfb.so (II) Module fb: vendor="X.Org Foundation" compiled for 1.7.7, module version = 1.0.0 ABI class: X.Org ANSI C Emulation, version 0.4 (II) Loading sub module "ramdac" (II) LoadModule: "ramdac" (II) Module "ramdac" already built-in (==) RADEON(0): Using EXA acceleration architecture (II) Loading sub module "exa" (II) LoadModule: "exa" (II) Loading /usr/local/lib/xorg/modules/libexa.so (II) Module exa: vendor="X.Org Foundation" compiled for 1.7.7, module version = 2.5.0 ABI class: X.Org Video Driver, version 6.0 (==) RADEON(0): Assuming overlay scaler buffer width is 1920 (II) RADEON(0): MM_TABLE: 46-00-28-be-8c-4e-10-e9-d7-05-80-fb-05-75 (II) RADEON(0): This card has MM_TABLE we do not recognize. If your card is TV-in capable you will need to specify options RageTheatreCrystal, RageTheatreTunerPort, RageTheatreSVideoPort and TunerType in /etc/X11/xorg.conf. (==) RADEON(0): Write-combining range (0x0,0x1000) was already clear (!!) RADEON(0): MergedFB support has been removed and replaced with xrandr 1.2 support (--) Depth 24 pixmap format is 32 bpp (II) RADEON(0): RADEONScreenInit e0000000 0 0 (==) RADEON(0): Write-combining range (0xa0000,0x10000) was already clear Entering TV Save Save TV timing tables saveTimingTables: reading timing tables TV Save done disable FP2 (II) RADEON(0): Dynamic Power Management Disabled (==) RADEON(0): Using 24 bit depth buffer (II) RADEON(0): RADEONInitMemoryMap() : (II) RADEON(0): mem_size : 0x10000000 (II) RADEON(0): MC_FB_LOCATION : 0xefffe000 (II) RADEON(0): MC_AGP_LOCATION : 0xffffffc0 (II) RADEON(0): Depth moves disabled by default (II) RADEON(0): Allocating from a screen of 262112 kb (II) RADEON(0): Will use 32 kb for hardware cursor 0 at offset 0x00e10000 (II) RADEON(0): Will use 32 kb for hardware cursor 1 at offset 0x00e14000 (II) RADEON(0): Will use 14400 kb for front buffer at offset 0x00000000 (II) RADEON(0): Will use 32 kb for PCI GART at offset 0x0fff8000 (II) RADEON(0): Will use 14400 kb for back buffer at offset 0x00e18000 (II) RADEON(0): Will use 14400 kb for depth buffer at offset 0x01c28000 (II) RADEON(0): Will use 108544 kb for textures at offset 0x02a38000 (II) RADEON(0): Will use 110336 kb for X Server offscreen at offset 0x09438000 drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 10, (OK) drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 10, (OK) drmOpenByBusid: Searching for BusID pci:0000:03:00.0 drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 10, (OK) drmOpenByBusid: drmOpenMinor returns 10 drmOpenByBusid: drmGetBusid reports pci:0000:03:00.0 (II) [drm] DRM interface version 1.2 (II) [drm] DRM open master succeeded. (II) RADEON(0): [drm] Using the DRM lock SAREA also for drawables. (II) RADEON(0): [drm] framebuffer handle = 0xe0000000 (II) RADEON(0): [drm] added 1 reserved context for kernel (II) RADEON(0): X context handle = 0x1 (II) RADEON(0): [drm] installed DRM signal handler (II) RADEON(0): [pci] 32768 kB allocated with handle 0x247e2000 (II) RADEON(0): [pci] ring handle = 0x247e2000 (II) RADEON(0): [pci] Ring mapped at 0x812e00000 (II) RADEON(0): [pci] Ring contents 0x00000000 (II) RADEON(0): [pci] ring read ptr handle = 0x248e3000 (II) RADEON(0): [pci] Ring read ptr mapped at 0x8006e2000 (II) RADEON(0): [pci] Ring read ptr contents 0x00000000 (II) RADEON(0): [pci] vertex/indirect buffers handle = 0x248e4000 (II) RADEON(0): [pci] Vertex/indirect buffers mapped at 0x812f01000 (II) RADEON(0): [pci] Vertex/indirect buffers contents 0x00000000 (II) RADEON(0): [pci] GART texture map handle = 0x24ae4000 (II) RADEON(0): [pci] GART Texture map mapped at 0x8132e4000 (II) RADEON(0): [drm] register handle = 0xfdcf0000 (II) RADEON(0): [dri] Visual configs initialized (II) RADEON(0): RADEONRestoreMemMapRegisters() : (II) RADEON(0): MC_FB_LOCATION : 0xefffe000 0xefffe000 (II) RADEON(0): MC_AGP_LOCATION : 0xffffffc0 (==) RADEON(0): Backing store disabled (II) RADEON(0): [DRI] installation complete (II) RADEON(0): [drm] Added 32 65536 byte vertex/indirect buffers (II) RADEON(0): [drm] Mapped 32 vertex/indirect buffers (II) RADEON(0): [drm] dma control initialized, using IRQ 272 (II) RADEON(0): [drm] Initialized kernel GART heap manager, 29884416 (WW) RADEON(0): DRI init changed memory map, adjusting ... (WW) RADEON(0): MC_FB_LOCATION was: 0xefffe000 is: 0xefffe000 (WW) RADEON(0): MC_AGP_LOCATION was: 0xffffffc0 is: 0xffffffc0 (II) RADEON(0): RADEONRestoreMemMapRegisters() : (II) RADEON(0): MC_FB_LOCATION : 0xefffe000 0xefffe000 (II) RADEON(0): MC_AGP_LOCATION : 0xffffffc0 (II) RADEON(0): Direct rendering enabled (II) RADEON(0): Render acceleration enabled for R300/R400/R500 type cards. (II) RADEON(0): Setting EXA maxPitchBytes (II) RADEON(0): num quad-pipes is 4 (II) EXA(0): Offscreen pixmap area of 112984064 bytes (II) EXA(0): Driver registered support for the following operations: (II) Solid (II) Copy (II) Composite (RENDER acceleration) (II) UploadToScreen (II) DownloadFromScreen (II) RADEON(0): Acceleration enabled (==) RADEON(0): DPMS enabled (==) RADEON(0): Silken mouse enabled (II) RADEON(0): No video input capabilities detected and no information is provided - disabling multimedia i2c (II) Loading sub module "theatre_detect" (II) LoadModule: "theatre_detect" (II) Loading /usr/local/lib/xorg/modules/multimedia/theatre_detect_drv.so (II) Module theatre_detect: vendor="X.Org Foundation" compiled for 1.7.7, module version = 1.0.0 ABI class: X.Org Video Driver, version 6.0 (II) RADEON(0): no multimedia table present, disabling Rage Theatre. (II) RADEON(0): Set up overlay video (II) RADEON(0): Set up textured video disable FP2 disable FP2 init memmap init common init crtc1 init pll1 freq: 154000000 best_freq: 154000000 best_feedback_div: 308 best_frac_feedback_div: 0 best_ref_div: 27 best_post_div: 2 restore memmap (II) RADEON(0): RADEONRestoreMemMapRegisters() : (II) RADEON(0): MC_FB_LOCATION : 0xefffe000 0xefffe000 (II) RADEON(0): MC_AGP_LOCATION : 0xffffffc0 restore common restore crtc1 restore pll1 finished PLL1 set RMX set FP2 External TMDS setup success enable FP2 (II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message. (--) RandR disabled (II) Initializing built-in extension Generic Event Extension (II) Initializing built-in extension SHAPE (II) Initializing built-in extension MIT-SHM (II) Initializing built-in extension XInputExtension (II) Initializing built-in extension XTEST (II) Initializing built-in extension BIG-REQUESTS (II) Initializing built-in extension SYNC (II) Initializing built-in extension XKEYBOARD (II) Initializing built-in extension XC-MISC (II) Initializing built-in extension XINERAMA (II) Initializing built-in extension XFIXES (II) Initializing built-in extension RENDER (II) Initializing built-in extension RANDR (II) Initializing built-in extension COMPOSITE (II) Initializing built-in extension DAMAGE (II) AIGLX: Loaded and initialized /usr/local/lib/dri/swrast_dri.so (II) GLX: Initialized DRISWRAST GL provider for screen 0 (II) RADEON(0): Setting screen physical size to 508 x 317 (**) Option "Protocol" "auto" (**) Mouse0: Device: "/dev/ums0" (**) Mouse0: Protocol: "auto" (**) Option "CorePointer" (**) Mouse0: always reports core events (**) Option "Device" "/dev/ums0" (==) Mouse0: Emulate3Buttons, Emulate3Timeout: 50 (**) Option "ZAxisMapping" "4 5 6 7" (**) Mouse0: ZAxisMapping: buttons 4, 5, 6 and 7 (**) Mouse0: Buttons: 11 (**) Mouse0: Sensitivity: 1 (II) XINPUT: Adding extended input device "Mouse0" (type: MOUSE) (**) Mouse0: (accel) keeping acceleration scheme 1 (**) Mouse0: (accel) acceleration profile 0 (II) Mouse0: SetupAuto: hw.iftype is 5, hw.model is 0 (II) Mouse0: SetupAuto: protocol is SysMouse (WW) fcntl(11, F_SETOWN): Inappropriate ioctl for device (**) Option "CoreKeyboard" (**) Keyboard0: always reports core events (**) Option "Protocol" "standard" (**) Keyboard0: Protocol: standard (**) Option "XkbRules" "base" (**) Keyboard0: XkbRules: "base" (**) Option "XkbModel" "pc105" (**) Keyboard0: XkbModel: "pc105" (**) Option "XkbLayout" "us" (**) Keyboard0: XkbLayout: "us" (**) Option "CustomKeycodes" "off" (**) Keyboard0: CustomKeycodes disabled (II) XINPUT: Adding extended input device "Keyboard0" (type: KEYBOARD) Dac detection success (II) RADEON(0): Output: DVI-1, Detected Monitor Type: 0 Unhandled monitor type 0 (II) RADEON(0): EDID vendor "BNQ", prod id 30730 (II) RADEON(0): Using EDID range info for horizontal sync (II) RADEON(0): Using EDID range info for vertical refresh (II) RADEON(0): Printing DDC gathered Modelines: (II) RADEON(0): Modeline "1920x1200"x0.0 154.00 1920 1968 2000 2080 1200 1203 1209 1235 +hsync -vsync (74.0 kHz) (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz) (II) RADEON(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz) (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz) (II) RADEON(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz) (II) RADEON(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz) (II) RADEON(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz) (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz) (II) RADEON(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz) (II) RADEON(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz) (II) RADEON(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz) (II) RADEON(0): Modeline "1152x720"x60.0 67.32 1152 1208 1328 1504 720 721 724 746 -hsync +vsync (44.8 kHz) (II) RADEON(0): Modeline "1280x800"x0.0 71.00 1280 1328 1360 1440 800 803 809 823 +hsync -vsync (49.3 kHz) (II) RADEON(0): Modeline "1440x900"x0.0 88.75 1440 1488 1520 1600 900 903 909 926 +hsync -vsync (55.5 kHz) (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz) (II) RADEON(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz) (II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz) (II) RADEON(0): Output: DVI-0, Detected Monitor Type: 3 (II) RADEON(0): EDID data from the display on output: DVI-0 ---------------------- (II) RADEON(0): Manufacturer: BNQ Model: 780a Serial#: 263019 (II) RADEON(0): Year: 2008 Week: 5 (II) RADEON(0): EDID Version: 1.3 (II) RADEON(0): Digital Display Input (II) RADEON(0): Max Image Size [cm]: horiz.: 52 vert.: 32 (II) RADEON(0): Gamma: 2.20 (II) RADEON(0): DPMS capabilities: Off (II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 (II) RADEON(0): Default color space is primary color space (II) RADEON(0): First detailed timing is preferred mode (II) RADEON(0): redX: 0.640 redY: 0.340 greenX: 0.290 greenY: 0.610 (II) RADEON(0): blueX: 0.140 blueY: 0.070 whiteX: 0.310 whiteY: 0.320 (II) RADEON(0): Supported established timings: (II) RADEON(0): 720x400@70Hz (II) RADEON(0): 640x480@60Hz (II) RADEON(0): 640x480@75Hz (II) RADEON(0): 800x600@60Hz (II) RADEON(0): 800x600@75Hz (II) RADEON(0): 832x624@75Hz (II) RADEON(0): 1024x768@60Hz (II) RADEON(0): 1024x768@75Hz (II) RADEON(0): 1280x1024@75Hz (II) RADEON(0): 1152x864@75Hz (II) RADEON(0): Manufacturer's mask: 0 (II) RADEON(0): Supported standard timings: (II) RADEON(0): #0: hsize: 1152 vsize 720 refresh: 60 vid: 113 (II) RADEON(0): #1: hsize: 1280 vsize 800 refresh: 60 vid: 129 (II) RADEON(0): #2: hsize: 1440 vsize 900 refresh: 60 vid: 149 (II) RADEON(0): #3: hsize: 1280 vsize 1024 refresh: 60 vid: 32897 (II) RADEON(0): #4: hsize: 1680 vsize 1050 refresh: 60 vid: 179 (II) RADEON(0): #5: hsize: 1600 vsize 1200 refresh: 60 vid: 16553 (II) RADEON(0): #6: hsize: 1920 vsize 1200 refresh: 60 vid: 209 (II) RADEON(0): Supported detailed timing: (II) RADEON(0): clock: 154.0 MHz Image Size: 519 x 324 mm (II) RADEON(0): h_active: 1920 h_sync: 1968 h_sync_end 2000 h_blank_end 2080 h_border: 0 (II) RADEON(0): v_active: 1200 v_sync: 1203 v_sync_end 1209 v_blanking: 1235 v_border: 0 (II) RADEON(0): Serial No: X1801415ZL0 (II) RADEON(0): Ranges: V min: 50 V max: 85 Hz, H min: 31 H max: 94 kHz, PixClock max 170 MHz (II) RADEON(0): Monitor name: BenQ G2400W (II) RADEON(0): EDID (in hex): (II) RADEON(0): 00ffffffffffff0009d10a786b030400 (II) RADEON(0): 05120103803420782ec5c4a3574a9c23 (II) RADEON(0): 124f52a56b807100810095008180b300 (II) RADEON(0): a940d1000101283c80a070b023403020 (II) RADEON(0): 360007442100001a000000ff00583138 (II) RADEON(0): 30313431355a4c300a20000000fd0032 (II) RADEON(0): 551f5e11000a202020202020000000fc (II) RADEON(0): 0042656e51204732343030570a200023 (II) RADEON(0): EDID vendor "BNQ", prod id 30730 Dac detection success (II) RADEON(0): Output: DVI-1, Detected Monitor Type: 0 Unhandled monitor type 0 (II) RADEON(0): EDID vendor "BNQ", prod id 30730 (II) RADEON(0): Using hsync ranges from config file (II) RADEON(0): Using vrefresh ranges from config file (II) RADEON(0): Printing DDC gathered Modelines: (II) RADEON(0): Modeline "1920x1200"x0.0 154.00 1920 1968 2000 2080 1200 1203 1209 1235 +hsync -vsync (74.0 kHz) (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz) (II) RADEON(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz) (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz) (II) RADEON(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz) (II) RADEON(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz) (II) RADEON(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz) (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz) (II) RADEON(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz) (II) RADEON(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz) (II) RADEON(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz) (II) RADEON(0): Modeline "1152x720"x60.0 67.32 1152 1208 1328 1504 720 721 724 746 -hsync +vsync (44.8 kHz) (II) RADEON(0): Modeline "1280x800"x0.0 71.00 1280 1328 1360 1440 800 803 809 823 +hsync -vsync (49.3 kHz) (II) RADEON(0): Modeline "1440x900"x0.0 88.75 1440 1488 1520 1600 900 903 909 926 +hsync -vsync (55.5 kHz) (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz) (II) RADEON(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz) (II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz) (II) RADEON(0): Output: DVI-0, Detected Monitor Type: 3 (II) RADEON(0): EDID data from the display on output: DVI-0 ---------------------- (II) RADEON(0): Manufacturer: BNQ Model: 780a Serial#: 263019 (II) RADEON(0): Year: 2008 Week: 5 (II) RADEON(0): EDID Version: 1.3 (II) RADEON(0): Digital Display Input (II) RADEON(0): Max Image Size [cm]: horiz.: 52 vert.: 32 (II) RADEON(0): Gamma: 2.20 (II) RADEON(0): DPMS capabilities: Off (II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 (II) RADEON(0): Default color space is primary color space (II) RADEON(0): First detailed timing is preferred mode (II) RADEON(0): redX: 0.640 redY: 0.340 greenX: 0.290 greenY: 0.610 (II) RADEON(0): blueX: 0.140 blueY: 0.070 whiteX: 0.310 whiteY: 0.320 (II) RADEON(0): Supported established timings: (II) RADEON(0): 720x400@70Hz (II) RADEON(0): 640x480@60Hz (II) RADEON(0): 640x480@75Hz (II) RADEON(0): 800x600@60Hz (II) RADEON(0): 800x600@75Hz (II) RADEON(0): 832x624@75Hz (II) RADEON(0): 1024x768@60Hz (II) RADEON(0): 1024x768@75Hz (II) RADEON(0): 1280x1024@75Hz (II) RADEON(0): 1152x864@75Hz (II) RADEON(0): Manufacturer's mask: 0 (II) RADEON(0): Supported standard timings: (II) RADEON(0): #0: hsize: 1152 vsize 720 refresh: 60 vid: 113 (II) RADEON(0): #1: hsize: 1280 vsize 800 refresh: 60 vid: 129 (II) RADEON(0): #2: hsize: 1440 vsize 900 refresh: 60 vid: 149 (II) RADEON(0): #3: hsize: 1280 vsize 1024 refresh: 60 vid: 32897 (II) RADEON(0): #4: hsize: 1680 vsize 1050 refresh: 60 vid: 179 (II) RADEON(0): #5: hsize: 1600 vsize 1200 refresh: 60 vid: 16553 (II) RADEON(0): #6: hsize: 1920 vsize 1200 refresh: 60 vid: 209 (II) RADEON(0): Supported detailed timing: (II) RADEON(0): clock: 154.0 MHz Image Size: 519 x 324 mm (II) RADEON(0): h_active: 1920 h_sync: 1968 h_sync_end 2000 h_blank_end 2080 h_border: 0 (II) RADEON(0): v_active: 1200 v_sync: 1203 v_sync_end 1209 v_blanking: 1235 v_border: 0 (II) RADEON(0): Serial No: X1801415ZL0 (II) RADEON(0): Ranges: V min: 50 V max: 85 Hz, H min: 31 H max: 94 kHz, PixClock max 170 MHz (II) RADEON(0): Monitor name: BenQ G2400W (II) RADEON(0): EDID (in hex): (II) RADEON(0): 00ffffffffffff0009d10a786b030400 (II) RADEON(0): 05120103803420782ec5c4a3574a9c23 (II) RADEON(0): 124f52a56b807100810095008180b300 (II) RADEON(0): a940d1000101283c80a070b023403020 (II) RADEON(0): 360007442100001a000000ff00583138 (II) RADEON(0): 30313431355a4c300a20000000fd0032 (II) RADEON(0): 551f5e11000a202020202020000000fc (II) RADEON(0): 0042656e51204732343030570a200023 (II) RADEON(0): EDID vendor "BNQ", prod id 30730 (II) 3rd Button detected: disabling emulate3Button >Description: Firefox menus become corrupt. They open normally, but when you move the cursor down on the menu, the menu contents are replaced with graphics from somewhere else, often first it becomes black and then starts showing contents of other menus. Could be something related to backing store stuff. Thunderbird has similar problem. Is this X or mozilla stuff? This happened after upgrading ports couple of weeks ago. First I used portupgrade -aPpRr, and after noticing this, I checked for orphan includes and libs, and forced compile of everything with portupgrade -afpRr, no help. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon May 2 21:30:09 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 056A7106564A for ; Mon, 2 May 2011 21:30:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D43B98FC17 for ; Mon, 2 May 2011 21:30:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p42LU8XF098340 for ; Mon, 2 May 2011 21:30:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p42LU8Tc098339; Mon, 2 May 2011 21:30:08 GMT (envelope-from gnats) Resent-Date: Mon, 2 May 2011 21:30:08 GMT Resent-Message-Id: <201105022130.p42LU8Tc098339@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Baptiste Daroussin Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BFA39106564A for ; Mon, 2 May 2011 21:24:01 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: from mail-wy0-f182.google.com (mail-wy0-f182.google.com [74.125.82.182]) by mx1.freebsd.org (Postfix) with ESMTP id 2EA708FC19 for ; Mon, 2 May 2011 21:24:00 +0000 (UTC) Received: by wyf23 with SMTP id 23so5922056wyf.13 for ; Mon, 02 May 2011 14:24:00 -0700 (PDT) Received: by 10.216.145.200 with SMTP id p50mr12662wej.79.1304371438196; Mon, 02 May 2011 14:23:58 -0700 (PDT) Received: from localhost (mlr78-1-82-232-208-178.fbx.proxad.net [82.232.208.178]) by mx.google.com with ESMTPS id r57sm2874418wes.25.2011.05.02.14.23.56 (version=SSLv3 cipher=OTHER); Mon, 02 May 2011 14:23:57 -0700 (PDT) Message-Id: <4dbf20ed.cf03d90a.7895.1e07@mx.google.com> Date: Mon, 02 May 2011 14:23:57 -0700 (PDT) From: Baptiste Daroussin Sender: Baptiste Daroussin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: oliver@FreeBSD.org Subject: ports/156778: [PATCH] mail/vqadmin: useless dependency on libgetline? X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 May 2011 21:30:09 -0000 >Number: 156778 >Category: ports >Synopsis: [PATCH] mail/vqadmin: useless dependency on libgetline? >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 May 02 21:30:08 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Baptiste Daroussin >Release: FreeBSD 8.2-STABLE amd64 >Organization: >Environment: System: FreeBSD azathoth.lan 8.2-STABLE FreeBSD 8.2-STABLE #0 r219454M: Thu Mar 10 20:09:22 CET >Description: I tested built on 7.4 and 8.2. and it seems to me that libgetline is now useless for this ports. Can you confirm? notice that libgetline has expired has it has no upstream and no distfiles available. Port maintainer (oliver@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- vqadmin-2.3.6_1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/mail/vqadmin/Makefile,v retrieving revision 1.14 diff -u -u -r1.14 Makefile --- Makefile 22 Aug 2009 00:27:57 -0000 1.14 +++ Makefile 2 May 2011 21:22:23 -0000 @@ -14,7 +14,6 @@ MAINTAINER= oliver@FreeBSD.org COMMENT= A cgi-based Virtual Qmail Domains Administrator -LIB_DEPENDS= getline.1:${PORTSDIR}/devel/libgetline BUILD_DEPENDS= ${LOCALBASE}/vpopmail/lib/libvpopmail.a:${PORTSDIR}/mail/vpopmail RUN_DEPENDS= ${LOCALBASE}/vpopmail/lib/libvpopmail.a:${PORTSDIR}/mail/vpopmail Index: distinfo =================================================================== RCS file: /home/pcvs/ports/mail/vqadmin/distinfo,v retrieving revision 1.7 diff -u -u -r1.7 distinfo --- distinfo 22 Jan 2006 12:50:53 -0000 1.7 +++ distinfo 2 May 2011 21:22:23 -0000 @@ -1,3 +1,2 @@ -MD5 (vqadmin-2.3.6.tar.gz) = b808aabaf3f6eee8633217b50cb40f25 SHA256 (vqadmin-2.3.6.tar.gz) = e72fde3cf538d1e93a6aaaffbce100aeb417350d07cb73ee49b08c22256076d9 SIZE (vqadmin-2.3.6.tar.gz) = 155771 Index: files/patch-Makefile.in =================================================================== RCS file: /home/pcvs/ports/mail/vqadmin/files/patch-Makefile.in,v retrieving revision 1.2 diff -u -u -r1.2 patch-Makefile.in --- files/patch-Makefile.in 18 Apr 2004 12:24:35 -0000 1.2 +++ files/patch-Makefile.in 2 May 2011 21:22:23 -0000 @@ -5,7 +5,7 @@ CPPFLAGS = @CPPFLAGS@ LDFLAGS = @LDFLAGS@ -LIBS = @LIBS@ -+LIBS = -L%%LOCALBASE%%/lib -lgetline @LIBS@ ++LIBS = -L%%LOCALBASE%%/lib @LIBS@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ --- vqadmin-2.3.6_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon May 2 21:30:21 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 072ED106564A; Mon, 2 May 2011 21:30:21 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D3D4E8FC12; Mon, 2 May 2011 21:30:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p42LUKKD099350; Mon, 2 May 2011 21:30:20 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p42LUKOi099338; Mon, 2 May 2011 21:30:20 GMT (envelope-from edwin) Date: Mon, 2 May 2011 21:30:20 GMT Message-Id: <201105022130.p42LUKOi099338@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, oliver@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156778: [PATCH] mail/vqadmin: useless dependency on libgetline? X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 May 2011 21:30:21 -0000 Synopsis: [PATCH] mail/vqadmin: useless dependency on libgetline? Responsible-Changed-From-To: freebsd-ports-bugs->oliver Responsible-Changed-By: edwin Responsible-Changed-When: Mon May 2 21:30:19 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156778 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon May 2 21:37:25 2011 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F1C171065670 for ; Mon, 2 May 2011 21:37:24 +0000 (UTC) (envelope-from renchap@cocoa-x.com) Received: from 27.mail-out.ovh.net (9.27.mail-out.ovh.net [46.105.41.22]) by mx1.freebsd.org (Postfix) with SMTP id 69C7E8FC17 for ; Mon, 2 May 2011 21:37:24 +0000 (UTC) Received: (qmail 27635 invoked by uid 503); 2 May 2011 22:06:05 -0000 Received: from b7.ovh.net (HELO mail190.ha.ovh.net) (213.186.33.57) by 27.mail-out.ovh.net with SMTP; 2 May 2011 22:06:00 -0000 Received: from b0.ovh.net (HELO queueout) (213.186.33.50) by b0.ovh.net with SMTP; 2 May 2011 23:10:37 +0200 Received: from mas91-4-88-189-56-133.fbx.proxad.net (HELO krasus.massy.renchap.com) (renchap@cocoa-x.com@88.189.56.133) by ns0.ovh.net with SMTP; 2 May 2011 23:10:36 +0200 Date: Mon, 2 May 2011 23:10:36 +0200 From: Renaud Chaput To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Message-ID: <20110502231036.7a87a288@krasus.massy.renchap.com> In-Reply-To: <201104132310.p3DNABr1081022@freefall.freebsd.org> References: <20110413224404.4C07128AF@tahiri.renchap.com> <201104132310.p3DNABr1081022@freefall.freebsd.org> X-Mailer: Claws Mail 3.7.9 (GTK+ 2.22.1; x86_64-pc-linux-gnu) Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="MP_/KiIECL9vB_qa1RG/Ewo7JC1" X-Ovh-Tracer-Id: 2147091122811967672 X-Ovh-Remote: 88.189.56.133 (mas91-4-88-189-56-133.fbx.proxad.net) X-Ovh-Local: 213.186.33.20 (ns0.ovh.net) X-Spam-Check: DONE|U 0.5/N Cc: Subject: Re: ports/156383: [MAINTAINER] sysutils/rubygem-ohai: update to 0.6.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 May 2011 21:37:25 -0000 --MP_/KiIECL9vB_qa1RG/Ewo7JC1 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline A new version of ohai is released, here is the patch to update the port to 0.6.4 Le Wed, 13 Apr 2011 23:10:11 GMT, FreeBSD-gnats-submit@FreeBSD.org a =C3=A9crit : > Thank you very much for your problem report. > It has the internal identification `ports/156383'. > 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=3D156383 >=20 > >Category: ports > >Responsible: freebsd-ports-bugs > >Synopsis: [MAINTAINER] sysutils/rubygem-ohai: update to 0.6.0 > >Arrival-Date: Wed Apr 13 23:10:11 UTC 2011 --MP_/KiIECL9vB_qa1RG/Ewo7JC1 Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=rubygem-ohai-0.6.4.patch diff -ruN --exclude=CVS /usr/ports/sysutils/rubygem-ohai/Makefile /usr/home/renchap/ports/sysutils/rubygem-ohai/Makefile --- /usr/ports/sysutils/rubygem-ohai/Makefile 2011-03-05 20:55:24.314378856 +0100 +++ /usr/home/renchap/ports/sysutils/rubygem-ohai/Makefile 2011-05-02 22:59:01.472531551 +0200 @@ -2,11 +2,11 @@ # Date created: 18 Mar 2010 # Whom: Renaud Chaput # -# $FreeBSD: ports/sysutils/rubygem-ohai/Makefile,v 1.12 2011/03/02 21:39:57 pav Exp $ +# $FreeBSD: ports/sysutils/rubygem-ohai/Makefile,v 1.8 2010/12/08 20:48:29 pgollucci Exp $ # PORTNAME= ohai -PORTVERSION= 0.5.8 +PORTVERSION= 0.6.4 CATEGORIES= sysutils rubygems MASTER_SITES= RG @@ -17,10 +17,7 @@ rubygem-mixlib-config>=0:${PORTSDIR}/devel/rubygem-mixlib-config \ rubygem-mixlib-cli>=0:${PORTSDIR}/devel/rubygem-mixlib-cli \ rubygem-systemu>=0:${PORTSDIR}/devel/rubygem-systemu \ - rubygem-extlib>=0:${PORTSDIR}/devel/rubygem-extlib \ - rubygem-json>=1.4.4:${PORTSDIR}/devel/rubygem-json - -BROKEN= does not install + rubygem-yajl-ruby>=0:${PORTSDIR}/devel/rubygem-yajl-ruby USE_RUBY= yes USE_RUBYGEMS= yes diff -ruN --exclude=CVS /usr/ports/sysutils/rubygem-ohai/distinfo /usr/home/renchap/ports/sysutils/rubygem-ohai/distinfo --- /usr/ports/sysutils/rubygem-ohai/distinfo 2010-12-23 08:49:55.461561008 +0100 +++ /usr/home/renchap/ports/sysutils/rubygem-ohai/distinfo 2011-05-02 23:00:03.454238697 +0200 @@ -1,2 +1,2 @@ -SHA256 (rubygem/ohai-0.5.8.gem) = cf7a7e1f3505b91d64081177851d8555d05b180399f1581a790053a6d9da79a4 -SIZE (rubygem/ohai-0.5.8.gem) = 68608 +SHA256 (rubygem/ohai-0.6.4.gem) = 4e7156da28f45818d9c39f1577c6c9b4d68f05d3961233ea2558879f0cc0b7bd +SIZE (rubygem/ohai-0.6.4.gem) = 81408 diff -ruN --exclude=CVS /usr/ports/sysutils/rubygem-ohai/rubygem-ohai-0.6.4.patch /usr/home/renchap/ports/sysutils/rubygem-ohai/rubygem-ohai-0.6.4.patch --- /usr/ports/sysutils/rubygem-ohai/rubygem-ohai-0.6.4.patch 1970-01-01 01:00:00.000000000 +0100 +++ /usr/home/renchap/ports/sysutils/rubygem-ohai/rubygem-ohai-0.6.4.patch 2011-05-02 23:07:36.517941296 +0200 @@ -0,0 +1 @@ --MP_/KiIECL9vB_qa1RG/Ewo7JC1-- From owner-freebsd-ports-bugs@FreeBSD.ORG Mon May 2 21:43:33 2011 Return-Path: Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 057C8106566C; Mon, 2 May 2011 21:43:33 +0000 (UTC) (envelope-from hsu@bbnetworks.net) Received: from mail.bbnetworks.net (mail.bbnetworks.net [212.16.96.5]) by mx1.freebsd.org (Postfix) with ESMTP id 71CE58FC0C; Mon, 2 May 2011 21:43:32 +0000 (UTC) Received: from lelu.suonsivu.net (lelu.suonsivu.net [212.16.96.66]) by mail.bbnetworks.net (8.14.3/8.14.3) with ESMTP id p42LQXB3061144; Tue, 3 May 2011 00:26:38 +0300 (EEST) (envelope-from hsu@bbnetworks.net) Message-ID: <4DBF238B.5050406@bbnetworks.net> Date: Tue, 03 May 2011 00:35:07 +0300 From: Heikki Suonsivu Organization: Backbone Networks Europe User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.9.2.15) Gecko/20110423 Thunderbird/3.1.9 MIME-Version: 1.0 To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org References: <201105022050.p42Ko6cM002465@freefall.freebsd.org> In-Reply-To: <201105022050.p42Ko6cM002465@freefall.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.2.6 (mail.bbnetworks.net [212.16.96.5]); Tue, 03 May 2011 00:26:38 +0300 (EEST) Cc: Subject: Re: ports/156777: Firefox and thunderbird menus show corrupt data X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 May 2011 21:43:33 -0000 Forgot to add a screengrab, here it is: http://www.bbnetworks.net/firefoxbug.png See bookmarks menu being open. All menus behave like this, including drop-down menus on web pages. Heikki Suonsivu bbnetworks.net From owner-freebsd-ports-bugs@FreeBSD.ORG Mon May 2 21:50:12 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1257F106564A for ; Mon, 2 May 2011 21:50:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DCD168FC19 for ; Mon, 2 May 2011 21:50:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p42LoBSi017183 for ; Mon, 2 May 2011 21:50:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p42LoB3S017182; Mon, 2 May 2011 21:50:11 GMT (envelope-from gnats) Date: Mon, 2 May 2011 21:50:11 GMT Message-Id: <201105022150.p42LoB3S017182@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Heikki Suonsivu Cc: Subject: Re: ports/156777: Firefox and thunderbird menus show corrupt data X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Heikki Suonsivu List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 May 2011 21:50:12 -0000 The following reply was made to PR ports/156777; it has been noted by GNATS. From: Heikki Suonsivu To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/156777: Firefox and thunderbird menus show corrupt data Date: Tue, 03 May 2011 00:35:07 +0300 Forgot to add a screengrab, here it is: http://www.bbnetworks.net/firefoxbug.png See bookmarks menu being open. All menus behave like this, including drop-down menus on web pages. Heikki Suonsivu bbnetworks.net From owner-freebsd-ports-bugs@FreeBSD.ORG Mon May 2 21:50:12 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 568B41065670 for ; Mon, 2 May 2011 21:50:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3946C8FC1F for ; Mon, 2 May 2011 21:50:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p42LoCQL017195 for ; Mon, 2 May 2011 21:50:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p42LoC1Q017194; Mon, 2 May 2011 21:50:12 GMT (envelope-from gnats) Resent-Date: Mon, 2 May 2011 21:50:12 GMT Resent-Message-Id: <201105022150.p42LoC1Q017194@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Renaud Chaput Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7D7471065674 for ; Mon, 2 May 2011 21:49:08 +0000 (UTC) (envelope-from renchap@tahiri.renchap.com) Received: from tahiri.renchap.com (tahiri.renchap.com [94.23.193.215]) by mx1.freebsd.org (Postfix) with ESMTP id 453D78FC19 for ; Mon, 2 May 2011 21:49:07 +0000 (UTC) Received: by tahiri.renchap.com (Postfix, from userid 1001) id EEEE15A7; Mon, 2 May 2011 23:49:05 +0200 (CEST) Message-Id: <20110502214905.EEEE15A7@tahiri.renchap.com> Date: Mon, 2 May 2011 23:49:05 +0200 (CEST) From: Renaud Chaput To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: ruby@FreeBSD.org Subject: ports/156779: [PATCH] security/rubygem-net-ssh: update to 2.1.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 May 2011 21:50:12 -0000 >Number: 156779 >Category: ports >Synopsis: [PATCH] security/rubygem-net-ssh: update to 2.1.4 >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 May 02 21:50:11 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Renaud Chaput >Release: FreeBSD 8.1-RELEASE amd64 >Organization: >Environment: System: FreeBSD tahiri.renchap.com 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Mon Jul 19 02:36:49 UTC 2010 >Description: - Update to 2.1.4 Port maintainer (ruby@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- rubygem-net-ssh-2.1.4.patch begins here --- diff -ruN --exclude=CVS /usr/ports/security/rubygem-net-ssh/Makefile /usr/home/renchap/ports/rubygem-net-ssh/Makefile --- /usr/ports/security/rubygem-net-ssh/Makefile 2011-02-22 20:35:07.766406639 +0100 +++ /usr/home/renchap/ports/rubygem-net-ssh/Makefile 2011-05-02 23:47:46.034389392 +0200 @@ -6,7 +6,7 @@ # PORTNAME= net-ssh -PORTVERSION= 2.0.24 +PORTVERSION= 2.1.4 CATEGORIES= security rubygems MASTER_SITES= RG @@ -19,7 +19,7 @@ # to get RUBY_SITEARCHLIBDIR USE_RUBY= yes USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes +RUBYGEM_AUTOPLIST= yes .if !defined(WITHOUT_PROMPT_PASSPHRASES) RUN_DEPENDS+= ${RUBY_SITEARCHLIBDIR}/termios.so:${PORTSDIR}/comms/ruby-termios diff -ruN --exclude=CVS /usr/ports/security/rubygem-net-ssh/distinfo /usr/home/renchap/ports/rubygem-net-ssh/distinfo --- /usr/ports/security/rubygem-net-ssh/distinfo 2011-02-22 20:35:07.767407573 +0100 +++ /usr/home/renchap/ports/rubygem-net-ssh/distinfo 2011-05-02 23:47:28.826880291 +0200 @@ -1,2 +1,2 @@ -SHA256 (rubygem/net-ssh-2.0.24.gem) = c6c820b6d4789f17add9a56671617d78b2e7a2c3627d0994166235b4618d94c2 -SIZE (rubygem/net-ssh-2.0.24.gem) = 130560 +SHA256 (rubygem/net-ssh-2.1.4.gem) = d73091fa095c8df5adc12e5c3fd5bc097ac05780a5c4565f8f86e8859967dc89 +SIZE (rubygem/net-ssh-2.1.4.gem) = 132096 --- rubygem-net-ssh-2.1.4.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon May 2 21:50:58 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EABE81065670; Mon, 2 May 2011 21:50:58 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C3FD28FC20; Mon, 2 May 2011 21:50:58 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p42Lowk2023036; Mon, 2 May 2011 21:50:58 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p42LowTV023025; Mon, 2 May 2011 21:50:58 GMT (envelope-from edwin) Date: Mon, 2 May 2011 21:50:58 GMT Message-Id: <201105022150.p42LowTV023025@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ruby@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156779: [PATCH] security/rubygem-net-ssh: update to 2.1.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 May 2011 21:50:59 -0000 Synopsis: [PATCH] security/rubygem-net-ssh: update to 2.1.4 Responsible-Changed-From-To: freebsd-ports-bugs->ruby Responsible-Changed-By: edwin Responsible-Changed-When: Mon May 2 21:50:58 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156779 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon May 2 21:58:37 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 421671065675; Mon, 2 May 2011 21:58:37 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 19C728FC08; Mon, 2 May 2011 21:58:37 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p42Lwad4025446; Mon, 2 May 2011 21:58:36 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p42Lwabn025442; Mon, 2 May 2011 21:58:36 GMT (envelope-from linimon) Date: Mon, 2 May 2011 21:58:36 GMT Message-Id: <201105022158.p42Lwabn025442@freefall.freebsd.org> To: dan@langille.org, rfarmer@predatorlabs.net, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/156763: [patch] databases/mantis Update to 1.2.5 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 May 2011 21:58:37 -0000 Synopsis: [patch] databases/mantis Update to 1.2.5 State-Changed-From-To: feedback->open State-Changed-By: linimon State-Changed-When: Mon May 2 21:58:22 UTC 2011 State-Changed-Why: Maintainer approved, but still needs testing by committer. http://www.freebsd.org/cgi/query-pr.cgi?pr=156763 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon May 2 22:10:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 156F31065670 for ; Mon, 2 May 2011 22:10:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EC1168FC13 for ; Mon, 2 May 2011 22:10:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p42MA9qj034365 for ; Mon, 2 May 2011 22:10:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p42MA9QJ034364; Mon, 2 May 2011 22:10:09 GMT (envelope-from gnats) Resent-Date: Mon, 2 May 2011 22:10:09 GMT Resent-Message-Id: <201105022210.p42MA9QJ034364@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Renaud Chaput Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3E3A81065670 for ; Mon, 2 May 2011 22:07:51 +0000 (UTC) (envelope-from renchap@tahiri.renchap.com) Received: from tahiri.renchap.com (tahiri.renchap.com [94.23.193.215]) by mx1.freebsd.org (Postfix) with ESMTP id C4F138FC0A for ; Mon, 2 May 2011 22:07:50 +0000 (UTC) Received: by tahiri.renchap.com (Postfix, from userid 1001) id 25979604; Tue, 3 May 2011 00:07:50 +0200 (CEST) Message-Id: <20110502220750.25979604@tahiri.renchap.com> Date: Tue, 3 May 2011 00:07:50 +0200 (CEST) From: Renaud Chaput To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/156780: [NEW PORT] security/rubygem-net-ssh-multi: SSH connection multiplexing X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 May 2011 22:10:10 -0000 >Number: 156780 >Category: ports >Synopsis: [NEW PORT] security/rubygem-net-ssh-multi: SSH connection multiplexing >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 May 02 22:10:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Renaud Chaput >Release: FreeBSD 8.1-RELEASE amd64 >Organization: >Environment: System: FreeBSD tahiri.renchap.com 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Mon Jul 19 02:36:49 UTC 2010 >Description: SSH connection multiplexing: execute commands simultaneously on multiple hosts via SSH WWW: https://github.com/net-ssh/net-ssh-multi Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- rubygem-net-ssh-multi-1.0.1.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: # # rubygem-net-ssh-multi # rubygem-net-ssh-multi/distinfo # rubygem-net-ssh-multi/pkg-descr # rubygem-net-ssh-multi/Makefile # echo c - rubygem-net-ssh-multi mkdir -p rubygem-net-ssh-multi > /dev/null 2>&1 echo x - rubygem-net-ssh-multi/distinfo sed 's/^X//' >rubygem-net-ssh-multi/distinfo << '4bd4e2cef0c6e3306b01f20f82fd5b25' XSHA256 (rubygem/net-ssh-multi-1.0.1.gem) = 1bc1eb793db0499e99a26347168d5a5264e689ceb5ca9ec0992d8699eadc77ad XSIZE (rubygem/net-ssh-multi-1.0.1.gem) = 36864 4bd4e2cef0c6e3306b01f20f82fd5b25 echo x - rubygem-net-ssh-multi/pkg-descr sed 's/^X//' >rubygem-net-ssh-multi/pkg-descr << 'b9f255e94c59e44868be7a1942b42104' XSSH connection multiplexing: execute commands simultaneously on multiple hosts Xvia SSH X XWWW: https://github.com/net-ssh/net-ssh-multi b9f255e94c59e44868be7a1942b42104 echo x - rubygem-net-ssh-multi/Makefile sed 's/^X//' >rubygem-net-ssh-multi/Makefile << '91aac98b97fda9192d99158d021aaf14' X# New ports collection makefile for: rubygem-net-ssh-multi X# Date created: 02 May 2011 X# Whom: Renaud Chaput X# X# $FreeBSD$ X# X XPORTNAME= net-ssh-multi XPORTVERSION= 1.0.1 XCATEGORIES= security rubygems XMASTER_SITES= RG X XMAINTAINER= renchap@cocoa-x.com XCOMMENT= SSH connection multiplexing X XRUN_DEPENDS= rubygem-net-ssh>=1.99.2:${PORTSDIR}/security/rubygem-net-ssh \ X rubygem-net-ssh-gateway>=0.99.0:${PORTSDIR}/security/rubygem-net-ssh-gateway X XUSE_RUBY= yes XUSE_RUBYGEMS= yes XRUBYGEM_AUTOPLIST= yes X X.include 91aac98b97fda9192d99158d021aaf14 exit --- rubygem-net-ssh-multi-1.0.1.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon May 2 22:10:19 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E83CD106564A; Mon, 2 May 2011 22:10:19 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C04438FC08; Mon, 2 May 2011 22:10:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p42MAJF6035060; Mon, 2 May 2011 22:10:19 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p42MAJ7P035055; Mon, 2 May 2011 22:10:19 GMT (envelope-from edwin) Date: Mon, 2 May 2011 22:10:19 GMT Message-Id: <201105022210.p42MAJ7P035055@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ruby@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156780: [NEW PORT] security/rubygem-net-ssh-multi: SSH connection multiplexing X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 May 2011 22:10:20 -0000 Synopsis: [NEW PORT] security/rubygem-net-ssh-multi: SSH connection multiplexing Responsible-Changed-From-To: freebsd-ports-bugs->ruby Responsible-Changed-By: edwin Responsible-Changed-When: Mon May 2 22:10:19 UTC 2011 Responsible-Changed-Why: ruby@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156780 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 00:30:12 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 01CC3106566C for ; Tue, 3 May 2011 00:30:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D114A8FC18 for ; Tue, 3 May 2011 00:30:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p430UBtD060411 for ; Tue, 3 May 2011 00:30:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p430UBon060406; Tue, 3 May 2011 00:30:11 GMT (envelope-from gnats) Resent-Date: Tue, 3 May 2011 00:30:11 GMT Resent-Message-Id: <201105030030.p430UBon060406@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jase Thew Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2A7621065672 for ; Tue, 3 May 2011 00:21:20 +0000 (UTC) (envelope-from freebsd@beardz.net) Received: from beardz.net (beardz.net [IPv6:2a01:4f8:121:2403:1::]) by mx1.freebsd.org (Postfix) with ESMTP id B57138FC16 for ; Tue, 3 May 2011 00:21:19 +0000 (UTC) Received: from beardz.net (localhost [127.0.1.7]) by beardz.net (8.14.4/8.14.4) with ESMTP id p430LHqd019590 for ; Tue, 3 May 2011 01:21:17 +0100 (BST) (envelope-from freebsd@beardz.net) Received: (from root@localhost) by beardz.net (8.14.4/8.14.4/Submit) id p430LHx9019589; Tue, 3 May 2011 01:21:17 +0100 (BST) (envelope-from freebsd@beardz.net) Message-Id: <201105030021.p430LHx9019589@beardz.net> Date: Tue, 3 May 2011 01:21:17 +0100 (BST) From: Jase Thew To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/156782: [MAINTAINER] devel/p5-POE-Test-Loops: update to 1.311 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 00:30:12 -0000 >Number: 156782 >Category: ports >Synopsis: [MAINTAINER] devel/p5-POE-Test-Loops: update to 1.311 >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 May 03 00:30:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Jase Thew >Release: FreeBSD 8.2-STABLE amd64 >Organization: >Environment: System: FreeBSD jail-ports.localdomain 8.2-STABLE FreeBSD 8.2-STABLE #0: Sat Apr 2 19:17:15 BST >Description: - Update to 1.311 - Add licence Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- p5-POE-Test-Loops-1.311.patch begins here --- diff -ruN --exclude=CVS /usr/ports/devel/p5-POE-Test-Loops.orig/Makefile /usr/ports/devel/p5-POE-Test-Loops/Makefile --- /usr/ports/devel/p5-POE-Test-Loops.orig/Makefile 2011-04-19 20:05:19.000000000 +0100 +++ /usr/ports/devel/p5-POE-Test-Loops/Makefile 2011-05-03 01:20:00.084663022 +0100 @@ -6,7 +6,7 @@ # PORTNAME= POE-Test-Loops -PORTVERSION= 1.050 +PORTVERSION= 1.311 CATEGORIES= devel perl5 MASTER_SITES= CPAN/${PORTNAME:C/-.*//}/RCAPUTO PKGNAMEPREFIX= p5- @@ -14,6 +14,9 @@ MAINTAINER= freebsd@beardz.net COMMENT= Reusable tests for POE Loop authors +LICENSE_COMB= dual +LICENSE= ART20 GPLv1 + PERL_CONFIGURE= yes MAN1= poe-gen-tests.1 diff -ruN --exclude=CVS /usr/ports/devel/p5-POE-Test-Loops.orig/distinfo /usr/ports/devel/p5-POE-Test-Loops/distinfo --- /usr/ports/devel/p5-POE-Test-Loops.orig/distinfo 2011-04-19 20:05:19.000000000 +0100 +++ /usr/ports/devel/p5-POE-Test-Loops/distinfo 2011-05-03 01:12:02.673296170 +0100 @@ -1,2 +1,2 @@ -SHA256 (POE-Test-Loops-1.050.tar.gz) = fe0f446b33a89c5c78d9d3dd7b979b86091388d600ea3e90df2ba4a9cc16361a -SIZE (POE-Test-Loops-1.050.tar.gz) = 60674 +SHA256 (POE-Test-Loops-1.311.tar.gz) = f9c23121ea52792828acdca0801b3ae137e94652ec9ae4d974e8d190973b82bf +SIZE (POE-Test-Loops-1.311.tar.gz) = 69574 --- p5-POE-Test-Loops-1.311.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 00:30:23 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EA502106564A; Tue, 3 May 2011 00:30:23 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BFD3B8FC0A; Tue, 3 May 2011 00:30:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p430UNFp061386; Tue, 3 May 2011 00:30:23 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p430UNs5061376; Tue, 3 May 2011 00:30:23 GMT (envelope-from edwin) Date: Tue, 3 May 2011 00:30:23 GMT Message-Id: <201105030030.p430UNs5061376@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156782: [MAINTAINER] devel/p5-POE-Test-Loops: update to 1.311 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 00:30:24 -0000 Synopsis: [MAINTAINER] devel/p5-POE-Test-Loops: update to 1.311 Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Tue May 3 00:30:22 UTC 2011 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156782 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 00:40:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1EC831065688 for ; Tue, 3 May 2011 00:40:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id F069A8FC14 for ; Tue, 3 May 2011 00:40:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p430eA4J070900 for ; Tue, 3 May 2011 00:40:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p430eA7m070899; Tue, 3 May 2011 00:40:10 GMT (envelope-from gnats) Resent-Date: Tue, 3 May 2011 00:40:10 GMT Resent-Message-Id: <201105030040.p430eA7m070899@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jase Thew Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CAC0F106566B; Tue, 3 May 2011 00:34:10 +0000 (UTC) (envelope-from freebsd@beardz.net) Received: from beardz.net (beardz.net [IPv6:2a01:4f8:121:2403:1::]) by mx1.freebsd.org (Postfix) with ESMTP id 482548FC16; Tue, 3 May 2011 00:34:10 +0000 (UTC) Received: from beardz.net (localhost [127.0.1.7]) by beardz.net (8.14.4/8.14.4) with ESMTP id p430Y9uP022533; Tue, 3 May 2011 01:34:09 +0100 (BST) (envelope-from freebsd@beardz.net) Received: (from root@localhost) by beardz.net (8.14.4/8.14.4/Submit) id p430Y9xA022532; Tue, 3 May 2011 01:34:09 +0100 (BST) (envelope-from freebsd@beardz.net) Message-Id: <201105030034.p430Y9xA022532@beardz.net> Date: Tue, 3 May 2011 01:34:09 +0100 (BST) From: Jase Thew To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: perl@FreeBSD.org Subject: ports/156783: [PATCH] devel/p5-POE: update to 1.311 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 00:40:11 -0000 >Number: 156783 >Category: ports >Synopsis: [PATCH] devel/p5-POE: update to 1.311 >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 May 03 00:40:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Jase Thew >Release: FreeBSD 8.2-STABLE amd64 >Organization: >Environment: System: FreeBSD jail-ports.localdomain 8.2-STABLE FreeBSD 8.2-STABLE #0: Sat Apr 2 19:17:15 BST >Description: - Update to 1.311 Please note, this PR has a dependancy on update PR ports/156782 Port maintainer (perl@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- p5-POE-1.311.patch begins here --- diff -ruN --exclude=CVS /usr/ports/devel/p5-POE.orig/Makefile /usr/ports/devel/p5-POE/Makefile --- /usr/ports/devel/p5-POE.orig/Makefile 2011-04-23 07:44:52.000000000 +0100 +++ /usr/ports/devel/p5-POE/Makefile 2011-05-03 01:17:20.789762592 +0100 @@ -6,7 +6,7 @@ # PORTNAME= POE -PORTVERSION= 1.310 +PORTVERSION= 1.311 CATEGORIES= devel perl5 MASTER_SITES= CPAN/${PORTNAME}/RCAPUTO PKGNAMEPREFIX= p5- @@ -18,8 +18,8 @@ LICENSE= ART20 GPLv1 BUILD_DEPENDS= p5-IO-Tty>=1.08:${PORTSDIR}/devel/p5-IO-Tty \ - p5-POE-Test-Loops>=1.050:${PORTSDIR}/devel/p5-POE-Test-Loops -RUN_DEPENDS= ${BUILD_DEPENDS} + p5-POE-Test-Loops>=1.311:${PORTSDIR}/devel/p5-POE-Test-Loops +RUN_DEPENDS:= ${BUILD_DEPENDS} PERL_CONFIGURE= yes CONFIGURE_ARGS= --default @@ -52,7 +52,6 @@ RUN_DEPENDS+= p5-IO>=1.24:${PORTSDIR}/devel/p5-IO .endif - post-install: .ifndef(NOPORTEXAMPLES) @${ECHO_MSG} "===> Installing examples for ${PKGNAME}" diff -ruN --exclude=CVS /usr/ports/devel/p5-POE.orig/distinfo /usr/ports/devel/p5-POE/distinfo --- /usr/ports/devel/p5-POE.orig/distinfo 2011-04-22 16:32:23.000000000 +0100 +++ /usr/ports/devel/p5-POE/distinfo 2011-05-03 01:11:56.013984560 +0100 @@ -1,2 +1,2 @@ -SHA256 (POE-1.310.tar.gz) = 49ebc387668a7f888b692113d6065996d777d441c0ff70ddbdcb3be90dbda6fd -SIZE (POE-1.310.tar.gz) = 363810 +SHA256 (POE-1.311.tar.gz) = 0fa4fa5ec3e020ba005669850ff649d5589eb0b034926aab5de2cef61aac916f +SIZE (POE-1.311.tar.gz) = 366183 --- p5-POE-1.311.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 00:40:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 87E6E1065691 for ; Tue, 3 May 2011 00:40:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 628698FC17 for ; Tue, 3 May 2011 00:40:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p430eBPq070952 for ; Tue, 3 May 2011 00:40:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p430eBH4070951; Tue, 3 May 2011 00:40:11 GMT (envelope-from gnats) Resent-Date: Tue, 3 May 2011 00:40:11 GMT Resent-Message-Id: <201105030040.p430eBH4070951@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sevan Janiyan Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 05D8B106566C for ; Tue, 3 May 2011 00:34:23 +0000 (UTC) (envelope-from sevan@moner.lab.venture37.net) Received: from moner.lab.venture37.net (moner.lab.venture37.net [91.103.132.220]) by mx1.freebsd.org (Postfix) with ESMTP id B4B6E8FC13 for ; Tue, 3 May 2011 00:34:22 +0000 (UTC) Received: from moner.lab.venture37.net (moner.lab.venture37.net [91.103.132.220]) by moner.lab.venture37.net (8.14.4/8.14.4) with ESMTP id p430LM8o014293 for ; Tue, 3 May 2011 00:21:22 GMT (envelope-from sevan@moner.lab.venture37.net) Received: (from sevan@localhost) by moner.lab.venture37.net (8.14.4/8.14.4/Submit) id p430LMHu014292; Tue, 3 May 2011 00:21:22 GMT (envelope-from sevan) Message-Id: <201105030021.p430LMHu014292@moner.lab.venture37.net> Date: Tue, 3 May 2011 00:21:22 GMT From: Sevan Janiyan To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/156784: [MAINTAINER] databases/iplike: update to 2.0.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 00:40:11 -0000 >Number: 156784 >Category: ports >Synopsis: [MAINTAINER] databases/iplike: update to 2.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: Tue May 03 00:40:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Sevan Janiyan >Release: FreeBSD 8.2-RELEASE amd64 >Organization: Venture 37 Ltd >Environment: System: FreeBSD opennmsdev.somedomain.local 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Thu Feb 17 02:41:51 UTC 2011 >Description: - Update to 2.0.0 Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- iplike-2.0.0.patch begins here --- diff -ruN --exclude=CVS /usr/ports/databases/iplike.orig/Makefile /usr/ports/databases/iplike/Makefile --- /usr/ports/databases/iplike.orig/Makefile 2011-04-29 15:10:42.457896173 +0000 +++ /usr/ports/databases/iplike/Makefile 2011-04-29 15:11:31.297920255 +0000 @@ -6,9 +6,9 @@ # PORTNAME= iplike -PORTVERSION= 1.0.9 +PORTVERSION= 2.0.0 CATEGORIES= databases -MASTER_SITES= SF/opennms/IPLIKE/stable-1.0/ +MASTER_SITES= SF/opennms/IPLIKE/stable-2.0/ MAINTAINER= venture37@geeklan.co.uk COMMENT= C implementation of the OpenNMS iplike stored procedure diff -ruN --exclude=CVS /usr/ports/databases/iplike.orig/distinfo /usr/ports/databases/iplike/distinfo --- /usr/ports/databases/iplike.orig/distinfo 2011-04-29 15:10:42.457896173 +0000 +++ /usr/ports/databases/iplike/distinfo 2011-04-29 15:11:40.868926626 +0000 @@ -1,2 +1,2 @@ -SHA256 (iplike-1.0.9.tar.gz) = f4fbf5a359feebf266307d78df53c8a8f8cc8304d0a0a48ef554cc878723012c -SIZE (iplike-1.0.9.tar.gz) = 316603 +SHA256 (iplike-2.0.0.tar.gz) = 534491be2c34de1627088afcb3c01d09d709cdabb73c106f0212d7dce9899d9b +SIZE (iplike-2.0.0.tar.gz) = 328904 --- iplike-2.0.0.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 00:40:12 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0FC851065697 for ; Tue, 3 May 2011 00:40:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DE8DF8FC19 for ; Tue, 3 May 2011 00:40:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p430eBbu070967 for ; Tue, 3 May 2011 00:40:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p430eBu2070965; Tue, 3 May 2011 00:40:11 GMT (envelope-from gnats) Resent-Date: Tue, 3 May 2011 00:40:11 GMT Resent-Message-Id: <201105030040.p430eBu2070965@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sevan Janiyan Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 03F0C1065670 for ; Tue, 3 May 2011 00:34:24 +0000 (UTC) (envelope-from sevan@moner.lab.venture37.net) Received: from moner.lab.venture37.net (moner.lab.venture37.net [91.103.132.220]) by mx1.freebsd.org (Postfix) with ESMTP id 895058FC14 for ; Tue, 3 May 2011 00:34:23 +0000 (UTC) Received: from moner.lab.venture37.net (moner.lab.venture37.net [91.103.132.220]) by moner.lab.venture37.net (8.14.4/8.14.4) with ESMTP id p430PbrV015283; Tue, 3 May 2011 00:25:37 GMT (envelope-from sevan@moner.lab.venture37.net) Received: (from sevan@localhost) by moner.lab.venture37.net (8.14.4/8.14.4/Submit) id p430Pbwg015282; Tue, 3 May 2011 00:25:37 GMT (envelope-from sevan) Message-Id: <201105030025.p430Pbwg015282@moner.lab.venture37.net> Date: Tue, 3 May 2011 00:25:37 GMT From: Sevan Janiyan To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: rtdean@cytherianage.net Subject: ports/156785: [PATCH] net/jicmp: update to 1.0.12 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 00:40:12 -0000 >Number: 156785 >Category: ports >Synopsis: [PATCH] net/jicmp: update to 1.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: Tue May 03 00:40:11 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Sevan Janiyan >Release: FreeBSD 8.2-RELEASE amd64 >Organization: Venture 37 Ltd >Environment: System: FreeBSD opennmsdev.somedomain.local 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Thu Feb 17 02:41:51 UTC 2011 >Description: - Update to 1.0.12 - Bump JAVA_VERISON & Switch to using openjdk to bring this into line with other components utilising openjdk including port for OpenNMS which is not in the tree yet. Port maintainer (rtdean@cytherianage.net) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- jicmp-1.0.12.patch begins here --- diff -ruN --exclude=CVS /usr/ports/net/jicmp.orig/Makefile /usr/ports/net/jicmp/Makefile --- /usr/ports/net/jicmp.orig/Makefile 2011-04-27 10:34:14.299027946 +0000 +++ /usr/ports/net/jicmp/Makefile 2011-04-29 15:03:14.688674387 +0000 @@ -6,7 +6,7 @@ # PORTNAME= jicmp -PORTVERSION= 1.0.11 +PORTVERSION= 1.0.12 CATEGORIES= net java MASTER_SITES= SF/opennms/JICMP/stable-1.0/ @@ -14,7 +14,8 @@ COMMENT= A Java native interface (JNI) to ICMP (ping) USE_JAVA= yes -JAVA_VERSION= 1.5+ +JAVA_VERSION= 1.6 +JAVA_VENDOR= openjdk JAVA_BUILD= yes JAVA_RUN= yes GNU_CONFIGURE= yes diff -ruN --exclude=CVS /usr/ports/net/jicmp.orig/distinfo /usr/ports/net/jicmp/distinfo --- /usr/ports/net/jicmp.orig/distinfo 2011-04-27 10:34:14.299027946 +0000 +++ /usr/ports/net/jicmp/distinfo 2011-04-29 15:03:31.847682864 +0000 @@ -1,2 +1,2 @@ -SHA256 (jicmp-1.0.11.tar.gz) = 248ebfab4426255ad298b389f31d09d209b3cae89d620d8ed797ec51a043fe17 -SIZE (jicmp-1.0.11.tar.gz) = 355674 +SHA256 (jicmp-1.0.12.tar.gz) = 39c6d4c1f1f405e562c5b172e97c59bfe86d02f6cb8c7e812a643f873ec46afa +SIZE (jicmp-1.0.12.tar.gz) = 357192 --- jicmp-1.0.12.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 00:40:12 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5FAAC1065673 for ; Tue, 3 May 2011 00:40:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3ACEC8FC1A for ; Tue, 3 May 2011 00:40:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p430eCGh070985 for ; Tue, 3 May 2011 00:40:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p430eC32070984; Tue, 3 May 2011 00:40:12 GMT (envelope-from gnats) Resent-Date: Tue, 3 May 2011 00:40:12 GMT Resent-Message-Id: <201105030040.p430eC32070984@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sevan Janiyan Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 01EF61065673 for ; Tue, 3 May 2011 00:34:25 +0000 (UTC) (envelope-from sevan@moner.lab.venture37.net) Received: from moner.lab.venture37.net (moner.lab.venture37.net [91.103.132.220]) by mx1.freebsd.org (Postfix) with ESMTP id 877428FC0C for ; Tue, 3 May 2011 00:34:24 +0000 (UTC) Received: from moner.lab.venture37.net (moner.lab.venture37.net [91.103.132.220]) by moner.lab.venture37.net (8.14.4/8.14.4) with ESMTP id p430K7LY013920; Tue, 3 May 2011 00:20:07 GMT (envelope-from sevan@moner.lab.venture37.net) Received: (from sevan@localhost) by moner.lab.venture37.net (8.14.4/8.14.4/Submit) id p430K6xZ013918; Tue, 3 May 2011 00:20:06 GMT (envelope-from sevan) Message-Id: <201105030020.p430K6xZ013918@moner.lab.venture37.net> Date: Tue, 3 May 2011 00:20:06 GMT From: Sevan Janiyan To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: rtdean@cytherianage.net Subject: ports/156786: [PATCH] databases/jrrd: update to 1.0.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 00:40:12 -0000 >Number: 156786 >Category: ports >Synopsis: [PATCH] databases/jrrd: update to 1.0.4 >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 May 03 00:40:11 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Sevan Janiyan >Release: FreeBSD 8.2-RELEASE amd64 >Organization: Venture 37 Ltd >Environment: System: FreeBSD opennmsdev.somedomain.local 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Thu Feb 17 02:41:51 UTC 2011 >Description: - Update to 1.0.4 - Bump JAVA_VERISON & Switch to using openjdk to bring this into line with other components utilising openjdk including port for OpenNMS which is not in the tree yet. Port maintainer (rtdean@cytherianage.net) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- jrrd-1.0.4.patch begins here --- diff -ruN --exclude=CVS /usr/ports/databases/jrrd.orig/Makefile /usr/ports/databases/jrrd/Makefile --- /usr/ports/databases/jrrd.orig/Makefile 2011-04-29 15:07:47.190809155 +0000 +++ /usr/ports/databases/jrrd/Makefile 2011-04-29 15:09:42.844866584 +0000 @@ -6,8 +6,7 @@ # PORTNAME= jrrd -PORTVERSION= 1.0.3 -PORTREVISION= 1 +PORTVERSION= 1.0.4 CATEGORIES= databases java MASTER_SITES= SF/opennms/JRRD/stable-1.0 @@ -17,7 +16,8 @@ LIB_DEPENDS= rrd:${PORTSDIR}/databases/rrdtool USE_JAVA= yes -JAVA_VERSION= 1.5+ +JAVA_VERSION= 1.6 +JAVA_VENDOR= openjdk JAVA_BUILD= yes JAVA_RUN= yes GNU_CONFIGURE= yes diff -ruN --exclude=CVS /usr/ports/databases/jrrd.orig/distinfo /usr/ports/databases/jrrd/distinfo --- /usr/ports/databases/jrrd.orig/distinfo 2011-04-27 10:39:45.878190381 +0000 +++ /usr/ports/databases/jrrd/distinfo 2011-04-29 15:08:08.822820207 +0000 @@ -1,2 +1,2 @@ -SHA256 (jrrd-1.0.3.tar.gz) = 860dea8acdb271a40e51c30bf529a8567cc46e877d6f0e3c602b98aab9e192fa -SIZE (jrrd-1.0.3.tar.gz) = 327745 +SHA256 (jrrd-1.0.4.tar.gz) = bf0b03cd5763364de83ece9cb14612ab3273e9cdc5399017561a0b90dc9a735d +SIZE (jrrd-1.0.4.tar.gz) = 329556 --- jrrd-1.0.4.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 00:40:20 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A6A97106566C; Tue, 3 May 2011 00:40:20 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7C6A28FC0C; Tue, 3 May 2011 00:40:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p430eKH6071620; Tue, 3 May 2011 00:40:20 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p430eKPf071616; Tue, 3 May 2011 00:40:20 GMT (envelope-from edwin) Date: Tue, 3 May 2011 00:40:20 GMT Message-Id: <201105030040.p430eKPf071616@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156783: [PATCH] devel/p5-POE: update to 1.311 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 00:40:20 -0000 Synopsis: [PATCH] devel/p5-POE: update to 1.311 Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Tue May 3 00:40:20 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156783 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 00:40:31 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9687A1065678; Tue, 3 May 2011 00:40:31 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6BE478FC1E; Tue, 3 May 2011 00:40:31 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p430eVTG073230; Tue, 3 May 2011 00:40:31 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p430eVk0073221; Tue, 3 May 2011 00:40:31 GMT (envelope-from edwin) Date: Tue, 3 May 2011 00:40:31 GMT Message-Id: <201105030040.p430eVk0073221@freefall.freebsd.org> To: venture37@geeklan.co.uk, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156785: [PATCH] net/jicmp: update to 1.0.12 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 00:40:31 -0000 Synopsis: [PATCH] net/jicmp: update to 1.0.12 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Tue May 3 00:40:30 UTC 2011 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156785 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 00:40:41 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 383001065673; Tue, 3 May 2011 00:40:41 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0DBA38FC14; Tue, 3 May 2011 00:40:41 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p430ee0t074638; Tue, 3 May 2011 00:40:40 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p430eemi074628; Tue, 3 May 2011 00:40:40 GMT (envelope-from edwin) Date: Tue, 3 May 2011 00:40:40 GMT Message-Id: <201105030040.p430eemi074628@freefall.freebsd.org> To: venture37@geeklan.co.uk, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156786: [PATCH] databases/jrrd: update to 1.0.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 00:40:41 -0000 Synopsis: [PATCH] databases/jrrd: update to 1.0.4 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Tue May 3 00:40:40 UTC 2011 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156786 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 00:50:08 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 33C101065676 for ; Tue, 3 May 2011 00:50:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1A4BB8FC17 for ; Tue, 3 May 2011 00:50:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p430o7Mb080057 for ; Tue, 3 May 2011 00:50:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p430o7ij080056; Tue, 3 May 2011 00:50:07 GMT (envelope-from gnats) Date: Tue, 3 May 2011 00:50:07 GMT Message-Id: <201105030050.p430o7ij080056@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/156785: [PATCH] net/jicmp: update to 1.0.12 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 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, 03 May 2011 00:50:08 -0000 The following reply was made to PR ports/156785; it has been noted by GNATS. From: Edwin Groothuis To: rtdean@cytherianage.net Cc: bug-followup@FreeBSD.org Subject: Re: ports/156785: [PATCH] net/jicmp: update to 1.0.12 Date: Tue, 3 May 2011 00:40:29 UT Maintainer of net/jicmp, Please note that PR ports/156785 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/156785 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 00:50:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0087C106564A for ; Tue, 3 May 2011 00:50:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DE0EE8FC18 for ; Tue, 3 May 2011 00:50:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p430o9AB080068 for ; Tue, 3 May 2011 00:50:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p430o99W080067; Tue, 3 May 2011 00:50:09 GMT (envelope-from gnats) Date: Tue, 3 May 2011 00:50:09 GMT Message-Id: <201105030050.p430o99W080067@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/156786: [PATCH] databases/jrrd: update to 1.0.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 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, 03 May 2011 00:50:10 -0000 The following reply was made to PR ports/156786; it has been noted by GNATS. From: Edwin Groothuis To: rtdean@cytherianage.net Cc: bug-followup@FreeBSD.org Subject: Re: ports/156786: [PATCH] databases/jrrd: update to 1.0.4 Date: Tue, 3 May 2011 00:40:38 UT Maintainer of databases/jrrd, Please note that PR ports/156786 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/156786 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 01:00:22 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 55248106566B for ; Tue, 3 May 2011 01:00:22 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 055998FC1B for ; Tue, 3 May 2011 01:00:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p4310Lr5088184 for ; Tue, 3 May 2011 01:00:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p4310LCL088183; Tue, 3 May 2011 01:00:21 GMT (envelope-from gnats) Resent-Date: Tue, 3 May 2011 01:00:21 GMT Resent-Message-Id: <201105030100.p4310LCL088183@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Dan Mahoney Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4EC841065678 for ; Tue, 3 May 2011 00:54:25 +0000 (UTC) (envelope-from dmahoney@isc.org) Received: from mx.ams1.isc.org (mx.ams1.isc.org [IPv6:2001:500:60::65]) by mx1.freebsd.org (Postfix) with ESMTP id DAF078FC12 for ; Tue, 3 May 2011 00:54:24 +0000 (UTC) Received: from bikeshed.isc.org (bikeshed.isc.org [IPv6:2001:4f8:3:d::19]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client CN "bikeshed.isc.org", Issuer "ISC CA" (verified OK)) by mx.ams1.isc.org (Postfix) with ESMTPS id D45775F984C for ; Tue, 3 May 2011 00:54:09 +0000 (UTC) (envelope-from dmahoney@isc.org) Received: by bikeshed.isc.org (Postfix, from userid 10302) id 17942216C40; Tue, 3 May 2011 00:54:08 +0000 (UTC) Message-Id: <20110503005408.17942216C40@bikeshed.isc.org> Date: Tue, 3 May 2011 00:54:08 +0000 (UTC) From: Dan Mahoney To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/156787: mod_auth_kerb2 fails on undefined symbol with base kerberos X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Dan Mahoney List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 01:00:22 -0000 >Number: 156787 >Category: ports >Synopsis: mod_auth_kerb2 fails on undefined symbol with base kerberos >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: Tue May 03 01:00:21 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Dan Mahoney >Release: FreeBSD 8.1-RELEASE amd64 >Organization: ISC >Environment: System: FreeBSD bikeshed.isc.org 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Mon Jul 19 02:36:49 UTC 2010 root@mason.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: When building the mod_auth_kerb2 port, and attempting to use it, one gets the following error: httpd: Syntax error on line 106 of /usr/local/etc/apache22/httpd.conf: Cannot load /usr/local/libexec/apache22/mod_auth_kerb.so into server: /usr/local/libexec/apache22/mod_auth_kerb.so: Undefined symbol "gsskrb5_register_acceptor_identity" The error does NOT occur if you install /usr/ports/security/krb5 and setenv KRB5_HOME /usr/local Note that this failure is at runtime, not at build or link-time. >How-To-Repeat: cd /usr/ports/www/mod_auth_kerb2 make install apachectl restart >Fix: I've listed a workaround, but this really should work with the base OS, without having to drop a number of foreign kerberos binaries into /usr/local/* >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 04:50:09 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EDA50106566C for ; Tue, 3 May 2011 04:50:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id ABC098FC16 for ; Tue, 3 May 2011 04:50:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p434o9wJ099731 for ; Tue, 3 May 2011 04:50:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p434o9IZ099730; Tue, 3 May 2011 04:50:09 GMT (envelope-from gnats) Resent-Date: Tue, 3 May 2011 04:50:09 GMT Resent-Message-Id: <201105030450.p434o9IZ099730@freefall.freebsd.org> 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 Luckie Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7EBD6106566B for ; Tue, 3 May 2011 04:41:41 +0000 (UTC) (envelope-from mjl@luckie.org.nz) Received: from mailfilter8.ihug.co.nz (mailfilter8.ihug.co.nz [203.109.136.8]) by mx1.freebsd.org (Postfix) with ESMTP id 25F648FC16 for ; Tue, 3 May 2011 04:41:40 +0000 (UTC) Received: from 118-93-246-254.dsl.dyn.ihug.co.nz (HELO spandex.luckie.org.nz) ([118.93.246.254]) by cust.filter8.content.vf.net.nz with ESMTP/TLS/DHE-RSA-AES256-SHA; 03 May 2011 16:41:38 +1200 Received: from mjl by spandex.luckie.org.nz with local (Exim 4.75 (FreeBSD)) (envelope-from ) id 1QH7QY-000JmN-Gu for FreeBSD-gnats-submit@freebsd.org; Tue, 03 May 2011 16:41:38 +1200 Message-Id: Date: Tue, 03 May 2011 16:41:38 +1200 From: Matthew Luckie To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/156788: [patch] update net/scamper to 20110503 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Matthew Luckie List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 04:50:10 -0000 >Number: 156788 >Category: ports >Synopsis: [patch] update net/scamper to 20110503 >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 May 03 04:50:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Matthew Luckie >Release: FreeBSD 8.2-RELEASE i386 >Organization: >Environment: System: FreeBSD spandex.luckie.org.nz 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Fri Feb 25 13:44:21 NZDT 2011 root@spandex.luckie.org.nz:/usr/obj/usr/src/sys/spandex i386 >Description: Update scamper to 20110503. The main change in this release are bug fixes and enhancements to sc_tracediff. >How-To-Repeat: N/A >Fix: --- patch-scamper-20110503 begins here --- diff -uNr scamper/Makefile scamper-new/Makefile --- scamper/Makefile 2011-04-22 01:28:49.000000000 +1200 +++ scamper-new/Makefile 2011-05-03 16:34:09.000000000 +1200 @@ -6,7 +6,7 @@ # PORTNAME= scamper -PORTVERSION= 20110421 +PORTVERSION= 20110503 CATEGORIES= net ipv6 MASTER_SITES= http://www.wand.net.nz/scamper/ DISTNAME= ${PORTNAME}-cvs-${PORTVERSION} diff -uNr scamper/distinfo scamper-new/distinfo --- scamper/distinfo 2011-04-22 01:28:49.000000000 +1200 +++ scamper-new/distinfo 2011-05-03 16:34:26.000000000 +1200 @@ -1,2 +1,2 @@ -SHA256 (scamper-cvs-20110421.tar.gz) = 0a3ada8bbbcaad06933163030c5efbf5994064a824d5b2c0e4dc25ba2a91161f -SIZE (scamper-cvs-20110421.tar.gz) = 1086507 +SHA256 (scamper-cvs-20110503.tar.gz) = 4cb29ed159d3c214b73a2957325a432bdd2ab03e86eedb2383e0b1827a76c792 +SIZE (scamper-cvs-20110503.tar.gz) = 1087267 --- patch-scamper-20110503 ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 05:20:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 476DA106564A for ; Tue, 3 May 2011 05:20:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2869B8FC0C for ; Tue, 3 May 2011 05:20:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p435KAPw031848 for ; Tue, 3 May 2011 05:20:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p435K9mk031847; Tue, 3 May 2011 05:20:10 GMT (envelope-from gnats) Resent-Date: Tue, 3 May 2011 05:20:10 GMT Resent-Message-Id: <201105030520.p435K9mk031847@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Renaud Chaput Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8B5B3106564A for ; Tue, 3 May 2011 05:13:11 +0000 (UTC) (envelope-from renchap@tahiri.renchap.com) Received: from tahiri.renchap.com (tahiri.renchap.com [94.23.193.215]) by mx1.freebsd.org (Postfix) with ESMTP id 5449D8FC16 for ; Tue, 3 May 2011 05:13:11 +0000 (UTC) Received: by tahiri.renchap.com (Postfix, from userid 1001) id E4B0C69B; Tue, 3 May 2011 07:13:09 +0200 (CEST) Message-Id: <20110503051309.E4B0C69B@tahiri.renchap.com> Date: Tue, 3 May 2011 07:13:09 +0200 (CEST) From: Renaud Chaput To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/156789: [MAINTAINER] sysutils/rubygem-chef: update to 0.10.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 05:20:10 -0000 >Number: 156789 >Category: ports >Synopsis: [MAINTAINER] sysutils/rubygem-chef: update to 0.10.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue May 03 05:20:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Renaud Chaput >Release: FreeBSD 8.1-RELEASE amd64 >Organization: >Environment: System: FreeBSD tahiri.renchap.com 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Mon Jul 19 02:36:49 UTC 2010 >Description: - Update to 0.10.0 Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- rubygem-chef-0.10.0.patch begins here --- diff -ruN --exclude=CVS /usr/ports/sysutils/rubygem-chef/Makefile /usr/home/renchap/ports/sysutils/rubygem-chef/Makefile --- /usr/ports/sysutils/rubygem-chef/Makefile 2011-03-05 20:55:24.300447078 +0100 +++ /usr/home/renchap/ports/sysutils/rubygem-chef/Makefile 2011-05-03 07:12:35.316554150 +0200 @@ -6,28 +6,29 @@ # PORTNAME= chef -PORTVERSION= 0.9.12 -PORTREVISION= 1 +PORTVERSION= 0.10.0 CATEGORIES= sysutils MASTER_SITES= RG MAINTAINER= renchap@cocoa-x.com COMMENT= A systems integration framework. Client part -BUILD_DEPENDS= rubygem-mixlib-log>=1.1.0:${PORTSDIR}/devel/rubygem-mixlib-log \ +RUN_DEPENDS= ruby18-iconv>=0.0.0:${PORTSDIR}/converters/ruby-iconv \ + rubygem-mixlib-log>=1.3.0:${PORTSDIR}/devel/rubygem-mixlib-log \ rubygem-mixlib-config>=1.1.2:${PORTSDIR}/devel/rubygem-mixlib-config \ rubygem-mixlib-cli>=1.1.0:${PORTSDIR}/devel/rubygem-mixlib-cli \ rubygem-mixlib-authentication>=1.1.2:${PORTSDIR}/devel/rubygem-mixlib-authentication \ - rubygem-extlib>=0.9.14:${PORTSDIR}/devel/rubygem-extlib \ - rubygem-json>=1.4.4:${PORTSDIR}/devel/rubygem-json \ + rubygem-json=1.5.2:${PORTSDIR}/devel/rubygem-json \ rubygem-uuidtools>=0.0.0:${PORTSDIR}/devel/rubygem-uuidtools \ rubygem-highline>=0.0.0:${PORTSDIR}/devel/rubygem-highline \ rubygem-moneta>=0.6.0:${PORTSDIR}/devel/rubygem-moneta \ rubygem-erubis>=0.0.0:${PORTSDIR}/www/rubygem-erubis \ rubygem-rest-client>=1.0.4:${PORTSDIR}/www/rubygem-rest-client \ rubygem-bunny>=0.6.0:${PORTSDIR}/net/rubygem-bunny \ - rubygem-ohai>=0.5.7:${PORTSDIR}/sysutils/rubygem-ohai -RUN_DEPENDS= ${BUILD_DEPENDS} + rubygem-ohai>=0.6.4:${PORTSDIR}/sysutils/rubygem-ohai \ + rubygem-net-ssh>=2.1.3:${PORTSDIR}/security/rubygem-net-ssh \ + rubygem-net-ssh-multi>=1.0.1:${PORTSDIR}/security/rubygem-net-ssh-multi \ + rubygem-treetop>=1.4.9:${PORTSDIR}/devel/rubygem-treetop USE_RUBY= yes USE_RUBYGEMS= yes diff -ruN --exclude=CVS /usr/ports/sysutils/rubygem-chef/distinfo /usr/home/renchap/ports/sysutils/rubygem-chef/distinfo --- /usr/ports/sysutils/rubygem-chef/distinfo 2011-01-18 13:00:11.000000000 +0100 +++ /usr/home/renchap/ports/sysutils/rubygem-chef/distinfo 2011-05-02 23:46:18.191661688 +0200 @@ -1,2 +1,2 @@ -SHA256 (rubygem/chef-0.9.12.gem) = a021e015e37c7edc8589b9a17184d675fb5b4784a65bc5532831b8faa3ad4b68 -SIZE (rubygem/chef-0.9.12.gem) = 254464 +SHA256 (rubygem/chef-0.10.0.gem) = 9ddc9165c9926730343a5f8b4077735c69b354f3bcfad834012c8e7edfb79432 +SIZE (rubygem/chef-0.10.0.gem) = 347136 --- rubygem-chef-0.10.0.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 05:20:21 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 124BC106564A; Tue, 3 May 2011 05:20:21 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DD2FC8FC0A; Tue, 3 May 2011 05:20:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p435KK2K032655; Tue, 3 May 2011 05:20:20 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p435KKGB032642; Tue, 3 May 2011 05:20:20 GMT (envelope-from edwin) Date: Tue, 3 May 2011 05:20:20 GMT Message-Id: <201105030520.p435KKGB032642@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ruby@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156789: [MAINTAINER] sysutils/rubygem-chef: update to 0.10.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 05:20:21 -0000 Synopsis: [MAINTAINER] sysutils/rubygem-chef: update to 0.10.0 Responsible-Changed-From-To: freebsd-ports-bugs->ruby Responsible-Changed-By: edwin Responsible-Changed-When: Tue May 3 05:20:20 UTC 2011 Responsible-Changed-Why: ruby@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156789 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 06:10:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D4CD21065670 for ; Tue, 3 May 2011 06:10:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id AD1998FC17 for ; Tue, 3 May 2011 06:10:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p436ABVg075471 for ; Tue, 3 May 2011 06:10:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p436ABgk075470; Tue, 3 May 2011 06:10:11 GMT (envelope-from gnats) Resent-Date: Tue, 3 May 2011 06:10:11 GMT Resent-Message-Id: <201105030610.p436ABgk075470@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jack Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AED491065674 for ; Tue, 3 May 2011 06:05:10 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 9D88A8FC08 for ; Tue, 3 May 2011 06:05:10 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p4365AjA074179 for ; Tue, 3 May 2011 06:05:10 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p4365AOL074172; Tue, 3 May 2011 06:05:10 GMT (envelope-from nobody) Message-Id: <201105030605.p4365AOL074172@red.freebsd.org> Date: Tue, 3 May 2011 06:05:10 GMT From: Jack To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156790: Update audacity-devel from 1.3.12 to 1.3.13 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 06:10:12 -0000 >Number: 156790 >Category: ports >Synopsis: Update audacity-devel from 1.3.12 to 1.3.13 >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: Tue May 03 06:10:11 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Jack >Release: 8.2-STABLE >Organization: PRDHost >Environment: FreeBSD jack.musirc.com 8.2-STABLE FreeBSD 8.2-STABLE #1 r220017: Fri Mar 25 20:17:10 PDT 2011 jack@jack.musirc.com:/usr/obj/usr/src/sys/JACK amd64 >Description: Patch attached to upgrade audacity-devel from 1.3.12 to 1.3.13 >How-To-Repeat: Patch attached to upgrade audacity-devel from 1.3.12 to 1.3.13 >Fix: Patch attached to upgrade audacity-devel from 1.3.12 to 1.3.13 Patch attached with submission follows: diff -urN audacity-devel/Makefile audacity-new/Makefile --- audacity-devel/Makefile 2010-12-03 23:30:20.000000000 -0800 +++ audacity-new/Makefile 2011-05-02 23:05:14.000000000 -0700 @@ -5,8 +5,7 @@ # $FreeBSD: ports/audio/audacity-devel/Makefile,v 1.51 2010/12/04 07:30:20 ade Exp $ PORTNAME= audacity -PORTVERSION= 1.3.12 -PORTREVISION= 4 +PORTVERSION= 1.3.13 CATEGORIES= audio MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} \ SF/${PORTNAME}/${PORTNAME}-unstable/${PORTVERSION} @@ -25,33 +24,33 @@ USE_AUTOTOOLS= aclocal autoconf GNU_CONFIGURE= yes USE_GMAKE= yes -USE_GCC= 4.2+ +USE_GCC= 4.6+ USE_GETTEXT= yes USE_BZIP2= yes -USE_WX= 2.8 +USE_WX= 2.8+ WX_COMPS= wx MAKE_JOBS_SAFE= yes PORTDOCS= README.txt LICENSE.txt MAN1= audacity.1 MANCOMPRESSED= yes -OPTIONS= DEBUG "enable debug support" off \ +OPTIONS= DEBUG "Debug support" off \ FFMPEG "Use ffmpeg for import and export support" on \ FLAC "Use libFLAC for FLAC support" on \ ID3TAG "Use libid3tag for mp3 id3 tag support" on \ - LADSPA "enable LADSPA plug-in support" on \ + LADSPA "LADSPA plug-in support" on \ MAD "Use libmad for mp2/3 decoding support" on \ MIDI "Use portSMF for Midi support" on \ - NYQUIST "enable Nyquist plug-in support" on \ - PORTMIXER "compile with PortMixer" on \ + NYQUIST "Nyquist plug-in support" on \ + PORTMIXER "Compile with PortMixer" on \ SAMPLERATE "Use libresample for sample rate conversion" on \ SBSMS "Use libsbsms for pitch and tempo changing" on \ SOUNDTOUCH "Use libSoundTouch for pitch and tempo changing" on\ - TAGLIB "use TagLib for metadata support" on \ + TAGLIB "Use TagLib for metadata support" on \ TWOLAME "Use libtwolame for MP2 export support" on \ - UNICODE "enable unicode support" on \ + UNICODE "Unicode support" on \ VORBIS "Use libvorbis for Ogg Vorbis support" on \ - VAMP "use libvamp for Vamp plug-in support" on + VAMP "Use libvamp for Vamp plug-in support" on .include @@ -76,8 +75,10 @@ MAKE_ENV= DOC=yes .endif +CONFIGURE_ARGS+= --with-lib-preference="local system" +CONFIGURE_ARGS+= --with-portaudio .if defined(WITH_DEBUG) -CONFIGURE_ARGS+= --with-debug +CONFIGURE_ARGS+= --enable-debug .endif .if defined(WITH_FFMPEG) @@ -93,7 +94,7 @@ .endif .if defined(WITH_LADSPA) -CONFIGURE_ARGS+= --with-ladspa +CONFIGURE_ARGS+= --enable-ladspa .endif .if defined(WITH_MAD) @@ -105,7 +106,7 @@ .endif .if defined(WITH_NYQUIST) -CONFIGURE_ARGS+= --with-nyquist +CONFIGURE_ARGS+= --enable-nyquist .endif .if defined(WITH_PORTMIXER) diff -urN audacity-devel/distinfo audacity-new/distinfo --- audacity-devel/distinfo 2011-03-19 05:27:49.000000000 -0700 +++ audacity-new/distinfo 2011-04-19 02:32:02.000000000 -0700 @@ -1,2 +1,2 @@ -SHA256 (audacity-minsrc-1.3.12-beta.tar.bz2) = f0f55839ca3013d2e43e5114c73d195bc34503685aeab683eafca4d1bbf3b768 -SIZE (audacity-minsrc-1.3.12-beta.tar.bz2) = 6087920 +SHA256 (audacity-minsrc-1.3.13-beta.tar.bz2) = 4c2eda638e16e16dfddd202e86ccbe1d170b04c26cfb2c12ffcba0b79e7e1e83 +SIZE (audacity-minsrc-1.3.13-beta.tar.bz2) = 6450901 diff -urN audacity-devel/files/patch-FileRead.h audacity-new/files/patch-FileRead.h --- audacity-devel/files/patch-FileRead.h 1969-12-31 16:00:00.000000000 -0800 +++ audacity-new/files/patch-FileRead.h 2011-05-02 22:43:59.000000000 -0700 @@ -0,0 +1,10 @@ +--- /usr/obj/usr/ports/audio/audacity-devel/work/audacity-src-1.3.13-beta/lib-src/libnyquist/nyquist/nyqstk/include/FileRead.h 2011-04-06 16:35:52.000000000 -0700 ++++ /usr/obj/usr/ports/audio/audacity-new/work/audacity-src-1.3.13-beta/lib-src/libnyquist/nyquist/nyqstk/include/FileRead.h 2011-05-02 22:42:57.000000000 -0700 +@@ -33,6 +33,7 @@ + #define STK_FILEREAD_H + + #include "Stk.h" ++#include + + namespace Nyq + { diff -urN audacity-devel/files/patch-Makefile.in audacity-new/files/patch-Makefile.in --- audacity-devel/files/patch-Makefile.in 2009-10-16 05:11:24.000000000 -0700 +++ audacity-new/files/patch-Makefile.in 2011-04-19 03:34:10.000000000 -0700 @@ -5,7 +5,6 @@ # install docs +ifeq ($(DOC),yes) - $(INSTALL) -d $(DESTDIR)$(DATADIR)/$(AUDACITY_NAME) $(INSTALL) -d $(DESTDIR)$(DATADIR)/doc/$(AUDACITY_NAME) $(INSTALL) -m 644 README.txt $(DESTDIR)$(DATADIR)/doc/$(AUDACITY_NAME)/README.txt $(INSTALL) -m 644 LICENSE.txt $(DESTDIR)$(DATADIR)/doc/$(AUDACITY_NAME)/LICENSE.txt diff -urN audacity-devel/pkg-plist audacity-new/pkg-plist --- audacity-devel/pkg-plist 2010-04-15 00:00:38.000000000 -0700 +++ audacity-new/pkg-plist 2011-05-02 22:58:04.000000000 -0700 @@ -1,5 +1,7 @@ bin/audacity +man/man1/audacity.1.gz share/applications/audacity.desktop +%%DATADIR%%/EQDefaultCurves.xml %%DATADIR%%/nyquist/bug.lsp %%DATADIR%%/nyquist/dspprims.lsp %%DATADIR%%/nyquist/envelopes.lsp @@ -11,9 +13,25 @@ %%DATADIR%%/nyquist/misc.lsp %%DATADIR%%/nyquist/nyinit.lsp %%DATADIR%%/nyquist/nyqmisc.lsp +%%DATADIR%%/nyquist/nyquist-plot.txt %%DATADIR%%/nyquist/nyquist.lsp %%DATADIR%%/nyquist/printrec.lsp %%DATADIR%%/nyquist/profile.lsp +%%DATADIR%%/nyquist/rawwaves/mand1.raw +%%DATADIR%%/nyquist/rawwaves/mand10.raw +%%DATADIR%%/nyquist/rawwaves/mand11.raw +%%DATADIR%%/nyquist/rawwaves/mand12.raw +%%DATADIR%%/nyquist/rawwaves/mand2.raw +%%DATADIR%%/nyquist/rawwaves/mand3.raw +%%DATADIR%%/nyquist/rawwaves/mand4.raw +%%DATADIR%%/nyquist/rawwaves/mand5.raw +%%DATADIR%%/nyquist/rawwaves/mand6.raw +%%DATADIR%%/nyquist/rawwaves/mand7.raw +%%DATADIR%%/nyquist/rawwaves/mand8.raw +%%DATADIR%%/nyquist/rawwaves/mand9.raw +%%DATADIR%%/nyquist/rawwaves/mandpluk.raw +%%DATADIR%%/nyquist/rawwaves/marmstk1.raw +%%DATADIR%%/nyquist/rawwaves/sinewave.raw %%DATADIR%%/nyquist/sal-parse.lsp %%DATADIR%%/nyquist/sal.lsp %%DATADIR%%/nyquist/seq.lsp @@ -35,6 +53,7 @@ %%DATADIR%%/plug-ins/equalabel.ny %%DATADIR%%/plug-ins/highpass.ny %%DATADIR%%/plug-ins/lowpass.ny +%%DATADIR%%/plug-ins/notch.ny %%DATADIR%%/plug-ins/pluck.ny %%DATADIR%%/plug-ins/rissetdrum.ny %%DATADIR%%/plug-ins/tremolo.ny @@ -48,6 +67,7 @@ share/icons/hicolor/scalable/apps/audacity.svg share/locale/af/LC_MESSAGES/audacity.mo share/locale/ar/LC_MESSAGES/audacity.mo +share/locale/be/LC_MESSAGES/audacity.mo share/locale/bg/LC_MESSAGES/audacity.mo share/locale/bn/LC_MESSAGES/audacity.mo share/locale/bs/LC_MESSAGES/audacity.mo @@ -99,31 +119,32 @@ share/pixmaps/audacity16.xpm share/pixmaps/audacity32.xpm share/pixmaps/gnome-mime-application-x-audacity-project.xpm -@dirrmtry share/mime/packages -@dirrmtry share/mime -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/my/LC_MESSAGES -@dirrmtry share/locale/my -@dirrmtry share/locale/km/LC_MESSAGES -@dirrmtry share/locale/km -@dirrmtry share/locale/ca@valencia/LC_MESSAGES -@dirrmtry share/locale/ca@valencia -@dirrmtry share/icons/hicolor/scalable/apps -@dirrmtry share/icons/hicolor/scalable -@dirrmtry share/icons/hicolor/48x48/apps -@dirrmtry share/icons/hicolor/48x48 -@dirrmtry share/icons/hicolor/32x32/apps -@dirrmtry share/icons/hicolor/32x32 -@dirrmtry share/icons/hicolor/24x24/apps -@dirrmtry share/icons/hicolor/24x24 -@dirrmtry share/icons/hicolor/22x22/apps -@dirrmtry share/icons/hicolor/22x22 -@dirrmtry share/icons/hicolor/16x16/apps -@dirrmtry share/icons/hicolor/16x16 -@dirrmtry share/icons/hicolor -@dirrmtry share/icons +@dirrm share/mime/packages +@dirrm share/mime +@dirrm share/locale/oc/LC_MESSAGES +@dirrm share/locale/oc +@dirrm share/locale/my/LC_MESSAGES +@dirrm share/locale/my +@dirrm share/locale/km/LC_MESSAGES +@dirrm share/locale/km +@dirrm share/locale/ca@valencia/LC_MESSAGES +@dirrm share/locale/ca@valencia +@dirrm share/icons/hicolor/scalable/apps +@dirrm share/icons/hicolor/scalable +@dirrm share/icons/hicolor/48x48/apps +@dirrm share/icons/hicolor/48x48 +@dirrm share/icons/hicolor/32x32/apps +@dirrm share/icons/hicolor/32x32 +@dirrm share/icons/hicolor/24x24/apps +@dirrm share/icons/hicolor/24x24 +@dirrm share/icons/hicolor/22x22/apps +@dirrm share/icons/hicolor/22x22 +@dirrm share/icons/hicolor/16x16/apps +@dirrm share/icons/hicolor/16x16 +@dirrm share/icons/hicolor +@dirrm share/icons @dirrm %%DATADIR%%/plug-ins +@dirrm %%DATADIR%%/nyquist/rawwaves @dirrm %%DATADIR%%/nyquist @dirrm share/audacity @dirrmtry share/applications >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 06:23:32 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 395B7106564A; Tue, 3 May 2011 06:23:32 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 103378FC1D; Tue, 3 May 2011 06:23:32 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p436NVJM093808; Tue, 3 May 2011 06:23:31 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p436NVrO093804; Tue, 3 May 2011 06:23:31 GMT (envelope-from linimon) Date: Tue, 3 May 2011 06:23:31 GMT Message-Id: <201105030623.p436NVrO093804@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, apache@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/156787: www/mod_auth_kerb2 fails on undefined symbol with base kerberos X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 06:23:32 -0000 Old Synopsis: mod_auth_kerb2 fails on undefined symbol with base kerberos New Synopsis: www/mod_auth_kerb2 fails on undefined symbol with base kerberos Responsible-Changed-From-To: freebsd-ports-bugs->apache Responsible-Changed-By: linimon Responsible-Changed-When: Tue May 3 06:22:50 UTC 2011 Responsible-Changed-Why: Fix synopsis and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=156787 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 06:47:42 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C12251065670; Tue, 3 May 2011 06:47:42 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 979F58FC08; Tue, 3 May 2011 06:47:42 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p436lgvh016319; Tue, 3 May 2011 06:47:42 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p436lgP4016315; Tue, 3 May 2011 06:47:42 GMT (envelope-from linimon) Date: Tue, 3 May 2011 06:47:42 GMT Message-Id: <201105030647.p436lgP4016315@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gecko@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/156777: www/firefox and mail/thunderbird menus show corrupt data X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 06:47:42 -0000 Old Synopsis: Firefox and thunderbird menus show corrupt data New Synopsis: www/firefox and mail/thunderbird menus show corrupt data Responsible-Changed-From-To: freebsd-ports-bugs->gecko Responsible-Changed-By: linimon Responsible-Changed-When: Tue May 3 06:46:13 UTC 2011 Responsible-Changed-Why: Fix synopsis and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=156777 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 06:50:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E99AB1065670 for ; Tue, 3 May 2011 06:50:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BE4458FC17 for ; Tue, 3 May 2011 06:50:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p436oAUB016706 for ; Tue, 3 May 2011 06:50:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p436oAmm016705; Tue, 3 May 2011 06:50:10 GMT (envelope-from gnats) Date: Tue, 3 May 2011 06:50:10 GMT Message-Id: <201105030650.p436oAmm016705@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Mark Linimon Cc: Subject: Re: ports/150883: Ports games/openastromenace won't compile on 64 bit X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Mark Linimon List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 06:50:12 -0000 The following reply was made to PR ports/150883; it has been noted by GNATS. From: Mark Linimon To: Rusty Nejdl Cc: proler@gmail.com, bug-followup@FreeBSD.org Subject: Re: ports/150883: Ports games/openastromenace won't compile on 64 bit Date: Tue, 3 May 2011 01:40:12 -0500 On Wed, Apr 27, 2011 at 05:50:23PM +0000, Rusty Nejdl wrote: > Please let me know the status of this PR. I've Cc:ed the maintainer, who has been active in the past month, but at this point IMHO maintainer-timeout should apply and any committer would thus be able to commit after testing. mcl From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 06:50:12 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4447D1065675 for ; Tue, 3 May 2011 06:50:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 213568FC19 for ; Tue, 3 May 2011 06:50:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p436oBrW016721 for ; Tue, 3 May 2011 06:50:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p436oBBZ016720; Tue, 3 May 2011 06:50:11 GMT (envelope-from gnats) Resent-Date: Tue, 3 May 2011 06:50:11 GMT Resent-Message-Id: <201105030650.p436oBBZ016720@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Roland van Laar Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5824E106564A for ; Tue, 3 May 2011 06:49:08 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 3CE5A8FC13 for ; Tue, 3 May 2011 06:49:08 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p436n6u7011253 for ; Tue, 3 May 2011 06:49:06 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p436n6OF011252; Tue, 3 May 2011 06:49:06 GMT (envelope-from nobody) Message-Id: <201105030649.p436n6OF011252@red.freebsd.org> Date: Tue, 3 May 2011 06:49:06 GMT From: Roland van Laar To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156791: New port: security/py-kerberos Python bindings for kerberos X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 06:50:12 -0000 >Number: 156791 >Category: ports >Synopsis: New port: security/py-kerberos Python bindings for kerberos >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 May 03 06:50:11 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Roland van Laar >Release: >Organization: >Environment: >Description: New port: security/py-kerberos. This Python package is a high-level wrapper for Kerberos (GSSAPI) operations. The goal is to avoid having to build a module that wraps the entire Kerberos.framework, and instead offer a limited set of functions that do what is needed for client/server Kerberos authentication based on . WWW: http://trac.calendarserver.org/ >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-kerberos # py-kerberos/Makefile # py-kerberos/pkg-plist # py-kerberos/pkg-descr # py-kerberos/distinfo # echo c - py-kerberos mkdir -p py-kerberos > /dev/null 2>&1 echo x - py-kerberos/Makefile sed 's/^X//' >py-kerberos/Makefile << 'c747b79cf6c65bab4388bcedd7b245c0' X# Ports collection makefile for: py-kerberos X# Date created: April 23, 2011 X# Whom: Roland van Laar X# X# $FreeBSD$ X# X XPORTNAME= kerberos XPORTVERSION= 1.1.1 XCATEGORIES= security python XMASTER_SITES= CHEESESHOP XPKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} X XMAINTAINER= roland@micite.net XCOMMENT= Kerberos bindings for python X XBUILD_DEPENDS= krb5-config:${PORTSDIR}/security/krb5 XLIB_DEPENDS= krb5support.0:${PORTSDIR}/security/krb5 X XUSE_PYTHON= yes XUSE_PYDISTUTILS= easy_install XPYEASYINSTALL_ARCHDEP= yes X Xpost-patch: X @${REINPLACE_CMD} -e 's|krb5|/usr/local/bin/krb5|g' ${WRKSRC}/setup.py X @${REINPLACE_CMD} -e 's|split|replace("/usr/lib:", "").split|g' ${WRKSRC}/setup.py X @${REINPLACE_CMD} -e 's|distutils.core|setuptools|g' ${WRKSRC}/setup.py X X.include c747b79cf6c65bab4388bcedd7b245c0 echo x - py-kerberos/pkg-plist sed 's/^X//' >py-kerberos/pkg-plist << '6c87c980513ce73a9c70d0fc834c101e' X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% 6c87c980513ce73a9c70d0fc834c101e echo x - py-kerberos/pkg-descr sed 's/^X//' >py-kerberos/pkg-descr << 'b955bd5527c5a70c57a5f93c41fd833f' XThis Python package is a high-level wrapper for Kerberos (GSSAPI) operations. XThe goal is to avoid having to build a module that wraps the entire XKerberos.framework, and instead offer a limited set of functions that do what Xis needed for client/server Kerberos authentication based on X. X XWWW: http://trac.calendarserver.org/ b955bd5527c5a70c57a5f93c41fd833f echo x - py-kerberos/distinfo sed 's/^X//' >py-kerberos/distinfo << 'ef6740d089df473f9eb21131e5db8f90' XSHA256 (kerberos-1.1.1.tar.gz) = 09132e3b2027854e8714894546aff11f31e6051eb75513e774948e10a5dde6f5 XSIZE (kerberos-1.1.1.tar.gz) = 15343 ef6740d089df473f9eb21131e5db8f90 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 08:50:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C9F9A1065679 for ; Tue, 3 May 2011 08:50:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8E35B8FC35 for ; Tue, 3 May 2011 08:50:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p438oA2S051082 for ; Tue, 3 May 2011 08:50:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p438oAe9051081; Tue, 3 May 2011 08:50:10 GMT (envelope-from gnats) Resent-Date: Tue, 3 May 2011 08:50:10 GMT Resent-Message-Id: <201105030850.p438oAe9051081@freefall.freebsd.org> 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 [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 37D931065677 for ; Tue, 3 May 2011 08:44:15 +0000 (UTC) (envelope-from sunpoet@sunpoet.net) Received: from sunpoet.net (sunpoet.net [220.133.12.240]) by mx1.freebsd.org (Postfix) with ESMTP id 04DA18FC1C for ; Tue, 3 May 2011 08:44:14 +0000 (UTC) Received: by sunpoet.net (Postfix, from userid 1000) id 7EE115AD5; Tue, 3 May 2011 16:43:21 +0800 (CST) Message-Id: <20110503084321.7EE115AD5@sunpoet.net> Date: Tue, 3 May 2011 16:43:21 +0800 (CST) From: Sunpoet Po-Chuan Hsieh To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: joehorn@gmail.com Subject: ports/156792: [PATCH] chinese/wordpress-zh_CN: update to 3.1.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 08:50:10 -0000 >Number: 156792 >Category: ports >Synopsis: [PATCH] chinese/wordpress-zh_CN: update to 3.1.2 >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 May 03 08:50:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Sunpoet Po-Chuan Hsieh >Release: FreeBSD 8.2-STABLE amd64 >Organization: The FreeBSD Project >Environment: System: FreeBSD bonjour.sunpoet.net 8.2-STABLE FreeBSD 8.2-STABLE #0: Wed Mar 30 10:30:31 CST 2011 >Description: - Update to 3.1.2 Port maintainer (joehorn@gmail.com) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- wordpress-zh_CN-3.1.2.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/chinese/wordpress-zh_CN/Makefile,v retrieving revision 1.9 diff -u -u -r1.9 Makefile --- Makefile 16 Apr 2011 13:24:12 -0000 1.9 +++ Makefile 3 May 2011 08:43:57 -0000 @@ -6,7 +6,7 @@ # PORTNAME= wordpress -PORTVERSION= 3.1.1 +PORTVERSION= 3.1.2 CATEGORIES= chinese www MASTER_SITES= http://cn.wordpress.org/ \ http://mirror.joehorn.idv.tw/wordpress/ Index: distinfo =================================================================== RCS file: /home/ncvs/ports/chinese/wordpress-zh_CN/distinfo,v retrieving revision 1.9 diff -u -u -r1.9 distinfo --- distinfo 16 Apr 2011 13:24:12 -0000 1.9 +++ distinfo 3 May 2011 08:43:57 -0000 @@ -1,2 +1,2 @@ -SHA256 (wordpress-3.1.1-zh_CN.tar.gz) = f91dced21fb8abc1f3cde6bece46571011a81e1884741f2a6b64f360feb99c01 -SIZE (wordpress-3.1.1-zh_CN.tar.gz) = 3112684 +SHA256 (wordpress-3.1.2-zh_CN.tar.gz) = bd5961471619d9cf905cbb2979bd08c5bfb93f7724ba1bcb522c5ae9efaa441a +SIZE (wordpress-3.1.2-zh_CN.tar.gz) = 3124402 --- wordpress-zh_CN-3.1.2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 08:50:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2D8B3106567A for ; Tue, 3 May 2011 08:50:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E608C8FC41 for ; Tue, 3 May 2011 08:50:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p438oAOE051091 for ; Tue, 3 May 2011 08:50:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p438oADu051090; Tue, 3 May 2011 08:50:10 GMT (envelope-from gnats) Resent-Date: Tue, 3 May 2011 08:50:10 GMT Resent-Message-Id: <201105030850.p438oADu051090@freefall.freebsd.org> 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 [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 728C1106564A for ; Tue, 3 May 2011 08:44:56 +0000 (UTC) (envelope-from sunpoet@sunpoet.net) Received: from sunpoet.net (sunpoet.net [220.133.12.240]) by mx1.freebsd.org (Postfix) with ESMTP id 3054B8FC1F for ; Tue, 3 May 2011 08:44:56 +0000 (UTC) Received: by sunpoet.net (Postfix, from userid 1000) id 0D61C5AD8; Tue, 3 May 2011 16:44:04 +0800 (CST) Message-Id: <20110503084404.0D61C5AD8@sunpoet.net> Date: Tue, 3 May 2011 16:44:04 +0800 (CST) From: Sunpoet Po-Chuan Hsieh To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: rafan@FreeBSD.org Subject: ports/156793: [PATCH] devel/p5-parent: update to 0.225 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 08:50:11 -0000 >Number: 156793 >Category: ports >Synopsis: [PATCH] devel/p5-parent: update to 0.225 >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 May 03 08:50:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Sunpoet Po-Chuan Hsieh >Release: FreeBSD 8.2-STABLE amd64 >Organization: The FreeBSD Project >Environment: System: FreeBSD bonjour.sunpoet.net 8.2-STABLE FreeBSD 8.2-STABLE #0: Wed Mar 30 10:30:31 CST 2011 >Description: - Update to 0.225 Port maintainer (rafan@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- p5-parent-0.225.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-parent/Makefile,v retrieving revision 1.7 diff -u -u -r1.7 Makefile --- Makefile 2 Jan 2011 13:21:21 -0000 1.7 +++ Makefile 3 May 2011 08:44:50 -0000 @@ -6,10 +6,10 @@ # PORTNAME= parent -PORTVERSION= 0.224 +PORTVERSION= 0.225 CATEGORIES= devel perl5 MASTER_SITES= CPAN -MASTER_SITE_SUBDIR= ../../authors/id/C/CO/CORION +MASTER_SITE_SUBDIR= CPAN:CORION PKGNAMEPREFIX= p5- MAINTAINER= rafan@FreeBSD.org Index: distinfo =================================================================== RCS file: /home/ncvs/ports/devel/p5-parent/distinfo,v retrieving revision 1.6 diff -u -u -r1.6 distinfo --- distinfo 2 Jan 2011 13:21:21 -0000 1.6 +++ distinfo 3 May 2011 08:44:50 -0000 @@ -1,2 +1,2 @@ -SHA256 (parent-0.224.tar.gz) = b152b35cef28afdc19e0512bfb214909cb872af60c18bc0ab57483a2e149e23b -SIZE (parent-0.224.tar.gz) = 5460 +SHA256 (parent-0.225.tar.gz) = e0804e684e97331dd3f20b5473e726e0ffdf316cd3ae16ab0c84a868954b28a9 +SIZE (parent-0.225.tar.gz) = 5533 --- p5-parent-0.225.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 08:50:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7E8BE106567D for ; Tue, 3 May 2011 08:50:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4313F8FC44 for ; Tue, 3 May 2011 08:50:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p438oBVr051102 for ; Tue, 3 May 2011 08:50:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p438oBCv051099; Tue, 3 May 2011 08:50:11 GMT (envelope-from gnats) Resent-Date: Tue, 3 May 2011 08:50:11 GMT Resent-Message-Id: <201105030850.p438oBCv051099@freefall.freebsd.org> 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 [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1E7A21065680 for ; Tue, 3 May 2011 08:45:10 +0000 (UTC) (envelope-from sunpoet@sunpoet.net) Received: from sunpoet.net (sunpoet.net [220.133.12.240]) by mx1.freebsd.org (Postfix) with ESMTP id D66218FC0A for ; Tue, 3 May 2011 08:45:08 +0000 (UTC) Received: by sunpoet.net (Postfix, from userid 1000) id B2B145ADD; Tue, 3 May 2011 16:44:16 +0800 (CST) Message-Id: <20110503084416.B2B145ADD@sunpoet.net> Date: Tue, 3 May 2011 16:44:16 +0800 (CST) From: Sunpoet Po-Chuan Hsieh To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: rafan@FreeBSD.org Subject: ports/156794: [PATCH] devel/p5-Module-ScanDeps: update to 1.02 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 08:50:11 -0000 >Number: 156794 >Category: ports >Synopsis: [PATCH] devel/p5-Module-ScanDeps: 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 May 03 08:50:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Sunpoet Po-Chuan Hsieh >Release: FreeBSD 8.2-STABLE amd64 >Organization: The FreeBSD Project >Environment: System: FreeBSD bonjour.sunpoet.net 8.2-STABLE FreeBSD 8.2-STABLE #0: Wed Mar 30 10:30:31 CST 2011 >Description: - Update to 1.02 Port maintainer (rafan@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- p5-Module-ScanDeps-1.02.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Module-ScanDeps/Makefile,v retrieving revision 1.48 diff -u -u -r1.48 Makefile --- Makefile 28 Feb 2011 05:08:28 -0000 1.48 +++ Makefile 3 May 2011 08:44:59 -0000 @@ -6,10 +6,10 @@ # PORTNAME= Module-ScanDeps -PORTVERSION= 1.00 +PORTVERSION= 1.02 CATEGORIES= devel perl5 MASTER_SITES= CPAN -MASTER_SITE_SUBDIR= ../../authors/id/R/RS/RSCHUPP +MASTER_SITE_SUBDIR= CPAN:RSCHUPP PKGNAMEPREFIX= p5- MAINTAINER= rafan@FreeBSD.org Index: distinfo =================================================================== RCS file: /home/ncvs/ports/devel/p5-Module-ScanDeps/distinfo,v retrieving revision 1.46 diff -u -u -r1.46 distinfo --- distinfo 28 Feb 2011 05:08:28 -0000 1.46 +++ distinfo 3 May 2011 08:44:59 -0000 @@ -1,2 +1,2 @@ -SHA256 (Module-ScanDeps-1.00.tar.gz) = 96dfa99843eedf8d9200c43b7981a80bb3289722f4c64e005a049ade75021850 -SIZE (Module-ScanDeps-1.00.tar.gz) = 58139 +SHA256 (Module-ScanDeps-1.02.tar.gz) = 3e87a0b93756a0fc01d51986cda90ccc380c7d094012d057322438be2fedc7f9 +SIZE (Module-ScanDeps-1.02.tar.gz) = 56610 --- p5-Module-ScanDeps-1.02.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 08:50:20 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9DDFA1065675; Tue, 3 May 2011 08:50:20 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 72BD08FC3C; Tue, 3 May 2011 08:50:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p438oKP6051545; Tue, 3 May 2011 08:50:20 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p438oKrj051535; Tue, 3 May 2011 08:50:20 GMT (envelope-from edwin) Date: Tue, 3 May 2011 08:50:20 GMT Message-Id: <201105030850.p438oKrj051535@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156792: [PATCH] chinese/wordpress-zh_CN: update to 3.1.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 08:50:20 -0000 Synopsis: [PATCH] chinese/wordpress-zh_CN: update to 3.1.2 Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: edwin Responsible-Changed-When: Tue May 3 08:50:19 UTC 2011 Responsible-Changed-Why: Submitter has GNATS access (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156792 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 08:50:36 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F21CE106566B; Tue, 3 May 2011 08:50:36 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C65BC8FC2B; Tue, 3 May 2011 08:50:36 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p438oa64053254; Tue, 3 May 2011 08:50:36 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p438oaGM053245; Tue, 3 May 2011 08:50:36 GMT (envelope-from edwin) Date: Tue, 3 May 2011 08:50:36 GMT Message-Id: <201105030850.p438oaGM053245@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rafan@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156793: [PATCH] devel/p5-parent: update to 0.225 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 08:50:37 -0000 Synopsis: [PATCH] devel/p5-parent: update to 0.225 Responsible-Changed-From-To: freebsd-ports-bugs->rafan Responsible-Changed-By: edwin Responsible-Changed-When: Tue May 3 08:50:36 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156793 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 08:50:43 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 107D3106566C; Tue, 3 May 2011 08:50:43 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D8F538FC33; Tue, 3 May 2011 08:50:42 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p438ogcM054008; Tue, 3 May 2011 08:50:42 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p438og9g054000; Tue, 3 May 2011 08:50:42 GMT (envelope-from edwin) Date: Tue, 3 May 2011 08:50:42 GMT Message-Id: <201105030850.p438og9g054000@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rafan@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156794: [PATCH] devel/p5-Module-ScanDeps: update to 1.02 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 08:50:43 -0000 Synopsis: [PATCH] devel/p5-Module-ScanDeps: update to 1.02 Responsible-Changed-From-To: freebsd-ports-bugs->rafan Responsible-Changed-By: edwin Responsible-Changed-When: Tue May 3 08:50:42 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156794 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 10:20:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9EAEC1065670 for ; Tue, 3 May 2011 10:20:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 88C188FC08 for ; Tue, 3 May 2011 10:20:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p43AKA2N032438 for ; Tue, 3 May 2011 10:20:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p43AKAc2032437; Tue, 3 May 2011 10:20:10 GMT (envelope-from gnats) Date: Tue, 3 May 2011 10:20:10 GMT Message-Id: <201105031020.p43AKAc2032437@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: =?utf-8?B?0J7Qu9C10LMg0JDQu9C10LrRgdC10LXQvdC60L7Qsg==?= Cc: Subject: Re: ports/150883: Ports games/openastromenace won't compile on 64 bit X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: =?utf-8?B?0J7Qu9C10LMg0JDQu9C10LrRgdC10LXQvdC60L7Qsg==?= List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 10:20:10 -0000 The following reply was made to PR ports/150883; it has been noted by GNATS. From: =?utf-8?B?0J7Qu9C10LMg0JDQu9C10LrRgdC10LXQvdC60L7Qsg==?= To: "Rusty Nejdl" , "Mark Linimon" Cc: bug-followup@freebsd.org Subject: Re: ports/150883: Ports games/openastromenace won't compile on 64 bit Date: Tue, 03 May 2011 13:48:47 +0400 Mark Linimon =D0=BF=D0=B8=D1=81=D0=B0=D0=BB(=D0=B0= ) =D0=B2 =D1=81=D0=B2=D0=BE=D1=91=D0=BC =D0=BF=D0=B8=D1=81=D1=8C=D0=BC=D0= =B5 Tue, 03 May = 2011 10:40:12 +0400: > I've Cc:ed the maintainer, who has been active in the past month, but = at > this point IMHO maintainer-timeout should apply and any committer woul= d > thus be able to commit after testing. sorry for timeout. commit it please, if patch does work From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 10:49:29 2011 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6EA9C106564A for ; Tue, 3 May 2011 10:49:29 +0000 (UTC) (envelope-from renchap@cocoa-x.com) Received: from 27.mail-out.ovh.net (4.27.mail-out.ovh.net [46.105.52.239]) by mx1.freebsd.org (Postfix) with SMTP id C178F8FC1B for ; Tue, 3 May 2011 10:49:28 +0000 (UTC) Received: (qmail 15391 invoked by uid 503); 3 May 2011 11:44:50 -0000 Received: from b7.ovh.net (HELO mail190.ha.ovh.net) (213.186.33.57) by 27.mail-out.ovh.net with SMTP; 3 May 2011 11:44:45 -0000 Received: from b0.ovh.net (HELO queueout) (213.186.33.50) by b0.ovh.net with SMTP; 3 May 2011 12:49:21 +0200 Received: from mas91-4-88-189-56-133.fbx.proxad.net (HELO krasus.massy.renchap.com) (renchap@cocoa-x.com@88.189.56.133) by ns0.ovh.net with SMTP; 3 May 2011 12:49:19 +0200 Date: Tue, 3 May 2011 12:49:18 +0200 From: Renaud Chaput To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Message-ID: <20110503124918.30df90cf@krasus.massy.renchap.com> In-Reply-To: <201105030520.p435K982031842@freefall.freebsd.org> References: <20110503051309.E4B0C69B@tahiri.renchap.com> <201105030520.p435K982031842@freefall.freebsd.org> X-Mailer: Claws Mail 3.7.9 (GTK+ 2.22.1; x86_64-pc-linux-gnu) Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="MP_/WKezzDs/OLXHIIm2LxcAa3R" X-Ovh-Tracer-Id: 15973986404223555768 X-Ovh-Remote: 88.189.56.133 (mas91-4-88-189-56-133.fbx.proxad.net) X-Ovh-Local: 213.186.33.20 (ns0.ovh.net) X-Spam-Check: DONE|U 0.5/N Cc: Subject: Re: ports/156789: [MAINTAINER] sysutils/rubygem-chef: update to 0.10.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 10:49:29 -0000 --MP_/WKezzDs/OLXHIIm2LxcAa3R Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline I missed a typo, this port should depend on rubygen-json 1.5.1, not 1.5.1. Here is the updated diff. Le Tue, 3 May 2011 05:20:09 GMT, FreeBSD-gnats-submit@FreeBSD.org a =C3=A9crit : > Thank you very much for your problem report. > It has the internal identification `ports/156789'. > 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=3D156789 >=20 > >Category: ports > >Responsible: freebsd-ports-bugs > >Synopsis: [MAINTAINER] sysutils/rubygem-chef: update to 0.10.0 > >Arrival-Date: Tue May 03 05:20:09 UTC 2011 --MP_/WKezzDs/OLXHIIm2LxcAa3R Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=rubygem-chef-0.10.0.diff ===> Generating patch ===> Viewing diff with more diff -ruN --exclude=CVS /usr/ports/sysutils/rubygem-chef/Makefile /usr/home/renchap/ports/sysutils/rubygem-chef/Makefile --- /usr/ports/sysutils/rubygem-chef/Makefile 2011-03-05 20:55:24.300447078 +0100 +++ /usr/home/renchap/ports/sysutils/rubygem-chef/Makefile 2011-05-03 12:44:10.015102413 +0200 @@ -6,28 +6,29 @@ # PORTNAME= chef -PORTVERSION= 0.9.12 -PORTREVISION= 1 +PORTVERSION= 0.10.0 CATEGORIES= sysutils MASTER_SITES= RG MAINTAINER= renchap@cocoa-x.com COMMENT= A systems integration framework. Client part -BUILD_DEPENDS= rubygem-mixlib-log>=1.1.0:${PORTSDIR}/devel/rubygem-mixlib-log \ +RUN_DEPENDS= ruby18-iconv>=0.0.0:${PORTSDIR}/converters/ruby-iconv \ + rubygem-mixlib-log>=1.3.0:${PORTSDIR}/devel/rubygem-mixlib-log \ rubygem-mixlib-config>=1.1.2:${PORTSDIR}/devel/rubygem-mixlib-config \ rubygem-mixlib-cli>=1.1.0:${PORTSDIR}/devel/rubygem-mixlib-cli \ rubygem-mixlib-authentication>=1.1.2:${PORTSDIR}/devel/rubygem-mixlib-authentication \ - rubygem-extlib>=0.9.14:${PORTSDIR}/devel/rubygem-extlib \ - rubygem-json>=1.4.4:${PORTSDIR}/devel/rubygem-json \ + rubygem-json=1.5.1:${PORTSDIR}/devel/rubygem-json \ rubygem-uuidtools>=0.0.0:${PORTSDIR}/devel/rubygem-uuidtools \ rubygem-highline>=0.0.0:${PORTSDIR}/devel/rubygem-highline \ rubygem-moneta>=0.6.0:${PORTSDIR}/devel/rubygem-moneta \ rubygem-erubis>=0.0.0:${PORTSDIR}/www/rubygem-erubis \ rubygem-rest-client>=1.0.4:${PORTSDIR}/www/rubygem-rest-client \ rubygem-bunny>=0.6.0:${PORTSDIR}/net/rubygem-bunny \ - rubygem-ohai>=0.5.7:${PORTSDIR}/sysutils/rubygem-ohai -RUN_DEPENDS= ${BUILD_DEPENDS} + rubygem-ohai>=0.6.4:${PORTSDIR}/sysutils/rubygem-ohai \ + rubygem-net-ssh>=2.1.3:${PORTSDIR}/security/rubygem-net-ssh \ + rubygem-net-ssh-multi>=1.0.1:${PORTSDIR}/security/rubygem-net-ssh-multi \ + rubygem-treetop>=1.4.9:${PORTSDIR}/devel/rubygem-treetop USE_RUBY= yes USE_RUBYGEMS= yes diff -ruN --exclude=CVS /usr/ports/sysutils/rubygem-chef/distinfo /usr/home/renchap/ports/sysutils/rubygem-chef/distinfo --- /usr/ports/sysutils/rubygem-chef/distinfo 2011-01-18 13:00:11.000000000 +0100 +++ /usr/home/renchap/ports/sysutils/rubygem-chef/distinfo 2011-05-02 23:46:18.191661688 +0200 @@ -1,2 +1,2 @@ -SHA256 (rubygem/chef-0.9.12.gem) = a021e015e37c7edc8589b9a17184d675fb5b4784a65bc5532831b8faa3ad4b68 -SIZE (rubygem/chef-0.9.12.gem) = 254464 +SHA256 (rubygem/chef-0.10.0.gem) = 9ddc9165c9926730343a5f8b4077735c69b354f3bcfad834012c8e7edfb79432 +SIZE (rubygem/chef-0.10.0.gem) = 347136 ===> Done --MP_/WKezzDs/OLXHIIm2LxcAa3R-- From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 10:55:08 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B665B1065670; Tue, 3 May 2011 10:55:08 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7C6558FC14; Tue, 3 May 2011 10:55:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p43At8Hu075582; Tue, 3 May 2011 10:55:08 GMT (envelope-from culot@freefall.freebsd.org) Received: (from culot@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p43At8w0075578; Tue, 3 May 2011 10:55:08 GMT (envelope-from culot) Date: Tue, 3 May 2011 10:55:08 GMT Message-Id: <201105031055.p43At8w0075578@freefall.freebsd.org> To: culot@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, culot@FreeBSD.org From: culot@FreeBSD.org Cc: Subject: Re: ports/156788: [patch] update net/scamper to 20110503 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 10:55:08 -0000 Synopsis: [patch] update net/scamper to 20110503 Responsible-Changed-From-To: freebsd-ports-bugs->culot Responsible-Changed-By: culot Responsible-Changed-When: Tue May 3 10:55:07 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=156788 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 11:50:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 194B8106567A for ; Tue, 3 May 2011 11:50:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id AFB718FC13 for ; Tue, 3 May 2011 11:50:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p43Bo9Yv024267 for ; Tue, 3 May 2011 11:50:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p43Bo98u024266; Tue, 3 May 2011 11:50:09 GMT (envelope-from gnats) Resent-Date: Tue, 3 May 2011 11:50:09 GMT Resent-Message-Id: <201105031150.p43Bo98u024266@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Hans Fredrik Nordhaug Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 409B51065679 for ; Tue, 3 May 2011 11:40:49 +0000 (UTC) (envelope-from root@nordhaug.priv.no) Received: from nordhaug.priv.no (static243-173-78.mimer.net [83.243.173.78]) by mx1.freebsd.org (Postfix) with ESMTP id BE4D68FC17 for ; Tue, 3 May 2011 11:40:47 +0000 (UTC) Received: from nordhaug.priv.no (localhost [127.0.0.1]) by nordhaug.priv.no (Postfix) with ESMTP id 6680E8A73F for ; Tue, 3 May 2011 13:40:46 +0200 (CEST) Received: from nordhaug.priv.no ([127.0.0.1]) by nordhaug.priv.no (nordhaug.priv.no [127.0.0.1]) (amavisd-new, port 10024) with LMTP id BmSd1Io4P1z0 for ; Tue, 3 May 2011 13:40:40 +0200 (CEST) Received: by nordhaug.priv.no (Postfix, from userid 0) id 49AFD8A17C; Tue, 3 May 2011 13:40:40 +0200 (CEST) Message-Id: <20110503114040.49AFD8A17C@nordhaug.priv.no> Date: Tue, 3 May 2011 13:40:40 +0200 (CEST) From: Hans Fredrik Nordhaug To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/156795: [MAINTAINER] www/piwik: update to 1.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 11:50:11 -0000 >Number: 156795 >Category: ports >Synopsis: [MAINTAINER] www/piwik: update to 1.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: Tue May 03 11:50:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Hans Fredrik Nordhaug >Release: FreeBSD 8.2-RELEASE i386 >Organization: >Environment: System: FreeBSD nordhaug.priv.no 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Fri Feb 18 02:24:46 UTC 2011 >Description: - Update to 1.4 Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- piwik-1.4.patch begins here --- diff -ruN --exclude=CVS /usr/ports/www/piwik.orig/Makefile /usr/ports/www/piwik/Makefile --- /usr/ports/www/piwik.orig/Makefile 2011-04-21 17:21:05.000000000 +0200 +++ /usr/ports/www/piwik/Makefile 2011-05-03 13:11:44.000000000 +0200 @@ -6,7 +6,7 @@ # PORTNAME= piwik -PORTVERSION= 1.3 +PORTVERSION= 1.4 CATEGORIES= www MASTER_SITES= http://builds.piwik.org/ diff -ruN --exclude=CVS /usr/ports/www/piwik.orig/distinfo /usr/ports/www/piwik/distinfo --- /usr/ports/www/piwik.orig/distinfo 2011-04-21 17:21:05.000000000 +0200 +++ /usr/ports/www/piwik/distinfo 2011-05-03 13:11:54.000000000 +0200 @@ -1,2 +1,2 @@ -SHA256 (piwik-1.3.tar.gz) = 9c9b0079309716cd14e1153c6149198061834af9d3a3fd08ae8192ecb66fda70 -SIZE (piwik-1.3.tar.gz) = 4329608 +SHA256 (piwik-1.4.tar.gz) = f098eefe6ded4d4b65de0983fecdf893eb28fc51aa2d63a4d659df52f9b0e59c +SIZE (piwik-1.4.tar.gz) = 4299006 diff -ruN --exclude=CVS /usr/ports/www/piwik.orig/pkg-plist /usr/ports/www/piwik/pkg-plist --- /usr/ports/www/piwik.orig/pkg-plist 2011-04-21 17:21:05.000000000 +0200 +++ /usr/ports/www/piwik/pkg-plist 2011-05-03 13:38:00.000000000 +0200 @@ -80,6 +80,7 @@ %%WWWDIR%%/core/FrontController.php %%WWWDIR%%/core/HTMLPurifier.php %%WWWDIR%%/core/Http.php +%%WWWDIR%%/core/IP.php %%WWWDIR%%/core/Loader.php %%WWWDIR%%/core/Log.php %%WWWDIR%%/core/Log/APICall.php @@ -106,6 +107,9 @@ %%WWWDIR%%/core/PluginsManager.php %%WWWDIR%%/core/ProxyHeaders.php %%WWWDIR%%/core/QuickForm2.php +%%WWWDIR%%/core/ReportRenderer/Pdf.php +%%WWWDIR%%/core/ReportRenderer/Html.php +%%WWWDIR%%/core/ReportRenderer.php %%WWWDIR%%/core/ScheduledTask.php %%WWWDIR%%/core/ScheduledTime.php %%WWWDIR%%/core/ScheduledTime/Daily.php @@ -191,6 +195,8 @@ %%WWWDIR%%/core/Updates/1.2.3.php %%WWWDIR%%/core/Updates/1.2.5-rc1.php %%WWWDIR%%/core/Updates/1.2.5-rc7.php +%%WWWDIR%%/core/Updates/1.4-rc1.php +%%WWWDIR%%/core/Updates/1.4-rc2.php %%WWWDIR%%/core/Url.php %%WWWDIR%%/core/Version.php %%WWWDIR%%/core/View.php @@ -342,6 +348,13 @@ %%WWWDIR%%/libs/PEAR5.php %%WWWDIR%%/libs/PclZip/lgpl-2.1.txt %%WWWDIR%%/libs/PclZip/pclzip.lib.php +%%WWWDIR%%/libs/PiwikTracker/java/pom.xml +%%WWWDIR%%/libs/PiwikTracker/java/src/main/java/org/piwik/EBrowserPlugins.java +%%WWWDIR%%/libs/PiwikTracker/java/src/main/java/org/piwik/IPiwikTracker.java +%%WWWDIR%%/libs/PiwikTracker/java/src/main/java/org/piwik/PiwikException.java +%%WWWDIR%%/libs/PiwikTracker/java/src/main/java/org/piwik/ResponseData.java +%%WWWDIR%%/libs/PiwikTracker/java/src/main/java/org/piwik/SimplePiwikTracker.java +%%WWWDIR%%/libs/PiwikTracker/java/src/test/java/org/piwik/SimplePiwikTrackerTest.java %%WWWDIR%%/libs/PiwikTracker/LICENSE.txt %%WWWDIR%%/libs/PiwikTracker/PiwikTracker.php %%WWWDIR%%/libs/README_LIBS @@ -978,8 +991,6 @@ %%WWWDIR%%/libs/upgradephp/upgrade.php %%WWWDIR%%/misc/ExamplePiwikTracker.php %%WWWDIR%%/misc/How to install Piwik.html -%%WWWDIR%%/misc/api_community_sticker.php -%%WWWDIR%%/misc/api_example_marketing.php %%WWWDIR%%/misc/api_internal_call.php %%WWWDIR%%/misc/api_rest_call.php %%WWWDIR%%/misc/cron/archive.sh @@ -1038,6 +1049,9 @@ %%WWWDIR%%/plugins/CoreHome/templates/graph.tpl %%WWWDIR%%/plugins/CoreHome/templates/header.tpl %%WWWDIR%%/plugins/CoreHome/templates/header_message.tpl +%%WWWDIR%%/plugins/CoreHome/templates/html_report_footer.tpl +%%WWWDIR%%/plugins/CoreHome/templates/html_report_header.tpl +%%WWWDIR%%/plugins/CoreHome/templates/html_report_body.tpl %%WWWDIR%%/plugins/CoreHome/templates/images/bg_header.jpg %%WWWDIR%%/plugins/CoreHome/templates/images/bullet1.gif %%WWWDIR%%/plugins/CoreHome/templates/images/bullet2.gif @@ -1212,7 +1226,6 @@ %%WWWDIR%%/plugins/MultiSites/templates/styles.css %%WWWDIR%%/plugins/PDFReports/API.php %%WWWDIR%%/plugins/PDFReports/Controller.php -%%WWWDIR%%/plugins/PDFReports/PDFRenderer.php %%WWWDIR%%/plugins/PDFReports/PDFReports.php %%WWWDIR%%/plugins/PDFReports/config/tcpdf_config.php %%WWWDIR%%/plugins/PDFReports/templates/add.tpl @@ -1272,6 +1285,7 @@ %%WWWDIR%%/plugins/Referers/images/searchEngines/infospace.com.png %%WWWDIR%%/plugins/Referers/images/searchEngines/iwon.ask.com.png %%WWWDIR%%/plugins/Referers/images/searchEngines/ixquick.com.png +%%WWWDIR%%/plugins/Referers/images/searchEngines/junglekey.com.png %%WWWDIR%%/plugins/Referers/images/searchEngines/jyxo.1188.cz.png %%WWWDIR%%/plugins/Referers/images/searchEngines/ko.search.need2find.com.png %%WWWDIR%%/plugins/Referers/images/searchEngines/lo.st.png @@ -1521,6 +1535,7 @@ %%WWWDIR%%/plugins/UserCountry/flags/bm.png %%WWWDIR%%/plugins/UserCountry/flags/bn.png %%WWWDIR%%/plugins/UserCountry/flags/bo.png +%%WWWDIR%%/plugins/UserCountry/flags/bq.png %%WWWDIR%%/plugins/UserCountry/flags/br.png %%WWWDIR%%/plugins/UserCountry/flags/bs.png %%WWWDIR%%/plugins/UserCountry/flags/bt.png @@ -1547,6 +1562,7 @@ %%WWWDIR%%/plugins/UserCountry/flags/cs.png %%WWWDIR%%/plugins/UserCountry/flags/cu.png %%WWWDIR%%/plugins/UserCountry/flags/cv.png +%%WWWDIR%%/plugins/UserCountry/flags/cw.png %%WWWDIR%%/plugins/UserCountry/flags/cx.png %%WWWDIR%%/plugins/UserCountry/flags/cy.png %%WWWDIR%%/plugins/UserCountry/flags/cz.png @@ -1712,6 +1728,7 @@ %%WWWDIR%%/plugins/UserCountry/flags/st.png %%WWWDIR%%/plugins/UserCountry/flags/su.png %%WWWDIR%%/plugins/UserCountry/flags/sv.png +%%WWWDIR%%/plugins/UserCountry/flags/sx.png %%WWWDIR%%/plugins/UserCountry/flags/sy.png %%WWWDIR%%/plugins/UserCountry/flags/sz.png %%WWWDIR%%/plugins/UserCountry/flags/ta.png @@ -1946,6 +1963,7 @@ %%WWWDIR%%/themes/default/images/export.png %%WWWDIR%%/themes/default/images/feed.png %%WWWDIR%%/themes/default/images/goal.png +%%WWWDIR%%/themes/default/images/html_icon.png %%WWWDIR%%/themes/default/images/ico_alert.png %%WWWDIR%%/themes/default/images/ico_delete.png %%WWWDIR%%/themes/default/images/ico_edit.png @@ -2230,6 +2248,17 @@ @dirrm %%WWWDIR%%/libs/Smarty/plugins @dirrm %%WWWDIR%%/libs/Smarty/internals @dirrm %%WWWDIR%%/libs/Smarty +@dirrm %%WWWDIR%%/libs/PiwikTracker/java/src/test/java/org/piwik +@dirrm %%WWWDIR%%/libs/PiwikTracker/java/src/test/java/org +@dirrm %%WWWDIR%%/libs/PiwikTracker/java/src/test/java +@dirrm %%WWWDIR%%/libs/PiwikTracker/java/src/test +@dirrm %%WWWDIR%%/libs/PiwikTracker/java/src/main/resources +@dirrm %%WWWDIR%%/libs/PiwikTracker/java/src/main/java/org/piwik +@dirrm %%WWWDIR%%/libs/PiwikTracker/java/src/main/java/org +@dirrm %%WWWDIR%%/libs/PiwikTracker/java/src/main/java +@dirrm %%WWWDIR%%/libs/PiwikTracker/java/src/main +@dirrm %%WWWDIR%%/libs/PiwikTracker/java/src +@dirrm %%WWWDIR%%/libs/PiwikTracker/java @dirrm %%WWWDIR%%/libs/PiwikTracker @dirrm %%WWWDIR%%/libs/PclZip @dirrm %%WWWDIR%%/libs/PEAR @@ -2261,6 +2290,7 @@ @dirrm %%WWWDIR%%/core/SmartyPlugins @dirrm %%WWWDIR%%/core/Session @dirrm %%WWWDIR%%/core/ScheduledTime +@dirrm %%WWWDIR%%/core/ReportRenderer @dirrm %%WWWDIR%%/core/PluginsFunctions @dirrm %%WWWDIR%%/core/Period @dirrm %%WWWDIR%%/core/Menu --- piwik-1.4.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 11:58:17 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 99C9B106566C; Tue, 3 May 2011 11:58:17 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6CA138FC13; Tue, 3 May 2011 11:58:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p43BwH57032477; Tue, 3 May 2011 11:58:17 GMT (envelope-from culot@freefall.freebsd.org) Received: (from culot@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p43BwHwb032473; Tue, 3 May 2011 11:58:17 GMT (envelope-from culot) Date: Tue, 3 May 2011 11:58:17 GMT Message-Id: <201105031158.p43BwHwb032473@freefall.freebsd.org> To: culot@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, culot@FreeBSD.org From: culot@FreeBSD.org Cc: Subject: Re: ports/156795: [MAINTAINER] www/piwik: update to 1.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 11:58:17 -0000 Synopsis: [MAINTAINER] www/piwik: update to 1.4 Responsible-Changed-From-To: freebsd-ports-bugs->culot Responsible-Changed-By: culot Responsible-Changed-When: Tue May 3 11:58:17 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=156795 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 13:42:04 2011 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F33E41065670; Tue, 3 May 2011 13:42:03 +0000 (UTC) (envelope-from magik@roorback.net) Received: from mail-qy0-f182.google.com (mail-qy0-f182.google.com [209.85.216.182]) by mx1.freebsd.org (Postfix) with ESMTP id A54E48FC25; Tue, 3 May 2011 13:42:03 +0000 (UTC) Received: by qyk27 with SMTP id 27so56894qyk.13 for ; Tue, 03 May 2011 06:42:02 -0700 (PDT) Received: by 10.229.126.167 with SMTP id c39mr7095883qcs.119.1304430122219; Tue, 03 May 2011 06:42:02 -0700 (PDT) MIME-Version: 1.0 Received: by 10.229.223.208 with HTTP; Tue, 3 May 2011 06:41:41 -0700 (PDT) X-Originating-IP: [89.72.104.219] In-Reply-To: References: <201101302136.p0ULagv0005772@red.freebsd.org> <201101302140.p0ULe7tr093164@freefall.freebsd.org> From: Grzegorz Blach Date: Tue, 3 May 2011 15:41:41 +0200 Message-ID: To: FreeBSD-gnats-submit@freebsd.org, freebsd-ports-bugs@freebsd.org Content-Type: text/plain; charset=UTF-8 Cc: Subject: Re: ports/154402: updates for enlightenment 0.17 and related ports X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 13:42:04 -0000 What is the current PR status? From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 15:20:22 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4DAB11065703; Tue, 3 May 2011 15:20:22 +0000 (UTC) (envelope-from glarkin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 215928FC0A; Tue, 3 May 2011 15:20:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p43FKMOe016026; Tue, 3 May 2011 15:20:22 GMT (envelope-from glarkin@freefall.freebsd.org) Received: (from glarkin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p43FKL0h016002; Tue, 3 May 2011 11:20:21 -0400 (EDT) (envelope-from glarkin) Date: Tue, 3 May 2011 11:20:21 -0400 (EDT) Message-Id: <201105031520.p43FKL0h016002@freefall.freebsd.org> To: kaiwang27@gmail.com, utisoft@gmail.com, glarkin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: glarkin@FreeBSD.org Cc: Subject: Re: ports/156734: Fix port: sysutils/uhidd rc script fails to set default X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 15:20:22 -0000 Synopsis: Fix port: sysutils/uhidd rc script fails to set default State-Changed-From-To: open->closed State-Changed-By: glarkin State-Changed-When: Tue May 3 11:20:13 EDT 2011 State-Changed-Why: Committed, thank you! http://www.freebsd.org/cgi/query-pr.cgi?pr=156734 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 15:30:15 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 47C531065670 for ; Tue, 3 May 2011 15:30:15 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 350CA8FC13 for ; Tue, 3 May 2011 15:30:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p43FUFCJ023830 for ; Tue, 3 May 2011 15:30:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p43FUFLs023825; Tue, 3 May 2011 15:30:15 GMT (envelope-from gnats) Date: Tue, 3 May 2011 15:30:15 GMT Message-Id: <201105031530.p43FUFLs023825@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/156734: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 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: Tue, 03 May 2011 15:30:15 -0000 The following reply was made to PR ports/156734; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/156734: commit references a PR Date: Tue, 3 May 2011 15:20:17 +0000 (UTC) glarkin 2011-05-03 15:20:02 UTC FreeBSD ports repository Modified files: sysutils/uhidd Makefile sysutils/uhidd/files uhidd.in Log: - Added rc.d default value - Bumped PORTREVISION PR: ports/156734 Submitted by: Chris Rees Approved by: Kai Wang (maintainer) Revision Changes Path 1.5 +1 -0 ports/sysutils/uhidd/Makefile 1.3 +3 -1 ports/sysutils/uhidd/files/uhidd.in _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 16:31:49 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E257710656B0; Tue, 3 May 2011 16:31:49 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B7B858FC13; Tue, 3 May 2011 16:31:49 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p43GVne9086423; Tue, 3 May 2011 16:31:49 GMT (envelope-from pav@freefall.freebsd.org) Received: (from pav@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p43GVnaX086419; Tue, 3 May 2011 16:31:49 GMT (envelope-from pav) Date: Tue, 3 May 2011 16:31:49 GMT Message-Id: <201105031631.p43GVnaX086419@freefall.freebsd.org> To: utisoft@gmail.com, pav@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: pav@FreeBSD.org Cc: Subject: Re: ports/156774: Fix port: mail/biabam Change MASTER_SITES && grab maintainership X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 16:31:50 -0000 Synopsis: Fix port: mail/biabam Change MASTER_SITES && grab maintainership State-Changed-From-To: open->closed State-Changed-By: pav State-Changed-When: Tue May 3 16:30:58 UTC 2011 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=156774 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 16:40:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AEAAE106566C for ; Tue, 3 May 2011 16:40:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9C9118FC0C for ; Tue, 3 May 2011 16:40:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p43GeARc088852 for ; Tue, 3 May 2011 16:40:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p43GeA7X088851; Tue, 3 May 2011 16:40:10 GMT (envelope-from gnats) Date: Tue, 3 May 2011 16:40:10 GMT Message-Id: <201105031640.p43GeA7X088851@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/156774: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 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: Tue, 03 May 2011 16:40:10 -0000 The following reply was made to PR ports/156774; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/156774: commit references a PR Date: Tue, 3 May 2011 16:31:51 +0000 (UTC) pav 2011-05-03 16:31:37 UTC FreeBSD ports repository Modified files: . MOVED mail Makefile Added files: mail/biabam Makefile distinfo pkg-descr mail/biabam/files patch-biabam Log: - Restore this port, I'm still using it PR: ports/156774 Submitted by: Chris Rees Revision Changes Path 1.2447 +1 -2 ports/MOVED 1.1065 +1 -0 ports/mail/Makefile 1.15 +29 -0 ports/mail/biabam/Makefile (new) 1.8 +3 -0 ports/mail/biabam/distinfo (new) 1.4 +83 -0 ports/mail/biabam/files/patch-biabam (new) 1.5 +14 -0 ports/mail/biabam/pkg-descr (new) _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 16:57:14 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5854E1065673; Tue, 3 May 2011 16:57:14 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2D9118FC1D; Tue, 3 May 2011 16:57:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p43GvEla005776; Tue, 3 May 2011 16:57:14 GMT (envelope-from beech@freefall.freebsd.org) Received: (from beech@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p43GvDiF005772; Tue, 3 May 2011 16:57:13 GMT (envelope-from beech) Date: Tue, 3 May 2011 16:57:13 GMT Message-Id: <201105031657.p43GvDiF005772@freefall.freebsd.org> To: dan@langille.org, beech@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, beech@FreeBSD.org From: beech@FreeBSD.org Cc: Subject: Re: ports/156763: [patch] databases/mantis Update to 1.2.5 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 16:57:14 -0000 Synopsis: [patch] databases/mantis Update to 1.2.5 Responsible-Changed-From-To: freebsd-ports-bugs->beech Responsible-Changed-By: beech Responsible-Changed-When: Tue May 3 16:53:50 UTC 2011 Responsible-Changed-Why: I'll take it http://www.freebsd.org/cgi/query-pr.cgi?pr=156763 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 17:00:25 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 877901065676 for ; Tue, 3 May 2011 17:00:25 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A1A388FC14 for ; Tue, 3 May 2011 17:00:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p43H0O1E006078 for ; Tue, 3 May 2011 17:00:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p43H0OkI006077; Tue, 3 May 2011 17:00:24 GMT (envelope-from gnats) Date: Tue, 3 May 2011 17:00:24 GMT Message-Id: <201105031700.p43H0OkI006077@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Rusty Nejdl Cc: Subject: Re: ports/150883: Ports games/openastromenace won't compile on 64 bit X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Rusty Nejdl List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 17:00:25 -0000 The following reply was made to PR ports/150883; it has been noted by GNATS. From: Rusty Nejdl To: =?UTF-8?Q?=D0=9E=D0=BB=D0=B5=D0=B3_=D0=90=D0=BB=D0=B5=D0=BA=D1=81?= =?UTF-8?Q?=D0=B5=D0=B5=D0=BD=D0=BA=D0=BE=D0=B2?= Cc: Mark Linimon , Subject: Re: ports/150883: Ports games/openastromenace won't compile on 64 bit Date: Tue, 03 May 2011 11:57:54 -0500 On Tue, 03 May 2011 13:48:47 +0400, =D0=9E=D0=BB=D0=B5=D0=B3 =D0=90=D0=BB= =D0=B5=D0=BA=D1=81=D0=B5=D0=B5=D0=BD=D0=BA=D0=BE=D0=B2 wrote: > Mark Linimon =D0=BF=D0=B8=D1=81=D0=B0=D0=BB(=D0=B0= ) =D0=B2 =D1=81=D0=B2=D0=BE=D1=91=D0=BC =D0=BF=D0=B8=D1=81=D1=8C=D0=BC=D0= =B5 Tue, 03 > May 2011 10:40:12 +0400: > >> I've Cc:ed the maintainer, who has been active in the past month,=20 >> but at >> this point IMHO maintainer-timeout should apply and any committer=20 >> would >> thus be able to commit after testing. > > sorry for timeout. > commit it please, if patch does work This patch solves the issue I reported and there have been no changes=20 to the port since this so the patch should apply cleanly. If possible,=20 please commit. I can submit another PR if I find anything else amiss. Rusty Nejdl From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 17:10:02 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D9E861065672 for ; Tue, 3 May 2011 17:10:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id AEC268FC19 for ; Tue, 3 May 2011 17:10:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p43HA29w014746 for ; Tue, 3 May 2011 17:10:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p43HA2ij014745; Tue, 3 May 2011 17:10:02 GMT (envelope-from gnats) Resent-Date: Tue, 3 May 2011 17:10:02 GMT Resent-Message-Id: <201105031710.p43HA2ij014745@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jase Thew Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D74661065672 for ; Tue, 3 May 2011 17:02:40 +0000 (UTC) (envelope-from freebsd@beardz.net) Received: from beardz.net (beardz.net [IPv6:2a01:4f8:121:2403:1::]) by mx1.freebsd.org (Postfix) with ESMTP id 569228FC16 for ; Tue, 3 May 2011 17:02:40 +0000 (UTC) Received: from beardz.net (localhost [127.0.1.7]) by beardz.net (8.14.4/8.14.4) with ESMTP id p43H2c9M012086 for ; Tue, 3 May 2011 18:02:38 +0100 (BST) (envelope-from freebsd@beardz.net) Received: (from root@localhost) by beardz.net (8.14.4/8.14.4/Submit) id p43H2bcR012083; Tue, 3 May 2011 18:02:37 +0100 (BST) (envelope-from freebsd@beardz.net) Message-Id: <201105031702.p43H2bcR012083@beardz.net> Date: Tue, 3 May 2011 18:02:37 +0100 (BST) From: Jase Thew To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/156798: [NEW PORT] devel/p5-POE-Component-Syndicator: A POE component base class which implements the Observer pattern X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 17:10:02 -0000 >Number: 156798 >Category: ports >Synopsis: [NEW PORT] devel/p5-POE-Component-Syndicator: A POE component base class which implements the Observer pattern >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 May 03 17:10:01 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Jase Thew >Release: FreeBSD 8.2-STABLE amd64 >Organization: >Environment: System: FreeBSD jail-ports.localdomain 8.2-STABLE FreeBSD 8.2-STABLE #0: Sat Apr 2 19:17:15 BST >Description: POE::Component::Syndicator is a base class for POE components which need to handle a persistent resource (e.g. a connection to an IRC server) for one or more sessions in an extendable way. This module (as well as Object::Pluggable, which this module inherits from) was born out of POE::Component::IRC, the guts of which quickly spread to other POE components. Now they can all inherit from this module instead. The component provides an event queue, which can be managed with the methods documented below. It handles delivery of events to the object itself, all interested plugins, and all interested sessions. WWW: http://search.cpan.org/dist/POE-Component-Syndicator/ Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- p5-POE-Component-Syndicator-0.01.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: # # p5-POE-Component-Syndicator # p5-POE-Component-Syndicator/distinfo # p5-POE-Component-Syndicator/Makefile # p5-POE-Component-Syndicator/pkg-descr # p5-POE-Component-Syndicator/pkg-plist # echo c - p5-POE-Component-Syndicator mkdir -p p5-POE-Component-Syndicator > /dev/null 2>&1 echo x - p5-POE-Component-Syndicator/distinfo sed 's/^X//' >p5-POE-Component-Syndicator/distinfo << '0be15087f3b514b3be20cff06bd00756' XSHA256 (POE-Component-Syndicator-0.01.tar.gz) = 751dc9d92730eacf5f9ab9fb1c1038a6654a05ef2d8c30d6ad2fbfef38dd0b51 XSIZE (POE-Component-Syndicator-0.01.tar.gz) = 23324 0be15087f3b514b3be20cff06bd00756 echo x - p5-POE-Component-Syndicator/Makefile sed 's/^X//' >p5-POE-Component-Syndicator/Makefile << '51289845a8770a50fad5e8d89ad2cbd1' X# New ports collection makefile for: devel/p5-POE-Component-Syndicator X# Date created: 2011-05-03 X# Whom: Jase Thew X# X# $FreeBSD$ X# X XPORTNAME= POE-Component-Syndicator XPORTVERSION= 0.01 XCATEGORIES= devel perl5 XMASTER_SITES= CPAN/${PORTNAME:C/-.*//}/HINRIK XPKGNAMEPREFIX= p5- X XMAINTAINER= freebsd@beardz.net XCOMMENT= A POE component base class which implements the Observer pattern X XLICENSE_COMB= dual XLICENSE= ART20 GPLv1 X XBUILD_DEPENDS= p5-POE>=1.311:${PORTSDIR}/devel/p5-POE \ X p5-Object-Pluggable>=1.29:${PORTSDIR}/devel/p5-Object-Pluggable \ X p5-Test-Simple>=0:${PORTSDIR}/devel/p5-Test-Simple XRUN_DEPENDS:= ${BUILD_DEPENDS} X XPERL_CONFIGURE= yes X XMAN3= POE::Component::Syndicator.3 X X.include 51289845a8770a50fad5e8d89ad2cbd1 echo x - p5-POE-Component-Syndicator/pkg-descr sed 's/^X//' >p5-POE-Component-Syndicator/pkg-descr << '2f13a5187e3d13dfb2f4e5378335e2d1' XPOE::Component::Syndicator is a base class for POE components which need to Xhandle a persistent resource (e.g. a connection to an IRC server) for one or Xmore sessions in an extendable way. X XThis module (as well as Object::Pluggable, which this module inherits from) Xwas born out of POE::Component::IRC, the guts of which quickly spread to Xother POE components. Now they can all inherit from this module instead. X XThe component provides an event queue, which can be managed with the methods Xdocumented below. It handles delivery of events to the object itself, all Xinterested plugins, and all interested sessions. X XWWW: http://search.cpan.org/dist/POE-Component-Syndicator/ 2f13a5187e3d13dfb2f4e5378335e2d1 echo x - p5-POE-Component-Syndicator/pkg-plist sed 's/^X//' >p5-POE-Component-Syndicator/pkg-plist << '12f78b38baefc9e4defb45c9743d4804' X%%SITE_PERL%%/POE/Component/Syndicator.pm X%%SITE_PERL%%/%%PERL_ARCH%%/auto/POE/Component/Syndicator/.packlist X@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/POE/Component/Syndicator X@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/POE/Component X@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/POE X@dirrmtry %%SITE_PERL%%/POE/Component X@dirrmtry %%SITE_PERL%%/POE 12f78b38baefc9e4defb45c9743d4804 exit --- p5-POE-Component-Syndicator-0.01.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 17:10:13 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2201B1065677; Tue, 3 May 2011 17:10:13 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EAEDE8FC1E; Tue, 3 May 2011 17:10:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p43HACRI015489; Tue, 3 May 2011 17:10:12 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p43HACNU015479; Tue, 3 May 2011 17:10:12 GMT (envelope-from edwin) Date: Tue, 3 May 2011 17:10:12 GMT Message-Id: <201105031710.p43HACNU015479@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156798: [NEW PORT] devel/p5-POE-Component-Syndicator: A POE component base class which implements the Observer pattern X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 17:10:13 -0000 Synopsis: [NEW PORT] devel/p5-POE-Component-Syndicator: A POE component base class which implements the Observer pattern Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Tue May 3 17:10:12 UTC 2011 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156798 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 18:10:13 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 72251106566C for ; Tue, 3 May 2011 18:10:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 60B3D8FC16 for ; Tue, 3 May 2011 18:10:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p43IACvu068329 for ; Tue, 3 May 2011 18:10:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p43IACHW068328; Tue, 3 May 2011 18:10:12 GMT (envelope-from gnats) Date: Tue, 3 May 2011 18:10:12 GMT Message-Id: <201105031810.p43IACHW068328@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: =?UTF-8?Q?Marius_N=C3=BCnnerich?= Cc: Subject: Re: ports/156730: Update: x11/xlockmore to 5.33 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: =?UTF-8?Q?Marius_N=C3=BCnnerich?= List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 18:10:13 -0000 The following reply was made to PR ports/156730; it has been noted by GNATS. From: =?UTF-8?Q?Marius_N=C3=BCnnerich?= To: bug-followup@freebsd.org Cc: Subject: Re: ports/156730: Update: x11/xlockmore to 5.33 Date: Tue, 3 May 2011 19:44:00 +0200 I approve this patch. On Sat, Apr 30, 2011 at 07:50, Edwin Groothuis wrote: > Maintainer of x11/xlockmore, > > Please note that PR ports/156730 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: > =C2=A0 =C2=A0http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dports/156730 > > -- > Edwin Groothuis via the GNATS Auto Assign Tool > edwin@FreeBSD.org > From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 18:30:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B3BD01065674 for ; Tue, 3 May 2011 18:30:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 902248FC1E for ; Tue, 3 May 2011 18:30:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p43IUB8S086329 for ; Tue, 3 May 2011 18:30:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p43IUBp3086325; Tue, 3 May 2011 18:30:11 GMT (envelope-from gnats) Resent-Date: Tue, 3 May 2011 18:30:11 GMT Resent-Message-Id: <201105031830.p43IUBp3086325@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Aldis Berjoza Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DC93D106564A for ; Tue, 3 May 2011 18:22:54 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id B169A8FC1D for ; Tue, 3 May 2011 18:22:54 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p43IMrJ3030125 for ; Tue, 3 May 2011 18:22:53 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p43IMrv5030118; Tue, 3 May 2011 18:22:53 GMT (envelope-from nobody) Message-Id: <201105031822.p43IMrv5030118@red.freebsd.org> Date: Tue, 3 May 2011 18:22:53 GMT From: Aldis Berjoza To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156800: [NEW PORT] graphics/ditaa - ascii diagram to graphics converter X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 18:30:11 -0000 >Number: 156800 >Category: ports >Synopsis: [NEW PORT] graphics/ditaa - ascii diagram to graphics converter >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: Tue May 03 18:30:11 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Aldis Berjoza >Release: >Organization: >Environment: >Description: ditaa is a small command-line utility written in Java, that can convert diagrams drawn using ascii art ('drawings' that contain characters that resemble lines like | / - ), into proper bitmap graphics. http://ditaa.sourceforge.net/ >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: # # ditaa # ditaa/pkg-descr # ditaa/distinfo # ditaa/Makefile # echo c - ditaa mkdir -p ditaa > /dev/null 2>&1 echo x - ditaa/pkg-descr sed 's/^X//' >ditaa/pkg-descr << '9dad28606b0fd95f1eb884d02d2e5b83' Xditaa is a small command-line utility written in Java, that can convert Xdiagrams drawn using ascii art ('drawings' that contain characters that Xresemble lines like | / - ), into proper bitmap graphics. X XWWW: http://ditaa.sourceforge.net/ 9dad28606b0fd95f1eb884d02d2e5b83 echo x - ditaa/distinfo sed 's/^X//' >ditaa/distinfo << '5852cb9c5590025047900f2f15cf7957' XSHA256 (ditaa0_9.zip) = d689e933b80b065cd7c349e489cfb8feea69dd3e91ca78931edc6fa6e098e689 XSIZE (ditaa0_9.zip) = 179547 5852cb9c5590025047900f2f15cf7957 echo x - ditaa/Makefile sed 's/^X//' >ditaa/Makefile << 'f8e5f40d2673984a529b8733e0bfc417' X# New ports collection makefile for: ditta X# Date created: 2011.05.03 X# Whom: Aldis Berjoza X# X# $FreeBSD$ X# X XPORTNAME= ditaa XPORTVERSION= 0.9 XCATEGORIES= graphics java XMASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION} XDISTNAME= ${PORTNAME}${DISTFVERSION} X XMAINTAINER= aldis@bsdroot.lv XCOMMENT= Convert diagrams drawn using ascii into proper bitmap graphics X XUSE_ZIP= yes XUSE_JAVA= yes XJAVA_VERSION= 1.6+ X XLICENSE= GPLv2 X XNO_BUILD= YES X XPLIST_FILES= %%JAVASHAREDIR%%/${PORTNAME}/${PORTNAME}.jar bin/${PORTNAME} XPLIST_DIRS= %%JAVASHAREDIR%%/${PORTNAME} X XDISTFVERSION= 0_9 X Xpre-install: X ${ECHO} "#!/bin/sh" > ${WRKDIR}/${PORTNAME}.sh X ${ECHO} "${PREFIX}/bin/java -jar ${JAVASHAREDIR}/${PORTNAME}/${PORTNAME}.jar \$$*" >> ${WRKDIR}/${PORTNAME}.sh X Xdo-install: X ${MKDIR} ${JAVASHAREDIR}/${PORTNAME} X ${INSTALL_DATA} ${WRKDIR}/${PORTNAME}${DISTFVERSION}.jar ${JAVASHAREDIR}/${PORTNAME}/${PORTNAME}.jar X ${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME}.sh ${PREFIX}/bin/${PORTNAME} X X.include f8e5f40d2673984a529b8733e0bfc417 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 19:12:14 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B37EE106566B; Tue, 3 May 2011 19:12:14 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8AC3D8FC08; Tue, 3 May 2011 19:12:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p43JCEQx030184; Tue, 3 May 2011 19:12:14 GMT (envelope-from beech@freefall.freebsd.org) Received: (from beech@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p43JCEPS030180; Tue, 3 May 2011 19:12:14 GMT (envelope-from beech) Date: Tue, 3 May 2011 19:12:14 GMT Message-Id: <201105031912.p43JCEPS030180@freefall.freebsd.org> To: beech@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, beech@FreeBSD.org From: beech@FreeBSD.org Cc: Subject: Re: ports/156741: x11/wxgtk28: update to the current stable release X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 19:12:14 -0000 Synopsis: x11/wxgtk28: update to the current stable release Responsible-Changed-From-To: freebsd-ports-bugs->beech Responsible-Changed-By: beech Responsible-Changed-When: Tue May 3 19:11:36 UTC 2011 Responsible-Changed-Why: I'll take it http://www.freebsd.org/cgi/query-pr.cgi?pr=156741 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 19:36:36 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3F49D1065676; Tue, 3 May 2011 19:36:36 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 16C268FC08; Tue, 3 May 2011 19:36:36 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p43JaZkU050087; Tue, 3 May 2011 19:36:35 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p43JaZtD050083; Tue, 3 May 2011 19:36:35 GMT (envelope-from arved) Date: Tue, 3 May 2011 19:36:35 GMT Message-Id: <201105031936.p43JaZtD050083@freefall.freebsd.org> To: venture37@geeklan.co.uk, arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: arved@FreeBSD.org Cc: Subject: Re: ports/156784: [MAINTAINER] databases/iplike: update to 2.0.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 19:36:36 -0000 Synopsis: [MAINTAINER] databases/iplike: update to 2.0.0 State-Changed-From-To: open->closed State-Changed-By: arved State-Changed-When: Tue May 3 19:36:27 UTC 2011 State-Changed-Why: Committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=156784 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 19:40:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 895AD1065673 for ; Tue, 3 May 2011 19:40:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 95A278FC16 for ; Tue, 3 May 2011 19:40:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p43Je9XF050223 for ; Tue, 3 May 2011 19:40:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p43Je9VA050222; Tue, 3 May 2011 19:40:09 GMT (envelope-from gnats) Date: Tue, 3 May 2011 19:40:09 GMT Message-Id: <201105031940.p43Je9VA050222@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/156784: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 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: Tue, 03 May 2011 19:40:10 -0000 The following reply was made to PR ports/156784; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/156784: commit references a PR Date: Tue, 3 May 2011 19:36:16 +0000 (UTC) arved 2011-05-03 19:36:07 UTC FreeBSD ports repository Modified files: databases/iplike Makefile distinfo Log: Update to 2.0.0 PR: 156784 Submitted by: maintainer Revision Changes Path 1.3 +2 -2 ports/databases/iplike/Makefile 1.3 +2 -2 ports/databases/iplike/distinfo _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 19:52:46 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 580971065672; Tue, 3 May 2011 19:52:46 +0000 (UTC) (envelope-from dhn@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 14C898FC08; Tue, 3 May 2011 19:52:46 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p43JqjBH066986; Tue, 3 May 2011 19:52:45 GMT (envelope-from dhn@freefall.freebsd.org) Received: (from dhn@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p43JqjJ6066982; Tue, 3 May 2011 19:52:45 GMT (envelope-from dhn) Date: Tue, 3 May 2011 19:52:45 GMT Message-Id: <201105031952.p43JqjJ6066982@freefall.freebsd.org> To: dhn@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, dhn@FreeBSD.org From: dhn@FreeBSD.org Cc: Subject: Re: ports/156790: Update audio/audacity-devel from 1.3.12 to 1.3.13 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 19:52:46 -0000 Synopsis: Update audio/audacity-devel from 1.3.12 to 1.3.13 Responsible-Changed-From-To: freebsd-ports-bugs->dhn Responsible-Changed-By: dhn Responsible-Changed-When: Tue May 3 19:52:45 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=156790 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 21:24:57 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5E55810657AC; Tue, 3 May 2011 21:24:57 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3686C8FC13; Tue, 3 May 2011 21:24:57 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p43LOvKQ050374; Tue, 3 May 2011 21:24:57 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p43LOuFV050370; Tue, 3 May 2011 21:24:56 GMT (envelope-from linimon) Date: Tue, 3 May 2011 21:24:56 GMT Message-Id: <201105032124.p43LOuFV050370@freefall.freebsd.org> To: marius@nuenneri.ch, umeno@rr.iij4u.or.jp, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/156730: Update: x11/xlockmore to 5.33 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 21:24:57 -0000 Synopsis: Update: x11/xlockmore to 5.33 State-Changed-From-To: feedback->open State-Changed-By: linimon State-Changed-When: Tue May 3 21:24:43 UTC 2011 State-Changed-Why: Maintainer approved. http://www.freebsd.org/cgi/query-pr.cgi?pr=156730 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 21:40:08 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 62A251065674 for ; Tue, 3 May 2011 21:40:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3EFD18FC0C for ; Tue, 3 May 2011 21:40:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p43Le83l060239 for ; Tue, 3 May 2011 21:40:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p43Le8g5060238; Tue, 3 May 2011 21:40:08 GMT (envelope-from gnats) Resent-Date: Tue, 3 May 2011 21:40:08 GMT Resent-Message-Id: <201105032140.p43Le8g5060238@freefall.freebsd.org> 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:4f8:fff6::28]) by hub.freebsd.org (Postfix) with ESMTP id C5D40106568E; Tue, 3 May 2011 21:36:01 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from mandree by apollo.emma.line.org with local (Exim 4.75 (FreeBSD)) (envelope-from ) id 1QHNFl-000KkN-4P; Tue, 03 May 2011 23:35:33 +0200 Message-Id: Date: Tue, 03 May 2011 23:35:33 +0200 From: Matthias Andree To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: hrs@FreeBSD.org Subject: ports/156801: print/xdvik does not support parallel build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 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: Tue, 03 May 2011 21:40:08 -0000 >Number: 156801 >Category: ports >Synopsis: print/xdvik does not support parallel build >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 May 03 21:40:07 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Matthias Andree >Release: FreeBSD 8.2-RELEASE amd64 >Organization: >Environment: System: FreeBSD apollo.emma.line.org 8.2-RELEASE FreeBSD 8.2-RELEASE #65: Fri Feb 25 01:47:50 CET 2011 toor@apollo.emma.line.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Building print/xdvik in parallel fails. To reproduce, try: cd /usr/ports/print/xdvik make FORCE_MAKE_JOBS=yes MAKE_JOBS_NUMBER=4 Please either make sure that the dependencies are set properly so that the ar/ranlib tasks are only executed after all compilers have finished, or simply mark the Makefile with MAKE_JOBS_UNSAFE=yes. In my case the failure is this: ar rc libgui.a help-window.o message-window.o mag.o menu.o Panner.o pagesel.o print-dialog.o print-log.o search-dialog.o selection.o sfDir.o sfDraw.o sfPath.o sfSelFile.o statusline.o Tip.o topic-window.o xaw_bitmaps.o xaw_menu.o xicon.o xlwradio.o xm_colorsel.o xm_filesel.o xm_menu.o xm_prefs.o xm_prefs_appearance.o xm_prefs_fonts.o xm_prefs_page.o xm_prefs_scroll.o xm_prefs_helpers.o xm_toolbar.o ranlib libgui.a ranlib libgui.a ranlib: warning: Truncated ar archive ranlib: fatal: Truncated input file (needed 5626 bytes, only 0 available) gmake[3]: Leaving directory `/var/tmp/usr/ports/print/xdvik/work/xdvik-22.84.16/texk/xdvik/gui' cc -DHAVE_CONFIG_H -I. -I. -I.. -I./.. -W -Wall -Wunused -I/usr/local/include -I.. -DPS_GS -DXDVI_KPSE_PROG_NAME=xdvi -I./gui -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -I/usr/local/include -c browser.c -o browser.o gmake[3]: *** [libgui.a] Fehler 65 gmake[3]: Leaving directory `/var/tmp/usr/ports/print/xdvik/work/xdvik-22.84.16/texk/xdvik/gui' gmake[2]: *** [gui/libgui.a] Fehler 2 gmake[2]: *** Warte auf noch nicht beendete Prozesse... gmake[2]: Leaving directory `/var/tmp/usr/ports/print/xdvik/work/xdvik-22.84.16/texk/xdvik' gmake[1]: *** [all] Fehler 1 gmake[1]: Leaving directory `/var/tmp/usr/ports/print/xdvik/work/xdvik-22.84.16/texk' gmake: *** [all] Fehler 1 ===> Compilation failed unexpectedly. You have chosen to use multiple make jobs (parallelization) for all ports. This port was not tested for this setting. Please remove FORCE_MAKE_JOBS and retry the build before reporting the failure to the maintainer. *** Error code 1 Stop in /usr/ports/print/xdvik. ===>>> make failed for print/xdvik ===>>> Aborting update >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 21:40:28 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 76B1D106566C; Tue, 3 May 2011 21:40:28 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4F9C48FC1E; Tue, 3 May 2011 21:40:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p43LeSVQ062386; Tue, 3 May 2011 21:40:28 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p43LeSYP062374; Tue, 3 May 2011 21:40:28 GMT (envelope-from edwin) Date: Tue, 3 May 2011 21:40:28 GMT Message-Id: <201105032140.p43LeSYP062374@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, hrs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156801: print/xdvik does not support parallel build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 21:40:28 -0000 Synopsis: print/xdvik does not support parallel build Responsible-Changed-From-To: freebsd-ports-bugs->hrs Responsible-Changed-By: edwin Responsible-Changed-When: Tue May 3 21:40:27 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156801 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 21:53:54 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 298DC106564A; Tue, 3 May 2011 21:53:54 +0000 (UTC) (envelope-from makc@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 027368FC18; Tue, 3 May 2011 21:53:54 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p43Lrrvo077120; Tue, 3 May 2011 21:53:53 GMT (envelope-from makc@freefall.freebsd.org) Received: (from makc@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p43Lrr2v077116; Tue, 3 May 2011 21:53:53 GMT (envelope-from makc) Date: Tue, 3 May 2011 21:53:53 GMT Message-Id: <201105032153.p43Lrr2v077116@freefall.freebsd.org> To: makc@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, makc@FreeBSD.org From: makc@FreeBSD.org Cc: Subject: Re: ports/156800: [NEW PORT] graphics/ditaa - ascii diagram to graphics converter X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 21:53:54 -0000 Synopsis: [NEW PORT] graphics/ditaa - ascii diagram to graphics converter Responsible-Changed-From-To: freebsd-ports-bugs->makc Responsible-Changed-By: makc Responsible-Changed-When: Tue May 3 21:53:53 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=156800 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 22:00:21 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A7E1F1065674 for ; Tue, 3 May 2011 22:00:21 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 789708FC15 for ; Tue, 3 May 2011 22:00:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p43M0LVd077265 for ; Tue, 3 May 2011 22:00:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p43M0LFk077264; Tue, 3 May 2011 22:00:21 GMT (envelope-from gnats) Resent-Date: Tue, 3 May 2011 22:00:21 GMT Resent-Message-Id: <201105032200.p43M0LFk077264@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Hartmann@FreeBSD.org, "O." Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0FC06106564A for ; Tue, 3 May 2011 21:57:12 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id EAEC58FC0C for ; Tue, 3 May 2011 21:57:11 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p43LvBqc037311 for ; Tue, 3 May 2011 21:57:11 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p43LvB3P037310; Tue, 3 May 2011 21:57:11 GMT (envelope-from nobody) Message-Id: <201105032157.p43LvB3P037310@red.freebsd.org> Date: Tue, 3 May 2011 21:57:11 GMT From: Hartmann@FreeBSD.org, "O." To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156802: x11-wm/windowmaker: clang: dock.c:3804:9: error: non-void function 'handleIconMove' should return a value [-Wreturn-type] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 22:00:21 -0000 >Number: 156802 >Category: ports >Synopsis: x11-wm/windowmaker: clang: dock.c:3804:9: error: non-void function 'handleIconMove' should return a value [-Wreturn-type] >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue May 03 22:00:21 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Hartmann, O. >Release: FreeBSD 9.0-CURRENT/amd64 rr221413 >Organization: FU Berlin >Environment: >Description: Making all in src clang -DHAVE_CONFIG_H -I. -I. -I. -I../wrlib -I../WINGs -I/usr/local/include -I/usr/local/include -I/usr/local/include -DLOCALEDIR=\"/usr/local/share/locale\" -I/usr/local/include -fno-strict-aliasing -O2 -pipe -march=native -fno-strict-aliasing -c actions.c clang -DHAVE_CONFIG_H -I. -I. -I. -I../wrlib -I../WINGs -I/usr/local/include -I/usr/local/include -I/usr/local/include -DLOCALEDIR=\"/usr/local/share/locale\" -I/usr/local/include -fno-strict-aliasing -O2 -pipe -march=native -fno-strict-aliasing -c appicon.c clang -DHAVE_CONFIG_H -I. -I. -I. -I../wrlib -I../WINGs -I/usr/local/include -I/usr/local/include -I/usr/local/include -DLOCALEDIR=\"/usr/local/share/locale\" -I/usr/local/include -fno-strict-aliasing -O2 -pipe -march=native -fno-strict-aliasing -c application.c clang -DHAVE_CONFIG_H -I. -I. -I. -I../wrlib -I../WINGs -I/usr/local/include -I/usr/local/include -I/usr/local/include -DLOCALEDIR=\"/usr/local/share/locale\" -I/usr/local/include -fno-strict-aliasing -O2 -pipe -march=native -fno-strict-aliasing -c appmenu.c clang -DHAVE_CONFIG_H -I. -I. -I. -I../wrlib -I../WINGs -I/usr/local/include -I/usr/local/include -I/usr/local/include -DLOCALEDIR=\"/usr/local/share/locale\" -I/usr/local/include -fno-strict-aliasing -O2 -pipe -march=native -fno-strict-aliasing -c balloon.c clang -DHAVE_CONFIG_H -I. -I. -I. -I../wrlib -I../WINGs -I/usr/local/include -I/usr/local/include -I/usr/local/include -DLOCALEDIR=\"/usr/local/share/locale\" -I/usr/local/include -fno-strict-aliasing -O2 -pipe -march=native -fno-strict-aliasing -c client.c clang -DHAVE_CONFIG_H -I. -I. -I. -I../wrlib -I../WINGs -I/usr/local/include -I/usr/local/include -I/usr/local/include -DLOCALEDIR=\"/usr/local/share/locale\" -I/usr/local/include -fno-strict-aliasing -O2 -pipe -march=native -fno-strict-aliasing -c colormap.c clang -DHAVE_CONFIG_H -I. -I. -I. -I../wrlib -I../WINGs -I/usr/local/include -I/usr/local/include -I/usr/local/include -DLOCALEDIR=\"/usr/local/share/locale\" -I/usr/local/include -fno-strict-aliasing -O2 -pipe -march=native -fno-strict-aliasing -c cycling.c clang -DHAVE_CONFIG_H -I. -I. -I. -I../wrlib -I../WINGs -I/usr/local/include -I/usr/local/include -I/usr/local/include -DLOCALEDIR=\"/usr/local/share/locale\" -I/usr/local/include -fno-strict-aliasing -O2 -pipe -march=native -fno-strict-aliasing -c defaults.c clang -DHAVE_CONFIG_H -I. -I. -I. -I../wrlib -I../WINGs -I/usr/local/include -I/usr/local/include -I/usr/local/include -DLOCALEDIR=\"/usr/local/share/locale\" -I/usr/local/include -fno-strict-aliasing -O2 -pipe -march=native -fno-strict-aliasing -c dialog.c defaults.c:2590:14: warning: comparison of unsigned expression < 0 is always false [-Wtautological-compare] if (mask < 0) { ~~~~ ^ ~ clang -DHAVE_CONFIG_H -I. -I. -I. -I../wrlib -I../WINGs -I/usr/local/include -I/usr/local/include -I/usr/local/include -DLOCALEDIR=\"/usr/local/share/locale\" -I/usr/local/include -fno-strict-aliasing -O2 -pipe -march=native -fno-strict-aliasing -c dock.c dock.c:1626:5: warning: implicit declaration of function 'addDockShortcut' is invalid in C99 [-Wimplicit-function-declaration] if(addDockShortcut(WMGetFromPLString(cmd), aicon)) ^ dock.c:1971:9: warning: implicit declaration of function 'rebindKeygrabs' is invalid in C99 [-Wimplicit-function-declaration] rebindKeygrabs(dock->screen_ptr); ^ dock.c:3804:9: error: non-void function 'handleIconMove' should return a value [-Wreturn-type] return; ^ dock.c:4520:9: warning: implicit declaration of function 'wXModifierFromKey' is invalid in C99 [-Wimplicit-function-declaration] mod = wXModifierFromKey(b); ^ dock.c:4582:12: warning: using the result of an assignment as a condition without parentheses [-Wparentheses] if(done = wDockPerformShortcut(scr->workspaces[i]->clip, event)) break; ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ dock.c:4582:12: note: place parentheses around the assignment to silence this warning if(done = wDockPerformShortcut(scr->workspaces[i]->clip, event)) break; ^ ( ) dock.c:4582:12: note: use '==' to turn this assignment into an equality comparison if(done = wDockPerformShortcut(scr->workspaces[i]->clip, event)) break; ^ == 4 warnings and 1 error generated. 1 warning generated. *** Error code 1 1 error *** Error code 1 1 error *** Error code 1 Stop in /usr/ports/x11-wm/windowmaker. *** Error code 1 Stop in /usr/ports/x11-wm/windowmaker. ===>>> make failed for x11-wm/windowmaker ===>>> Aborting update Terminated >How-To-Repeat: Try to compile x11-wm/windowmaker from most recent ports repository with recent FreeBSD 9.0-CURRENT's "llvm/clang" >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 22:00:38 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 53819106564A; Tue, 3 May 2011 22:00:38 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2B3278FC19; Tue, 3 May 2011 22:00:38 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p43M0cp9078272; Tue, 3 May 2011 22:00:38 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p43M0cMW078263; Tue, 3 May 2011 22:00:38 GMT (envelope-from edwin) Date: Tue, 3 May 2011 22:00:38 GMT Message-Id: <201105032200.p43M0cMW078263@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, dougb@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156802: x11-wm/windowmaker: clang: dock.c:3804:9: error: non-void function 'handleIconMove' should return a value [-Wreturn-type] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 22:00:38 -0000 Synopsis: x11-wm/windowmaker: clang: dock.c:3804:9: error: non-void function 'handleIconMove' should return a value [-Wreturn-type] Responsible-Changed-From-To: freebsd-ports-bugs->dougb Responsible-Changed-By: edwin Responsible-Changed-When: Tue May 3 22:00:37 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156802 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 22:09:36 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8E3101065670; Tue, 3 May 2011 22:09:36 +0000 (UTC) (envelope-from glarkin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 667078FC08; Tue, 3 May 2011 22:09:36 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p43M9awc086090; Tue, 3 May 2011 22:09:36 GMT (envelope-from glarkin@freefall.freebsd.org) Received: (from glarkin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p43M9Zxm086086; Tue, 3 May 2011 18:09:35 -0400 (EDT) (envelope-from glarkin) Date: Tue, 3 May 2011 18:09:35 -0400 (EDT) Message-Id: <201105032209.p43M9Zxm086086@freefall.freebsd.org> To: hirner@bitfire.at, glarkin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: glarkin@FreeBSD.org Cc: Subject: Re: ports/154453: Rewritten port: audio/teamspeak_server X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2011 22:09:36 -0000 Synopsis: Rewritten port: audio/teamspeak_server State-Changed-From-To: open->closed State-Changed-By: glarkin State-Changed-When: Tue May 3 18:09:20 EDT 2011 State-Changed-Why: Committed with additional minor changes, thank you! http://www.freebsd.org/cgi/query-pr.cgi?pr=154453 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 22:10:12 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5FFA8106564A for ; Tue, 3 May 2011 22:10:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 51E108FC08 for ; Tue, 3 May 2011 22:10:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p43MACQR086181 for ; Tue, 3 May 2011 22:10:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p43MACxe086180; Tue, 3 May 2011 22:10:12 GMT (envelope-from gnats) Date: Tue, 3 May 2011 22:10:12 GMT Message-Id: <201105032210.p43MACxe086180@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/154453: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 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: Tue, 03 May 2011 22:10:12 -0000 The following reply was made to PR ports/154453; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/154453: commit references a PR Date: Tue, 3 May 2011 22:06:20 +0000 (UTC) glarkin 2011-05-03 22:06:11 UTC FreeBSD ports repository Modified files: . LEGAL UIDs GIDs audio/teamspeak3-server Makefile distinfo pkg-descr pkg-plist Added files: audio/teamspeak3-server/files LICENSE pkg-message.in teamspeak.in Removed files: audio/teamspeak3-server pkg-install audio/teamspeak3-server/files teamspeak-server.in Log: - Updated to 3.0.0.b30 [1] - Over to new volunteer [1] - Added new UID, GID, and LEGAL entries [1] - Fixed rc.conf variable name in pkg-message - Fixed a couple of portlint warnings PR: ports/154453 [1] Submitted by: Richard Hirner Reviewed by: Chris Rees Revision Changes Path 1.135 +2 -1 ports/GIDs 1.655 +2 -1 ports/LEGAL 1.150 +2 -1 ports/UIDs 1.15 +63 -28 ports/audio/teamspeak3-server/Makefile 1.8 +4 -4 ports/audio/teamspeak3-server/distinfo 1.1 +153 -0 ports/audio/teamspeak3-server/files/LICENSE (new) 1.1 +12 -0 ports/audio/teamspeak3-server/files/pkg-message.in (new) 1.5 +0 -38 ports/audio/teamspeak3-server/files/teamspeak-server.in (dead) 1.1 +38 -0 ports/audio/teamspeak3-server/files/teamspeak.in (new) 1.3 +2 -3 ports/audio/teamspeak3-server/pkg-descr 1.2 +0 -72 ports/audio/teamspeak3-server/pkg-install (dead) 1.6 +247 -254 ports/audio/teamspeak3-server/pkg-plist _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 3 22:10:14 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 48E3C106566B for ; Tue, 3 May 2011 22:10:14 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3AE948FC0A for ; Tue, 3 May 2011 22:10:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p43MAE4s086194 for ; Tue, 3 May 2011 22:10:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p43MAEpJ086193; Tue, 3 May 2011 22:10:14 GMT (envelope-from gnats) Date: Tue, 3 May 2011 22:10:14 GMT Message-Id: <201105032210.p43MAEpJ086193@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/154453: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 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: Tue, 03 May 2011 22:10:14 -0000 The following reply was made to PR ports/154453; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/154453: commit references a PR Date: Tue, 3 May 2011 22:09:10 +0000 (UTC) glarkin 2011-05-03 22:09:02 UTC FreeBSD ports repository Modified files: audio Makefile Log: - Hook audio/teamspeak3-server into the build PR: ports/154453 Revision Changes Path 1.1167 +1 -0 ports/audio/Makefile _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 4 02:40:09 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4E318106566C for ; Wed, 4 May 2011 02:40:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 28C4A8FC16 for ; Wed, 4 May 2011 02:40:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p442e9Ol030346 for ; Wed, 4 May 2011 02:40:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p442e9EK030345; Wed, 4 May 2011 02:40:09 GMT (envelope-from gnats) Resent-Date: Wed, 4 May 2011 02:40:09 GMT Resent-Message-Id: <201105040240.p442e9EK030345@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Hartmann@FreeBSD.org, "O." Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 89632106564A for ; Wed, 4 May 2011 02:32:30 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 5C0158FC08 for ; Wed, 4 May 2011 02:32:30 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p442WUgl076492 for ; Wed, 4 May 2011 02:32:30 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p442WUMX076491; Wed, 4 May 2011 02:32:30 GMT (envelope-from nobody) Message-Id: <201105040232.p442WUMX076491@red.freebsd.org> Date: Wed, 4 May 2011 02:32:30 GMT From: Hartmann@FreeBSD.org, "O." To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156803: multimedia/ffmpeg: CLANG: libavcodec/x86/dsputil_mmx.c:609:10: error: invalid operand for instruction "movzx (%3, %4), %2 \n" X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 May 2011 02:40:09 -0000 >Number: 156803 >Category: ports >Synopsis: multimedia/ffmpeg: CLANG: libavcodec/x86/dsputil_mmx.c:609:10: error: invalid operand for instruction "movzx (%3,%4), %2 \n" >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 May 04 02:40:08 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Hartmann, O. >Release: FreeBSD 9.0-CURRENT/amd64 r221413 >Organization: FU Berlin >Environment: >Description: Receiving the following error during compilation of the port with CLANG. /etc/make.conf is setup as recommended by the WIKI. 1 warning generated. CC libavcodec/x86/lpc_mmx.o CC libavcodec/x86/mlpdsp.o CC libavcodec/x86/motion_est_mmx.o CC libavcodec/x86/mpegvideo_mmx.o CC libavcodec/x86/simple_idct_mmx.o CC libavcodec/x86/snowdsp_mmx.o CC libavcodec/x86/vc1dsp_mmx.o libavcodec/x86/snowdsp_mmx.c:848:10: error: ambiguous instructions require an explicit suffix (could be 'addb', 'addw', 'addl', or 'addq') snow_inner_add_yblock_mmx_end("32") ^ libavcodec/x86/snowdsp_mmx.c:813:48: note: instantiated from: "add %%"REG_c", (%%"REG_a") \n\t"\ ^ :139:2: note: instantiated into assembly here add $8*1, 56(%rsp) ^ libavcodec/x86/snowdsp_mmx.c:831:10: error: ambiguous instructions require an explicit suffix (could be 'addb', 'addw', 'addl', or 'addq') snow_inner_add_yblock_mmx_end("16") ^ libavcodec/x86/snowdsp_mmx.c:813:48: note: instantiated from: "add %%"REG_c", (%%"REG_a") \n\t"\ ^ :78:2: note: instantiated into assembly here add $8*1, 96(%rsp) ^ 2 errors generated. gmake: *** [libavcodec/x86/snowdsp_mmx.o] Error 1 gmake: *** Waiting for unfinished jobs.... libavcodec/x86/dsputil_mmx.c:609:10: error: invalid operand for instruction "movzx (%3,%4), %2 \n" ^ :3:20: note: instantiated into assembly here movzx (%rcx,%r11), %r10d ^ 3 warnings and 1 error generated. gmake: *** [libavcodec/x86/dsputil_mmx.o] Error 1 *** Error code 1 Stop in /usr/ports/multimedia/ffmpeg. *** Error code 1 Stop in /usr/ports/multimedia/ffmpeg. ===>>> make failed for multimedia/ffmpeg ===>>> Aborting update ===>>> Update for multimedia/ffmpeg failed ===>>> Aborting update >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 4 02:40:18 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C51D210656B6; Wed, 4 May 2011 02:40:18 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9A5538FC1A; Wed, 4 May 2011 02:40:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p442eImg030992; Wed, 4 May 2011 02:40:18 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p442eIOf030980; Wed, 4 May 2011 02:40:18 GMT (envelope-from edwin) Date: Wed, 4 May 2011 02:40:18 GMT Message-Id: <201105040240.p442eIOf030980@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, mm@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156803: multimedia/ffmpeg: CLANG: libavcodec/x86/dsputil_mmx.c:609:10: error: invalid operand for instruction "movzx (%3, %4), %2 \n" X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 May 2011 02:40:18 -0000 Synopsis: multimedia/ffmpeg: CLANG: libavcodec/x86/dsputil_mmx.c:609:10: error: invalid operand for instruction "movzx (%3,%4), %2 \n" Responsible-Changed-From-To: freebsd-ports-bugs->mm Responsible-Changed-By: edwin Responsible-Changed-When: Wed May 4 02:40:18 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156803 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 4 03:20:07 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5F5291065674 for ; Wed, 4 May 2011 03:20:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 333058FC12 for ; Wed, 4 May 2011 03:20:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p443K7q6066388 for ; Wed, 4 May 2011 03:20:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p443K7js066387; Wed, 4 May 2011 03:20:07 GMT (envelope-from gnats) Resent-Date: Wed, 4 May 2011 03:20:07 GMT Resent-Message-Id: <201105040320.p443K7js066387@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jase Thew Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F36BC106564A for ; Wed, 4 May 2011 03:11:47 +0000 (UTC) (envelope-from freebsd@beardz.net) Received: from beardz.net (beardz.net [IPv6:2a01:4f8:121:2403:1::]) by mx1.freebsd.org (Postfix) with ESMTP id 8F9568FC08 for ; Wed, 4 May 2011 03:11:47 +0000 (UTC) Received: from beardz.net (localhost [127.0.1.7]) by beardz.net (8.14.4/8.14.4) with ESMTP id p443BjbS088019 for ; Wed, 4 May 2011 04:11:45 +0100 (BST) (envelope-from freebsd@beardz.net) Received: (from root@localhost) by beardz.net (8.14.4/8.14.4/Submit) id p443Bj1J088018; Wed, 4 May 2011 04:11:45 +0100 (BST) (envelope-from freebsd@beardz.net) Message-Id: <201105040311.p443Bj1J088018@beardz.net> Date: Wed, 4 May 2011 04:11:45 +0100 (BST) From: Jase Thew To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/156804: [MAINTAINER] dns/p5-POE-Component-Resolver: update to 0.912 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 May 2011 03:20:07 -0000 >Number: 156804 >Category: ports >Synopsis: [MAINTAINER] dns/p5-POE-Component-Resolver: update to 0.912 >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 May 04 03:20:06 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Jase Thew >Release: FreeBSD 8.2-STABLE amd64 >Organization: >Environment: System: FreeBSD jail-ports.localdomain 8.2-STABLE FreeBSD 8.2-STABLE #0: Sat Apr 2 19:17:15 BST >Description: - Update to 0.912 - Add licence Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- p5-POE-Component-Resolver-0.912.patch begins here --- diff -ruN --exclude=CVS /usr/ports/dns/p5-POE-Component-Resolver.orig/Makefile /usr/ports/dns/p5-POE-Component-Resolver/Makefile --- /usr/ports/dns/p5-POE-Component-Resolver.orig/Makefile 2011-02-26 16:35:08.000000000 +0000 +++ /usr/ports/dns/p5-POE-Component-Resolver/Makefile 2011-05-04 04:06:38.346135627 +0100 @@ -6,7 +6,7 @@ # PORTNAME= POE-Component-Resolver -PORTVERSION= 0.911 +PORTVERSION= 0.912 CATEGORIES= dns devel perl5 MASTER_SITES= CPAN/${PORTNAME:C/-.*//}/RCAPUTO PKGNAMEPREFIX= p5- @@ -14,7 +14,10 @@ MAINTAINER= freebsd@beardz.net COMMENT= A non-blocking getaddrinfo() resolver -BUILD_DEPENDS= p5-POE>=1.299:${PORTSDIR}/devel/p5-POE \ +LICENSE_COMB= dual +LICENSE= ART20 GPLv1 + +BUILD_DEPENDS= p5-POE>=1.311:${PORTSDIR}/devel/p5-POE \ p5-Scalar-List-Utils>=1.23:${PORTSDIR}/lang/p5-Scalar-List-Utils \ p5-Socket-GetAddrInfo>=0.19:${PORTSDIR}/net/p5-Socket-GetAddrInfo \ p5-Test-Simple>=0.96:${PORTSDIR}/devel/p5-Test-Simple @@ -22,7 +25,8 @@ PERL_CONFIGURE= yes -MAN3= POE::Component::Resolver.3 +MAN3= POE::Component::Resolver.3 \ + POE::Component::Resolver::Sidecar.3 .include diff -ruN --exclude=CVS /usr/ports/dns/p5-POE-Component-Resolver.orig/distinfo /usr/ports/dns/p5-POE-Component-Resolver/distinfo --- /usr/ports/dns/p5-POE-Component-Resolver.orig/distinfo 2011-02-26 16:32:49.000000000 +0000 +++ /usr/ports/dns/p5-POE-Component-Resolver/distinfo 2011-05-04 04:06:38.345124328 +0100 @@ -1,2 +1,2 @@ -SHA256 (POE-Component-Resolver-0.911.tar.gz) = 86063867532ff38d4d4d9e5c902053a1c4bd33c0407c5f211d2cb12279e230bc -SIZE (POE-Component-Resolver-0.911.tar.gz) = 24181 +SHA256 (POE-Component-Resolver-0.912.tar.gz) = 75648dcd441bb60cb57bed96ab8ae16d26901af6d9512c7b7f65b85ed51e3de4 +SIZE (POE-Component-Resolver-0.912.tar.gz) = 26709 diff -ruN --exclude=CVS /usr/ports/dns/p5-POE-Component-Resolver.orig/pkg-plist /usr/ports/dns/p5-POE-Component-Resolver/pkg-plist --- /usr/ports/dns/p5-POE-Component-Resolver.orig/pkg-plist 2011-02-26 16:32:49.000000000 +0000 +++ /usr/ports/dns/p5-POE-Component-Resolver/pkg-plist 2011-05-04 04:06:38.346135627 +0100 @@ -1,7 +1,9 @@ %%SITE_PERL%%/%%PERL_ARCH%%/auto/POE/Component/Resolver/.packlist +%%SITE_PERL%%/POE/Component/Resolver/Sidecar.pm %%SITE_PERL%%/POE/Component/Resolver.pm -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/POE/Component/Resolver +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/POE/Component/Resolver @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/POE/Component @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/POE +@dirrm %%SITE_PERL%%/POE/Component/Resolver @dirrmtry %%SITE_PERL%%/POE/Component @dirrmtry %%SITE_PERL%%/POE --- p5-POE-Component-Resolver-0.912.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 4 03:20:21 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1EDD9106564A; Wed, 4 May 2011 03:20:21 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E9C7E8FC19; Wed, 4 May 2011 03:20:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p443KKeR067479; Wed, 4 May 2011 03:20:20 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p443KKg6067468; Wed, 4 May 2011 03:20:20 GMT (envelope-from edwin) Date: Wed, 4 May 2011 03:20:20 GMT Message-Id: <201105040320.p443KKg6067468@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156804: [MAINTAINER] dns/p5-POE-Component-Resolver: update to 0.912 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 May 2011 03:20:21 -0000 Synopsis: [MAINTAINER] dns/p5-POE-Component-Resolver: update to 0.912 Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Wed May 4 03:20:20 UTC 2011 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156804 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 4 03:30:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8D333106566C for ; Wed, 4 May 2011 03:30:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 66DFA8FC1A for ; Wed, 4 May 2011 03:30:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p443UBro074634 for ; Wed, 4 May 2011 03:30:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p443UBB5074632; Wed, 4 May 2011 03:30:11 GMT (envelope-from gnats) Resent-Date: Wed, 4 May 2011 03:30:11 GMT Resent-Message-Id: <201105040330.p443UBB5074632@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jase Thew Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 499A2106566B; Wed, 4 May 2011 03:26:02 +0000 (UTC) (envelope-from freebsd@beardz.net) Received: from beardz.net (beardz.net [IPv6:2a01:4f8:121:2403:1::]) by mx1.freebsd.org (Postfix) with ESMTP id C14208FC1D; Wed, 4 May 2011 03:26:01 +0000 (UTC) Received: from beardz.net (localhost [127.0.1.7]) by beardz.net (8.14.4/8.14.4) with ESMTP id p443PxuK092139; Wed, 4 May 2011 04:25:59 +0100 (BST) (envelope-from freebsd@beardz.net) Received: (from root@localhost) by beardz.net (8.14.4/8.14.4/Submit) id p443PwDY092138; Wed, 4 May 2011 04:25:58 +0100 (BST) (envelope-from freebsd@beardz.net) Message-Id: <201105040325.p443PwDY092138@beardz.net> Date: Wed, 4 May 2011 04:25:58 +0100 (BST) From: Jase Thew To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: perl@FreeBSD.org Subject: ports/156805: [PATCH] net/p5-POE-Component-Client-Keepalive: update to 0.2670 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 May 2011 03:30:11 -0000 >Number: 156805 >Category: ports >Synopsis: [PATCH] net/p5-POE-Component-Client-Keepalive: update to 0.2670 >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 May 04 03:30:11 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Jase Thew >Release: FreeBSD 8.2-STABLE amd64 >Organization: >Environment: System: FreeBSD jail-ports.localdomain 8.2-STABLE FreeBSD 8.2-STABLE #0: Sat Apr 2 19:17:15 BST >Description: - Update to 0.2670 Please note, this PR has a dependancy on update PR ports/156804 Port maintainer (perl@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- p5-POE-Component-Client-Keepalive-0.2670.patch begins here --- diff -ruN --exclude=CVS /usr/ports/net/p5-POE-Component-Client-Keepalive.orig/Makefile /usr/ports/net/p5-POE-Component-Client-Keepalive/Makefile --- /usr/ports/net/p5-POE-Component-Client-Keepalive.orig/Makefile 2011-02-26 16:05:00.000000000 +0000 +++ /usr/ports/net/p5-POE-Component-Client-Keepalive/Makefile 2011-05-04 04:08:38.195739109 +0100 @@ -6,7 +6,7 @@ # PORTNAME= POE-Component-Client-Keepalive -PORTVERSION= 0.2660 +PORTVERSION= 0.2670 CATEGORIES= net perl5 MASTER_SITES= CPAN/${PORTNAME:C/-.*//}/RCAPUTO PKGNAMEPREFIX= p5- @@ -15,10 +15,10 @@ MAINTAINER= perl@FreeBSD.org COMMENT= POE component for managing connections, with keep-alive -BUILD_DEPENDS= p5-POE>=1.299:${PORTSDIR}/devel/p5-POE \ - p5-POE-Component-Resolver>=0.911:${PORTSDIR}/dns/p5-POE-Component-Resolver \ +BUILD_DEPENDS= p5-POE>=1.311:${PORTSDIR}/devel/p5-POE \ + p5-POE-Component-Resolver>=0.912:${PORTSDIR}/dns/p5-POE-Component-Resolver \ p5-Net-IP>=1.25:${PORTSDIR}/net-mgmt/p5-Net-IP -RUN_DEPENDS= ${BUILD_DEPENDS} +RUN_DEPENDS:= ${BUILD_DEPENDS} LICENSE= ART10 GPLv1 LICENSE_COMB= dual diff -ruN --exclude=CVS /usr/ports/net/p5-POE-Component-Client-Keepalive.orig/distinfo /usr/ports/net/p5-POE-Component-Client-Keepalive/distinfo --- /usr/ports/net/p5-POE-Component-Client-Keepalive.orig/distinfo 2011-02-26 16:05:00.000000000 +0000 +++ /usr/ports/net/p5-POE-Component-Client-Keepalive/distinfo 2011-05-04 04:08:38.196738954 +0100 @@ -1,2 +1,2 @@ -SHA256 (POE-Component-Client-Keepalive-0.266.tar.gz) = 176e7aaf0317b7f0c98ef09c7273a8afe96e2670766465729b05300f0a5a3444 -SIZE (POE-Component-Client-Keepalive-0.266.tar.gz) = 40100 +SHA256 (POE-Component-Client-Keepalive-0.267.tar.gz) = 910fb856fd0ebeb94770385a252e35f26d114ee2d1aa3072e8c5b786e00e9b09 +SIZE (POE-Component-Client-Keepalive-0.267.tar.gz) = 40415 --- p5-POE-Component-Client-Keepalive-0.2670.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 4 03:30:24 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 35BD6106564A; Wed, 4 May 2011 03:30:24 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0CF6F8FC17; Wed, 4 May 2011 03:30:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p443UNSw075711; Wed, 4 May 2011 03:30:23 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p443UNtn075696; Wed, 4 May 2011 03:30:23 GMT (envelope-from edwin) Date: Wed, 4 May 2011 03:30:23 GMT Message-Id: <201105040330.p443UNtn075696@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156805: [PATCH] net/p5-POE-Component-Client-Keepalive: update to 0.2670 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 May 2011 03:30:24 -0000 Synopsis: [PATCH] net/p5-POE-Component-Client-Keepalive: update to 0.2670 Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Wed May 4 03:30:23 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156805 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 4 03:40:06 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 237F8106564A for ; Wed, 4 May 2011 03:40:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EB20C8FC1C for ; Wed, 4 May 2011 03:40:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p443e553084516 for ; Wed, 4 May 2011 03:40:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p443e5Rw084515; Wed, 4 May 2011 03:40:05 GMT (envelope-from gnats) Resent-Date: Wed, 4 May 2011 03:40:05 GMT Resent-Message-Id: <201105040340.p443e5Rw084515@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jase Thew Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9E8B9106566B; Wed, 4 May 2011 03:32:50 +0000 (UTC) (envelope-from freebsd@beardz.net) Received: from beardz.net (beardz.net [IPv6:2a01:4f8:121:2403:1::]) by mx1.freebsd.org (Postfix) with ESMTP id 2254A8FC19; Wed, 4 May 2011 03:32:49 +0000 (UTC) Received: from beardz.net (localhost [127.0.1.7]) by beardz.net (8.14.4/8.14.4) with ESMTP id p443Wm44093901; Wed, 4 May 2011 04:32:48 +0100 (BST) (envelope-from freebsd@beardz.net) Received: (from root@localhost) by beardz.net (8.14.4/8.14.4/Submit) id p443WmdL093900; Wed, 4 May 2011 04:32:48 +0100 (BST) (envelope-from freebsd@beardz.net) Message-Id: <201105040332.p443WmdL093900@beardz.net> Date: Wed, 4 May 2011 04:32:48 +0100 (BST) From: Jase Thew To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: perl@FreeBSD.org Subject: ports/156806: [PATCH] www/p5-POE-Component-Client-HTTP: update to 0.9430 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 May 2011 03:40:06 -0000 >Number: 156806 >Category: ports >Synopsis: [PATCH] www/p5-POE-Component-Client-HTTP: update to 0.9430 >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 May 04 03:40:05 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Jase Thew >Release: FreeBSD 8.2-STABLE amd64 >Organization: >Environment: System: FreeBSD jail-ports.localdomain 8.2-STABLE FreeBSD 8.2-STABLE #0: Sat Apr 2 19:17:15 BST >Description: - Update to 0.9430 Please note, this PR has a dependancy on update PR ports/156805 Port maintainer (perl@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- p5-POE-Component-Client-HTTP-0.9430.patch begins here --- diff -ruN --exclude=CVS /usr/ports/www/p5-POE-Component-Client-HTTP.orig/Makefile /usr/ports/www/p5-POE-Component-Client-HTTP/Makefile --- /usr/ports/www/p5-POE-Component-Client-HTTP.orig/Makefile 2011-02-26 16:13:30.000000000 +0000 +++ /usr/ports/www/p5-POE-Component-Client-HTTP/Makefile 2011-05-04 04:09:28.247399319 +0100 @@ -6,7 +6,7 @@ # PORTNAME= POE-Component-Client-HTTP -PORTVERSION= 0.9420 +PORTVERSION= 0.9430 CATEGORIES= www perl5 MASTER_SITES= CPAN/${PORTNAME:C/-.*//}/RCAPUTO PKGNAMEPREFIX= p5- @@ -15,10 +15,10 @@ MAINTAINER= perl@FreeBSD.org COMMENT= POE component for non-blocking/concurrent HTTP queries -BUILD_DEPENDS= p5-POE>=1.299:${PORTSDIR}/devel/p5-POE \ +BUILD_DEPENDS= p5-POE>=1.311:${PORTSDIR}/devel/p5-POE \ p5-libwww>=0:${PORTSDIR}/www/p5-libwww \ p5-URI>=1.37:${PORTSDIR}/net/p5-URI \ - p5-POE-Component-Client-Keepalive>=0.2660:${PORTSDIR}/net/p5-POE-Component-Client-Keepalive \ + p5-POE-Component-Client-Keepalive>=0.2670:${PORTSDIR}/net/p5-POE-Component-Client-Keepalive \ p5-Test-POE-Server-TCP>=1.14:${PORTSDIR}/devel/p5-Test-POE-Server-TCP \ p5-Test-Simple>=0.96:${PORTSDIR}/devel/p5-Test-Simple \ p5-Socket-GetAddrInfo>=0.19:${PORTSDIR}/net/p5-Socket-GetAddrInfo diff -ruN --exclude=CVS /usr/ports/www/p5-POE-Component-Client-HTTP.orig/distinfo /usr/ports/www/p5-POE-Component-Client-HTTP/distinfo --- /usr/ports/www/p5-POE-Component-Client-HTTP.orig/distinfo 2011-02-26 16:13:30.000000000 +0000 +++ /usr/ports/www/p5-POE-Component-Client-HTTP/distinfo 2011-05-04 04:09:28.248410060 +0100 @@ -1,2 +1,2 @@ -SHA256 (POE-Component-Client-HTTP-0.942.tar.gz) = 2a1928a7e164dfd9c737907f4bb36e3bb08bff953ffa0e2d3b8727bb2570fc0d -SIZE (POE-Component-Client-HTTP-0.942.tar.gz) = 75789 +SHA256 (POE-Component-Client-HTTP-0.943.tar.gz) = ec1cef1c94373efea058c650521df5d7189d19cb99099c47a6115f3b5b9a701c +SIZE (POE-Component-Client-HTTP-0.943.tar.gz) = 80108 --- p5-POE-Component-Client-HTTP-0.9430.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 4 03:40:16 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2B581106566B; Wed, 4 May 2011 03:40:16 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 031988FC08; Wed, 4 May 2011 03:40:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p443eFH4084902; Wed, 4 May 2011 03:40:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p443eFvI084893; Wed, 4 May 2011 03:40:15 GMT (envelope-from edwin) Date: Wed, 4 May 2011 03:40:15 GMT Message-Id: <201105040340.p443eFvI084893@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156806: [PATCH] www/p5-POE-Component-Client-HTTP: update to 0.9430 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 May 2011 03:40:16 -0000 Synopsis: [PATCH] www/p5-POE-Component-Client-HTTP: update to 0.9430 Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Wed May 4 03:40:15 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156806 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 4 03:57:49 2011 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2ADEA1065673; Wed, 4 May 2011 03:57:49 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from mail.soaustin.net (pancho.soaustin.net [76.74.250.40]) by mx1.freebsd.org (Postfix) with ESMTP id 0BCC48FC0A; Wed, 4 May 2011 03:57:48 +0000 (UTC) Received: by mail.soaustin.net (Postfix, from userid 502) id 5191756161; Tue, 3 May 2011 22:57:48 -0500 (CDT) Date: Tue, 3 May 2011 22:57:48 -0500 From: Mark Linimon To: Grzegorz Blach Message-ID: <20110504035748.GA21163@lonesome.com> References: <201101302136.p0ULagv0005772@red.freebsd.org> <201101302140.p0ULe7tr093164@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.20 (2009-06-14) Cc: freebsd-ports-bugs@freebsd.org, FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/154402: updates for enlightenment 0.17 and related ports X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 May 2011 03:57:49 -0000 AFAICT miwi was still having problems building it, and had asked for your feedback. mcl From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 4 06:00:25 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 85D511065672 for ; Wed, 4 May 2011 06:00:25 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4384E8FC12 for ; Wed, 4 May 2011 06:00:25 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p4460Pp8014886 for ; Wed, 4 May 2011 06:00:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p4460P3I014877; Wed, 4 May 2011 06:00:25 GMT (envelope-from gnats) Resent-Date: Wed, 4 May 2011 06:00:25 GMT Resent-Message-Id: <201105040600.p4460P3I014877@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Max Brazhnikov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0D4021065670 for ; Wed, 4 May 2011 05:57:16 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id F20F88FC0A for ; Wed, 4 May 2011 05:57:15 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p445vFFE065269 for ; Wed, 4 May 2011 05:57:15 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p445vFQj065268; Wed, 4 May 2011 05:57:15 GMT (envelope-from nobody) Message-Id: <201105040557.p445vFQj065268@red.freebsd.org> Date: Wed, 4 May 2011 05:57:15 GMT From: Max Brazhnikov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156807: print/xfce4-print: fix dependency on libcups X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 May 2011 06:00:25 -0000 >Number: 156807 >Category: ports >Synopsis: print/xfce4-print: fix dependency on libcups >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 May 04 06:00:24 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Max Brazhnikov >Release: FreeBSD 8.2-STABLE amd64 >Organization: >Environment: FreeBSD luna.dio.ru 8.2-STABLE FreeBSD 8.2-STABLE #2: Sat Apr 30 18:09:38 MSD 2011 root@luna.dio.ru:/usr/obj/usr/freebsd/8/src/sys/LUNA amd64 >Description: cups port was split a long time ago and now libcups.so is provided by print/cups-client >How-To-Repeat: >Fix: Patch attached with submission follows: Index: Makefile =================================================================== RCS file: /home/pcvs/ports/print/xfce4-print/Makefile,v retrieving revision 1.60 diff -u -r1.60 Makefile --- Makefile 3 Mar 2011 10:12:23 -0000 1.60 +++ Makefile 3 May 2011 18:29:00 -0000 @@ -34,7 +34,7 @@ .if defined(WITH_CUPS) CONFIGURE_ARGS+=--enable-cups -LIB_DEPENDS+= cups.2:${PORTSDIR}/print/cups-base +LIB_DEPENDS+= cups.2:${PORTSDIR}/print/cups-client PLIST_SUB+= CUPS="" .else CONFIGURE_ARGS+=--disable-cups >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 4 06:00:40 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CA51A106564A; Wed, 4 May 2011 06:00:40 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A23AA8FC08; Wed, 4 May 2011 06:00:40 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p4460e0t016104; Wed, 4 May 2011 06:00:40 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p4460exE016098; Wed, 4 May 2011 06:00:40 GMT (envelope-from edwin) Date: Wed, 4 May 2011 06:00:40 GMT Message-Id: <201105040600.p4460exE016098@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, oliver@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156807: print/xfce4-print: fix dependency on libcups X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 May 2011 06:00:40 -0000 Synopsis: print/xfce4-print: fix dependency on libcups Responsible-Changed-From-To: freebsd-ports-bugs->oliver Responsible-Changed-By: edwin Responsible-Changed-When: Wed May 4 06:00:39 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156807 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 4 06:35:57 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EB7FC106566C; Wed, 4 May 2011 06:35:57 +0000 (UTC) (envelope-from johans@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C41538FC12; Wed, 4 May 2011 06:35:57 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p446ZvRe051545; Wed, 4 May 2011 06:35:57 GMT (envelope-from johans@freefall.freebsd.org) Received: (from johans@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p446Zv31051541; Wed, 4 May 2011 06:35:57 GMT (envelope-from johans) Date: Wed, 4 May 2011 06:35:57 GMT Message-Id: <201105040635.p446Zv31051541@freefall.freebsd.org> To: johans@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, johans@FreeBSD.org From: johans@FreeBSD.org Cc: Subject: Re: ports/156535: New port: games/fairymax X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 May 2011 06:35:58 -0000 Synopsis: New port: games/fairymax Responsible-Changed-From-To: freebsd-ports-bugs->johans Responsible-Changed-By: johans Responsible-Changed-When: Wed May 4 06:34:06 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=156535 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 4 07:07:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CD0301065674; Wed, 4 May 2011 07:07:11 +0000 (UTC) (envelope-from decke@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A58B08FC15; Wed, 4 May 2011 07:07:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p4477B0I080896; Wed, 4 May 2011 07:07:11 GMT (envelope-from decke@freefall.freebsd.org) Received: (from decke@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p4477BMe080892; Wed, 4 May 2011 07:07:11 GMT (envelope-from decke) Date: Wed, 4 May 2011 07:07:11 GMT Message-Id: <201105040707.p4477BMe080892@freefall.freebsd.org> To: marius@nuenneri.ch, decke@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, decke@FreeBSD.org From: decke@FreeBSD.org Cc: Subject: Re: ports/156730: Update: x11/xlockmore to 5.33 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 May 2011 07:07:11 -0000 Synopsis: Update: x11/xlockmore to 5.33 Responsible-Changed-From-To: freebsd-ports-bugs->decke Responsible-Changed-By: decke Responsible-Changed-When: Wed May 4 07:07:10 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=156730 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 4 08:00:21 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 26DFF106567A for ; Wed, 4 May 2011 08:00:21 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id F1A7D8FC16 for ; Wed, 4 May 2011 08:00:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p4480Kiu048791 for ; Wed, 4 May 2011 08:00:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p4480KQF048789; Wed, 4 May 2011 08:00:20 GMT (envelope-from gnats) Resent-Date: Wed, 4 May 2011 08:00:20 GMT Resent-Message-Id: <201105040800.p4480KQF048789@freefall.freebsd.org> 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 Brovikov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4AD7D106566B for ; Wed, 4 May 2011 07:57:11 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 3C0778FC19 for ; Wed, 4 May 2011 07:57:11 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p447vAMQ076323 for ; Wed, 4 May 2011 07:57:10 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p447vAFr076322; Wed, 4 May 2011 07:57:10 GMT (envelope-from nobody) Message-Id: <201105040757.p447vAFr076322@red.freebsd.org> Date: Wed, 4 May 2011 07:57:10 GMT From: Alexander Brovikov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156808: [patch] net/asterisk: add option for build with libsrtp X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 May 2011 08:00:21 -0000 >Number: 156808 >Category: ports >Synopsis: [patch] net/asterisk: add option for build with libsrtp >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 May 04 08:00:20 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Alexander Brovikov >Release: 8.1-RELEASE >Organization: >Environment: >Description: >How-To-Repeat: >Fix: Patch attached with submission follows: --- /usr/ports/net/asterisk.orig/Makefile 2011-04-20 17:54:33.000000000 +0600 +++ /usr/ports/net/asterisk/Makefile 2011-05-04 13:48:27.000000000 +0600 @@ -60,7 +60,8 @@ ILBC "Enable iLBC codec" off \ SPANDSP "Enable Spandsp faxing support" off \ EXCHANGE "Enable Exchange calendar support" off \ - NEWG711 "Enable new G711 Codec" off + NEWG711 "Enable new G711 Codec" off \ + SRTP "Enable SecureRTP support" off ASTERISK_USER?= asterisk ASTERISK_GROUP?= asterisk @@ -256,6 +257,15 @@ EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-menuselect-tree-g711-new-codec.diff .endif +.if !defined(WITH_SRTP) +PLIST_SUB+= WITH_SRTP="@comment " +CONFIGURE_ARGS+= --without-srtp +.else +PLIST_SUB+= WITH_SRTP="" +BUILD_DEPENDS+= libsrtp>=1.4.4:${PORTSDIR}/net/libsrtp +CONFIGURE_ARGS+= --with-srtp +.endif + .if defined(WITH_MISC_PATCHES) EXTRA_PATCHES+= ${PATCHDIR}/dtmf_debug.diff EXTRA_PATCHES+= ${PATCHDIR}/feature_disconnect.diff diff -ur /usr/ports/net/asterisk.orig/pkg-plist /usr/ports/net/asterisk/pkg-plist --- /usr/ports/net/asterisk.orig/pkg-plist 2011-05-03 01:35:41.000000000 +0600 +++ /usr/ports/net/asterisk/pkg-plist 2011-05-03 13:38:09.000000000 +0600 @@ -470,6 +470,7 @@ lib/asterisk/modules/res_limit.so lib/asterisk/modules/res_phoneprov.so lib/asterisk/modules/res_realtime.so +%%WITH_SRTP%%lib/asterisk/modules/res_srtp.so %%WITH_DAHDI%%lib/asterisk/modules/res_timing_dahdi.so lib/asterisk/modules/res_timing_pthread.so lib/asterisk/modules/app_adsiprog.so >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 4 08:00:31 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B43081065674; Wed, 4 May 2011 08:00:31 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8E8908FC1F; Wed, 4 May 2011 08:00:31 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p4480VaG049181; Wed, 4 May 2011 08:00:31 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p4480VZx049175; Wed, 4 May 2011 08:00:31 GMT (envelope-from edwin) Date: Wed, 4 May 2011 08:00:31 GMT Message-Id: <201105040800.p4480VZx049175@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, flo@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156808: [patch] net/asterisk: add option for build with libsrtp X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 May 2011 08:00:31 -0000 Synopsis: [patch] net/asterisk: add option for build with libsrtp Responsible-Changed-From-To: freebsd-ports-bugs->flo Responsible-Changed-By: edwin Responsible-Changed-When: Wed May 4 08:00:30 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156808 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 4 09:00:23 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6755E1065672 for ; Wed, 4 May 2011 09:00:23 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 29F738FC13 for ; Wed, 4 May 2011 09:00:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p4490NDO006331 for ; Wed, 4 May 2011 09:00:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p4490NQ3006330; Wed, 4 May 2011 09:00:23 GMT (envelope-from gnats) Resent-Date: Wed, 4 May 2011 09:00:23 GMT Resent-Message-Id: <201105040900.p4490NQ3006330@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Stanislav A Svirid Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CB00D106564A for ; Wed, 4 May 2011 08:59:12 +0000 (UTC) (envelope-from count@211.ru) Received: from mx.211.ru (mx.211.ru [193.238.131.194]) by mx1.freebsd.org (Postfix) with ESMTP id B33858FC12 for ; Wed, 4 May 2011 08:59:08 +0000 (UTC) Received: from localhost (mx.211.ru [193.238.131.194]) by mx.211.ru (Postfix) with ESMTP id 4778FD3D14 for ; Wed, 4 May 2011 15:59:07 +0700 (NOVST) Received: from mx.211.ru ([193.238.131.194]) by localhost (mx.211.ru [193.238.131.194]) (amavisd-new, port 10024) with LMTP id FfItVRzGVsdQ for ; Wed, 4 May 2011 15:59:06 +0700 (NOVST) Received: from mail.211.ru (mail.211.ru [10.5.1.2]) by mx.211.ru (Postfix) with ESMTP id 77A4AE869B for ; Wed, 4 May 2011 15:59:01 +0700 (NOVST) Received: from unknown.211.ru (unknown.211.ru [10.3.0.86]) by mail.211.ru (Postfix) with ESMTP id 51B6BDAF01 for ; Wed, 4 May 2011 15:59:01 +0700 (NOVST) Received: from unknown.211.ru (localhost [127.0.0.1]) by unknown.211.ru (8.14.4/8.14.4) with ESMTP id p448x16V014117 for ; Wed, 4 May 2011 15:59:01 +0700 (NOVST) (envelope-from count@unknown.211.ru) Received: (from count@localhost) by unknown.211.ru (8.14.4/8.14.4/Submit) id p448x0S4014116; Wed, 4 May 2011 15:59:00 +0700 (NOVST) (envelope-from count) Message-Id: <201105040859.p448x0S4014116@unknown.211.ru> Date: Wed, 4 May 2011 15:59:00 +0700 (NOVST) From: Stanislav A Svirid To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/156809: [maintainer update] net-mgmt/noc: update from 0.6.2 to 0.6.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Stanislav A Svirid List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 May 2011 09:00:23 -0000 >Number: 156809 >Category: ports >Synopsis: [maintainer update] net-mgmt/noc: update from 0.6.2 to 0.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: Wed May 04 09:00:22 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Stanislav A Svirid >Release: FreeBSD 8.2-RELEASE i386 >Organization: >Environment: System: FreeBSD unknown.211.ru 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Sat Feb 26 19:46:44 NOVT 2011 root@unknown.211.ru:/usr/obj/usr/src/sys/GENERIC i386 >Description: Update to version 0.6.4 Change Log: After six weeks of development NOC 0.6.3 is finally out. This release introduces major improvements in Service Activation area. Among them are: pure-Python telnet and ssh clients implementation allows to override PTY limitations, greatly improve performance and concurrent session limits NOC's non-blocking IO library can use poll() and epoll() methods, as replacement of the classic select() debug-script can run script on several objects at once. Objects can be specified by listing names or using selector as well Optimization of CPU and memory usage allows to work with large configuration files (over 30Mb) Flexible CLI session setup procedure opens way to Cisco Catalyst clusters Configuration management got additional Config Diff Filter Rule, which allows to strip unimportant config changes from notification, while handling them as usually Address Space Management got an ability to import prefixes from equipment's directly connected networks to database. After one month of development NOC 0.6.4 is finally out. This release introduces many major improvements in the Service Activation area. Among them are: SA Sharding Service Activation subsystem can be split into several independing shards, each having dedicated activators and SAE daemons. Sharding opens new ways for horizontal scaling of large installations. In addition, shard can be put offline, disabling only part of SA subsystem for maintainance. WRR load balancing Activator reports its capabilities (including script session limits) to SAE on connect. SAE uses weighted round-robin (WRR) balancing scheme to proportionally distribute the load between activators in the pool. Per-object concurrent scripts limit Managed Object's max_scripts attribute is used as per-object concurrent scripts limit Command snippets Command Snippets are canned parametrized templates for frequenly-used operations, which can be run multiple times on large amount of equipment. Script output templating Scripts launched from Managed Object's script form now utilize neat HTML templates with additional hot actions links. Bunch of usability and stability fixes are also applied. This release introduces new ZTE.ZXR10 profile and several new scripts. Changes in port: Change depends of django to django-1.3.x version only Add options for make 'noc' with GMPY and PEP8 modules Remove creating user anf group from pkg-install script and use bsd.port.mk mechanism. Autogenerate PLIST file from MANIFEST file in distribution. >How-To-Repeat: >Fix: --- noc-0.6.4.patch begins here --- diff -ruN noc.bak/Makefile noc/Makefile --- noc.bak/Makefile 2011-03-17 21:49:13.000000000 +0600 +++ noc/Makefile 2011-05-04 15:25:19.000000000 +0700 @@ -2,23 +2,25 @@ # Date created: 27.08.2009 # Whom: Stanislav Svirid # -# $FreeBSD: ports/net-mgmt/noc/Makefile,v 1.7 2011/03/17 15:49:13 miwi Exp $ +# $FreeBSD: ports/net-mgmt/noc/Makefile,v 1.4 2009/12/18 22:26:11 miwi Exp $ # PORTNAME= noc -PORTVERSION= 0.6.2 +PORTVERSION= 0.6.4 CATEGORIES= net-mgmt python -MASTER_SITES= http://redmine.nocproject.org/attachments/download/104/ -DISTNAME= noc-${PORTVERSION} +MASTER_SITES= http://redmine.nocproject.org/attachments/download/137/ MAINTAINER= count@211.ru COMMENT= Operation Support System (OSS) for the Telco, SP and Enterprise NOC +EXTRA_PATCHES= ${PATCHDIR}/extra-patch-sa_sae.py +EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-0.6.4.rst + LIB_DEPENDS= smi.2:${PORTSDIR}/net-mgmt/libsmi BUILD_DEPENDS= easy_install:${PORTSDIR}/devel/py-setuptools \ ${PYTHON_PKGNAMEPREFIX}sphinx>0:${PORTSDIR}/textproc/py-sphinx \ ${PYTHON_PKGNAMEPREFIX}flup>0:${PORTSDIR}/www/py-flup -RUN_DEPENDS= django-admin.py:${PORTSDIR}/www/py-django \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django>=1.3<1.4:${PORTSDIR}/www/py-django \ ${PYTHON_PKGNAMEPREFIX}django-tagging>0:${PORTSDIR}/www/py-django-tagging \ ${PYTHON_PKGNAMEPREFIX}south>0:${PORTSDIR}/databases/py-south \ ${PYTHON_PKGNAMEPREFIX}coverage>0:${PORTSDIR}/devel/py-coverage \ @@ -28,27 +30,37 @@ ${PYTHON_PKGNAMEPREFIX}creole>0:${PORTSDIR}/textproc/py-creole \ ${PYTHON_PKGNAMEPREFIX}webob>0:${PORTSDIR}/www/py-webob \ ${PYTHON_PKGNAMEPREFIX}WebTest>0:${PORTSDIR}/www/py-WebTest \ - ${PYTHON_PKGNAMEPREFIX}netifaces>0:${PORTSDIR}/net/py-netifaces + ${PYTHON_PKGNAMEPREFIX}netifaces>0:${PORTSDIR}/net/py-netifaces \ + ${PYTHON_SITELIBDIR}/Crypto/__init__.py:${PORTSDIR}/security/py-pycrypto + +OPTIONS= GMPY "Enable use GMP library in SSH" on \ + PEP8 "Intsall pep8 for checking source" off USE_PYTHON= 2.6+ USE_PYDISTUTILS= yes PYDISTUTILS_EGGINFODIR= ${NOCDIR} -CONFLICTS= noc-devel-[0-9].* - LICENSE= BSD -NOCUSER?= noc -NOCGROUP?= noc +NOCUSER= noc +NOCGROUP= noc NOCDIR?= ${PREFIX}/noc NOCDBDIR?= /var/db/noc LOCALSTATE_DIR?=/var/run/noc -NOCUID= 182 -NOCGID= ${NOCUID} +USERS= ${NOCUSER} +GROUPS= ${NOCGROUP} .include +.if defined(WITH_GMPY) +RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/gmpy.so:${PORTSDIR}/math/py-gmpy +.endif + +.if defined(WITH_PEP8) +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}pep8>0:${PORTSDIR}/devel/pep8 +.endif + PLIST_SUB= NOCDIR=${NOCDIR} \ NOCDBDIR=${NOCDBDIR} \ NOCUSER=${NOCUSER} \ @@ -58,6 +70,13 @@ LOCALSTATE_DIR=${LOCALSTATE_DIR} \ PYTHONBASE=${PYTHONBASE} +PLIST_REINPLACE+= noc_static noc_etc noc +PLIST_REINPLACE_NOC= s@dirrm noc$$@dirrmtry noc@ +PLIST_REINPLACE_NOC_STATIC= s@dirrm noc/static@dirrmtry noc/static@ +PLIST_REINPLACE_NOC_ETC= s@dirrm noc/etc@dirrmtry noc/etc@ + +PLIST= ${WRKDIR}/.PLIST.noc + SUB_FILES= pkg-install \ pkg-deinstall \ pkg-message @@ -73,8 +92,9 @@ etc/noc-fcgi.defaults \ etc/noc-launcher.defaults \ etc/noc-notifier.defaults \ - etc/noc-sae.defaults \ etc/noc-probe.defaults \ + etc/noc-sae.defaults \ + etc/noc-scheduler.defaults \ etc/noc.defaults post-extract: @@ -90,14 +110,40 @@ ${REINPLACE_CMD} -e "s@^\(repo *=\).*@\1 ${NOCDBDIR}/repo@" -e "s@^\(backup_dir *=\).*@\1 ${NOCDBDIR}/backup@" etc/noc.defaults; \ ${REINPLACE_CMD} -e "s@^\(PREFIX=\"\).*@\1${NOCDIR}\"@" setup.py; \ _sed_script=`${MKTEMP} tmp.XXXXXX`; \ - for cmd in telnet ssh rsync pg_dump tar gzip smidump smilint fping dig gpg; do \ - ${ECHO} "s@^\\($${cmd} *\\)=.*\$$@\\1 = "`${WHICH} $${cmd}`'@' >> $${_sed_script} ; \ + for cmd in ssh rsync pg_dump tar gzip smidump smilint fping dig gpg; do \ + ${ECHO_CMD} "s@^\\($${cmd} *\\)=.*\$$@\\1 = "`${WHICH} $${cmd}`'@' >> $${_sed_script} ; \ done; \ ${REINPLACE_CMD} -f $${_sed_script} ${NOC_CONF_FILES}; \ ${RM} $${_sed_script}; ) pre-install: @${SH} ${PKGINSTALL} ${DISTNAME} PRE-INSTALL + @>${PLIST} +.for f in ${NOC_CONF_FILES} + @${ECHO_CMD} "@unexec if cmp -s %D/noc/etc/${f} %D/noc/etc/${f:R}.conf; then rm -f %D/noc/etc/${f:R}.conf; fi" >> ${PLIST} +.endfor + @(${CAT} ${WRKSRC}/MANIFEST | ${SED} -e '/^.hg/d; s@^@noc\/@;' \ + -e '/.py$$/ {p; s/.py$$/.pyc/p; s/.pyc$$/.pyo/;} ' | \ + ${EGREP} -v 'noc/(scripts/|setup|share/docs/).*\.py[co]' | \ + ${SORT} >> ${PLIST} ) + @${ECHO_CMD} "@dirrmtry ${NOCDIR:S%^${PREFIX}/%%}/local" >> ${PLIST} + @${ECHO_CMD} "@dirrmtry ${NOCDIR:S%^${PREFIX}/%%}/static/doc" >> ${PLIST} + @(_sed_script=`${MKTEMP} ${WRKDIR}/tmp.XXXXXX`; \ + ${ECHO_CMD} "/^.hg/d" >> $${_sed_script} ;\ + ${ECHO_CMD} "s@^@noc\/@" >> $${_sed_script} ;\ + ${ECHO_CMD} ":u" >> $${_sed_script} ;\ + ${ECHO_CMD} '/\// { s/^[^@]/@dirrm &/; s@/[^/]*$$@@; p; }' >> $${_sed_script} ;\ + ${ECHO_CMD} "tu" >> $${_sed_script} ;\ + ${ECHO_CMD} "d" >> $${_sed_script} ;\ + ${CAT} ${WRKSRC}/MANIFEST | ${SED} -f $${_sed_script} | ${SORT} -r -u >> ${PLIST} ;\ + ${RM} $${_sed_script}; \ + ) + @${ECHO_CMD} "@cwd ${NOCDBDIR}" >> ${PLIST} + @${ECHO_CMD} "@dirrmtry repo" >> ${PLIST} + @${ECHO_CMD} "@dirrmtry backup" >> ${PLIST} + @${ECHO_CMD} "@unexec rmdir ${NOCDBDIR} 2>/dev/null || true" >> ${PLIST} + @${ECHO_CMD} "@cwd /" >> ${PLIST} + @${ECHO_CMD} "@dirrmtry ${LOCALSTATE_DIR}" >> ${PLIST} post-install: @${SH} ${PKGINSTALL} ${DISTNAME} POST-INSTALL diff -ruN noc.bak/distinfo noc/distinfo --- noc.bak/distinfo 2011-03-17 21:49:13.000000000 +0600 +++ noc/distinfo 2011-05-04 11:49:42.000000000 +0700 @@ -1,2 +1,2 @@ -SHA256 (noc-0.6.2.tar.gz) = 700cff7cec20f572484033afb458ebfd6885f5adb1e940ddd7046135424f8027 -SIZE (noc-0.6.2.tar.gz) = 12981116 +SHA256 (noc-0.6.4.tar.gz) = 54f14b48bc478ad15c3a2c0d9d1256a1f21661adbc6ded0a3b8689fdfdb7ba84 +SIZE (noc-0.6.4.tar.gz) = 14993060 diff -ruN noc.bak/files/extra-patch-0.6.4.rst noc/files/extra-patch-0.6.4.rst --- noc.bak/files/extra-patch-0.6.4.rst 1970-01-01 07:00:00.000000000 +0700 +++ noc/files/extra-patch-0.6.4.rst 2011-05-04 15:25:03.000000000 +0700 @@ -0,0 +1,12 @@ +diff -r 6a42abeb3317 -r 88d6b37d594a share/docs/en/nocbook/releasenotes/0.6.4.rst +--- share/docs/en/nocbook/releasenotes/0.6.4.rst.orig ++++ share/docs/en/nocbook/releasenotes/0.6.4.rst +@@ -142,7 +142,7 @@ + Event filters are refreshed on object's address changed + ------------------------------------------------------- + Event filters are reloaded immediately when managed object's addresses +-are changed, reducing amount of _Invalid event filter_ events ++are changed, reducing amount of Invalid event filter events + + Bugfixes + -------- diff -ruN noc.bak/files/extra-patch-sa_sae.py noc/files/extra-patch-sa_sae.py --- noc.bak/files/extra-patch-sa_sae.py 1970-01-01 07:00:00.000000000 +0700 +++ noc/files/extra-patch-sa_sae.py 2011-05-04 15:23:03.000000000 +0700 @@ -0,0 +1,21 @@ +diff -r 8b9fbf3bcff6 -r 302bc22ed16c sa/sae.py +--- sa/sae.py.orig ++++ sa/sae.py +@@ -548,7 +548,8 @@ + Launch a script + """ + def script_callback(transaction, response=None, error=None): +- stream.current_scripts -= 1 ++ if stream is not None: ++ stream.current_scripts -= 1 + if object.profile_name != "NOC.SAE": + try: + self.object_scripts[object.id] -= 1 +@@ -564,6 +565,7 @@ + callback(result=result) + + logging.info("script %s(%s)" % (script_name, object)) ++ stream = None + if object.profile_name != "NOC.SAE": + # Validate activator is present + try: diff -ruN noc.bak/files/patch-main_management_commands_sync-doc.py noc/files/patch-main_management_commands_sync-doc.py --- noc.bak/files/patch-main_management_commands_sync-doc.py 2011-02-05 09:19:10.000000000 +0600 +++ noc/files/patch-main_management_commands_sync-doc.py 1970-01-01 07:00:00.000000000 +0700 @@ -1,29 +0,0 @@ ---- main/management/commands/sync-doc.py.orig 2011-01-31 16:14:43.000000000 +0600 -+++ main/management/commands/sync-doc.py 2011-01-31 16:17:57.000000000 +0600 -@@ -43,10 +43,6 @@ class Command(BaseCommand): - return rewrite_when_differ(db_path,out.getvalue()) - - def handle(self, *args, **options): -- # Prepare paths -- sphinx_build=os.path.abspath(os.path.join("contrib","bin","sphinx-build")) -- if not os.path.exists(sphinx_build): -- raise CommandError("%s not found. Please rebuild contrib/"%sphinx_build) - # - se_db_updated=self.update_se_db() - # Prepare options -@@ -56,6 +52,8 @@ class Command(BaseCommand): - # Prepare environment - env=os.environ.copy() - env["PYTHONPATH"]=":".join(sys.path) -+ # add path from contrib -+ env["PATH"]=os.path.abspath(os.path.join("contrib","bin"))+":"+env["PATH"] - # Rebuild all documentation - for conf in glob.glob("share/docs/*/*/conf.py"): - d,f=os.path.split(conf) -@@ -69,5 +67,5 @@ class Command(BaseCommand): - os.makedirs(p) - except OSError: - raise CommandError("Unable to create directory: %s"%p) -- cmd=[sphinx_build]+opts+["-b","html","-d",doctrees,"-D","latex_paper_size=a4",".",html] -+ cmd=["sphinx-build"]+opts+["-b","html","-d",doctrees,"-D","latex_paper_size=a4",".",html] - subprocess.call(cmd,cwd=d,env=env) diff -ruN noc.bak/files/patch-scripts_post-install noc/files/patch-scripts_post-install --- noc.bak/files/patch-scripts_post-install 2009-09-19 23:20:39.000000000 +0700 +++ noc/files/patch-scripts_post-install 2011-04-06 10:33:46.000000000 +0700 @@ -12,7 +12,7 @@ @@ -15,7 +15,7 @@ cd $PREFIX sed_script=`mktemp tmp.XXXXXX` rm $sed_script - for cmd in telnet ssh rsync pg_dump tar gzip smidump smilint fping dig gpg; do + for cmd in ssh rsync pg_dump tar gzip smidump smilint fping dig gpg; do - echo 's@^\\($cmd *\\)=.*\$@\\1 = '`which $cmd`'@' >> $sed_script + echo "s@^\\($cmd *\\)=.*\$@\\1 = "`which $cmd`'@' >> $sed_script done diff -ruN noc.bak/files/patch-scripts_sync-contrib noc/files/patch-scripts_sync-contrib --- noc.bak/files/patch-scripts_sync-contrib 2011-02-05 09:19:10.000000000 +0600 +++ noc/files/patch-scripts_sync-contrib 2011-05-04 12:08:10.000000000 +0700 @@ -1,13 +1,15 @@ ---- scripts/sync-contrib.orig 2011-01-31 16:18:59.000000000 +0600 -+++ scripts/sync-contrib 2011-01-31 16:23:13.000000000 +0600 -@@ -107,6 +107,10 @@ class Installer(object): - return self.install("protobuf") - - if __name__=="__main__": -+ # Always return 0 on FreeBSD -+ if os.uname()[0] == 'FreeBSD': -+ sys.exit(0); +--- scripts/sync-contrib.orig 2011-03-30 12:36:05.000000000 +0700 ++++ scripts/sync-contrib 2011-04-06 11:38:22.000000000 +0700 +@@ -45,6 +45,12 @@ class Installer(object): + ## Syncronize contrib apps + ## + def sync(self): ++ # Always return 0 on FreeBSD ++ if os.uname()[0] == 'FreeBSD': ++ if not self.check_only: ++ print "FreeBSD: Using apps from ports" ++ return True + - check_only=False - optlist,optargs=getopt.getopt(sys.argv[1:],"c") - for k,v in optlist: + if not self.check_only: + print "Syncronizing contrib apps" + sv=[] diff -ruN noc.bak/files/pkg-deinstall.in noc/files/pkg-deinstall.in --- noc.bak/files/pkg-deinstall.in 2011-03-17 21:49:13.000000000 +0600 +++ noc/files/pkg-deinstall.in 2011-01-31 20:12:34.000000000 +0600 @@ -1,6 +1,6 @@ #!/bin/sh # -# $FreeBSD: ports/net-mgmt/noc/files/pkg-deinstall.in,v 1.4 2011/03/17 15:49:13 miwi Exp $ +# $FreeBSD: ports/net-mgmt/noc/files/pkg-deinstall.in,v 1.1 2009/08/18 09:07:12 bsam Exp $ # NOCDIR=%%NOCDIR%% diff -ruN noc.bak/files/pkg-install.in noc/files/pkg-install.in --- noc.bak/files/pkg-install.in 2009-09-19 23:20:39.000000000 +0700 +++ noc/files/pkg-install.in 2011-04-06 12:42:50.000000000 +0700 @@ -11,69 +11,7 @@ NOCGID=%%NOCGID%% LOCALSTATE_DIR=%%LOCALSTATE_DIR%% -ask() { - local question default answer - - question=$1 - default=$2 - if [ -z "${PACKAGE_BUILDING}" ]; then - read -p "${question} [${default}]? " answer - fi - if [ "x${answer}" = "x" ]; then - answer=${default} - fi - echo ${answer} -} - -yesno() { - local default question answer - - question=$1 - default=$2 - while :; do - answer=$(ask "${question}" "${default}") - case "${answer}" in - [Yy][Ee][Ss]|[Yy]) - return 0 - ;; - [Nn][Oo]|[Nn]) - return 1 - ;; - esac - echo "Please answer yes or no." - done -} - if [ "$2" = "PRE-INSTALL" ]; then - if /usr/sbin/pw group show "${NOCGROUP}" 2>&1 >/dev/null; then - echo "You already have a \"${NOCGROUP}\" group, so I will use it." - else - echo "You need a \"${NOCGROUP}\" group." - if yesno "Would you like me to create it" "YES"; then - /usr/sbin/pw groupadd "${NOCGROUP}" -g "${NOCGID}" -h - || \ - /usr/sbin/pw groupadd "${NOCGROUP}" -h - || exit - echo "Done." - else - echo "Please create the \"${NOCGROUP}\" group manually and try again." - exit 1 - fi - fi - - if /usr/sbin/pw user show "${NOCUSER}" 2>&1 >/dev/null; then - echo "You already have a \"${NOCUSER}\" user, so I will use it." - else - echo "You need a \"${NOCUSER}\" user." - if yesno "Would you like me to create it" "YES"; then - /usr/sbin/pw useradd "${NOCUSER}" -u "${NOCUID}" -g "${NOCGROUP}" -h - -d "${NOCDIR}" \ - -c "NOC pseudo-user" || \ - /usr/sbin/pw useradd "${NOCUSER}" -g "${NOCGROUP}" -h - -d "${NOCDIR}" \ - -c "NOC pseudo-user" || exit - else - echo "Please create the \"${NOCUSER}\" user manually and try again." - exit 1 - fi - fi - if ! [ -x ${NOCDIR} ] ; then mkdir -p ${NOCDIR}; chown ${NOCUSER}:${NOCGROUP} ${NOCDIR} diff -ruN noc.bak/files/pkg-message.in noc/files/pkg-message.in --- noc.bak/files/pkg-message.in 2009-08-18 16:07:12.000000000 +0700 +++ noc/files/pkg-message.in 2011-04-06 14:19:54.000000000 +0700 @@ -4,16 +4,12 @@ noc_enable="YES" - Configuration defaults are available in %%NOCDIR%%/etc as *.defaults - files. Copy them to *.cfg files where required and - edit to suit your needs. - Don't forget create DB in postgresql (see Documentation for NOC). and run createlang after createdb: createlang plpgsql noc After create db (or if you updating from previous version) please - don't forget run following commnds under user '%%NOCUSER%%': + run following commnds under user '%%NOCUSER%%': cd %%NOCDIR%% ./scripts/post-update diff -ruN noc.bak/pkg-plist noc/pkg-plist --- noc.bak/pkg-plist 2011-03-17 21:49:13.000000000 +0600 +++ noc/pkg-plist 1970-01-01 07:00:00.000000000 +0700 @@ -1,6477 +0,0 @@ -noc/AUTHORS -noc/INSTALL -noc/LICENSE -noc/MANIFEST -noc/MANIFEST-ACTIVATOR -noc/README -noc/VERSION -noc/__init__.py -noc/__init__.pyc -noc/__init__.pyo -noc/cm/__init__.py -noc/cm/__init__.pyc -noc/cm/__init__.pyo -noc/cm/apps/__init__.py -noc/cm/apps/__init__.pyc -noc/cm/apps/__init__.pyo -noc/cm/apps/config/__init__.py -noc/cm/apps/config/__init__.pyc -noc/cm/apps/config/__init__.pyo -noc/cm/apps/config/templates/change_list.html -noc/cm/apps/config/tests/__init__.py -noc/cm/apps/config/tests/__init__.pyc -noc/cm/apps/config/tests/__init__.pyo -noc/cm/apps/config/tests/test.py -noc/cm/apps/config/tests/test.pyc -noc/cm/apps/config/tests/test.pyo -noc/cm/apps/config/views.py -noc/cm/apps/config/views.pyc -noc/cm/apps/config/views.pyo -noc/cm/apps/dns/__init__.py -noc/cm/apps/dns/__init__.pyc -noc/cm/apps/dns/__init__.pyo -noc/cm/apps/dns/templates/change_list.html -noc/cm/apps/dns/tests/__init__.py -noc/cm/apps/dns/tests/__init__.pyc -noc/cm/apps/dns/tests/__init__.pyo -noc/cm/apps/dns/tests/test.py -noc/cm/apps/dns/tests/test.pyc -noc/cm/apps/dns/tests/test.pyo -noc/cm/apps/dns/views.py -noc/cm/apps/dns/views.pyc -noc/cm/apps/dns/views.pyo -noc/cm/apps/objectnotify/__init__.py -noc/cm/apps/objectnotify/__init__.pyc -noc/cm/apps/objectnotify/__init__.pyo -noc/cm/apps/objectnotify/tests/__init__.py -noc/cm/apps/objectnotify/tests/__init__.pyc -noc/cm/apps/objectnotify/tests/__init__.pyo -noc/cm/apps/objectnotify/tests/test.py -noc/cm/apps/objectnotify/tests/test.pyc -noc/cm/apps/objectnotify/tests/test.pyo -noc/cm/apps/objectnotify/views.py -noc/cm/apps/objectnotify/views.pyc -noc/cm/apps/objectnotify/views.pyo -noc/cm/apps/prefixlist/__init__.py -noc/cm/apps/prefixlist/__init__.pyc -noc/cm/apps/prefixlist/__init__.pyo -noc/cm/apps/prefixlist/templates/change_list.html -noc/cm/apps/prefixlist/tests/__init__.py -noc/cm/apps/prefixlist/tests/__init__.pyc -noc/cm/apps/prefixlist/tests/__init__.pyo -noc/cm/apps/prefixlist/tests/test.py -noc/cm/apps/prefixlist/tests/test.pyc -noc/cm/apps/prefixlist/tests/test.pyo -noc/cm/apps/prefixlist/views.py -noc/cm/apps/prefixlist/views.pyc -noc/cm/apps/prefixlist/views.pyo -noc/cm/apps/reportlatestchanges/__init__.py -noc/cm/apps/reportlatestchanges/__init__.pyc -noc/cm/apps/reportlatestchanges/__init__.pyo -noc/cm/apps/reportlatestchanges/tests/__init__.py -noc/cm/apps/reportlatestchanges/tests/__init__.pyc -noc/cm/apps/reportlatestchanges/tests/__init__.pyo -noc/cm/apps/reportlatestchanges/tests/test.py -noc/cm/apps/reportlatestchanges/tests/test.pyc -noc/cm/apps/reportlatestchanges/tests/test.pyo -noc/cm/apps/reportlatestchanges/views.py -noc/cm/apps/reportlatestchanges/views.pyc -noc/cm/apps/reportlatestchanges/views.pyo -noc/cm/apps/reportstaleconfigs/__init__.py -noc/cm/apps/reportstaleconfigs/__init__.pyc -noc/cm/apps/reportstaleconfigs/__init__.pyo -noc/cm/apps/reportstaleconfigs/tests/__init__.py -noc/cm/apps/reportstaleconfigs/tests/__init__.pyc -noc/cm/apps/reportstaleconfigs/tests/__init__.pyo -noc/cm/apps/reportstaleconfigs/tests/test.py -noc/cm/apps/reportstaleconfigs/tests/test.pyc -noc/cm/apps/reportstaleconfigs/tests/test.pyo -noc/cm/apps/reportstaleconfigs/views.py -noc/cm/apps/reportstaleconfigs/views.pyc -noc/cm/apps/reportstaleconfigs/views.pyo -noc/cm/apps/rpsl/__init__.py -noc/cm/apps/rpsl/__init__.pyc -noc/cm/apps/rpsl/__init__.pyo -noc/cm/apps/rpsl/templates/change_list.html -noc/cm/apps/rpsl/tests/__init__.py -noc/cm/apps/rpsl/tests/__init__.pyc -noc/cm/apps/rpsl/tests/__init__.pyo -noc/cm/apps/rpsl/tests/test.py -noc/cm/apps/rpsl/tests/test.pyc -noc/cm/apps/rpsl/tests/test.pyo -noc/cm/apps/rpsl/views.py -noc/cm/apps/rpsl/views.pyc -noc/cm/apps/rpsl/views.pyo -noc/cm/management/__init__.py -noc/cm/management/__init__.pyc -noc/cm/management/__init__.pyo -noc/cm/management/commands/__init__.py -noc/cm/management/commands/__init__.pyc -noc/cm/management/commands/__init__.pyo -noc/cm/management/commands/pull.py -noc/cm/management/commands/pull.pyc -noc/cm/management/commands/pull.pyo -noc/cm/management/commands/push.py -noc/cm/management/commands/push.pyc -noc/cm/management/commands/push.pyo -noc/cm/migrations/0001_initial.py -noc/cm/migrations/0001_initial.pyc -noc/cm/migrations/0001_initial.pyo -noc/cm/migrations/0002_register_vcs.py -noc/cm/migrations/0002_register_vcs.pyc -noc/cm/migrations/0002_register_vcs.pyo -noc/cm/migrations/0003_access_profile.py -noc/cm/migrations/0003_access_profile.pyc -noc/cm/migrations/0003_access_profile.pyo -noc/cm/migrations/0004_split_object.py -noc/cm/migrations/0004_split_object.pyc -noc/cm/migrations/0004_split_object.pyo -noc/cm/migrations/0005_split_object_data.py -noc/cm/migrations/0005_split_object_data.pyc -noc/cm/migrations/0005_split_object_data.pyo -noc/cm/migrations/0006_rpsl.py -noc/cm/migrations/0006_rpsl.pyc -noc/cm/migrations/0006_rpsl.pyo -noc/cm/migrations/0007_last_modified.py -noc/cm/migrations/0007_last_modified.pyc -noc/cm/migrations/0007_last_modified.pyo -noc/cm/migrations/0008_notify.py -noc/cm/migrations/0008_notify.pyc -noc/cm/migrations/0008_notify.pyo -noc/cm/migrations/0009_access_and_notify.py -noc/cm/migrations/0009_access_and_notify.pyc -noc/cm/migrations/0009_access_and_notify.pyo -noc/cm/migrations/0010_trap_source_ip.py -noc/cm/migrations/0010_trap_source_ip.pyc -noc/cm/migrations/0010_trap_source_ip.pyo -noc/cm/migrations/0011_clean_up_config.py -noc/cm/migrations/0011_clean_up_config.pyc -noc/cm/migrations/0011_clean_up_config.pyo -noc/cm/migrations/0012_object_notify_add_notification_group.py -noc/cm/migrations/0012_object_notify_add_notification_group.pyc -noc/cm/migrations/0012_object_notify_add_notification_group.pyo -noc/cm/migrations/0013_create_notification_groups.py -noc/cm/migrations/0013_create_notification_groups.pyc -noc/cm/migrations/0013_create_notification_groups.pyo -noc/cm/migrations/0014_object_notifify_drop_emails.py -noc/cm/migrations/0014_object_notifify_drop_emails.pyc -noc/cm/migrations/0014_object_notifify_drop_emails.pyo -noc/cm/migrations/0015_tags.py -noc/cm/migrations/0015_tags.pyc -noc/cm/migrations/0015_tags.pyo -noc/cm/migrations/0016_no_objectgroup.py -noc/cm/migrations/0016_no_objectgroup.pyc -noc/cm/migrations/0016_no_objectgroup.pyo -noc/cm/migrations/__init__.py -noc/cm/migrations/__init__.pyc -noc/cm/migrations/__init__.pyo -noc/cm/models.py -noc/cm/models.pyc -noc/cm/models.pyo -noc/cm/periodics/__init__.py -noc/cm/periodics/__init__.pyc -noc/cm/periodics/__init__.pyo -noc/cm/periodics/config_pull.py -noc/cm/periodics/config_pull.pyc -noc/cm/periodics/config_pull.pyo -noc/cm/periodics/dns_pull.py -noc/cm/periodics/dns_pull.pyc -noc/cm/periodics/dns_pull.pyo -noc/cm/periodics/dns_push.py -noc/cm/periodics/dns_push.pyc -noc/cm/periodics/dns_push.pyo -noc/cm/periodics/prefix_list_pull.py -noc/cm/periodics/prefix_list_pull.pyc -noc/cm/periodics/prefix_list_pull.pyo -noc/cm/periodics/rpsl_pull.py -noc/cm/periodics/rpsl_pull.pyc -noc/cm/periodics/rpsl_pull.pyo -noc/cm/repoapp.py -noc/cm/repoapp.pyc -noc/cm/repoapp.pyo -noc/cm/templates/diff.html -noc/cm/templates/view.html -noc/cm/templatetags/__init__.py -noc/cm/templatetags/__init__.pyc -noc/cm/templatetags/__init__.pyo -noc/cm/templatetags/cmtags.py -noc/cm/templatetags/cmtags.pyc -noc/cm/templatetags/cmtags.pyo -noc/cm/vcs/__init__.py -noc/cm/vcs/__init__.pyc -noc/cm/vcs/__init__.pyo -noc/cm/vcs/cvs.py -noc/cm/vcs/cvs.pyc -noc/cm/vcs/cvs.pyo -noc/cm/vcs/hg.py -noc/cm/vcs/hg.pyc -noc/cm/vcs/hg.pyo -noc/contrib/README -noc/dns/__init__.py -noc/dns/__init__.pyc -noc/dns/__init__.pyo -noc/dns/apps/__init__.py -noc/dns/apps/__init__.pyc -noc/dns/apps/__init__.pyo -noc/dns/apps/dnsserver/__init__.py -noc/dns/apps/dnsserver/__init__.pyc -noc/dns/apps/dnsserver/__init__.pyo -noc/dns/apps/dnsserver/tests/__init__.py -noc/dns/apps/dnsserver/tests/__init__.pyc -noc/dns/apps/dnsserver/tests/__init__.pyo -noc/dns/apps/dnsserver/tests/test.py -noc/dns/apps/dnsserver/tests/test.pyc -noc/dns/apps/dnsserver/tests/test.pyo -noc/dns/apps/dnsserver/views.py -noc/dns/apps/dnsserver/views.pyc -noc/dns/apps/dnsserver/views.pyo -noc/dns/apps/dnszone/__init__.py -noc/dns/apps/dnszone/__init__.pyc -noc/dns/apps/dnszone/__init__.pyo -noc/dns/apps/dnszone/templates/change_list.html -noc/dns/apps/dnszone/templates/tools.html -noc/dns/apps/dnszone/tests/__init__.py -noc/dns/apps/dnszone/tests/__init__.pyc -noc/dns/apps/dnszone/tests/__init__.pyo -noc/dns/apps/dnszone/tests/test.py -noc/dns/apps/dnszone/tests/test.pyc -noc/dns/apps/dnszone/tests/test.pyo -noc/dns/apps/dnszone/views.py -noc/dns/apps/dnszone/views.pyc -noc/dns/apps/dnszone/views.pyo -noc/dns/apps/dnszoneprofile/__init__.py -noc/dns/apps/dnszoneprofile/__init__.pyc -noc/dns/apps/dnszoneprofile/__init__.pyo -noc/dns/apps/dnszoneprofile/tests/__init__.py -noc/dns/apps/dnszoneprofile/tests/__init__.pyc -noc/dns/apps/dnszoneprofile/tests/__init__.pyo -noc/dns/apps/dnszoneprofile/tests/test.py -noc/dns/apps/dnszoneprofile/tests/test.pyc -noc/dns/apps/dnszoneprofile/tests/test.pyo -noc/dns/apps/dnszoneprofile/views.py -noc/dns/apps/dnszoneprofile/views.pyc -noc/dns/apps/dnszoneprofile/views.pyo -noc/dns/apps/dnszonerecordtype/__init__.py -noc/dns/apps/dnszonerecordtype/__init__.pyc -noc/dns/apps/dnszonerecordtype/__init__.pyo -noc/dns/apps/dnszonerecordtype/tests/__init__.py -noc/dns/apps/dnszonerecordtype/tests/__init__.pyc -noc/dns/apps/dnszonerecordtype/tests/__init__.pyo -noc/dns/apps/dnszonerecordtype/tests/test.py -noc/dns/apps/dnszonerecordtype/tests/test.pyc -noc/dns/apps/dnszonerecordtype/tests/test.pyo -noc/dns/apps/dnszonerecordtype/views.py -noc/dns/apps/dnszonerecordtype/views.pyc -noc/dns/apps/dnszonerecordtype/views.pyo -noc/dns/apps/reportduplicatedfqdns/__init__.py -noc/dns/apps/reportduplicatedfqdns/__init__.pyc -noc/dns/apps/reportduplicatedfqdns/__init__.pyo -noc/dns/apps/reportduplicatedfqdns/tests/__init__.py -noc/dns/apps/reportduplicatedfqdns/tests/__init__.pyc -noc/dns/apps/reportduplicatedfqdns/tests/__init__.pyo -noc/dns/apps/reportduplicatedfqdns/tests/test.py -noc/dns/apps/reportduplicatedfqdns/tests/test.pyc -noc/dns/apps/reportduplicatedfqdns/tests/test.pyo -noc/dns/apps/reportduplicatedfqdns/views.py -noc/dns/apps/reportduplicatedfqdns/views.pyc -noc/dns/apps/reportduplicatedfqdns/views.pyo -noc/dns/apps/reportexpiringdomains/__init__.py -noc/dns/apps/reportexpiringdomains/__init__.pyc -noc/dns/apps/reportexpiringdomains/__init__.pyo -noc/dns/apps/reportexpiringdomains/tests/__init__.py -noc/dns/apps/reportexpiringdomains/tests/__init__.pyc -noc/dns/apps/reportexpiringdomains/tests/__init__.pyo -noc/dns/apps/reportexpiringdomains/tests/test.py -noc/dns/apps/reportexpiringdomains/tests/test.pyc -noc/dns/apps/reportexpiringdomains/tests/test.pyo -noc/dns/apps/reportexpiringdomains/views.py -noc/dns/apps/reportexpiringdomains/views.pyc -noc/dns/apps/reportexpiringdomains/views.pyo -noc/dns/apps/reportmissedp2p/__init__.py -noc/dns/apps/reportmissedp2p/__init__.pyc -noc/dns/apps/reportmissedp2p/__init__.pyo -noc/dns/apps/reportmissedp2p/tests/__init__.py -noc/dns/apps/reportmissedp2p/tests/__init__.pyc -noc/dns/apps/reportmissedp2p/tests/__init__.pyo -noc/dns/apps/reportmissedp2p/tests/test.py -noc/dns/apps/reportmissedp2p/tests/test.pyc -noc/dns/apps/reportmissedp2p/tests/test.pyo -noc/dns/apps/reportmissedp2p/views.py -noc/dns/apps/reportmissedp2p/views.pyc -noc/dns/apps/reportmissedp2p/views.pyo -noc/dns/apps/reportmissedreverse/__init__.py -noc/dns/apps/reportmissedreverse/__init__.pyc -noc/dns/apps/reportmissedreverse/__init__.pyo -noc/dns/apps/reportmissedreverse/tests/__init__.py -noc/dns/apps/reportmissedreverse/tests/__init__.pyc -noc/dns/apps/reportmissedreverse/tests/__init__.pyo -noc/dns/apps/reportmissedreverse/tests/test.py -noc/dns/apps/reportmissedreverse/tests/test.pyc -noc/dns/apps/reportmissedreverse/tests/test.pyo -noc/dns/apps/reportmissedreverse/views.py -noc/dns/apps/reportmissedreverse/views.pyc -noc/dns/apps/reportmissedreverse/views.pyo -noc/dns/apps/reportnszonesummary/__init__.py -noc/dns/apps/reportnszonesummary/__init__.pyc -noc/dns/apps/reportnszonesummary/__init__.pyo -noc/dns/apps/reportnszonesummary/tests/__init__.py -noc/dns/apps/reportnszonesummary/tests/__init__.pyc -noc/dns/apps/reportnszonesummary/tests/__init__.pyo -noc/dns/apps/reportnszonesummary/tests/test.py -noc/dns/apps/reportnszonesummary/tests/test.pyc -noc/dns/apps/reportnszonesummary/tests/test.pyo -noc/dns/apps/reportnszonesummary/views.py -noc/dns/apps/reportnszonesummary/views.pyc -noc/dns/apps/reportnszonesummary/views.pyo -noc/dns/apps/reportsupportedns/__init__.py -noc/dns/apps/reportsupportedns/__init__.pyc -noc/dns/apps/reportsupportedns/__init__.pyo -noc/dns/apps/reportsupportedns/tests/__init__.py -noc/dns/apps/reportsupportedns/tests/__init__.pyc -noc/dns/apps/reportsupportedns/tests/__init__.pyo -noc/dns/apps/reportsupportedns/tests/test.py -noc/dns/apps/reportsupportedns/tests/test.pyc -noc/dns/apps/reportsupportedns/tests/test.pyo -noc/dns/apps/reportsupportedns/views.py -noc/dns/apps/reportsupportedns/views.pyc -noc/dns/apps/reportsupportedns/views.pyo -noc/dns/generators/__init__.py -noc/dns/generators/__init__.pyc -noc/dns/generators/__init__.pyo -noc/dns/generators/bindv9.py -noc/dns/generators/bindv9.pyc -noc/dns/generators/bindv9.pyo -noc/dns/migrations/0001_initial.py -noc/dns/migrations/0001_initial.pyc -noc/dns/migrations/0001_initial.pyo -noc/dns/migrations/0002_dnsrecordtype_is_visible.py -noc/dns/migrations/0002_dnsrecordtype_is_visible.pyc -noc/dns/migrations/0002_dnsrecordtype_is_visible.pyo -noc/dns/migrations/0003_dnszonerecordtype_initial_data.py -noc/dns/migrations/0003_dnszonerecordtype_initial_data.pyc -noc/dns/migrations/0003_dnszonerecordtype_initial_data.pyo -noc/dns/migrations/0004_register_dns.py -noc/dns/migrations/0004_register_dns.pyc -noc/dns/migrations/0004_register_dns.pyo -noc/dns/migrations/0005_dns_server_and_type.py -noc/dns/migrations/0005_dns_server_and_type.pyc -noc/dns/migrations/0005_dns_server_and_type.pyo -noc/dns/migrations/0006_type_bindv9.py -noc/dns/migrations/0006_type_bindv9.pyc -noc/dns/migrations/0006_type_bindv9.pyo -noc/dns/migrations/0007_migrate_ns_list.py -noc/dns/migrations/0007_migrate_ns_list.pyc -noc/dns/migrations/0007_migrate_ns_list.pyo -noc/dns/migrations/0008_dnsserver_provisioning.py -noc/dns/migrations/0008_dnsserver_provisioning.pyc -noc/dns/migrations/0008_dnsserver_provisioning.pyo -noc/dns/migrations/0009_unregister_dns.py -noc/dns/migrations/0009_unregister_dns.pyc -noc/dns/migrations/0009_unregister_dns.pyo -noc/dns/migrations/0010_dns_server_generator_name.py -noc/dns/migrations/0010_dns_server_generator_name.pyc -noc/dns/migrations/0010_dns_server_generator_name.pyo -noc/dns/migrations/0011_drop_dns_server_type.py -noc/dns/migrations/0011_drop_dns_server_type.pyc -noc/dns/migrations/0011_drop_dns_server_type.pyo -noc/dns/migrations/0012_dnszoneprofile_masters_and_slaves.py -noc/dns/migrations/0012_dnszoneprofile_masters_and_slaves.pyc -noc/dns/migrations/0012_dnszoneprofile_masters_and_slaves.pyo -noc/dns/migrations/0013_remove_dnszoneprofile_zone_transfer_acl.py -noc/dns/migrations/0013_remove_dnszoneprofile_zone_transfer_acl.pyc -noc/dns/migrations/0013_remove_dnszoneprofile_zone_transfer_acl.pyo -noc/dns/migrations/0014_dnsserver_ip.py -noc/dns/migrations/0014_dnsserver_ip.pyc -noc/dns/migrations/0014_dnsserver_ip.pyo -noc/dns/migrations/0015_dnszonerecordtype_validate.py -noc/dns/migrations/0015_dnszonerecordtype_validate.pyc -noc/dns/migrations/0015_dnszonerecordtype_validate.pyo -noc/dns/migrations/0016_autozones_path.py -noc/dns/migrations/0016_autozones_path.pyc -noc/dns/migrations/0016_autozones_path.pyo -noc/dns/migrations/0017_dnszone_paid_till.py -noc/dns/migrations/0017_dnszone_paid_till.pyc -noc/dns/migrations/0017_dnszone_paid_till.pyo -noc/dns/migrations/0018_domain_expired.py -noc/dns/migrations/0018_domain_expired.pyc -noc/dns/migrations/0018_domain_expired.pyo -noc/dns/migrations/0019_dnszoneprofile_description.py -noc/dns/migrations/0019_dnszoneprofile_description.pyc -noc/dns/migrations/0019_dnszoneprofile_description.pyo -noc/dns/migrations/0020_tags.py -noc/dns/migrations/0020_tags.pyc -noc/dns/migrations/0020_tags.pyo -noc/dns/migrations/__init__.py -noc/dns/migrations/__init__.pyc -noc/dns/migrations/__init__.pyo -noc/dns/models.py -noc/dns/models.pyc -noc/dns/models.pyo -noc/dns/periodics/__init__.py -noc/dns/periodics/__init__.pyc -noc/dns/periodics/__init__.pyo -noc/dns/periodics/check_domain_expiration.py -noc/dns/periodics/check_domain_expiration.pyc -noc/dns/periodics/check_domain_expiration.pyo -noc/dns/periodics/update_domain_expiration.py -noc/dns/periodics/update_domain_expiration.pyc -noc/dns/periodics/update_domain_expiration.pyo -@unexec if cmp -s %D/noc/etc/noc-activator.defaults %D/noc/etc/noc-activator.conf; then rm -f %D/noc/etc/noc-activator.conf; fi -noc/etc/noc-activator.defaults -@unexec if cmp -s %D/noc/etc/noc-classifier.defaults %D/noc/etc/noc-classifier.conf; then rm -f %D/noc/etc/noc-classifier.conf; fi -noc/etc/noc-classifier.defaults -@unexec if cmp -s %D/noc/etc/noc-correlator.defaults %D/noc/etc/noc-correlator.conf; then rm -f %D/noc/etc/noc-correlator.conf; fi -noc/etc/noc-correlator.defaults -@unexec if cmp -s %D/noc/etc/noc-fcgi.defaults %D/noc/etc/noc-fcgi.conf; then rm -f %D/noc/etc/noc-fcgi.conf; fi -noc/etc/noc-fcgi.defaults -@unexec if cmp -s %D/noc/etc/noc-launcher.defaults %D/noc/etc/noc-launcher.conf; then rm -f %D/noc/etc/noc-launcher.conf; fi -noc/etc/noc-launcher.defaults -@unexec if cmp -s %D/noc/etc/noc-notifier.defaults %D/noc/etc/noc-notifier.conf; then rm -f %D/noc/etc/noc-notifier.conf; fi -noc/etc/noc-notifier.defaults -@unexec if cmp -s %D/noc/etc/noc-probe.defaults %D/noc/etc/noc-probe.conf; then rm -f %D/noc/etc/noc-probe.conf; fi -noc/etc/noc-probe.defaults -@unexec if cmp -s %D/noc/etc/noc-sae.defaults %D/noc/etc/noc-sae.conf; then rm -f %D/noc/etc/noc-sae.conf; fi -noc/etc/noc-sae.defaults -@unexec if cmp -s %D/noc/etc/noc.defaults %D/noc/etc/noc.conf; then rm -f %D/noc/etc/noc.conf; fi -noc/etc/noc.defaults -noc/fm/__init__.py -noc/fm/__init__.pyc -noc/fm/__init__.pyo -noc/fm/apps/__init__.py -noc/fm/apps/__init__.pyc -noc/fm/apps/__init__.pyo -noc/fm/apps/activeproblems/__init__.py -noc/fm/apps/activeproblems/__init__.pyc -noc/fm/apps/activeproblems/__init__.pyo -noc/fm/apps/activeproblems/templates/summary.html -noc/fm/apps/activeproblems/tests/__init__.py -noc/fm/apps/activeproblems/tests/__init__.pyc -noc/fm/apps/activeproblems/tests/__init__.pyo -noc/fm/apps/activeproblems/tests/test.py -noc/fm/apps/activeproblems/tests/test.pyc -noc/fm/apps/activeproblems/tests/test.pyo -noc/fm/apps/activeproblems/views.py -noc/fm/apps/activeproblems/views.pyc -noc/fm/apps/activeproblems/views.pyo -noc/fm/apps/event/__init__.py -noc/fm/apps/event/__init__.pyc -noc/fm/apps/event/__init__.pyo -noc/fm/apps/event/templates/event.html -noc/fm/apps/event/templates/index.html -noc/fm/apps/event/tests/__init__.py -noc/fm/apps/event/tests/__init__.pyc -noc/fm/apps/event/tests/__init__.pyo -noc/fm/apps/event/tests/test.py -noc/fm/apps/event/tests/test.pyc -noc/fm/apps/event/tests/test.pyo -noc/fm/apps/event/views.py -noc/fm/apps/event/views.pyc -noc/fm/apps/event/views.pyo -noc/fm/apps/eventarchivationrule/__init__.py -noc/fm/apps/eventarchivationrule/__init__.pyc -noc/fm/apps/eventarchivationrule/__init__.pyo -noc/fm/apps/eventarchivationrule/tests/__init__.py -noc/fm/apps/eventarchivationrule/tests/__init__.pyc -noc/fm/apps/eventarchivationrule/tests/__init__.pyo -noc/fm/apps/eventarchivationrule/tests/test.py -noc/fm/apps/eventarchivationrule/tests/test.pyc -noc/fm/apps/eventarchivationrule/tests/test.pyo -noc/fm/apps/eventarchivationrule/views.py -noc/fm/apps/eventarchivationrule/views.pyc -noc/fm/apps/eventarchivationrule/views.pyo -noc/fm/apps/eventcategory/__init__.py -noc/fm/apps/eventcategory/__init__.pyc -noc/fm/apps/eventcategory/__init__.pyo -noc/fm/apps/eventcategory/tests/__init__.py -noc/fm/apps/eventcategory/tests/__init__.pyc -noc/fm/apps/eventcategory/tests/__init__.pyo -noc/fm/apps/eventcategory/tests/test.py -noc/fm/apps/eventcategory/tests/test.pyc -noc/fm/apps/eventcategory/tests/test.pyo -noc/fm/apps/eventcategory/views.py -noc/fm/apps/eventcategory/views.pyc -noc/fm/apps/eventcategory/views.pyo -noc/fm/apps/eventclass/__init__.py -noc/fm/apps/eventclass/__init__.pyc -noc/fm/apps/eventclass/__init__.pyo -noc/fm/apps/eventclass/tests/__init__.py -noc/fm/apps/eventclass/tests/__init__.pyc -noc/fm/apps/eventclass/tests/__init__.pyo -noc/fm/apps/eventclass/tests/test.py -noc/fm/apps/eventclass/tests/test.pyc -noc/fm/apps/eventclass/tests/test.pyo -noc/fm/apps/eventclass/views.py -noc/fm/apps/eventclass/views.pyc -noc/fm/apps/eventclass/views.pyo -noc/fm/apps/eventclassificationrule/__init__.py -noc/fm/apps/eventclassificationrule/__init__.pyc -noc/fm/apps/eventclassificationrule/__init__.pyo -noc/fm/apps/eventclassificationrule/templates/change_form.html -noc/fm/apps/eventclassificationrule/templates/change_list.html -noc/fm/apps/eventclassificationrule/tests/__init__.py -noc/fm/apps/eventclassificationrule/tests/__init__.pyc -noc/fm/apps/eventclassificationrule/tests/__init__.pyo -noc/fm/apps/eventclassificationrule/tests/test.py -noc/fm/apps/eventclassificationrule/tests/test.pyc -noc/fm/apps/eventclassificationrule/tests/test.pyo -noc/fm/apps/eventclassificationrule/views.py -noc/fm/apps/eventclassificationrule/views.pyc -noc/fm/apps/eventclassificationrule/views.pyo -noc/fm/apps/eventcorrelationrule/__init__.py -noc/fm/apps/eventcorrelationrule/__init__.pyc -noc/fm/apps/eventcorrelationrule/__init__.pyo -noc/fm/apps/eventcorrelationrule/templates/change_list.html -noc/fm/apps/eventcorrelationrule/tests/__init__.py -noc/fm/apps/eventcorrelationrule/tests/__init__.pyc -noc/fm/apps/eventcorrelationrule/tests/__init__.pyo -noc/fm/apps/eventcorrelationrule/tests/test.py -noc/fm/apps/eventcorrelationrule/tests/test.pyc -noc/fm/apps/eventcorrelationrule/tests/test.pyo -noc/fm/apps/eventcorrelationrule/views.py -noc/fm/apps/eventcorrelationrule/views.pyc -noc/fm/apps/eventcorrelationrule/views.pyo -noc/fm/apps/eventpostprocessingrule/__init__.py -noc/fm/apps/eventpostprocessingrule/__init__.pyc -noc/fm/apps/eventpostprocessingrule/__init__.pyo -noc/fm/apps/eventpostprocessingrule/templates/change_form.html -noc/fm/apps/eventpostprocessingrule/templates/change_list.html -noc/fm/apps/eventpostprocessingrule/tests/__init__.py -noc/fm/apps/eventpostprocessingrule/tests/__init__.pyc -noc/fm/apps/eventpostprocessingrule/tests/__init__.pyo -noc/fm/apps/eventpostprocessingrule/tests/test.py -noc/fm/apps/eventpostprocessingrule/tests/test.pyc -noc/fm/apps/eventpostprocessingrule/tests/test.pyo -noc/fm/apps/eventpostprocessingrule/views.py -noc/fm/apps/eventpostprocessingrule/views.pyc -noc/fm/apps/eventpostprocessingrule/views.pyo -noc/fm/apps/eventpriority/__init__.py -noc/fm/apps/eventpriority/__init__.pyc -noc/fm/apps/eventpriority/__init__.pyo -noc/fm/apps/eventpriority/tests/__init__.py -noc/fm/apps/eventpriority/tests/__init__.pyc -noc/fm/apps/eventpriority/tests/__init__.pyo -noc/fm/apps/eventpriority/tests/test.py -noc/fm/apps/eventpriority/tests/test.pyc -noc/fm/apps/eventpriority/tests/test.pyo -noc/fm/apps/eventpriority/views.py -noc/fm/apps/eventpriority/views.pyc -noc/fm/apps/eventpriority/views.pyo -noc/fm/apps/ignoreeventrules/__init__.py -noc/fm/apps/ignoreeventrules/__init__.pyc -noc/fm/apps/ignoreeventrules/__init__.pyo -noc/fm/apps/ignoreeventrules/tests/__init__.py -noc/fm/apps/ignoreeventrules/tests/__init__.pyc -noc/fm/apps/ignoreeventrules/tests/__init__.pyo -noc/fm/apps/ignoreeventrules/tests/test.py -noc/fm/apps/ignoreeventrules/tests/test.pyc -noc/fm/apps/ignoreeventrules/tests/test.pyo -noc/fm/apps/ignoreeventrules/views.py -noc/fm/apps/ignoreeventrules/views.pyc -noc/fm/apps/ignoreeventrules/views.pyo -noc/fm/apps/mib/__init__.py -noc/fm/apps/mib/__init__.pyc -noc/fm/apps/mib/__init__.pyo -noc/fm/apps/mib/templates/change_list.html -noc/fm/apps/mib/templates/upload.html -noc/fm/apps/mib/tests/__init__.py -noc/fm/apps/mib/tests/__init__.pyc -noc/fm/apps/mib/tests/__init__.pyo -noc/fm/apps/mib/tests/test.py -noc/fm/apps/mib/tests/test.pyc -noc/fm/apps/mib/tests/test.pyo -noc/fm/apps/mib/views.py -noc/fm/apps/mib/views.pyc -noc/fm/apps/mib/views.pyo -noc/fm/apps/mibview/__init__.py -noc/fm/apps/mibview/__init__.pyc -noc/fm/apps/mibview/__init__.pyo -noc/fm/apps/mibview/tests/__init__.py -noc/fm/apps/mibview/tests/__init__.pyc -noc/fm/apps/mibview/tests/__init__.pyo -noc/fm/apps/mibview/tests/test.py -noc/fm/apps/mibview/tests/test.pyc -noc/fm/apps/mibview/tests/test.pyo -noc/fm/apps/mibview/views.py -noc/fm/apps/mibview/views.pyc -noc/fm/apps/mibview/views.pyo -noc/fm/apps/reportclassificationquality/__init__.py -noc/fm/apps/reportclassificationquality/__init__.pyc -noc/fm/apps/reportclassificationquality/__init__.pyo -noc/fm/apps/reportclassificationquality/tests/__init__.py -noc/fm/apps/reportclassificationquality/tests/__init__.pyc -noc/fm/apps/reportclassificationquality/tests/__init__.pyo -noc/fm/apps/reportclassificationquality/tests/test.py -noc/fm/apps/reportclassificationquality/tests/test.pyc -noc/fm/apps/reportclassificationquality/tests/test.pyo -noc/fm/apps/reportclassificationquality/views.py -noc/fm/apps/reportclassificationquality/views.pyc -noc/fm/apps/reportclassificationquality/views.pyo -noc/fm/apps/reportclassificationrule/__init__.py -noc/fm/apps/reportclassificationrule/__init__.pyc -noc/fm/apps/reportclassificationrule/__init__.pyo -noc/fm/apps/reportclassificationrule/tests/__init__.py -noc/fm/apps/reportclassificationrule/tests/__init__.pyc -noc/fm/apps/reportclassificationrule/tests/__init__.pyo -noc/fm/apps/reportclassificationrule/tests/test.py -noc/fm/apps/reportclassificationrule/tests/test.pyc -noc/fm/apps/reportclassificationrule/tests/test.pyo -noc/fm/apps/reportclassificationrule/views.py -noc/fm/apps/reportclassificationrule/views.pyc -noc/fm/apps/reportclassificationrule/views.pyo -noc/fm/apps/reporteventsummary/__init__.py -noc/fm/apps/reporteventsummary/__init__.pyc -noc/fm/apps/reporteventsummary/__init__.pyo -noc/fm/apps/reporteventsummary/tests/__init__.py -noc/fm/apps/reporteventsummary/tests/__init__.pyc -noc/fm/apps/reporteventsummary/tests/__init__.pyo -noc/fm/apps/reporteventsummary/tests/test.py -noc/fm/apps/reporteventsummary/tests/test.pyc -noc/fm/apps/reporteventsummary/tests/test.pyo -noc/fm/apps/reporteventsummary/views.py -noc/fm/apps/reporteventsummary/views.pyc -noc/fm/apps/reporteventsummary/views.pyo -noc/fm/apps/reportmibs/__init__.py -noc/fm/apps/reportmibs/__init__.pyc -noc/fm/apps/reportmibs/__init__.pyo -noc/fm/apps/reportmibs/tests/__init__.py -noc/fm/apps/reportmibs/tests/__init__.pyc -noc/fm/apps/reportmibs/tests/__init__.pyo -noc/fm/apps/reportmibs/tests/test.py -noc/fm/apps/reportmibs/tests/test.pyc -noc/fm/apps/reportmibs/tests/test.pyo -noc/fm/apps/reportmibs/views.py -noc/fm/apps/reportmibs/views.pyc -noc/fm/apps/reportmibs/views.pyo -noc/fm/apps/reportunclassifiedoids/__init__.py -noc/fm/apps/reportunclassifiedoids/__init__.pyc -noc/fm/apps/reportunclassifiedoids/__init__.pyo -noc/fm/apps/reportunclassifiedoids/tests/__init__.py -noc/fm/apps/reportunclassifiedoids/tests/__init__.pyc -noc/fm/apps/reportunclassifiedoids/tests/__init__.pyo -noc/fm/apps/reportunclassifiedoids/tests/test.py -noc/fm/apps/reportunclassifiedoids/tests/test.pyc -noc/fm/apps/reportunclassifiedoids/tests/test.pyo -noc/fm/apps/reportunclassifiedoids/views.py -noc/fm/apps/reportunclassifiedoids/views.pyc -noc/fm/apps/reportunclassifiedoids/views.pyo -noc/fm/classifier.py -noc/fm/classifier.pyc -noc/fm/classifier.pyo -noc/fm/correlator.py -noc/fm/correlator.pyc -noc/fm/correlator.pyo -noc/fm/management/__init__.py -noc/fm/management/__init__.pyc -noc/fm/management/__init__.pyo -noc/fm/management/commands/__init__.py -noc/fm/management/commands/__init__.pyc -noc/fm/management/commands/__init__.pyo -noc/fm/management/commands/check-required-mibs.py -noc/fm/management/commands/check-required-mibs.pyc -noc/fm/management/commands/check-required-mibs.pyo -noc/fm/management/commands/import-mib.py -noc/fm/management/commands/import-mib.pyc -noc/fm/management/commands/import-mib.pyo -noc/fm/management/commands/sync-rules.py -noc/fm/management/commands/sync-rules.pyc -noc/fm/management/commands/sync-rules.pyo -noc/fm/migrations/0001_initial.py -noc/fm/migrations/0001_initial.pyc -noc/fm/migrations/0001_initial.pyo -noc/fm/migrations/0002_event.py -noc/fm/migrations/0002_event.pyc -noc/fm/migrations/0002_event.pyo -noc/fm/migrations/0003_event_data.py -noc/fm/migrations/0003_event_data.pyc -noc/fm/migrations/0003_event_data.pyo -noc/fm/migrations/0004_priority_color.py -noc/fm/migrations/0004_priority_color.pyc -noc/fm/migrations/0004_priority_color.pyo -noc/fm/migrations/0005_default_colors.py -noc/fm/migrations/0005_default_colors.pyc -noc/fm/migrations/0005_default_colors.pyo -noc/fm/migrations/0006_rule_drop_event.py -noc/fm/migrations/0006_rule_drop_event.pyc -noc/fm/migrations/0006_rule_drop_event.pyo -noc/fm/migrations/0007_event_repeat.py -noc/fm/migrations/0007_event_repeat.pyc -noc/fm/migrations/0007_event_repeat.pyo -noc/fm/migrations/0008_enlarge_event_data_key.py -noc/fm/migrations/0008_enlarge_event_data_key.pyc -noc/fm/migrations/0008_enlarge_event_data_key.pyo -noc/fm/migrations/0009_mib_dependency.py -noc/fm/migrations/0009_mib_dependency.pyc -noc/fm/migrations/0009_mib_dependency.pyo -noc/fm/migrations/0010_event_class_trigger.py -noc/fm/migrations/0010_event_class_trigger.pyc -noc/fm/migrations/0010_event_class_trigger.pyo -noc/fm/migrations/0011_is_builtin.py -noc/fm/migrations/0011_is_builtin.pyc -noc/fm/migrations/0011_is_builtin.pyo -noc/fm/migrations/0012_update_event_classification.py -noc/fm/migrations/0012_update_event_classification.pyc -noc/fm/migrations/0012_update_event_classification.pyo -noc/fm/migrations/0013_event_lifecycle.py -noc/fm/migrations/0013_event_lifecycle.pyc -noc/fm/migrations/0013_event_lifecycle.pyo -noc/fm/migrations/0014_update_event_classification.py -noc/fm/migrations/0014_update_event_classification.pyc -noc/fm/migrations/0014_update_event_classification.pyo -noc/fm/migrations/0015_set_event_status.py -noc/fm/migrations/0015_set_event_status.pyc -noc/fm/migrations/0015_set_event_status.pyo -noc/fm/migrations/0016_event_correlation_rule.py -noc/fm/migrations/0016_event_correlation_rule.pyc -noc/fm/migrations/0016_event_correlation_rule.pyo -noc/fm/migrations/0017_event_log.py -noc/fm/migrations/0017_event_log.pyc -noc/fm/migrations/0017_event_log.pyo -noc/fm/migrations/0018_update_event_classification.py -noc/fm/migrations/0018_update_event_classification.pyc -noc/fm/migrations/0018_update_event_classification.pyo -noc/fm/migrations/0019_eventclassificationrule_action.py -noc/fm/migrations/0019_eventclassificationrule_action.pyc -noc/fm/migrations/0019_eventclassificationrule_action.pyo -noc/fm/migrations/0020_drop_eventclassificationrule_drop_event.py -noc/fm/migrations/0020_drop_eventclassificationrule_drop_event.pyc -noc/fm/migrations/0020_drop_eventclassificationrule_drop_event.pyo -noc/fm/migrations/0021_event_post_processing.py -noc/fm/migrations/0021_event_post_processing.pyc -noc/fm/migrations/0021_event_post_processing.pyo -noc/fm/migrations/0022_drop_update_event_classification.py -noc/fm/migrations/0022_drop_update_event_classification.pyc -noc/fm/migrations/0022_drop_update_event_classification.pyo -noc/fm/migrations/0023_eventclassificationre_expression.py -noc/fm/migrations/0023_eventclassificationre_expression.pyc -noc/fm/migrations/0023_eventclassificationre_expression.pyo -noc/fm/migrations/0024_event_correlation_rule.py -noc/fm/migrations/0024_event_correlation_rule.pyc -noc/fm/migrations/0024_event_correlation_rule.pyo -noc/fm/migrations/0025_eventarchivationrule.py -noc/fm/migrations/0025_eventarchivationrule.pyc -noc/fm/migrations/0025_eventarchivationrule.pyo -noc/fm/migrations/0026_postprocessingrule_params.py -noc/fm/migrations/0026_postprocessingrule_params.pyc -noc/fm/migrations/0026_postprocessingrule_params.pyo -noc/fm/migrations/0027_sp_delete_event.py -noc/fm/migrations/0027_sp_delete_event.pyc -noc/fm/migrations/0027_sp_delete_event.pyo -noc/fm/migrations/0028_change_eventarchivationrule.py -noc/fm/migrations/0028_change_eventarchivationrule.pyc -noc/fm/migrations/0028_change_eventarchivationrule.pyo -noc/fm/migrations/0029_sp_close_event.py -noc/fm/migrations/0029_sp_close_event.pyc -noc/fm/migrations/0029_sp_close_event.pyo -noc/fm/migrations/0030_event_indexes.py -noc/fm/migrations/0030_event_indexes.pyc -noc/fm/migrations/0030_event_indexes.pyo -noc/fm/migrations/0031_rule.py -noc/fm/migrations/0031_rule.pyc -noc/fm/migrations/0031_rule.pyo -noc/fm/migrations/0032_ingnore_event_rules.py -noc/fm/migrations/0032_ingnore_event_rules.pyc -noc/fm/migrations/0032_ingnore_event_rules.pyo -noc/fm/migrations/0033_classify_event.py -noc/fm/migrations/0033_classify_event.pyc -noc/fm/migrations/0033_classify_event.pyo -noc/fm/migrations/__init__.py -noc/fm/migrations/__init__.pyc -noc/fm/migrations/__init__.pyo -noc/fm/models.py -noc/fm/models.pyc -noc/fm/models.pyo -noc/fm/periodics/__init__.py -noc/fm/periodics/__init__.pyc -noc/fm/periodics/__init__.pyo -noc/fm/periodics/archive.py -noc/fm/periodics/archive.pyc -noc/fm/periodics/archive.pyo -noc/fm/periodics/ping_check.py -noc/fm/periodics/ping_check.pyc -noc/fm/periodics/ping_check.pyo -noc/fm/rules/__init__.py -noc/fm/rules/__init__.pyc -noc/fm/rules/__init__.pyo -noc/fm/rules/classes/Cisco/IOS/__init__.py -noc/fm/rules/classes/Cisco/IOS/__init__.pyc -noc/fm/rules/classes/Cisco/IOS/__init__.pyo -noc/fm/rules/classes/Cisco/IOS/qos.py -noc/fm/rules/classes/Cisco/IOS/qos.pyc -noc/fm/rules/classes/Cisco/IOS/qos.pyo -noc/fm/rules/classes/Cisco/__init__.py -noc/fm/rules/classes/Cisco/__init__.pyc -noc/fm/rules/classes/Cisco/__init__.pyo -noc/fm/rules/classes/__init__.py -noc/fm/rules/classes/__init__.pyc -noc/fm/rules/classes/__init__.pyo -noc/fm/rules/classes/auth.py -noc/fm/rules/classes/auth.pyc -noc/fm/rules/classes/auth.pyo -noc/fm/rules/classes/bgp.py -noc/fm/rules/classes/bgp.pyc -noc/fm/rules/classes/bgp.pyo -noc/fm/rules/classes/chassis.py -noc/fm/rules/classes/chassis.pyc -noc/fm/rules/classes/chassis.pyo -noc/fm/rules/classes/config.py -noc/fm/rules/classes/config.pyc -noc/fm/rules/classes/config.pyo -noc/fm/rules/classes/default.py -noc/fm/rules/classes/default.pyc -noc/fm/rules/classes/default.pyo -noc/fm/rules/classes/dhcp.py -noc/fm/rules/classes/dhcp.pyc -noc/fm/rules/classes/dhcp.pyo -noc/fm/rules/classes/dns.py -noc/fm/rules/classes/dns.pyc -noc/fm/rules/classes/dns.pyo -noc/fm/rules/classes/dot11.py -noc/fm/rules/classes/dot11.pyc -noc/fm/rules/classes/dot11.pyo -noc/fm/rules/classes/eigrp.py -noc/fm/rules/classes/eigrp.pyc -noc/fm/rules/classes/eigrp.pyo -noc/fm/rules/classes/fallback.py -noc/fm/rules/classes/fallback.pyc -noc/fm/rules/classes/fallback.pyo -noc/fm/rules/classes/ipsec.py -noc/fm/rules/classes/ipsec.pyc -noc/fm/rules/classes/ipsec.pyo -noc/fm/rules/classes/lbd.py -noc/fm/rules/classes/lbd.pyc -noc/fm/rules/classes/lbd.pyo -noc/fm/rules/classes/ldp.py -noc/fm/rules/classes/ldp.pyc -noc/fm/rules/classes/ldp.pyo -noc/fm/rules/classes/link.py -noc/fm/rules/classes/link.pyc -noc/fm/rules/classes/link.pyo -noc/fm/rules/classes/loadbalance.py -noc/fm/rules/classes/loadbalance.pyc -noc/fm/rules/classes/loadbalance.pyo -noc/fm/rules/classes/logging.py -noc/fm/rules/classes/logging.pyc -noc/fm/rules/classes/logging.pyo -noc/fm/rules/classes/memory.py -noc/fm/rules/classes/memory.pyc -noc/fm/rules/classes/memory.pyo -noc/fm/rules/classes/phone.py -noc/fm/rules/classes/phone.pyc -noc/fm/rules/classes/phone.pyo -noc/fm/rules/classes/pm.py -noc/fm/rules/classes/pm.pyc -noc/fm/rules/classes/pm.pyo -noc/fm/rules/classes/poe.py -noc/fm/rules/classes/poe.pyc -noc/fm/rules/classes/poe.pyo -noc/fm/rules/classes/port.py -noc/fm/rules/classes/port.pyc -noc/fm/rules/classes/port.pyo -noc/fm/rules/classes/process.py -noc/fm/rules/classes/process.pyc -noc/fm/rules/classes/process.pyo -noc/fm/rules/classes/radius.py -noc/fm/rules/classes/radius.pyc -noc/fm/rules/classes/radius.pyo -noc/fm/rules/classes/security.py -noc/fm/rules/classes/security.pyc -noc/fm/rules/classes/security.pyo -noc/fm/rules/classes/stp.py -noc/fm/rules/classes/stp.pyc -noc/fm/rules/classes/stp.pyo -noc/fm/rules/classes/system.py -noc/fm/rules/classes/system.pyc -noc/fm/rules/classes/system.pyo -noc/fm/rules/classification/Audiocodes/Mediant2000/__init__.py -noc/fm/rules/classification/Audiocodes/Mediant2000/__init__.pyc -noc/fm/rules/classification/Audiocodes/Mediant2000/__init__.pyo -noc/fm/rules/classification/Audiocodes/Mediant2000/config.py -noc/fm/rules/classification/Audiocodes/Mediant2000/config.pyc -noc/fm/rules/classification/Audiocodes/Mediant2000/config.pyo -noc/fm/rules/classification/Audiocodes/__init__.py -noc/fm/rules/classification/Audiocodes/__init__.pyc -noc/fm/rules/classification/Audiocodes/__init__.pyo -noc/fm/rules/classification/Cisco/ASA/__init__.py -noc/fm/rules/classification/Cisco/ASA/__init__.pyc -noc/fm/rules/classification/Cisco/ASA/__init__.pyo -noc/fm/rules/classification/Cisco/ASA/config.py -noc/fm/rules/classification/Cisco/ASA/config.pyc -noc/fm/rules/classification/Cisco/ASA/config.pyo -noc/fm/rules/classification/Cisco/ASA/logging.py -noc/fm/rules/classification/Cisco/ASA/logging.pyc -noc/fm/rules/classification/Cisco/ASA/logging.pyo -noc/fm/rules/classification/Cisco/AireOS/__init__.py -noc/fm/rules/classification/Cisco/AireOS/__init__.pyc -noc/fm/rules/classification/Cisco/AireOS/__init__.pyo -noc/fm/rules/classification/Cisco/AireOS/dot11.py -noc/fm/rules/classification/Cisco/AireOS/dot11.pyc -noc/fm/rules/classification/Cisco/AireOS/dot11.pyo -noc/fm/rules/classification/Cisco/AireOS/radius.py -noc/fm/rules/classification/Cisco/AireOS/radius.pyc -noc/fm/rules/classification/Cisco/AireOS/radius.pyo -noc/fm/rules/classification/Cisco/IOS/__init__.py -noc/fm/rules/classification/Cisco/IOS/__init__.pyc -noc/fm/rules/classification/Cisco/IOS/__init__.pyo -noc/fm/rules/classification/Cisco/IOS/bgp.py -noc/fm/rules/classification/Cisco/IOS/bgp.pyc -noc/fm/rules/classification/Cisco/IOS/bgp.pyo -noc/fm/rules/classification/Cisco/IOS/config.py -noc/fm/rules/classification/Cisco/IOS/config.pyc -noc/fm/rules/classification/Cisco/IOS/config.pyo -noc/fm/rules/classification/Cisco/IOS/dhcp.py -noc/fm/rules/classification/Cisco/IOS/dhcp.pyc -noc/fm/rules/classification/Cisco/IOS/dhcp.pyo -noc/fm/rules/classification/Cisco/IOS/dns.py -noc/fm/rules/classification/Cisco/IOS/dns.pyc -noc/fm/rules/classification/Cisco/IOS/dns.pyo -noc/fm/rules/classification/Cisco/IOS/dot11.py -noc/fm/rules/classification/Cisco/IOS/dot11.pyc -noc/fm/rules/classification/Cisco/IOS/dot11.pyo -noc/fm/rules/classification/Cisco/IOS/eigrp.py -noc/fm/rules/classification/Cisco/IOS/eigrp.pyc -noc/fm/rules/classification/Cisco/IOS/eigrp.pyo -noc/fm/rules/classification/Cisco/IOS/fallback.py -noc/fm/rules/classification/Cisco/IOS/fallback.pyc -noc/fm/rules/classification/Cisco/IOS/fallback.pyo -noc/fm/rules/classification/Cisco/IOS/ipsec.py -noc/fm/rules/classification/Cisco/IOS/ipsec.pyc -noc/fm/rules/classification/Cisco/IOS/ipsec.pyo -noc/fm/rules/classification/Cisco/IOS/link.py -noc/fm/rules/classification/Cisco/IOS/link.pyc -noc/fm/rules/classification/Cisco/IOS/link.pyo -noc/fm/rules/classification/Cisco/IOS/loadbalance.py -noc/fm/rules/classification/Cisco/IOS/loadbalance.pyc -noc/fm/rules/classification/Cisco/IOS/loadbalance.pyo -noc/fm/rules/classification/Cisco/IOS/logging.py -noc/fm/rules/classification/Cisco/IOS/logging.pyc -noc/fm/rules/classification/Cisco/IOS/logging.pyo -noc/fm/rules/classification/Cisco/IOS/memory.py -noc/fm/rules/classification/Cisco/IOS/memory.pyc -noc/fm/rules/classification/Cisco/IOS/memory.pyo -noc/fm/rules/classification/Cisco/IOS/misc.py -noc/fm/rules/classification/Cisco/IOS/misc.pyc -noc/fm/rules/classification/Cisco/IOS/misc.pyo -noc/fm/rules/classification/Cisco/IOS/phone.py -noc/fm/rules/classification/Cisco/IOS/phone.pyc -noc/fm/rules/classification/Cisco/IOS/phone.pyo -noc/fm/rules/classification/Cisco/IOS/poe.py -noc/fm/rules/classification/Cisco/IOS/poe.pyc -noc/fm/rules/classification/Cisco/IOS/poe.pyo -noc/fm/rules/classification/Cisco/IOS/process.py -noc/fm/rules/classification/Cisco/IOS/process.pyc -noc/fm/rules/classification/Cisco/IOS/process.pyo -noc/fm/rules/classification/Cisco/IOS/qos.py -noc/fm/rules/classification/Cisco/IOS/qos.pyc -noc/fm/rules/classification/Cisco/IOS/qos.pyo -noc/fm/rules/classification/Cisco/IOS/radius.py -noc/fm/rules/classification/Cisco/IOS/radius.pyc -noc/fm/rules/classification/Cisco/IOS/radius.pyo -noc/fm/rules/classification/Cisco/IOS/security.py -noc/fm/rules/classification/Cisco/IOS/security.pyc -noc/fm/rules/classification/Cisco/IOS/security.pyo -noc/fm/rules/classification/Cisco/IOS/vtp.py -noc/fm/rules/classification/Cisco/IOS/vtp.pyc -noc/fm/rules/classification/Cisco/IOS/vtp.pyo -noc/fm/rules/classification/Cisco/__init__.py -noc/fm/rules/classification/Cisco/__init__.pyc -noc/fm/rules/classification/Cisco/__init__.pyo -noc/fm/rules/classification/DLink/DES3xxx/__init__.py -noc/fm/rules/classification/DLink/DES3xxx/__init__.pyc -noc/fm/rules/classification/DLink/DES3xxx/__init__.pyo -noc/fm/rules/classification/DLink/DES3xxx/config.py -noc/fm/rules/classification/DLink/DES3xxx/config.pyc -noc/fm/rules/classification/DLink/DES3xxx/config.pyo -noc/fm/rules/classification/DLink/DES3xxx/lbd.py -noc/fm/rules/classification/DLink/DES3xxx/lbd.pyc -noc/fm/rules/classification/DLink/DES3xxx/lbd.pyo -noc/fm/rules/classification/DLink/DES3xxx/link.py -noc/fm/rules/classification/DLink/DES3xxx/link.pyc -noc/fm/rules/classification/DLink/DES3xxx/link.pyo -noc/fm/rules/classification/DLink/DES3xxx/security.py -noc/fm/rules/classification/DLink/DES3xxx/security.pyc -noc/fm/rules/classification/DLink/DES3xxx/security.pyo -noc/fm/rules/classification/DLink/DxS/__init__.py -noc/fm/rules/classification/DLink/DxS/__init__.pyc -noc/fm/rules/classification/DLink/DxS/__init__.pyo -noc/fm/rules/classification/DLink/DxS/bgp.py -noc/fm/rules/classification/DLink/DxS/bgp.pyc -noc/fm/rules/classification/DLink/DxS/bgp.pyo -noc/fm/rules/classification/DLink/DxS/chassis.py -noc/fm/rules/classification/DLink/DxS/chassis.pyc -noc/fm/rules/classification/DLink/DxS/chassis.pyo -noc/fm/rules/classification/DLink/DxS/config.py -noc/fm/rules/classification/DLink/DxS/config.pyc -noc/fm/rules/classification/DLink/DxS/config.pyo -noc/fm/rules/classification/DLink/DxS/lbd.py -noc/fm/rules/classification/DLink/DxS/lbd.pyc -noc/fm/rules/classification/DLink/DxS/lbd.pyo -noc/fm/rules/classification/DLink/DxS/link.py -noc/fm/rules/classification/DLink/DxS/link.pyc -noc/fm/rules/classification/DLink/DxS/link.pyo -noc/fm/rules/classification/DLink/DxS/security.py -noc/fm/rules/classification/DLink/DxS/security.pyc -noc/fm/rules/classification/DLink/DxS/security.pyo -noc/fm/rules/classification/DLink/__init__.py -noc/fm/rules/classification/DLink/__init__.pyc -noc/fm/rules/classification/DLink/__init__.pyo -noc/fm/rules/classification/Force10/FTOS/__init__.py -noc/fm/rules/classification/Force10/FTOS/__init__.pyc -noc/fm/rules/classification/Force10/FTOS/__init__.pyo -noc/fm/rules/classification/Force10/FTOS/auth.py -noc/fm/rules/classification/Force10/FTOS/auth.pyc -noc/fm/rules/classification/Force10/FTOS/auth.pyo -noc/fm/rules/classification/Force10/FTOS/config.py -noc/fm/rules/classification/Force10/FTOS/config.pyc -noc/fm/rules/classification/Force10/FTOS/config.pyo -noc/fm/rules/classification/Force10/FTOS/link.py -noc/fm/rules/classification/Force10/FTOS/link.pyc -noc/fm/rules/classification/Force10/FTOS/link.pyo -noc/fm/rules/classification/Force10/FTOS/security.py -noc/fm/rules/classification/Force10/FTOS/security.pyc -noc/fm/rules/classification/Force10/FTOS/security.pyo -noc/fm/rules/classification/Force10/__init__.py -noc/fm/rules/classification/Force10/__init__.pyc -noc/fm/rules/classification/Force10/__init__.pyo -noc/fm/rules/classification/Juniper/JUNOS/__init__.py -noc/fm/rules/classification/Juniper/JUNOS/__init__.pyc -noc/fm/rules/classification/Juniper/JUNOS/__init__.pyo -noc/fm/rules/classification/Juniper/JUNOS/config.py -noc/fm/rules/classification/Juniper/JUNOS/config.pyc -noc/fm/rules/classification/Juniper/JUNOS/config.pyo -noc/fm/rules/classification/Juniper/JUNOS/ldp.py -noc/fm/rules/classification/Juniper/JUNOS/ldp.pyc -noc/fm/rules/classification/Juniper/JUNOS/ldp.pyo -noc/fm/rules/classification/Juniper/__init__.py -noc/fm/rules/classification/Juniper/__init__.pyc -noc/fm/rules/classification/Juniper/__init__.pyo -noc/fm/rules/classification/Linksys/SPS2xx/__init__.py -noc/fm/rules/classification/Linksys/SPS2xx/__init__.pyc -noc/fm/rules/classification/Linksys/SPS2xx/__init__.pyo -noc/fm/rules/classification/Linksys/SPS2xx/config.py -noc/fm/rules/classification/Linksys/SPS2xx/config.pyc -noc/fm/rules/classification/Linksys/SPS2xx/config.pyo -noc/fm/rules/classification/Linksys/SPS2xx/link.py -noc/fm/rules/classification/Linksys/SPS2xx/link.pyc -noc/fm/rules/classification/Linksys/SPS2xx/link.pyo -noc/fm/rules/classification/Linksys/__init__.py -noc/fm/rules/classification/Linksys/__init__.pyc -noc/fm/rules/classification/Linksys/__init__.pyo -noc/fm/rules/classification/OS/FreeBSD/__init__.py -noc/fm/rules/classification/OS/FreeBSD/__init__.pyc -noc/fm/rules/classification/OS/FreeBSD/__init__.pyo -noc/fm/rules/classification/OS/FreeBSD/chassis.py -noc/fm/rules/classification/OS/FreeBSD/chassis.pyc -noc/fm/rules/classification/OS/FreeBSD/chassis.pyo -noc/fm/rules/classification/OS/FreeBSD/link.py -noc/fm/rules/classification/OS/FreeBSD/link.pyc -noc/fm/rules/classification/OS/FreeBSD/link.pyo -noc/fm/rules/classification/OS/FreeBSD/memory.py -noc/fm/rules/classification/OS/FreeBSD/memory.pyc -noc/fm/rules/classification/OS/FreeBSD/memory.pyo -noc/fm/rules/classification/OS/FreeBSD/security.py -noc/fm/rules/classification/OS/FreeBSD/security.pyc -noc/fm/rules/classification/OS/FreeBSD/security.pyo -noc/fm/rules/classification/OS/__init__.py -noc/fm/rules/classification/OS/__init__.pyc -noc/fm/rules/classification/OS/__init__.pyo -noc/fm/rules/classification/Zyxel/ZyNOS/__init__.py -noc/fm/rules/classification/Zyxel/ZyNOS/__init__.pyc -noc/fm/rules/classification/Zyxel/ZyNOS/__init__.pyo -noc/fm/rules/classification/Zyxel/ZyNOS/port.py -noc/fm/rules/classification/Zyxel/ZyNOS/port.pyc -noc/fm/rules/classification/Zyxel/ZyNOS/port.pyo -noc/fm/rules/classification/Zyxel/__init__.py -noc/fm/rules/classification/Zyxel/__init__.pyc -noc/fm/rules/classification/Zyxel/__init__.pyo -noc/fm/rules/classification/__init__.py -noc/fm/rules/classification/__init__.pyc -noc/fm/rules/classification/__init__.pyo -noc/fm/rules/classification/auth.py -noc/fm/rules/classification/auth.pyc -noc/fm/rules/classification/auth.pyo -noc/fm/rules/classification/bgp.py -noc/fm/rules/classification/bgp.pyc -noc/fm/rules/classification/bgp.pyo -noc/fm/rules/classification/config.py -noc/fm/rules/classification/config.pyc -noc/fm/rules/classification/config.pyo -noc/fm/rules/classification/dot11.py -noc/fm/rules/classification/dot11.pyc -noc/fm/rules/classification/dot11.pyo -noc/fm/rules/classification/f5/BIGIP/__init__.py -noc/fm/rules/classification/f5/BIGIP/__init__.pyc -noc/fm/rules/classification/f5/BIGIP/__init__.pyo -noc/fm/rules/classification/f5/BIGIP/loadbalance.py -noc/fm/rules/classification/f5/BIGIP/loadbalance.pyc -noc/fm/rules/classification/f5/BIGIP/loadbalance.pyo -noc/fm/rules/classification/f5/__init__.py -noc/fm/rules/classification/f5/__init__.pyc -noc/fm/rules/classification/f5/__init__.pyo -noc/fm/rules/classification/fallback.py -noc/fm/rules/classification/fallback.pyc -noc/fm/rules/classification/fallback.pyo -noc/fm/rules/classification/link.py -noc/fm/rules/classification/link.pyc -noc/fm/rules/classification/link.pyo -noc/fm/rules/classification/pm.py -noc/fm/rules/classification/pm.pyc -noc/fm/rules/classification/pm.pyo -noc/fm/rules/classification/stp.py -noc/fm/rules/classification/stp.pyc -noc/fm/rules/classification/stp.pyo -noc/fm/rules/classification/system.py -noc/fm/rules/classification/system.pyc -noc/fm/rules/classification/system.pyo -noc/fm/rules/correlation/__init__.py -noc/fm/rules/correlation/__init__.pyc -noc/fm/rules/correlation/__init__.pyo -noc/fm/rules/correlation/chassis.py -noc/fm/rules/correlation/chassis.pyc -noc/fm/rules/correlation/chassis.pyo -noc/fm/rules/correlation/dot11.py -noc/fm/rules/correlation/dot11.pyc -noc/fm/rules/correlation/dot11.pyo -noc/fm/rules/correlation/ipsec.py -noc/fm/rules/correlation/ipsec.pyc -noc/fm/rules/correlation/ipsec.pyo -noc/fm/rules/correlation/lbd.py -noc/fm/rules/correlation/lbd.pyc -noc/fm/rules/correlation/lbd.pyo -noc/fm/rules/correlation/ldp.krb -noc/fm/rules/correlation/link.py -noc/fm/rules/correlation/link.pyc -noc/fm/rules/correlation/link.pyo -noc/fm/rules/correlation/loadbalance.py -noc/fm/rules/correlation/loadbalance.pyc -noc/fm/rules/correlation/loadbalance.pyo -noc/fm/rules/correlation/radius.py -noc/fm/rules/correlation/radius.pyc -noc/fm/rules/correlation/radius.pyo -noc/fm/rules/correlation/system.py -noc/fm/rules/correlation/system.pyc -noc/fm/rules/correlation/system.pyo -noc/ip/__init__.py -noc/ip/__init__.pyc -noc/ip/__init__.pyo -noc/ip/apps/__init__.py -noc/ip/apps/__init__.pyc -noc/ip/apps/__init__.pyo -noc/ip/apps/addressrange/__init__.py -noc/ip/apps/addressrange/__init__.pyc -noc/ip/apps/addressrange/__init__.pyo -noc/ip/apps/addressrange/tests/__init__.py -noc/ip/apps/addressrange/tests/__init__.pyc -noc/ip/apps/addressrange/tests/__init__.pyo -noc/ip/apps/addressrange/tests/test.py -noc/ip/apps/addressrange/tests/test.pyc -noc/ip/apps/addressrange/tests/test.pyo -noc/ip/apps/addressrange/views.py -noc/ip/apps/addressrange/views.pyc -noc/ip/apps/addressrange/views.pyo -noc/ip/apps/ipam/__init__.py -noc/ip/apps/ipam/__init__.pyc -noc/ip/apps/ipam/__init__.pyo -noc/ip/apps/ipam/templates/add_prefix.html -noc/ip/apps/ipam/templates/change_address.html -noc/ip/apps/ipam/templates/change_prefix.html -noc/ip/apps/ipam/templates/delete_prefix.html -noc/ip/apps/ipam/templates/index.html -noc/ip/apps/ipam/templates/vrf_index.html -noc/ip/apps/ipam/tests/__init__.py -noc/ip/apps/ipam/tests/__init__.pyc -noc/ip/apps/ipam/tests/__init__.pyo -noc/ip/apps/ipam/tests/test.py -noc/ip/apps/ipam/tests/test.pyc -noc/ip/apps/ipam/tests/test.pyo -noc/ip/apps/ipam/views.py -noc/ip/apps/ipam/views.pyc -noc/ip/apps/ipam/views.pyo -noc/ip/apps/prefixaccess/__init__.py -noc/ip/apps/prefixaccess/__init__.pyc -noc/ip/apps/prefixaccess/__init__.pyo -noc/ip/apps/prefixaccess/tests/__init__.py -noc/ip/apps/prefixaccess/tests/__init__.pyc -noc/ip/apps/prefixaccess/tests/__init__.pyo -noc/ip/apps/prefixaccess/tests/test.py -noc/ip/apps/prefixaccess/tests/test.pyc -noc/ip/apps/prefixaccess/tests/test.pyo -noc/ip/apps/prefixaccess/views.py -noc/ip/apps/prefixaccess/views.pyc -noc/ip/apps/prefixaccess/views.pyo -noc/ip/apps/reportallocated/__init__.py -noc/ip/apps/reportallocated/__init__.pyc -noc/ip/apps/reportallocated/__init__.pyo -noc/ip/apps/reportallocated/tests/__init__.py -noc/ip/apps/reportallocated/tests/__init__.pyc -noc/ip/apps/reportallocated/tests/__init__.pyo -noc/ip/apps/reportallocated/tests/test.py -noc/ip/apps/reportallocated/tests/test.pyc -noc/ip/apps/reportallocated/tests/test.pyo -noc/ip/apps/reportallocated/views.py -noc/ip/apps/reportallocated/views.pyc -noc/ip/apps/reportallocated/views.pyo -noc/ip/apps/reportexpanded/__init__.py -noc/ip/apps/reportexpanded/__init__.pyc -noc/ip/apps/reportexpanded/__init__.pyo -noc/ip/apps/reportexpanded/tests/__init__.py -noc/ip/apps/reportexpanded/tests/__init__.pyc -noc/ip/apps/reportexpanded/tests/__init__.pyo -noc/ip/apps/reportexpanded/tests/test.py -noc/ip/apps/reportexpanded/tests/test.pyc -noc/ip/apps/reportexpanded/tests/test.pyo -noc/ip/apps/reportexpanded/views.py -noc/ip/apps/reportexpanded/views.pyc -noc/ip/apps/reportexpanded/views.pyo -noc/ip/apps/reportfree/__init__.py -noc/ip/apps/reportfree/__init__.pyc -noc/ip/apps/reportfree/__init__.pyo -noc/ip/apps/reportfree/tests/__init__.py -noc/ip/apps/reportfree/tests/__init__.pyc -noc/ip/apps/reportfree/tests/__init__.pyo -noc/ip/apps/reportfree/tests/test.py -noc/ip/apps/reportfree/tests/test.pyc -noc/ip/apps/reportfree/tests/test.pyo -noc/ip/apps/reportfree/views.py -noc/ip/apps/reportfree/views.pyc -noc/ip/apps/reportfree/views.pyo -noc/ip/apps/reportsummary/__init__.py -noc/ip/apps/reportsummary/__init__.pyc -noc/ip/apps/reportsummary/__init__.pyo -noc/ip/apps/reportsummary/tests/__init__.py -noc/ip/apps/reportsummary/tests/__init__.pyc -noc/ip/apps/reportsummary/tests/__init__.pyo -noc/ip/apps/reportsummary/tests/test.py -noc/ip/apps/reportsummary/tests/test.pyc -noc/ip/apps/reportsummary/tests/test.pyo -noc/ip/apps/reportsummary/views.py -noc/ip/apps/reportsummary/views.pyc -noc/ip/apps/reportsummary/views.pyo -noc/ip/apps/tools/__init__.py -noc/ip/apps/tools/__init__.pyc -noc/ip/apps/tools/__init__.pyo -noc/ip/apps/tools/templates/index.html -noc/ip/apps/tools/tests/__init__.py -noc/ip/apps/tools/tests/__init__.pyc -noc/ip/apps/tools/tests/__init__.pyo -noc/ip/apps/tools/tests/tools.py -noc/ip/apps/tools/tests/tools.pyc -noc/ip/apps/tools/tests/tools.pyo -noc/ip/apps/tools/views.py -noc/ip/apps/tools/views.pyc -noc/ip/apps/tools/views.pyo -noc/ip/apps/vrf/__init__.py -noc/ip/apps/vrf/__init__.pyc -noc/ip/apps/vrf/__init__.pyo -noc/ip/apps/vrf/tests/__init__.py -noc/ip/apps/vrf/tests/__init__.pyc -noc/ip/apps/vrf/tests/__init__.pyo -noc/ip/apps/vrf/tests/test.py -noc/ip/apps/vrf/tests/test.pyc -noc/ip/apps/vrf/tests/test.pyo -noc/ip/apps/vrf/views.py -noc/ip/apps/vrf/views.pyc -noc/ip/apps/vrf/views.pyo -noc/ip/apps/vrfgroup/__init__.py -noc/ip/apps/vrfgroup/__init__.pyc -noc/ip/apps/vrfgroup/__init__.pyo -noc/ip/apps/vrfgroup/tests/__init__.py -noc/ip/apps/vrfgroup/tests/__init__.pyc -noc/ip/apps/vrfgroup/tests/__init__.pyo -noc/ip/apps/vrfgroup/tests/test.py -noc/ip/apps/vrfgroup/tests/test.pyc -noc/ip/apps/vrfgroup/tests/test.pyo -noc/ip/apps/vrfgroup/views.py -noc/ip/apps/vrfgroup/views.pyc -noc/ip/apps/vrfgroup/views.pyo -noc/ip/migrations/0001_initial.py -noc/ip/migrations/0001_initial.pyc -noc/ip/migrations/0001_initial.pyo -noc/ip/migrations/0002_plpgsql_triggers_and_functions.py -noc/ip/migrations/0002_plpgsql_triggers_and_functions.pyc -noc/ip/migrations/0002_plpgsql_triggers_and_functions.pyo -noc/ip/migrations/0003_nocidr.py -noc/ip/migrations/0003_nocidr.pyc -noc/ip/migrations/0003_nocidr.pyo -noc/ip/migrations/0004_default_vrf.py -noc/ip/migrations/0004_default_vrf.pyc -noc/ip/migrations/0004_default_vrf.pyo -noc/ip/migrations/0005_free_ip.py -noc/ip/migrations/0005_free_ip.pyc -noc/ip/migrations/0005_free_ip.pyo -noc/ip/migrations/0006_vrf_description.py -noc/ip/migrations/0006_vrf_description.pyc -noc/ip/migrations/0006_vrf_description.pyo -noc/ip/migrations/0007_ipv4addressrange.py -noc/ip/migrations/0007_ipv4addressrange.pyc -noc/ip/migrations/0007_ipv4addressrange.pyo -noc/ip/migrations/0008_ipv4block_vc.py -noc/ip/migrations/0008_ipv4block_vc.pyc -noc/ip/migrations/0008_ipv4block_vc.pyo -noc/ip/migrations/0009_no_last_modified.py -noc/ip/migrations/0009_no_last_modified.pyc -noc/ip/migrations/0009_no_last_modified.pyo -noc/ip/migrations/0010_tags.py -noc/ip/migrations/0010_tags.pyc -noc/ip/migrations/0010_tags.pyo -noc/ip/migrations/0011_bookmarks.py -noc/ip/migrations/0011_bookmarks.pyc -noc/ip/migrations/0011_bookmarks.pyo -noc/ip/migrations/0012_address_mac.py -noc/ip/migrations/0012_address_mac.pyc -noc/ip/migrations/0012_address_mac.pyo -noc/ip/migrations/0013_ipv6_schema.py -noc/ip/migrations/0013_ipv6_schema.pyc -noc/ip/migrations/0013_ipv6_schema.pyo -noc/ip/migrations/0014_ipv6_data.py -noc/ip/migrations/0014_ipv6_data.pyc -noc/ip/migrations/0014_ipv6_data.pyo -noc/ip/migrations/0015_ipv6_cleanup.py -noc/ip/migrations/0015_ipv6_cleanup.pyc -noc/ip/migrations/0015_ipv6_cleanup.pyo -noc/ip/migrations/__init__.py -noc/ip/migrations/__init__.pyc -noc/ip/migrations/__init__.pyo -noc/ip/models.py -noc/ip/models.pyc -noc/ip/models.pyo -noc/ip/periodics/__init__.py -noc/ip/periodics/__init__.pyc -noc/ip/periodics/__init__.pyo -noc/ip/periodics/sync_macs.py -noc/ip/periodics/sync_macs.pyc -noc/ip/periodics/sync_macs.pyo -noc/ip/tests/__init__.py -noc/ip/tests/__init__.pyc -noc/ip/tests/__init__.pyo -noc/kb/__init__.py -noc/kb/__init__.pyc -noc/kb/__init__.pyo -noc/kb/apps/__init__.py -noc/kb/apps/__init__.pyc -noc/kb/apps/__init__.pyo -noc/kb/apps/globalbookmark/__init__.py -noc/kb/apps/globalbookmark/__init__.pyc -noc/kb/apps/globalbookmark/__init__.pyo -noc/kb/apps/globalbookmark/tests/__init__.py -noc/kb/apps/globalbookmark/tests/__init__.pyc -noc/kb/apps/globalbookmark/tests/__init__.pyo -noc/kb/apps/globalbookmark/tests/test.py -noc/kb/apps/globalbookmark/tests/test.pyc -noc/kb/apps/globalbookmark/tests/test.pyo -noc/kb/apps/globalbookmark/views.py -noc/kb/apps/globalbookmark/views.pyc -noc/kb/apps/globalbookmark/views.pyo -noc/kb/apps/index/__init__.py -noc/kb/apps/index/__init__.pyc -noc/kb/apps/index/__init__.pyo -noc/kb/apps/index/templates/index.html -noc/kb/apps/index/templates/index_category.html -noc/kb/apps/index/tests/__init__.py -noc/kb/apps/index/tests/__init__.pyc -noc/kb/apps/index/tests/__init__.pyo -noc/kb/apps/index/tests/test.py -noc/kb/apps/index/tests/test.pyc -noc/kb/apps/index/tests/test.pyo -noc/kb/apps/index/views.py -noc/kb/apps/index/views.pyc -noc/kb/apps/index/views.pyo -noc/kb/apps/kbentry/__init__.py -noc/kb/apps/kbentry/__init__.pyc -noc/kb/apps/kbentry/__init__.pyo -noc/kb/apps/kbentry/templates/change_form.html -noc/kb/apps/kbentry/templates/template_form.html -noc/kb/apps/kbentry/templates/template_index.html -noc/kb/apps/kbentry/tests/__init__.py -noc/kb/apps/kbentry/tests/__init__.pyc -noc/kb/apps/kbentry/tests/__init__.pyo -noc/kb/apps/kbentry/tests/test.py -noc/kb/apps/kbentry/tests/test.pyc -noc/kb/apps/kbentry/tests/test.pyo -noc/kb/apps/kbentry/views.py -noc/kb/apps/kbentry/views.pyc -noc/kb/apps/kbentry/views.pyo -noc/kb/apps/kbentrytemplate/__init__.py -noc/kb/apps/kbentrytemplate/__init__.pyc -noc/kb/apps/kbentrytemplate/__init__.pyo -noc/kb/apps/kbentrytemplate/tests/__init__.py -noc/kb/apps/kbentrytemplate/tests/__init__.pyc -noc/kb/apps/kbentrytemplate/tests/__init__.pyo -noc/kb/apps/kbentrytemplate/tests/test.py -noc/kb/apps/kbentrytemplate/tests/test.pyc -noc/kb/apps/kbentrytemplate/tests/test.pyo -noc/kb/apps/kbentrytemplate/views.py -noc/kb/apps/kbentrytemplate/views.pyc -noc/kb/apps/kbentrytemplate/views.pyo -noc/kb/apps/userbookmark/__init__.py -noc/kb/apps/userbookmark/__init__.pyc -noc/kb/apps/userbookmark/__init__.pyo -noc/kb/apps/userbookmark/tests/__init__.py -noc/kb/apps/userbookmark/tests/__init__.pyc -noc/kb/apps/userbookmark/tests/__init__.pyo -noc/kb/apps/userbookmark/tests/test.py -noc/kb/apps/userbookmark/tests/test.pyc -noc/kb/apps/userbookmark/tests/test.pyo -noc/kb/apps/userbookmark/views.py -noc/kb/apps/userbookmark/views.pyc -noc/kb/apps/userbookmark/views.pyo -noc/kb/apps/view/__init__.py -noc/kb/apps/view/__init__.pyc -noc/kb/apps/view/__init__.pyo -noc/kb/apps/view/templates/view.html -noc/kb/apps/view/tests/__init__.py -noc/kb/apps/view/tests/__init__.pyc -noc/kb/apps/view/tests/__init__.pyo -noc/kb/apps/view/tests/test.py -noc/kb/apps/view/tests/test.pyc -noc/kb/apps/view/tests/test.pyo -noc/kb/apps/view/views.py -noc/kb/apps/view/views.pyc -noc/kb/apps/view/views.pyo -noc/kb/management/__init__.py -noc/kb/management/__init__.pyc -noc/kb/management/__init__.pyo -noc/kb/management/commands/__init__.py -noc/kb/management/commands/__init__.pyc -noc/kb/management/commands/__init__.pyo -noc/kb/management/commands/convert-moin.py -noc/kb/management/commands/convert-moin.pyc -noc/kb/management/commands/convert-moin.pyo -noc/kb/migrations/0001_initial.py -noc/kb/migrations/0001_initial.pyc -noc/kb/migrations/0001_initial.pyo -noc/kb/migrations/0002_kbentrypreviewlog.py -noc/kb/migrations/0002_kbentrypreviewlog.pyc -noc/kb/migrations/0002_kbentrypreviewlog.pyo -noc/kb/migrations/0003_kb_entry_attachment.py -noc/kb/migrations/0003_kb_entry_attachment.pyc -noc/kb/migrations/0003_kb_entry_attachment.pyo -noc/kb/migrations/0004_bookmarks.py -noc/kb/migrations/0004_bookmarks.pyc -noc/kb/migrations/0004_bookmarks.pyo -noc/kb/migrations/0005_kb_entry_template.py -noc/kb/migrations/0005_kb_entry_template.pyc -noc/kb/migrations/0005_kb_entry_template.pyo -noc/kb/migrations/0006_tags.py -noc/kb/migrations/0006_tags.pyc -noc/kb/migrations/0006_tags.pyo -noc/kb/migrations/0007_no_category.py -noc/kb/migrations/0007_no_category.pyc -noc/kb/migrations/0007_no_category.pyo -noc/kb/migrations/__init__.py -noc/kb/migrations/__init__.pyc -noc/kb/migrations/__init__.pyo -noc/kb/models.py -noc/kb/models.pyc -noc/kb/models.pyo -noc/kb/parsers/__init__.py -noc/kb/parsers/__init__.pyc -noc/kb/parsers/__init__.pyo -noc/kb/parsers/creole_parser.py -noc/kb/parsers/creole_parser.pyc -noc/kb/parsers/creole_parser.pyo -noc/kb/parsers/csv_parser.py -noc/kb/parsers/csv_parser.pyc -noc/kb/parsers/csv_parser.pyo -noc/kb/parsers/macros/__init__.py -noc/kb/parsers/macros/__init__.pyc -noc/kb/parsers/macros/__init__.pyo -noc/kb/parsers/macros/format.py -noc/kb/parsers/macros/format.pyc -noc/kb/parsers/macros/format.pyo -noc/kb/parsers/macros/now.py -noc/kb/parsers/macros/now.pyc -noc/kb/parsers/macros/now.pyo -noc/kb/parsers/macros/rack.py -noc/kb/parsers/macros/rack.pyc -noc/kb/parsers/macros/rack.pyo -noc/kb/parsers/macros/search.py -noc/kb/parsers/macros/search.pyc -noc/kb/parsers/macros/search.pyo -noc/kb/parsers/mediawiki_parser.py -noc/kb/parsers/mediawiki_parser.pyc -noc/kb/parsers/mediawiki_parser.pyo -noc/kb/parsers/plain_parser.py -noc/kb/parsers/plain_parser.pyc -noc/kb/parsers/plain_parser.pyo -noc/lib/__init__.py -noc/lib/__init__.pyc -noc/lib/__init__.pyo -noc/lib/admin_actions.py -noc/lib/admin_actions.pyc -noc/lib/admin_actions.pyo -noc/lib/app/__init__.py -noc/lib/app/__init__.pyc -noc/lib/app/__init__.pyo -noc/lib/app/access.py -noc/lib/app/access.pyc -noc/lib/app/access.pyo -noc/lib/app/application.py -noc/lib/app/application.pyc -noc/lib/app/application.pyo -noc/lib/app/modelapplication.py -noc/lib/app/modelapplication.pyc -noc/lib/app/modelapplication.pyo -noc/lib/app/reportapplication.py -noc/lib/app/reportapplication.pyc -noc/lib/app/reportapplication.pyo -noc/lib/app/saapplication.py -noc/lib/app/saapplication.pyc -noc/lib/app/saapplication.pyo -noc/lib/app/simplereport.py -noc/lib/app/simplereport.pyc -noc/lib/app/simplereport.pyo -noc/lib/app/site.py -noc/lib/app/site.pyc -noc/lib/app/site.pyo -noc/lib/colors.py -noc/lib/colors.pyc -noc/lib/colors.pyo -noc/lib/convert.py -noc/lib/convert.pyc -noc/lib/convert.pyo -noc/lib/crypto.py -noc/lib/crypto.pyc -noc/lib/crypto.pyo -noc/lib/csvutils.py -noc/lib/csvutils.pyc -noc/lib/csvutils.pyo -noc/lib/daemon.py -noc/lib/daemon.pyc -noc/lib/daemon.pyo -noc/lib/database_storage.py -noc/lib/database_storage.pyc -noc/lib/database_storage.pyo -noc/lib/debug.py -noc/lib/debug.pyc -noc/lib/debug.pyo -noc/lib/ecma48.py -noc/lib/ecma48.pyc -noc/lib/ecma48.pyo -noc/lib/fields.py -noc/lib/fields.pyc -noc/lib/fields.pyo -noc/lib/fileutils.py -noc/lib/fileutils.pyc -noc/lib/fileutils.pyo -noc/lib/forms.py -noc/lib/forms.pyc -noc/lib/forms.pyo -noc/lib/fsm.py -noc/lib/fsm.pyc -noc/lib/fsm.pyo -noc/lib/gpg.py -noc/lib/gpg.pyc -noc/lib/gpg.pyo -noc/lib/highlight.py -noc/lib/highlight.pyc -noc/lib/highlight.pyo -noc/lib/ip.py -noc/lib/ip.pyc -noc/lib/ip.pyo -noc/lib/middleware.py -noc/lib/middleware.pyc -noc/lib/middleware.pyo -noc/lib/nbsocket.py -noc/lib/nbsocket.pyc -noc/lib/nbsocket.pyo -noc/lib/pmhash.py -noc/lib/pmhash.pyc -noc/lib/pmhash.pyo -noc/lib/pyquote.py -noc/lib/pyquote.pyc -noc/lib/pyquote.pyo -noc/lib/registry.py -noc/lib/registry.pyc -noc/lib/registry.pyo -noc/lib/rpsl.py -noc/lib/rpsl.pyc -noc/lib/rpsl.pyo -noc/lib/search.py -noc/lib/search.pyc -noc/lib/search.pyo -noc/lib/sysutils.py -noc/lib/sysutils.pyc -noc/lib/sysutils.pyo -noc/lib/test.py -noc/lib/test.pyc -noc/lib/test.pyo -noc/lib/test_runner.py -noc/lib/test_runner.pyc -noc/lib/test_runner.pyo -noc/lib/tests/__init__.py -noc/lib/tests/__init__.pyc -noc/lib/tests/__init__.pyo -noc/lib/tests/fsm.py -noc/lib/tests/fsm.pyc -noc/lib/tests/fsm.pyo -noc/lib/tests/ip.py -noc/lib/tests/ip.pyc -noc/lib/tests/ip.pyo -noc/lib/text.py -noc/lib/text.pyc -noc/lib/text.pyo -noc/lib/timepattern.py -noc/lib/timepattern.pyc -noc/lib/timepattern.pyo -noc/lib/tt.py -noc/lib/tt.pyc -noc/lib/tt.pyo -noc/lib/url.py -noc/lib/url.pyc -noc/lib/url.pyo -noc/lib/validators.py -noc/lib/validators.pyc -noc/lib/validators.pyo -noc/lib/version.py -noc/lib/version.pyc -noc/lib/version.pyo -noc/lib/widgets.py -noc/lib/widgets.pyc -noc/lib/widgets.pyo -noc/locale/ru/LC_MESSAGES/django.po -noc/main/__init__.py -noc/main/__init__.pyc -noc/main/__init__.pyo -noc/main/apps/__init__.py -noc/main/apps/__init__.pyc -noc/main/apps/__init__.pyo -noc/main/apps/audittrail/__init__.py -noc/main/apps/audittrail/__init__.pyc -noc/main/apps/audittrail/__init__.pyo -noc/main/apps/audittrail/tests/__init__.py -noc/main/apps/audittrail/tests/__init__.pyc -noc/main/apps/audittrail/tests/__init__.pyo -noc/main/apps/audittrail/tests/test.py -noc/main/apps/audittrail/tests/test.pyc -noc/main/apps/audittrail/tests/test.pyo -noc/main/apps/audittrail/views.py -noc/main/apps/audittrail/views.pyc -noc/main/apps/audittrail/views.pyo -noc/main/apps/auth/__init__.py -noc/main/apps/auth/__init__.pyc -noc/main/apps/auth/__init__.pyo -noc/main/apps/auth/templates/login.html -noc/main/apps/auth/templates/password_change_form.html -noc/main/apps/auth/tests/__init__.py -noc/main/apps/auth/tests/__init__.pyc -noc/main/apps/auth/tests/__init__.pyo -noc/main/apps/auth/tests/login.py -noc/main/apps/auth/tests/login.pyc -noc/main/apps/auth/tests/login.pyo -noc/main/apps/auth/views.py -noc/main/apps/auth/views.pyc -noc/main/apps/auth/views.pyo -noc/main/apps/calculator/__init__.py -noc/main/apps/calculator/__init__.pyc -noc/main/apps/calculator/__init__.pyo -noc/main/apps/calculator/calculators/__init__.py -noc/main/apps/calculator/calculators/__init__.pyc -noc/main/apps/calculator/calculators/__init__.pyo -noc/main/apps/calculator/calculators/cir2cbr.py -noc/main/apps/calculator/calculators/cir2cbr.pyc -noc/main/apps/calculator/calculators/cir2cbr.pyo -noc/main/apps/calculator/calculators/dbm_to_mw.py -noc/main/apps/calculator/calculators/dbm_to_mw.pyc -noc/main/apps/calculator/calculators/dbm_to_mw.pyo -noc/main/apps/calculator/calculators/multicast.py -noc/main/apps/calculator/calculators/multicast.pyc -noc/main/apps/calculator/calculators/multicast.pyo -noc/main/apps/calculator/templates/calculator.html -noc/main/apps/calculator/templates/index.html -noc/main/apps/calculator/tests/__init__.py -noc/main/apps/calculator/tests/__init__.pyc -noc/main/apps/calculator/tests/__init__.pyo -noc/main/apps/calculator/tests/test.py -noc/main/apps/calculator/tests/test.pyc -noc/main/apps/calculator/tests/test.pyo -noc/main/apps/calculator/views.py -noc/main/apps/calculator/views.pyc -noc/main/apps/calculator/views.pyo -noc/main/apps/changesquarantine/__init__.py -noc/main/apps/changesquarantine/__init__.pyc -noc/main/apps/changesquarantine/__init__.pyo -noc/main/apps/changesquarantine/tests/__init__.py -noc/main/apps/changesquarantine/tests/__init__.pyc -noc/main/apps/changesquarantine/tests/__init__.pyo -noc/main/apps/changesquarantine/tests/test.py -noc/main/apps/changesquarantine/tests/test.pyc -noc/main/apps/changesquarantine/tests/test.pyo -noc/main/apps/changesquarantine/views.py -noc/main/apps/changesquarantine/views.pyc -noc/main/apps/changesquarantine/views.pyo -noc/main/apps/changesquarantinerule/__init__.py -noc/main/apps/changesquarantinerule/__init__.pyc -noc/main/apps/changesquarantinerule/__init__.pyo -noc/main/apps/changesquarantinerule/tests/__init__.py -noc/main/apps/changesquarantinerule/tests/__init__.pyc -noc/main/apps/changesquarantinerule/tests/__init__.pyo -noc/main/apps/changesquarantinerule/tests/test.py -noc/main/apps/changesquarantinerule/tests/test.pyc -noc/main/apps/changesquarantinerule/tests/test.pyo -noc/main/apps/changesquarantinerule/views.py -noc/main/apps/changesquarantinerule/views.pyc -noc/main/apps/changesquarantinerule/views.pyo -noc/main/apps/config/__init__.py -noc/main/apps/config/__init__.pyc -noc/main/apps/config/__init__.pyo -noc/main/apps/config/templates/index.html -noc/main/apps/config/templates/view.html -noc/main/apps/config/tests/__init__.py -noc/main/apps/config/tests/__init__.pyc -noc/main/apps/config/tests/__init__.pyo -noc/main/apps/config/tests/test.py -noc/main/apps/config/tests/test.pyc -noc/main/apps/config/tests/test.pyo -noc/main/apps/config/views.py -noc/main/apps/config/views.pyc -noc/main/apps/config/views.pyo -noc/main/apps/csv/__init__.py -noc/main/apps/csv/__init__.pyc -noc/main/apps/csv/__init__.pyo -noc/main/apps/csv/templates/import.html -noc/main/apps/csv/tests/__init__.py -noc/main/apps/csv/tests/__init__.pyc -noc/main/apps/csv/tests/__init__.pyo -noc/main/apps/csv/tests/test.py -noc/main/apps/csv/tests/test.pyc -noc/main/apps/csv/tests/test.pyo -noc/main/apps/csv/views.py -noc/main/apps/csv/views.pyc -noc/main/apps/csv/views.pyo -noc/main/apps/dbtrigger/__init__.py -noc/main/apps/dbtrigger/__init__.pyc -noc/main/apps/dbtrigger/__init__.pyo -noc/main/apps/dbtrigger/tests/__init__.py -noc/main/apps/dbtrigger/tests/__init__.pyc -noc/main/apps/dbtrigger/tests/__init__.pyo -noc/main/apps/dbtrigger/tests/test.py -noc/main/apps/dbtrigger/tests/test.pyc -noc/main/apps/dbtrigger/tests/test.pyo -noc/main/apps/dbtrigger/views.py -noc/main/apps/dbtrigger/views.pyc -noc/main/apps/dbtrigger/views.pyo -noc/main/apps/doc/__init__.py -noc/main/apps/doc/__init__.pyc -noc/main/apps/doc/__init__.pyo -noc/main/apps/doc/tests/__init__.py -noc/main/apps/doc/tests/__init__.pyc -noc/main/apps/doc/tests/__init__.pyo -noc/main/apps/doc/tests/doc.py -noc/main/apps/doc/tests/doc.pyc -noc/main/apps/doc/tests/doc.pyo -noc/main/apps/doc/views.py -noc/main/apps/doc/views.pyc -noc/main/apps/doc/views.pyo -noc/main/apps/group/__init__.py -noc/main/apps/group/__init__.pyc -noc/main/apps/group/__init__.pyo -noc/main/apps/group/tests/__init__.py -noc/main/apps/group/tests/__init__.pyc -noc/main/apps/group/tests/__init__.pyo -noc/main/apps/group/tests/test.py -noc/main/apps/group/tests/test.pyc -noc/main/apps/group/tests/test.pyo -noc/main/apps/group/views.py -noc/main/apps/group/views.pyc -noc/main/apps/group/views.pyo -noc/main/apps/index/__init__.py -noc/main/apps/index/__init__.pyc -noc/main/apps/index/__init__.pyo -noc/main/apps/index/templates/index.html -noc/main/apps/index/tests/__init__.py -noc/main/apps/index/tests/__init__.pyc -noc/main/apps/index/tests/__init__.pyo -noc/main/apps/index/tests/test.py -noc/main/apps/index/tests/test.pyc -noc/main/apps/index/tests/test.pyo -noc/main/apps/index/views.py -noc/main/apps/index/views.pyc -noc/main/apps/index/views.pyo -noc/main/apps/language/__init__.py -noc/main/apps/language/__init__.pyc -noc/main/apps/language/__init__.pyo -noc/main/apps/language/tests/__init__.py -noc/main/apps/language/tests/__init__.pyc -noc/main/apps/language/tests/__init__.pyo -noc/main/apps/language/tests/test.py -noc/main/apps/language/tests/test.pyc -noc/main/apps/language/tests/test.pyo -noc/main/apps/language/views.py -noc/main/apps/language/views.pyc -noc/main/apps/language/views.pyo -noc/main/apps/menu/__init__.py -noc/main/apps/menu/__init__.pyc -noc/main/apps/menu/__init__.pyo -noc/main/apps/menu/tests/__init__.py -noc/main/apps/menu/tests/__init__.pyc -noc/main/apps/menu/tests/__init__.pyo -noc/main/apps/menu/tests/menu.py -noc/main/apps/menu/tests/menu.pyc -noc/main/apps/menu/tests/menu.pyo -noc/main/apps/menu/views.py -noc/main/apps/menu/views.pyc -noc/main/apps/menu/views.pyo -noc/main/apps/message/__init__.py -noc/main/apps/message/__init__.pyc -noc/main/apps/message/__init__.pyo -noc/main/apps/message/templates/failure.html -noc/main/apps/message/templates/success.html -noc/main/apps/message/templates/wait.html -noc/main/apps/message/tests/__init__.py -noc/main/apps/message/tests/__init__.pyc -noc/main/apps/message/tests/__init__.pyo -noc/main/apps/message/tests/test.py -noc/main/apps/message/tests/test.pyc -noc/main/apps/message/tests/test.pyo -noc/main/apps/message/views.py -noc/main/apps/message/views.pyc -noc/main/apps/message/views.pyo -noc/main/apps/mimetype/__init__.py -noc/main/apps/mimetype/__init__.pyc -noc/main/apps/mimetype/__init__.pyo -noc/main/apps/mimetype/tests/__init__.py -noc/main/apps/mimetype/tests/__init__.pyc -noc/main/apps/mimetype/tests/__init__.pyo -noc/main/apps/mimetype/tests/test.py -noc/main/apps/mimetype/tests/test.pyc -noc/main/apps/mimetype/tests/test.pyo -noc/main/apps/mimetype/views.py -noc/main/apps/mimetype/views.pyc -noc/main/apps/mimetype/views.pyo -noc/main/apps/notificationgroup/__init__.py -noc/main/apps/notificationgroup/__init__.pyc -noc/main/apps/notificationgroup/__init__.pyo -noc/main/apps/notificationgroup/templates/test.html -noc/main/apps/notificationgroup/tests/__init__.py -noc/main/apps/notificationgroup/tests/__init__.pyc -noc/main/apps/notificationgroup/tests/__init__.pyo -noc/main/apps/notificationgroup/tests/test.py -noc/main/apps/notificationgroup/tests/test.pyc -noc/main/apps/notificationgroup/tests/test.pyo -noc/main/apps/notificationgroup/views.py -noc/main/apps/notificationgroup/views.pyc -noc/main/apps/notificationgroup/views.pyo -noc/main/apps/pendingnotifications/__init__.py -noc/main/apps/pendingnotifications/__init__.pyc -noc/main/apps/pendingnotifications/__init__.pyo -noc/main/apps/pendingnotifications/tests/__init__.py -noc/main/apps/pendingnotifications/tests/__init__.pyc -noc/main/apps/pendingnotifications/tests/__init__.pyo -noc/main/apps/pendingnotifications/tests/test.py -noc/main/apps/pendingnotifications/tests/test.pyc -noc/main/apps/pendingnotifications/tests/test.pyo -noc/main/apps/pendingnotifications/views.py -noc/main/apps/pendingnotifications/views.pyc -noc/main/apps/pendingnotifications/views.pyo -noc/main/apps/pyrule/__init__.py -noc/main/apps/pyrule/__init__.pyc -noc/main/apps/pyrule/__init__.pyo -noc/main/apps/pyrule/tests/__init__.py -noc/main/apps/pyrule/tests/__init__.pyc -noc/main/apps/pyrule/tests/__init__.pyo -noc/main/apps/pyrule/tests/test.py -noc/main/apps/pyrule/tests/test.pyc -noc/main/apps/pyrule/tests/test.pyo -noc/main/apps/pyrule/views.py -noc/main/apps/pyrule/views.pyc -noc/main/apps/pyrule/views.pyo -noc/main/apps/refbook/__init__.py -noc/main/apps/refbook/__init__.pyc -noc/main/apps/refbook/__init__.pyo -noc/main/apps/refbook/templates/edit.html -noc/main/apps/refbook/templates/index.html -noc/main/apps/refbook/templates/item.html -noc/main/apps/refbook/templates/new.html -noc/main/apps/refbook/templates/view.html -noc/main/apps/refbook/tests/__init__.py -noc/main/apps/refbook/tests/__init__.pyc -noc/main/apps/refbook/tests/__init__.pyo -noc/main/apps/refbook/tests/refbook.json -noc/main/apps/refbook/tests/test.py -noc/main/apps/refbook/tests/test.pyc -noc/main/apps/refbook/tests/test.pyo -noc/main/apps/refbook/views.py -noc/main/apps/refbook/views.pyc -noc/main/apps/refbook/views.pyo -noc/main/apps/refbookadmin/__init__.py -noc/main/apps/refbookadmin/__init__.pyc -noc/main/apps/refbookadmin/__init__.pyo -noc/main/apps/refbookadmin/tests/__init__.py -noc/main/apps/refbookadmin/tests/__init__.pyc -noc/main/apps/refbookadmin/tests/__init__.pyo -noc/main/apps/refbookadmin/tests/test.py -noc/main/apps/refbookadmin/tests/test.pyc -noc/main/apps/refbookadmin/tests/test.pyo -noc/main/apps/refbookadmin/views.py -noc/main/apps/refbookadmin/views.pyc -noc/main/apps/refbookadmin/views.pyo -noc/main/apps/reloadconfig/__init__.py -noc/main/apps/reloadconfig/__init__.pyc -noc/main/apps/reloadconfig/__init__.pyo -noc/main/apps/reloadconfig/tests/__init__.py -noc/main/apps/reloadconfig/tests/__init__.pyc -noc/main/apps/reloadconfig/tests/__init__.pyo -noc/main/apps/reloadconfig/tests/test.py -noc/main/apps/reloadconfig/tests/test.pyc -noc/main/apps/reloadconfig/tests/test.pyo -noc/main/apps/reloadconfig/views.py -noc/main/apps/reloadconfig/views.pyc -noc/main/apps/reloadconfig/views.pyo -noc/main/apps/report/__init__.py -noc/main/apps/report/__init__.pyc -noc/main/apps/report/__init__.pyo -noc/main/apps/report/templates/form.html -noc/main/apps/report/templates/index.html -noc/main/apps/report/tests/__init__.py -noc/main/apps/report/tests/__init__.pyc -noc/main/apps/report/tests/__init__.pyo -noc/main/apps/report/tests/test.py -noc/main/apps/report/tests/test.pyc -noc/main/apps/report/tests/test.pyo -noc/main/apps/report/views.py -noc/main/apps/report/views.pyc -noc/main/apps/report/views.pyo -noc/main/apps/reportbackups/__init__.py -noc/main/apps/reportbackups/__init__.pyc -noc/main/apps/reportbackups/__init__.pyo -noc/main/apps/reportbackups/tests/__init__.py -noc/main/apps/reportbackups/tests/__init__.pyc -noc/main/apps/reportbackups/tests/__init__.pyo -noc/main/apps/reportbackups/tests/test.py -noc/main/apps/reportbackups/tests/test.pyc -noc/main/apps/reportbackups/tests/test.pyo -noc/main/apps/reportbackups/views.py -noc/main/apps/reportbackups/views.pyc -noc/main/apps/reportbackups/views.pyo -noc/main/apps/reportdbsummary/__init__.py -noc/main/apps/reportdbsummary/__init__.pyc -noc/main/apps/reportdbsummary/__init__.pyo -noc/main/apps/reportdbsummary/tests/__init__.py -noc/main/apps/reportdbsummary/tests/__init__.pyc -noc/main/apps/reportdbsummary/tests/__init__.pyo -noc/main/apps/reportdbsummary/tests/test.py -noc/main/apps/reportdbsummary/tests/test.pyc -noc/main/apps/reportdbsummary/tests/test.pyo -noc/main/apps/reportdbsummary/views.py -noc/main/apps/reportdbsummary/views.pyc -noc/main/apps/reportdbsummary/views.pyo -noc/main/apps/reportloc/__init__.py -noc/main/apps/reportloc/__init__.pyc -noc/main/apps/reportloc/__init__.pyo -noc/main/apps/reportloc/tests/__init__.py -noc/main/apps/reportloc/tests/__init__.pyc -noc/main/apps/reportloc/tests/__init__.pyo -noc/main/apps/reportloc/tests/test.py -noc/main/apps/reportloc/tests/test.pyc -noc/main/apps/reportloc/tests/test.pyo -noc/main/apps/reportloc/views.py -noc/main/apps/reportloc/views.pyc -noc/main/apps/reportloc/views.pyo -noc/main/apps/reportsystemversion/__init__.py -noc/main/apps/reportsystemversion/__init__.pyc -noc/main/apps/reportsystemversion/__init__.pyo -noc/main/apps/reportsystemversion/tests/__init__.py -noc/main/apps/reportsystemversion/tests/__init__.pyc -noc/main/apps/reportsystemversion/tests/__init__.pyo -noc/main/apps/reportsystemversion/tests/test.py -noc/main/apps/reportsystemversion/tests/test.pyc -noc/main/apps/reportsystemversion/tests/test.pyo -noc/main/apps/reportsystemversion/views.py -noc/main/apps/reportsystemversion/views.pyc -noc/main/apps/reportsystemversion/views.pyo -noc/main/apps/reporttaggedmodels/__init__.py -noc/main/apps/reporttaggedmodels/__init__.pyc -noc/main/apps/reporttaggedmodels/__init__.pyo -noc/main/apps/reporttaggedmodels/tests/__init__.py -noc/main/apps/reporttaggedmodels/tests/__init__.pyc -noc/main/apps/reporttaggedmodels/tests/__init__.pyo -noc/main/apps/reporttaggedmodels/tests/test.py -noc/main/apps/reporttaggedmodels/tests/test.pyc -noc/main/apps/reporttaggedmodels/tests/test.pyo -noc/main/apps/reporttaggedmodels/views.py -noc/main/apps/reporttaggedmodels/views.pyc -noc/main/apps/reporttaggedmodels/views.pyo -noc/main/apps/search/__init__.py -noc/main/apps/search/__init__.pyc -noc/main/apps/search/__init__.pyo -noc/main/apps/search/templates/search.html -noc/main/apps/search/tests/__init__.py -noc/main/apps/search/tests/__init__.pyc -noc/main/apps/search/tests/__init__.pyo -noc/main/apps/search/tests/test.py -noc/main/apps/search/tests/test.pyc -noc/main/apps/search/tests/test.pyo -noc/main/apps/search/views.py -noc/main/apps/search/views.pyc -noc/main/apps/search/views.pyo -noc/main/apps/style/__init__.py -noc/main/apps/style/__init__.pyc -noc/main/apps/style/__init__.pyo -noc/main/apps/style/tests/__init__.py -noc/main/apps/style/tests/__init__.pyc -noc/main/apps/style/tests/__init__.pyo -noc/main/apps/style/tests/test.py -noc/main/apps/style/tests/test.pyc -noc/main/apps/style/tests/test.pyo -noc/main/apps/style/views.py -noc/main/apps/style/views.pyc -noc/main/apps/style/views.pyo -noc/main/apps/systemnotification/__init__.py -noc/main/apps/systemnotification/__init__.pyc -noc/main/apps/systemnotification/__init__.pyo -noc/main/apps/systemnotification/tests/__init__.py -noc/main/apps/systemnotification/tests/__init__.pyc -noc/main/apps/systemnotification/tests/__init__.pyo -noc/main/apps/systemnotification/tests/test.py -noc/main/apps/systemnotification/tests/test.pyc -noc/main/apps/systemnotification/tests/test.pyo -noc/main/apps/systemnotification/views.py -noc/main/apps/systemnotification/views.pyc -noc/main/apps/systemnotification/views.pyo -noc/main/apps/tagmanage/__init__.py -noc/main/apps/tagmanage/__init__.pyc -noc/main/apps/tagmanage/__init__.pyo -noc/main/apps/tagmanage/templates/merge.html -noc/main/apps/tagmanage/tests/__init__.py -noc/main/apps/tagmanage/tests/__init__.pyc -noc/main/apps/tagmanage/tests/__init__.pyo -noc/main/apps/tagmanage/tests/test.py -noc/main/apps/tagmanage/tests/test.pyc -noc/main/apps/tagmanage/tests/test.pyo -noc/main/apps/tagmanage/views.py -noc/main/apps/tagmanage/views.pyc -noc/main/apps/tagmanage/views.pyo -noc/main/apps/tags/__init__.py -noc/main/apps/tags/__init__.pyc -noc/main/apps/tags/__init__.pyo -noc/main/apps/tags/templates/index.html -noc/main/apps/tags/templates/tag.html -noc/main/apps/tags/tests/__init__.py -noc/main/apps/tags/tests/__init__.pyc -noc/main/apps/tags/tests/__init__.pyo -noc/main/apps/tags/tests/test.py -noc/main/apps/tags/tests/test.pyc -noc/main/apps/tags/tests/test.pyo -noc/main/apps/tags/views.py -noc/main/apps/tags/views.pyc -noc/main/apps/tags/views.pyo -noc/main/apps/timepattern/__init__.py -noc/main/apps/timepattern/__init__.pyc -noc/main/apps/timepattern/__init__.pyo -noc/main/apps/timepattern/templates/test.html -noc/main/apps/timepattern/tests/__init__.py -noc/main/apps/timepattern/tests/__init__.pyc -noc/main/apps/timepattern/tests/__init__.pyo -noc/main/apps/timepattern/tests/test.py -noc/main/apps/timepattern/tests/test.pyc -noc/main/apps/timepattern/tests/test.pyo -noc/main/apps/timepattern/views.py -noc/main/apps/timepattern/views.pyc -noc/main/apps/timepattern/views.pyo -noc/main/apps/user/__init__.py -noc/main/apps/user/__init__.pyc -noc/main/apps/user/__init__.pyo -noc/main/apps/user/templates/change_password.html -noc/main/apps/user/tests/__init__.py -noc/main/apps/user/tests/__init__.pyc -noc/main/apps/user/tests/__init__.pyo -noc/main/apps/user/tests/test.py -noc/main/apps/user/tests/test.pyc -noc/main/apps/user/tests/test.pyo -noc/main/apps/user/views.py -noc/main/apps/user/views.pyc -noc/main/apps/user/views.pyo -noc/main/apps/user/widgets.py -noc/main/apps/user/widgets.pyc -noc/main/apps/user/widgets.pyo -noc/main/apps/userprofile/__init__.py -noc/main/apps/userprofile/__init__.pyc -noc/main/apps/userprofile/__init__.pyo -noc/main/apps/userprofile/templates/change_form.html -noc/main/apps/userprofile/tests/__init__.py -noc/main/apps/userprofile/tests/__init__.pyc -noc/main/apps/userprofile/tests/__init__.pyo -noc/main/apps/userprofile/tests/test.py -noc/main/apps/userprofile/tests/test.pyc -noc/main/apps/userprofile/tests/test.pyo -noc/main/apps/userprofile/views.py -noc/main/apps/userprofile/views.pyc -noc/main/apps/userprofile/views.pyo -noc/main/auth/__init__.py -noc/main/auth/__init__.pyc -noc/main/auth/__init__.pyo -noc/main/auth/backends/__init__.py -noc/main/auth/backends/__init__.pyc -noc/main/auth/backends/__init__.pyo -noc/main/auth/backends/httpbackend.py -noc/main/auth/backends/httpbackend.pyc -noc/main/auth/backends/httpbackend.pyo -noc/main/auth/backends/ldapbackend.py -noc/main/auth/backends/ldapbackend.pyc -noc/main/auth/backends/ldapbackend.pyo -noc/main/auth/backends/localbackend.py -noc/main/auth/backends/localbackend.pyc -noc/main/auth/backends/localbackend.pyo -noc/main/auth/backends/pyrulebackend.py -noc/main/auth/backends/pyrulebackend.pyc -noc/main/auth/backends/pyrulebackend.pyo -noc/main/bulk_change.html -noc/main/calculator.py -noc/main/calculator.pyc -noc/main/calculator.pyo -noc/main/fcgi.py -noc/main/fcgi.pyc -noc/main/fcgi.pyo -noc/main/launcher.py -noc/main/launcher.pyc -noc/main/launcher.pyo -noc/main/management/__init__.py -noc/main/management/__init__.pyc -noc/main/management/__init__.pyo -noc/main/management/commands/__init__.py -noc/main/management/commands/__init__.pyc -noc/main/management/commands/__init__.pyo -noc/main/management/commands/build-manifest.py -noc/main/management/commands/build-manifest.pyc -noc/main/management/commands/build-manifest.pyo -noc/main/management/commands/check-conf.py -noc/main/management/commands/check-conf.pyc -noc/main/management/commands/check-conf.pyo -noc/main/management/commands/csv-export.py -noc/main/management/commands/csv-export.pyc -noc/main/management/commands/csv-export.pyo -noc/main/management/commands/csv-import.py -noc/main/management/commands/csv-import.pyc -noc/main/management/commands/csv-import.pyo -noc/main/management/commands/newapp.py -noc/main/management/commands/newapp.pyc -noc/main/management/commands/newapp.pyo -noc/main/management/commands/pythonpath.py -noc/main/management/commands/pythonpath.pyc -noc/main/management/commands/pythonpath.pyo -noc/main/management/commands/sync-doc.py -noc/main/management/commands/sync-doc.pyc -noc/main/management/commands/sync-doc.pyo -noc/main/management/commands/sync-perm.py -noc/main/management/commands/sync-perm.pyc -noc/main/management/commands/sync-perm.pyo -noc/main/management/commands/sync-pyrules.py -noc/main/management/commands/sync-pyrules.pyc -noc/main/management/commands/sync-pyrules.pyo -noc/main/management/commands/sync-refbooks.py -noc/main/management/commands/sync-refbooks.pyc -noc/main/management/commands/sync-refbooks.pyo -noc/main/management/commands/test.py -noc/main/management/commands/test.pyc -noc/main/management/commands/test.pyo -noc/main/management/commands/todos.py -noc/main/management/commands/todos.pyc -noc/main/management/commands/todos.pyo -noc/main/management/commands/unpickle.py -noc/main/management/commands/unpickle.pyc -noc/main/management/commands/unpickle.pyo -noc/main/migrations/0001_initial.py -noc/main/migrations/0001_initial.pyc -noc/main/migrations/0001_initial.pyo -noc/main/migrations/0002_no_task_schedule.py -noc/main/migrations/0002_no_task_schedule.pyc -noc/main/migrations/0002_no_task_schedule.pyo -noc/main/migrations/0003_pg_dump.py -noc/main/migrations/0003_pg_dump.pyc -noc/main/migrations/0003_pg_dump.pyo -noc/main/migrations/0004_language.py -noc/main/migrations/0004_language.pyc -noc/main/migrations/0004_language.pyo -noc/main/migrations/0005_init_languages.py -noc/main/migrations/0005_init_languages.pyc -noc/main/migrations/0005_init_languages.pyo -noc/main/migrations/0006_database_storage.py -noc/main/migrations/0006_database_storage.pyc -noc/main/migrations/0006_database_storage.pyo -noc/main/migrations/0007_mimetype.py -noc/main/migrations/0007_mimetype.pyc -noc/main/migrations/0007_mimetype.pyo -noc/main/migrations/0008_default_mime_types.py -noc/main/migrations/0008_default_mime_types.pyc -noc/main/migrations/0008_default_mime_types.pyo -noc/main/migrations/0009_refbook.py -noc/main/migrations/0009_refbook.pyc -noc/main/migrations/0009_refbook.pyo -noc/main/migrations/0010_refbook_data_array.py -noc/main/migrations/0010_refbook_data_array.pyc -noc/main/migrations/0010_refbook_data_array.pyo -noc/main/migrations/0011_audit_trail.py -noc/main/migrations/0011_audit_trail.pyc -noc/main/migrations/0011_audit_trail.pyo -noc/main/migrations/0012_time_pattern.py -noc/main/migrations/0012_time_pattern.pyc -noc/main/migrations/0012_time_pattern.pyo -noc/main/migrations/0013_notifications.py -noc/main/migrations/0013_notifications.pyc -noc/main/migrations/0013_notifications.pyo -noc/main/migrations/0014_default_time_patterns.py -noc/main/migrations/0014_default_time_patterns.pyc -noc/main/migrations/0014_default_time_patterns.pyo -noc/main/migrations/0015_notification_link.py -noc/main/migrations/0015_notification_link.pyc -noc/main/migrations/0015_notification_link.pyo -noc/main/migrations/0016_user_profile.py -noc/main/migrations/0016_user_profile.pyc -noc/main/migrations/0016_user_profile.pyo -noc/main/migrations/0017_initial_userprofilecontacts.py -noc/main/migrations/0017_initial_userprofilecontacts.pyc -noc/main/migrations/0017_initial_userprofilecontacts.pyo -noc/main/migrations/0018_systemnotification.py -noc/main/migrations/0018_systemnotification.pyc -noc/main/migrations/0018_systemnotification.pyo -noc/main/migrations/0019_unhandled_exception.py -noc/main/migrations/0019_unhandled_exception.pyc -noc/main/migrations/0019_unhandled_exception.pyo -noc/main/migrations/0020_pyrule.py -noc/main/migrations/0020_pyrule.pyc -noc/main/migrations/0020_pyrule.pyo -noc/main/migrations/0021_permission.py -noc/main/migrations/0021_permission.pyc -noc/main/migrations/0021_permission.pyo -noc/main/migrations/0022_pyrule_is_builtin.py -noc/main/migrations/0022_pyrule_is_builtin.pyc -noc/main/migrations/0022_pyrule_is_builtin.pyo -noc/main/migrations/0023_cleanup.py -noc/main/migrations/0023_cleanup.pyc -noc/main/migrations/0023_cleanup.pyo -noc/main/migrations/0024_changes_quarantine.py -noc/main/migrations/0024_changes_quarantine.pyc -noc/main/migrations/0024_changes_quarantine.pyo -noc/main/migrations/0025_mac_sync_notification.py -noc/main/migrations/0025_mac_sync_notification.pyc -noc/main/migrations/0025_mac_sync_notification.pyo -noc/main/migrations/0026_enlarge_username.py -noc/main/migrations/0026_enlarge_username.pyc -noc/main/migrations/0026_enlarge_username.pyo -noc/main/migrations/0027_style.py -noc/main/migrations/0027_style.pyc -noc/main/migrations/0027_style.pyo -noc/main/migrations/0028_dbtrigger.py -noc/main/migrations/0028_dbtrigger.pyc -noc/main/migrations/0028_dbtrigger.pyo -noc/main/migrations/0029_version_inventory_notification.py -noc/main/migrations/0029_version_inventory_notification.pyc -noc/main/migrations/0029_version_inventory_notification.pyo -noc/main/migrations/0030_set_user_is_staff.py -noc/main/migrations/0030_set_user_is_staff.pyc -noc/main/migrations/0030_set_user_is_staff.pyo -noc/main/migrations/__init__.py -noc/main/migrations/__init__.pyc -noc/main/migrations/__init__.pyo -noc/main/models.py -noc/main/models.pyc -noc/main/models.pyo -noc/main/notifier.py -noc/main/notifier.pyc -noc/main/notifier.pyo -noc/main/notify/__init__.py -noc/main/notify/__init__.pyc -noc/main/notify/__init__.pyo -noc/main/notify/file.py -noc/main/notify/file.pyc -noc/main/notify/file.pyo -noc/main/notify/mail.py -noc/main/notify/mail.pyc -noc/main/notify/mail.pyo -noc/main/periodics/__init__.py -noc/main/periodics/__init__.pyc -noc/main/periodics/__init__.pyo -noc/main/periodics/backup.py -noc/main/periodics/backup.pyc -noc/main/periodics/backup.pyo -noc/main/periodics/cleanup.py -noc/main/periodics/cleanup.pyc -noc/main/periodics/cleanup.pyo -noc/main/periodics/update_refbook.py -noc/main/periodics/update_refbook.pyc -noc/main/periodics/update_refbook.pyo -noc/main/pyrules/__init__.py -noc/main/pyrules/__init__.pyc -noc/main/pyrules/__init__.pyo -noc/main/pyrules/auth_form_user_password.py -noc/main/pyrules/auth_form_user_password.pyc -noc/main/pyrules/auth_form_user_password.pyo -noc/main/pyrules/auth_model.py -noc/main/pyrules/auth_model.pyc -noc/main/pyrules/auth_model.pyo -noc/main/pyrules/close_event.py -noc/main/pyrules/close_event.pyc -noc/main/pyrules/close_event.pyo -noc/main/pyrules/drop_event.py -noc/main/pyrules/drop_event.pyc -noc/main/pyrules/drop_event.pyo -noc/main/pyrules/get_single_result.py -noc/main/pyrules/get_single_result.pyc -noc/main/pyrules/get_single_result.pyo -noc/main/pyrules/matrix_report.py -noc/main/pyrules/matrix_report.pyc -noc/main/pyrules/matrix_report.pyo -noc/main/pyrules/open_event.py -noc/main/pyrules/open_event.pyc -noc/main/pyrules/open_event.pyo -noc/main/pyrules/prefix_list_provisioning.py -noc/main/pyrules/prefix_list_provisioning.pyc -noc/main/pyrules/prefix_list_provisioning.pyo -noc/main/pyrules/refresh_config.py -noc/main/pyrules/refresh_config.pyc -noc/main/pyrules/refresh_config.pyo -noc/main/pyrules/result_report.py -noc/main/pyrules/result_report.pyc -noc/main/pyrules/result_report.pyo -noc/main/pyrules/vc_provisioning.py -noc/main/pyrules/vc_provisioning.pyc -noc/main/pyrules/vc_provisioning.pyo -noc/main/pyrules/version_inventory.py -noc/main/pyrules/version_inventory.pyc -noc/main/pyrules/version_inventory.pyo -noc/main/refbooks/__init__.py -noc/main/refbooks/__init__.pyc -noc/main/refbooks/__init__.pyo -noc/main/refbooks/downloaders/__init__.py -noc/main/refbooks/downloaders/__init__.pyc -noc/main/refbooks/downloaders/__init__.pyo -noc/main/refbooks/downloaders/url_csv.py -noc/main/refbooks/downloaders/url_csv.pyc -noc/main/refbooks/downloaders/url_csv.pyo -noc/main/refbooks/refbooks/__init__.py -noc/main/refbooks/refbooks/__init__.pyc -noc/main/refbooks/refbooks/__init__.pyo -noc/main/refbooks/refbooks/e164.py -noc/main/refbooks/refbooks/e164.pyc -noc/main/refbooks/refbooks/e164.pyo -noc/main/refbooks/refbooks/ieee.py -noc/main/refbooks/refbooks/ieee.pyc -noc/main/refbooks/refbooks/ieee.pyo -noc/main/refbooks/refbooks/iso3166.py -noc/main/refbooks/refbooks/iso3166.pyc -noc/main/refbooks/refbooks/iso3166.pyo -noc/main/refbooks/refbooks/q931.py -noc/main/refbooks/refbooks/q931.pyc -noc/main/refbooks/refbooks/q931.pyo -noc/main/refbooks/refbooks/russian_number_plan.py -noc/main/refbooks/refbooks/russian_number_plan.pyc -noc/main/refbooks/refbooks/russian_number_plan.pyo -noc/main/refbooks/refbooks/russian_number_registry.py -noc/main/refbooks/refbooks/russian_number_registry.pyc -noc/main/refbooks/refbooks/russian_number_registry.pyo -noc/main/templatetags/__init__.py -noc/main/templatetags/__init__.pyc -noc/main/templatetags/__init__.pyo -noc/main/templatetags/paginator.html -noc/main/templatetags/paginator.py -noc/main/templatetags/paginator.pyc -noc/main/templatetags/paginator.pyo -noc/main/templatetags/tags.py -noc/main/templatetags/tags.pyc -noc/main/templatetags/tags.pyo -noc/main/tests/__init__.py -noc/main/tests/__init__.pyc -noc/main/tests/__init__.pyo -noc/main/tests/permission.py -noc/main/tests/permission.pyc -noc/main/tests/permission.pyo -noc/main/tests/pyrule.py -noc/main/tests/pyrule.pyc -noc/main/tests/pyrule.pyo -noc/main/tests/refbook.json -noc/main/tests/refbook.py -noc/main/tests/refbook.pyc -noc/main/tests/refbook.pyo -noc/manage.py -noc/manage.pyc -noc/manage.pyo -noc/peer/__init__.py -noc/peer/__init__.pyc -noc/peer/__init__.pyo -noc/peer/apps/__init__.py -noc/peer/apps/__init__.pyc -noc/peer/apps/__init__.pyo -noc/peer/apps/as/__init__.py -noc/peer/apps/as/__init__.pyc -noc/peer/apps/as/__init__.pyo -noc/peer/apps/as/tests/__init__.py -noc/peer/apps/as/tests/__init__.pyc -noc/peer/apps/as/tests/__init__.pyo -noc/peer/apps/as/tests/test.py -noc/peer/apps/as/tests/test.pyc -noc/peer/apps/as/tests/test.pyo -noc/peer/apps/as/views.py -noc/peer/apps/as/views.pyc -noc/peer/apps/as/views.pyo -noc/peer/apps/asset/__init__.py -noc/peer/apps/asset/__init__.pyc -noc/peer/apps/asset/__init__.pyo -noc/peer/apps/asset/tests/__init__.py -noc/peer/apps/asset/tests/__init__.pyc -noc/peer/apps/asset/tests/__init__.pyo -noc/peer/apps/asset/tests/test.py -noc/peer/apps/asset/tests/test.pyc -noc/peer/apps/asset/tests/test.pyo -noc/peer/apps/asset/views.py -noc/peer/apps/asset/views.pyc -noc/peer/apps/asset/views.pyo -noc/peer/apps/community/__init__.py -noc/peer/apps/community/__init__.pyc -noc/peer/apps/community/__init__.pyo -noc/peer/apps/community/tests/__init__.py -noc/peer/apps/community/tests/__init__.pyc -noc/peer/apps/community/tests/__init__.pyo -noc/peer/apps/community/tests/test.py -noc/peer/apps/community/tests/test.pyc -noc/peer/apps/community/tests/test.pyo -noc/peer/apps/community/views.py -noc/peer/apps/community/views.pyc -noc/peer/apps/community/views.pyo -noc/peer/apps/communitytype/__init__.py -noc/peer/apps/communitytype/__init__.pyc -noc/peer/apps/communitytype/__init__.pyo -noc/peer/apps/communitytype/tests/__init__.py -noc/peer/apps/communitytype/tests/__init__.pyc -noc/peer/apps/communitytype/tests/__init__.pyo -noc/peer/apps/communitytype/tests/test.py -noc/peer/apps/communitytype/tests/test.pyc -noc/peer/apps/communitytype/tests/test.pyo -noc/peer/apps/communitytype/views.py -noc/peer/apps/communitytype/views.pyc -noc/peer/apps/communitytype/views.pyo -noc/peer/apps/maintainer/__init__.py -noc/peer/apps/maintainer/__init__.pyc -noc/peer/apps/maintainer/__init__.pyo -noc/peer/apps/maintainer/tests/__init__.py -noc/peer/apps/maintainer/tests/__init__.pyc -noc/peer/apps/maintainer/tests/__init__.pyo -noc/peer/apps/maintainer/tests/test.py -noc/peer/apps/maintainer/tests/test.pyc -noc/peer/apps/maintainer/tests/test.pyo -noc/peer/apps/maintainer/views.py -noc/peer/apps/maintainer/views.pyc -noc/peer/apps/maintainer/views.pyo -noc/peer/apps/organisation/__init__.py -noc/peer/apps/organisation/__init__.pyc -noc/peer/apps/organisation/__init__.pyo -noc/peer/apps/organisation/tests/__init__.py -noc/peer/apps/organisation/tests/__init__.pyc -noc/peer/apps/organisation/tests/__init__.pyo -noc/peer/apps/organisation/tests/test.py -noc/peer/apps/organisation/tests/test.pyc -noc/peer/apps/organisation/tests/test.pyo -noc/peer/apps/organisation/views.py -noc/peer/apps/organisation/views.pyc -noc/peer/apps/organisation/views.pyo -noc/peer/apps/peer/__init__.py -noc/peer/apps/peer/__init__.pyc -noc/peer/apps/peer/__init__.pyo -noc/peer/apps/peer/tests/__init__.py -noc/peer/apps/peer/tests/__init__.pyc -noc/peer/apps/peer/tests/__init__.pyo -noc/peer/apps/peer/tests/test.py -noc/peer/apps/peer/tests/test.pyc -noc/peer/apps/peer/tests/test.pyo -noc/peer/apps/peer/views.py -noc/peer/apps/peer/views.pyc -noc/peer/apps/peer/views.pyo -noc/peer/apps/peergroup/__init__.py -noc/peer/apps/peergroup/__init__.pyc -noc/peer/apps/peergroup/__init__.pyo -noc/peer/apps/peergroup/tests/__init__.py -noc/peer/apps/peergroup/tests/__init__.pyc -noc/peer/apps/peergroup/tests/__init__.pyo -noc/peer/apps/peergroup/tests/test.py -noc/peer/apps/peergroup/tests/test.pyc -noc/peer/apps/peergroup/tests/test.pyo -noc/peer/apps/peergroup/views.py -noc/peer/apps/peergroup/views.pyc -noc/peer/apps/peergroup/views.pyo -noc/peer/apps/peeringpoing/__init__.py -noc/peer/apps/peeringpoing/__init__.pyc -noc/peer/apps/peeringpoing/__init__.pyo -noc/peer/apps/peeringpoing/tests/__init__.py -noc/peer/apps/peeringpoing/tests/__init__.pyc -noc/peer/apps/peeringpoing/tests/__init__.pyo -noc/peer/apps/peeringpoing/tests/test.py -noc/peer/apps/peeringpoing/tests/test.pyc -noc/peer/apps/peeringpoing/tests/test.pyo -noc/peer/apps/peeringpoing/views.py -noc/peer/apps/peeringpoing/views.pyc -noc/peer/apps/peeringpoing/views.pyo -noc/peer/apps/person/__init__.py -noc/peer/apps/person/__init__.pyc -noc/peer/apps/person/__init__.pyo -noc/peer/apps/person/tests/__init__.py -noc/peer/apps/person/tests/__init__.pyc -noc/peer/apps/person/tests/__init__.pyo -noc/peer/apps/person/tests/test.py -noc/peer/apps/person/tests/test.pyc -noc/peer/apps/person/tests/test.pyo -noc/peer/apps/person/views.py -noc/peer/apps/person/views.pyc -noc/peer/apps/person/views.pyo -noc/peer/apps/prefixlistbuilder/__init__.py -noc/peer/apps/prefixlistbuilder/__init__.pyc -noc/peer/apps/prefixlistbuilder/__init__.pyo -noc/peer/apps/prefixlistbuilder/templates/builder.html -noc/peer/apps/prefixlistbuilder/tests/__init__.py -noc/peer/apps/prefixlistbuilder/tests/__init__.pyc -noc/peer/apps/prefixlistbuilder/tests/__init__.pyo -noc/peer/apps/prefixlistbuilder/tests/test.py -noc/peer/apps/prefixlistbuilder/tests/test.pyc -noc/peer/apps/prefixlistbuilder/tests/test.pyo -noc/peer/apps/prefixlistbuilder/views.py -noc/peer/apps/prefixlistbuilder/views.pyc -noc/peer/apps/prefixlistbuilder/views.pyo -noc/peer/apps/rir/__init__.py -noc/peer/apps/rir/__init__.pyc -noc/peer/apps/rir/__init__.pyo -noc/peer/apps/rir/tests/__init__.py -noc/peer/apps/rir/tests/__init__.pyc -noc/peer/apps/rir/tests/__init__.pyo -noc/peer/apps/rir/tests/test.py -noc/peer/apps/rir/tests/test.pyc -noc/peer/apps/rir/tests/test.pyo -noc/peer/apps/rir/views.py -noc/peer/apps/rir/views.pyc -noc/peer/apps/rir/views.pyo -noc/peer/migrations/0001_initial.py -noc/peer/migrations/0001_initial.pyc -noc/peer/migrations/0001_initial.pyo -noc/peer/migrations/0002_register_rconfig.py -noc/peer/migrations/0002_register_rconfig.pyc -noc/peer/migrations/0002_register_rconfig.pyo -noc/peer/migrations/0003_default_peeringpointtype.py -noc/peer/migrations/0003_default_peeringpointtype.pyc -noc/peer/migrations/0003_default_peeringpointtype.pyo -noc/peer/migrations/0004_lg_query.py -noc/peer/migrations/0004_lg_query.pyc -noc/peer/migrations/0004_lg_query.pyo -noc/peer/migrations/0005_lg_query_default_data.py -noc/peer/migrations/0005_lg_query_default_data.pyc -noc/peer/migrations/0005_lg_query_default_data.pyo -noc/peer/migrations/0007_peering_point_lg_url.py -noc/peer/migrations/0007_peering_point_lg_url.pyc -noc/peer/migrations/0007_peering_point_lg_url.pyo -noc/peer/migrations/0008_peering_point_location.py -noc/peer/migrations/0008_peering_point_location.pyc -noc/peer/migrations/0008_peering_point_location.pyo -noc/peer/migrations/0009_filter_name.py -noc/peer/migrations/0009_filter_name.pyc -noc/peer/migrations/0009_filter_name.pyo -noc/peer/migrations/0010_unregister_rconfig.py -noc/peer/migrations/0010_unregister_rconfig.pyc -noc/peer/migrations/0010_unregister_rconfig.pyo -noc/peer/migrations/0011_remove_peering_point_type.py -noc/peer/migrations/0011_remove_peering_point_type.pyc -noc/peer/migrations/0011_remove_peering_point_type.pyo -noc/peer/migrations/0012_community.py -noc/peer/migrations/0012_community.pyc -noc/peer/migrations/0012_community.pyo -noc/peer/migrations/0013_community_types.py -noc/peer/migrations/0013_community_types.pyc -noc/peer/migrations/0013_community_types.pyo -noc/peer/migrations/0014_inet_rtr.py -noc/peer/migrations/0014_inet_rtr.pyc -noc/peer/migrations/0014_inet_rtr.pyo -noc/peer/migrations/0015_maintainer.py -noc/peer/migrations/0015_maintainer.pyc -noc/peer/migrations/0015_maintainer.pyo -noc/peer/migrations/0016_no_lir.py -noc/peer/migrations/0016_no_lir.pyc -noc/peer/migrations/0016_no_lir.pyo -noc/peer/migrations/0017_default_maintainer.py -noc/peer/migrations/0017_default_maintainer.pyc -noc/peer/migrations/0017_default_maintainer.pyo -noc/peer/migrations/0018_no_lg.py -noc/peer/migrations/0018_no_lg.pyc -noc/peer/migrations/0018_no_lg.pyo -noc/peer/migrations/0019_no_rcmd.py -noc/peer/migrations/0019_no_rcmd.pyc -noc/peer/migrations/0019_no_rcmd.pyo -noc/peer/migrations/0020_no_masklen.py -noc/peer/migrations/0020_no_masklen.pyc -noc/peer/migrations/0020_no_masklen.pyo -noc/peer/migrations/0021_whois.py -noc/peer/migrations/0021_whois.pyc -noc/peer/migrations/0021_whois.pyo -noc/peer/migrations/0022_default_ripe_lookups.py -noc/peer/migrations/0022_default_ripe_lookups.pyc -noc/peer/migrations/0022_default_ripe_lookups.pyo -noc/peer/migrations/0023_peer_status.py -noc/peer/migrations/0023_peer_status.pyc -noc/peer/migrations/0023_peer_status.pyo -noc/peer/migrations/0024_as_name_and_routes_maintainer.py -noc/peer/migrations/0024_as_name_and_routes_maintainer.pyc -noc/peer/migrations/0024_as_name_and_routes_maintainer.pyo -noc/peer/migrations/0025_as_fields.py -noc/peer/migrations/0025_as_fields.pyc -noc/peer/migrations/0025_as_fields.pyo -noc/peer/migrations/0026_peer_remark.py -noc/peer/migrations/0026_peer_remark.pyc -noc/peer/migrations/0026_peer_remark.pyo -noc/peer/migrations/0027_maintainer_password.py -noc/peer/migrations/0027_maintainer_password.pyc -noc/peer/migrations/0027_maintainer_password.pyo -noc/peer/migrations/0028_prefix_list_cache.py -noc/peer/migrations/0028_prefix_list_cache.pyc -noc/peer/migrations/0028_prefix_list_cache.pyo -noc/peer/migrations/0029_peering_point_enable_provisioning.py -noc/peer/migrations/0029_peering_point_enable_provisioning.pyc -noc/peer/migrations/0029_peering_point_enable_provisioning.pyo -noc/peer/migrations/0030_peer_backup_ip.py -noc/peer/migrations/0030_peer_backup_ip.pyc -noc/peer/migrations/0030_peer_backup_ip.pyo -noc/peer/migrations/0031_compact_backup_peers.py -noc/peer/migrations/0031_compact_backup_peers.pyc -noc/peer/migrations/0031_compact_backup_peers.pyo -noc/peer/migrations/0032_med.py -noc/peer/migrations/0032_med.pyc -noc/peer/migrations/0032_med.pyo -noc/peer/migrations/0033_tags.py -noc/peer/migrations/0033_tags.pyc -noc/peer/migrations/0033_tags.pyo -noc/peer/migrations/__init__.py -noc/peer/migrations/__init__.pyc -noc/peer/migrations/__init__.pyo -noc/peer/models.py -noc/peer/models.pyc -noc/peer/models.pyo -noc/peer/periodics/__init__.py -noc/peer/periodics/__init__.pyc -noc/peer/periodics/__init__.pyo -noc/peer/periodics/prefix_list_provisioning.py -noc/peer/periodics/prefix_list_provisioning.pyc -noc/peer/periodics/prefix_list_provisioning.pyo -noc/peer/periodics/update_whois_cache.py -noc/peer/periodics/update_whois_cache.pyc -noc/peer/periodics/update_whois_cache.pyo -noc/peer/resolver.py -noc/peer/resolver.pyc -noc/peer/resolver.pyo -noc/peer/tree.py -noc/peer/tree.pyc -noc/peer/tree.pyo -noc/peer/whois.py -noc/peer/whois.pyc -noc/peer/whois.pyo -noc/pm/__init__.py -noc/pm/__init__.pyc -noc/pm/__init__.pyo -noc/pm/apps/__init__.py -noc/pm/apps/__init__.pyc -noc/pm/apps/__init__.pyo -noc/pm/apps/chart/__init__.py -noc/pm/apps/chart/__init__.pyc -noc/pm/apps/chart/__init__.pyo -noc/pm/apps/chart/tests/__init__.py -noc/pm/apps/chart/tests/__init__.pyc -noc/pm/apps/chart/tests/__init__.pyo -noc/pm/apps/chart/tests/test.py -noc/pm/apps/chart/tests/test.pyc -noc/pm/apps/chart/tests/test.pyo -noc/pm/apps/chart/views.py -noc/pm/apps/chart/views.pyc -noc/pm/apps/chart/views.pyo -noc/pm/apps/timeseries/__init__.py -noc/pm/apps/timeseries/__init__.pyc -noc/pm/apps/timeseries/__init__.pyo -noc/pm/apps/timeseries/tests/__init__.py -noc/pm/apps/timeseries/tests/__init__.pyc -noc/pm/apps/timeseries/tests/__init__.pyo -noc/pm/apps/timeseries/tests/test.py -noc/pm/apps/timeseries/tests/test.pyc -noc/pm/apps/timeseries/tests/test.pyo -noc/pm/apps/timeseries/views.py -noc/pm/apps/timeseries/views.pyc -noc/pm/apps/timeseries/views.pyo -noc/pm/apps/view/__init__.py -noc/pm/apps/view/__init__.pyc -noc/pm/apps/view/__init__.pyo -noc/pm/apps/view/templates/index.html -noc/pm/apps/view/templates/view_chart.html -noc/pm/apps/view/templates/view_ts.html -noc/pm/apps/view/tests/__init__.py -noc/pm/apps/view/tests/__init__.pyc -noc/pm/apps/view/tests/__init__.pyo -noc/pm/apps/view/tests/test.py -noc/pm/apps/view/tests/test.pyc -noc/pm/apps/view/tests/test.pyo -noc/pm/apps/view/views.py -noc/pm/apps/view/views.pyc -noc/pm/apps/view/views.pyo -noc/pm/management/__init__.py -noc/pm/management/__init__.pyc -noc/pm/management/__init__.pyo -noc/pm/management/commands/__init__.py -noc/pm/management/commands/__init__.pyc -noc/pm/management/commands/__init__.pyo -noc/pm/management/commands/ts-export.py -noc/pm/management/commands/ts-export.pyc -noc/pm/management/commands/ts-export.pyo -noc/pm/management/commands/ts-list.py -noc/pm/management/commands/ts-list.pyc -noc/pm/management/commands/ts-list.pyo -noc/pm/management/commands/ts-rm.py -noc/pm/management/commands/ts-rm.pyc -noc/pm/management/commands/ts-rm.pyo -noc/pm/migrations/0001_initial.py -noc/pm/migrations/0001_initial.pyc -noc/pm/migrations/0001_initial.pyo -noc/pm/migrations/__init__.py -noc/pm/migrations/__init__.pyc -noc/pm/migrations/__init__.pyo -noc/pm/models.py -noc/pm/models.pyc -noc/pm/models.pyo -noc/pm/probe.py -noc/pm/probe.pyc -noc/pm/probe.pyo -noc/pm/probes/__init__.py -noc/pm/probes/__init__.pyc -noc/pm/probes/__init__.pyo -noc/pm/probes/fping.py -noc/pm/probes/fping.pyc -noc/pm/probes/fping.pyo -noc/pm/probes/http.py -noc/pm/probes/http.pyc -noc/pm/probes/http.pyo -noc/pm/probes/popen.py -noc/pm/probes/popen.pyc -noc/pm/probes/popen.pyo -noc/pm/probes/postgresql.py -noc/pm/probes/postgresql.pyc -noc/pm/probes/postgresql.pyo -noc/pm/probes/process.py -noc/pm/probes/process.pyc -noc/pm/probes/process.pyo -noc/pm/probes/smtp.py -noc/pm/probes/smtp.pyc -noc/pm/probes/smtp.pyo -noc/pm/probes/snmp.py -noc/pm/probes/snmp.pyc -noc/pm/probes/snmp.pyo -noc/pm/probes/snmp_interface.py -noc/pm/probes/snmp_interface.pyc -noc/pm/probes/snmp_interface.pyo -noc/pm/probes/ssh.py -noc/pm/probes/ssh.pyc -noc/pm/probes/ssh.pyo -noc/pm/probes/tcp.py -noc/pm/probes/tcp.pyc -noc/pm/probes/tcp.pyo -noc/pm/probes/test.py -noc/pm/probes/test.pyc -noc/pm/probes/test.pyo -noc/pm/tests/__init__.py -noc/pm/tests/__init__.pyc -noc/pm/tests/__init__.pyo -noc/pm/tests/timeseries.py -noc/pm/tests/timeseries.pyc -noc/pm/tests/timeseries.pyo -noc/sa/__init__.py -noc/sa/__init__.pyc -noc/sa/__init__.pyo -noc/sa/activator.py -noc/sa/activator.pyc -noc/sa/activator.pyo -noc/sa/apps/__init__.py -noc/sa/apps/__init__.pyc -noc/sa/apps/__init__.pyo -noc/sa/apps/activator/__init__.py -noc/sa/apps/activator/__init__.pyc -noc/sa/apps/activator/__init__.pyo -noc/sa/apps/activator/tests/__init__.py -noc/sa/apps/activator/tests/__init__.pyc -noc/sa/apps/activator/tests/__init__.pyo -noc/sa/apps/activator/tests/test.py -noc/sa/apps/activator/tests/test.pyc -noc/sa/apps/activator/tests/test.pyo -noc/sa/apps/activator/views.py -noc/sa/apps/activator/views.pyc -noc/sa/apps/activator/views.pyo -noc/sa/apps/activatorstatus/__init__.py -noc/sa/apps/activatorstatus/__init__.pyc -noc/sa/apps/activatorstatus/__init__.pyo -noc/sa/apps/activatorstatus/tests/__init__.py -noc/sa/apps/activatorstatus/tests/__init__.pyc -noc/sa/apps/activatorstatus/tests/__init__.pyo -noc/sa/apps/activatorstatus/tests/test.py -noc/sa/apps/activatorstatus/tests/test.pyc -noc/sa/apps/activatorstatus/tests/test.pyo -noc/sa/apps/activatorstatus/views.py -noc/sa/apps/activatorstatus/views.pyc -noc/sa/apps/activatorstatus/views.pyo -noc/sa/apps/administrativedomain/__init__.py -noc/sa/apps/administrativedomain/__init__.pyc -noc/sa/apps/administrativedomain/__init__.pyo -noc/sa/apps/administrativedomain/tests/__init__.py -noc/sa/apps/administrativedomain/tests/__init__.pyc -noc/sa/apps/administrativedomain/tests/__init__.pyo -noc/sa/apps/administrativedomain/tests/test.py -noc/sa/apps/administrativedomain/tests/test.pyc -noc/sa/apps/administrativedomain/tests/test.pyo -noc/sa/apps/administrativedomain/views.py -noc/sa/apps/administrativedomain/views.pyc -noc/sa/apps/administrativedomain/views.pyo -noc/sa/apps/checksupported/__init__.py -noc/sa/apps/checksupported/__init__.pyc -noc/sa/apps/checksupported/__init__.pyo -noc/sa/apps/checksupported/tests/__init__.py -noc/sa/apps/checksupported/tests/__init__.pyc -noc/sa/apps/checksupported/tests/__init__.pyo -noc/sa/apps/checksupported/tests/test.py -noc/sa/apps/checksupported/tests/test.pyc -noc/sa/apps/checksupported/tests/test.pyo -noc/sa/apps/checksupported/views.py -noc/sa/apps/checksupported/views.pyc -noc/sa/apps/checksupported/views.pyo -noc/sa/apps/groupaccess/__init__.py -noc/sa/apps/groupaccess/__init__.pyc -noc/sa/apps/groupaccess/__init__.pyo -noc/sa/apps/groupaccess/tests/__init__.py -noc/sa/apps/groupaccess/tests/__init__.pyc -noc/sa/apps/groupaccess/tests/__init__.pyo -noc/sa/apps/groupaccess/tests/test.py -noc/sa/apps/groupaccess/tests/test.pyc -noc/sa/apps/groupaccess/tests/test.pyo -noc/sa/apps/groupaccess/views.py -noc/sa/apps/groupaccess/views.pyc -noc/sa/apps/groupaccess/views.pyo -noc/sa/apps/macreport/__init__.py -noc/sa/apps/macreport/__init__.pyc -noc/sa/apps/macreport/__init__.pyo -noc/sa/apps/macreport/tests/__init__.py -noc/sa/apps/macreport/tests/__init__.pyc -noc/sa/apps/macreport/tests/__init__.pyo -noc/sa/apps/macreport/tests/test.py -noc/sa/apps/macreport/tests/test.pyc -noc/sa/apps/macreport/tests/test.pyo -noc/sa/apps/macreport/views.py -noc/sa/apps/macreport/views.pyc -noc/sa/apps/macreport/views.pyo -noc/sa/apps/managedobject/__init__.py -noc/sa/apps/managedobject/__init__.pyc -noc/sa/apps/managedobject/__init__.pyo -noc/sa/apps/managedobject/templates/addresses.html -noc/sa/apps/managedobject/templates/attributes.html -noc/sa/apps/managedobject/templates/script_form.html -noc/sa/apps/managedobject/templates/script_result.html -noc/sa/apps/managedobject/templates/scripts.html -noc/sa/apps/managedobject/templates/test.html -noc/sa/apps/managedobject/tests/__init__.py -noc/sa/apps/managedobject/tests/__init__.pyc -noc/sa/apps/managedobject/tests/__init__.pyo -noc/sa/apps/managedobject/tests/test.py -noc/sa/apps/managedobject/tests/test.pyc -noc/sa/apps/managedobject/tests/test.pyo -noc/sa/apps/managedobject/views.py -noc/sa/apps/managedobject/views.pyc -noc/sa/apps/managedobject/views.pyo -noc/sa/apps/managedobjectselector/__init__.py -noc/sa/apps/managedobjectselector/__init__.pyc -noc/sa/apps/managedobjectselector/__init__.pyo -noc/sa/apps/managedobjectselector/templates/test.html -noc/sa/apps/managedobjectselector/tests/__init__.py -noc/sa/apps/managedobjectselector/tests/__init__.pyc -noc/sa/apps/managedobjectselector/tests/__init__.pyo -noc/sa/apps/managedobjectselector/tests/test.py -noc/sa/apps/managedobjectselector/tests/test.pyc -noc/sa/apps/managedobjectselector/tests/test.pyo -noc/sa/apps/managedobjectselector/views.py -noc/sa/apps/managedobjectselector/views.pyc -noc/sa/apps/managedobjectselector/views.pyo -noc/sa/apps/mrtask/__init__.py -noc/sa/apps/mrtask/__init__.pyc -noc/sa/apps/mrtask/__init__.pyo -noc/sa/apps/mrtask/templates/mr_task.html -noc/sa/apps/mrtask/templates/mr_task_result.html -noc/sa/apps/mrtask/tests/__init__.py -noc/sa/apps/mrtask/tests/__init__.pyc -noc/sa/apps/mrtask/tests/__init__.pyo -noc/sa/apps/mrtask/tests/test.py -noc/sa/apps/mrtask/tests/test.pyc -noc/sa/apps/mrtask/tests/test.pyo -noc/sa/apps/mrtask/views.py -noc/sa/apps/mrtask/views.pyc -noc/sa/apps/mrtask/views.pyo -noc/sa/apps/reportmrtask/__init__.py -noc/sa/apps/reportmrtask/__init__.pyc -noc/sa/apps/reportmrtask/__init__.pyo -noc/sa/apps/reportmrtask/tests/__init__.py -noc/sa/apps/reportmrtask/tests/__init__.pyc -noc/sa/apps/reportmrtask/tests/__init__.pyo -noc/sa/apps/reportmrtask/tests/test.py -noc/sa/apps/reportmrtask/tests/test.pyc -noc/sa/apps/reportmrtask/tests/test.pyo -noc/sa/apps/reportmrtask/views.py -noc/sa/apps/reportmrtask/views.pyc -noc/sa/apps/reportmrtask/views.pyo -noc/sa/apps/reportobjectsummary/__init__.py -noc/sa/apps/reportobjectsummary/__init__.pyc -noc/sa/apps/reportobjectsummary/__init__.pyo -noc/sa/apps/reportobjectsummary/tests/__init__.py -noc/sa/apps/reportobjectsummary/tests/__init__.pyc -noc/sa/apps/reportobjectsummary/tests/__init__.pyo -noc/sa/apps/reportobjectsummary/tests/test.py -noc/sa/apps/reportobjectsummary/tests/test.pyc -noc/sa/apps/reportobjectsummary/tests/test.pyo -noc/sa/apps/reportobjectsummary/views.py -noc/sa/apps/reportobjectsummary/views.pyc -noc/sa/apps/reportobjectsummary/views.pyo -noc/sa/apps/reportsupportedequipment/__init__.py -noc/sa/apps/reportsupportedequipment/__init__.pyc -noc/sa/apps/reportsupportedequipment/__init__.pyo -noc/sa/apps/reportsupportedequipment/tests/__init__.py -noc/sa/apps/reportsupportedequipment/tests/__init__.pyc -noc/sa/apps/reportsupportedequipment/tests/__init__.pyo -noc/sa/apps/reportsupportedequipment/tests/test.py -noc/sa/apps/reportsupportedequipment/tests/test.pyc -noc/sa/apps/reportsupportedequipment/tests/test.pyo -noc/sa/apps/reportsupportedequipment/views.py -noc/sa/apps/reportsupportedequipment/views.pyc -noc/sa/apps/reportsupportedequipment/views.pyo -noc/sa/apps/runcommands/__init__.py -noc/sa/apps/runcommands/__init__.pyc -noc/sa/apps/runcommands/__init__.pyo -noc/sa/apps/runcommands/tests/__init__.py -noc/sa/apps/runcommands/tests/__init__.pyc -noc/sa/apps/runcommands/tests/__init__.pyo -noc/sa/apps/runcommands/tests/test.py -noc/sa/apps/runcommands/tests/test.pyc -noc/sa/apps/runcommands/tests/test.pyo -noc/sa/apps/runcommands/views.py -noc/sa/apps/runcommands/views.pyc -noc/sa/apps/runcommands/views.pyo -noc/sa/apps/showswitchports/__init__.py -noc/sa/apps/showswitchports/__init__.pyc -noc/sa/apps/showswitchports/__init__.pyo -noc/sa/apps/showswitchports/tests/__init__.py -noc/sa/apps/showswitchports/tests/__init__.pyc -noc/sa/apps/showswitchports/tests/__init__.pyo -noc/sa/apps/showswitchports/tests/test.py -noc/sa/apps/showswitchports/tests/test.pyc -noc/sa/apps/showswitchports/tests/test.pyo -noc/sa/apps/showswitchports/views.py -noc/sa/apps/showswitchports/views.pyc -noc/sa/apps/showswitchports/views.pyo -noc/sa/apps/switchportvalidation/__init__.py -noc/sa/apps/switchportvalidation/__init__.pyc -noc/sa/apps/switchportvalidation/__init__.pyo -noc/sa/apps/switchportvalidation/tests/__init__.py -noc/sa/apps/switchportvalidation/tests/__init__.pyc -noc/sa/apps/switchportvalidation/tests/__init__.pyo -noc/sa/apps/switchportvalidation/tests/test.py -noc/sa/apps/switchportvalidation/tests/test.pyc -noc/sa/apps/switchportvalidation/tests/test.pyo -noc/sa/apps/switchportvalidation/views.py -noc/sa/apps/switchportvalidation/views.pyc -noc/sa/apps/switchportvalidation/views.pyo -noc/sa/apps/taskschedule/__init__.py -noc/sa/apps/taskschedule/__init__.pyc -noc/sa/apps/taskschedule/__init__.pyo -noc/sa/apps/taskschedule/tests/__init__.py -noc/sa/apps/taskschedule/tests/__init__.pyc -noc/sa/apps/taskschedule/tests/__init__.pyo -noc/sa/apps/taskschedule/tests/test.py -noc/sa/apps/taskschedule/tests/test.pyc -noc/sa/apps/taskschedule/tests/test.pyo -noc/sa/apps/taskschedule/views.py -noc/sa/apps/taskschedule/views.pyc -noc/sa/apps/taskschedule/views.pyo -noc/sa/apps/topologydiscovery/__init__.py -noc/sa/apps/topologydiscovery/__init__.pyc -noc/sa/apps/topologydiscovery/__init__.pyo -noc/sa/apps/topologydiscovery/tests/__init__.py -noc/sa/apps/topologydiscovery/tests/__init__.pyc -noc/sa/apps/topologydiscovery/tests/__init__.pyo -noc/sa/apps/topologydiscovery/tests/test.py -noc/sa/apps/topologydiscovery/tests/test.pyc -noc/sa/apps/topologydiscovery/tests/test.pyo -noc/sa/apps/topologydiscovery/topology/__init__.py -noc/sa/apps/topologydiscovery/topology/__init__.pyc -noc/sa/apps/topologydiscovery/topology/__init__.pyo -noc/sa/apps/topologydiscovery/topology/base.py -noc/sa/apps/topologydiscovery/topology/base.pyc -noc/sa/apps/topologydiscovery/topology/base.pyo -noc/sa/apps/topologydiscovery/topology/cdp.py -noc/sa/apps/topologydiscovery/topology/cdp.pyc -noc/sa/apps/topologydiscovery/topology/cdp.pyo -noc/sa/apps/topologydiscovery/topology/lldp.py -noc/sa/apps/topologydiscovery/topology/lldp.pyc -noc/sa/apps/topologydiscovery/topology/lldp.pyo -noc/sa/apps/topologydiscovery/topology/mac.py -noc/sa/apps/topologydiscovery/topology/mac.pyc -noc/sa/apps/topologydiscovery/topology/mac.pyo -noc/sa/apps/topologydiscovery/topology/stp.py -noc/sa/apps/topologydiscovery/topology/stp.pyc -noc/sa/apps/topologydiscovery/topology/stp.pyo -noc/sa/apps/topologydiscovery/views.py -noc/sa/apps/topologydiscovery/views.pyc -noc/sa/apps/topologydiscovery/views.pyo -noc/sa/apps/useraccess/__init__.py -noc/sa/apps/useraccess/__init__.pyc -noc/sa/apps/useraccess/__init__.pyo -noc/sa/apps/useraccess/tests/__init__.py -noc/sa/apps/useraccess/tests/__init__.pyc -noc/sa/apps/useraccess/tests/__init__.pyo -noc/sa/apps/useraccess/tests/test.py -noc/sa/apps/useraccess/tests/test.pyc -noc/sa/apps/useraccess/tests/test.pyo -noc/sa/apps/useraccess/views.py -noc/sa/apps/useraccess/views.pyc -noc/sa/apps/useraccess/views.pyo -noc/sa/apps/versioninventory/__init__.py -noc/sa/apps/versioninventory/__init__.pyc -noc/sa/apps/versioninventory/__init__.pyo -noc/sa/apps/versioninventory/tests/__init__.py -noc/sa/apps/versioninventory/tests/__init__.pyc -noc/sa/apps/versioninventory/tests/__init__.pyo -noc/sa/apps/versioninventory/tests/test.py -noc/sa/apps/versioninventory/tests/test.pyc -noc/sa/apps/versioninventory/tests/test.pyo -noc/sa/apps/versioninventory/views.py -noc/sa/apps/versioninventory/views.pyc -noc/sa/apps/versioninventory/views.pyo -noc/sa/eventcollector.py -noc/sa/eventcollector.pyc -noc/sa/eventcollector.pyo -noc/sa/interfaces/__init__.py -noc/sa/interfaces/__init__.pyc -noc/sa/interfaces/__init__.pyo -noc/sa/interfaces/base.py -noc/sa/interfaces/base.pyc -noc/sa/interfaces/base.pyo -noc/sa/interfaces/iaddvlan.py -noc/sa/interfaces/iaddvlan.pyc -noc/sa/interfaces/iaddvlan.pyo -noc/sa/interfaces/iauthenticationbackend.py -noc/sa/interfaces/iauthenticationbackend.pyc -noc/sa/interfaces/iauthenticationbackend.pyo -noc/sa/interfaces/iauthenticationform.py -noc/sa/interfaces/iauthenticationform.pyc -noc/sa/interfaces/iauthenticationform.pyo -noc/sa/interfaces/icommands.py -noc/sa/interfaces/icommands.pyc -noc/sa/interfaces/icommands.pyo -noc/sa/interfaces/iconfigfilter.py -noc/sa/interfaces/iconfigfilter.pyc -noc/sa/interfaces/iconfigfilter.pyo -noc/sa/interfaces/iconfigvalidator.py -noc/sa/interfaces/iconfigvalidator.pyc -noc/sa/interfaces/iconfigvalidator.pyo -noc/sa/interfaces/idbpostdelete.py -noc/sa/interfaces/idbpostdelete.pyc -noc/sa/interfaces/idbpostdelete.pyo -noc/sa/interfaces/idbpostsave.py -noc/sa/interfaces/idbpostsave.pyc -noc/sa/interfaces/idbpostsave.pyo -noc/sa/interfaces/idbpredelete.py -noc/sa/interfaces/idbpredelete.pyc -noc/sa/interfaces/idbpredelete.pyo -noc/sa/interfaces/idbpresave.py -noc/sa/interfaces/idbpresave.pyc -noc/sa/interfaces/idbpresave.pyo -noc/sa/interfaces/ievent.py -noc/sa/interfaces/ievent.pyc -noc/sa/interfaces/ievent.pyo -noc/sa/interfaces/igetarp.py -noc/sa/interfaces/igetarp.pyc -noc/sa/interfaces/igetarp.pyo -noc/sa/interfaces/igetcdpneighbors.py -noc/sa/interfaces/igetcdpneighbors.pyc -noc/sa/interfaces/igetcdpneighbors.pyo -noc/sa/interfaces/igetchassisid.py -noc/sa/interfaces/igetchassisid.pyc -noc/sa/interfaces/igetchassisid.pyo -noc/sa/interfaces/igetconfig.py -noc/sa/interfaces/igetconfig.pyc -noc/sa/interfaces/igetconfig.pyo -noc/sa/interfaces/igetdhcpbinding.py -noc/sa/interfaces/igetdhcpbinding.pyc -noc/sa/interfaces/igetdhcpbinding.pyo -noc/sa/interfaces/igetdictlist.py -noc/sa/interfaces/igetdictlist.pyc -noc/sa/interfaces/igetdictlist.pyo -noc/sa/interfaces/igetdot11associations.py -noc/sa/interfaces/igetdot11associations.pyc -noc/sa/interfaces/igetdot11associations.pyo -noc/sa/interfaces/igetfdpneighbors.py -noc/sa/interfaces/igetfdpneighbors.pyc -noc/sa/interfaces/igetfdpneighbors.pyo -noc/sa/interfaces/igetfqdn.py -noc/sa/interfaces/igetfqdn.pyc -noc/sa/interfaces/igetfqdn.pyo -noc/sa/interfaces/igetinterfaces.py -noc/sa/interfaces/igetinterfaces.pyc -noc/sa/interfaces/igetinterfaces.pyo -noc/sa/interfaces/igetinterfacestatus.py -noc/sa/interfaces/igetinterfacestatus.pyc -noc/sa/interfaces/igetinterfacestatus.pyo -noc/sa/interfaces/igetlldpneighbors.py -noc/sa/interfaces/igetlldpneighbors.pyc -noc/sa/interfaces/igetlldpneighbors.pyo -noc/sa/interfaces/igetlocalusers.py -noc/sa/interfaces/igetlocalusers.pyc -noc/sa/interfaces/igetlocalusers.pyo -noc/sa/interfaces/igetmacaddresstable.py -noc/sa/interfaces/igetmacaddresstable.pyc -noc/sa/interfaces/igetmacaddresstable.pyo -noc/sa/interfaces/igetobjectstatus.py -noc/sa/interfaces/igetobjectstatus.pyc -noc/sa/interfaces/igetobjectstatus.pyo -noc/sa/interfaces/igetportchannel.py -noc/sa/interfaces/igetportchannel.pyc -noc/sa/interfaces/igetportchannel.pyo -noc/sa/interfaces/igetspanningtree.py -noc/sa/interfaces/igetspanningtree.pyc -noc/sa/interfaces/igetspanningtree.pyo -noc/sa/interfaces/igetswitchport.py -noc/sa/interfaces/igetswitchport.pyc -noc/sa/interfaces/igetswitchport.pyo -noc/sa/interfaces/igettopologydata.py -noc/sa/interfaces/igettopologydata.pyc -noc/sa/interfaces/igettopologydata.pyo -noc/sa/interfaces/igetversion.py -noc/sa/interfaces/igetversion.pyc -noc/sa/interfaces/igetversion.pyo -noc/sa/interfaces/igetvlans.py -noc/sa/interfaces/igetvlans.pyc -noc/sa/interfaces/igetvlans.pyo -noc/sa/interfaces/ihaslocaluser.py -noc/sa/interfaces/ihaslocaluser.pyc -noc/sa/interfaces/ihaslocaluser.pyo -noc/sa/interfaces/ihasvlan.py -noc/sa/interfaces/ihasvlan.pyc -noc/sa/interfaces/ihasvlan.pyo -noc/sa/interfaces/iping.py -noc/sa/interfaces/iping.pyc -noc/sa/interfaces/iping.pyo -noc/sa/interfaces/ipingcheck.py -noc/sa/interfaces/ipingcheck.pyc -noc/sa/interfaces/ipingcheck.pyo -noc/sa/interfaces/ireducetask.py -noc/sa/interfaces/ireducetask.pyc -noc/sa/interfaces/ireducetask.pyo -noc/sa/interfaces/iremovevlan.py -noc/sa/interfaces/iremovevlan.pyc -noc/sa/interfaces/iremovevlan.pyo -noc/sa/interfaces/isyncprefixlists.py -noc/sa/interfaces/isyncprefixlists.pyc -noc/sa/interfaces/isyncprefixlists.pyo -noc/sa/interfaces/isyncvlans.py -noc/sa/interfaces/isyncvlans.pyc -noc/sa/interfaces/isyncvlans.pyo -noc/sa/management/__init__.py -noc/sa/management/__init__.pyc -noc/sa/management/__init__.pyo -noc/sa/management/commands/__init__.py -noc/sa/management/commands/__init__.pyc -noc/sa/management/commands/__init__.pyo -noc/sa/management/commands/debug-script.py -noc/sa/management/commands/debug-script.pyc -noc/sa/management/commands/debug-script.pyo -noc/sa/management/commands/script-test.py -noc/sa/management/commands/script-test.pyc -noc/sa/management/commands/script-test.pyo -noc/sa/management/commands/topo-test.py -noc/sa/management/commands/topo-test.pyc -noc/sa/management/commands/topo-test.pyo -noc/sa/migrations/0001_initial.py -noc/sa/migrations/0001_initial.pyc -noc/sa/migrations/0001_initial.pyo -noc/sa/migrations/0002_trigger.py -noc/sa/migrations/0002_trigger.pyc -noc/sa/migrations/0002_trigger.pyo -noc/sa/migrations/0003_task_schedule.py -noc/sa/migrations/0003_task_schedule.pyc -noc/sa/migrations/0003_task_schedule.pyo -noc/sa/migrations/0004_no_task.py -noc/sa/migrations/0004_no_task.pyc -noc/sa/migrations/0004_no_task.pyo -noc/sa/migrations/0005_activator.py -noc/sa/migrations/0005_activator.pyc -noc/sa/migrations/0005_activator.pyo -noc/sa/migrations/0006_default_activator.py -noc/sa/migrations/0006_default_activator.pyc -noc/sa/migrations/0006_default_activator.pyo -noc/sa/migrations/0007_managed_object.py -noc/sa/migrations/0007_managed_object.pyc -noc/sa/migrations/0007_managed_object.pyo -noc/sa/migrations/0008_copy_objects.py -noc/sa/migrations/0008_copy_objects.pyc -noc/sa/migrations/0008_copy_objects.pyo -noc/sa/migrations/0009_snmp_community.py -noc/sa/migrations/0009_snmp_community.pyc -noc/sa/migrations/0009_snmp_community.pyo -noc/sa/migrations/0010_root_object.py -noc/sa/migrations/0010_root_object.pyc -noc/sa/migrations/0010_root_object.pyo -noc/sa/migrations/0011_managedobject_location.py -noc/sa/migrations/0011_managedobject_location.pyc -noc/sa/migrations/0011_managedobject_location.pyo -noc/sa/migrations/0012_managed_object_description.py -noc/sa/migrations/0012_managed_object_description.pyc -noc/sa/migrations/0012_managed_object_description.pyo -noc/sa/migrations/0013_rename_DES3xxx.py -noc/sa/migrations/0013_rename_DES3xxx.pyc -noc/sa/migrations/0013_rename_DES3xxx.pyo -noc/sa/migrations/0014_activator_to_ip.py -noc/sa/migrations/0014_activator_to_ip.pyc -noc/sa/migrations/0014_activator_to_ip.pyo -noc/sa/migrations/0015_managedobjectselector.py -noc/sa/migrations/0015_managedobjectselector.pyc -noc/sa/migrations/0015_managedobjectselector.pyo -noc/sa/migrations/0016_mapreduce.py -noc/sa/migrations/0016_mapreduce.pyc -noc/sa/migrations/0016_mapreduce.pyo -noc/sa/migrations/0017_object_selector_filter_activator.py -noc/sa/migrations/0017_object_selector_filter_activator.pyc -noc/sa/migrations/0017_object_selector_filter_activator.pyo -noc/sa/migrations/0018_rename_Alcatel_AOS.py -noc/sa/migrations/0018_rename_Alcatel_AOS.pyc -noc/sa/migrations/0018_rename_Alcatel_AOS.pyo -noc/sa/migrations/0019_rename_AddPac.py -noc/sa/migrations/0019_rename_AddPac.pyc -noc/sa/migrations/0019_rename_AddPac.pyo -noc/sa/migrations/0020_save_useraccess.py -noc/sa/migrations/0020_save_useraccess.pyc -noc/sa/migrations/0020_save_useraccess.pyo -noc/sa/migrations/0021_useraccess_selector.py -noc/sa/migrations/0021_useraccess_selector.pyc -noc/sa/migrations/0021_useraccess_selector.pyo -noc/sa/migrations/0022_restore_useraccess.py -noc/sa/migrations/0022_restore_useraccess.pyc -noc/sa/migrations/0022_restore_useraccess.pyo -noc/sa/migrations/0023_groupaccess.py -noc/sa/migrations/0023_groupaccess.pyc -noc/sa/migrations/0023_groupaccess.pyo -noc/sa/migrations/0024_alter_useraccess.py -noc/sa/migrations/0024_alter_useraccess.pyc -noc/sa/migrations/0024_alter_useraccess.pyo -noc/sa/migrations/0025_tags.py -noc/sa/migrations/0025_tags.pyc -noc/sa/migrations/0025_tags.pyo -noc/sa/migrations/0026_no_objectgroup.py -noc/sa/migrations/0026_no_objectgroup.pyc -noc/sa/migrations/0026_no_objectgroup.pyo -noc/sa/migrations/0027_reducetask_script.py -noc/sa/migrations/0027_reducetask_script.pyc -noc/sa/migrations/0027_reducetask_script.pyo -noc/sa/migrations/0028_noc_sae_profile.py -noc/sa/migrations/0028_noc_sae_profile.pyc -noc/sa/migrations/0028_noc_sae_profile.pyo -noc/sa/migrations/0029_managedobjectattribute.py -noc/sa/migrations/0029_managedobjectattribute.pyc -noc/sa/migrations/0029_managedobjectattribute.pyo -noc/sa/migrations/0030_merge_EdgeCore.py -noc/sa/migrations/0030_merge_EdgeCore.pyc -noc/sa/migrations/0030_merge_EdgeCore.pyo -noc/sa/migrations/0031_management_object_rules.py -noc/sa/migrations/0031_management_object_rules.pyc -noc/sa/migrations/0031_management_object_rules.pyo -noc/sa/migrations/0032_merge_DLink.py -noc/sa/migrations/0032_merge_DLink.pyc -noc/sa/migrations/0032_merge_DLink.pyo -noc/sa/migrations/__init__.py -noc/sa/migrations/__init__.pyc -noc/sa/migrations/__init__.pyo -noc/sa/models.py -noc/sa/models.pyc -noc/sa/models.pyo -noc/sa/periodic.py -noc/sa/periodic.pyc -noc/sa/periodic.pyo -noc/sa/periodics/__init__.py -noc/sa/periodics/__init__.pyc -noc/sa/periodics/__init__.pyo -noc/sa/periodics/version_inventory.py -noc/sa/periodics/version_inventory.pyc -noc/sa/periodics/version_inventory.pyo -noc/sa/profiles/3Com/SuperStack/__init__.py -noc/sa/profiles/3Com/SuperStack/__init__.pyc -noc/sa/profiles/3Com/SuperStack/__init__.pyo -noc/sa/profiles/3Com/SuperStack/get_mac_address_table.py -noc/sa/profiles/3Com/SuperStack/get_mac_address_table.pyc -noc/sa/profiles/3Com/SuperStack/get_mac_address_table.pyo -noc/sa/profiles/3Com/SuperStack/get_version.py -noc/sa/profiles/3Com/SuperStack/get_version.pyc -noc/sa/profiles/3Com/SuperStack/get_version.pyo -noc/sa/profiles/3Com/SuperStack/get_vlans.py -noc/sa/profiles/3Com/SuperStack/get_vlans.pyc -noc/sa/profiles/3Com/SuperStack/get_vlans.pyo -noc/sa/profiles/3Com/SuperStack/tests/3Com_SuperStack_2_72_get_version_0001.py -noc/sa/profiles/3Com/SuperStack/tests/3Com_SuperStack_2_72_get_version_0001.pyc -noc/sa/profiles/3Com/SuperStack/tests/3Com_SuperStack_2_72_get_version_0001.pyo -noc/sa/profiles/3Com/SuperStack/tests/3Com_SuperStack_3_Switch_3300XM_2_72_get_mac_address_table_0001.py -noc/sa/profiles/3Com/SuperStack/tests/3Com_SuperStack_3_Switch_3300XM_2_72_get_mac_address_table_0001.pyc -noc/sa/profiles/3Com/SuperStack/tests/3Com_SuperStack_3_Switch_3300XM_2_72_get_mac_address_table_0001.pyo -noc/sa/profiles/3Com/SuperStack/tests/3Com_SuperStack_3_Switch_3300XM_2_72_get_mac_address_table_0002.py -noc/sa/profiles/3Com/SuperStack/tests/3Com_SuperStack_3_Switch_3300XM_2_72_get_mac_address_table_0002.pyc -noc/sa/profiles/3Com/SuperStack/tests/3Com_SuperStack_3_Switch_3300XM_2_72_get_mac_address_table_0002.pyo -noc/sa/profiles/3Com/SuperStack/tests/3Com_SuperStack_3_Switch_3300XM_2_72_get_version_0001.py -noc/sa/profiles/3Com/SuperStack/tests/3Com_SuperStack_3_Switch_3300XM_2_72_get_version_0001.pyc -noc/sa/profiles/3Com/SuperStack/tests/3Com_SuperStack_3_Switch_3300XM_2_72_get_version_0001.pyo -noc/sa/profiles/3Com/SuperStack/tests/3Com_SuperStack_3_Switch_3300XM_2_72_get_vlans_0001.py -noc/sa/profiles/3Com/SuperStack/tests/3Com_SuperStack_3_Switch_3300XM_2_72_get_vlans_0001.pyc -noc/sa/profiles/3Com/SuperStack/tests/3Com_SuperStack_3_Switch_3300XM_2_72_get_vlans_0001.pyo -noc/sa/profiles/3Com/SuperStack/tests/3Com_SuperStack_II_Switch_1100_2_72_get_mac_address_table_0001.py -noc/sa/profiles/3Com/SuperStack/tests/3Com_SuperStack_II_Switch_1100_2_72_get_mac_address_table_0001.pyc -noc/sa/profiles/3Com/SuperStack/tests/3Com_SuperStack_II_Switch_1100_2_72_get_mac_address_table_0001.pyo -noc/sa/profiles/3Com/SuperStack/tests/3Com_SuperStack_II_Switch_1100_2_72_get_version_0001.py -noc/sa/profiles/3Com/SuperStack/tests/3Com_SuperStack_II_Switch_1100_2_72_get_version_0001.pyc -noc/sa/profiles/3Com/SuperStack/tests/3Com_SuperStack_II_Switch_1100_2_72_get_version_0001.pyo -noc/sa/profiles/3Com/SuperStack/tests/3Com_SuperStack_II_Switch_610_2_72_get_vlans_0001.py -noc/sa/profiles/3Com/SuperStack/tests/3Com_SuperStack_II_Switch_610_2_72_get_vlans_0001.pyc -noc/sa/profiles/3Com/SuperStack/tests/3Com_SuperStack_II_Switch_610_2_72_get_vlans_0001.pyo -noc/sa/profiles/3Com/SuperStack/tests/__init__.py -noc/sa/profiles/3Com/SuperStack/tests/__init__.pyc -noc/sa/profiles/3Com/SuperStack/tests/__init__.pyo -noc/sa/profiles/3Com/__init__.py -noc/sa/profiles/3Com/__init__.pyc -noc/sa/profiles/3Com/__init__.pyo -noc/sa/profiles/AddPac/APOS/__init__.py -noc/sa/profiles/AddPac/APOS/__init__.pyc -noc/sa/profiles/AddPac/APOS/__init__.pyo -noc/sa/profiles/AddPac/APOS/get_config.py -noc/sa/profiles/AddPac/APOS/get_config.pyc -noc/sa/profiles/AddPac/APOS/get_config.pyo -noc/sa/profiles/AddPac/APOS/get_version.py -noc/sa/profiles/AddPac/APOS/get_version.pyc -noc/sa/profiles/AddPac/APOS/get_version.pyo -noc/sa/profiles/AddPac/APOS/highlight.py -noc/sa/profiles/AddPac/APOS/highlight.pyc -noc/sa/profiles/AddPac/APOS/highlight.pyo -noc/sa/profiles/AddPac/APOS/supported.csv -noc/sa/profiles/AddPac/__init__.py -noc/sa/profiles/AddPac/__init__.pyc -noc/sa/profiles/AddPac/__init__.pyo -noc/sa/profiles/Alcatel/AOS/__init__.py -noc/sa/profiles/Alcatel/AOS/__init__.pyc -noc/sa/profiles/Alcatel/AOS/__init__.pyo -noc/sa/profiles/Alcatel/AOS/get_config.py -noc/sa/profiles/Alcatel/AOS/get_config.pyc -noc/sa/profiles/Alcatel/AOS/get_config.pyo -noc/sa/profiles/Alcatel/AOS/get_version.py -noc/sa/profiles/Alcatel/AOS/get_version.pyc -noc/sa/profiles/Alcatel/AOS/get_version.pyo -noc/sa/profiles/Alcatel/AOS/get_vlans.py -noc/sa/profiles/Alcatel/AOS/get_vlans.pyc -noc/sa/profiles/Alcatel/AOS/get_vlans.pyo -noc/sa/profiles/Alcatel/AOS/supported.csv -noc/sa/profiles/Alcatel/OS62xx/__init__.py -noc/sa/profiles/Alcatel/OS62xx/__init__.pyc -noc/sa/profiles/Alcatel/OS62xx/__init__.pyo -noc/sa/profiles/Alcatel/OS62xx/get_config.py -noc/sa/profiles/Alcatel/OS62xx/get_config.pyc -noc/sa/profiles/Alcatel/OS62xx/get_config.pyo -noc/sa/profiles/Alcatel/OS62xx/get_mac_address_table.py -noc/sa/profiles/Alcatel/OS62xx/get_mac_address_table.pyc -noc/sa/profiles/Alcatel/OS62xx/get_mac_address_table.pyo -noc/sa/profiles/Alcatel/OS62xx/get_version.py -noc/sa/profiles/Alcatel/OS62xx/get_version.pyc -noc/sa/profiles/Alcatel/OS62xx/get_version.pyo -noc/sa/profiles/Alcatel/OS62xx/get_vlans.py -noc/sa/profiles/Alcatel/OS62xx/get_vlans.pyc -noc/sa/profiles/Alcatel/OS62xx/get_vlans.pyo -noc/sa/profiles/Alcatel/OS62xx/supported.csv -noc/sa/profiles/Alcatel/OS62xx/tests/Alcatel_OmniStack_LS_6200_1_5_1_7_get_version_0001.py -noc/sa/profiles/Alcatel/OS62xx/tests/Alcatel_OmniStack_LS_6200_1_5_1_7_get_version_0001.pyc -noc/sa/profiles/Alcatel/OS62xx/tests/Alcatel_OmniStack_LS_6200_1_5_1_7_get_version_0001.pyo -noc/sa/profiles/Alcatel/OS62xx/tests/__init__.py -noc/sa/profiles/Alcatel/OS62xx/tests/__init__.pyc -noc/sa/profiles/Alcatel/OS62xx/tests/__init__.pyo -noc/sa/profiles/Alcatel/TIMOS/__init__.py -noc/sa/profiles/Alcatel/TIMOS/__init__.pyc -noc/sa/profiles/Alcatel/TIMOS/__init__.pyo -noc/sa/profiles/Alcatel/TIMOS/get_config.py -noc/sa/profiles/Alcatel/TIMOS/get_config.pyc -noc/sa/profiles/Alcatel/TIMOS/get_config.pyo -noc/sa/profiles/Alcatel/TIMOS/get_version.py -noc/sa/profiles/Alcatel/TIMOS/get_version.pyc -noc/sa/profiles/Alcatel/TIMOS/get_version.pyo -noc/sa/profiles/Alcatel/TIMOS/supported.csv -noc/sa/profiles/Alcatel/TIMOS/tests/Alcatel_Alcatel_TIMOS_C_8_0_R3_get_version_0001.py -noc/sa/profiles/Alcatel/TIMOS/tests/Alcatel_Alcatel_TIMOS_C_8_0_R3_get_version_0001.pyc -noc/sa/profiles/Alcatel/TIMOS/tests/Alcatel_Alcatel_TIMOS_C_8_0_R3_get_version_0001.pyo -noc/sa/profiles/Alcatel/TIMOS/tests/__init__.py -noc/sa/profiles/Alcatel/TIMOS/tests/__init__.pyc -noc/sa/profiles/Alcatel/TIMOS/tests/__init__.pyo -noc/sa/profiles/Alcatel/__init__.py -noc/sa/profiles/Alcatel/__init__.pyc -noc/sa/profiles/Alcatel/__init__.pyo -noc/sa/profiles/AlliedTelesis/AT8000S/__init__.py -noc/sa/profiles/AlliedTelesis/AT8000S/__init__.pyc -noc/sa/profiles/AlliedTelesis/AT8000S/__init__.pyo -noc/sa/profiles/AlliedTelesis/AT8000S/add_vlan.py -noc/sa/profiles/AlliedTelesis/AT8000S/add_vlan.pyc -noc/sa/profiles/AlliedTelesis/AT8000S/add_vlan.pyo -noc/sa/profiles/AlliedTelesis/AT8000S/get_arp.py -noc/sa/profiles/AlliedTelesis/AT8000S/get_arp.pyc -noc/sa/profiles/AlliedTelesis/AT8000S/get_arp.pyo -noc/sa/profiles/AlliedTelesis/AT8000S/get_config.py -noc/sa/profiles/AlliedTelesis/AT8000S/get_config.pyc -noc/sa/profiles/AlliedTelesis/AT8000S/get_config.pyo -noc/sa/profiles/AlliedTelesis/AT8000S/get_local_users.py -noc/sa/profiles/AlliedTelesis/AT8000S/get_local_users.pyc -noc/sa/profiles/AlliedTelesis/AT8000S/get_local_users.pyo -noc/sa/profiles/AlliedTelesis/AT8000S/get_mac_address_table.py -noc/sa/profiles/AlliedTelesis/AT8000S/get_mac_address_table.pyc -noc/sa/profiles/AlliedTelesis/AT8000S/get_mac_address_table.pyo -noc/sa/profiles/AlliedTelesis/AT8000S/get_version.py -noc/sa/profiles/AlliedTelesis/AT8000S/get_version.pyc -noc/sa/profiles/AlliedTelesis/AT8000S/get_version.pyo -noc/sa/profiles/AlliedTelesis/AT8000S/get_vlans.py -noc/sa/profiles/AlliedTelesis/AT8000S/get_vlans.pyc -noc/sa/profiles/AlliedTelesis/AT8000S/get_vlans.pyo -noc/sa/profiles/AlliedTelesis/AT8000S/highlight.py -noc/sa/profiles/AlliedTelesis/AT8000S/highlight.pyc -noc/sa/profiles/AlliedTelesis/AT8000S/highlight.pyo -noc/sa/profiles/AlliedTelesis/AT8000S/ping.py -noc/sa/profiles/AlliedTelesis/AT8000S/ping.pyc -noc/sa/profiles/AlliedTelesis/AT8000S/ping.pyo -noc/sa/profiles/AlliedTelesis/AT8000S/remove_vlan.py -noc/sa/profiles/AlliedTelesis/AT8000S/remove_vlan.pyc -noc/sa/profiles/AlliedTelesis/AT8000S/remove_vlan.pyo -noc/sa/profiles/AlliedTelesis/AT8500/__init__.py -noc/sa/profiles/AlliedTelesis/AT8500/__init__.pyc -noc/sa/profiles/AlliedTelesis/AT8500/__init__.pyo -noc/sa/profiles/AlliedTelesis/AT8500/get_config.py -noc/sa/profiles/AlliedTelesis/AT8500/get_config.pyc -noc/sa/profiles/AlliedTelesis/AT8500/get_config.pyo -noc/sa/profiles/AlliedTelesis/AT8500/get_mac_address_table.py -noc/sa/profiles/AlliedTelesis/AT8500/get_mac_address_table.pyc -noc/sa/profiles/AlliedTelesis/AT8500/get_mac_address_table.pyo -noc/sa/profiles/AlliedTelesis/AT8500/get_version.py -noc/sa/profiles/AlliedTelesis/AT8500/get_version.pyc -noc/sa/profiles/AlliedTelesis/AT8500/get_version.pyo -noc/sa/profiles/AlliedTelesis/AT8500/ping.py -noc/sa/profiles/AlliedTelesis/AT8500/ping.pyc -noc/sa/profiles/AlliedTelesis/AT8500/ping.pyo -noc/sa/profiles/AlliedTelesis/__init__.py -noc/sa/profiles/AlliedTelesis/__init__.pyc -noc/sa/profiles/AlliedTelesis/__init__.pyo -noc/sa/profiles/Audiocodes/Mediant2000/__init__.py -noc/sa/profiles/Audiocodes/Mediant2000/__init__.pyc -noc/sa/profiles/Audiocodes/Mediant2000/__init__.pyo -noc/sa/profiles/Audiocodes/Mediant2000/get_config.py -noc/sa/profiles/Audiocodes/Mediant2000/get_config.pyc -noc/sa/profiles/Audiocodes/Mediant2000/get_config.pyo -noc/sa/profiles/Audiocodes/Mediant2000/get_version.py -noc/sa/profiles/Audiocodes/Mediant2000/get_version.pyc -noc/sa/profiles/Audiocodes/Mediant2000/get_version.pyo -noc/sa/profiles/Audiocodes/Mediant2000/highlight.py -noc/sa/profiles/Audiocodes/Mediant2000/highlight.pyc -noc/sa/profiles/Audiocodes/Mediant2000/highlight.pyo -noc/sa/profiles/Audiocodes/Mediant2000/supported.csv -noc/sa/profiles/Audiocodes/__init__.py -noc/sa/profiles/Audiocodes/__init__.pyc -noc/sa/profiles/Audiocodes/__init__.pyo -noc/sa/profiles/Brocade/FabricOS/__init__.py -noc/sa/profiles/Brocade/FabricOS/__init__.pyc -noc/sa/profiles/Brocade/FabricOS/__init__.pyo -noc/sa/profiles/Brocade/FabricOS/get_config.py -noc/sa/profiles/Brocade/FabricOS/get_config.pyc -noc/sa/profiles/Brocade/FabricOS/get_config.pyo -noc/sa/profiles/Brocade/FabricOS/get_version.py -noc/sa/profiles/Brocade/FabricOS/get_version.pyc -noc/sa/profiles/Brocade/FabricOS/get_version.pyo -noc/sa/profiles/Brocade/FabricOS/highlight.py -noc/sa/profiles/Brocade/FabricOS/highlight.pyc -noc/sa/profiles/Brocade/FabricOS/highlight.pyo -noc/sa/profiles/Brocade/FabricOS/supported.csv -noc/sa/profiles/Brocade/__init__.py -noc/sa/profiles/Brocade/__init__.pyc -noc/sa/profiles/Brocade/__init__.pyo -noc/sa/profiles/Cisco/ASA/__init__.py -noc/sa/profiles/Cisco/ASA/__init__.pyc -noc/sa/profiles/Cisco/ASA/__init__.pyo -noc/sa/profiles/Cisco/ASA/get_config.py -noc/sa/profiles/Cisco/ASA/get_config.pyc -noc/sa/profiles/Cisco/ASA/get_config.pyo -noc/sa/profiles/Cisco/ASA/get_version.py -noc/sa/profiles/Cisco/ASA/get_version.pyc -noc/sa/profiles/Cisco/ASA/get_version.pyo -noc/sa/profiles/Cisco/ASA/highlight.py -noc/sa/profiles/Cisco/ASA/highlight.pyc -noc/sa/profiles/Cisco/ASA/highlight.pyo -noc/sa/profiles/Cisco/ASA/supported.csv -noc/sa/profiles/Cisco/ASA/tests/Cisco_ASA5520_8_2_2__get_version_0001.py -noc/sa/profiles/Cisco/ASA/tests/Cisco_ASA5520_8_2_2__get_version_0001.pyc -noc/sa/profiles/Cisco/ASA/tests/Cisco_ASA5520_8_2_2__get_version_0001.pyo -noc/sa/profiles/Cisco/ASA/tests/__init__.py -noc/sa/profiles/Cisco/ASA/tests/__init__.pyc -noc/sa/profiles/Cisco/ASA/tests/__init__.pyo -noc/sa/profiles/Cisco/AireOS/__init__.py -noc/sa/profiles/Cisco/AireOS/__init__.pyc -noc/sa/profiles/Cisco/AireOS/__init__.pyo -noc/sa/profiles/Cisco/AireOS/get_config.py -noc/sa/profiles/Cisco/AireOS/get_config.pyc -noc/sa/profiles/Cisco/AireOS/get_config.pyo -noc/sa/profiles/Cisco/AireOS/get_version.py -noc/sa/profiles/Cisco/AireOS/get_version.pyc -noc/sa/profiles/Cisco/AireOS/get_version.pyo -noc/sa/profiles/Cisco/AireOS/highlight.py -noc/sa/profiles/Cisco/AireOS/highlight.pyc -noc/sa/profiles/Cisco/AireOS/highlight.pyo -noc/sa/profiles/Cisco/AireOS/supported.csv -noc/sa/profiles/Cisco/CatOS/__init__.py -noc/sa/profiles/Cisco/CatOS/__init__.pyc -noc/sa/profiles/Cisco/CatOS/__init__.pyo -noc/sa/profiles/Cisco/CatOS/get_config.py -noc/sa/profiles/Cisco/CatOS/get_config.pyc -noc/sa/profiles/Cisco/CatOS/get_config.pyo -noc/sa/profiles/Cisco/CatOS/get_mac_address_table.py -noc/sa/profiles/Cisco/CatOS/get_mac_address_table.pyc -noc/sa/profiles/Cisco/CatOS/get_mac_address_table.pyo -noc/sa/profiles/Cisco/CatOS/get_version.py -noc/sa/profiles/Cisco/CatOS/get_version.pyc -noc/sa/profiles/Cisco/CatOS/get_version.pyo -noc/sa/profiles/Cisco/CatOS/get_vlans.py -noc/sa/profiles/Cisco/CatOS/get_vlans.pyc -noc/sa/profiles/Cisco/CatOS/get_vlans.pyo -noc/sa/profiles/Cisco/CatOS/highlight.py -noc/sa/profiles/Cisco/CatOS/highlight.pyc -noc/sa/profiles/Cisco/CatOS/highlight.pyo -noc/sa/profiles/Cisco/CatOS/supported.csv -noc/sa/profiles/Cisco/FWSM/__init__.py -noc/sa/profiles/Cisco/FWSM/__init__.pyc -noc/sa/profiles/Cisco/FWSM/__init__.pyo -noc/sa/profiles/Cisco/FWSM/get_config.py -noc/sa/profiles/Cisco/FWSM/get_config.pyc -noc/sa/profiles/Cisco/FWSM/get_config.pyo -noc/sa/profiles/Cisco/FWSM/get_version.py -noc/sa/profiles/Cisco/FWSM/get_version.pyc -noc/sa/profiles/Cisco/FWSM/get_version.pyo -noc/sa/profiles/Cisco/FWSM/highlight.py -noc/sa/profiles/Cisco/FWSM/highlight.pyc -noc/sa/profiles/Cisco/FWSM/highlight.pyo -noc/sa/profiles/Cisco/FWSM/supported.csv -noc/sa/profiles/Cisco/IOS/__init__.py -noc/sa/profiles/Cisco/IOS/__init__.pyc -noc/sa/profiles/Cisco/IOS/__init__.pyo -noc/sa/profiles/Cisco/IOS/add_vlan.py -noc/sa/profiles/Cisco/IOS/add_vlan.pyc -noc/sa/profiles/Cisco/IOS/add_vlan.pyo -noc/sa/profiles/Cisco/IOS/get_arp.py -noc/sa/profiles/Cisco/IOS/get_arp.pyc -noc/sa/profiles/Cisco/IOS/get_arp.pyo -noc/sa/profiles/Cisco/IOS/get_cdp_neighbors.py -noc/sa/profiles/Cisco/IOS/get_cdp_neighbors.pyc -noc/sa/profiles/Cisco/IOS/get_cdp_neighbors.pyo -noc/sa/profiles/Cisco/IOS/get_chassis_id.py -noc/sa/profiles/Cisco/IOS/get_chassis_id.pyc -noc/sa/profiles/Cisco/IOS/get_chassis_id.pyo -noc/sa/profiles/Cisco/IOS/get_config.py -noc/sa/profiles/Cisco/IOS/get_config.pyc -noc/sa/profiles/Cisco/IOS/get_config.pyo -noc/sa/profiles/Cisco/IOS/get_dhcp_binding.py -noc/sa/profiles/Cisco/IOS/get_dhcp_binding.pyc -noc/sa/profiles/Cisco/IOS/get_dhcp_binding.pyo -noc/sa/profiles/Cisco/IOS/get_dot11_associations.py -noc/sa/profiles/Cisco/IOS/get_dot11_associations.pyc -noc/sa/profiles/Cisco/IOS/get_dot11_associations.pyo -noc/sa/profiles/Cisco/IOS/get_fqdn.py -noc/sa/profiles/Cisco/IOS/get_fqdn.pyc -noc/sa/profiles/Cisco/IOS/get_fqdn.pyo -noc/sa/profiles/Cisco/IOS/get_lldp_neighbors.py -noc/sa/profiles/Cisco/IOS/get_lldp_neighbors.pyc -noc/sa/profiles/Cisco/IOS/get_lldp_neighbors.pyo -noc/sa/profiles/Cisco/IOS/get_local_users.py -noc/sa/profiles/Cisco/IOS/get_local_users.pyc -noc/sa/profiles/Cisco/IOS/get_local_users.pyo -noc/sa/profiles/Cisco/IOS/get_mac_address_table.py -noc/sa/profiles/Cisco/IOS/get_mac_address_table.pyc -noc/sa/profiles/Cisco/IOS/get_mac_address_table.pyo -noc/sa/profiles/Cisco/IOS/get_portchannel.py -noc/sa/profiles/Cisco/IOS/get_portchannel.pyc -noc/sa/profiles/Cisco/IOS/get_portchannel.pyo -noc/sa/profiles/Cisco/IOS/get_spanning_tree.py -noc/sa/profiles/Cisco/IOS/get_spanning_tree.pyc -noc/sa/profiles/Cisco/IOS/get_spanning_tree.pyo -noc/sa/profiles/Cisco/IOS/get_version.py -noc/sa/profiles/Cisco/IOS/get_version.pyc -noc/sa/profiles/Cisco/IOS/get_version.pyo -noc/sa/profiles/Cisco/IOS/get_vlans.py -noc/sa/profiles/Cisco/IOS/get_vlans.pyc -noc/sa/profiles/Cisco/IOS/get_vlans.pyo -noc/sa/profiles/Cisco/IOS/highlight.py -noc/sa/profiles/Cisco/IOS/highlight.pyc -noc/sa/profiles/Cisco/IOS/highlight.pyo -noc/sa/profiles/Cisco/IOS/ping.py -noc/sa/profiles/Cisco/IOS/ping.pyc -noc/sa/profiles/Cisco/IOS/ping.pyo -noc/sa/profiles/Cisco/IOS/remove_vlan.py -noc/sa/profiles/Cisco/IOS/remove_vlan.pyc -noc/sa/profiles/Cisco/IOS/remove_vlan.pyo -noc/sa/profiles/Cisco/IOS/supported.csv -noc/sa/profiles/Cisco/IOS/tests/Cisco_2800_12_4_21__get_version_0001.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_2800_12_4_21__get_version_0001.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_2800_12_4_21__get_version_0001.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_2800_12_4_25c__get_version_0001.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_2800_12_4_25c__get_version_0001.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_2800_12_4_25c__get_version_0001.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_3800_12_4_24_T1_get_version_0001.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_3800_12_4_24_T1_get_version_0001.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_3800_12_4_24_T1_get_version_0001.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_3800_12_4_24_T1_get_vlans_0001.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_3800_12_4_24_T1_get_vlans_0001.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_3800_12_4_24_T1_get_vlans_0001.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_C1900_15_0_1_M1_get_version_0001.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_C1900_15_0_1_M1_get_version_0001.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_C1900_15_0_1_M1_get_version_0001.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_C2960_12_2_52_SE_get_version_0001.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_C2960_12_2_52_SE_get_version_0001.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_C2960_12_2_52_SE_get_version_0001.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3550_12_2_52_SE_get_version_0001.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3550_12_2_52_SE_get_version_0001.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3550_12_2_52_SE_get_version_0001.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3560_12_2_25_SEE4_get_version_0001.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3560_12_2_25_SEE4_get_version_0001.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3560_12_2_25_SEE4_get_version_0001.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3560_12_2_44_SE6_get_spanning_tree_0001.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3560_12_2_44_SE6_get_spanning_tree_0001.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3560_12_2_44_SE6_get_spanning_tree_0001.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3560_12_2_46_SE_get_lldp_neighbors_0001.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3560_12_2_46_SE_get_lldp_neighbors_0001.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3560_12_2_46_SE_get_lldp_neighbors_0001.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3560_12_2_52_SE_get_version_0001.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3560_12_2_52_SE_get_version_0001.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3560_12_2_52_SE_get_version_0001.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3750_12_2_25_SEE_get_version_0001.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3750_12_2_25_SEE_get_version_0001.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3750_12_2_25_SEE_get_version_0001.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3750_12_2_35_SE1_get_spanning_tree_0001.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3750_12_2_35_SE1_get_spanning_tree_0001.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3750_12_2_35_SE1_get_spanning_tree_0001.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3750_12_2_35_SE2_get_chassis_id_0001.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3750_12_2_35_SE2_get_chassis_id_0001.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3750_12_2_35_SE2_get_chassis_id_0001.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3750_12_2_35_SE2_get_mac_address_table_0001.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3750_12_2_35_SE2_get_mac_address_table_0001.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3750_12_2_35_SE2_get_mac_address_table_0001.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3750_12_2_35_SE2_get_spanning_tree_0001.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3750_12_2_35_SE2_get_spanning_tree_0001.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3750_12_2_35_SE2_get_spanning_tree_0001.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3750_12_2_35_SE2_get_spanning_tree_0002.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3750_12_2_35_SE2_get_spanning_tree_0002.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3750_12_2_35_SE2_get_spanning_tree_0002.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3750_12_2_37_SE_get_chassis_id_0001.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3750_12_2_37_SE_get_chassis_id_0001.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3750_12_2_37_SE_get_chassis_id_0001.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3750_12_2_40_SE_get_lldp_neighbors_0001.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3750_12_2_40_SE_get_lldp_neighbors_0001.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3750_12_2_40_SE_get_lldp_neighbors_0001.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3750_12_2_40_SE_get_version_0001.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3750_12_2_40_SE_get_version_0001.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3750_12_2_40_SE_get_version_0001.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3750_12_2_53_SE2_get_version_0001.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3750_12_2_53_SE2_get_version_0001.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3750_12_2_53_SE2_get_version_0001.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3750_12_2_53_SE2_get_version_0002.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3750_12_2_53_SE2_get_version_0002.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_C3750_12_2_53_SE2_get_version_0002.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_CBS31X0_12_2_50_SE3_get_chassis_id_0001.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_CBS31X0_12_2_50_SE3_get_chassis_id_0001.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_CBS31X0_12_2_50_SE3_get_chassis_id_0001.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_CBS31X0_12_2_50_SE3_get_fqdn_0001.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_CBS31X0_12_2_50_SE3_get_fqdn_0001.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_CBS31X0_12_2_50_SE3_get_fqdn_0001.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_CBS31X0_12_2_50_SE3_get_lldp_neighbors_0001.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_CBS31X0_12_2_50_SE3_get_lldp_neighbors_0001.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_CBS31X0_12_2_50_SE3_get_lldp_neighbors_0001.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_CBS31X0_12_2_50_SE3_get_mac_address_table_0001.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_CBS31X0_12_2_50_SE3_get_mac_address_table_0001.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_CBS31X0_12_2_50_SE3_get_mac_address_table_0001.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_CBS31X0_12_2_50_SE3_get_spanning_tree_0001.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_CBS31X0_12_2_50_SE3_get_spanning_tree_0001.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_CBS31X0_12_2_50_SE3_get_spanning_tree_0001.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_CBS31X0_12_2_50_SE3_get_version_0001.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_CBS31X0_12_2_50_SE3_get_version_0001.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_CBS31X0_12_2_50_SE3_get_version_0001.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_CBS31X0_12_2_50_SE3_get_version_0002.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_CBS31X0_12_2_50_SE3_get_version_0002.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_CBS31X0_12_2_50_SE3_get_version_0002.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_CBS31X0_12_2_50_SE3_get_vlans_0001.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_CBS31X0_12_2_50_SE3_get_vlans_0001.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_CBS31X0_12_2_50_SE3_get_vlans_0001.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_CBS31X0_12_2_55_SE_get_version_0001.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_CBS31X0_12_2_55_SE_get_version_0001.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_CBS31X0_12_2_55_SE_get_version_0001.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_Catalyst_4500_L3_Switch_12_2_31_SGA10_get_mac_address_table_0001.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_Catalyst_4500_L3_Switch_12_2_31_SGA10_get_mac_address_table_0001.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_Catalyst_4500_L3_Switch_12_2_31_SGA10_get_mac_address_table_0001.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_Catalyst_4500_L3_Switch_12_2_37_SG1_get_chassis_id_0001.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_Catalyst_4500_L3_Switch_12_2_37_SG1_get_chassis_id_0001.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_Catalyst_4500_L3_Switch_12_2_37_SG1_get_chassis_id_0001.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_Catalyst_4500_L3_Switch_12_2_37_SG1_get_mac_address_table_0001.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_Catalyst_4500_L3_Switch_12_2_37_SG1_get_mac_address_table_0001.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_Catalyst_4500_L3_Switch_12_2_37_SG1_get_mac_address_table_0001.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_Catalyst_4500_L3_Switch_12_2_37_SG1_get_version_0001.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_Catalyst_4500_L3_Switch_12_2_37_SG1_get_version_0001.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_Catalyst_4500_L3_Switch_12_2_37_SG1_get_version_0001.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_EGR_12_3_17b_BC3_get_spanning_tree_0001.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_EGR_12_3_17b_BC3_get_spanning_tree_0001.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_EGR_12_3_17b_BC3_get_spanning_tree_0001.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_s222_rp_12_2_18_SXF13_get_mac_address_table_0001.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_s222_rp_12_2_18_SXF13_get_mac_address_table_0001.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_s222_rp_12_2_18_SXF13_get_mac_address_table_0001.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_s72033_rp_12_2_18_SXF14_get_chassis_id_0001.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_s72033_rp_12_2_18_SXF14_get_chassis_id_0001.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_s72033_rp_12_2_18_SXF14_get_chassis_id_0001.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_s72033_rp_12_2_18_SXF14_get_mac_address_table_0001.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_s72033_rp_12_2_18_SXF14_get_mac_address_table_0001.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_s72033_rp_12_2_18_SXF14_get_mac_address_table_0001.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_s72033_rp_12_2_18_SXF14_get_spanning_tree_0001.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_s72033_rp_12_2_18_SXF14_get_spanning_tree_0001.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_s72033_rp_12_2_18_SXF14_get_spanning_tree_0001.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_s72033_rp_12_2_18_SXF14_get_version_0001.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_s72033_rp_12_2_18_SXF14_get_version_0001.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_s72033_rp_12_2_18_SXF14_get_version_0001.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_s72033_rp_12_2_33_SXH2a_get_chassis_id_0001.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_s72033_rp_12_2_33_SXH2a_get_chassis_id_0001.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_s72033_rp_12_2_33_SXH2a_get_chassis_id_0001.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_s72033_rp_12_2_33_SXH2a_get_mac_address_table_0001.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_s72033_rp_12_2_33_SXH2a_get_mac_address_table_0001.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_s72033_rp_12_2_33_SXH2a_get_mac_address_table_0001.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_s72033_rp_12_2_33_SXH2a_get_spanning_tree_0001.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_s72033_rp_12_2_33_SXH2a_get_spanning_tree_0001.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_s72033_rp_12_2_33_SXH2a_get_spanning_tree_0001.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_s72033_rp_12_2_33_SXH2a_get_version_0001.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_s72033_rp_12_2_33_SXH2a_get_version_0001.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_s72033_rp_12_2_33_SXH2a_get_version_0001.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_s72033_rp_12_2_33_SXI2_get_mac_address_table_0001.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_s72033_rp_12_2_33_SXI2_get_mac_address_table_0001.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_s72033_rp_12_2_33_SXI2_get_mac_address_table_0001.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_s72033_rp_12_2_33_SXI2_get_mac_address_table_0002.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_s72033_rp_12_2_33_SXI2_get_mac_address_table_0002.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_s72033_rp_12_2_33_SXI2_get_mac_address_table_0002.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_uBR7114_12_3_23_BC5_get_version_0001.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_uBR7114_12_3_23_BC5_get_version_0001.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_uBR7114_12_3_23_BC5_get_version_0001.pyo -noc/sa/profiles/Cisco/IOS/tests/Cisco_uBR7114_12_3_32_BC5_get_vlans_0001.py -noc/sa/profiles/Cisco/IOS/tests/Cisco_uBR7114_12_3_32_BC5_get_vlans_0001.pyc -noc/sa/profiles/Cisco/IOS/tests/Cisco_uBR7114_12_3_32_BC5_get_vlans_0001.pyo -noc/sa/profiles/Cisco/IOS/tests/__init__.py -noc/sa/profiles/Cisco/IOS/tests/__init__.pyc -noc/sa/profiles/Cisco/IOS/tests/__init__.pyo -noc/sa/profiles/Cisco/NXOS/__init__.py -noc/sa/profiles/Cisco/NXOS/__init__.pyc -noc/sa/profiles/Cisco/NXOS/__init__.pyo -noc/sa/profiles/Cisco/NXOS/add_vlan.py -noc/sa/profiles/Cisco/NXOS/add_vlan.pyc -noc/sa/profiles/Cisco/NXOS/add_vlan.pyo -noc/sa/profiles/Cisco/NXOS/get_config.py -noc/sa/profiles/Cisco/NXOS/get_config.pyc -noc/sa/profiles/Cisco/NXOS/get_config.pyo -noc/sa/profiles/Cisco/NXOS/get_local_user.py -noc/sa/profiles/Cisco/NXOS/get_local_user.pyc -noc/sa/profiles/Cisco/NXOS/get_local_user.pyo -noc/sa/profiles/Cisco/NXOS/get_version.py -noc/sa/profiles/Cisco/NXOS/get_version.pyc -noc/sa/profiles/Cisco/NXOS/get_version.pyo -noc/sa/profiles/Cisco/NXOS/get_vlans.py -noc/sa/profiles/Cisco/NXOS/get_vlans.pyc -noc/sa/profiles/Cisco/NXOS/get_vlans.pyo -noc/sa/profiles/Cisco/NXOS/highlight.py -noc/sa/profiles/Cisco/NXOS/highlight.pyc -noc/sa/profiles/Cisco/NXOS/highlight.pyo -noc/sa/profiles/Cisco/NXOS/remove_vlan.py -noc/sa/profiles/Cisco/NXOS/remove_vlan.pyc -noc/sa/profiles/Cisco/NXOS/remove_vlan.pyo -noc/sa/profiles/Cisco/NXOS/supported.csv -noc/sa/profiles/Cisco/__init__.py -noc/sa/profiles/Cisco/__init__.pyc -noc/sa/profiles/Cisco/__init__.pyo -noc/sa/profiles/DLink/DES2108/__init__.py -noc/sa/profiles/DLink/DES2108/__init__.pyc -noc/sa/profiles/DLink/DES2108/__init__.pyo -noc/sa/profiles/DLink/DES2108/add_vlan.py -noc/sa/profiles/DLink/DES2108/add_vlan.pyc -noc/sa/profiles/DLink/DES2108/add_vlan.pyo -noc/sa/profiles/DLink/DES2108/get_chassis_id.py -noc/sa/profiles/DLink/DES2108/get_chassis_id.pyc -noc/sa/profiles/DLink/DES2108/get_chassis_id.pyo -noc/sa/profiles/DLink/DES2108/get_mac_address_table.py -noc/sa/profiles/DLink/DES2108/get_mac_address_table.pyc -noc/sa/profiles/DLink/DES2108/get_mac_address_table.pyo -noc/sa/profiles/DLink/DES2108/get_version.py -noc/sa/profiles/DLink/DES2108/get_version.pyc -noc/sa/profiles/DLink/DES2108/get_version.pyo -noc/sa/profiles/DLink/DES2108/get_vlans.py -noc/sa/profiles/DLink/DES2108/get_vlans.pyc -noc/sa/profiles/DLink/DES2108/get_vlans.pyo -noc/sa/profiles/DLink/DES2108/remove_vlan.py -noc/sa/profiles/DLink/DES2108/remove_vlan.pyc -noc/sa/profiles/DLink/DES2108/remove_vlan.pyo -noc/sa/profiles/DLink/DES2108/tests/DLink_DES_2108_5_02_T05_get_mac_address_table_0001.py -noc/sa/profiles/DLink/DES2108/tests/DLink_DES_2108_5_02_T05_get_mac_address_table_0001.pyc -noc/sa/profiles/DLink/DES2108/tests/DLink_DES_2108_5_02_T05_get_mac_address_table_0001.pyo -noc/sa/profiles/DLink/DES2108/tests/DLink_DES_2108_5_02_T05_get_version_0001.py -noc/sa/profiles/DLink/DES2108/tests/DLink_DES_2108_5_02_T05_get_version_0001.pyc -noc/sa/profiles/DLink/DES2108/tests/DLink_DES_2108_5_02_T05_get_version_0001.pyo -noc/sa/profiles/DLink/DES2108/tests/DLink_DES_2108_5_02_T05_get_vlans_0001.py -noc/sa/profiles/DLink/DES2108/tests/DLink_DES_2108_5_02_T05_get_vlans_0001.pyc -noc/sa/profiles/DLink/DES2108/tests/DLink_DES_2108_5_02_T05_get_vlans_0001.pyo -noc/sa/profiles/DLink/DES2108/tests/__init__.py -noc/sa/profiles/DLink/DES2108/tests/__init__.pyc -noc/sa/profiles/DLink/DES2108/tests/__init__.pyo -noc/sa/profiles/DLink/DxS/__init__.py -noc/sa/profiles/DLink/DxS/__init__.pyc -noc/sa/profiles/DLink/DxS/__init__.pyo -noc/sa/profiles/DLink/DxS/add_vlan.py -noc/sa/profiles/DLink/DxS/add_vlan.pyc -noc/sa/profiles/DLink/DxS/add_vlan.pyo -noc/sa/profiles/DLink/DxS/get_arp.py -noc/sa/profiles/DLink/DxS/get_arp.pyc -noc/sa/profiles/DLink/DxS/get_arp.pyo -noc/sa/profiles/DLink/DxS/get_chassis_id.py -noc/sa/profiles/DLink/DxS/get_chassis_id.pyc -noc/sa/profiles/DLink/DxS/get_chassis_id.pyo -noc/sa/profiles/DLink/DxS/get_config.py -noc/sa/profiles/DLink/DxS/get_config.pyc -noc/sa/profiles/DLink/DxS/get_config.pyo -noc/sa/profiles/DLink/DxS/get_dhcp_binding.py -noc/sa/profiles/DLink/DxS/get_dhcp_binding.pyc -noc/sa/profiles/DLink/DxS/get_dhcp_binding.pyo -noc/sa/profiles/DLink/DxS/get_interface_status.py -noc/sa/profiles/DLink/DxS/get_interface_status.pyc -noc/sa/profiles/DLink/DxS/get_interface_status.pyo -noc/sa/profiles/DLink/DxS/get_lldp_neighbors.py -noc/sa/profiles/DLink/DxS/get_lldp_neighbors.pyc -noc/sa/profiles/DLink/DxS/get_lldp_neighbors.pyo -noc/sa/profiles/DLink/DxS/get_local_users.py -noc/sa/profiles/DLink/DxS/get_local_users.pyc -noc/sa/profiles/DLink/DxS/get_local_users.pyo -noc/sa/profiles/DLink/DxS/get_mac_address_table.py -noc/sa/profiles/DLink/DxS/get_mac_address_table.pyc -noc/sa/profiles/DLink/DxS/get_mac_address_table.pyo -noc/sa/profiles/DLink/DxS/get_portchannel.py -noc/sa/profiles/DLink/DxS/get_portchannel.pyc -noc/sa/profiles/DLink/DxS/get_portchannel.pyo -noc/sa/profiles/DLink/DxS/get_version.py -noc/sa/profiles/DLink/DxS/get_version.pyc -noc/sa/profiles/DLink/DxS/get_version.pyo -noc/sa/profiles/DLink/DxS/get_vlans.py -noc/sa/profiles/DLink/DxS/get_vlans.pyc -noc/sa/profiles/DLink/DxS/get_vlans.pyo -noc/sa/profiles/DLink/DxS/highlight.py -noc/sa/profiles/DLink/DxS/highlight.pyc -noc/sa/profiles/DLink/DxS/highlight.pyo -noc/sa/profiles/DLink/DxS/ping.py -noc/sa/profiles/DLink/DxS/ping.pyc -noc/sa/profiles/DLink/DxS/ping.pyo -noc/sa/profiles/DLink/DxS/remove_vlan.py -noc/sa/profiles/DLink/DxS/remove_vlan.pyc -noc/sa/profiles/DLink/DxS/remove_vlan.pyo -noc/sa/profiles/DLink/DxS/supported.csv -noc/sa/profiles/DLink/DxS/tests/DLink_DES_3010G_4_30_B23_get_interface_status_0001.py -noc/sa/profiles/DLink/DxS/tests/DLink_DES_3010G_4_30_B23_get_interface_status_0001.pyc -noc/sa/profiles/DLink/DxS/tests/DLink_DES_3010G_4_30_B23_get_interface_status_0001.pyo -noc/sa/profiles/DLink/DxS/tests/DLink_DES_3010G_4_30_B23_get_lldp_neighbors_0001.py -noc/sa/profiles/DLink/DxS/tests/DLink_DES_3010G_4_30_B23_get_lldp_neighbors_0001.pyc -noc/sa/profiles/DLink/DxS/tests/DLink_DES_3010G_4_30_B23_get_lldp_neighbors_0001.pyo -noc/sa/profiles/DLink/DxS/tests/DLink_DES_3026_4_30_B16_get_mac_address_table_0001.py -noc/sa/profiles/DLink/DxS/tests/DLink_DES_3026_4_30_B16_get_mac_address_table_0001.pyc -noc/sa/profiles/DLink/DxS/tests/DLink_DES_3026_4_30_B16_get_mac_address_table_0001.pyo -noc/sa/profiles/DLink/DxS/tests/DLink_DES_3028_2_42_B01_get_chassis_id_0001.py -noc/sa/profiles/DLink/DxS/tests/DLink_DES_3028_2_42_B01_get_chassis_id_0001.pyc -noc/sa/profiles/DLink/DxS/tests/DLink_DES_3028_2_42_B01_get_chassis_id_0001.pyo -noc/sa/profiles/DLink/DxS/tests/DLink_DES_3028_2_42_B01_get_mac_address_table_0001.py -noc/sa/profiles/DLink/DxS/tests/DLink_DES_3028_2_42_B01_get_mac_address_table_0001.pyc -noc/sa/profiles/DLink/DxS/tests/DLink_DES_3028_2_42_B01_get_mac_address_table_0001.pyo -noc/sa/profiles/DLink/DxS/tests/DLink_DES_3200_10_1_33_B007_get_version_0001.py -noc/sa/profiles/DLink/DxS/tests/DLink_DES_3200_10_1_33_B007_get_version_0001.pyc -noc/sa/profiles/DLink/DxS/tests/DLink_DES_3200_10_1_33_B007_get_version_0001.pyo -noc/sa/profiles/DLink/DxS/tests/DLink_DES_3226S_4_03_B04_get_version_0001.py -noc/sa/profiles/DLink/DxS/tests/DLink_DES_3226S_4_03_B04_get_version_0001.pyc -noc/sa/profiles/DLink/DxS/tests/DLink_DES_3226S_4_03_B04_get_version_0001.pyo -noc/sa/profiles/DLink/DxS/tests/DLink_DES_3326SR_4_03_B13_get_version_0001.py -noc/sa/profiles/DLink/DxS/tests/DLink_DES_3326SR_4_03_B13_get_version_0001.pyc -noc/sa/profiles/DLink/DxS/tests/DLink_DES_3326SR_4_03_B13_get_version_0001.pyo -noc/sa/profiles/DLink/DxS/tests/DLink_DES_3526_6_00_B23_get_version_0001.py -noc/sa/profiles/DLink/DxS/tests/DLink_DES_3526_6_00_B23_get_version_0001.pyc -noc/sa/profiles/DLink/DxS/tests/DLink_DES_3526_6_00_B23_get_version_0001.pyo -noc/sa/profiles/DLink/DxS/tests/DLink_DES_3528_2_11_B020_get_version_0001.py -noc/sa/profiles/DLink/DxS/tests/DLink_DES_3528_2_11_B020_get_version_0001.pyc -noc/sa/profiles/DLink/DxS/tests/DLink_DES_3528_2_11_B020_get_version_0001.pyo -noc/sa/profiles/DLink/DxS/tests/DLink_DES_3828_4_50_B22_get_version_0001.py -noc/sa/profiles/DLink/DxS/tests/DLink_DES_3828_4_50_B22_get_version_0001.pyc -noc/sa/profiles/DLink/DxS/tests/DLink_DES_3828_4_50_B22_get_version_0001.pyo -noc/sa/profiles/DLink/DxS/tests/DLink_DGS_3100_24TG_3_00_43_get_mac_address_table_0001.py -noc/sa/profiles/DLink/DxS/tests/DLink_DGS_3100_24TG_3_00_43_get_mac_address_table_0001.pyc -noc/sa/profiles/DLink/DxS/tests/DLink_DGS_3100_24TG_3_00_43_get_mac_address_table_0001.pyo -noc/sa/profiles/DLink/DxS/tests/DLink_DGS_3100_24TG_3_00_43_get_version_0001.py -noc/sa/profiles/DLink/DxS/tests/DLink_DGS_3100_24TG_3_00_43_get_version_0001.pyc -noc/sa/profiles/DLink/DxS/tests/DLink_DGS_3100_24TG_3_00_43_get_version_0001.pyo -noc/sa/profiles/DLink/DxS/tests/DLink_DGS_3200_10_1_62_B017_get_version_0001.py -noc/sa/profiles/DLink/DxS/tests/DLink_DGS_3200_10_1_62_B017_get_version_0001.pyc -noc/sa/profiles/DLink/DxS/tests/DLink_DGS_3200_10_1_62_B017_get_version_0001.pyo -noc/sa/profiles/DLink/DxS/tests/DLink_DGS_3312SR_3_60_S22_get_version_0001.py -noc/sa/profiles/DLink/DxS/tests/DLink_DGS_3312SR_3_60_S22_get_version_0001.pyc -noc/sa/profiles/DLink/DxS/tests/DLink_DGS_3312SR_3_60_S22_get_version_0001.pyo -noc/sa/profiles/DLink/DxS/tests/DLink_DGS_3426G_2_70_B54_get_version_0001.py -noc/sa/profiles/DLink/DxS/tests/DLink_DGS_3426G_2_70_B54_get_version_0001.pyc -noc/sa/profiles/DLink/DxS/tests/DLink_DGS_3426G_2_70_B54_get_version_0001.pyo -noc/sa/profiles/DLink/DxS/tests/DLink_DGS_3627G_2_55_B10_get_chassis_id_0001.py -noc/sa/profiles/DLink/DxS/tests/DLink_DGS_3627G_2_55_B10_get_chassis_id_0001.pyc -noc/sa/profiles/DLink/DxS/tests/DLink_DGS_3627G_2_55_B10_get_chassis_id_0001.pyo -noc/sa/profiles/DLink/DxS/tests/DLink_DGS_3627G_2_55_B10_get_mac_address_table_0001.py -noc/sa/profiles/DLink/DxS/tests/DLink_DGS_3627G_2_55_B10_get_mac_address_table_0001.pyc -noc/sa/profiles/DLink/DxS/tests/DLink_DGS_3627G_2_55_B10_get_mac_address_table_0001.pyo -noc/sa/profiles/DLink/DxS/tests/DLink_DGS_3627G_2_55_B10_get_portchannel_0001.py -noc/sa/profiles/DLink/DxS/tests/DLink_DGS_3627G_2_55_B10_get_portchannel_0001.pyc -noc/sa/profiles/DLink/DxS/tests/DLink_DGS_3627G_2_55_B10_get_portchannel_0001.pyo -noc/sa/profiles/DLink/DxS/tests/DLink_DGS_3627G_2_82_B13_get_version_0001.py -noc/sa/profiles/DLink/DxS/tests/DLink_DGS_3627G_2_82_B13_get_version_0001.pyc -noc/sa/profiles/DLink/DxS/tests/DLink_DGS_3627G_2_82_B13_get_version_0001.pyo -noc/sa/profiles/DLink/DxS/tests/DLink_DGS_3627G_2_82_B20_get_dhcp_binding_0001.py -noc/sa/profiles/DLink/DxS/tests/DLink_DGS_3627G_2_82_B20_get_dhcp_binding_0001.pyc -noc/sa/profiles/DLink/DxS/tests/DLink_DGS_3627G_2_82_B20_get_dhcp_binding_0001.pyo -noc/sa/profiles/DLink/DxS/tests/DLink_DGS_3627G_2_82_B20_ping_0001.py -noc/sa/profiles/DLink/DxS/tests/DLink_DGS_3627G_2_82_B20_ping_0001.pyc -noc/sa/profiles/DLink/DxS/tests/DLink_DGS_3627G_2_82_B20_ping_0001.pyo -noc/sa/profiles/DLink/DxS/tests/__init__.py -noc/sa/profiles/DLink/DxS/tests/__init__.pyc -noc/sa/profiles/DLink/DxS/tests/__init__.pyo -noc/sa/profiles/DLink/DxS_Cisco_CLI/__init__.py -noc/sa/profiles/DLink/DxS_Cisco_CLI/__init__.pyc -noc/sa/profiles/DLink/DxS_Cisco_CLI/__init__.pyo -noc/sa/profiles/DLink/DxS_Cisco_CLI/add_vlan.py -noc/sa/profiles/DLink/DxS_Cisco_CLI/add_vlan.pyc -noc/sa/profiles/DLink/DxS_Cisco_CLI/add_vlan.pyo -noc/sa/profiles/DLink/DxS_Cisco_CLI/get_arp.py -noc/sa/profiles/DLink/DxS_Cisco_CLI/get_arp.pyc -noc/sa/profiles/DLink/DxS_Cisco_CLI/get_arp.pyo -noc/sa/profiles/DLink/DxS_Cisco_CLI/get_config.py -noc/sa/profiles/DLink/DxS_Cisco_CLI/get_config.pyc -noc/sa/profiles/DLink/DxS_Cisco_CLI/get_config.pyo -noc/sa/profiles/DLink/DxS_Cisco_CLI/get_interface_status.py -noc/sa/profiles/DLink/DxS_Cisco_CLI/get_interface_status.pyc -noc/sa/profiles/DLink/DxS_Cisco_CLI/get_interface_status.pyo -noc/sa/profiles/DLink/DxS_Cisco_CLI/get_local_users.py -noc/sa/profiles/DLink/DxS_Cisco_CLI/get_local_users.pyc -noc/sa/profiles/DLink/DxS_Cisco_CLI/get_local_users.pyo -noc/sa/profiles/DLink/DxS_Cisco_CLI/get_mac_address_table.py -noc/sa/profiles/DLink/DxS_Cisco_CLI/get_mac_address_table.pyc -noc/sa/profiles/DLink/DxS_Cisco_CLI/get_mac_address_table.pyo -noc/sa/profiles/DLink/DxS_Cisco_CLI/get_portchannel.py -noc/sa/profiles/DLink/DxS_Cisco_CLI/get_portchannel.pyc -noc/sa/profiles/DLink/DxS_Cisco_CLI/get_portchannel.pyo -noc/sa/profiles/DLink/DxS_Cisco_CLI/get_switchport.py -noc/sa/profiles/DLink/DxS_Cisco_CLI/get_switchport.pyc -noc/sa/profiles/DLink/DxS_Cisco_CLI/get_switchport.pyo -noc/sa/profiles/DLink/DxS_Cisco_CLI/get_version.py -noc/sa/profiles/DLink/DxS_Cisco_CLI/get_version.pyc -noc/sa/profiles/DLink/DxS_Cisco_CLI/get_version.pyo -noc/sa/profiles/DLink/DxS_Cisco_CLI/get_vlans.py -noc/sa/profiles/DLink/DxS_Cisco_CLI/get_vlans.pyc -noc/sa/profiles/DLink/DxS_Cisco_CLI/get_vlans.pyo -noc/sa/profiles/DLink/DxS_Cisco_CLI/highlight.py -noc/sa/profiles/DLink/DxS_Cisco_CLI/highlight.pyc -noc/sa/profiles/DLink/DxS_Cisco_CLI/highlight.pyo -noc/sa/profiles/DLink/DxS_Cisco_CLI/ping.py -noc/sa/profiles/DLink/DxS_Cisco_CLI/ping.pyc -noc/sa/profiles/DLink/DxS_Cisco_CLI/ping.pyo -noc/sa/profiles/DLink/DxS_Cisco_CLI/remove_vlan.py -noc/sa/profiles/DLink/DxS_Cisco_CLI/remove_vlan.pyc -noc/sa/profiles/DLink/DxS_Cisco_CLI/remove_vlan.pyo -noc/sa/profiles/DLink/DxS_Cisco_CLI/supported.csv -noc/sa/profiles/DLink/DxS_Cisco_CLI/tests/DLink_DGS_3610_26G_10_3_5T16_get_arp_0001.py -noc/sa/profiles/DLink/DxS_Cisco_CLI/tests/DLink_DGS_3610_26G_10_3_5T16_get_arp_0001.pyc -noc/sa/profiles/DLink/DxS_Cisco_CLI/tests/DLink_DGS_3610_26G_10_3_5T16_get_arp_0001.pyo -noc/sa/profiles/DLink/DxS_Cisco_CLI/tests/DLink_DGS_3610_26G_10_3_5T16_get_interface_status_0001.py -noc/sa/profiles/DLink/DxS_Cisco_CLI/tests/DLink_DGS_3610_26G_10_3_5T16_get_interface_status_0001.pyc -noc/sa/profiles/DLink/DxS_Cisco_CLI/tests/DLink_DGS_3610_26G_10_3_5T16_get_interface_status_0001.pyo -noc/sa/profiles/DLink/DxS_Cisco_CLI/tests/DLink_DGS_3610_26G_10_3_5T16_get_local_users_0001.py -noc/sa/profiles/DLink/DxS_Cisco_CLI/tests/DLink_DGS_3610_26G_10_3_5T16_get_local_users_0001.pyc -noc/sa/profiles/DLink/DxS_Cisco_CLI/tests/DLink_DGS_3610_26G_10_3_5T16_get_local_users_0001.pyo -noc/sa/profiles/DLink/DxS_Cisco_CLI/tests/DLink_DGS_3610_26G_10_3_5T16_get_mac_address_table_0001.py -noc/sa/profiles/DLink/DxS_Cisco_CLI/tests/DLink_DGS_3610_26G_10_3_5T16_get_mac_address_table_0001.pyc -noc/sa/profiles/DLink/DxS_Cisco_CLI/tests/DLink_DGS_3610_26G_10_3_5T16_get_mac_address_table_0001.pyo -noc/sa/profiles/DLink/DxS_Cisco_CLI/tests/DLink_DGS_3610_26G_10_3_5T16_get_portchannel_0001.py -noc/sa/profiles/DLink/DxS_Cisco_CLI/tests/DLink_DGS_3610_26G_10_3_5T16_get_portchannel_0001.pyc -noc/sa/profiles/DLink/DxS_Cisco_CLI/tests/DLink_DGS_3610_26G_10_3_5T16_get_portchannel_0001.pyo -noc/sa/profiles/DLink/DxS_Cisco_CLI/tests/DLink_DGS_3610_26G_10_3_5T16_get_switchport_0001.py -noc/sa/profiles/DLink/DxS_Cisco_CLI/tests/DLink_DGS_3610_26G_10_3_5T16_get_switchport_0001.pyc -noc/sa/profiles/DLink/DxS_Cisco_CLI/tests/DLink_DGS_3610_26G_10_3_5T16_get_switchport_0001.pyo -noc/sa/profiles/DLink/DxS_Cisco_CLI/tests/DLink_DGS_3610_26G_10_3_5T16_get_version_0001.py -noc/sa/profiles/DLink/DxS_Cisco_CLI/tests/DLink_DGS_3610_26G_10_3_5T16_get_version_0001.pyc -noc/sa/profiles/DLink/DxS_Cisco_CLI/tests/DLink_DGS_3610_26G_10_3_5T16_get_version_0001.pyo -noc/sa/profiles/DLink/DxS_Cisco_CLI/tests/DLink_DGS_3610_26G_10_3_5T16_get_vlans_0001.py -noc/sa/profiles/DLink/DxS_Cisco_CLI/tests/DLink_DGS_3610_26G_10_3_5T16_get_vlans_0001.pyc -noc/sa/profiles/DLink/DxS_Cisco_CLI/tests/DLink_DGS_3610_26G_10_3_5T16_get_vlans_0001.pyo -noc/sa/profiles/DLink/DxS_Cisco_CLI/tests/DLink_DGS_3610_26G_10_3_5T16_ping_0001.py -noc/sa/profiles/DLink/DxS_Cisco_CLI/tests/DLink_DGS_3610_26G_10_3_5T16_ping_0001.pyc -noc/sa/profiles/DLink/DxS_Cisco_CLI/tests/DLink_DGS_3610_26G_10_3_5T16_ping_0001.pyo -noc/sa/profiles/DLink/DxS_Cisco_CLI/tests/__init__.py -noc/sa/profiles/DLink/DxS_Cisco_CLI/tests/__init__.pyc -noc/sa/profiles/DLink/DxS_Cisco_CLI/tests/__init__.pyo -noc/sa/profiles/DLink/__init__.py -noc/sa/profiles/DLink/__init__.pyc -noc/sa/profiles/DLink/__init__.pyo -noc/sa/profiles/EdgeCore/ES/__init__.py -noc/sa/profiles/EdgeCore/ES/__init__.pyc -noc/sa/profiles/EdgeCore/ES/__init__.pyo -noc/sa/profiles/EdgeCore/ES/get_arp.py -noc/sa/profiles/EdgeCore/ES/get_arp.pyc -noc/sa/profiles/EdgeCore/ES/get_arp.pyo -noc/sa/profiles/EdgeCore/ES/get_chassis_id.py -noc/sa/profiles/EdgeCore/ES/get_chassis_id.pyc -noc/sa/profiles/EdgeCore/ES/get_chassis_id.pyo -noc/sa/profiles/EdgeCore/ES/get_config.py -noc/sa/profiles/EdgeCore/ES/get_config.pyc -noc/sa/profiles/EdgeCore/ES/get_config.pyo -noc/sa/profiles/EdgeCore/ES/get_lldp_neighbors.py -noc/sa/profiles/EdgeCore/ES/get_lldp_neighbors.pyc -noc/sa/profiles/EdgeCore/ES/get_lldp_neighbors.pyo -noc/sa/profiles/EdgeCore/ES/get_mac_address_table.py -noc/sa/profiles/EdgeCore/ES/get_mac_address_table.pyc -noc/sa/profiles/EdgeCore/ES/get_mac_address_table.pyo -noc/sa/profiles/EdgeCore/ES/get_portchannel.py -noc/sa/profiles/EdgeCore/ES/get_portchannel.pyc -noc/sa/profiles/EdgeCore/ES/get_portchannel.pyo -noc/sa/profiles/EdgeCore/ES/get_version.py -noc/sa/profiles/EdgeCore/ES/get_version.pyc -noc/sa/profiles/EdgeCore/ES/get_version.pyo -noc/sa/profiles/EdgeCore/ES/get_vlans.py -noc/sa/profiles/EdgeCore/ES/get_vlans.pyc -noc/sa/profiles/EdgeCore/ES/get_vlans.pyo -noc/sa/profiles/EdgeCore/ES/highlight.py -noc/sa/profiles/EdgeCore/ES/highlight.pyc -noc/sa/profiles/EdgeCore/ES/highlight.pyo -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3510MA_1_2_4_2_get_chassis_id_0001.py -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3510MA_1_2_4_2_get_chassis_id_0001.pyc -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3510MA_1_2_4_2_get_chassis_id_0001.pyo -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3510MA_1_2_4_2_get_mac_address_table_0001.py -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3510MA_1_2_4_2_get_mac_address_table_0001.pyc -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3510MA_1_2_4_2_get_mac_address_table_0001.pyo -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3510MA_1_2_4_2_get_version_0001.py -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3510MA_1_2_4_2_get_version_0001.pyc -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3510MA_1_2_4_2_get_version_0001.pyo -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3510MA_1_2_4_2_get_vlans_0001.py -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3510MA_1_2_4_2_get_vlans_0001.pyc -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3510MA_1_2_4_2_get_vlans_0001.pyo -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3510_1_1_0_26_get_version_0001.py -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3510_1_1_0_26_get_version_0001.pyc -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3510_1_1_0_26_get_version_0001.pyo -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3510_1_1_0_26_get_vlans_0001.py -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3510_1_1_0_26_get_vlans_0001.pyc -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3510_1_1_0_26_get_vlans_0001.pyo -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3526S_1_0_3_8_get_chassis_id_0001.py -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3526S_1_0_3_8_get_chassis_id_0001.pyc -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3526S_1_0_3_8_get_chassis_id_0001.pyo -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3526S_1_0_3_8_get_mac_address_table_0001.py -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3526S_1_0_3_8_get_mac_address_table_0001.pyc -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3526S_1_0_3_8_get_mac_address_table_0001.pyo -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3526S_1_0_3_8_get_version_0001.py -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3526S_1_0_3_8_get_version_0001.pyc -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3526S_1_0_3_8_get_version_0001.pyo -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3526S_1_0_3_8_get_vlans_0001.py -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3526S_1_0_3_8_get_vlans_0001.pyc -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3526S_1_0_3_8_get_vlans_0001.pyo -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3526XA_1_SL_38_2_3_4_16_get_version_0001.py -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3526XA_1_SL_38_2_3_4_16_get_version_0001.pyc -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3526XA_1_SL_38_2_3_4_16_get_version_0001.pyo -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3526XA_38_2_3_3_16_get_version_0001.py -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3526XA_38_2_3_3_16_get_version_0001.pyc -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3526XA_38_2_3_3_16_get_version_0001.pyo -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3526XA_V2_1_1_0_26_get_vlans_0001.py -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3526XA_V2_1_1_0_26_get_vlans_0001.pyc -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3526XA_V2_1_1_0_26_get_vlans_0001.pyo -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3526XA_V2_1_1_0_29_get_chassis_id_0001.py -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3526XA_V2_1_1_0_29_get_chassis_id_0001.pyc -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3526XA_V2_1_1_0_29_get_chassis_id_0001.pyo -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3526XA_V2_1_1_0_29_get_mac_address_table_0001.py -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3526XA_V2_1_1_0_29_get_mac_address_table_0001.pyc -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3526XA_V2_1_1_0_29_get_mac_address_table_0001.pyo -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3526XA_V2_1_1_0_29_get_version_0001.py -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3526XA_V2_1_1_0_29_get_version_0001.pyc -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES3526XA_V2_1_1_0_29_get_version_0001.pyo -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4612_1_0_6_5_get_arp_0001.py -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4612_1_0_6_5_get_arp_0001.pyc -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4612_1_0_6_5_get_arp_0001.pyo -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4612_1_0_6_5_get_vlans_0001.py -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4612_1_0_6_5_get_vlans_0001.pyc -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4612_1_0_6_5_get_vlans_0001.pyo -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4612_1_0_6_9_get_chassis_id_0001.py -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4612_1_0_6_9_get_chassis_id_0001.pyc -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4612_1_0_6_9_get_chassis_id_0001.pyo -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4612_1_0_6_9_get_mac_address_table_0001.py -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4612_1_0_6_9_get_mac_address_table_0001.pyc -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4612_1_0_6_9_get_mac_address_table_0001.pyo -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4612_1_0_6_9_get_mac_address_table_0002.py -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4612_1_0_6_9_get_mac_address_table_0002.pyc -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4612_1_0_6_9_get_mac_address_table_0002.pyo -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4612_1_0_6_9_get_portchannel_0001.py -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4612_1_0_6_9_get_portchannel_0001.pyc -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4612_1_0_6_9_get_portchannel_0001.pyo -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4612_1_0_6_9_get_version_0001.py -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4612_1_0_6_9_get_version_0001.pyc -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4612_1_0_6_9_get_version_0001.pyo -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4626_SFP_5_4_146_0_get_mac_address_table_0001.py -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4626_SFP_5_4_146_0_get_mac_address_table_0001.pyc -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4626_SFP_5_4_146_0_get_mac_address_table_0001.pyo -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4626_SFP_5_4_146_0_get_version_0001.py -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4626_SFP_5_4_146_0_get_version_0001.pyc -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4626_SFP_5_4_146_0_get_version_0001.pyo -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4626_SFP_5_4_146_0_get_vlans_0001.py -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4626_SFP_5_4_146_0_get_vlans_0001.pyc -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4626_SFP_5_4_146_0_get_vlans_0001.pyo -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4626_SFP_5_4_156_0_get_chassis_id_0001.py -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4626_SFP_5_4_156_0_get_chassis_id_0001.pyc -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4626_SFP_5_4_156_0_get_chassis_id_0001.pyo -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4626_SFP_5_4_156_0_get_mac_address_table_0001.py -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4626_SFP_5_4_156_0_get_mac_address_table_0001.pyc -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4626_SFP_5_4_156_0_get_mac_address_table_0001.pyo -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4626_SFP_5_4_156_0_get_mac_address_table_0002.py -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4626_SFP_5_4_156_0_get_mac_address_table_0002.pyc -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4626_SFP_5_4_156_0_get_mac_address_table_0002.pyo -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4626_SFP_5_4_156_0_get_portchannel_0001.py -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4626_SFP_5_4_156_0_get_portchannel_0001.pyc -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4626_SFP_5_4_156_0_get_portchannel_0001.pyo -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4626_SFP_5_4_156_0_get_version_0001.py -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4626_SFP_5_4_156_0_get_version_0001.pyc -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4626_SFP_5_4_156_0_get_version_0001.pyo -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4626_SFP_6_0_220_33_get_arp_0001.py -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4626_SFP_6_0_220_33_get_arp_0001.pyc -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4626_SFP_6_0_220_33_get_arp_0001.pyo -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4626_SFP_6_0_220_33_get_chassis_id_0001.py -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4626_SFP_6_0_220_33_get_chassis_id_0001.pyc -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4626_SFP_6_0_220_33_get_chassis_id_0001.pyo -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4626_SFP_6_0_220_33_get_mac_address_table_0001.py -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4626_SFP_6_0_220_33_get_mac_address_table_0001.pyc -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4626_SFP_6_0_220_33_get_mac_address_table_0001.pyo -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4626_SFP_6_0_220_33_get_version_0001.py -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4626_SFP_6_0_220_33_get_version_0001.pyc -noc/sa/profiles/EdgeCore/ES/tests/EdgeCore_ES4626_SFP_6_0_220_33_get_version_0001.pyo -noc/sa/profiles/EdgeCore/ES/tests/__init__.py -noc/sa/profiles/EdgeCore/ES/tests/__init__.pyc -noc/sa/profiles/EdgeCore/ES/tests/__init__.pyo -noc/sa/profiles/EdgeCore/__init__.py -noc/sa/profiles/EdgeCore/__init__.pyc -noc/sa/profiles/EdgeCore/__init__.pyo -noc/sa/profiles/Extreme/XOS/__init__.py -noc/sa/profiles/Extreme/XOS/__init__.pyc -noc/sa/profiles/Extreme/XOS/__init__.pyo -noc/sa/profiles/Extreme/XOS/get_config.py -noc/sa/profiles/Extreme/XOS/get_config.pyc -noc/sa/profiles/Extreme/XOS/get_config.pyo -noc/sa/profiles/Extreme/XOS/get_mac_address_table.py -noc/sa/profiles/Extreme/XOS/get_mac_address_table.pyc -noc/sa/profiles/Extreme/XOS/get_mac_address_table.pyo -noc/sa/profiles/Extreme/XOS/get_version.py -noc/sa/profiles/Extreme/XOS/get_version.pyc -noc/sa/profiles/Extreme/XOS/get_version.pyo -noc/sa/profiles/Extreme/XOS/get_vlans.py -noc/sa/profiles/Extreme/XOS/get_vlans.pyc -noc/sa/profiles/Extreme/XOS/get_vlans.pyo -noc/sa/profiles/Extreme/XOS/highlight.py -noc/sa/profiles/Extreme/XOS/highlight.pyc -noc/sa/profiles/Extreme/XOS/highlight.pyo -noc/sa/profiles/Extreme/XOS/supported.csv -noc/sa/profiles/Extreme/__init__.py -noc/sa/profiles/Extreme/__init__.pyc -noc/sa/profiles/Extreme/__init__.pyo -noc/sa/profiles/Force10/FTOS/__init__.py -noc/sa/profiles/Force10/FTOS/__init__.pyc -noc/sa/profiles/Force10/FTOS/__init__.pyo -noc/sa/profiles/Force10/FTOS/add_vlan.py -noc/sa/profiles/Force10/FTOS/add_vlan.pyc -noc/sa/profiles/Force10/FTOS/add_vlan.pyo -noc/sa/profiles/Force10/FTOS/get_arp.py -noc/sa/profiles/Force10/FTOS/get_arp.pyc -noc/sa/profiles/Force10/FTOS/get_arp.pyo -noc/sa/profiles/Force10/FTOS/get_chassis_id.py -noc/sa/profiles/Force10/FTOS/get_chassis_id.pyc -noc/sa/profiles/Force10/FTOS/get_chassis_id.pyo -noc/sa/profiles/Force10/FTOS/get_config.py -noc/sa/profiles/Force10/FTOS/get_config.pyc -noc/sa/profiles/Force10/FTOS/get_config.pyo -noc/sa/profiles/Force10/FTOS/get_interface_status.py -noc/sa/profiles/Force10/FTOS/get_interface_status.pyc -noc/sa/profiles/Force10/FTOS/get_interface_status.pyo -noc/sa/profiles/Force10/FTOS/get_interfaces.py -noc/sa/profiles/Force10/FTOS/get_interfaces.pyc -noc/sa/profiles/Force10/FTOS/get_interfaces.pyo -noc/sa/profiles/Force10/FTOS/get_lldp_neighbors.py -noc/sa/profiles/Force10/FTOS/get_lldp_neighbors.pyc -noc/sa/profiles/Force10/FTOS/get_lldp_neighbors.pyo -noc/sa/profiles/Force10/FTOS/get_local_users.py -noc/sa/profiles/Force10/FTOS/get_local_users.pyc -noc/sa/profiles/Force10/FTOS/get_local_users.pyo -noc/sa/profiles/Force10/FTOS/get_mac_address_table.py -noc/sa/profiles/Force10/FTOS/get_mac_address_table.pyc -noc/sa/profiles/Force10/FTOS/get_mac_address_table.pyo -noc/sa/profiles/Force10/FTOS/get_portchannel.py -noc/sa/profiles/Force10/FTOS/get_portchannel.pyc -noc/sa/profiles/Force10/FTOS/get_portchannel.pyo -noc/sa/profiles/Force10/FTOS/get_spanning_tree.py -noc/sa/profiles/Force10/FTOS/get_spanning_tree.pyc -noc/sa/profiles/Force10/FTOS/get_spanning_tree.pyo -noc/sa/profiles/Force10/FTOS/get_switchport.py -noc/sa/profiles/Force10/FTOS/get_switchport.pyc -noc/sa/profiles/Force10/FTOS/get_switchport.pyo -noc/sa/profiles/Force10/FTOS/get_version.py -noc/sa/profiles/Force10/FTOS/get_version.pyc -noc/sa/profiles/Force10/FTOS/get_version.pyo -noc/sa/profiles/Force10/FTOS/get_vlans.py -noc/sa/profiles/Force10/FTOS/get_vlans.pyc -noc/sa/profiles/Force10/FTOS/get_vlans.pyo -noc/sa/profiles/Force10/FTOS/highlight.py -noc/sa/profiles/Force10/FTOS/highlight.pyc -noc/sa/profiles/Force10/FTOS/highlight.pyo -noc/sa/profiles/Force10/FTOS/remove_vlan.py -noc/sa/profiles/Force10/FTOS/remove_vlan.pyc -noc/sa/profiles/Force10/FTOS/remove_vlan.pyo -noc/sa/profiles/Force10/FTOS/supported.csv -noc/sa/profiles/Force10/FTOS/tests/Force10_C300_8_3_1_1_get_arp_0001.py -noc/sa/profiles/Force10/FTOS/tests/Force10_C300_8_3_1_1_get_arp_0001.pyc -noc/sa/profiles/Force10/FTOS/tests/Force10_C300_8_3_1_1_get_arp_0001.pyo -noc/sa/profiles/Force10/FTOS/tests/Force10_C300_8_3_1_1_get_chassis_id_0001.py -noc/sa/profiles/Force10/FTOS/tests/Force10_C300_8_3_1_1_get_chassis_id_0001.pyc -noc/sa/profiles/Force10/FTOS/tests/Force10_C300_8_3_1_1_get_chassis_id_0001.pyo -noc/sa/profiles/Force10/FTOS/tests/Force10_C300_8_3_1_1_get_lldp_neighbors_0001.py -noc/sa/profiles/Force10/FTOS/tests/Force10_C300_8_3_1_1_get_lldp_neighbors_0001.pyc -noc/sa/profiles/Force10/FTOS/tests/Force10_C300_8_3_1_1_get_lldp_neighbors_0001.pyo -noc/sa/profiles/Force10/FTOS/tests/Force10_C300_8_3_1_1_get_lldp_neighbors_0002.py -noc/sa/profiles/Force10/FTOS/tests/Force10_C300_8_3_1_1_get_lldp_neighbors_0002.pyc -noc/sa/profiles/Force10/FTOS/tests/Force10_C300_8_3_1_1_get_lldp_neighbors_0002.pyo -noc/sa/profiles/Force10/FTOS/tests/Force10_C300_8_3_1_1_get_portchannel_0001.py -noc/sa/profiles/Force10/FTOS/tests/Force10_C300_8_3_1_1_get_portchannel_0001.pyc -noc/sa/profiles/Force10/FTOS/tests/Force10_C300_8_3_1_1_get_portchannel_0001.pyo -noc/sa/profiles/Force10/FTOS/tests/Force10_C300_8_3_1_1_get_version_0001.py -noc/sa/profiles/Force10/FTOS/tests/Force10_C300_8_3_1_1_get_version_0001.pyc -noc/sa/profiles/Force10/FTOS/tests/Force10_C300_8_3_1_1_get_version_0001.pyo -noc/sa/profiles/Force10/FTOS/tests/Force10_C300_8_3_1_1_get_version_0002.py -noc/sa/profiles/Force10/FTOS/tests/Force10_C300_8_3_1_1_get_version_0002.pyc -noc/sa/profiles/Force10/FTOS/tests/Force10_C300_8_3_1_1_get_version_0002.pyo -noc/sa/profiles/Force10/FTOS/tests/Force10_C300_8_3_2_0_get_version_0001.py -noc/sa/profiles/Force10/FTOS/tests/Force10_C300_8_3_2_0_get_version_0001.pyc -noc/sa/profiles/Force10/FTOS/tests/Force10_C300_8_3_2_0_get_version_0001.pyo -noc/sa/profiles/Force10/FTOS/tests/Force10_C300_8_3_2_0_get_version_0002.py -noc/sa/profiles/Force10/FTOS/tests/Force10_C300_8_3_2_0_get_version_0002.pyc -noc/sa/profiles/Force10/FTOS/tests/Force10_C300_8_3_2_0_get_version_0002.pyo -noc/sa/profiles/Force10/FTOS/tests/Force10_E600i_8_3_1_3d_get_lldp_neighbors_0001.py -noc/sa/profiles/Force10/FTOS/tests/Force10_E600i_8_3_1_3d_get_lldp_neighbors_0001.pyc -noc/sa/profiles/Force10/FTOS/tests/Force10_E600i_8_3_1_3d_get_lldp_neighbors_0001.pyo -noc/sa/profiles/Force10/FTOS/tests/Force10_E600i_8_3_1_3d_get_mac_address_table_0001.py -noc/sa/profiles/Force10/FTOS/tests/Force10_E600i_8_3_1_3d_get_mac_address_table_0001.pyc -noc/sa/profiles/Force10/FTOS/tests/Force10_E600i_8_3_1_3d_get_mac_address_table_0001.pyo -noc/sa/profiles/Force10/FTOS/tests/Force10_E600i_8_3_1_3d_get_version_0001.py -noc/sa/profiles/Force10/FTOS/tests/Force10_E600i_8_3_1_3d_get_version_0001.pyc -noc/sa/profiles/Force10/FTOS/tests/Force10_E600i_8_3_1_3d_get_version_0001.pyo -noc/sa/profiles/Force10/FTOS/tests/Force10_E600i_8_3_1_3d_get_version_0002.py -noc/sa/profiles/Force10/FTOS/tests/Force10_E600i_8_3_1_3d_get_version_0002.pyc -noc/sa/profiles/Force10/FTOS/tests/Force10_E600i_8_3_1_3d_get_version_0002.pyo -noc/sa/profiles/Force10/FTOS/tests/Force10_E600i_8_3_1_3e_get_chassis_id_0001.py -noc/sa/profiles/Force10/FTOS/tests/Force10_E600i_8_3_1_3e_get_chassis_id_0001.pyc -noc/sa/profiles/Force10/FTOS/tests/Force10_E600i_8_3_1_3e_get_chassis_id_0001.pyo -noc/sa/profiles/Force10/FTOS/tests/Force10_E600i_8_3_1_3e_get_local_users_0001.py -noc/sa/profiles/Force10/FTOS/tests/Force10_E600i_8_3_1_3e_get_local_users_0001.pyc -noc/sa/profiles/Force10/FTOS/tests/Force10_E600i_8_3_1_3e_get_local_users_0001.pyo -noc/sa/profiles/Force10/FTOS/tests/Force10_E600i_8_4_1_0_get_version_0001.py -noc/sa/profiles/Force10/FTOS/tests/Force10_E600i_8_4_1_0_get_version_0001.pyc -noc/sa/profiles/Force10/FTOS/tests/Force10_E600i_8_4_1_0_get_version_0001.pyo -noc/sa/profiles/Force10/FTOS/tests/Force10_S25N_7_7_1_1_get_arp_0001.py -noc/sa/profiles/Force10/FTOS/tests/Force10_S25N_7_7_1_1_get_arp_0001.pyc -noc/sa/profiles/Force10/FTOS/tests/Force10_S25N_7_7_1_1_get_arp_0001.pyo -noc/sa/profiles/Force10/FTOS/tests/Force10_S25N_7_7_1_1_get_spanning_tree_0001.py -noc/sa/profiles/Force10/FTOS/tests/Force10_S25N_7_7_1_1_get_spanning_tree_0001.pyc -noc/sa/profiles/Force10/FTOS/tests/Force10_S25N_7_7_1_1_get_spanning_tree_0001.pyo -noc/sa/profiles/Force10/FTOS/tests/Force10_S25N_7_7_1_1_get_version_0001.py -noc/sa/profiles/Force10/FTOS/tests/Force10_S25N_7_7_1_1_get_version_0001.pyc -noc/sa/profiles/Force10/FTOS/tests/Force10_S25N_7_7_1_1_get_version_0001.pyo -noc/sa/profiles/Force10/FTOS/tests/Force10_S25N_7_7_1_1_get_version_0002.py -noc/sa/profiles/Force10/FTOS/tests/Force10_S25N_7_7_1_1_get_version_0002.pyc -noc/sa/profiles/Force10/FTOS/tests/Force10_S25N_7_7_1_1_get_version_0002.pyo -noc/sa/profiles/Force10/FTOS/tests/Force10_S25N_8_2_1_0_get_version_0001.py -noc/sa/profiles/Force10/FTOS/tests/Force10_S25N_8_2_1_0_get_version_0001.pyc -noc/sa/profiles/Force10/FTOS/tests/Force10_S25N_8_2_1_0_get_version_0001.pyo -noc/sa/profiles/Force10/FTOS/tests/Force10_S25N_8_2_1_0_get_version_0002.py -noc/sa/profiles/Force10/FTOS/tests/Force10_S25N_8_2_1_0_get_version_0002.pyc -noc/sa/profiles/Force10/FTOS/tests/Force10_S25N_8_2_1_0_get_version_0002.pyo -noc/sa/profiles/Force10/FTOS/tests/Force10_S50N_8_2_1_0_get_lldp_neighbors_0001.py -noc/sa/profiles/Force10/FTOS/tests/Force10_S50N_8_2_1_0_get_lldp_neighbors_0001.pyc -noc/sa/profiles/Force10/FTOS/tests/Force10_S50N_8_2_1_0_get_lldp_neighbors_0001.pyo -noc/sa/profiles/Force10/FTOS/tests/Force10_S50N_8_2_1_0_get_lldp_neighbors_0002.py -noc/sa/profiles/Force10/FTOS/tests/Force10_S50N_8_2_1_0_get_lldp_neighbors_0002.pyc -noc/sa/profiles/Force10/FTOS/tests/Force10_S50N_8_2_1_0_get_lldp_neighbors_0002.pyo -noc/sa/profiles/Force10/FTOS/tests/Force10_S50N_8_2_1_0_get_version_0001.py -noc/sa/profiles/Force10/FTOS/tests/Force10_S50N_8_2_1_0_get_version_0001.pyc -noc/sa/profiles/Force10/FTOS/tests/Force10_S50N_8_2_1_0_get_version_0001.pyo -noc/sa/profiles/Force10/FTOS/tests/Force10_S50N_8_2_1_0_get_version_0002.py -noc/sa/profiles/Force10/FTOS/tests/Force10_S50N_8_2_1_0_get_version_0002.pyc -noc/sa/profiles/Force10/FTOS/tests/Force10_S50N_8_2_1_0_get_version_0002.pyo -noc/sa/profiles/Force10/FTOS/tests/Force10_S50N_8_3_2_0_get_arp_0001.py -noc/sa/profiles/Force10/FTOS/tests/Force10_S50N_8_3_2_0_get_arp_0001.pyc -noc/sa/profiles/Force10/FTOS/tests/Force10_S50N_8_3_2_0_get_arp_0001.pyo -noc/sa/profiles/Force10/FTOS/tests/Force10_S50N_8_3_2_0_get_chassis_id_0001.py -noc/sa/profiles/Force10/FTOS/tests/Force10_S50N_8_3_2_0_get_chassis_id_0001.pyc -noc/sa/profiles/Force10/FTOS/tests/Force10_S50N_8_3_2_0_get_chassis_id_0001.pyo -noc/sa/profiles/Force10/FTOS/tests/Force10_S50N_8_3_2_0_get_interfaces_0001.py -noc/sa/profiles/Force10/FTOS/tests/Force10_S50N_8_3_2_0_get_interfaces_0001.pyc -noc/sa/profiles/Force10/FTOS/tests/Force10_S50N_8_3_2_0_get_interfaces_0001.pyo -noc/sa/profiles/Force10/FTOS/tests/Force10_S50N_8_3_2_0_get_portchannel_0001.py -noc/sa/profiles/Force10/FTOS/tests/Force10_S50N_8_3_2_0_get_portchannel_0001.pyc -noc/sa/profiles/Force10/FTOS/tests/Force10_S50N_8_3_2_0_get_portchannel_0001.pyo -noc/sa/profiles/Force10/FTOS/tests/Force10_S50N_8_3_2_0_get_spanning_tree_0001.py -noc/sa/profiles/Force10/FTOS/tests/Force10_S50N_8_3_2_0_get_spanning_tree_0001.pyc -noc/sa/profiles/Force10/FTOS/tests/Force10_S50N_8_3_2_0_get_spanning_tree_0001.pyo -noc/sa/profiles/Force10/FTOS/tests/Force10_S50N_8_3_2_0_get_version_0001.py -noc/sa/profiles/Force10/FTOS/tests/Force10_S50N_8_3_2_0_get_version_0001.pyc -noc/sa/profiles/Force10/FTOS/tests/Force10_S50N_8_3_2_0_get_version_0001.pyo -noc/sa/profiles/Force10/FTOS/tests/Force10_S50N_8_3_2_0_get_version_0002.py -noc/sa/profiles/Force10/FTOS/tests/Force10_S50N_8_3_2_0_get_version_0002.pyc -noc/sa/profiles/Force10/FTOS/tests/Force10_S50N_8_3_2_0_get_version_0002.pyo -noc/sa/profiles/Force10/FTOS/tests/Force10_S50N_8_4_2_1_get_version_0001.py -noc/sa/profiles/Force10/FTOS/tests/Force10_S50N_8_4_2_1_get_version_0001.pyc -noc/sa/profiles/Force10/FTOS/tests/Force10_S50N_8_4_2_1_get_version_0001.pyo -noc/sa/profiles/Force10/FTOS/tests/__init__.py -noc/sa/profiles/Force10/FTOS/tests/__init__.pyc -noc/sa/profiles/Force10/FTOS/tests/__init__.pyo -noc/sa/profiles/Force10/FTOS/tests/profile.py -noc/sa/profiles/Force10/FTOS/tests/profile.pyc -noc/sa/profiles/Force10/FTOS/tests/profile.pyo -noc/sa/profiles/Force10/__init__.py -noc/sa/profiles/Force10/__init__.pyc -noc/sa/profiles/Force10/__init__.pyo -noc/sa/profiles/Generic/__init__.py -noc/sa/profiles/Generic/__init__.pyc -noc/sa/profiles/Generic/__init__.pyo -noc/sa/profiles/Generic/commands.py -noc/sa/profiles/Generic/commands.pyc -noc/sa/profiles/Generic/commands.pyo -noc/sa/profiles/Generic/configure.py -noc/sa/profiles/Generic/configure.pyc -noc/sa/profiles/Generic/configure.pyo -noc/sa/profiles/Generic/get_topology_data.py -noc/sa/profiles/Generic/get_topology_data.pyc -noc/sa/profiles/Generic/get_topology_data.pyo -noc/sa/profiles/Generic/has_local_user.py -noc/sa/profiles/Generic/has_local_user.pyc -noc/sa/profiles/Generic/has_local_user.pyo -noc/sa/profiles/Generic/has_vlan.py -noc/sa/profiles/Generic/has_vlan.pyc -noc/sa/profiles/Generic/has_vlan.pyo -noc/sa/profiles/Generic/sync_vlans.py -noc/sa/profiles/Generic/sync_vlans.pyc -noc/sa/profiles/Generic/sync_vlans.pyo -noc/sa/profiles/HP/GbE2/__init__.py -noc/sa/profiles/HP/GbE2/__init__.pyc -noc/sa/profiles/HP/GbE2/__init__.pyo -noc/sa/profiles/HP/GbE2/add_vlan.py -noc/sa/profiles/HP/GbE2/add_vlan.pyc -noc/sa/profiles/HP/GbE2/add_vlan.pyo -noc/sa/profiles/HP/GbE2/get_arp.py -noc/sa/profiles/HP/GbE2/get_arp.pyc -noc/sa/profiles/HP/GbE2/get_arp.pyo -noc/sa/profiles/HP/GbE2/get_config.py -noc/sa/profiles/HP/GbE2/get_config.pyc -noc/sa/profiles/HP/GbE2/get_config.pyo -noc/sa/profiles/HP/GbE2/get_mac_address_table.py -noc/sa/profiles/HP/GbE2/get_mac_address_table.pyc -noc/sa/profiles/HP/GbE2/get_mac_address_table.pyo -noc/sa/profiles/HP/GbE2/get_version.py -noc/sa/profiles/HP/GbE2/get_version.pyc -noc/sa/profiles/HP/GbE2/get_version.pyo -noc/sa/profiles/HP/GbE2/get_vlans.py -noc/sa/profiles/HP/GbE2/get_vlans.pyc -noc/sa/profiles/HP/GbE2/get_vlans.pyo -noc/sa/profiles/HP/GbE2/highlight.py -noc/sa/profiles/HP/GbE2/highlight.pyc -noc/sa/profiles/HP/GbE2/highlight.pyo -noc/sa/profiles/HP/GbE2/remove_vlan.py -noc/sa/profiles/HP/GbE2/remove_vlan.pyc -noc/sa/profiles/HP/GbE2/remove_vlan.pyo -noc/sa/profiles/HP/GbE2/supported.csv -noc/sa/profiles/HP/GbE2/tests/HP_GbE2c_2_0_0_get_version_0001.py -noc/sa/profiles/HP/GbE2/tests/HP_GbE2c_2_0_0_get_version_0001.pyc -noc/sa/profiles/HP/GbE2/tests/HP_GbE2c_2_0_0_get_version_0001.pyo -noc/sa/profiles/HP/GbE2/tests/__init__.py -noc/sa/profiles/HP/GbE2/tests/__init__.pyc -noc/sa/profiles/HP/GbE2/tests/__init__.pyo -noc/sa/profiles/HP/ProCurve/__init__.py -noc/sa/profiles/HP/ProCurve/__init__.pyc -noc/sa/profiles/HP/ProCurve/__init__.pyo -noc/sa/profiles/HP/ProCurve/add_vlan.py -noc/sa/profiles/HP/ProCurve/add_vlan.pyc -noc/sa/profiles/HP/ProCurve/add_vlan.pyo -noc/sa/profiles/HP/ProCurve/get_arp.py -noc/sa/profiles/HP/ProCurve/get_arp.pyc -noc/sa/profiles/HP/ProCurve/get_arp.pyo -noc/sa/profiles/HP/ProCurve/get_chassis_id.py -noc/sa/profiles/HP/ProCurve/get_chassis_id.pyc -noc/sa/profiles/HP/ProCurve/get_chassis_id.pyo -noc/sa/profiles/HP/ProCurve/get_config.py -noc/sa/profiles/HP/ProCurve/get_config.pyc -noc/sa/profiles/HP/ProCurve/get_config.pyo -noc/sa/profiles/HP/ProCurve/get_lldp_neighbors.py -noc/sa/profiles/HP/ProCurve/get_lldp_neighbors.pyc -noc/sa/profiles/HP/ProCurve/get_lldp_neighbors.pyo -noc/sa/profiles/HP/ProCurve/get_mac_address_table.py -noc/sa/profiles/HP/ProCurve/get_mac_address_table.pyc -noc/sa/profiles/HP/ProCurve/get_mac_address_table.pyo -noc/sa/profiles/HP/ProCurve/get_portchannel.py -noc/sa/profiles/HP/ProCurve/get_portchannel.pyc -noc/sa/profiles/HP/ProCurve/get_portchannel.pyo -noc/sa/profiles/HP/ProCurve/get_spanning_tree.py -noc/sa/profiles/HP/ProCurve/get_spanning_tree.pyc -noc/sa/profiles/HP/ProCurve/get_spanning_tree.pyo -noc/sa/profiles/HP/ProCurve/get_version.py -noc/sa/profiles/HP/ProCurve/get_version.pyc -noc/sa/profiles/HP/ProCurve/get_version.pyo -noc/sa/profiles/HP/ProCurve/get_vlans.py -noc/sa/profiles/HP/ProCurve/get_vlans.pyc -noc/sa/profiles/HP/ProCurve/get_vlans.pyo -noc/sa/profiles/HP/ProCurve/highlight.py -noc/sa/profiles/HP/ProCurve/highlight.pyc -noc/sa/profiles/HP/ProCurve/highlight.pyo -noc/sa/profiles/HP/ProCurve/remove_vlan.py -noc/sa/profiles/HP/ProCurve/remove_vlan.pyc -noc/sa/profiles/HP/ProCurve/remove_vlan.pyo -noc/sa/profiles/HP/ProCurve/supported.csv -noc/sa/profiles/HP/ProCurve/tests/HP_2510G_48_Y_11_16_get_arp_0001.py -noc/sa/profiles/HP/ProCurve/tests/HP_2510G_48_Y_11_16_get_arp_0001.pyc -noc/sa/profiles/HP/ProCurve/tests/HP_2510G_48_Y_11_16_get_arp_0001.pyo -noc/sa/profiles/HP/ProCurve/tests/HP_2510G_48_Y_11_16_get_chassis_id_0001.py -noc/sa/profiles/HP/ProCurve/tests/HP_2510G_48_Y_11_16_get_chassis_id_0001.pyc -noc/sa/profiles/HP/ProCurve/tests/HP_2510G_48_Y_11_16_get_chassis_id_0001.pyo -noc/sa/profiles/HP/ProCurve/tests/HP_2510G_48_Y_11_16_get_lldp_neighbors_0001.py -noc/sa/profiles/HP/ProCurve/tests/HP_2510G_48_Y_11_16_get_lldp_neighbors_0001.pyc -noc/sa/profiles/HP/ProCurve/tests/HP_2510G_48_Y_11_16_get_lldp_neighbors_0001.pyo -noc/sa/profiles/HP/ProCurve/tests/HP_2510G_48_Y_11_16_get_lldp_neighbors_0002.py -noc/sa/profiles/HP/ProCurve/tests/HP_2510G_48_Y_11_16_get_lldp_neighbors_0002.pyc -noc/sa/profiles/HP/ProCurve/tests/HP_2510G_48_Y_11_16_get_lldp_neighbors_0002.pyo -noc/sa/profiles/HP/ProCurve/tests/HP_2510G_48_Y_11_16_get_portchannel_0001.py -noc/sa/profiles/HP/ProCurve/tests/HP_2510G_48_Y_11_16_get_portchannel_0001.pyc -noc/sa/profiles/HP/ProCurve/tests/HP_2510G_48_Y_11_16_get_portchannel_0001.pyo -noc/sa/profiles/HP/ProCurve/tests/HP_2510G_48_Y_11_16_get_version_0001.py -noc/sa/profiles/HP/ProCurve/tests/HP_2510G_48_Y_11_16_get_version_0001.pyc -noc/sa/profiles/HP/ProCurve/tests/HP_2510G_48_Y_11_16_get_version_0001.pyo -noc/sa/profiles/HP/ProCurve/tests/HP_2510G_48_Y_11_16_get_vlans_0001.py -noc/sa/profiles/HP/ProCurve/tests/HP_2510G_48_Y_11_16_get_vlans_0001.pyc -noc/sa/profiles/HP/ProCurve/tests/HP_2510G_48_Y_11_16_get_vlans_0001.pyo -noc/sa/profiles/HP/ProCurve/tests/HP_2810_48G_N_11_09_get_arp_0001.py -noc/sa/profiles/HP/ProCurve/tests/HP_2810_48G_N_11_09_get_arp_0001.pyc -noc/sa/profiles/HP/ProCurve/tests/HP_2810_48G_N_11_09_get_arp_0001.pyo -noc/sa/profiles/HP/ProCurve/tests/HP_2810_48G_N_11_09_get_chassis_id_0001.py -noc/sa/profiles/HP/ProCurve/tests/HP_2810_48G_N_11_09_get_chassis_id_0001.pyc -noc/sa/profiles/HP/ProCurve/tests/HP_2810_48G_N_11_09_get_chassis_id_0001.pyo -noc/sa/profiles/HP/ProCurve/tests/HP_2810_48G_N_11_09_get_lldp_neighbors_0001.py -noc/sa/profiles/HP/ProCurve/tests/HP_2810_48G_N_11_09_get_lldp_neighbors_0001.pyc -noc/sa/profiles/HP/ProCurve/tests/HP_2810_48G_N_11_09_get_lldp_neighbors_0001.pyo -noc/sa/profiles/HP/ProCurve/tests/HP_2810_48G_N_11_09_get_lldp_neighbors_0002.py -noc/sa/profiles/HP/ProCurve/tests/HP_2810_48G_N_11_09_get_lldp_neighbors_0002.pyc -noc/sa/profiles/HP/ProCurve/tests/HP_2810_48G_N_11_09_get_lldp_neighbors_0002.pyo -noc/sa/profiles/HP/ProCurve/tests/HP_2810_48G_N_11_09_get_portchannel_0001.py -noc/sa/profiles/HP/ProCurve/tests/HP_2810_48G_N_11_09_get_portchannel_0001.pyc -noc/sa/profiles/HP/ProCurve/tests/HP_2810_48G_N_11_09_get_portchannel_0001.pyo -noc/sa/profiles/HP/ProCurve/tests/HP_2810_48G_N_11_09_get_spanning_tree_0001.py -noc/sa/profiles/HP/ProCurve/tests/HP_2810_48G_N_11_09_get_spanning_tree_0001.pyc -noc/sa/profiles/HP/ProCurve/tests/HP_2810_48G_N_11_09_get_spanning_tree_0001.pyo -noc/sa/profiles/HP/ProCurve/tests/HP_2810_48G_N_11_09_get_vlans_0001.py -noc/sa/profiles/HP/ProCurve/tests/HP_2810_48G_N_11_09_get_vlans_0001.pyc -noc/sa/profiles/HP/ProCurve/tests/HP_2810_48G_N_11_09_get_vlans_0001.pyo -noc/sa/profiles/HP/ProCurve/tests/HP_2848_I_10_43_get_arp_0001.py -noc/sa/profiles/HP/ProCurve/tests/HP_2848_I_10_43_get_arp_0001.pyc -noc/sa/profiles/HP/ProCurve/tests/HP_2848_I_10_43_get_arp_0001.pyo -noc/sa/profiles/HP/ProCurve/tests/HP_2848_I_10_43_get_chassis_id_0001.py -noc/sa/profiles/HP/ProCurve/tests/HP_2848_I_10_43_get_chassis_id_0001.pyc -noc/sa/profiles/HP/ProCurve/tests/HP_2848_I_10_43_get_chassis_id_0001.pyo -noc/sa/profiles/HP/ProCurve/tests/HP_2848_I_10_43_get_lldp_neighbors_0001.py -noc/sa/profiles/HP/ProCurve/tests/HP_2848_I_10_43_get_lldp_neighbors_0001.pyc -noc/sa/profiles/HP/ProCurve/tests/HP_2848_I_10_43_get_lldp_neighbors_0001.pyo -noc/sa/profiles/HP/ProCurve/tests/HP_2848_I_10_43_get_portchannel_0001.py -noc/sa/profiles/HP/ProCurve/tests/HP_2848_I_10_43_get_portchannel_0001.pyc -noc/sa/profiles/HP/ProCurve/tests/HP_2848_I_10_43_get_portchannel_0001.pyo -noc/sa/profiles/HP/ProCurve/tests/HP_2848_I_10_43_get_version_0001.py -noc/sa/profiles/HP/ProCurve/tests/HP_2848_I_10_43_get_version_0001.pyc -noc/sa/profiles/HP/ProCurve/tests/HP_2848_I_10_43_get_version_0001.pyo -noc/sa/profiles/HP/ProCurve/tests/HP_6120G_XG_Z_14_04_get_spanning_tree_0001.py -noc/sa/profiles/HP/ProCurve/tests/HP_6120G_XG_Z_14_04_get_spanning_tree_0001.pyc -noc/sa/profiles/HP/ProCurve/tests/HP_6120G_XG_Z_14_04_get_spanning_tree_0001.pyo -noc/sa/profiles/HP/ProCurve/tests/HP_6120G_XG_Z_14_08_get_arp_0001.py -noc/sa/profiles/HP/ProCurve/tests/HP_6120G_XG_Z_14_08_get_arp_0001.pyc -noc/sa/profiles/HP/ProCurve/tests/HP_6120G_XG_Z_14_08_get_arp_0001.pyo -noc/sa/profiles/HP/ProCurve/tests/HP_6120G_XG_Z_14_08_get_chassis_id_0001.py -noc/sa/profiles/HP/ProCurve/tests/HP_6120G_XG_Z_14_08_get_chassis_id_0001.pyc -noc/sa/profiles/HP/ProCurve/tests/HP_6120G_XG_Z_14_08_get_chassis_id_0001.pyo -noc/sa/profiles/HP/ProCurve/tests/HP_6120G_XG_Z_14_08_get_lldp_neighbors_0001.py -noc/sa/profiles/HP/ProCurve/tests/HP_6120G_XG_Z_14_08_get_lldp_neighbors_0001.pyc -noc/sa/profiles/HP/ProCurve/tests/HP_6120G_XG_Z_14_08_get_lldp_neighbors_0001.pyo -noc/sa/profiles/HP/ProCurve/tests/HP_6120G_XG_Z_14_08_get_mac_address_table_0001.py -noc/sa/profiles/HP/ProCurve/tests/HP_6120G_XG_Z_14_08_get_mac_address_table_0001.pyc -noc/sa/profiles/HP/ProCurve/tests/HP_6120G_XG_Z_14_08_get_mac_address_table_0001.pyo -noc/sa/profiles/HP/ProCurve/tests/HP_6120G_XG_Z_14_08_get_portchannel_0001.py -noc/sa/profiles/HP/ProCurve/tests/HP_6120G_XG_Z_14_08_get_portchannel_0001.pyc -noc/sa/profiles/HP/ProCurve/tests/HP_6120G_XG_Z_14_08_get_portchannel_0001.pyo -noc/sa/profiles/HP/ProCurve/tests/HP_6120G_XG_Z_14_08_get_version_0001.py -noc/sa/profiles/HP/ProCurve/tests/HP_6120G_XG_Z_14_08_get_version_0001.pyc -noc/sa/profiles/HP/ProCurve/tests/HP_6120G_XG_Z_14_08_get_version_0001.pyo -noc/sa/profiles/HP/ProCurve/tests/HP_6120G_XG_Z_14_08_get_vlans_0001.py -noc/sa/profiles/HP/ProCurve/tests/HP_6120G_XG_Z_14_08_get_vlans_0001.pyc -noc/sa/profiles/HP/ProCurve/tests/HP_6120G_XG_Z_14_08_get_vlans_0001.pyo -noc/sa/profiles/HP/ProCurve/tests/HP_6120G_XG_Z_14_22_get_version_0001.py -noc/sa/profiles/HP/ProCurve/tests/HP_6120G_XG_Z_14_22_get_version_0001.pyc -noc/sa/profiles/HP/ProCurve/tests/HP_6120G_XG_Z_14_22_get_version_0001.pyo -noc/sa/profiles/HP/ProCurve/tests/HP_6120XG_Z_14_08_get_lldp_neighbors_0001.py -noc/sa/profiles/HP/ProCurve/tests/HP_6120XG_Z_14_08_get_lldp_neighbors_0001.pyc -noc/sa/profiles/HP/ProCurve/tests/HP_6120XG_Z_14_08_get_lldp_neighbors_0001.pyo -noc/sa/profiles/HP/ProCurve/tests/HP_6120XG_Z_14_08_get_version_0001.py -noc/sa/profiles/HP/ProCurve/tests/HP_6120XG_Z_14_08_get_version_0001.pyc -noc/sa/profiles/HP/ProCurve/tests/HP_6120XG_Z_14_08_get_version_0001.pyo -noc/sa/profiles/HP/ProCurve/tests/__init__.py -noc/sa/profiles/HP/ProCurve/tests/__init__.pyc -noc/sa/profiles/HP/ProCurve/tests/__init__.pyo -noc/sa/profiles/HP/ProCurve/tests/profile.py -noc/sa/profiles/HP/ProCurve/tests/profile.pyc -noc/sa/profiles/HP/ProCurve/tests/profile.pyo -noc/sa/profiles/HP/ProCurve9xxx/__init__.py -noc/sa/profiles/HP/ProCurve9xxx/__init__.pyc -noc/sa/profiles/HP/ProCurve9xxx/__init__.pyo -noc/sa/profiles/HP/ProCurve9xxx/add_vlan.py -noc/sa/profiles/HP/ProCurve9xxx/add_vlan.pyc -noc/sa/profiles/HP/ProCurve9xxx/add_vlan.pyo -noc/sa/profiles/HP/ProCurve9xxx/get_chassis_id.py -noc/sa/profiles/HP/ProCurve9xxx/get_chassis_id.pyc -noc/sa/profiles/HP/ProCurve9xxx/get_chassis_id.pyo -noc/sa/profiles/HP/ProCurve9xxx/get_config.py -noc/sa/profiles/HP/ProCurve9xxx/get_config.pyc -noc/sa/profiles/HP/ProCurve9xxx/get_config.pyo -noc/sa/profiles/HP/ProCurve9xxx/get_fdp_neighbors.py -noc/sa/profiles/HP/ProCurve9xxx/get_fdp_neighbors.pyc -noc/sa/profiles/HP/ProCurve9xxx/get_fdp_neighbors.pyo -noc/sa/profiles/HP/ProCurve9xxx/get_mac_address_table.py -noc/sa/profiles/HP/ProCurve9xxx/get_mac_address_table.pyc -noc/sa/profiles/HP/ProCurve9xxx/get_mac_address_table.pyo -noc/sa/profiles/HP/ProCurve9xxx/get_portchannel.py -noc/sa/profiles/HP/ProCurve9xxx/get_portchannel.pyc -noc/sa/profiles/HP/ProCurve9xxx/get_portchannel.pyo -noc/sa/profiles/HP/ProCurve9xxx/get_version.py -noc/sa/profiles/HP/ProCurve9xxx/get_version.pyc -noc/sa/profiles/HP/ProCurve9xxx/get_version.pyo -noc/sa/profiles/HP/ProCurve9xxx/get_vlans.py -noc/sa/profiles/HP/ProCurve9xxx/get_vlans.pyc -noc/sa/profiles/HP/ProCurve9xxx/get_vlans.pyo -noc/sa/profiles/HP/ProCurve9xxx/highlight.py -noc/sa/profiles/HP/ProCurve9xxx/highlight.pyc -noc/sa/profiles/HP/ProCurve9xxx/highlight.pyo -noc/sa/profiles/HP/ProCurve9xxx/remove_vlan.py -noc/sa/profiles/HP/ProCurve9xxx/remove_vlan.pyc -noc/sa/profiles/HP/ProCurve9xxx/remove_vlan.pyo -noc/sa/profiles/HP/ProCurve9xxx/supported.csv -noc/sa/profiles/HP/__init__.py -noc/sa/profiles/HP/__init__.pyc -noc/sa/profiles/HP/__init__.pyo -noc/sa/profiles/HP/iLO2/__init__.py -noc/sa/profiles/HP/iLO2/__init__.pyc -noc/sa/profiles/HP/iLO2/__init__.pyo -noc/sa/profiles/HP/iLO2/get_config.py -noc/sa/profiles/HP/iLO2/get_config.pyc -noc/sa/profiles/HP/iLO2/get_config.pyo -noc/sa/profiles/HP/iLO2/get_version.py -noc/sa/profiles/HP/iLO2/get_version.pyc -noc/sa/profiles/HP/iLO2/get_version.pyo -noc/sa/profiles/HP/iLO2/supported.csv -noc/sa/profiles/Huawei/UMG8900/__init__.py -noc/sa/profiles/Huawei/UMG8900/__init__.pyc -noc/sa/profiles/Huawei/UMG8900/__init__.pyo -noc/sa/profiles/Huawei/UMG8900/get_config.py -noc/sa/profiles/Huawei/UMG8900/get_config.pyc -noc/sa/profiles/Huawei/UMG8900/get_config.pyo -noc/sa/profiles/Huawei/VRP/__init__.py -noc/sa/profiles/Huawei/VRP/__init__.pyc -noc/sa/profiles/Huawei/VRP/__init__.pyo -noc/sa/profiles/Huawei/VRP/get_arp.py -noc/sa/profiles/Huawei/VRP/get_arp.pyc -noc/sa/profiles/Huawei/VRP/get_arp.pyo -noc/sa/profiles/Huawei/VRP/get_chassis_id.py -noc/sa/profiles/Huawei/VRP/get_chassis_id.pyc -noc/sa/profiles/Huawei/VRP/get_chassis_id.pyo -noc/sa/profiles/Huawei/VRP/get_config.py -noc/sa/profiles/Huawei/VRP/get_config.pyc -noc/sa/profiles/Huawei/VRP/get_config.pyo -noc/sa/profiles/Huawei/VRP/get_lldp_neighbors.py -noc/sa/profiles/Huawei/VRP/get_lldp_neighbors.pyc -noc/sa/profiles/Huawei/VRP/get_lldp_neighbors.pyo -noc/sa/profiles/Huawei/VRP/get_mac_address_table.py -noc/sa/profiles/Huawei/VRP/get_mac_address_table.pyc -noc/sa/profiles/Huawei/VRP/get_mac_address_table.pyo -noc/sa/profiles/Huawei/VRP/get_portchannel.py -noc/sa/profiles/Huawei/VRP/get_portchannel.pyc -noc/sa/profiles/Huawei/VRP/get_portchannel.pyo -noc/sa/profiles/Huawei/VRP/get_version.py -noc/sa/profiles/Huawei/VRP/get_version.pyc -noc/sa/profiles/Huawei/VRP/get_version.pyo -noc/sa/profiles/Huawei/VRP/get_vlans.py -noc/sa/profiles/Huawei/VRP/get_vlans.pyc -noc/sa/profiles/Huawei/VRP/get_vlans.pyo -noc/sa/profiles/Huawei/VRP/highlight.py -noc/sa/profiles/Huawei/VRP/highlight.pyc -noc/sa/profiles/Huawei/VRP/highlight.pyo -noc/sa/profiles/Huawei/VRP/supported.csv -noc/sa/profiles/Huawei/VRP/tests/Huawei_MA5200G_8_5_30_get_version_0001.py -noc/sa/profiles/Huawei/VRP/tests/Huawei_MA5200G_8_5_30_get_version_0001.pyc -noc/sa/profiles/Huawei/VRP/tests/Huawei_MA5200G_8_5_30_get_version_0001.pyo -noc/sa/profiles/Huawei/VRP/tests/Huawei_NE40E_5_50_get_arp_0001.py -noc/sa/profiles/Huawei/VRP/tests/Huawei_NE40E_5_50_get_arp_0001.pyc -noc/sa/profiles/Huawei/VRP/tests/Huawei_NE40E_5_50_get_arp_0001.pyo -noc/sa/profiles/Huawei/VRP/tests/Huawei_NE40E_5_50_get_chassis_id_0001.py -noc/sa/profiles/Huawei/VRP/tests/Huawei_NE40E_5_50_get_chassis_id_0001.pyc -noc/sa/profiles/Huawei/VRP/tests/Huawei_NE40E_5_50_get_chassis_id_0001.pyo -noc/sa/profiles/Huawei/VRP/tests/Huawei_NE40E_5_50_get_lldp_neighbors_0001.py -noc/sa/profiles/Huawei/VRP/tests/Huawei_NE40E_5_50_get_lldp_neighbors_0001.pyc -noc/sa/profiles/Huawei/VRP/tests/Huawei_NE40E_5_50_get_lldp_neighbors_0001.pyo -noc/sa/profiles/Huawei/VRP/tests/Huawei_NE40E_5_50_get_mac_address_table_0001.py -noc/sa/profiles/Huawei/VRP/tests/Huawei_NE40E_5_50_get_mac_address_table_0001.pyc -noc/sa/profiles/Huawei/VRP/tests/Huawei_NE40E_5_50_get_mac_address_table_0001.pyo -noc/sa/profiles/Huawei/VRP/tests/Huawei_NE40E_5_50_get_portchannel_0001.py -noc/sa/profiles/Huawei/VRP/tests/Huawei_NE40E_5_50_get_portchannel_0001.pyc -noc/sa/profiles/Huawei/VRP/tests/Huawei_NE40E_5_50_get_portchannel_0001.pyo -noc/sa/profiles/Huawei/VRP/tests/Huawei_NE40E_5_50_get_version_0001.py -noc/sa/profiles/Huawei/VRP/tests/Huawei_NE40E_5_50_get_version_0001.pyc -noc/sa/profiles/Huawei/VRP/tests/Huawei_NE40E_5_50_get_version_0001.pyo -noc/sa/profiles/Huawei/VRP/tests/Huawei_S8505_3_10_get_chassis_id_0001.py -noc/sa/profiles/Huawei/VRP/tests/Huawei_S8505_3_10_get_chassis_id_0001.pyc -noc/sa/profiles/Huawei/VRP/tests/Huawei_S8505_3_10_get_chassis_id_0001.pyo -noc/sa/profiles/Huawei/VRP/tests/Huawei_S8505_3_10_get_version_0001.py -noc/sa/profiles/Huawei/VRP/tests/Huawei_S8505_3_10_get_version_0001.pyc -noc/sa/profiles/Huawei/VRP/tests/Huawei_S8505_3_10_get_version_0001.pyo -noc/sa/profiles/Huawei/VRP/tests/Huawei_S8505_3_10_get_vlans_0001.py -noc/sa/profiles/Huawei/VRP/tests/Huawei_S8505_3_10_get_vlans_0001.pyc -noc/sa/profiles/Huawei/VRP/tests/Huawei_S8505_3_10_get_vlans_0001.pyo -noc/sa/profiles/Huawei/VRP/tests/Huawei_S8512_3_10_get_arp_0001.py -noc/sa/profiles/Huawei/VRP/tests/Huawei_S8512_3_10_get_arp_0001.pyc -noc/sa/profiles/Huawei/VRP/tests/Huawei_S8512_3_10_get_arp_0001.pyo -noc/sa/profiles/Huawei/VRP/tests/Huawei_S8512_3_10_get_chassis_id_0001.py -noc/sa/profiles/Huawei/VRP/tests/Huawei_S8512_3_10_get_chassis_id_0001.pyc -noc/sa/profiles/Huawei/VRP/tests/Huawei_S8512_3_10_get_chassis_id_0001.pyo -noc/sa/profiles/Huawei/VRP/tests/Huawei_S8512_3_10_get_version_0001.py -noc/sa/profiles/Huawei/VRP/tests/Huawei_S8512_3_10_get_version_0001.pyc -noc/sa/profiles/Huawei/VRP/tests/Huawei_S8512_3_10_get_version_0001.pyo -noc/sa/profiles/Huawei/VRP/tests/Huawei_S8512_3_10_get_vlans_0001.py -noc/sa/profiles/Huawei/VRP/tests/Huawei_S8512_3_10_get_vlans_0001.pyc -noc/sa/profiles/Huawei/VRP/tests/Huawei_S8512_3_10_get_vlans_0001.pyo -noc/sa/profiles/Huawei/VRP/tests/Huawei_S9306_5_50_get_chassis_id_0001.py -noc/sa/profiles/Huawei/VRP/tests/Huawei_S9306_5_50_get_chassis_id_0001.pyc -noc/sa/profiles/Huawei/VRP/tests/Huawei_S9306_5_50_get_chassis_id_0001.pyo -noc/sa/profiles/Huawei/VRP/tests/Huawei_S9306_5_50_get_lldp_neighbors_0001.py -noc/sa/profiles/Huawei/VRP/tests/Huawei_S9306_5_50_get_lldp_neighbors_0001.pyc -noc/sa/profiles/Huawei/VRP/tests/Huawei_S9306_5_50_get_lldp_neighbors_0001.pyo -noc/sa/profiles/Huawei/VRP/tests/Huawei_S9306_5_50_get_lldp_neighbors_0002.py -noc/sa/profiles/Huawei/VRP/tests/Huawei_S9306_5_50_get_lldp_neighbors_0002.pyc -noc/sa/profiles/Huawei/VRP/tests/Huawei_S9306_5_50_get_lldp_neighbors_0002.pyo -noc/sa/profiles/Huawei/VRP/tests/Huawei_S9306_5_50_get_mac_address_table_0001.py -noc/sa/profiles/Huawei/VRP/tests/Huawei_S9306_5_50_get_mac_address_table_0001.pyc -noc/sa/profiles/Huawei/VRP/tests/Huawei_S9306_5_50_get_mac_address_table_0001.pyo -noc/sa/profiles/Huawei/VRP/tests/Huawei_S9306_5_50_get_portchannel_0001.py -noc/sa/profiles/Huawei/VRP/tests/Huawei_S9306_5_50_get_portchannel_0001.pyc -noc/sa/profiles/Huawei/VRP/tests/Huawei_S9306_5_50_get_portchannel_0001.pyo -noc/sa/profiles/Huawei/VRP/tests/Huawei_S9306_5_50_get_version_0001.py -noc/sa/profiles/Huawei/VRP/tests/Huawei_S9306_5_50_get_version_0001.pyc -noc/sa/profiles/Huawei/VRP/tests/Huawei_S9306_5_50_get_version_0001.pyo -noc/sa/profiles/Huawei/VRP/tests/Huawei_S9306_5_50_get_vlans_0001.py -noc/sa/profiles/Huawei/VRP/tests/Huawei_S9306_5_50_get_vlans_0001.pyc -noc/sa/profiles/Huawei/VRP/tests/Huawei_S9306_5_50_get_vlans_0001.pyo -noc/sa/profiles/Huawei/VRP/tests/__init__.py -noc/sa/profiles/Huawei/VRP/tests/__init__.pyc -noc/sa/profiles/Huawei/VRP/tests/__init__.pyo -noc/sa/profiles/Huawei/__init__.py -noc/sa/profiles/Huawei/__init__.pyc -noc/sa/profiles/Huawei/__init__.pyo -noc/sa/profiles/InfiNet/WANFlexX/__init__.py -noc/sa/profiles/InfiNet/WANFlexX/__init__.pyc -noc/sa/profiles/InfiNet/WANFlexX/__init__.pyo -noc/sa/profiles/InfiNet/WANFlexX/get_config.py -noc/sa/profiles/InfiNet/WANFlexX/get_config.pyc -noc/sa/profiles/InfiNet/WANFlexX/get_config.pyo -noc/sa/profiles/InfiNet/WANFlexX/get_version.py -noc/sa/profiles/InfiNet/WANFlexX/get_version.pyc -noc/sa/profiles/InfiNet/WANFlexX/get_version.pyo -noc/sa/profiles/InfiNet/WANFlexX/supported.csv -noc/sa/profiles/InfiNet/__init__.py -noc/sa/profiles/InfiNet/__init__.pyc -noc/sa/profiles/InfiNet/__init__.pyo -noc/sa/profiles/Juniper/JUNOS/__init__.py -noc/sa/profiles/Juniper/JUNOS/__init__.pyc -noc/sa/profiles/Juniper/JUNOS/__init__.pyo -noc/sa/profiles/Juniper/JUNOS/get_arp.py -noc/sa/profiles/Juniper/JUNOS/get_arp.pyc -noc/sa/profiles/Juniper/JUNOS/get_arp.pyo -noc/sa/profiles/Juniper/JUNOS/get_config.py -noc/sa/profiles/Juniper/JUNOS/get_config.pyc -noc/sa/profiles/Juniper/JUNOS/get_config.pyo -noc/sa/profiles/Juniper/JUNOS/get_lldp_neighbors.py -noc/sa/profiles/Juniper/JUNOS/get_lldp_neighbors.pyc -noc/sa/profiles/Juniper/JUNOS/get_lldp_neighbors.pyo -noc/sa/profiles/Juniper/JUNOS/get_mac_address_table.py -noc/sa/profiles/Juniper/JUNOS/get_mac_address_table.pyc -noc/sa/profiles/Juniper/JUNOS/get_mac_address_table.pyo -noc/sa/profiles/Juniper/JUNOS/get_version.py -noc/sa/profiles/Juniper/JUNOS/get_version.pyc -noc/sa/profiles/Juniper/JUNOS/get_version.pyo -noc/sa/profiles/Juniper/JUNOS/get_vlans.py -noc/sa/profiles/Juniper/JUNOS/get_vlans.pyc -noc/sa/profiles/Juniper/JUNOS/get_vlans.pyo -noc/sa/profiles/Juniper/JUNOS/highlight.py -noc/sa/profiles/Juniper/JUNOS/highlight.pyc -noc/sa/profiles/Juniper/JUNOS/highlight.pyo -noc/sa/profiles/Juniper/JUNOS/supported.csv -noc/sa/profiles/Juniper/JUNOS/sync_prefix_lists.py -noc/sa/profiles/Juniper/JUNOS/sync_prefix_lists.pyc -noc/sa/profiles/Juniper/JUNOS/sync_prefix_lists.pyo -noc/sa/profiles/Juniper/JUNOS/tests/Juniper_ex3200_24t_10_0S1_1_get_lldp_neighbors_0001.py -noc/sa/profiles/Juniper/JUNOS/tests/Juniper_ex3200_24t_10_0S1_1_get_lldp_neighbors_0001.pyc -noc/sa/profiles/Juniper/JUNOS/tests/Juniper_ex3200_24t_10_0S1_1_get_lldp_neighbors_0001.pyo -noc/sa/profiles/Juniper/JUNOS/tests/Juniper_ex3200_24t_10_0S1_1_get_lldp_neighbors_0002.py -noc/sa/profiles/Juniper/JUNOS/tests/Juniper_ex3200_24t_10_0S1_1_get_lldp_neighbors_0002.pyc -noc/sa/profiles/Juniper/JUNOS/tests/Juniper_ex3200_24t_10_0S1_1_get_lldp_neighbors_0002.pyo -noc/sa/profiles/Juniper/JUNOS/tests/Juniper_ex3200_24t_10_0S1_1_get_version_0001.py -noc/sa/profiles/Juniper/JUNOS/tests/Juniper_ex3200_24t_10_0S1_1_get_version_0001.pyc -noc/sa/profiles/Juniper/JUNOS/tests/Juniper_ex3200_24t_10_0S1_1_get_version_0001.pyo -noc/sa/profiles/Juniper/JUNOS/tests/Juniper_ex4200_24f_10_0R4_7_get_lldp_neighbors_0001.py -noc/sa/profiles/Juniper/JUNOS/tests/Juniper_ex4200_24f_10_0R4_7_get_lldp_neighbors_0001.pyc -noc/sa/profiles/Juniper/JUNOS/tests/Juniper_ex4200_24f_10_0R4_7_get_lldp_neighbors_0001.pyo -noc/sa/profiles/Juniper/JUNOS/tests/Juniper_ex4200_24f_10_0S1_1_get_version_0001.py -noc/sa/profiles/Juniper/JUNOS/tests/Juniper_ex4200_24f_10_0S1_1_get_version_0001.pyc -noc/sa/profiles/Juniper/JUNOS/tests/Juniper_ex4200_24f_10_0S1_1_get_version_0001.pyo -noc/sa/profiles/Juniper/JUNOS/tests/Juniper_j4350_10_0R3_10_get_version_0001.py -noc/sa/profiles/Juniper/JUNOS/tests/Juniper_j4350_10_0R3_10_get_version_0001.pyc -noc/sa/profiles/Juniper/JUNOS/tests/Juniper_j4350_10_0R3_10_get_version_0001.pyo -noc/sa/profiles/Juniper/JUNOS/tests/Juniper_mx480_10_2R2_11_get_version_0001.py -noc/sa/profiles/Juniper/JUNOS/tests/Juniper_mx480_10_2R2_11_get_version_0001.pyc -noc/sa/profiles/Juniper/JUNOS/tests/Juniper_mx480_10_2R2_11_get_version_0001.pyo -noc/sa/profiles/Juniper/JUNOS/tests/Juniper_mx480_9_6R1_13_get_version_0001.py -noc/sa/profiles/Juniper/JUNOS/tests/Juniper_mx480_9_6R1_13_get_version_0001.pyc -noc/sa/profiles/Juniper/JUNOS/tests/Juniper_mx480_9_6R1_13_get_version_0001.pyo -noc/sa/profiles/Juniper/JUNOS/tests/Juniper_srx5600_10_0R2_10_get_version_0001.py -noc/sa/profiles/Juniper/JUNOS/tests/Juniper_srx5600_10_0R2_10_get_version_0001.pyc -noc/sa/profiles/Juniper/JUNOS/tests/Juniper_srx5600_10_0R2_10_get_version_0001.pyo -noc/sa/profiles/Juniper/JUNOS/tests/Juniper_srx650_10_3R1_9_get_version_0001.py -noc/sa/profiles/Juniper/JUNOS/tests/Juniper_srx650_10_3R1_9_get_version_0001.pyc -noc/sa/profiles/Juniper/JUNOS/tests/Juniper_srx650_10_3R1_9_get_version_0001.pyo -noc/sa/profiles/Juniper/JUNOS/tests/__init__.py -noc/sa/profiles/Juniper/JUNOS/tests/__init__.pyc -noc/sa/profiles/Juniper/JUNOS/tests/__init__.pyo -noc/sa/profiles/Juniper/JUNOSe/__init__.py -noc/sa/profiles/Juniper/JUNOSe/__init__.pyc -noc/sa/profiles/Juniper/JUNOSe/__init__.pyo -noc/sa/profiles/Juniper/JUNOSe/get_config.py -noc/sa/profiles/Juniper/JUNOSe/get_config.pyc -noc/sa/profiles/Juniper/JUNOSe/get_config.pyo -noc/sa/profiles/Juniper/JUNOSe/get_version.py -noc/sa/profiles/Juniper/JUNOSe/get_version.pyc -noc/sa/profiles/Juniper/JUNOSe/get_version.pyo -noc/sa/profiles/Juniper/JUNOSe/supported.csv -noc/sa/profiles/Juniper/JUNOSe/tests/Juniper_ERX_310_10_0_0_release_0_0_get_version_0001.py -noc/sa/profiles/Juniper/JUNOSe/tests/Juniper_ERX_310_10_0_0_release_0_0_get_version_0001.pyc -noc/sa/profiles/Juniper/JUNOSe/tests/Juniper_ERX_310_10_0_0_release_0_0_get_version_0001.pyo -noc/sa/profiles/Juniper/JUNOSe/tests/Juniper_ERX_310_10_3_0_release_0_0_get_version_0001.py -noc/sa/profiles/Juniper/JUNOSe/tests/Juniper_ERX_310_10_3_0_release_0_0_get_version_0001.pyc -noc/sa/profiles/Juniper/JUNOSe/tests/Juniper_ERX_310_10_3_0_release_0_0_get_version_0001.pyo -noc/sa/profiles/Juniper/JUNOSe/tests/Juniper_ERX_310_9_2_0_patch_1_0_get_version_0001.py -noc/sa/profiles/Juniper/JUNOSe/tests/Juniper_ERX_310_9_2_0_patch_1_0_get_version_0001.pyc -noc/sa/profiles/Juniper/JUNOSe/tests/Juniper_ERX_310_9_2_0_patch_1_0_get_version_0001.pyo -noc/sa/profiles/Juniper/JUNOSe/tests/__init__.py -noc/sa/profiles/Juniper/JUNOSe/tests/__init__.pyc -noc/sa/profiles/Juniper/JUNOSe/tests/__init__.pyo -noc/sa/profiles/Juniper/SRCPE/__init__.py -noc/sa/profiles/Juniper/SRCPE/__init__.pyc -noc/sa/profiles/Juniper/SRCPE/__init__.pyo -noc/sa/profiles/Juniper/SRCPE/get_config.py -noc/sa/profiles/Juniper/SRCPE/get_config.pyc -noc/sa/profiles/Juniper/SRCPE/get_config.pyo -noc/sa/profiles/Juniper/SRCPE/get_version.py -noc/sa/profiles/Juniper/SRCPE/get_version.pyc -noc/sa/profiles/Juniper/SRCPE/get_version.pyo -noc/sa/profiles/Juniper/ScreenOS/__init__.py -noc/sa/profiles/Juniper/ScreenOS/__init__.pyc -noc/sa/profiles/Juniper/ScreenOS/__init__.pyo -noc/sa/profiles/Juniper/ScreenOS/get_config.py -noc/sa/profiles/Juniper/ScreenOS/get_config.pyc -noc/sa/profiles/Juniper/ScreenOS/get_config.pyo -noc/sa/profiles/Juniper/ScreenOS/get_version.py -noc/sa/profiles/Juniper/ScreenOS/get_version.pyc -noc/sa/profiles/Juniper/ScreenOS/get_version.pyo -noc/sa/profiles/Juniper/ScreenOS/highlight.py -noc/sa/profiles/Juniper/ScreenOS/highlight.pyc -noc/sa/profiles/Juniper/ScreenOS/highlight.pyo -noc/sa/profiles/Juniper/ScreenOS/supported.csv -noc/sa/profiles/Juniper/ScreenOS/tests/Juniper_NetScreen_2000_6_3_0r4_0_get_version_0001.py -noc/sa/profiles/Juniper/ScreenOS/tests/Juniper_NetScreen_2000_6_3_0r4_0_get_version_0001.pyc -noc/sa/profiles/Juniper/ScreenOS/tests/Juniper_NetScreen_2000_6_3_0r4_0_get_version_0001.pyo -noc/sa/profiles/Juniper/ScreenOS/tests/Juniper_NetScreen_204_5_4_0r18_0_get_version_0001.py -noc/sa/profiles/Juniper/ScreenOS/tests/Juniper_NetScreen_204_5_4_0r18_0_get_version_0001.pyc -noc/sa/profiles/Juniper/ScreenOS/tests/Juniper_NetScreen_204_5_4_0r18_0_get_version_0001.pyo -noc/sa/profiles/Juniper/ScreenOS/tests/__init__.py -noc/sa/profiles/Juniper/ScreenOS/tests/__init__.pyc -noc/sa/profiles/Juniper/ScreenOS/tests/__init__.pyo -noc/sa/profiles/Juniper/__init__.py -noc/sa/profiles/Juniper/__init__.pyc -noc/sa/profiles/Juniper/__init__.pyo -noc/sa/profiles/Linksys/SPS2xx/__init__.py -noc/sa/profiles/Linksys/SPS2xx/__init__.pyc -noc/sa/profiles/Linksys/SPS2xx/__init__.pyo -noc/sa/profiles/Linksys/SPS2xx/get_config.py -noc/sa/profiles/Linksys/SPS2xx/get_config.pyc -noc/sa/profiles/Linksys/SPS2xx/get_config.pyo -noc/sa/profiles/Linksys/SPS2xx/get_version.py -noc/sa/profiles/Linksys/SPS2xx/get_version.pyc -noc/sa/profiles/Linksys/SPS2xx/get_version.pyo -noc/sa/profiles/Linksys/SPS2xx/highlight.py -noc/sa/profiles/Linksys/SPS2xx/highlight.pyc -noc/sa/profiles/Linksys/SPS2xx/highlight.pyo -noc/sa/profiles/Linksys/SPS2xx/supported.csv -noc/sa/profiles/Linksys/__init__.py -noc/sa/profiles/Linksys/__init__.pyc -noc/sa/profiles/Linksys/__init__.pyo -noc/sa/profiles/MikroTik/RouterOS/__init__.py -noc/sa/profiles/MikroTik/RouterOS/__init__.pyc -noc/sa/profiles/MikroTik/RouterOS/__init__.pyo -noc/sa/profiles/MikroTik/RouterOS/get_config.py -noc/sa/profiles/MikroTik/RouterOS/get_config.pyc -noc/sa/profiles/MikroTik/RouterOS/get_config.pyo -noc/sa/profiles/MikroTik/RouterOS/get_version.py -noc/sa/profiles/MikroTik/RouterOS/get_version.pyc -noc/sa/profiles/MikroTik/RouterOS/get_version.pyo -noc/sa/profiles/MikroTik/__init__.py -noc/sa/profiles/MikroTik/__init__.pyc -noc/sa/profiles/MikroTik/__init__.pyo -noc/sa/profiles/NOC/SAE/__init__.py -noc/sa/profiles/NOC/SAE/__init__.pyc -noc/sa/profiles/NOC/SAE/__init__.pyo -noc/sa/profiles/NOC/SAE/get_activator_status.py -noc/sa/profiles/NOC/SAE/get_activator_status.pyc -noc/sa/profiles/NOC/SAE/get_activator_status.pyo -noc/sa/profiles/NOC/SAE/get_version.py -noc/sa/profiles/NOC/SAE/get_version.pyc -noc/sa/profiles/NOC/SAE/get_version.pyo -noc/sa/profiles/NOC/SAE/ping_check.py -noc/sa/profiles/NOC/SAE/ping_check.pyc -noc/sa/profiles/NOC/SAE/ping_check.pyo -noc/sa/profiles/NOC/__init__.py -noc/sa/profiles/NOC/__init__.pyc -noc/sa/profiles/NOC/__init__.pyo -noc/sa/profiles/OS/FreeBSD/__init__.py -noc/sa/profiles/OS/FreeBSD/__init__.pyc -noc/sa/profiles/OS/FreeBSD/__init__.pyo -noc/sa/profiles/OS/FreeBSD/get_arp.py -noc/sa/profiles/OS/FreeBSD/get_arp.pyc -noc/sa/profiles/OS/FreeBSD/get_arp.pyo -noc/sa/profiles/OS/FreeBSD/get_fqdn.py -noc/sa/profiles/OS/FreeBSD/get_fqdn.pyc -noc/sa/profiles/OS/FreeBSD/get_fqdn.pyo -noc/sa/profiles/OS/FreeBSD/get_version.py -noc/sa/profiles/OS/FreeBSD/get_version.pyc -noc/sa/profiles/OS/FreeBSD/get_version.pyo -noc/sa/profiles/OS/FreeBSD/ping.py -noc/sa/profiles/OS/FreeBSD/ping.pyc -noc/sa/profiles/OS/FreeBSD/ping.pyo -noc/sa/profiles/OS/FreeBSD/supported.csv -noc/sa/profiles/OS/FreeBSD/tests/OS_amd64_8_1_STABLE_get_arp_0001.py -noc/sa/profiles/OS/FreeBSD/tests/OS_amd64_8_1_STABLE_get_arp_0001.pyc -noc/sa/profiles/OS/FreeBSD/tests/OS_amd64_8_1_STABLE_get_arp_0001.pyo -noc/sa/profiles/OS/FreeBSD/tests/OS_amd64_8_1_STABLE_get_version_0001.py -noc/sa/profiles/OS/FreeBSD/tests/OS_amd64_8_1_STABLE_get_version_0001.pyc -noc/sa/profiles/OS/FreeBSD/tests/OS_amd64_8_1_STABLE_get_version_0001.pyo -noc/sa/profiles/OS/FreeBSD/tests/OS_amd64_8_2_PRERELEASE_get_fqdn_0001.py -noc/sa/profiles/OS/FreeBSD/tests/OS_amd64_8_2_PRERELEASE_get_fqdn_0001.pyc -noc/sa/profiles/OS/FreeBSD/tests/OS_amd64_8_2_PRERELEASE_get_fqdn_0001.pyo -noc/sa/profiles/OS/FreeBSD/tests/OS_amd64_8_2_PRERELEASE_ping_0001.py -noc/sa/profiles/OS/FreeBSD/tests/OS_amd64_8_2_PRERELEASE_ping_0001.pyc -noc/sa/profiles/OS/FreeBSD/tests/OS_amd64_8_2_PRERELEASE_ping_0001.pyo -noc/sa/profiles/OS/FreeBSD/tests/__init__.py -noc/sa/profiles/OS/FreeBSD/tests/__init__.pyc -noc/sa/profiles/OS/FreeBSD/tests/__init__.pyo -noc/sa/profiles/OS/__init__.py -noc/sa/profiles/OS/__init__.pyc -noc/sa/profiles/OS/__init__.pyo -noc/sa/profiles/Protei/MediaGateway/__init__.py -noc/sa/profiles/Protei/MediaGateway/__init__.pyc -noc/sa/profiles/Protei/MediaGateway/__init__.pyo -noc/sa/profiles/Protei/MediaGateway/get_config.py -noc/sa/profiles/Protei/MediaGateway/get_config.pyc -noc/sa/profiles/Protei/MediaGateway/get_config.pyo -noc/sa/profiles/Protei/MediaGateway/get_version.py -noc/sa/profiles/Protei/MediaGateway/get_version.pyc -noc/sa/profiles/Protei/MediaGateway/get_version.pyo -noc/sa/profiles/Protei/MediaGateway/supported.csv -noc/sa/profiles/Protei/__init__.py -noc/sa/profiles/Protei/__init__.pyc -noc/sa/profiles/Protei/__init__.pyo -noc/sa/profiles/Raisecom/ROS/__init__.py -noc/sa/profiles/Raisecom/ROS/__init__.pyc -noc/sa/profiles/Raisecom/ROS/__init__.pyo -noc/sa/profiles/Raisecom/ROS/get_config.py -noc/sa/profiles/Raisecom/ROS/get_config.pyc -noc/sa/profiles/Raisecom/ROS/get_config.pyo -noc/sa/profiles/Raisecom/ROS/get_version.py -noc/sa/profiles/Raisecom/ROS/get_version.pyc -noc/sa/profiles/Raisecom/ROS/get_version.pyo -noc/sa/profiles/Raisecom/ROS/highlight.py -noc/sa/profiles/Raisecom/ROS/highlight.pyc -noc/sa/profiles/Raisecom/ROS/highlight.pyo -noc/sa/profiles/Raisecom/ROS/supported.csv -noc/sa/profiles/Raisecom/__init__.py -noc/sa/profiles/Raisecom/__init__.pyc -noc/sa/profiles/Raisecom/__init__.pyo -noc/sa/profiles/Raritan/DominionSX/__init__.py -noc/sa/profiles/Raritan/DominionSX/__init__.pyc -noc/sa/profiles/Raritan/DominionSX/__init__.pyo -noc/sa/profiles/Raritan/DominionSX/get_config.py -noc/sa/profiles/Raritan/DominionSX/get_config.pyc -noc/sa/profiles/Raritan/DominionSX/get_config.pyo -noc/sa/profiles/Raritan/DominionSX/get_version.py -noc/sa/profiles/Raritan/DominionSX/get_version.pyc -noc/sa/profiles/Raritan/DominionSX/get_version.pyo -noc/sa/profiles/Raritan/__init__.py -noc/sa/profiles/Raritan/__init__.pyc -noc/sa/profiles/Raritan/__init__.pyo -noc/sa/profiles/Sun/__init__.py -noc/sa/profiles/Sun/__init__.pyc -noc/sa/profiles/Sun/__init__.pyo -noc/sa/profiles/Sun/iLOM3/__init__.py -noc/sa/profiles/Sun/iLOM3/__init__.pyc -noc/sa/profiles/Sun/iLOM3/__init__.pyo -noc/sa/profiles/Sun/iLOM3/get_config.py -noc/sa/profiles/Sun/iLOM3/get_config.pyc -noc/sa/profiles/Sun/iLOM3/get_config.pyo -noc/sa/profiles/Sun/iLOM3/get_version.py -noc/sa/profiles/Sun/iLOM3/get_version.pyc -noc/sa/profiles/Sun/iLOM3/get_version.pyo -noc/sa/profiles/Sun/iLOM3/highlight.py -noc/sa/profiles/Sun/iLOM3/highlight.pyc -noc/sa/profiles/Sun/iLOM3/highlight.pyo -noc/sa/profiles/Sun/iLOM3/supported.csv -noc/sa/profiles/Ubiquiti/AirOS/__init__.py -noc/sa/profiles/Ubiquiti/AirOS/__init__.pyc -noc/sa/profiles/Ubiquiti/AirOS/__init__.pyo -noc/sa/profiles/Ubiquiti/AirOS/get_config.py -noc/sa/profiles/Ubiquiti/AirOS/get_config.pyc -noc/sa/profiles/Ubiquiti/AirOS/get_config.pyo -noc/sa/profiles/Ubiquiti/AirOS/get_version.py -noc/sa/profiles/Ubiquiti/AirOS/get_version.pyc -noc/sa/profiles/Ubiquiti/AirOS/get_version.pyo -noc/sa/profiles/Ubiquiti/AirOS/supported.csv -noc/sa/profiles/Ubiquiti/__init__.py -noc/sa/profiles/Ubiquiti/__init__.pyc -noc/sa/profiles/Ubiquiti/__init__.pyo -noc/sa/profiles/Vyatta/Vyatta/__init__.py -noc/sa/profiles/Vyatta/Vyatta/__init__.pyc -noc/sa/profiles/Vyatta/Vyatta/__init__.pyo -noc/sa/profiles/Vyatta/Vyatta/get_arp.py -noc/sa/profiles/Vyatta/Vyatta/get_arp.pyc -noc/sa/profiles/Vyatta/Vyatta/get_arp.pyo -noc/sa/profiles/Vyatta/Vyatta/get_config.py -noc/sa/profiles/Vyatta/Vyatta/get_config.pyc -noc/sa/profiles/Vyatta/Vyatta/get_config.pyo -noc/sa/profiles/Vyatta/Vyatta/get_version.py -noc/sa/profiles/Vyatta/Vyatta/get_version.pyc -noc/sa/profiles/Vyatta/Vyatta/get_version.pyo -noc/sa/profiles/Vyatta/Vyatta/supported.csv -noc/sa/profiles/Vyatta/Vyatta/tests/Vyatta_VC_VC6_1_2010_08_20_get_arp_0001.py -noc/sa/profiles/Vyatta/Vyatta/tests/Vyatta_VC_VC6_1_2010_08_20_get_arp_0001.pyc -noc/sa/profiles/Vyatta/Vyatta/tests/Vyatta_VC_VC6_1_2010_08_20_get_arp_0001.pyo -noc/sa/profiles/Vyatta/Vyatta/tests/Vyatta_VC_VC6_1_2010_08_20_get_version_0001.py -noc/sa/profiles/Vyatta/Vyatta/tests/Vyatta_VC_VC6_1_2010_08_20_get_version_0001.pyc -noc/sa/profiles/Vyatta/Vyatta/tests/Vyatta_VC_VC6_1_2010_08_20_get_version_0001.pyo -noc/sa/profiles/Vyatta/Vyatta/tests/Vyatta_Vyatta_VC6_1_2010_10_16_get_arp_0001.py -noc/sa/profiles/Vyatta/Vyatta/tests/Vyatta_Vyatta_VC6_1_2010_10_16_get_arp_0001.pyc -noc/sa/profiles/Vyatta/Vyatta/tests/Vyatta_Vyatta_VC6_1_2010_10_16_get_arp_0001.pyo -noc/sa/profiles/Vyatta/Vyatta/tests/Vyatta_Vyatta_VC6_1_2010_10_16_get_version_0001.py -noc/sa/profiles/Vyatta/Vyatta/tests/Vyatta_Vyatta_VC6_1_2010_10_16_get_version_0001.pyc -noc/sa/profiles/Vyatta/Vyatta/tests/Vyatta_Vyatta_VC6_1_2010_10_16_get_version_0001.pyo -noc/sa/profiles/Vyatta/Vyatta/tests/__init__.py -noc/sa/profiles/Vyatta/Vyatta/tests/__init__.pyc -noc/sa/profiles/Vyatta/Vyatta/tests/__init__.pyo -noc/sa/profiles/Vyatta/__init__.py -noc/sa/profiles/Vyatta/__init__.pyc -noc/sa/profiles/Vyatta/__init__.pyo -noc/sa/profiles/ZTE/ZXDSL531/__init__.py -noc/sa/profiles/ZTE/ZXDSL531/__init__.pyc -noc/sa/profiles/ZTE/ZXDSL531/__init__.pyo -noc/sa/profiles/ZTE/ZXDSL531/get_config.py -noc/sa/profiles/ZTE/ZXDSL531/get_config.pyc -noc/sa/profiles/ZTE/ZXDSL531/get_config.pyo -noc/sa/profiles/ZTE/ZXDSL531/get_dot11_associations.py -noc/sa/profiles/ZTE/ZXDSL531/get_dot11_associations.pyc -noc/sa/profiles/ZTE/ZXDSL531/get_dot11_associations.pyo -noc/sa/profiles/ZTE/ZXDSL531/get_version.py -noc/sa/profiles/ZTE/ZXDSL531/get_version.pyc -noc/sa/profiles/ZTE/ZXDSL531/get_version.pyo -noc/sa/profiles/ZTE/ZXDSL531/highlight.py -noc/sa/profiles/ZTE/ZXDSL531/highlight.pyc -noc/sa/profiles/ZTE/ZXDSL531/highlight.pyo -noc/sa/profiles/ZTE/ZXDSL531/supported.csv -noc/sa/profiles/ZTE/__init__.py -noc/sa/profiles/ZTE/__init__.pyc -noc/sa/profiles/ZTE/__init__.pyo -noc/sa/profiles/Zebra/Zebra/__init__.py -noc/sa/profiles/Zebra/Zebra/__init__.pyc -noc/sa/profiles/Zebra/Zebra/__init__.pyo -noc/sa/profiles/Zebra/Zebra/get_config.py -noc/sa/profiles/Zebra/Zebra/get_config.pyc -noc/sa/profiles/Zebra/Zebra/get_config.pyo -noc/sa/profiles/Zebra/__init__.py -noc/sa/profiles/Zebra/__init__.pyc -noc/sa/profiles/Zebra/__init__.pyo -noc/sa/profiles/Zyxel/ZyNOS/__init__.py -noc/sa/profiles/Zyxel/ZyNOS/__init__.pyc -noc/sa/profiles/Zyxel/ZyNOS/__init__.pyo -noc/sa/profiles/Zyxel/ZyNOS/get_arp.py -noc/sa/profiles/Zyxel/ZyNOS/get_arp.pyc -noc/sa/profiles/Zyxel/ZyNOS/get_arp.pyo -noc/sa/profiles/Zyxel/ZyNOS/get_chassis_id.py -noc/sa/profiles/Zyxel/ZyNOS/get_chassis_id.pyc -noc/sa/profiles/Zyxel/ZyNOS/get_chassis_id.pyo -noc/sa/profiles/Zyxel/ZyNOS/get_config.py -noc/sa/profiles/Zyxel/ZyNOS/get_config.pyc -noc/sa/profiles/Zyxel/ZyNOS/get_config.pyo -noc/sa/profiles/Zyxel/ZyNOS/get_mac_address_table.py -noc/sa/profiles/Zyxel/ZyNOS/get_mac_address_table.pyc -noc/sa/profiles/Zyxel/ZyNOS/get_mac_address_table.pyo -noc/sa/profiles/Zyxel/ZyNOS/get_version.py -noc/sa/profiles/Zyxel/ZyNOS/get_version.pyc -noc/sa/profiles/Zyxel/ZyNOS/get_version.pyo -noc/sa/profiles/Zyxel/ZyNOS/get_vlans.py -noc/sa/profiles/Zyxel/ZyNOS/get_vlans.pyc -noc/sa/profiles/Zyxel/ZyNOS/get_vlans.pyo -noc/sa/profiles/Zyxel/ZyNOS/highlight.py -noc/sa/profiles/Zyxel/ZyNOS/highlight.pyc -noc/sa/profiles/Zyxel/ZyNOS/highlight.pyo -noc/sa/profiles/Zyxel/ZyNOS/supported.csv -noc/sa/profiles/Zyxel/ZyNOS/tests/Zyxel_ES_2024A_3_80_TX_0__get_chassis_id_0001.py -noc/sa/profiles/Zyxel/ZyNOS/tests/Zyxel_ES_2024A_3_80_TX_0__get_chassis_id_0001.pyc -noc/sa/profiles/Zyxel/ZyNOS/tests/Zyxel_ES_2024A_3_80_TX_0__get_chassis_id_0001.pyo -noc/sa/profiles/Zyxel/ZyNOS/tests/Zyxel_ES_2024A_3_80_TX_0__get_vlans_0001.py -noc/sa/profiles/Zyxel/ZyNOS/tests/Zyxel_ES_2024A_3_80_TX_0__get_vlans_0001.pyc -noc/sa/profiles/Zyxel/ZyNOS/tests/Zyxel_ES_2024A_3_80_TX_0__get_vlans_0001.pyo -noc/sa/profiles/Zyxel/ZyNOS/tests/Zyxel_ES_2024A_3_80_TX_0__get_vlans_0002.py -noc/sa/profiles/Zyxel/ZyNOS/tests/Zyxel_ES_2024A_3_80_TX_0__get_vlans_0002.pyc -noc/sa/profiles/Zyxel/ZyNOS/tests/Zyxel_ES_2024A_3_80_TX_0__get_vlans_0002.pyo -noc/sa/profiles/Zyxel/ZyNOS/tests/Zyxel_ES_2024A_3_90_TX_0__get_chassis_id_0001.py -noc/sa/profiles/Zyxel/ZyNOS/tests/Zyxel_ES_2024A_3_90_TX_0__get_chassis_id_0001.pyc -noc/sa/profiles/Zyxel/ZyNOS/tests/Zyxel_ES_2024A_3_90_TX_0__get_chassis_id_0001.pyo -noc/sa/profiles/Zyxel/ZyNOS/tests/Zyxel_ES_2024A_3_90_TX_1__get_arp_0001.py -noc/sa/profiles/Zyxel/ZyNOS/tests/Zyxel_ES_2024A_3_90_TX_1__get_arp_0001.pyc -noc/sa/profiles/Zyxel/ZyNOS/tests/Zyxel_ES_2024A_3_90_TX_1__get_arp_0001.pyo -noc/sa/profiles/Zyxel/ZyNOS/tests/Zyxel_ES_2108_G_3_80_ABL_0__get_arp_0001.py -noc/sa/profiles/Zyxel/ZyNOS/tests/Zyxel_ES_2108_G_3_80_ABL_0__get_arp_0001.pyc -noc/sa/profiles/Zyxel/ZyNOS/tests/Zyxel_ES_2108_G_3_80_ABL_0__get_arp_0001.pyo -noc/sa/profiles/Zyxel/ZyNOS/tests/Zyxel_ES_2108_G_3_80_ABL_0__get_chassis_id_0001.py -noc/sa/profiles/Zyxel/ZyNOS/tests/Zyxel_ES_2108_G_3_80_ABL_0__get_chassis_id_0001.pyc -noc/sa/profiles/Zyxel/ZyNOS/tests/Zyxel_ES_2108_G_3_80_ABL_0__get_chassis_id_0001.pyo -noc/sa/profiles/Zyxel/ZyNOS/tests/Zyxel_GS_4012F_3_80_TS_4__get_arp_0001.py -noc/sa/profiles/Zyxel/ZyNOS/tests/Zyxel_GS_4012F_3_80_TS_4__get_arp_0001.pyc -noc/sa/profiles/Zyxel/ZyNOS/tests/Zyxel_GS_4012F_3_80_TS_4__get_arp_0001.pyo -noc/sa/profiles/Zyxel/ZyNOS/tests/Zyxel_GS_4012F_3_80_TS_4__get_chassis_id_0001.py -noc/sa/profiles/Zyxel/ZyNOS/tests/Zyxel_GS_4012F_3_80_TS_4__get_chassis_id_0001.pyc -noc/sa/profiles/Zyxel/ZyNOS/tests/Zyxel_GS_4012F_3_80_TS_4__get_chassis_id_0001.pyo -noc/sa/profiles/Zyxel/ZyNOS/tests/__init__.py -noc/sa/profiles/Zyxel/ZyNOS/tests/__init__.pyc -noc/sa/profiles/Zyxel/ZyNOS/tests/__init__.pyo -noc/sa/profiles/Zyxel/ZyNOSv2/__init__.py -noc/sa/profiles/Zyxel/ZyNOSv2/__init__.pyc -noc/sa/profiles/Zyxel/ZyNOSv2/__init__.pyo -noc/sa/profiles/Zyxel/ZyNOSv2/get_config.py -noc/sa/profiles/Zyxel/ZyNOSv2/get_config.pyc -noc/sa/profiles/Zyxel/ZyNOSv2/get_config.pyo -noc/sa/profiles/Zyxel/ZyNOSv2/get_version.py -noc/sa/profiles/Zyxel/ZyNOSv2/get_version.pyc -noc/sa/profiles/Zyxel/ZyNOSv2/get_version.pyo -noc/sa/profiles/Zyxel/ZyNOSv2/highlight.py -noc/sa/profiles/Zyxel/ZyNOSv2/highlight.pyc -noc/sa/profiles/Zyxel/ZyNOSv2/highlight.pyo -noc/sa/profiles/Zyxel/ZyNOSv2/supported.csv -noc/sa/profiles/Zyxel/__init__.py -noc/sa/profiles/Zyxel/__init__.pyc -noc/sa/profiles/Zyxel/__init__.pyo -noc/sa/profiles/__init__.py -noc/sa/profiles/__init__.pyc -noc/sa/profiles/__init__.pyo -noc/sa/profiles/f5/BIGIP/__init__.py -noc/sa/profiles/f5/BIGIP/__init__.pyc -noc/sa/profiles/f5/BIGIP/__init__.pyo -noc/sa/profiles/f5/BIGIP/get_config.py -noc/sa/profiles/f5/BIGIP/get_config.pyc -noc/sa/profiles/f5/BIGIP/get_config.pyo -noc/sa/profiles/f5/BIGIP/get_version.py -noc/sa/profiles/f5/BIGIP/get_version.pyc -noc/sa/profiles/f5/BIGIP/get_version.pyo -noc/sa/profiles/f5/BIGIP/get_vlans.py -noc/sa/profiles/f5/BIGIP/get_vlans.pyc -noc/sa/profiles/f5/BIGIP/get_vlans.pyo -noc/sa/profiles/f5/BIGIP/highlight.py -noc/sa/profiles/f5/BIGIP/highlight.pyc -noc/sa/profiles/f5/BIGIP/highlight.pyo -noc/sa/profiles/f5/BIGIP/supported.csv -noc/sa/profiles/f5/BIGIP/tests/__init__.py -noc/sa/profiles/f5/BIGIP/tests/__init__.pyc -noc/sa/profiles/f5/BIGIP/tests/__init__.pyo -noc/sa/profiles/f5/BIGIP/tests/f5_BIG_IP_10_2_0_1707_0_get_version_0001.py -noc/sa/profiles/f5/BIGIP/tests/f5_BIG_IP_10_2_0_1707_0_get_version_0001.pyc -noc/sa/profiles/f5/BIGIP/tests/f5_BIG_IP_10_2_0_1707_0_get_version_0001.pyo -noc/sa/profiles/f5/BIGIP/tests/f5_BIG_IP_10_2_0_1707_0_get_vlans_0001.py -noc/sa/profiles/f5/BIGIP/tests/f5_BIG_IP_10_2_0_1707_0_get_vlans_0001.pyc -noc/sa/profiles/f5/BIGIP/tests/f5_BIG_IP_10_2_0_1707_0_get_vlans_0001.pyo -noc/sa/profiles/f5/__init__.py -noc/sa/profiles/f5/__init__.pyc -noc/sa/profiles/f5/__init__.pyo -noc/sa/protocols/Makefile -noc/sa/protocols/__init__.py -noc/sa/protocols/__init__.pyc -noc/sa/protocols/__init__.pyo -noc/sa/protocols/pm.proto -noc/sa/protocols/pm_pb2.py -noc/sa/protocols/pm_pb2.pyc -noc/sa/protocols/pm_pb2.pyo -noc/sa/protocols/sae.proto -noc/sa/protocols/sae_pb2.py -noc/sa/protocols/sae_pb2.pyc -noc/sa/protocols/sae_pb2.pyo -noc/sa/rpc.py -noc/sa/rpc.pyc -noc/sa/rpc.pyo -noc/sa/sae.py -noc/sa/sae.pyc -noc/sa/sae.pyo -noc/sa/script.py -noc/sa/script.pyc -noc/sa/script.pyo -noc/sa/servers/__init__.py -noc/sa/servers/__init__.pyc -noc/sa/servers/__init__.pyo -noc/sa/servers/ftp.py -noc/sa/servers/ftp.pyc -noc/sa/servers/ftp.pyo -noc/sa/servers/http.py -noc/sa/servers/http.pyc -noc/sa/servers/http.pyo -noc/sa/servers/tftp.py -noc/sa/servers/tftp.pyc -noc/sa/servers/tftp.pyo -noc/sa/syslogcollector.py -noc/sa/syslogcollector.pyc -noc/sa/syslogcollector.pyo -noc/sa/tests/__init__.py -noc/sa/tests/__init__.pyc -noc/sa/tests/__init__.pyo -noc/sa/tests/activator.json -noc/sa/tests/activator.py -noc/sa/tests/activator.pyc -noc/sa/tests/activator.pyo -noc/sa/trapcollector.py -noc/sa/trapcollector.pyc -noc/sa/trapcollector.pyo -noc/scripts/about -noc/scripts/caninstall.py -noc/scripts/clone-activator -noc/scripts/makemessages -noc/scripts/noc-activator.py -noc/scripts/noc-classifier.py -noc/scripts/noc-correlator.py -noc/scripts/noc-fcgi.py -noc/scripts/noc-launcher.py -noc/scripts/noc-notifier.py -noc/scripts/noc-probe.py -noc/scripts/noc-sae.py -noc/scripts/post-install -noc/scripts/post-update -noc/scripts/ptytest.py -noc/scripts/stdin-wrapper -noc/scripts/sync-contrib -noc/scripts/update-supported -noc/settings.py -noc/settings.pyc -noc/settings.pyo -noc/setup.cfg -noc/setup.py -noc/share/dns/bind/README -noc/share/dns/bind/hgrc -noc/share/dns/bind/named-update -noc/share/dns/bind/named-update.conf -noc/share/docs/en/nocbook/Makefile -noc/share/docs/en/nocbook/about.rst -noc/share/docs/en/nocbook/cm/apps/config/index.rst -noc/share/docs/en/nocbook/cm/apps/dns/index.rst -noc/share/docs/en/nocbook/cm/apps/objectnotify/index.rst -noc/share/docs/en/nocbook/cm/apps/prefixlist/index.rst -noc/share/docs/en/nocbook/cm/apps/reportlatestchanges/index.rst -noc/share/docs/en/nocbook/cm/apps/reportstaleconfigs/index.rst -noc/share/docs/en/nocbook/cm/apps/rpsl/index.rst -noc/share/docs/en/nocbook/cm/index.rst -noc/share/docs/en/nocbook/cm/overview.rst -noc/share/docs/en/nocbook/conf.py -noc/share/docs/en/nocbook/configuration.rst -noc/share/docs/en/nocbook/conventions.rst -noc/share/docs/en/nocbook/datetime_format.rst -noc/share/docs/en/nocbook/dns/apps/dnsserver/index.rst -noc/share/docs/en/nocbook/dns/apps/dnszone/index.rst -noc/share/docs/en/nocbook/dns/apps/dnszoneprofile/index.rst -noc/share/docs/en/nocbook/dns/apps/dnszonerecordtype/index.rst -noc/share/docs/en/nocbook/dns/apps/reportduplicatedfqdns/index.rst -noc/share/docs/en/nocbook/dns/apps/reportexpiringdomains/index.rst -noc/share/docs/en/nocbook/dns/apps/reportmissedp2p/index.rst -noc/share/docs/en/nocbook/dns/apps/reportmissedreverse/index.rst -noc/share/docs/en/nocbook/dns/apps/reportnszonesummary/index.rst -noc/share/docs/en/nocbook/dns/apps/reportsupportedns/index.rst -noc/share/docs/en/nocbook/dns/dns_workflow.png -noc/share/docs/en/nocbook/dns/index.rst -noc/share/docs/en/nocbook/dns/overview.rst -noc/share/docs/en/nocbook/fm/apps/activeproblems/index.rst -noc/share/docs/en/nocbook/fm/apps/event/index.rst -noc/share/docs/en/nocbook/fm/apps/eventarchivationrule/index.rst -noc/share/docs/en/nocbook/fm/apps/eventcategory/index.rst -noc/share/docs/en/nocbook/fm/apps/eventclass/index.rst -noc/share/docs/en/nocbook/fm/apps/eventclassificationrule/index.rst -noc/share/docs/en/nocbook/fm/apps/eventcorrelationrule/index.rst -noc/share/docs/en/nocbook/fm/apps/eventpostprocessingrule/index.rst -noc/share/docs/en/nocbook/fm/apps/eventpriority/index.rst -noc/share/docs/en/nocbook/fm/apps/ignoreeventrules/index.rst -noc/share/docs/en/nocbook/fm/apps/mib/index.rst -noc/share/docs/en/nocbook/fm/apps/mibview/index.rst -noc/share/docs/en/nocbook/fm/apps/reportclassificationquality/index.rst -noc/share/docs/en/nocbook/fm/apps/reportclassificationrule/index.rst -noc/share/docs/en/nocbook/fm/apps/reporteventsummary/index.rst -noc/share/docs/en/nocbook/fm/apps/reportmibs/index.rst -noc/share/docs/en/nocbook/fm/apps/reportunclassifiedoids/index.rst -noc/share/docs/en/nocbook/fm/fm_event_classification.png -noc/share/docs/en/nocbook/fm/fm_event_processing.png -noc/share/docs/en/nocbook/fm/index.rst -noc/share/docs/en/nocbook/fm/overview.rst -noc/share/docs/en/nocbook/index.rst -noc/share/docs/en/nocbook/installation/authentication.rst -noc/share/docs/en/nocbook/installation/index.rst -noc/share/docs/en/nocbook/installation/install_source.rst -noc/share/docs/en/nocbook/installation/specific.rst -noc/share/docs/en/nocbook/installation/specific_linux.rst -noc/share/docs/en/nocbook/installation/specific_solaris10.rst -noc/share/docs/en/nocbook/installation/testing.rst -noc/share/docs/en/nocbook/installation/webserver.rst -noc/share/docs/en/nocbook/ip/apps/ipmanage/index.rst -noc/share/docs/en/nocbook/ip/apps/ipv4addressrange/index.rst -noc/share/docs/en/nocbook/ip/apps/ipv4blockaccess/index.rst -noc/share/docs/en/nocbook/ip/apps/reportallocated/index.rst -noc/share/docs/en/nocbook/ip/apps/reportexpanded/index.rst -noc/share/docs/en/nocbook/ip/apps/reportfree/index.rst -noc/share/docs/en/nocbook/ip/apps/reportsummary/index.rst -noc/share/docs/en/nocbook/ip/apps/tools/index.rst -noc/share/docs/en/nocbook/ip/apps/vrf/index.rst -noc/share/docs/en/nocbook/ip/apps/vrfgroup/index.rst -noc/share/docs/en/nocbook/ip/index.rst -noc/share/docs/en/nocbook/ip/overview.rst -noc/share/docs/en/nocbook/kb/apps/globalbookmark/index.rst -noc/share/docs/en/nocbook/kb/apps/index/index.rst -noc/share/docs/en/nocbook/kb/apps/kbentry/index.rst -noc/share/docs/en/nocbook/kb/apps/kbentrytemplate/index.rst -noc/share/docs/en/nocbook/kb/apps/userbookmark/index.rst -noc/share/docs/en/nocbook/kb/apps/view/index.rst -noc/share/docs/en/nocbook/kb/index.rst -noc/share/docs/en/nocbook/kb/overview.rst -noc/share/docs/en/nocbook/license.rst -noc/share/docs/en/nocbook/main/apps/audittrail/index.rst -noc/share/docs/en/nocbook/main/apps/calculator/index.rst -noc/share/docs/en/nocbook/main/apps/config/index.rst -noc/share/docs/en/nocbook/main/apps/configs/index.rst -noc/share/docs/en/nocbook/main/apps/csv/index.rst -noc/share/docs/en/nocbook/main/apps/doc/index.rst -noc/share/docs/en/nocbook/main/apps/group/index.rst -noc/share/docs/en/nocbook/main/apps/index/index.rst -noc/share/docs/en/nocbook/main/apps/language/index.rst -noc/share/docs/en/nocbook/main/apps/message/index.rst -noc/share/docs/en/nocbook/main/apps/mimetype/index.rst -noc/share/docs/en/nocbook/main/apps/notification/index.rst -noc/share/docs/en/nocbook/main/apps/notificationgroup/index.rst -noc/share/docs/en/nocbook/main/apps/pendingnotifications/index.rst -noc/share/docs/en/nocbook/main/apps/pyrule/index.rst -noc/share/docs/en/nocbook/main/apps/refbook/index.rst -noc/share/docs/en/nocbook/main/apps/refbookadmin/index.rst -noc/share/docs/en/nocbook/main/apps/report/index.rst -noc/share/docs/en/nocbook/main/apps/reportbackups/index.rst -noc/share/docs/en/nocbook/main/apps/reportdbsummary/index.rst -noc/share/docs/en/nocbook/main/apps/reportloc/index.rst -noc/share/docs/en/nocbook/main/apps/reportsystemversion/index.rst -noc/share/docs/en/nocbook/main/apps/reporttaggedmodels/index.rst -noc/share/docs/en/nocbook/main/apps/search/index.rst -noc/share/docs/en/nocbook/main/apps/systemnotification/index.rst -noc/share/docs/en/nocbook/main/apps/tagmanage/index.rst -noc/share/docs/en/nocbook/main/apps/tags/index.rst -noc/share/docs/en/nocbook/main/apps/timepattern/index.rst -noc/share/docs/en/nocbook/main/apps/user/index.rst -noc/share/docs/en/nocbook/main/apps/userprofile/index.rst -noc/share/docs/en/nocbook/main/index.rst -noc/share/docs/en/nocbook/main/overview.rst -noc/share/docs/en/nocbook/peer/apps/as/index.rst -noc/share/docs/en/nocbook/peer/apps/asset/index.rst -noc/share/docs/en/nocbook/peer/apps/community/index.rst -noc/share/docs/en/nocbook/peer/apps/communitytype/index.rst -noc/share/docs/en/nocbook/peer/apps/maintainer/index.rst -noc/share/docs/en/nocbook/peer/apps/organisation/index.rst -noc/share/docs/en/nocbook/peer/apps/peer/index.rst -noc/share/docs/en/nocbook/peer/apps/peergroup/index.rst -noc/share/docs/en/nocbook/peer/apps/peeringpoing/index.rst -noc/share/docs/en/nocbook/peer/apps/person/index.rst -noc/share/docs/en/nocbook/peer/apps/prefixlistbuilder/index.rst -noc/share/docs/en/nocbook/peer/apps/rir/index.rst -noc/share/docs/en/nocbook/peer/index.rst -noc/share/docs/en/nocbook/peer/overview.rst -noc/share/docs/en/nocbook/pm/apps/chart/index.rst -noc/share/docs/en/nocbook/pm/apps/timeseries/index.rst -noc/share/docs/en/nocbook/pm/apps/view/index.rst -noc/share/docs/en/nocbook/pm/index.rst -noc/share/docs/en/nocbook/pm/overview.rst -noc/share/docs/en/nocbook/profiles/3Com/SuperStack/index.rst -noc/share/docs/en/nocbook/profiles/AddPac/APOS/index.rst -noc/share/docs/en/nocbook/profiles/Alcatel/AOS/index.rst -noc/share/docs/en/nocbook/profiles/Alcatel/OS62xx/index.rst -noc/share/docs/en/nocbook/profiles/Alcatel/TIMOS/index.rst -noc/share/docs/en/nocbook/profiles/AlliedTelesis/AT8000S/index.rst -noc/share/docs/en/nocbook/profiles/AlliedTelesis/AT8500/index.rst -noc/share/docs/en/nocbook/profiles/Audiocodes/Mediant2000/index.rst -noc/share/docs/en/nocbook/profiles/Brocade/FabricOS/index.rst -noc/share/docs/en/nocbook/profiles/Cisco/ASA/index.rst -noc/share/docs/en/nocbook/profiles/Cisco/AireOS/index.rst -noc/share/docs/en/nocbook/profiles/Cisco/CatOS/index.rst -noc/share/docs/en/nocbook/profiles/Cisco/FWSM/index.rst -noc/share/docs/en/nocbook/profiles/Cisco/IOS/index.rst -noc/share/docs/en/nocbook/profiles/Cisco/NXOS/index.rst -noc/share/docs/en/nocbook/profiles/DLink/DxS/index.rst -noc/share/docs/en/nocbook/profiles/DLink/DxS_Cisco_CLI/index.rst -noc/share/docs/en/nocbook/profiles/EdgeCore/ES/index.rst -noc/share/docs/en/nocbook/profiles/Extreme/XOS/index.rst -noc/share/docs/en/nocbook/profiles/Force10/FTOS/index.rst -noc/share/docs/en/nocbook/profiles/Generic/Host/index.rst -noc/share/docs/en/nocbook/profiles/HP/GbE2/index.rst -noc/share/docs/en/nocbook/profiles/HP/ProCurve/index.rst -noc/share/docs/en/nocbook/profiles/HP/iLO2/index.rst -noc/share/docs/en/nocbook/profiles/Huawei/UMG8900/index.rst -noc/share/docs/en/nocbook/profiles/Huawei/VRP/index.rst -noc/share/docs/en/nocbook/profiles/InfiNet/WANFlexX/index.rst -noc/share/docs/en/nocbook/profiles/Juniper/JUNOS/index.rst -noc/share/docs/en/nocbook/profiles/Juniper/JUNOSe/index.rst -noc/share/docs/en/nocbook/profiles/Juniper/SRCPE/index.rst -noc/share/docs/en/nocbook/profiles/Juniper/ScreenOS/index.rst -noc/share/docs/en/nocbook/profiles/Linksys/SPS2xx/index.rst -noc/share/docs/en/nocbook/profiles/MikroTik/RouterOS/index.rst -noc/share/docs/en/nocbook/profiles/OS/FreeBSD/index.rst -noc/share/docs/en/nocbook/profiles/Protei/MediaGateway/index.rst -noc/share/docs/en/nocbook/profiles/Raisecom/ROS/index.rst -noc/share/docs/en/nocbook/profiles/Raritan/DominionSX/index.rst -noc/share/docs/en/nocbook/profiles/Sun/iLOM3/index.rst -noc/share/docs/en/nocbook/profiles/Ubiquity/AirOS/index.rst -noc/share/docs/en/nocbook/profiles/Vyatta/Vyatta/index.rst -noc/share/docs/en/nocbook/profiles/ZTE/ZXDSL531/index.rst -noc/share/docs/en/nocbook/profiles/Zebra/Zebra/index.rst -noc/share/docs/en/nocbook/profiles/ZyXEL/ZyNOS/index.rst -noc/share/docs/en/nocbook/profiles/ZyXEL/ZyNOSv2/index.rst -noc/share/docs/en/nocbook/profiles/f5/BIGIP/index.rst -noc/share/docs/en/nocbook/releasenotes/0.1.1.rst -noc/share/docs/en/nocbook/releasenotes/0.1.2.rst -noc/share/docs/en/nocbook/releasenotes/0.1.3.rst -noc/share/docs/en/nocbook/releasenotes/0.1.4.rst -noc/share/docs/en/nocbook/releasenotes/0.1.5.rst -noc/share/docs/en/nocbook/releasenotes/0.1.6.rst -noc/share/docs/en/nocbook/releasenotes/0.1.7.rst -noc/share/docs/en/nocbook/releasenotes/0.1.8.rst -noc/share/docs/en/nocbook/releasenotes/0.1.9.rst -noc/share/docs/en/nocbook/releasenotes/0.1.rst -noc/share/docs/en/nocbook/releasenotes/0.1RC1.rst -noc/share/docs/en/nocbook/releasenotes/0.1RC2.rst -noc/share/docs/en/nocbook/releasenotes/0.2.1.rst -noc/share/docs/en/nocbook/releasenotes/0.2.2.rst -noc/share/docs/en/nocbook/releasenotes/0.2.3.rst -noc/share/docs/en/nocbook/releasenotes/0.2.4.rst -noc/share/docs/en/nocbook/releasenotes/0.2.5.rst -noc/share/docs/en/nocbook/releasenotes/0.2.6.rst -noc/share/docs/en/nocbook/releasenotes/0.2.7.rst -noc/share/docs/en/nocbook/releasenotes/0.2.rst -noc/share/docs/en/nocbook/releasenotes/0.3.1.rst -noc/share/docs/en/nocbook/releasenotes/0.3.2.rst -noc/share/docs/en/nocbook/releasenotes/0.3.rst -noc/share/docs/en/nocbook/releasenotes/0.4.rst -noc/share/docs/en/nocbook/releasenotes/0.5.1.rst -noc/share/docs/en/nocbook/releasenotes/0.5.rst -noc/share/docs/en/nocbook/releasenotes/0.6.1.rst -noc/share/docs/en/nocbook/releasenotes/0.6.2.rst -noc/share/docs/en/nocbook/releasenotes/0.6.rst -noc/share/docs/en/nocbook/releasenotes/index.rst -noc/share/docs/en/nocbook/sa/activator.rst -noc/share/docs/en/nocbook/sa/activator_fsm.png -noc/share/docs/en/nocbook/sa/apps/activator/index.rst -noc/share/docs/en/nocbook/sa/apps/administrativedomain/index.rst -noc/share/docs/en/nocbook/sa/apps/checksupported/index.rst -noc/share/docs/en/nocbook/sa/apps/macreport/index.rst -noc/share/docs/en/nocbook/sa/apps/managedobject/index.rst -noc/share/docs/en/nocbook/sa/apps/managedobjectselector/index.rst -noc/share/docs/en/nocbook/sa/apps/mrtask/index.rst -noc/share/docs/en/nocbook/sa/apps/reportobjectsummary/index.rst -noc/share/docs/en/nocbook/sa/apps/reportsupportedequipment/index.rst -noc/share/docs/en/nocbook/sa/apps/runcommands/index.rst -noc/share/docs/en/nocbook/sa/apps/showswitchports/index.rst -noc/share/docs/en/nocbook/sa/apps/switchportvalidation/index.rst -noc/share/docs/en/nocbook/sa/apps/taskschedule/index.rst -noc/share/docs/en/nocbook/sa/apps/topologydiscovery/index.rst -noc/share/docs/en/nocbook/sa/apps/versioninventory/index.rst -noc/share/docs/en/nocbook/sa/arch.png -noc/share/docs/en/nocbook/sa/architecture.rst -noc/share/docs/en/nocbook/sa/debug.rst -noc/share/docs/en/nocbook/sa/index.rst -noc/share/docs/en/nocbook/sa/mapreduce.rst -noc/share/docs/en/nocbook/sa/overview.rst -noc/share/docs/en/nocbook/sa/periodic.rst -noc/share/docs/en/nocbook/sa/protocol.rst -noc/share/docs/en/nocbook/sa/sae.rst -noc/share/docs/en/nocbook/sa/terminology.rst -noc/share/docs/en/nocbook/supported.rst -noc/share/docs/en/nocbook/updating.rst -noc/share/docs/en/nocbook/vc/apps/vc/index.rst -noc/share/docs/en/nocbook/vc/apps/vcbindfilter/index.rst -noc/share/docs/en/nocbook/vc/apps/vcdomain/index.rst -noc/share/docs/en/nocbook/vc/apps/vcfilter/index.rst -noc/share/docs/en/nocbook/vc/apps/vctype/index.rst -noc/share/docs/en/nocbook/vc/index.rst -noc/share/docs/en/nocbook/vc/overview.rst -noc/share/docs/ext/supported.py -noc/share/linux/lsb/init.d/noc-launcher -noc/share/linux/ubuntu/init.d/noc-launcher -noc/share/mibs/AGENT-GENERAL-MIB.mib -noc/share/mibs/AIRESPACE-REF-MIB.mib -noc/share/mibs/AIRESPACE-WIRELESS-MIB.mib -noc/share/mibs/ARP-Spoofing-Prevent-MIB.mib -noc/share/mibs/BGP4-MIB.mib -noc/share/mibs/BRIDGE-MIB.mib -noc/share/mibs/CISCO-BGP4-MIB.mib -noc/share/mibs/CISCO-CONFIG-MAN-MIB.mib -noc/share/mibs/CISCO-DIAL-CONTROL-MIB.mib -noc/share/mibs/CISCO-IPSEC-FLOW-MONITOR-MIB.mib -noc/share/mibs/CISCO-IPSEC-MIB.mib -noc/share/mibs/CISCO-ISDN-MIB.mib -noc/share/mibs/CISCO-LWAPP-AAA-MIB.mib -noc/share/mibs/CISCO-LWAPP-TC-MIB.mib -noc/share/mibs/CISCO-LWAPP-WLAN-MIB.mib -noc/share/mibs/CISCO-MEDIA-GATEWAY-MIB.mib -noc/share/mibs/CISCO-SMI.mib -noc/share/mibs/CISCO-STP-EXTENSIONS-MIB.mib -noc/share/mibs/CISCO-SYSLOG-MIB.mib -noc/share/mibs/CISCO-TC.mib -noc/share/mibs/CISCO-VTP-MIB.mib -noc/share/mibs/CISCOTRAP-MIB.mib -noc/share/mibs/DIAL-CONTROL-MIB.mib -noc/share/mibs/DLINK-ID-REC-MIB.mib -noc/share/mibs/ENTITY-MIB.mib -noc/share/mibs/F10-CHASSIS-MIB.mib -noc/share/mibs/F5-BIGIP-COMMON-MIB.mib -noc/share/mibs/FORCE10-SMI.mib -noc/share/mibs/FORCE10-TC.mib -noc/share/mibs/HCNUM-TC.mib -noc/share/mibs/IANAifType-MIB.mib -noc/share/mibs/IEEE802dot11-MIB.mib -noc/share/mibs/IF-MIB.mib -noc/share/mibs/INET-ADDRESS-MIB.mib -noc/share/mibs/ISDN-MIB.mib -noc/share/mibs/JUNIPER-CFGMGMT-MIB.mib -noc/share/mibs/JUNIPER-CHASSIS-DEFINES-MIB.mib -noc/share/mibs/JUNIPER-COLLECTOR-MIB.mib -noc/share/mibs/JUNIPER-JS-SCREENING-MIB.mib -noc/share/mibs/JUNIPER-JS-SMI.mib -noc/share/mibs/JUNIPER-LDP-MIB.mib -noc/share/mibs/JUNIPER-MPLS-LDP-MIB.mib -noc/share/mibs/JUNIPER-SMI.mib -noc/share/mibs/JUNIPER-VPN-MIB.mib -noc/share/mibs/MPLS-TC-STD-MIB.mib -noc/share/mibs/MPLS-VPN-MIB.mib -noc/share/mibs/OLD-CISCO-INTERFACES-MIB.mib -noc/share/mibs/OLD-CISCO-SYSTEM-MIB.mib -noc/share/mibs/OLD-CISCO-TCP-MIB.mib -noc/share/mibs/OLD-CISCO-TS-MIB.mib -noc/share/mibs/OSPF-MIB.mib -noc/share/mibs/OSPF-TRAP-MIB.mib -noc/share/mibs/P-BRIDGE-MIB.mib -noc/share/mibs/Q-BRIDGE-MIB.mib -noc/share/mibs/RFC-1212.mib -noc/share/mibs/RFC-1215.mib -noc/share/mibs/RFC1155-SMI.mib -noc/share/mibs/RFC1213-MIB.mib -noc/share/mibs/RMON-MIB.mib -noc/share/mibs/RMON2-MIB.mib -noc/share/mibs/SAFEGUARD-ENGINE-MIB.mib -noc/share/mibs/SNMP-FRAMEWORK-MIB.mib -noc/share/mibs/SNMPv2-CONF.mib -noc/share/mibs/SNMPv2-MIB.mib -noc/share/mibs/SNMPv2-SMI.mib -noc/share/mibs/SNMPv2-TC.mib -noc/share/mibs/TOKEN-RING-RMON-MIB.mib -noc/share/sunos/manifest/noc-activator.xml -noc/share/sunos/manifest/noc-classifier.xml -noc/share/sunos/manifest/noc-correlator.xml -noc/share/sunos/manifest/noc-fcgi.xml -noc/share/sunos/manifest/noc-launcher.xml -noc/share/sunos/manifest/noc-sae.xml -noc/static/apps/fm/event/css/index.css -noc/static/apps/fm/event/js/index.js -noc/static/apps/ip/ipam/css/vrf_index.css -noc/static/apps/kb/view/mediawiki/bullet.gif -noc/static/apps/kb/view/mediawiki/main.css -noc/static/apps/kb/view/mediawiki/shared.css -noc/static/css/databrowse.css -noc/static/css/diff.css -noc/static/css/forms.css -noc/static/css/highlight.css -noc/static/css/jquery-ui.css -noc/static/css/jquery.autocomplete.css -noc/static/css/jquery.colorPicker.css -noc/static/css/jquery.pager.css -noc/static/css/jquery.svg.css -noc/static/css/jquery.tokeninput.css -noc/static/css/login.css -noc/static/css/main.css -noc/static/css/menu.css -noc/static/css/pygments.css -noc/static/css/rack.css -noc/static/css/tablesorter.css -noc/static/img/asc.gif -noc/static/img/bg.gif -noc/static/img/blank_1x1.png -noc/static/img/configuration.png -noc/static/img/cp-arrow.gif -noc/static/img/desc.gif -noc/static/img/favicon/black-32x32.png -noc/static/img/favicon/green-32x32.png -noc/static/img/favicon/ocean-32x32.png -noc/static/img/favicon/red-32x32.png -noc/static/img/indicator.gif -noc/static/img/logo.png -noc/static/img/managed.png -noc/static/img/ui-bg_flat_0_aaaaaa_40x100.png -noc/static/img/ui-bg_flat_75_ffffff_40x100.png -noc/static/img/ui-bg_glass_55_fbf9ee_1x400.png -noc/static/img/ui-bg_glass_65_ffffff_1x400.png -noc/static/img/ui-bg_glass_75_dadada_1x400.png -noc/static/img/ui-bg_glass_75_e6e6e6_1x400.png -noc/static/img/ui-bg_glass_95_fef1ec_1x400.png -noc/static/img/ui-bg_highlight-soft_75_cccccc_1x100.png -noc/static/img/ui-icons_cd0a0a_256x240.png -noc/static/js/jquery-ui.min.js -noc/static/js/jquery.autocomplete.js -noc/static/js/jquery.colorPicker.js -noc/static/js/jquery.form.js -noc/static/js/jquery.pager.js -noc/static/js/jquery.rotate_text.js -noc/static/js/jquery.svg.js -noc/static/js/jquery.tablesorter.js -noc/static/js/jquery.tokeninput.js -noc/static/js/menu.js -noc/static/js/noc.chart.js -noc/templates/404.html -noc/templates/500.html -noc/templates/admin/base.html -noc/templates/admin/base_site.html -noc/templates/admin/change_form.html -noc/templates/admin/change_list.html -noc/templates/admin/delete_confirmation.html -noc/templates/databrowse/base.html -noc/templates/includes/noc_fieldset.html -noc/templates/report.html -noc/templates/report_form.html -noc/templates/sa_app_form.html -noc/templates/sa_app_index.html -noc/templates/sa_app_result.html -noc/templates/template.html -noc/tests/__init__.py -noc/tests/__init__.pyc -noc/tests/__init__.pyo -noc/tests/code.py -noc/tests/code.pyc -noc/tests/code.pyo -noc/tests/models.py -noc/tests/models.pyc -noc/tests/models.pyo -noc/tests/module_names.py -noc/tests/module_names.pyc -noc/tests/module_names.pyo -noc/tests/templates.py -noc/tests/templates.pyc -noc/tests/templates.pyo -noc/urls.py -noc/urls.pyc -noc/urls.pyo -noc/vc/__init__.py -noc/vc/__init__.pyc -noc/vc/__init__.pyo -noc/vc/apps/__init__.py -noc/vc/apps/__init__.pyc -noc/vc/apps/__init__.pyo -noc/vc/apps/vc/__init__.py -noc/vc/apps/vc/__init__.pyc -noc/vc/apps/vc/__init__.pyo -noc/vc/apps/vc/templates/change_list.html -noc/vc/apps/vc/templates/import_vlans.html -noc/vc/apps/vc/tests/__init__.py -noc/vc/apps/vc/tests/__init__.pyc -noc/vc/apps/vc/tests/__init__.pyo -noc/vc/apps/vc/tests/test.py -noc/vc/apps/vc/tests/test.pyc -noc/vc/apps/vc/tests/test.pyo -noc/vc/apps/vc/views.py -noc/vc/apps/vc/views.pyc -noc/vc/apps/vc/views.pyo -noc/vc/apps/vcbindfilter/__init__.py -noc/vc/apps/vcbindfilter/__init__.pyc -noc/vc/apps/vcbindfilter/__init__.pyo -noc/vc/apps/vcbindfilter/tests/__init__.py -noc/vc/apps/vcbindfilter/tests/__init__.pyc -noc/vc/apps/vcbindfilter/tests/__init__.pyo -noc/vc/apps/vcbindfilter/tests/test.py -noc/vc/apps/vcbindfilter/tests/test.pyc -noc/vc/apps/vcbindfilter/tests/test.pyo -noc/vc/apps/vcbindfilter/views.py -noc/vc/apps/vcbindfilter/views.pyc -noc/vc/apps/vcbindfilter/views.pyo -noc/vc/apps/vcdomain/__init__.py -noc/vc/apps/vcdomain/__init__.pyc -noc/vc/apps/vcdomain/__init__.pyo -noc/vc/apps/vcdomain/tests/__init__.py -noc/vc/apps/vcdomain/tests/__init__.pyc -noc/vc/apps/vcdomain/tests/__init__.pyo -noc/vc/apps/vcdomain/tests/test.py -noc/vc/apps/vcdomain/tests/test.pyc -noc/vc/apps/vcdomain/tests/test.pyo -noc/vc/apps/vcdomain/views.py -noc/vc/apps/vcdomain/views.pyc -noc/vc/apps/vcdomain/views.pyo -noc/vc/apps/vcfilter/__init__.py -noc/vc/apps/vcfilter/__init__.pyc -noc/vc/apps/vcfilter/__init__.pyo -noc/vc/apps/vcfilter/templates/test.html -noc/vc/apps/vcfilter/tests/__init__.py -noc/vc/apps/vcfilter/tests/__init__.pyc -noc/vc/apps/vcfilter/tests/__init__.pyo -noc/vc/apps/vcfilter/tests/test.py -noc/vc/apps/vcfilter/tests/test.pyc -noc/vc/apps/vcfilter/tests/test.pyo -noc/vc/apps/vcfilter/views.py -noc/vc/apps/vcfilter/views.pyc -noc/vc/apps/vcfilter/views.pyo -noc/vc/apps/vctype/__init__.py -noc/vc/apps/vctype/__init__.pyc -noc/vc/apps/vctype/__init__.pyo -noc/vc/apps/vctype/tests/__init__.py -noc/vc/apps/vctype/tests/__init__.pyc -noc/vc/apps/vctype/tests/__init__.pyo -noc/vc/apps/vctype/tests/test.py -noc/vc/apps/vctype/tests/test.pyc -noc/vc/apps/vctype/tests/test.pyo -noc/vc/apps/vctype/views.py -noc/vc/apps/vctype/views.pyc -noc/vc/apps/vctype/views.pyo -noc/vc/migrations/0001_initial.py -noc/vc/migrations/0001_initial.pyc -noc/vc/migrations/0001_initial.pyo -noc/vc/migrations/0002_default_vc_domain.py -noc/vc/migrations/0002_default_vc_domain.pyc -noc/vc/migrations/0002_default_vc_domain.pyo -noc/vc/migrations/0003_vc_type.py -noc/vc/migrations/0003_vc_type.pyc -noc/vc/migrations/0003_vc_type.pyo -noc/vc/migrations/0004_move_type.py -noc/vc/migrations/0004_move_type.pyc -noc/vc/migrations/0004_move_type.pyo -noc/vc/migrations/0005_alter_type.py -noc/vc/migrations/0005_alter_type.pyc -noc/vc/migrations/0005_alter_type.pyo -noc/vc/migrations/0006_vc_provisioning.py -noc/vc/migrations/0006_vc_provisioning.pyc -noc/vc/migrations/0006_vc_provisioning.pyo -noc/vc/migrations/0007_new_vcdomainprovisioningconfig.py -noc/vc/migrations/0007_new_vcdomainprovisioningconfig.pyc -noc/vc/migrations/0007_new_vcdomainprovisioningconfig.pyo -noc/vc/migrations/0008_vc_name.py -noc/vc/migrations/0008_vc_name.pyc -noc/vc/migrations/0008_vc_name.pyo -noc/vc/migrations/0009_vc_filter.py -noc/vc/migrations/0009_vc_filter.pyc -noc/vc/migrations/0009_vc_filter.pyo -noc/vc/migrations/0010_vcdomainprobvisioningconfig_vcfilter.py -noc/vc/migrations/0010_vcdomainprobvisioningconfig_vcfilter.pyc -noc/vc/migrations/0010_vcdomainprobvisioningconfig_vcfilter.pyo -noc/vc/migrations/0011_vc_bind_filter.py -noc/vc/migrations/0011_vc_bind_filter.pyc -noc/vc/migrations/0011_vc_bind_filter.pyo -noc/vc/migrations/0012_tags.py -noc/vc/migrations/0012_tags.pyc -noc/vc/migrations/0012_tags.pyo -noc/vc/migrations/0013_vcbindfilter_afi.py -noc/vc/migrations/0013_vcbindfilter_afi.pyc -noc/vc/migrations/0013_vcbindfilter_afi.pyo -noc/vc/migrations/__init__.py -noc/vc/migrations/__init__.pyc -noc/vc/migrations/__init__.pyo -noc/vc/models.py -noc/vc/models.pyc -noc/vc/models.pyo -noc/vc/periodics/__init__.py -noc/vc/periodics/__init__.pyc -noc/vc/periodics/__init__.pyo -noc/vc/periodics/vc_provisioning.py -noc/vc/periodics/vc_provisioning.pyc -noc/vc/periodics/vc_provisioning.pyo -noc/vc/tests/__init__.py -noc/vc/tests/__init__.pyc -noc/vc/tests/__init__.pyo -noc/vc/tests/vc.py -noc/vc/tests/vc.pyc -noc/vc/tests/vc.pyo -@dirrm noc/vc/tests -@dirrm noc/vc/periodics -@dirrm noc/vc/migrations -@dirrm noc/vc/apps/vctype/tests -@dirrm noc/vc/apps/vctype -@dirrm noc/vc/apps/vcfilter/tests -@dirrm noc/vc/apps/vcfilter/templates -@dirrm noc/vc/apps/vcfilter -@dirrm noc/vc/apps/vcdomain/tests -@dirrm noc/vc/apps/vcdomain -@dirrm noc/vc/apps/vcbindfilter/tests -@dirrm noc/vc/apps/vcbindfilter -@dirrm noc/vc/apps/vc/tests -@dirrm noc/vc/apps/vc/templates -@dirrm noc/vc/apps/vc -@dirrm noc/vc/apps -@dirrm noc/vc -@dirrm noc/tests -@dirrm noc/templates/includes -@dirrm noc/templates/databrowse -@dirrm noc/templates/admin -@dirrm noc/templates -@dirrm noc/share/sunos/manifest -@dirrm noc/share/sunos -@dirrm noc/share/mibs -@dirrm noc/share/linux/ubuntu/init.d -@dirrm noc/share/linux/ubuntu -@dirrm noc/share/linux/lsb/init.d -@dirrm noc/share/linux/lsb -@dirrm noc/share/linux -@dirrm noc/share/docs/ext -@dirrm noc/share/docs/en/nocbook/vc/apps/vctype -@dirrm noc/share/docs/en/nocbook/vc/apps/vcfilter -@dirrm noc/share/docs/en/nocbook/vc/apps/vcdomain -@dirrm noc/share/docs/en/nocbook/vc/apps/vcbindfilter -@dirrm noc/share/docs/en/nocbook/vc/apps/vc -@dirrm noc/share/docs/en/nocbook/vc/apps -@dirrm noc/share/docs/en/nocbook/vc -@dirrm noc/share/docs/en/nocbook/sa/apps/versioninventory -@dirrm noc/share/docs/en/nocbook/sa/apps/topologydiscovery -@dirrm noc/share/docs/en/nocbook/sa/apps/taskschedule -@dirrm noc/share/docs/en/nocbook/sa/apps/switchportvalidation -@dirrm noc/share/docs/en/nocbook/sa/apps/showswitchports -@dirrm noc/share/docs/en/nocbook/sa/apps/runcommands -@dirrm noc/share/docs/en/nocbook/sa/apps/reportsupportedequipment -@dirrm noc/share/docs/en/nocbook/sa/apps/reportobjectsummary -@dirrm noc/share/docs/en/nocbook/sa/apps/mrtask -@dirrm noc/share/docs/en/nocbook/sa/apps/managedobjectselector -@dirrm noc/share/docs/en/nocbook/sa/apps/managedobject -@dirrm noc/share/docs/en/nocbook/sa/apps/macreport -@dirrm noc/share/docs/en/nocbook/sa/apps/checksupported -@dirrm noc/share/docs/en/nocbook/sa/apps/administrativedomain -@dirrm noc/share/docs/en/nocbook/sa/apps/activator -@dirrm noc/share/docs/en/nocbook/sa/apps -@dirrm noc/share/docs/en/nocbook/sa -@dirrm noc/share/docs/en/nocbook/releasenotes -@dirrm noc/share/docs/en/nocbook/profiles/f5/BIGIP -@dirrm noc/share/docs/en/nocbook/profiles/f5 -@dirrm noc/share/docs/en/nocbook/profiles/ZyXEL/ZyNOSv2 -@dirrm noc/share/docs/en/nocbook/profiles/ZyXEL/ZyNOS -@dirrm noc/share/docs/en/nocbook/profiles/ZyXEL -@dirrm noc/share/docs/en/nocbook/profiles/Zebra/Zebra -@dirrm noc/share/docs/en/nocbook/profiles/Zebra -@dirrm noc/share/docs/en/nocbook/profiles/ZTE/ZXDSL531 -@dirrm noc/share/docs/en/nocbook/profiles/ZTE -@dirrm noc/share/docs/en/nocbook/profiles/Vyatta/Vyatta -@dirrm noc/share/docs/en/nocbook/profiles/Vyatta -@dirrm noc/share/docs/en/nocbook/profiles/Ubiquity/AirOS -@dirrm noc/share/docs/en/nocbook/profiles/Ubiquity -@dirrm noc/share/docs/en/nocbook/profiles/Sun/iLOM3 -@dirrm noc/share/docs/en/nocbook/profiles/Sun -@dirrm noc/share/docs/en/nocbook/profiles/Raritan/DominionSX -@dirrm noc/share/docs/en/nocbook/profiles/Raritan -@dirrm noc/share/docs/en/nocbook/profiles/Raisecom/ROS -@dirrm noc/share/docs/en/nocbook/profiles/Raisecom -@dirrm noc/share/docs/en/nocbook/profiles/Protei/MediaGateway -@dirrm noc/share/docs/en/nocbook/profiles/Protei -@dirrm noc/share/docs/en/nocbook/profiles/OS/FreeBSD -@dirrm noc/share/docs/en/nocbook/profiles/OS -@dirrm noc/share/docs/en/nocbook/profiles/MikroTik/RouterOS -@dirrm noc/share/docs/en/nocbook/profiles/MikroTik -@dirrm noc/share/docs/en/nocbook/profiles/Linksys/SPS2xx -@dirrm noc/share/docs/en/nocbook/profiles/Linksys -@dirrm noc/share/docs/en/nocbook/profiles/Juniper/ScreenOS -@dirrm noc/share/docs/en/nocbook/profiles/Juniper/SRCPE -@dirrm noc/share/docs/en/nocbook/profiles/Juniper/JUNOSe -@dirrm noc/share/docs/en/nocbook/profiles/Juniper/JUNOS -@dirrm noc/share/docs/en/nocbook/profiles/Juniper -@dirrm noc/share/docs/en/nocbook/profiles/InfiNet/WANFlexX -@dirrm noc/share/docs/en/nocbook/profiles/InfiNet -@dirrm noc/share/docs/en/nocbook/profiles/Huawei/VRP -@dirrm noc/share/docs/en/nocbook/profiles/Huawei/UMG8900 -@dirrm noc/share/docs/en/nocbook/profiles/Huawei -@dirrm noc/share/docs/en/nocbook/profiles/HP/iLO2 -@dirrm noc/share/docs/en/nocbook/profiles/HP/ProCurve -@dirrm noc/share/docs/en/nocbook/profiles/HP/GbE2 -@dirrm noc/share/docs/en/nocbook/profiles/HP -@dirrm noc/share/docs/en/nocbook/profiles/Generic/Host -@dirrm noc/share/docs/en/nocbook/profiles/Generic -@dirrm noc/share/docs/en/nocbook/profiles/Force10/FTOS -@dirrm noc/share/docs/en/nocbook/profiles/Force10 -@dirrm noc/share/docs/en/nocbook/profiles/Extreme/XOS -@dirrm noc/share/docs/en/nocbook/profiles/Extreme -@dirrm noc/share/docs/en/nocbook/profiles/EdgeCore/ES -@dirrm noc/share/docs/en/nocbook/profiles/EdgeCore -@dirrm noc/share/docs/en/nocbook/profiles/DLink/DxS_Cisco_CLI -@dirrm noc/share/docs/en/nocbook/profiles/DLink/DxS -@dirrm noc/share/docs/en/nocbook/profiles/DLink -@dirrm noc/share/docs/en/nocbook/profiles/Cisco/NXOS -@dirrm noc/share/docs/en/nocbook/profiles/Cisco/IOS -@dirrm noc/share/docs/en/nocbook/profiles/Cisco/FWSM -@dirrm noc/share/docs/en/nocbook/profiles/Cisco/CatOS -@dirrm noc/share/docs/en/nocbook/profiles/Cisco/AireOS -@dirrm noc/share/docs/en/nocbook/profiles/Cisco/ASA -@dirrm noc/share/docs/en/nocbook/profiles/Cisco -@dirrm noc/share/docs/en/nocbook/profiles/Brocade/FabricOS -@dirrm noc/share/docs/en/nocbook/profiles/Brocade -@dirrm noc/share/docs/en/nocbook/profiles/Audiocodes/Mediant2000 -@dirrm noc/share/docs/en/nocbook/profiles/Audiocodes -@dirrm noc/share/docs/en/nocbook/profiles/AlliedTelesis/AT8500 -@dirrm noc/share/docs/en/nocbook/profiles/AlliedTelesis/AT8000S -@dirrm noc/share/docs/en/nocbook/profiles/AlliedTelesis -@dirrm noc/share/docs/en/nocbook/profiles/Alcatel/TIMOS -@dirrm noc/share/docs/en/nocbook/profiles/Alcatel/OS62xx -@dirrm noc/share/docs/en/nocbook/profiles/Alcatel/AOS -@dirrm noc/share/docs/en/nocbook/profiles/Alcatel -@dirrm noc/share/docs/en/nocbook/profiles/AddPac/APOS -@dirrm noc/share/docs/en/nocbook/profiles/AddPac -@dirrm noc/share/docs/en/nocbook/profiles/3Com/SuperStack -@dirrm noc/share/docs/en/nocbook/profiles/3Com -@dirrm noc/share/docs/en/nocbook/profiles -@dirrm noc/share/docs/en/nocbook/pm/apps/view -@dirrm noc/share/docs/en/nocbook/pm/apps/timeseries -@dirrm noc/share/docs/en/nocbook/pm/apps/chart -@dirrm noc/share/docs/en/nocbook/pm/apps -@dirrm noc/share/docs/en/nocbook/pm -@dirrm noc/share/docs/en/nocbook/peer/apps/rir -@dirrm noc/share/docs/en/nocbook/peer/apps/prefixlistbuilder -@dirrm noc/share/docs/en/nocbook/peer/apps/person -@dirrm noc/share/docs/en/nocbook/peer/apps/peeringpoing -@dirrm noc/share/docs/en/nocbook/peer/apps/peergroup -@dirrm noc/share/docs/en/nocbook/peer/apps/peer -@dirrm noc/share/docs/en/nocbook/peer/apps/organisation -@dirrm noc/share/docs/en/nocbook/peer/apps/maintainer -@dirrm noc/share/docs/en/nocbook/peer/apps/communitytype -@dirrm noc/share/docs/en/nocbook/peer/apps/community -@dirrm noc/share/docs/en/nocbook/peer/apps/asset -@dirrm noc/share/docs/en/nocbook/peer/apps/as -@dirrm noc/share/docs/en/nocbook/peer/apps -@dirrm noc/share/docs/en/nocbook/peer -@dirrm noc/share/docs/en/nocbook/main/apps/userprofile -@dirrm noc/share/docs/en/nocbook/main/apps/user -@dirrm noc/share/docs/en/nocbook/main/apps/timepattern -@dirrm noc/share/docs/en/nocbook/main/apps/tags -@dirrm noc/share/docs/en/nocbook/main/apps/tagmanage -@dirrm noc/share/docs/en/nocbook/main/apps/systemnotification -@dirrm noc/share/docs/en/nocbook/main/apps/search -@dirrm noc/share/docs/en/nocbook/main/apps/reporttaggedmodels -@dirrm noc/share/docs/en/nocbook/main/apps/reportsystemversion -@dirrm noc/share/docs/en/nocbook/main/apps/reportloc -@dirrm noc/share/docs/en/nocbook/main/apps/reportdbsummary -@dirrm noc/share/docs/en/nocbook/main/apps/reportbackups -@dirrm noc/share/docs/en/nocbook/main/apps/report -@dirrm noc/share/docs/en/nocbook/main/apps/refbookadmin -@dirrm noc/share/docs/en/nocbook/main/apps/refbook -@dirrm noc/share/docs/en/nocbook/main/apps/pyrule -@dirrm noc/share/docs/en/nocbook/main/apps/pendingnotifications -@dirrm noc/share/docs/en/nocbook/main/apps/notificationgroup -@dirrm noc/share/docs/en/nocbook/main/apps/notification -@dirrm noc/share/docs/en/nocbook/main/apps/mimetype -@dirrm noc/share/docs/en/nocbook/main/apps/message -@dirrm noc/share/docs/en/nocbook/main/apps/language -@dirrm noc/share/docs/en/nocbook/main/apps/index -@dirrm noc/share/docs/en/nocbook/main/apps/group -@dirrm noc/share/docs/en/nocbook/main/apps/doc -@dirrm noc/share/docs/en/nocbook/main/apps/csv -@dirrm noc/share/docs/en/nocbook/main/apps/configs -@dirrm noc/share/docs/en/nocbook/main/apps/config -@dirrm noc/share/docs/en/nocbook/main/apps/calculator -@dirrm noc/share/docs/en/nocbook/main/apps/audittrail -@dirrm noc/share/docs/en/nocbook/main/apps -@dirrm noc/share/docs/en/nocbook/main -@dirrm noc/share/docs/en/nocbook/kb/apps/view -@dirrm noc/share/docs/en/nocbook/kb/apps/userbookmark -@dirrm noc/share/docs/en/nocbook/kb/apps/kbentrytemplate -@dirrm noc/share/docs/en/nocbook/kb/apps/kbentry -@dirrm noc/share/docs/en/nocbook/kb/apps/index -@dirrm noc/share/docs/en/nocbook/kb/apps/globalbookmark -@dirrm noc/share/docs/en/nocbook/kb/apps -@dirrm noc/share/docs/en/nocbook/kb -@dirrm noc/share/docs/en/nocbook/ip/apps/vrfgroup -@dirrm noc/share/docs/en/nocbook/ip/apps/vrf -@dirrm noc/share/docs/en/nocbook/ip/apps/tools -@dirrm noc/share/docs/en/nocbook/ip/apps/reportsummary -@dirrm noc/share/docs/en/nocbook/ip/apps/reportfree -@dirrm noc/share/docs/en/nocbook/ip/apps/reportexpanded -@dirrm noc/share/docs/en/nocbook/ip/apps/reportallocated -@dirrm noc/share/docs/en/nocbook/ip/apps/ipv4blockaccess -@dirrm noc/share/docs/en/nocbook/ip/apps/ipv4addressrange -@dirrm noc/share/docs/en/nocbook/ip/apps/ipmanage -@dirrm noc/share/docs/en/nocbook/ip/apps -@dirrm noc/share/docs/en/nocbook/ip -@dirrm noc/share/docs/en/nocbook/installation -@dirrm noc/share/docs/en/nocbook/fm/apps/reportunclassifiedoids -@dirrm noc/share/docs/en/nocbook/fm/apps/reportmibs -@dirrm noc/share/docs/en/nocbook/fm/apps/reporteventsummary -@dirrm noc/share/docs/en/nocbook/fm/apps/reportclassificationrule -@dirrm noc/share/docs/en/nocbook/fm/apps/reportclassificationquality -@dirrm noc/share/docs/en/nocbook/fm/apps/mibview -@dirrm noc/share/docs/en/nocbook/fm/apps/mib -@dirrm noc/share/docs/en/nocbook/fm/apps/ignoreeventrules -@dirrm noc/share/docs/en/nocbook/fm/apps/eventpriority -@dirrm noc/share/docs/en/nocbook/fm/apps/eventpostprocessingrule -@dirrm noc/share/docs/en/nocbook/fm/apps/eventcorrelationrule -@dirrm noc/share/docs/en/nocbook/fm/apps/eventclassificationrule -@dirrm noc/share/docs/en/nocbook/fm/apps/eventclass -@dirrm noc/share/docs/en/nocbook/fm/apps/eventcategory -@dirrm noc/share/docs/en/nocbook/fm/apps/eventarchivationrule -@dirrm noc/share/docs/en/nocbook/fm/apps/event -@dirrm noc/share/docs/en/nocbook/fm/apps/activeproblems -@dirrm noc/share/docs/en/nocbook/fm/apps -@dirrm noc/share/docs/en/nocbook/fm -@dirrm noc/share/docs/en/nocbook/dns/apps/reportsupportedns -@dirrm noc/share/docs/en/nocbook/dns/apps/reportnszonesummary -@dirrm noc/share/docs/en/nocbook/dns/apps/reportmissedreverse -@dirrm noc/share/docs/en/nocbook/dns/apps/reportmissedp2p -@dirrm noc/share/docs/en/nocbook/dns/apps/reportexpiringdomains -@dirrm noc/share/docs/en/nocbook/dns/apps/reportduplicatedfqdns -@dirrm noc/share/docs/en/nocbook/dns/apps/dnszonerecordtype -@dirrm noc/share/docs/en/nocbook/dns/apps/dnszoneprofile -@dirrm noc/share/docs/en/nocbook/dns/apps/dnszone -@dirrm noc/share/docs/en/nocbook/dns/apps/dnsserver -@dirrm noc/share/docs/en/nocbook/dns/apps -@dirrm noc/share/docs/en/nocbook/dns -@dirrm noc/share/docs/en/nocbook/cm/apps/rpsl -@dirrm noc/share/docs/en/nocbook/cm/apps/reportstaleconfigs -@dirrm noc/share/docs/en/nocbook/cm/apps/reportlatestchanges -@dirrm noc/share/docs/en/nocbook/cm/apps/prefixlist -@dirrm noc/share/docs/en/nocbook/cm/apps/objectnotify -@dirrm noc/share/docs/en/nocbook/cm/apps/dns -@dirrm noc/share/docs/en/nocbook/cm/apps/config -@dirrm noc/share/docs/en/nocbook/cm/apps -@dirrm noc/share/docs/en/nocbook/cm -@dirrm noc/share/docs/en/nocbook -@dirrm noc/share/docs/en -@dirrm noc/share/docs -@dirrm noc/share/dns/bind -@dirrm noc/share/dns -@dirrm noc/share -@dirrm noc/scripts -@dirrm noc/sa/tests -@dirrm noc/sa/servers -@dirrm noc/sa/protocols -@dirrm noc/sa/profiles/f5/BIGIP/tests -@dirrm noc/sa/profiles/f5/BIGIP -@dirrm noc/sa/profiles/f5 -@dirrm noc/sa/profiles/Zyxel/ZyNOSv2 -@dirrm noc/sa/profiles/Zyxel/ZyNOS/tests -@dirrm noc/sa/profiles/Zyxel/ZyNOS -@dirrm noc/sa/profiles/Zyxel -@dirrm noc/sa/profiles/Zebra/Zebra -@dirrm noc/sa/profiles/Zebra -@dirrm noc/sa/profiles/ZTE/ZXDSL531 -@dirrm noc/sa/profiles/ZTE -@dirrm noc/sa/profiles/Vyatta/Vyatta/tests -@dirrm noc/sa/profiles/Vyatta/Vyatta -@dirrm noc/sa/profiles/Vyatta -@dirrm noc/sa/profiles/Ubiquiti/AirOS -@dirrm noc/sa/profiles/Ubiquiti -@dirrm noc/sa/profiles/Sun/iLOM3 -@dirrm noc/sa/profiles/Sun -@dirrm noc/sa/profiles/Raritan/DominionSX -@dirrm noc/sa/profiles/Raritan -@dirrm noc/sa/profiles/Raisecom/ROS -@dirrm noc/sa/profiles/Raisecom -@dirrm noc/sa/profiles/Protei/MediaGateway -@dirrm noc/sa/profiles/Protei -@dirrm noc/sa/profiles/OS/FreeBSD/tests -@dirrm noc/sa/profiles/OS/FreeBSD -@dirrm noc/sa/profiles/OS -@dirrm noc/sa/profiles/NOC/SAE -@dirrm noc/sa/profiles/NOC -@dirrm noc/sa/profiles/MikroTik/RouterOS -@dirrm noc/sa/profiles/MikroTik -@dirrm noc/sa/profiles/Linksys/SPS2xx -@dirrm noc/sa/profiles/Linksys -@dirrm noc/sa/profiles/Juniper/ScreenOS/tests -@dirrm noc/sa/profiles/Juniper/ScreenOS -@dirrm noc/sa/profiles/Juniper/SRCPE -@dirrm noc/sa/profiles/Juniper/JUNOSe/tests -@dirrm noc/sa/profiles/Juniper/JUNOSe -@dirrm noc/sa/profiles/Juniper/JUNOS/tests -@dirrm noc/sa/profiles/Juniper/JUNOS -@dirrm noc/sa/profiles/Juniper -@dirrm noc/sa/profiles/InfiNet/WANFlexX -@dirrm noc/sa/profiles/InfiNet -@dirrm noc/sa/profiles/Huawei/VRP/tests -@dirrm noc/sa/profiles/Huawei/VRP -@dirrm noc/sa/profiles/Huawei/UMG8900 -@dirrm noc/sa/profiles/Huawei -@dirrm noc/sa/profiles/HP/iLO2 -@dirrm noc/sa/profiles/HP/ProCurve9xxx -@dirrm noc/sa/profiles/HP/ProCurve/tests -@dirrm noc/sa/profiles/HP/ProCurve -@dirrm noc/sa/profiles/HP/GbE2/tests -@dirrm noc/sa/profiles/HP/GbE2 -@dirrm noc/sa/profiles/HP -@dirrm noc/sa/profiles/Generic -@dirrm noc/sa/profiles/Force10/FTOS/tests -@dirrm noc/sa/profiles/Force10/FTOS -@dirrm noc/sa/profiles/Force10 -@dirrm noc/sa/profiles/Extreme/XOS -@dirrm noc/sa/profiles/Extreme -@dirrm noc/sa/profiles/EdgeCore/ES/tests -@dirrm noc/sa/profiles/EdgeCore/ES -@dirrm noc/sa/profiles/EdgeCore -@dirrm noc/sa/profiles/DLink/DxS_Cisco_CLI/tests -@dirrm noc/sa/profiles/DLink/DxS_Cisco_CLI -@dirrm noc/sa/profiles/DLink/DxS/tests -@dirrm noc/sa/profiles/DLink/DxS -@dirrm noc/sa/profiles/DLink/DES2108/tests -@dirrm noc/sa/profiles/DLink/DES2108 -@dirrm noc/sa/profiles/DLink -@dirrm noc/sa/profiles/Cisco/NXOS -@dirrm noc/sa/profiles/Cisco/IOS/tests -@dirrm noc/sa/profiles/Cisco/IOS -@dirrm noc/sa/profiles/Cisco/FWSM -@dirrm noc/sa/profiles/Cisco/CatOS -@dirrm noc/sa/profiles/Cisco/AireOS -@dirrm noc/sa/profiles/Cisco/ASA/tests -@dirrm noc/sa/profiles/Cisco/ASA -@dirrm noc/sa/profiles/Cisco -@dirrm noc/sa/profiles/Brocade/FabricOS -@dirrm noc/sa/profiles/Brocade -@dirrm noc/sa/profiles/Audiocodes/Mediant2000 -@dirrm noc/sa/profiles/Audiocodes -@dirrm noc/sa/profiles/AlliedTelesis/AT8500 -@dirrm noc/sa/profiles/AlliedTelesis/AT8000S -@dirrm noc/sa/profiles/AlliedTelesis -@dirrm noc/sa/profiles/Alcatel/TIMOS/tests -@dirrm noc/sa/profiles/Alcatel/TIMOS -@dirrm noc/sa/profiles/Alcatel/OS62xx/tests -@dirrm noc/sa/profiles/Alcatel/OS62xx -@dirrm noc/sa/profiles/Alcatel/AOS -@dirrm noc/sa/profiles/Alcatel -@dirrm noc/sa/profiles/AddPac/APOS -@dirrm noc/sa/profiles/AddPac -@dirrm noc/sa/profiles/3Com/SuperStack/tests -@dirrm noc/sa/profiles/3Com/SuperStack -@dirrm noc/sa/profiles/3Com -@dirrm noc/sa/profiles -@dirrm noc/sa/periodics -@dirrm noc/sa/migrations -@dirrm noc/sa/management/commands -@dirrm noc/sa/management -@dirrm noc/sa/interfaces -@dirrm noc/sa/apps/versioninventory/tests -@dirrm noc/sa/apps/versioninventory -@dirrm noc/sa/apps/useraccess/tests -@dirrm noc/sa/apps/useraccess -@dirrm noc/sa/apps/topologydiscovery/topology -@dirrm noc/sa/apps/topologydiscovery/tests -@dirrm noc/sa/apps/topologydiscovery -@dirrm noc/sa/apps/taskschedule/tests -@dirrm noc/sa/apps/taskschedule -@dirrm noc/sa/apps/switchportvalidation/tests -@dirrm noc/sa/apps/switchportvalidation -@dirrm noc/sa/apps/showswitchports/tests -@dirrm noc/sa/apps/showswitchports -@dirrm noc/sa/apps/runcommands/tests -@dirrm noc/sa/apps/runcommands -@dirrm noc/sa/apps/reportsupportedequipment/tests -@dirrm noc/sa/apps/reportsupportedequipment -@dirrm noc/sa/apps/reportobjectsummary/tests -@dirrm noc/sa/apps/reportobjectsummary -@dirrm noc/sa/apps/reportmrtask/tests -@dirrm noc/sa/apps/reportmrtask -@dirrm noc/sa/apps/mrtask/tests -@dirrm noc/sa/apps/mrtask/templates -@dirrm noc/sa/apps/mrtask -@dirrm noc/sa/apps/managedobjectselector/tests -@dirrm noc/sa/apps/managedobjectselector/templates -@dirrm noc/sa/apps/managedobjectselector -@dirrm noc/sa/apps/managedobject/tests -@dirrm noc/sa/apps/managedobject/templates -@dirrm noc/sa/apps/managedobject -@dirrm noc/sa/apps/macreport/tests -@dirrm noc/sa/apps/macreport -@dirrm noc/sa/apps/groupaccess/tests -@dirrm noc/sa/apps/groupaccess -@dirrm noc/sa/apps/checksupported/tests -@dirrm noc/sa/apps/checksupported -@dirrm noc/sa/apps/administrativedomain/tests -@dirrm noc/sa/apps/administrativedomain -@dirrm noc/sa/apps/activatorstatus/tests -@dirrm noc/sa/apps/activatorstatus -@dirrm noc/sa/apps/activator/tests -@dirrm noc/sa/apps/activator -@dirrm noc/sa/apps -@dirrm noc/sa -@dirrm noc/pm/tests -@dirrm noc/pm/probes -@dirrm noc/pm/migrations -@dirrm noc/pm/management/commands -@dirrm noc/pm/management -@dirrm noc/pm/apps/view/tests -@dirrm noc/pm/apps/view/templates -@dirrm noc/pm/apps/view -@dirrm noc/pm/apps/timeseries/tests -@dirrm noc/pm/apps/timeseries -@dirrm noc/pm/apps/chart/tests -@dirrm noc/pm/apps/chart -@dirrm noc/pm/apps -@dirrm noc/pm -@dirrm noc/peer/periodics -@dirrm noc/peer/migrations -@dirrm noc/peer/apps/rir/tests -@dirrm noc/peer/apps/rir -@dirrm noc/peer/apps/prefixlistbuilder/tests -@dirrm noc/peer/apps/prefixlistbuilder/templates -@dirrm noc/peer/apps/prefixlistbuilder -@dirrm noc/peer/apps/person/tests -@dirrm noc/peer/apps/person -@dirrm noc/peer/apps/peeringpoing/tests -@dirrm noc/peer/apps/peeringpoing -@dirrm noc/peer/apps/peergroup/tests -@dirrm noc/peer/apps/peergroup -@dirrm noc/peer/apps/peer/tests -@dirrm noc/peer/apps/peer -@dirrm noc/peer/apps/organisation/tests -@dirrm noc/peer/apps/organisation -@dirrm noc/peer/apps/maintainer/tests -@dirrm noc/peer/apps/maintainer -@dirrm noc/peer/apps/communitytype/tests -@dirrm noc/peer/apps/communitytype -@dirrm noc/peer/apps/community/tests -@dirrm noc/peer/apps/community -@dirrm noc/peer/apps/asset/tests -@dirrm noc/peer/apps/asset -@dirrm noc/peer/apps/as/tests -@dirrm noc/peer/apps/as -@dirrm noc/peer/apps -@dirrm noc/peer -@dirrm noc/main/tests -@dirrm noc/main/templatetags -@dirrm noc/main/refbooks/refbooks -@dirrm noc/main/refbooks/downloaders -@dirrm noc/main/refbooks -@dirrm noc/main/pyrules -@dirrm noc/main/periodics -@dirrm noc/main/notify -@dirrm noc/main/migrations -@dirrm noc/main/management/commands -@dirrm noc/main/management -@dirrm noc/main/auth/backends -@dirrm noc/main/auth -@dirrm noc/main/apps/userprofile/tests -@dirrm noc/main/apps/userprofile/templates -@dirrm noc/main/apps/userprofile -@dirrm noc/main/apps/user/tests -@dirrm noc/main/apps/user/templates -@dirrm noc/main/apps/user -@dirrm noc/main/apps/timepattern/tests -@dirrm noc/main/apps/timepattern/templates -@dirrm noc/main/apps/timepattern -@dirrm noc/main/apps/tags/tests -@dirrm noc/main/apps/tags/templates -@dirrm noc/main/apps/tags -@dirrm noc/main/apps/tagmanage/tests -@dirrm noc/main/apps/tagmanage/templates -@dirrm noc/main/apps/tagmanage -@dirrm noc/main/apps/systemnotification/tests -@dirrm noc/main/apps/systemnotification -@dirrm noc/main/apps/style/tests -@dirrm noc/main/apps/style -@dirrm noc/main/apps/search/tests -@dirrm noc/main/apps/search/templates -@dirrm noc/main/apps/search -@dirrm noc/main/apps/reporttaggedmodels/tests -@dirrm noc/main/apps/reporttaggedmodels -@dirrm noc/main/apps/reportsystemversion/tests -@dirrm noc/main/apps/reportsystemversion -@dirrm noc/main/apps/reportloc/tests -@dirrm noc/main/apps/reportloc -@dirrm noc/main/apps/reportdbsummary/tests -@dirrm noc/main/apps/reportdbsummary -@dirrm noc/main/apps/reportbackups/tests -@dirrm noc/main/apps/reportbackups -@dirrm noc/main/apps/report/tests -@dirrm noc/main/apps/report/templates -@dirrm noc/main/apps/report -@dirrm noc/main/apps/reloadconfig/tests -@dirrm noc/main/apps/reloadconfig -@dirrm noc/main/apps/refbookadmin/tests -@dirrm noc/main/apps/refbookadmin -@dirrm noc/main/apps/refbook/tests -@dirrm noc/main/apps/refbook/templates -@dirrm noc/main/apps/refbook -@dirrm noc/main/apps/pyrule/tests -@dirrm noc/main/apps/pyrule -@dirrm noc/main/apps/pendingnotifications/tests -@dirrm noc/main/apps/pendingnotifications -@dirrm noc/main/apps/notificationgroup/tests -@dirrm noc/main/apps/notificationgroup/templates -@dirrm noc/main/apps/notificationgroup -@dirrm noc/main/apps/mimetype/tests -@dirrm noc/main/apps/mimetype -@dirrm noc/main/apps/message/tests -@dirrm noc/main/apps/message/templates -@dirrm noc/main/apps/message -@dirrm noc/main/apps/menu/tests -@dirrm noc/main/apps/menu -@dirrm noc/main/apps/language/tests -@dirrm noc/main/apps/language -@dirrm noc/main/apps/index/tests -@dirrm noc/main/apps/index/templates -@dirrm noc/main/apps/index -@dirrm noc/main/apps/group/tests -@dirrm noc/main/apps/group -@dirrm noc/main/apps/doc/tests -@dirrm noc/main/apps/doc -@dirrm noc/main/apps/dbtrigger/tests -@dirrm noc/main/apps/dbtrigger -@dirrm noc/main/apps/csv/tests -@dirrm noc/main/apps/csv/templates -@dirrm noc/main/apps/csv -@dirrm noc/main/apps/config/tests -@dirrm noc/main/apps/config/templates -@dirrm noc/main/apps/config -@dirrm noc/main/apps/changesquarantinerule/tests -@dirrm noc/main/apps/changesquarantinerule -@dirrm noc/main/apps/changesquarantine/tests -@dirrm noc/main/apps/changesquarantine -@dirrm noc/main/apps/calculator/tests -@dirrm noc/main/apps/calculator/templates -@dirrm noc/main/apps/calculator/calculators -@dirrm noc/main/apps/calculator -@dirrm noc/main/apps/auth/tests -@dirrm noc/main/apps/auth/templates -@dirrm noc/main/apps/auth -@dirrm noc/main/apps/audittrail/tests -@dirrm noc/main/apps/audittrail -@dirrm noc/main/apps -@dirrm noc/main -@dirrm noc/locale/ru/LC_MESSAGES -@dirrm noc/locale/ru -@dirrm noc/locale -@dirrm noc/lib/tests -@dirrm noc/lib/app -@dirrm noc/lib -@dirrm noc/kb/parsers/macros -@dirrm noc/kb/parsers -@dirrm noc/kb/migrations -@dirrm noc/kb/management/commands -@dirrm noc/kb/management -@dirrm noc/kb/apps/view/tests -@dirrm noc/kb/apps/view/templates -@dirrm noc/kb/apps/view -@dirrm noc/kb/apps/userbookmark/tests -@dirrm noc/kb/apps/userbookmark -@dirrm noc/kb/apps/kbentrytemplate/tests -@dirrm noc/kb/apps/kbentrytemplate -@dirrm noc/kb/apps/kbentry/tests -@dirrm noc/kb/apps/kbentry/templates -@dirrm noc/kb/apps/kbentry -@dirrm noc/kb/apps/index/tests -@dirrm noc/kb/apps/index/templates -@dirrm noc/kb/apps/index -@dirrm noc/kb/apps/globalbookmark/tests -@dirrm noc/kb/apps/globalbookmark -@dirrm noc/kb/apps -@dirrm noc/kb -@dirrm noc/ip/tests -@dirrm noc/ip/periodics -@dirrm noc/ip/migrations -@dirrm noc/ip/apps/vrfgroup/tests -@dirrm noc/ip/apps/vrfgroup -@dirrm noc/ip/apps/vrf/tests -@dirrm noc/ip/apps/vrf -@dirrm noc/ip/apps/tools/tests -@dirrm noc/ip/apps/tools/templates -@dirrm noc/ip/apps/tools -@dirrm noc/ip/apps/reportsummary/tests -@dirrm noc/ip/apps/reportsummary -@dirrm noc/ip/apps/reportfree/tests -@dirrm noc/ip/apps/reportfree -@dirrm noc/ip/apps/reportexpanded/tests -@dirrm noc/ip/apps/reportexpanded -@dirrm noc/ip/apps/reportallocated/tests -@dirrm noc/ip/apps/reportallocated -@dirrm noc/ip/apps/prefixaccess/tests -@dirrm noc/ip/apps/prefixaccess -@dirrm noc/ip/apps/ipam/tests -@dirrm noc/ip/apps/ipam/templates -@dirrm noc/ip/apps/ipam -@dirrm noc/ip/apps/addressrange/tests -@dirrm noc/ip/apps/addressrange -@dirrm noc/ip/apps -@dirrm noc/ip -@dirrm noc/fm/rules/correlation -@dirrm noc/fm/rules/classification/f5/BIGIP -@dirrm noc/fm/rules/classification/f5 -@dirrm noc/fm/rules/classification/Zyxel/ZyNOS -@dirrm noc/fm/rules/classification/Zyxel -@dirrm noc/fm/rules/classification/OS/FreeBSD -@dirrm noc/fm/rules/classification/OS -@dirrm noc/fm/rules/classification/Linksys/SPS2xx -@dirrm noc/fm/rules/classification/Linksys -@dirrm noc/fm/rules/classification/Juniper/JUNOS -@dirrm noc/fm/rules/classification/Juniper -@dirrm noc/fm/rules/classification/Force10/FTOS -@dirrm noc/fm/rules/classification/Force10 -@dirrm noc/fm/rules/classification/DLink/DxS -@dirrm noc/fm/rules/classification/DLink/DES3xxx -@dirrm noc/fm/rules/classification/DLink -@dirrm noc/fm/rules/classification/Cisco/IOS -@dirrm noc/fm/rules/classification/Cisco/AireOS -@dirrm noc/fm/rules/classification/Cisco/ASA -@dirrm noc/fm/rules/classification/Cisco -@dirrm noc/fm/rules/classification/Audiocodes/Mediant2000 -@dirrm noc/fm/rules/classification/Audiocodes -@dirrm noc/fm/rules/classification -@dirrm noc/fm/rules/classes/Cisco/IOS -@dirrm noc/fm/rules/classes/Cisco -@dirrm noc/fm/rules/classes -@dirrm noc/fm/rules -@dirrm noc/fm/periodics -@dirrm noc/fm/migrations -@dirrm noc/fm/management/commands -@dirrm noc/fm/management -@dirrm noc/fm/apps/reportunclassifiedoids/tests -@dirrm noc/fm/apps/reportunclassifiedoids -@dirrm noc/fm/apps/reportmibs/tests -@dirrm noc/fm/apps/reportmibs -@dirrm noc/fm/apps/reporteventsummary/tests -@dirrm noc/fm/apps/reporteventsummary -@dirrm noc/fm/apps/reportclassificationrule/tests -@dirrm noc/fm/apps/reportclassificationrule -@dirrm noc/fm/apps/reportclassificationquality/tests -@dirrm noc/fm/apps/reportclassificationquality -@dirrm noc/fm/apps/mibview/tests -@dirrm noc/fm/apps/mibview -@dirrm noc/fm/apps/mib/tests -@dirrm noc/fm/apps/mib/templates -@dirrm noc/fm/apps/mib -@dirrm noc/fm/apps/ignoreeventrules/tests -@dirrm noc/fm/apps/ignoreeventrules -@dirrm noc/fm/apps/eventpriority/tests -@dirrm noc/fm/apps/eventpriority -@dirrm noc/fm/apps/eventpostprocessingrule/tests -@dirrm noc/fm/apps/eventpostprocessingrule/templates -@dirrm noc/fm/apps/eventpostprocessingrule -@dirrm noc/fm/apps/eventcorrelationrule/tests -@dirrm noc/fm/apps/eventcorrelationrule/templates -@dirrm noc/fm/apps/eventcorrelationrule -@dirrm noc/fm/apps/eventclassificationrule/tests -@dirrm noc/fm/apps/eventclassificationrule/templates -@dirrm noc/fm/apps/eventclassificationrule -@dirrm noc/fm/apps/eventclass/tests -@dirrm noc/fm/apps/eventclass -@dirrm noc/fm/apps/eventcategory/tests -@dirrm noc/fm/apps/eventcategory -@dirrm noc/fm/apps/eventarchivationrule/tests -@dirrm noc/fm/apps/eventarchivationrule -@dirrm noc/fm/apps/event/tests -@dirrm noc/fm/apps/event/templates -@dirrm noc/fm/apps/event -@dirrm noc/fm/apps/activeproblems/tests -@dirrm noc/fm/apps/activeproblems/templates -@dirrm noc/fm/apps/activeproblems -@dirrm noc/fm/apps -@dirrm noc/fm -@dirrm noc/dns/periodics -@dirrm noc/dns/migrations -@dirrm noc/dns/generators -@dirrm noc/dns/apps/reportsupportedns/tests -@dirrm noc/dns/apps/reportsupportedns -@dirrm noc/dns/apps/reportnszonesummary/tests -@dirrm noc/dns/apps/reportnszonesummary -@dirrm noc/dns/apps/reportmissedreverse/tests -@dirrm noc/dns/apps/reportmissedreverse -@dirrm noc/dns/apps/reportmissedp2p/tests -@dirrm noc/dns/apps/reportmissedp2p -@dirrm noc/dns/apps/reportexpiringdomains/tests -@dirrm noc/dns/apps/reportexpiringdomains -@dirrm noc/dns/apps/reportduplicatedfqdns/tests -@dirrm noc/dns/apps/reportduplicatedfqdns -@dirrm noc/dns/apps/dnszonerecordtype/tests -@dirrm noc/dns/apps/dnszonerecordtype -@dirrm noc/dns/apps/dnszoneprofile/tests -@dirrm noc/dns/apps/dnszoneprofile -@dirrm noc/dns/apps/dnszone/tests -@dirrm noc/dns/apps/dnszone/templates -@dirrm noc/dns/apps/dnszone -@dirrm noc/dns/apps/dnsserver/tests -@dirrm noc/dns/apps/dnsserver -@dirrm noc/dns/apps -@dirrm noc/dns -@dirrm noc/contrib -@dirrm noc/cm/vcs -@dirrm noc/cm/templatetags -@dirrm noc/cm/templates -@dirrm noc/cm/periodics -@dirrm noc/cm/migrations -@dirrm noc/cm/management/commands -@dirrm noc/cm/management -@dirrm noc/cm/apps/rpsl/tests -@dirrm noc/cm/apps/rpsl/templates -@dirrm noc/cm/apps/rpsl -@dirrm noc/cm/apps/reportstaleconfigs/tests -@dirrm noc/cm/apps/reportstaleconfigs -@dirrm noc/cm/apps/reportlatestchanges/tests -@dirrm noc/cm/apps/reportlatestchanges -@dirrm noc/cm/apps/prefixlist/tests -@dirrm noc/cm/apps/prefixlist/templates -@dirrm noc/cm/apps/prefixlist -@dirrm noc/cm/apps/objectnotify/tests -@dirrm noc/cm/apps/objectnotify -@dirrm noc/cm/apps/dns/tests -@dirrm noc/cm/apps/dns/templates -@dirrm noc/cm/apps/dns -@dirrm noc/cm/apps/config/tests -@dirrm noc/cm/apps/config/templates -@dirrm noc/cm/apps/config -@dirrm noc/cm/apps -@dirrm noc/cm -@dirrmtry noc/static/js -@dirrmtry noc/static/img/favicon -@dirrmtry noc/static/img -@dirrmtry noc/static/doc -@dirrmtry noc/static/css -@dirrmtry noc/static/apps/kb/view/mediawiki -@dirrmtry noc/static/apps/kb/view -@dirrmtry noc/static/apps/kb -@dirrmtry noc/static/apps/ip/ipam/css -@dirrmtry noc/static/apps/ip/ipam -@dirrmtry noc/static/apps/ip -@dirrmtry noc/static/apps/fm/event/js -@dirrmtry noc/static/apps/fm/event/css -@dirrmtry noc/static/apps/fm/event -@dirrmtry noc/static/apps/fm -@dirrmtry noc/static/apps -@dirrmtry noc/static -@dirrmtry noc/local -@dirrmtry noc/etc -@dirrmtry noc -@cwd %%NOCDBDIR%% -@dirrmtry repo -@dirrmtry backup -@unexec rmdir %%NOCDBDIR%% 2>/dev/null || true -@cwd / -@dirrmtry %%LOCALSTATE_DIR%% --- noc-0.6.4.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 4 09:10:09 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1F523106566B for ; Wed, 4 May 2011 09:10:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0855F8FC18 for ; Wed, 4 May 2011 09:10:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p449A8kY015109 for ; Wed, 4 May 2011 09:10:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p449A86R015108; Wed, 4 May 2011 09:10:08 GMT (envelope-from gnats) Date: Wed, 4 May 2011 09:10:08 GMT Message-Id: <201105040910.p449A86R015108@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Stanislav A Svirid Cc: Subject: Re: ports/156304: [maintainer update] net-mgmt/noc: update from 0.6.2 to 0.6.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Stanislav A Svirid List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 May 2011 09:10:09 -0000 The following reply was made to PR ports/156304; it has been noted by GNATS. From: Stanislav A Svirid To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/156304: [maintainer update] net-mgmt/noc: update from 0.6.2 to 0.6.3 Date: Wed, 4 May 2011 16:04:53 +0700 Hi. You may close this update. New version of net-mgmt/noc (0.6.4) is out. On Sun, 10 Apr 2011, FreeBSD-gnats-submit@FreeBSD.org wrote: > Thank you very much for your problem report. > It has the internal identification `ports/156304'. > 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=156304 > > >Category: ports > >Responsible: freebsd-ports-bugs > >Synopsis: [maintainer update] net-mgmt/noc: update from 0.6.2 to 0.6.3 > >Arrival-Date: Sun Apr 10 09:50:10 UTC 2011 -- Stanislav Svirid > Siberian Networks, Novosibirsk, Russia > SAS-RIPE, 3909675@ICQ From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 4 09:22:33 2011 Return-Path: Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4EE131065672 for ; Wed, 4 May 2011 09:22:33 +0000 (UTC) (envelope-from count@211.ru) Received: from mx.211.ru (mx.211.ru [193.238.131.194]) by mx1.freebsd.org (Postfix) with ESMTP id DE26C8FC14 for ; Wed, 4 May 2011 09:22:32 +0000 (UTC) Received: from localhost (mx.211.ru [193.238.131.194]) by mx.211.ru (Postfix) with ESMTP id 876B2E87DD; Wed, 4 May 2011 16:05:19 +0700 (NOVST) Received: from mx.211.ru ([193.238.131.194]) by localhost (mx.211.ru [193.238.131.194]) (amavisd-new, port 10024) with LMTP id hje6C9jgxFPP; Wed, 4 May 2011 16:04:53 +0700 (NOVST) Received: from mail.211.ru (mail.211.ru [10.5.1.2]) by mx.211.ru (Postfix) with ESMTP id D65DCE87C9; Wed, 4 May 2011 16:04:53 +0700 (NOVST) Received: from unknown.211.ru (unknown.211.ru [10.3.0.86]) by mail.211.ru (Postfix) with ESMTP id D0F97DAF01; Wed, 4 May 2011 16:04:53 +0700 (NOVST) Received: from unknown.211.ru (localhost [127.0.0.1]) by unknown.211.ru (8.14.4/8.14.4) with ESMTP id p4494rpD014144; Wed, 4 May 2011 16:04:53 +0700 (NOVST) (envelope-from count@unknown.211.ru) Received: (from count@localhost) by unknown.211.ru (8.14.4/8.14.4/Submit) id p4494rdN014143; Wed, 4 May 2011 16:04:53 +0700 (NOVST) (envelope-from count) Date: Wed, 4 May 2011 16:04:53 +0700 From: Stanislav A Svirid To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Message-ID: <20110504090453.GA80209@unknown.211.ru> Mail-Followup-To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org References: <201104100927.p3A9RxgY048787@unknown.211.ru> <201104100950.p3A9oAQD005547@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <201104100950.p3A9oAQD005547@freefall.freebsd.org> Organization: Siberian Networks User-Agent: Mutt/1.5.21 (2010-09-15) Cc: Subject: Re: ports/156304: [maintainer update] net-mgmt/noc: update from 0.6.2 to 0.6.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 May 2011 09:22:33 -0000 Hi. You may close this update. New version of net-mgmt/noc (0.6.4) is out. On Sun, 10 Apr 2011, FreeBSD-gnats-submit@FreeBSD.org wrote: > Thank you very much for your problem report. > It has the internal identification `ports/156304'. > 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=156304 > > >Category: ports > >Responsible: freebsd-ports-bugs > >Synopsis: [maintainer update] net-mgmt/noc: update from 0.6.2 to 0.6.3 > >Arrival-Date: Sun Apr 10 09:50:10 UTC 2011 -- Stanislav Svirid > Siberian Networks, Novosibirsk, Russia > SAS-RIPE, 3909675@ICQ From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 4 09:47:57 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3EA1A1065673; Wed, 4 May 2011 09:47:57 +0000 (UTC) (envelope-from decke@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 158BA8FC1B; Wed, 4 May 2011 09:47:57 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p449luUK079323; Wed, 4 May 2011 09:47:56 GMT (envelope-from decke@freefall.freebsd.org) Received: (from decke@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p449lu7A079319; Wed, 4 May 2011 09:47:56 GMT (envelope-from decke) Date: Wed, 4 May 2011 09:47:56 GMT Message-Id: <201105040947.p449lu7A079319@freefall.freebsd.org> To: decke@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, decke@FreeBSD.org From: decke@FreeBSD.org Cc: Subject: Re: ports/156466: Updated port: comms/esmska -- Program for sending SMS over the Internet X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 May 2011 09:47:57 -0000 Synopsis: Updated port: comms/esmska -- Program for sending SMS over the Internet Responsible-Changed-From-To: freebsd-ports-bugs->decke Responsible-Changed-By: decke Responsible-Changed-When: Wed May 4 09:47:56 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=156466 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 4 10:40:09 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 664781065674 for ; Wed, 4 May 2011 10:40:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3E23E8FC13 for ; Wed, 4 May 2011 10:40:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p44Ae8UQ028581 for ; Wed, 4 May 2011 10:40:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p44Ae8b1028580; Wed, 4 May 2011 10:40:08 GMT (envelope-from gnats) Resent-Date: Wed, 4 May 2011 10:40:08 GMT Resent-Message-Id: <201105041040.p44Ae8b1028580@freefall.freebsd.org> 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:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 70A6E1065675 for ; Wed, 4 May 2011 10:31:25 +0000 (UTC) (envelope-from jdc@koitsu.dyndns.org) Received: from qmta13.westchester.pa.mail.comcast.net (qmta13.westchester.pa.mail.comcast.net [76.96.59.243]) by mx1.freebsd.org (Postfix) with ESMTP id 1DB378FC1C for ; Wed, 4 May 2011 10:31:24 +0000 (UTC) Received: from omta01.westchester.pa.mail.comcast.net ([76.96.62.11]) by qmta13.westchester.pa.mail.comcast.net with comcast id fNWZ1g0020EZKEL5DNXQ4V; Wed, 04 May 2011 10:31:24 +0000 Received: from koitsu.dyndns.org ([67.180.84.87]) by omta01.westchester.pa.mail.comcast.net with comcast id fNXN1g00Y1t3BNj3MNXPqM; Wed, 04 May 2011 10:31:24 +0000 Received: by icarus.home.lan (Postfix, from userid 1000) id 65EE7102C36; Wed, 4 May 2011 03:31:21 -0700 (PDT) Message-Id: <20110504103121.65EE7102C36@icarus.home.lan> Date: Wed, 4 May 2011 03:31:21 -0700 (PDT) From: Jeremy Chadwick To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: dougb@FreeBSD.org, florent.thoumie@gmail.com Subject: ports/156810: 220.backup-pkgdb on RELENG_7 emits tar leading slash warning X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 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, 04 May 2011 10:40:09 -0000 >Number: 156810 >Category: ports >Synopsis: 220.backup-pkgdb on RELENG_7 emits tar leading slash warning >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 May 04 10:40:08 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Jeremy Chadwick >Release: FreeBSD 8.2-STABLE amd64 >Organization: >Environment: System: FreeBSD icarus.home.lan 8.2-STABLE FreeBSD 8.2-STABLE #0: Tue May 3 04:29:11 PDT 2011 root@icarus.home.lan:/usr/obj/usr/src/sys/X7SBA_RELENG_8_amd64 amd64 >Description: First, please note the above Release and Environment statements are not from a RELENG_7 box (obviously :-) ). The issue I'm describing is specific to RELENG_7's version of tar, which differs from RELENG_8. RELENG_7 tar spits out a warning when attempting to tar something with a leading slash: Backing up package db directory: tar: Removing leading '/' from member names RELENG_8 tar has different logic in util.c, causing it not to output said warning. I'm not sure if there's any effort underway to backport RELENG_8's tar to RELENG_7. >How-To-Repeat: Run /etc/periodic/daily/220.backup-pkgdb on a present-day RELENG_7 box. >Fix: There's multiple ways to fix this, but I think the easiest is to simply redirect stderr to /dev/null like so (diff): - if tar -cjf "${new_bak_file}" "$pkg_dbdir"; then + if tar -cjf "${new_bak_file}" "$pkg_dbdir" 2>/dev/null; then I've tested this on a RELENG_7 (7.4-STABLE) box dated 2011/04/30 and it does work. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 4 12:10:08 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CFDA8106566B for ; Wed, 4 May 2011 12:10:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8C0218FC12 for ; Wed, 4 May 2011 12:10:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p44CA8XZ013096 for ; Wed, 4 May 2011 12:10:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p44CA8rC013095; Wed, 4 May 2011 12:10:08 GMT (envelope-from gnats) Resent-Date: Wed, 4 May 2011 12:10:08 GMT Resent-Message-Id: <201105041210.p44CA8rC013095@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Volodymyr Kostyrko Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 73935106564A for ; Wed, 4 May 2011 12:02:54 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 5059D8FC1A for ; Wed, 4 May 2011 12:02:54 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p44C2stW010834 for ; Wed, 4 May 2011 12:02:54 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p44C2rCI010826; Wed, 4 May 2011 12:02:53 GMT (envelope-from nobody) Message-Id: <201105041202.p44C2rCI010826@red.freebsd.org> Date: Wed, 4 May 2011 12:02:53 GMT From: Volodymyr Kostyrko To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156811: lang/python32 has lower priority then lang/python31 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 May 2011 12:10:08 -0000 >Number: 156811 >Category: ports >Synopsis: lang/python32 has lower priority then lang/python31 >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 May 04 12:10:07 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Volodymyr Kostyrko >Release: RELENG_8_2 >Organization: >Environment: FreeBSD pkunk.3501.lan 8.2-RELEASE FreeBSD 8.2-RELEASE #1 r218964: Tue Apr 26 10:44:39 EEST 2011 arcade@pkunk.3501.lan:/usr/obj/usr/src/sys/MINIMAL_8 amd64 >Description: The default python version list defined in Mk/bsd.python.mk @205 lists version 3.1 higher then 3.2: _PYTHON_PORTBRANCH= 2.7 _PYTHON_ALLBRANCHES= 2.7 2.6 2.5 2.4 3.1 3.2# preferred first _ZOPE_PORTBRANCH= 2.7 _ZOPE_ALLBRANCHES= 2.7 2.8 2.9 2.10 3.2 This means for any package marked as 3.1+ 3.1 would be preferred version and 3.2 would be ignored. >How-To-Repeat: For example try compiling databases/py-postgresql having lang/python32 installed - it will default to building lang/python31. >Fix: Why not order list by version? _PYTHON_ALLBRANCHES= 2.7 2.6 2.5 2.4 3.2 3.1# preferred first This will revert to old behavior when higher version would be accepted if lesser version is required. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 4 12:10:19 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F1E051065678; Wed, 4 May 2011 12:10:19 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C7CC78FC1F; Wed, 4 May 2011 12:10:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p44CAJ4g014326; Wed, 4 May 2011 12:10:19 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p44CAJRO014313; Wed, 4 May 2011 12:10:19 GMT (envelope-from edwin) Date: Wed, 4 May 2011 12:10:19 GMT Message-Id: <201105041210.p44CAJRO014313@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156811: lang/python32 has lower priority then lang/python31 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 May 2011 12:10:20 -0000 Synopsis: lang/python32 has lower priority then lang/python31 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Wed May 4 12:10:18 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156811 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 4 12:25:31 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C08A41065781; Wed, 4 May 2011 12:25:31 +0000 (UTC) (envelope-from decke@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 970618FC14; Wed, 4 May 2011 12:25:31 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p44CPVGY046596; Wed, 4 May 2011 12:25:31 GMT (envelope-from decke@freefall.freebsd.org) Received: (from decke@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p44CPV3d046592; Wed, 4 May 2011 12:25:31 GMT (envelope-from decke) Date: Wed, 4 May 2011 12:25:31 GMT Message-Id: <201105041225.p44CPV3d046592@freefall.freebsd.org> To: decke@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, decke@FreeBSD.org From: decke@FreeBSD.org Cc: Subject: Re: ports/156516: Update port: graphics/yed: new version 3.7 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 May 2011 12:25:31 -0000 Synopsis: Update port: graphics/yed: new version 3.7 Responsible-Changed-From-To: freebsd-ports-bugs->decke Responsible-Changed-By: decke Responsible-Changed-When: Wed May 4 12:25:31 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=156516 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 4 13:10:12 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B8E681065679 for ; Wed, 4 May 2011 13:10:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1B7CA8FC18 for ; Wed, 4 May 2011 13:10:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p44DA4XC082708 for ; Wed, 4 May 2011 13:10:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p44DA43H082707; Wed, 4 May 2011 13:10:04 GMT (envelope-from gnats) Resent-Date: Wed, 4 May 2011 13:10:04 GMT Resent-Message-Id: <201105041310.p44DA43H082707@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Eric F Crist Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C203B10656A5 for ; Wed, 4 May 2011 13:00:27 +0000 (UTC) (envelope-from ecrist@secure-computing.net) Received: from kenny.secure-computing.net (kenny.secure-computing.net [173.8.118.210]) by mx1.freebsd.org (Postfix) with ESMTP id 1176A8FC1C for ; Wed, 4 May 2011 13:00:11 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by kenny.secure-computing.net (Postfix) with SMTP id 8401E2E06F for ; Wed, 4 May 2011 07:35:07 -0500 (CDT) Received: from cartman.secure-computing.net (cartman.secure-computing.net [173.8.118.211]) by kenny.secure-computing.net (Postfix) with ESMTP id 07E3B2E06D; Wed, 4 May 2011 07:35:07 -0500 (CDT) Received: by cartman.secure-computing.net (Postfix, from userid 1001) id 8349C6D440; Wed, 4 May 2011 07:40:07 -0500 (CDT) Message-Id: <20110504124007.8349C6D440@cartman.secure-computing.net> Date: Wed, 4 May 2011 07:40:07 -0500 (CDT) From: Eric F Crist To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Josh Paetzel Subject: ports/156812: security/openvpn-devel: Update to week 18, 2011 snapshot X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Eric F Crist List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 May 2011 13:10:12 -0000 >Number: 156812 >Category: ports >Synopsis: security/openvpn-devel: Update to week 18, 2011 snapshot >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 May 04 13:10:04 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Eric F Crist >Release: FreeBSD 9.0-CURRENT amd64 >Organization: Secure Computing Networks & ClaimLynx, Inc >Environment: FreeBSD cartman.secure-computing.net 9.0-CURRENT FreeBSD 9.0-CURRENT #5: Fri Jan 21 12:06:32 CST 2011 root@cartman.secure-computing.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Port is out of date, needs to be updated, so update is suggested and provided. >How-To-Repeat: Wait a long time to update port, become out of date. >Fix: --- ovpnd.diff begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/security/openvpn-devel/Makefile,v retrieving revision 1.68 diff -u -r1.68 Makefile --- Makefile 22 Mar 2011 13:34:12 -0000 1.68 +++ Makefile 4 May 2011 12:12:41 -0000 @@ -6,7 +6,7 @@ # PORTNAME= openvpn -DISTVERSION= 201111 +DISTVERSION= 201118 CATEGORIES= security net MASTER_SITES= ftp://ftp.secure-computing.net/pub/FreeBSD/ports/openvpn-devel/ \ ftp://ftp2.secure-computing.net/pub/FreeBSD/ports/openvpn-devel/ Index: distinfo =================================================================== RCS file: /home/ncvs/ports/security/openvpn-devel/distinfo,v retrieving revision 1.49 diff -u -r1.49 distinfo --- distinfo 22 Mar 2011 13:34:12 -0000 1.49 +++ distinfo 4 May 2011 12:12:41 -0000 @@ -1,2 +1,2 @@ -SHA256 (openvpn-201111.tar.gz) = 660e75b69660c9e270c9c5d79d81a666daefbe2383a310b1f79ff051c90ab94e -SIZE (openvpn-201111.tar.gz) = 1001714 +SHA256 (openvpn-201118.tar.gz) = f2a793d3b47241fa4372cce5ad8f1770adec673edd33ee5dea957f04112a6f16 +SIZE (openvpn-201118.tar.gz) = 1032532 --- ovpnd.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 4 13:30:17 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B0FAB10656B5 for ; Wed, 4 May 2011 13:30:17 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7AD788FC1B for ; Wed, 4 May 2011 13:30:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p44DUAfM000857 for ; Wed, 4 May 2011 13:30:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p44DUAt8000856; Wed, 4 May 2011 13:30:10 GMT (envelope-from gnats) Resent-Date: Wed, 4 May 2011 13:30:10 GMT Resent-Message-Id: <201105041330.p44DUAt8000856@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Geoffroy Desvernay Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EF4101065677 for ; Wed, 4 May 2011 13:20:29 +0000 (UTC) (envelope-from root@ec-m.fr) Received: from melo.ec-m.fr (melo.ec-m.fr [147.94.19.139]) by mx1.freebsd.org (Postfix) with ESMTP id A70388FC2C for ; Wed, 4 May 2011 13:20:29 +0000 (UTC) Received: from amavis4.serv.int (amavis4.serv.int [10.3.0.48]) by melo.ec-m.fr (GrosseBox 1743 XXL) with ESMTP id 7BABDAC89D; Wed, 4 May 2011 15:20:27 +0200 (CEST) Received: from melo.ec-m.fr ([10.3.0.13]) by amavis4.serv.int (amavis4.serv.int [10.3.0.48]) (amavisd-new, port 10024) with LMTP id bphXdx+TfK64; Wed, 4 May 2011 15:20:26 +0200 (CEST) Received: from dgeo.sysadm.ec-m.fr (dgeo.sysadm.ec-m.fr [147.94.19.169]) by melo.ec-m.fr (GrosseBox 1743 XXL) with ESMTP id B0D0FAC895; Wed, 4 May 2011 15:20:26 +0200 (CEST) Received: by dgeo.sysadm.ec-m.fr (Postfix, from userid 0) id 799861CD64; Wed, 4 May 2011 15:20:26 +0200 (CEST) Message-Id: <20110504132026.799861CD64@dgeo.sysadm.ec-m.fr> Date: Wed, 4 May 2011 15:20:26 +0200 (CEST) From: Geoffroy Desvernay To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: gecko@FreeBSD.org, dgeo@centrale-marseille.fr Subject: ports/156813: [PATCH] deskutils/lightning-thunderbird: Patch to require only one time the master password for all distant calendars X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 May 2011 13:30:17 -0000 >Number: 156813 >Category: ports >Synopsis: [PATCH] deskutils/lightning-thunderbird: Patch to require only one time the master password for all distant calendars >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 May 04 13:30:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Geoffroy Desvernay >Release: FreeBSD 8.2-RELEASE-p1 amd64 >Organization: Ecole Centrale de Marseille >Environment: System: FreeBSD dgeo.sysadm.ec-m.fr 8.2-RELEASE-p1 FreeBSD 8.2-RELEASE-p1 #0: Fri Apr 22 01:04:23 CEST 2011 >Description: Patch to require only one time the master password for all distant calendars This circumvent an annoying problem in lightning-thunderbird: it opens as many dialog boxes 'Enter master password' as the number of distant calendars registered in lightning (plus one for imap/pop/news/... accounts by thunderbird) With this patch, (that may be included upstream later, see bugzilla), I only get two (one for thunderbird and one for lightning)... Refs: https://bugzilla.mozilla.org/show_bug.cgi?id=349641 Patch: https://bug349641.bugzilla.mozilla.org/attachment.cgi?id=528856 Added file(s): - files/patch-calendar:base:modules:calAuthUtils.jsm Port maintainer (gecko@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- lightning-thunderbird-1.0_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/deskutils/lightning-thunderbird.orig/files/patch-calendar:base:modules:calAuthUtils.jsm /usr/ports/deskutils/lightning-thunderbird/files/patch-calendar:base:modules:calAuthUtils.jsm --- /usr/ports/deskutils/lightning-thunderbird.orig/files/patch-calendar:base:modules:calAuthUtils.jsm 1970-01-01 01:00:00.000000000 +0100 +++ /usr/ports/deskutils/lightning-thunderbird/files/patch-calendar:base:modules:calAuthUtils.jsm 2011-04-28 20:47:47.000000000 +0200 @@ -0,0 +1,73 @@ +--- calendar/base/modules/calAuthUtils.jsm ++++ calendar/base/modules/calAuthUtils.jsm +@@ -314,42 +314,39 @@ cal.auth.Prompt.prototype = { + * the caller should fall back to promptUsernameAndPassword(). + */ + asyncPromptAuth : function capAPA(aChannel, // nsIChannel + aCallback, // nsIAuthPromptCallback + aContext, // nsISupports + aLevel, // PRUint32 + aAuthInfo // nsIAuthInformation + ) { +- let hostRealm = {}; +- hostRealm.prePath = aChannel.URI.prePath; +- hostRealm.realm = aAuthInfo.realm; +- let port = aChannel.URI.port; +- if (port == -1) { +- let handler = cal.getIOService().getProtocolHandler(aChannel.URI.scheme) +- .QueryInterface(Components.interfaces.nsIProtocolHandler); +- port = handler.defaultPort; +- } +- hostRealm.passwordRealm = aChannel.URI.host + ":" + port + " (" + aAuthInfo.realm + ")"; ++ var self=this; ++ ++ let promptlistener={ + +- let pw = this.getPasswordInfo(hostRealm); +- aAuthInfo.username = pw.username; +- if (pw && pw.found) { +- aAuthInfo.password = pw.password; +- // We cannot call the callback directly here so call it from a timer +- let timerCallback = { +- notify: function(timer) { +- aCallback.onAuthAvailable(aContext, aAuthInfo); +- } +- }; +- let timer = Components.classes["@mozilla.org/timer;1"] +- .createInstance(Components.interfaces.nsITimer); +- timer.initWithCallback(timerCallback, +- 0, +- Components.interfaces.nsITimer.TYPE_ONE_SHOT); +- } else { +- let prompter2 = Components.classes["@mozilla.org/embedcomp/window-watcher;1"] +- .getService(Components.interfaces.nsIPromptFactory) +- .getPrompt(null, Components.interfaces.nsIAuthPrompt2); +- prompter2.asyncPromptAuth(aChannel, aCallback, aContext, aLevel, aAuthInfo); +- } ++ onPromptStart : function() { ++ ++ res=self.promptAuth(aChannel, aLevel, aAuthInfo); ++ ++ if (res) { ++ this.onPromptAuthAvailable(); ++ return true; ++ } ++ ++ this.onPromptCanceled(); ++ return false; ++ }, ++ ++ onPromptAuthAvailable : function() { ++ aCallback.onAuthAvailable(aContext, aAuthInfo); ++ }, ++ ++ onPromptCanceled : function() { ++ aCallback.onAuthCancelled(aContext, true); ++ } ++ }; ++ ++ var asyncprompter=Components.classes["@mozilla.org/messenger/msgAsyncPrompter;1"] ++ .getService(Components.interfaces.nsIMsgAsyncPrompter); ++ asyncprompter.queueAsyncAuthPrompt(aChannel.URI.spec, false, promptlistener); + } + }; --- lightning-thunderbird-1.0_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 4 13:33:06 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 26111106566B; Wed, 4 May 2011 13:33:06 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id F006B8FC16; Wed, 4 May 2011 13:33:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p44DX5qS010291; Wed, 4 May 2011 13:33:05 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p44DX5mL010287; Wed, 4 May 2011 13:33:05 GMT (envelope-from edwin) Date: Wed, 4 May 2011 13:33:05 GMT Message-Id: <201105041333.p44DX5mL010287@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gecko@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156813: [PATCH] deskutils/lightning-thunderbird: Patch to require only one time the master password for all distant calendars X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 May 2011 13:33:06 -0000 Synopsis: [PATCH] deskutils/lightning-thunderbird: Patch to require only one time the master password for all distant calendars Responsible-Changed-From-To: freebsd-ports-bugs->gecko Responsible-Changed-By: edwin Responsible-Changed-When: Wed May 4 13:33:05 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156813 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 4 14:04:16 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A0DC3106566B; Wed, 4 May 2011 14:04:16 +0000 (UTC) (envelope-from jadawin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7862F8FC0C; Wed, 4 May 2011 14:04:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p44E4GVd037311; Wed, 4 May 2011 14:04:16 GMT (envelope-from jadawin@freefall.freebsd.org) Received: (from jadawin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p44E4GQR037307; Wed, 4 May 2011 14:04:16 GMT (envelope-from jadawin) Date: Wed, 4 May 2011 14:04:16 GMT Message-Id: <201105041404.p44E4GQR037307@freefall.freebsd.org> To: rodrigo@bebik.net, jadawin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: jadawin@FreeBSD.org Cc: Subject: Re: ports/156746: www/yabb : port update X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 May 2011 14:04:16 -0000 Synopsis: www/yabb : port update State-Changed-From-To: open->closed State-Changed-By: jadawin State-Changed-When: Wed May 4 14:04:15 UTC 2011 State-Changed-Why: Committed, with minor changes. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=156746 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 4 14:10:14 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6BB81106564A for ; Wed, 4 May 2011 14:10:14 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5C18A8FC0A for ; Wed, 4 May 2011 14:10:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p44EAEsh037711 for ; Wed, 4 May 2011 14:10:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p44EAES1037710; Wed, 4 May 2011 14:10:14 GMT (envelope-from gnats) Date: Wed, 4 May 2011 14:10:14 GMT Message-Id: <201105041410.p44EAES1037710@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/156746: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 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, 04 May 2011 14:10:14 -0000 The following reply was made to PR ports/156746; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/156746: commit references a PR Date: Wed, 4 May 2011 14:04:04 +0000 (UTC) jadawin 2011-05-04 14:03:51 UTC FreeBSD ports repository Modified files: www/yabb Makefile distinfo pkg-plist www/yabb/files checksum.sha256 Log: - Update to 2.5 AE (Anniversary Edition) - Add license information PR: ports/156746 Submitted by: Rodrigo Osorio (maintainer) Revision Changes Path 1.14 +8 -4 ports/www/yabb/Makefile 1.4 +2 -2 ports/www/yabb/distinfo 1.3 +245 -231 ports/www/yabb/files/checksum.sha256 1.6 +137 -122 ports/www/yabb/pkg-plist _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 4 14:20:09 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3A17E1065672; Wed, 4 May 2011 14:20:09 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3EE018FC15; Wed, 4 May 2011 14:20:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p44EK6Sj048844; Wed, 4 May 2011 14:20:06 GMT (envelope-from culot@freefall.freebsd.org) Received: (from culot@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p44EK6TP048840; Wed, 4 May 2011 14:20:06 GMT (envelope-from culot) Date: Wed, 4 May 2011 14:20:06 GMT Message-Id: <201105041420.p44EK6TP048840@freefall.freebsd.org> To: culot@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, culot@FreeBSD.org From: culot@FreeBSD.org Cc: Subject: Re: ports/156618: Port update: games/searchandrescue X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 May 2011 14:20:09 -0000 Synopsis: Port update: games/searchandrescue Responsible-Changed-From-To: freebsd-ports-bugs->culot Responsible-Changed-By: culot Responsible-Changed-When: Wed May 4 14:20:05 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=156618 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 4 15:00:26 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 07CC91065686 for ; Wed, 4 May 2011 15:00:26 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A756A8FC1A for ; Wed, 4 May 2011 15:00:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p44F0Ot0085852 for ; Wed, 4 May 2011 15:00:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p44F0O0c085851; Wed, 4 May 2011 15:00:24 GMT (envelope-from gnats) Resent-Date: Wed, 4 May 2011 15:00:24 GMT Resent-Message-Id: <201105041500.p44F0O0c085851@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Michael Fuckner Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9793C106564A for ; Wed, 4 May 2011 14:51:14 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 884D78FC14 for ; Wed, 4 May 2011 14:51:14 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p44EpDNA022037 for ; Wed, 4 May 2011 14:51:14 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p44EpDYt022036; Wed, 4 May 2011 14:51:13 GMT (envelope-from nobody) Message-Id: <201105041451.p44EpDYt022036@red.freebsd.org> Date: Wed, 4 May 2011 14:51:13 GMT From: Michael Fuckner To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156816: Update arcconf to 7.00 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 May 2011 15:00:26 -0000 >Number: 156816 >Category: ports >Synopsis: Update arcconf to 7.00 >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 May 04 15:00:24 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Michael Fuckner >Release: 8.2-STABLE >Organization: >Environment: FreeBSD test35.testnetz 8.2-STABLE FreeBSD 8.2-STABLE #0: Wed May 4 14:36:19 UTC 2011 root@.testnetz:/usr/obj/usr/src/sys/GENERIC amd64 >Description: arcconf 7.00 tested against 8.2-STABLE with 6805 Controller >How-To-Repeat: >Fix: --- arcconf.bak/Makefile 2011-05-03 07:36:45.312510459 +0200 +++ arcconf/Makefile 2011-05-03 07:37:20.298275251 +0200 @@ -5,7 +5,7 @@ # $FreeBSD: ports/sysutils/arcconf/Makefile,v 1.11 2011/05/03 04:51:13 sunpoet Exp $ PORTNAME= arcconf -DISTVERSION= v6_50_18771 +DISTVERSION= v7_00_18781 CATEGORIES= sysutils MASTER_SITES= http://download.adaptec.com/raid/storage_manager/ DISTNAME= asm_freebsd_${DIST_EXT}_${DISTVERSION} diff -ruN arcconf.bak/distinfo arcconf/distinfo --- arcconf.bak/distinfo 2011-05-03 07:36:45.312510459 +0200 +++ arcconf/distinfo 2011-05-04 16:10:12.606619359 +0200 @@ -1,4 +1,4 @@ -SHA256 (asm_freebsd_x86_v6_50_18771.tgz) = 3f2e5b64b6a956969b47ab37b68f152d4aa602861ce2871cbf59430835da30ba -SIZE (asm_freebsd_x86_v6_50_18771.tgz) = 156335703 -SHA256 (asm_freebsd_x64_v6_50_18771.tgz) = 2f374ace00d99c1eed3ced28c6985098ee3ff45ace827f23e7da810f8a20cc8c -SIZE (asm_freebsd_x64_v6_50_18771.tgz) = 152288701 +SHA256 (asm_freebsd_x86_v7_00_18781.tgz) = 4be4172bdbcd90d555b94b21991e393d6bfffb520d8d928f99bd92063255754f +SIZE (asm_freebsd_x86_v7_00_18781.tgz) = 156343981 +SHA256 (asm_freebsd_x64_v7_00_18781.tgz) = 7390022ad9c664ba152332fb369db41648fe8315ce2e5d6118f6a49fc786d888 +SIZE (asm_freebsd_x64_v7_00_18781.tgz) = 152291554 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 4 15:26:20 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CFE23106566B; Wed, 4 May 2011 15:26:20 +0000 (UTC) (envelope-from dhn@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A78EF8FC1B; Wed, 4 May 2011 15:26:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p44FQKY7012787; Wed, 4 May 2011 15:26:20 GMT (envelope-from dhn@freefall.freebsd.org) Received: (from dhn@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p44FQKpk012783; Wed, 4 May 2011 15:26:20 GMT (envelope-from dhn) Date: Wed, 4 May 2011 15:26:20 GMT Message-Id: <201105041526.p44FQKpk012783@freefall.freebsd.org> To: dhn@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, dhn@FreeBSD.org From: dhn@FreeBSD.org Cc: Subject: Re: ports/156812: security/openvpn-devel: Update to week 18, 2011 snapshot X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 May 2011 15:26:20 -0000 Synopsis: security/openvpn-devel: Update to week 18, 2011 snapshot Responsible-Changed-From-To: freebsd-ports-bugs->dhn Responsible-Changed-By: dhn Responsible-Changed-When: Wed May 4 15:26:20 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=156812 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 4 15:31:28 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 22EA51065748; Wed, 4 May 2011 15:31:28 +0000 (UTC) (envelope-from decke@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EEF018FC0C; Wed, 4 May 2011 15:31:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p44FVRaX020982; Wed, 4 May 2011 15:31:27 GMT (envelope-from decke@freefall.freebsd.org) Received: (from decke@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p44FVRxU020973; Wed, 4 May 2011 15:31:27 GMT (envelope-from decke) Date: Wed, 4 May 2011 15:31:27 GMT Message-Id: <201105041531.p44FVRxU020973@freefall.freebsd.org> To: decke@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, decke@FreeBSD.org From: decke@FreeBSD.org Cc: Subject: Re: ports/155525: [MAINTAINER] games/assaultcube: fixes and additions X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 May 2011 15:31:28 -0000 Synopsis: [MAINTAINER] games/assaultcube: fixes and additions Responsible-Changed-From-To: freebsd-ports-bugs->decke Responsible-Changed-By: decke Responsible-Changed-When: Wed May 4 15:31:27 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=155525 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 4 16:30:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BF511106566B for ; Wed, 4 May 2011 16:30:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7C7248FC18 for ; Wed, 4 May 2011 16:30:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p44GUBcD066952 for ; Wed, 4 May 2011 16:30:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p44GUBTX066948; Wed, 4 May 2011 16:30:11 GMT (envelope-from gnats) Resent-Date: Wed, 4 May 2011 16:30:11 GMT Resent-Message-Id: <201105041630.p44GUBTX066948@freefall.freebsd.org> 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 Yuzhaninov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2BD83106564A; Wed, 4 May 2011 16:21:24 +0000 (UTC) (envelope-from citrin@citrin.ru) Received: from mail.vega.ru (mail.vega.ru [90.156.167.5]) by mx1.freebsd.org (Postfix) with ESMTP id D36E08FC19; Wed, 4 May 2011 16:21:23 +0000 (UTC) Received: from db04.dev.vega.ru ([10.25.1.62]) by mail.vega.ru with esmtps (TLSv1:AES256-SHA:256) (Exim 4.75 (FreeBSD)) (envelope-from ) id 1QHepF-000Bo4-L2; Wed, 04 May 2011 20:21:21 +0400 Received: from db04.dev.vega.ru (db04.dev.vega.ru [10.25.1.62]) by db04.dev.vega.ru (8.14.4/8.14.4) with ESMTP id p44GLHWg048642; Wed, 4 May 2011 16:21:18 GMT (envelope-from citrin@citrin.ru) Received: (from ayuzhaninov@localhost) by db04.dev.vega.ru (8.14.4/8.14.4/Submit) id p44GLFuW048640; Wed, 4 May 2011 16:21:15 GMT (envelope-from citrin@citrin.ru) Message-Id: <201105041621.p44GLFuW048640@db04.dev.vega.ru> Date: Wed, 4 May 2011 16:21:15 GMT From: Anton Yuzhaninov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: kuriyama@FreeBSD.org Subject: ports/156818: [PATCH] databases/pgpool-II: add reload to startup script X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 May 2011 16:30:11 -0000 >Number: 156818 >Category: ports >Synopsis: [PATCH] databases/pgpool-II: add reload to startup script >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 May 04 16:30:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Anton Yuzhaninov >Release: FreeBSD 7.3-PRERELEASE-20100201 amd64 >Organization: openstat.ru >Environment: System: FreeBSD db04.dev.vega.ru 7.3-PRERELEASE-20100201 FreeBSD 7.3-PRERELEASE-20100201 #0: Mon Feb 1 02:16:20 UTC >Description: Add reload command to startup script. While here remove spaces at end of line. Port maintainer (kuriyama@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- pgpool-II-3.0.3.patch begins here --- diff -ruN --exclude=CVS /usr/ports/databases/pgpool-II/files/pgpool.in /usr/home/ayuzhaninov/pgpool-II/files/pgpool.in --- /usr/ports/databases/pgpool-II/files/pgpool.in 2010-03-28 04:10:04.000000000 +0000 +++ /usr/home/ayuzhaninov/pgpool-II/files/pgpool.in 2011-05-04 16:17:34.000000000 +0000 @@ -1,7 +1,7 @@ #!/bin/sh # # $FreeBSD: ports/databases/pgpool-II/files/pgpool.in,v 1.5 2010/03/27 00:12:48 dougb Exp $ -# +# # PROVIDE: pgpool # REQUIRE: LOGIN # KEYWORD: shutdown @@ -38,6 +38,10 @@ start_cmd="pgpool_start" stop_cmd="${command} ${command_args} stop" +extra_commands="reload" +reload_cmd="reload_cmd" +reload_cmd="$command $command_args reload" + required_files="${pgpool_conf}" pgpool_start() --- pgpool-II-3.0.3.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 4 16:31:22 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 66EB5106564A; Wed, 4 May 2011 16:31:22 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3EA018FC15; Wed, 4 May 2011 16:31:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p44GVMjU072977; Wed, 4 May 2011 16:31:22 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p44GVM89072968; Wed, 4 May 2011 16:31:22 GMT (envelope-from edwin) Date: Wed, 4 May 2011 16:31:22 GMT Message-Id: <201105041631.p44GVM89072968@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kuriyama@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156818: [PATCH] databases/pgpool-II: add reload to startup script X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 May 2011 16:31:22 -0000 Synopsis: [PATCH] databases/pgpool-II: add reload to startup script Responsible-Changed-From-To: freebsd-ports-bugs->kuriyama Responsible-Changed-By: edwin Responsible-Changed-When: Wed May 4 16:31:21 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156818 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 4 16:45:41 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 15FDA106566C; Wed, 4 May 2011 16:45:41 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E1F308FC19; Wed, 4 May 2011 16:45:40 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p44Gje9I085580; Wed, 4 May 2011 16:45:40 GMT (envelope-from beech@freefall.freebsd.org) Received: (from beech@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p44GjeWM085576; Wed, 4 May 2011 16:45:40 GMT (envelope-from beech) Date: Wed, 4 May 2011 16:45:40 GMT Message-Id: <201105041645.p44GjeWM085576@freefall.freebsd.org> To: beech@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, beech@FreeBSD.org From: beech@FreeBSD.org Cc: Subject: Re: ports/156809: [maintainer update] net-mgmt/noc: update from 0.6.2 to 0.6.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 May 2011 16:45:41 -0000 Synopsis: [maintainer update] net-mgmt/noc: update from 0.6.2 to 0.6.4 Responsible-Changed-From-To: freebsd-ports-bugs->beech Responsible-Changed-By: beech Responsible-Changed-When: Wed May 4 16:44:48 UTC 2011 Responsible-Changed-Why: I'll take it http://www.freebsd.org/cgi/query-pr.cgi?pr=156809 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 4 17:10:09 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7AA7C1065678 for ; Wed, 4 May 2011 17:10:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 430288FC17 for ; Wed, 4 May 2011 17:10:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p44HA9XP003439 for ; Wed, 4 May 2011 17:10:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p44HA9HF003438; Wed, 4 May 2011 17:10:09 GMT (envelope-from gnats) Resent-Date: Wed, 4 May 2011 17:10:09 GMT Resent-Message-Id: <201105041710.p44HA9HF003438@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "beech@" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 44F95106564A; Wed, 4 May 2011 17:09:17 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from maximum3.maximumdata.biz (216-67-98-197.static.acsalaska.net [216.67.98.197]) by mx1.freebsd.org (Postfix) with ESMTP id 14C538FC15; Wed, 4 May 2011 17:09:17 +0000 (UTC) Received: from maximum3.maximumdata.biz (localhost [127.0.0.1]) by maximum3.maximumdata.biz (Postfix) with ESMTP id 771B2228029; Wed, 4 May 2011 08:57:33 -0800 (AKDT) Message-Id: <1304528253.54343@maximum3.maximumdata.biz> Date: Wed, 4 May 2011 08:57:33 -0800 From: "beech@" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.4.9 Cc: beech@FreeBSD.org Subject: ports/156819: Chase update of dovecot2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 May 2011 17:10:09 -0000 >Number: 156819 >Category: ports >Synopsis: Chase update of dovecot2 >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 May 04 17:10:08 UTC 2011 >Closed-Date: >Last-Modified: >Originator: beech@ >Release: FreeBSD 9.0-CURRENT i386 >Organization: FreeBSD >Environment: System: FreeBSD 9.0-CURRENT #34: Mon Apr 18 10:47:11 AKDT 2011 beech@maximum3.maximumdata.biz:/usr/obj/usr/src/sys/STARGATE >Description: Bump portrevision to chase update in dovecot2 (ports/156728). >How-To-Repeat: >Fix: Index: dovecot2-pigeonhole/Makefile =================================================================== RCS file: /home/pcvs/ports/mail/dovecot2-pigeonhole/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- dovecot2-pigeonhole/Makefile 17 Mar 2011 16:01:30 -0000 1.4 +++ dovecot2-pigeonhole/Makefile 4 May 2011 16:52:33 -0000 @@ -7,7 +7,7 @@ PORTNAME= dovecot-pigeonhole PORTVERSION= 0.2.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= mail MASTER_SITES= http://www.rename-it.nl/dovecot/${DOVECOTVERSION}/ DISTNAME= ${PORTNAME:C/-/-${DOVECOTVERSION}-/}-${PORTVERSION} >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 4 17:19:44 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0B8861065673; Wed, 4 May 2011 17:19:44 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D86CA8FC0A; Wed, 4 May 2011 17:19:43 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p44HJh8R013360; Wed, 4 May 2011 17:19:43 GMT (envelope-from beech@freefall.freebsd.org) Received: (from beech@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p44HJhbw013356; Wed, 4 May 2011 17:19:43 GMT (envelope-from beech) Date: Wed, 4 May 2011 17:19:43 GMT Message-Id: <201105041719.p44HJhbw013356@freefall.freebsd.org> To: beech@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, beech@FreeBSD.org From: beech@FreeBSD.org Cc: Subject: Re: ports/156819: Chase update of dovecot2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 May 2011 17:19:44 -0000 Synopsis: Chase update of dovecot2 Responsible-Changed-From-To: freebsd-ports-bugs->beech Responsible-Changed-By: beech Responsible-Changed-When: Wed May 4 17:18:14 UTC 2011 Responsible-Changed-Why: My pr http://www.freebsd.org/cgi/query-pr.cgi?pr=156819 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 4 17:50:09 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 40E131065670 for ; Wed, 4 May 2011 17:50:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1C9B48FC1C for ; Wed, 4 May 2011 17:50:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p44Ho8Yq040794 for ; Wed, 4 May 2011 17:50:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p44Ho8Oo040793; Wed, 4 May 2011 17:50:08 GMT (envelope-from gnats) Resent-Date: Wed, 4 May 2011 17:50:08 GMT Resent-Message-Id: <201105041750.p44Ho8Oo040793@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jaap Akkerhuis Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C6BB61065673 for ; Wed, 4 May 2011 17:48:05 +0000 (UTC) (envelope-from jaap@bartok.nlnetlabs.nl) Received: from bartok.nlnetlabs.nl (bartok.nlnetlabs.nl [IPv6:2001:7b8:206:1:216:76ff:feb8:3c02]) by mx1.freebsd.org (Postfix) with ESMTP id 5AFE08FC18 for ; Wed, 4 May 2011 17:48:03 +0000 (UTC) Received: from bartok.nlnetlabs.nl (localhost [127.0.0.1]) by bartok.nlnetlabs.nl (8.14.4/8.14.4) with ESMTP id p44Hm0eM016253 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Wed, 4 May 2011 19:48:00 +0200 (CEST) (envelope-from jaap@bartok.nlnetlabs.nl) Received: (from jaap@localhost) by bartok.nlnetlabs.nl (8.14.4/8.14.4/Submit) id p44Hm0rw016252; Wed, 4 May 2011 19:48:00 +0200 (CEST) (envelope-from jaap) Message-Id: <201105041748.p44Hm0rw016252@bartok.nlnetlabs.nl> Date: Wed, 4 May 2011 19:48:00 +0200 (CEST) From: Jaap Akkerhuis To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/156820: [MAINTAINER] security/softhsm: update to 1.2.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 May 2011 17:50:09 -0000 >Number: 156820 >Category: ports >Synopsis: [MAINTAINER] security/softhsm: update to 1.2.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: Wed May 04 17:50:08 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Jaap Akkerhuis >Release: FreeBSD 8.2-STABLE i386 >Organization: NLnet Labs >Environment: System: FreeBSD bartok.nlnetlabs.nl 8.2-STABLE FreeBSD 8.2-STABLE #195: Tue Apr 26 02:39:58 CEST 2011 >Description: - Update to 1.2.1 Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- softhsm-1.2.1.patch begins here --- diff -ruN --exclude=CVS /space/portstrees/AFreeBSD/ports/security/softhsm.orig/Makefile /space/portstrees/AFreeBSD/ports/security/softhsm/Makefile --- /space/portstrees/AFreeBSD/ports/security/softhsm.orig/Makefile 2011-05-04 19:35:53.000000000 +0200 +++ /space/portstrees/AFreeBSD/ports/security/softhsm/Makefile 2011-05-04 16:19:13.000000000 +0200 @@ -6,7 +6,7 @@ # PORTNAME= softhsm -PORTVERSION= 1.2.0 +PORTVERSION= 1.2.1 CATEGORIES= security MASTER_SITES= http://www.opendnssec.org/files/source/ diff -ruN --exclude=CVS /space/portstrees/AFreeBSD/ports/security/softhsm.orig/distinfo /space/portstrees/AFreeBSD/ports/security/softhsm/distinfo --- /space/portstrees/AFreeBSD/ports/security/softhsm.orig/distinfo 2011-05-04 19:35:53.000000000 +0200 +++ /space/portstrees/AFreeBSD/ports/security/softhsm/distinfo 2011-05-04 16:19:58.000000000 +0200 @@ -1,3 +1,2 @@ -MD5 (softhsm-1.2.0.tar.gz) = e51a9a43e86803603ed82a55782b9aa8 -SHA256 (softhsm-1.2.0.tar.gz) = fd18e72598467d7810358b1d342c6f86d841f3989942deb1a52af8e8112eb65c -SIZE (softhsm-1.2.0.tar.gz) = 395009 +SHA256 (softhsm-1.2.1.tar.gz) = 0ecf3cc19d15c3fde5a58594990d1331b0f708b38a70210f07e456f8081581a7 +SIZE (softhsm-1.2.1.tar.gz) = 395446 --- softhsm-1.2.1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 4 18:20:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D7045106564A for ; Wed, 4 May 2011 18:20:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B4A9B8FC1E for ; Wed, 4 May 2011 18:20:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p44IKAI8068386 for ; Wed, 4 May 2011 18:20:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p44IKA2n068385; Wed, 4 May 2011 18:20:10 GMT (envelope-from gnats) Resent-Date: Wed, 4 May 2011 18:20:10 GMT Resent-Message-Id: <201105041820.p44IKA2n068385@freefall.freebsd.org> 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 Rees Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DE0DD106566B for ; Wed, 4 May 2011 18:12:19 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id B3CF88FC0A for ; Wed, 4 May 2011 18:12:19 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p44ICJta017261 for ; Wed, 4 May 2011 18:12:19 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p44ICJjs017260; Wed, 4 May 2011 18:12:19 GMT (envelope-from nobody) Message-Id: <201105041812.p44ICJjs017260@red.freebsd.org> Date: Wed, 4 May 2011 18:12:19 GMT From: Chris Rees To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156821: Update port: sysutils/monitorix to version 2.1.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 May 2011 18:20:10 -0000 >Number: 156821 >Category: ports >Synopsis: Update port: sysutils/monitorix to version 2.1.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: Wed May 04 18:20:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Chris Rees >Release: >Organization: >Environment: >Description: Monitorix has been updated to v2.1.2: http://www.monitorix.org/changelog.html >How-To-Repeat: >Fix: - Update to 2.1.2 - Correct use of CGIDIR, used as in cvsweb3 Patch: http://www.bayofrum.net/~crees/patches/monitorix-2.1.2.diff >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 4 18:38:21 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 77F2A1065673; Wed, 4 May 2011 18:38:21 +0000 (UTC) (envelope-from decke@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4DFDC8FC13; Wed, 4 May 2011 18:38:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p44IcLhY086412; Wed, 4 May 2011 18:38:21 GMT (envelope-from decke@freefall.freebsd.org) Received: (from decke@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p44IcLdZ086408; Wed, 4 May 2011 18:38:21 GMT (envelope-from decke) Date: Wed, 4 May 2011 18:38:21 GMT Message-Id: <201105041838.p44IcLdZ086408@freefall.freebsd.org> To: jjuanino@gmail.com, decke@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: decke@FreeBSD.org Cc: Subject: Re: ports/156316: [maintainer update] databases/sqldeveloper version update from 2.1.1.64.45 to 3.0.04.34 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 May 2011 18:38:21 -0000 Synopsis: [maintainer update] databases/sqldeveloper version update from 2.1.1.64.45 to 3.0.04.34 State-Changed-From-To: open->closed State-Changed-By: decke State-Changed-When: Wed May 4 18:38:20 UTC 2011 State-Changed-Why: Committed, with minor changes. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=156316 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 4 18:40:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7ABB11065670 for ; Wed, 4 May 2011 18:40:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 69C388FC0C for ; Wed, 4 May 2011 18:40:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p44IeBTE086510 for ; Wed, 4 May 2011 18:40:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p44IeBXZ086509; Wed, 4 May 2011 18:40:11 GMT (envelope-from gnats) Date: Wed, 4 May 2011 18:40:11 GMT Message-Id: <201105041840.p44IeBXZ086509@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/156316: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 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, 04 May 2011 18:40:11 -0000 The following reply was made to PR ports/156316; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/156316: commit references a PR Date: Wed, 4 May 2011 18:38:04 +0000 (UTC) decke 2011-05-04 18:37:50 UTC FreeBSD ports repository Modified files: databases/sqldeveloper Makefile distinfo pkg-plist databases/sqldeveloper/files pkg-message.in Log: - Update to 3.0.04.34 - Update pkg-message.in PR: ports/156316 Submitted by: Jose Garcia Juanino (maintainer) Revision Changes Path 1.10 +16 -2 ports/databases/sqldeveloper/Makefile 1.9 +2 -2 ports/databases/sqldeveloper/distinfo 1.6 +4 -1 ports/databases/sqldeveloper/files/pkg-message.in 1.8 +786 -21 ports/databases/sqldeveloper/pkg-plist _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 4 18:59:55 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A17E11065670; Wed, 4 May 2011 18:59:55 +0000 (UTC) (envelope-from decke@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 77CCE8FC0C; Wed, 4 May 2011 18:59:55 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p44IxtCF003565; Wed, 4 May 2011 18:59:55 GMT (envelope-from decke@freefall.freebsd.org) Received: (from decke@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p44IxtHC003561; Wed, 4 May 2011 18:59:55 GMT (envelope-from decke) Date: Wed, 4 May 2011 18:59:55 GMT Message-Id: <201105041859.p44IxtHC003561@freefall.freebsd.org> To: decke@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, decke@FreeBSD.org From: decke@FreeBSD.org Cc: Subject: Re: ports/156821: Update port: sysutils/monitorix to version 2.1.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 May 2011 18:59:55 -0000 Synopsis: Update port: sysutils/monitorix to version 2.1.1 Responsible-Changed-From-To: freebsd-ports-bugs->decke Responsible-Changed-By: decke Responsible-Changed-When: Wed May 4 18:59:55 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=156821 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 4 19:09:43 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BB14A1065670; Wed, 4 May 2011 19:09:43 +0000 (UTC) (envelope-from decke@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 912408FC0A; Wed, 4 May 2011 19:09:43 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p44J9hM4012397; Wed, 4 May 2011 19:09:43 GMT (envelope-from decke@freefall.freebsd.org) Received: (from decke@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p44J9hbr012393; Wed, 4 May 2011 19:09:43 GMT (envelope-from decke) Date: Wed, 4 May 2011 19:09:43 GMT Message-Id: <201105041909.p44J9hbr012393@freefall.freebsd.org> To: decke@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, decke@FreeBSD.org From: decke@FreeBSD.org Cc: Subject: Re: ports/156820: [MAINTAINER] security/softhsm: update to 1.2.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 May 2011 19:09:43 -0000 Synopsis: [MAINTAINER] security/softhsm: update to 1.2.1 Responsible-Changed-From-To: freebsd-ports-bugs->decke Responsible-Changed-By: decke Responsible-Changed-When: Wed May 4 19:09:43 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=156820 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 4 23:40:12 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0D021106564A for ; Wed, 4 May 2011 23:40:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EE9FF8FC0A for ; Wed, 4 May 2011 23:40:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p44NeBOJ058273 for ; Wed, 4 May 2011 23:40:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p44NeBFF058272; Wed, 4 May 2011 23:40:11 GMT (envelope-from gnats) Date: Wed, 4 May 2011 23:40:11 GMT Message-Id: <201105042340.p44NeBFF058272@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/152006: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 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, 04 May 2011 23:40:12 -0000 The following reply was made to PR ports/152006; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/152006: commit references a PR Date: Wed, 4 May 2011 23:36:48 +0000 (UTC) tota 2011-05-04 23:36:34 UTC FreeBSD ports repository Modified files: chinese/unzip Makefile korean/unzip Makefile russian/unzip Makefile Log: - Set CONFLICTS with unzip-iconv upcoming as a new port PR: ports/152006 Submitted by: KOMATSU Shinichiro Revision Changes Path 1.7 +1 -1 ports/chinese/unzip/Makefile 1.6 +1 -1 ports/korean/unzip/Makefile 1.6 +1 -1 ports/russian/unzip/Makefile _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 4 23:46:26 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 89E761065675; Wed, 4 May 2011 23:46:26 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5DAC18FC16; Wed, 4 May 2011 23:46:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p44NkQLw066502; Wed, 4 May 2011 23:46:26 GMT (envelope-from tota@freefall.freebsd.org) Received: (from tota@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p44NkP2B066497; Wed, 4 May 2011 23:46:25 GMT (envelope-from tota) Date: Wed, 4 May 2011 23:46:25 GMT Message-Id: <201105042346.p44NkP2B066497@freefall.freebsd.org> To: koma2@lovepeers.org, tota@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, tota@FreeBSD.org From: tota@FreeBSD.org Cc: Subject: Re: ports/152006: New Port: archivers/unzip-iconv: Slave port of unzip with WITH_ICONV=yes set X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 May 2011 23:46:26 -0000 Synopsis: New Port: archivers/unzip-iconv: Slave port of unzip with WITH_ICONV=yes set State-Changed-From-To: open->closed State-Changed-By: tota State-Changed-When: Wed May 4 23:44:54 UTC 2011 State-Changed-Why: Committed, with minor changes. Thanks! Responsible-Changed-From-To: freebsd-ports-bugs->tota Responsible-Changed-By: tota Responsible-Changed-When: Wed May 4 23:44:54 UTC 2011 Responsible-Changed-Why: Committed, with minor changes. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=152006 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 5 00:44:41 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CB3A8106566B; Thu, 5 May 2011 00:44:41 +0000 (UTC) (envelope-from beech@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9F4748FC16; Thu, 5 May 2011 00:44:41 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p450ifWL021189; Thu, 5 May 2011 00:44:41 GMT (envelope-from beech@freefall.freebsd.org) Received: (from beech@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p450idtD021185; Thu, 5 May 2011 00:44:39 GMT (envelope-from beech) Date: Thu, 5 May 2011 00:44:39 GMT Message-Id: <201105050044.p450idtD021185@freefall.freebsd.org> To: codeblock@eighthbit.net, beech@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, beech@FreeBSD.org From: beech@FreeBSD.org Cc: Subject: Re: ports/156773: [PATCH] www/gist: update to 2.0.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 May 2011 00:44:41 -0000 Synopsis: [PATCH] www/gist: update to 2.0.3 Responsible-Changed-From-To: freebsd-ports-bugs->beech Responsible-Changed-By: beech Responsible-Changed-When: Thu May 5 00:43:51 UTC 2011 Responsible-Changed-Why: I'll take it http://www.freebsd.org/cgi/query-pr.cgi?pr=156773 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 5 01:17:51 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BC46B106566C; Thu, 5 May 2011 01:17:51 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8F4FF8FC12; Thu, 5 May 2011 01:17:51 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p451Hpsm048476; Thu, 5 May 2011 01:17:51 GMT (envelope-from tota@freefall.freebsd.org) Received: (from tota@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p451Hpa8048458; Thu, 5 May 2011 01:17:51 GMT (envelope-from tota) Date: Thu, 5 May 2011 01:17:51 GMT Message-Id: <201105050117.p451Hpa8048458@freefall.freebsd.org> To: fw@moov.de, tota@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, tota@FreeBSD.org From: tota@FreeBSD.org Cc: Subject: Re: ports/152082: [NEW PORT] www/encode-explorer: A PHP script to browse, create folders, upload files etc X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 May 2011 01:17:51 -0000 Synopsis: [NEW PORT] www/encode-explorer: A PHP script to browse, create folders, upload files etc State-Changed-From-To: open->closed State-Changed-By: tota State-Changed-When: Thu May 5 01:16:35 UTC 2011 State-Changed-Why: Committed, with minor changes. Thanks! Responsible-Changed-From-To: freebsd-ports-bugs->tota Responsible-Changed-By: tota Responsible-Changed-When: Thu May 5 01:16:35 UTC 2011 Responsible-Changed-Why: Committed, with minor changes. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=152082 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 5 02:00:24 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9E6A41065673; Thu, 5 May 2011 02:00:09 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5A3BF8FC13; Thu, 5 May 2011 02:00:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p4520947084072; Thu, 5 May 2011 02:00:09 GMT (envelope-from wen@freefall.freebsd.org) Received: (from wen@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p45208QT084066; Thu, 5 May 2011 02:00:08 GMT (envelope-from wen) Date: Thu, 5 May 2011 02:00:08 GMT Message-Id: <201105050200.p45208QT084066@freefall.freebsd.org> To: chris@smartt.com, jumper99@gmx.de, wen@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: wen@FreeBSD.org Cc: Subject: Re: ports/156553: [PATCH] net-mgmt/nagiosql: update to 3.1.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 May 2011 02:00:24 -0000 Synopsis: [PATCH] net-mgmt/nagiosql: update to 3.1.1 State-Changed-From-To: feedback->closed State-Changed-By: wen State-Changed-When: Thu May 5 02:00:08 UTC 2011 State-Changed-Why: Superceded by 156555. http://www.freebsd.org/cgi/query-pr.cgi?pr=156553 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 5 02:35:32 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3ED781065754; Thu, 5 May 2011 02:35:32 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 09A358FC08; Thu, 5 May 2011 02:35:32 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p452ZVi0021226; Thu, 5 May 2011 02:35:31 GMT (envelope-from dougb@freefall.freebsd.org) Received: (from dougb@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p452ZV3P021222; Thu, 5 May 2011 02:35:31 GMT (envelope-from dougb) Date: Thu, 5 May 2011 02:35:31 GMT Message-Id: <201105050235.p452ZV3P021222@freefall.freebsd.org> To: freebsd@jdc.parodius.com, dougb@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, dougb@FreeBSD.org From: dougb@FreeBSD.org Cc: Subject: Re: ports/156810: 220.backup-pkgdb on RELENG_7 emits tar leading slash warning X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 May 2011 02:35:32 -0000 Synopsis: 220.backup-pkgdb on RELENG_7 emits tar leading slash warning State-Changed-From-To: open->patched State-Changed-By: dougb State-Changed-When: Thu May 5 02:30:42 UTC 2011 State-Changed-Why: r221475 Responsible-Changed-From-To: freebsd-ports-bugs->dougb Responsible-Changed-By: dougb Responsible-Changed-When: Thu May 5 02:30:42 UTC 2011 Responsible-Changed-Why: My problem. http://www.freebsd.org/cgi/query-pr.cgi?pr=156810 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 5 03:10:05 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A9E1B1065673 for ; Thu, 5 May 2011 03:10:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7E9EA8FC18 for ; Thu, 5 May 2011 03:10:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p453A5iI047827 for ; Thu, 5 May 2011 03:10:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p453A50e047826; Thu, 5 May 2011 03:10:05 GMT (envelope-from gnats) Resent-Date: Thu, 5 May 2011 03:10:05 GMT Resent-Message-Id: <201105050310.p453A50e047826@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jase Thew Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D9E31106566C; Thu, 5 May 2011 03:08:15 +0000 (UTC) (envelope-from freebsd@beardz.net) Received: from beardz.net (beardz.net [IPv6:2a01:4f8:121:2403:1::]) by mx1.freebsd.org (Postfix) with ESMTP id 74DAC8FC13; Thu, 5 May 2011 03:08:15 +0000 (UTC) Received: from beardz.net (localhost [127.0.1.7]) by beardz.net (8.14.4/8.14.4) with ESMTP id p4538DNQ030315; Thu, 5 May 2011 04:08:13 +0100 (BST) (envelope-from freebsd@beardz.net) Received: (from root@localhost) by beardz.net (8.14.4/8.14.4/Submit) id p4538CLn030314; Thu, 5 May 2011 04:08:12 +0100 (BST) (envelope-from freebsd@beardz.net) Message-Id: <201105050308.p4538CLn030314@beardz.net> Date: Thu, 5 May 2011 04:08:12 +0100 (BST) From: Jase Thew To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: perl@FreeBSD.org Subject: ports/156822: [PATCH] security/p5-POE-Component-SSLify: update to 1.008 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 May 2011 03:10:05 -0000 >Number: 156822 >Category: ports >Synopsis: [PATCH] security/p5-POE-Component-SSLify: update to 1.008 >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 May 05 03:10:05 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Jase Thew >Release: FreeBSD 8.2-STABLE amd64 >Organization: >Environment: System: FreeBSD jail-ports.localdomain 8.2-STABLE FreeBSD 8.2-STABLE #0: Sat Apr 2 19:17:15 BST >Description: - Update to 1.008 - Add licence Port maintainer (perl@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- p5-POE-Component-SSLify-1.008.patch begins here --- diff -ruN --exclude=CVS /usr/ports/security/p5-POE-Component-SSLify.orig/Makefile /usr/ports/security/p5-POE-Component-SSLify/Makefile --- /usr/ports/security/p5-POE-Component-SSLify.orig/Makefile 2010-06-11 15:36:11.000000000 +0100 +++ /usr/ports/security/p5-POE-Component-SSLify/Makefile 2011-05-05 04:03:24.865016756 +0100 @@ -6,17 +6,21 @@ # PORTNAME= POE-Component-SSLify -PORTVERSION= 0.20 +PORTVERSION= 1.008 CATEGORIES= security perl5 -MASTER_SITES= CPAN +MASTER_SITES= CPAN/${PORTNAME:C/-.*//}/APOCAL PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Integrate SSL into POE +LICENSE_COMB= dual +LICENSE= ART20 GPLv1 + BUILD_DEPENDS= p5-Net-SSLeay>=1.36:${PORTSDIR}/security/p5-Net-SSLeay \ - p5-POE>=1.267:${PORTSDIR}/devel/p5-POE -RUN_DEPENDS= ${BUILD_DEPENDS} + p5-POE>=1.267:${PORTSDIR}/devel/p5-POE \ + p5-Task-Weaken>=1.03:${PORTSDIR}/devel/p5-Task-Weaken +RUN_DEPENDS:= ${BUILD_DEPENDS} PERL_CONFIGURE= yes @@ -24,4 +28,16 @@ POE::Component::SSLify::ClientHandle.3 \ POE::Component::SSLify::ServerHandle.3 -.include +.include + +.if ${PERL_LEVEL} < 500809 +BUILD_DEPENDS+= p5-ExtUtils-MakeMaker>=6.31:${PORTSDIR}/devel/p5-ExtUtils-MakeMaker +RUN_DEPENDS+= p5-ExtUtils-MakeMaker>=6.31:${PORTSDIR}/devel/p5-ExtUtils-MakeMaker +.endif + +.if ${PERL_LEVEL} < 501001 +BUILD_DEPENDS+= p5-IO>=1.28:${PORTSDIR}/devel/p5-IO +RUN_DEPENDS+= p5-IO>=1.28:${PORTSDIR}/devel/p5-IO +.endif + +.include diff -ruN --exclude=CVS /usr/ports/security/p5-POE-Component-SSLify.orig/distinfo /usr/ports/security/p5-POE-Component-SSLify/distinfo --- /usr/ports/security/p5-POE-Component-SSLify.orig/distinfo 2010-06-11 15:36:11.000000000 +0100 +++ /usr/ports/security/p5-POE-Component-SSLify/distinfo 2011-05-05 03:56:00.251547109 +0100 @@ -1,3 +1,2 @@ -MD5 (POE-Component-SSLify-0.20.tar.gz) = 675ce72ed34aeaceb0da9dc2794fdb92 -SHA256 (POE-Component-SSLify-0.20.tar.gz) = 4327c59a3bee8fb93b52f77cd6dae7c2f5f63577365b2a42a9f529ec48ded215 -SIZE (POE-Component-SSLify-0.20.tar.gz) = 28650 +SHA256 (POE-Component-SSLify-1.008.tar.gz) = 69106d525b28ca56c2e26feac4a3442426bd63b0e6864905bf99cc41869dfb55 +SIZE (POE-Component-SSLify-1.008.tar.gz) = 48342 --- p5-POE-Component-SSLify-1.008.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 5 03:10:16 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 66672106566C; Thu, 5 May 2011 03:10:16 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3B1FA8FC0A; Thu, 5 May 2011 03:10:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p453AGrq048236; Thu, 5 May 2011 03:10:16 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p453AGfm048227; Thu, 5 May 2011 03:10:16 GMT (envelope-from edwin) Date: Thu, 5 May 2011 03:10:16 GMT Message-Id: <201105050310.p453AGfm048227@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156822: [PATCH] security/p5-POE-Component-SSLify: update to 1.008 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 May 2011 03:10:16 -0000 Synopsis: [PATCH] security/p5-POE-Component-SSLify: update to 1.008 Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Thu May 5 03:10:15 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156822 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 5 04:46:24 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 694EA106566C; Thu, 5 May 2011 04:46:24 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3FA5B8FC14; Thu, 5 May 2011 04:46:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p454kOha039222; Thu, 5 May 2011 04:46:24 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p454kOxJ039218; Thu, 5 May 2011 04:46:24 GMT (envelope-from linimon) Date: Thu, 5 May 2011 04:46:24 GMT Message-Id: <201105050446.p454kOxJ039218@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, makc@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/155766: Vendor update: irc/kvirc X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 May 2011 04:46:24 -0000 Old Synopsis: Vendor update: net/kvirc New Synopsis: Vendor update: irc/kvirc Responsible-Changed-From-To: freebsd-ports-bugs->makc Responsible-Changed-By: linimon Responsible-Changed-When: Thu May 5 04:45:57 UTC 2011 Responsible-Changed-Why: Fix synopsis and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=155766 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 5 04:47:57 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3A2C71065670; Thu, 5 May 2011 04:47:57 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 102D48FC12; Thu, 5 May 2011 04:47:57 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p454lu9N039486; Thu, 5 May 2011 04:47:56 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p454luMa039482; Thu, 5 May 2011 04:47:56 GMT (envelope-from linimon) Date: Thu, 5 May 2011 04:47:56 GMT Message-Id: <201105050447.p454luMa039482@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, mm@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/156547: net/relayd exits when disabling and enabling hosts X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 May 2011 04:47:57 -0000 Synopsis: net/relayd exits when disabling and enabling hosts Responsible-Changed-From-To: freebsd-ports-bugs->mm Responsible-Changed-By: linimon Responsible-Changed-When: Thu May 5 04:47:47 UTC 2011 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=156547 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 5 04:49:20 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7FEF9106566C; Thu, 5 May 2011 04:49:20 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 55B378FC13; Thu, 5 May 2011 04:49:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p454nKJK039722; Thu, 5 May 2011 04:49:20 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p454nKR6039717; Thu, 5 May 2011 04:49:20 GMT (envelope-from linimon) Date: Thu, 5 May 2011 04:49:20 GMT Message-Id: <201105050449.p454nKR6039717@freefall.freebsd.org> To: manfred.lotz@yahoo.de, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, johans@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/155170: [update] www/ocaml-net to 3.2.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 May 2011 04:49:20 -0000 Synopsis: [update] www/ocaml-net to 3.2.1 Responsible-Changed-From-To: freebsd-ports-bugs->johans Responsible-Changed-By: linimon Responsible-Changed-When: Thu May 5 04:49:11 UTC 2011 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=155170 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 5 06:20:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 441B6106564A for ; Thu, 5 May 2011 06:20:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3243F8FC16 for ; Thu, 5 May 2011 06:20:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p456KBAJ025488 for ; Thu, 5 May 2011 06:20:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p456KBCm025487; Thu, 5 May 2011 06:20:11 GMT (envelope-from gnats) Date: Thu, 5 May 2011 06:20:11 GMT Message-Id: <201105050620.p456KBCm025487@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Yar Tikhiy Cc: Subject: Re: ports/133563: security/cfs rc script needs "mntudp" option on 8-CURRENT X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Yar Tikhiy List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 May 2011 06:20:11 -0000 The following reply was made to PR ports/133563; it has been noted by GNATS. From: Yar Tikhiy To: bug-followup@freebsd.org Cc: Subject: Re: ports/133563: security/cfs rc script needs "mntudp" option on 8-CURRENT Date: Thu, 5 May 2011 15:50:59 +1000 FWIW, there is a simple workaround to this issue. Just set cfsd_port in rc.conf as follows: cfsd_port="3049,udp" This argument will be passed to cfsd as well as to mount_nfs, but cfsd doesn't seem to care about the `,udp' trailer. Cfsd expects a port number as its only argument but it doesn't seem to check if the argument is entirely numeric -- a bug very common to older code using atoi() or strtol(foo, NULL, ...). Yar From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 5 06:50:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2D06F1065670 for ; Thu, 5 May 2011 06:50:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A80568FC0A for ; Thu, 5 May 2011 06:50:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p456o9dA055935 for ; Thu, 5 May 2011 06:50:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p456o9v6055934; Thu, 5 May 2011 06:50:09 GMT (envelope-from gnats) Resent-Date: Thu, 5 May 2011 06:50:09 GMT Resent-Message-Id: <201105050650.p456o9v6055934@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, TAKATSU Tomonari Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 876B3106566B for ; Thu, 5 May 2011 06:48:45 +0000 (UTC) (envelope-from tota@rtfm.jp) Received: from rtfm.jp (rtfm.jp [208.86.227.204]) by mx1.freebsd.org (Postfix) with ESMTP id 326058FC12 for ; Thu, 5 May 2011 06:48:43 +0000 (UTC) Received: from rtfm.jp (localhost [127.0.0.1]) by rtfm.jp (8.14.4/8.14.4) with ESMTP id p456mhWj042829; Thu, 5 May 2011 15:48:43 +0900 (JST) (envelope-from tota@rtfm.jp) Received: (from tota@localhost) by rtfm.jp (8.14.4/8.14.4/Submit) id p456mhhS042828; Thu, 5 May 2011 15:48:43 +0900 (JST) (envelope-from tota) Message-Id: <201105050648.p456mhhS042828@rtfm.jp> Date: Thu, 5 May 2011 15:48:43 +0900 (JST) From: TAKATSU Tomonari To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: kuriyama@FreeBSD.org Subject: ports/156824: [PATCH] japanese/ja-trac: update to 0.12.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 May 2011 06:50:10 -0000 >Number: 156824 >Category: ports >Synopsis: [PATCH] japanese/ja-trac: update to 0.12.2 >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 May 05 06:50:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: TAKATSU Tomonari >Release: FreeBSD 8.2-RELEASE amd64 >Organization: none (private) >Environment: System: FreeBSD photon.local.lan 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Thu Feb 17 02:41:51 UTC 2011 >Description: - Update to 0.12.2 Removed file(s): - files/patch-setup.py Port maintainer (kuriyama@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- ja-trac-0.12.2.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/japanese/trac/Makefile,v retrieving revision 1.47 diff -u -u -r1.47 Makefile --- Makefile 26 Mar 2011 15:18:32 -0000 1.47 +++ Makefile 5 May 2011 02:59:59 -0000 @@ -6,7 +6,7 @@ # PORTNAME= trac -PORTVERSION= 0.12.1 +PORTVERSION= 0.12.2 CATEGORIES= japanese www devel python MASTER_SITES= http://dist.bsdlab.org/ \ http://www.i-act.co.jp/project/products/downloads/ @@ -28,7 +28,7 @@ CONFLICTS= trac-0.* USE_ZIP= yes -USE_PYTHON= yes +USE_PYTHON= 2.5+ USE_PYDISTUTILS= easy_install PYDISTUTILS_PKGNAME= Trac PYDISTUTILS_NOEGGINFO= yes Index: distinfo =================================================================== RCS file: /home/ncvs/ports/japanese/trac/distinfo,v retrieving revision 1.21 diff -u -u -r1.21 distinfo --- distinfo 25 Feb 2011 01:44:55 -0000 1.21 +++ distinfo 31 Mar 2011 14:25:09 -0000 @@ -1,2 +1,2 @@ -SHA256 (Trac-0.12.1.ja1.zip) = ae879aa42b14570c3db217228d1e934c10876633f8d95805447f50c0456062b7 -SIZE (Trac-0.12.1.ja1.zip) = 2545599 +SHA256 (Trac-0.12.2.ja1.zip) = 5d15bd287bbfbee24ba7ae46bdcfbb3c2b7642881fcc4186e3ecd979b8ef8c35 +SIZE (Trac-0.12.2.ja1.zip) = 2592180 Index: files/patch-setup.py =================================================================== RCS file: files/patch-setup.py diff -N files/patch-setup.py --- files/patch-setup.py 26 Mar 2011 15:18:32 -0000 1.4 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,11 +0,0 @@ ---- setup.py.orig 2010-12-25 10:53:24.000000000 +0900 -+++ setup.py 2010-12-25 10:53:30.000000000 +0900 -@@ -38,7 +38,7 @@ - - setup( - name = 'Trac', -- version = '0.12.1ja1', -+ version = '0.12.1.ja1', - description = 'Integrated SCM, wiki, issue tracker and project environment', - long_description = """ - Trac is a minimalistic web-based software project management and bug/issue --- ja-trac-0.12.2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 5 06:50:20 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 63263106566B; Thu, 5 May 2011 06:50:20 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3994F8FC12; Thu, 5 May 2011 06:50:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p456oK6U056690; Thu, 5 May 2011 06:50:20 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p456oKUJ056679; Thu, 5 May 2011 06:50:20 GMT (envelope-from edwin) Date: Thu, 5 May 2011 06:50:20 GMT Message-Id: <201105050650.p456oKUJ056679@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kuriyama@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156824: [PATCH] japanese/ja-trac: update to 0.12.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 May 2011 06:50:20 -0000 Synopsis: [PATCH] japanese/ja-trac: update to 0.12.2 Responsible-Changed-From-To: freebsd-ports-bugs->kuriyama Responsible-Changed-By: edwin Responsible-Changed-When: Thu May 5 06:50:19 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156824 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 5 07:03:05 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 133D9106566C; Thu, 5 May 2011 07:03:05 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DE81C8FC17; Thu, 5 May 2011 07:03:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p45734c0072693; Thu, 5 May 2011 07:03:04 GMT (envelope-from culot@freefall.freebsd.org) Received: (from culot@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p45734GC072689; Thu, 5 May 2011 07:03:04 GMT (envelope-from culot) Date: Thu, 5 May 2011 07:03:04 GMT Message-Id: <201105050703.p45734GC072689@freefall.freebsd.org> To: culot@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, culot@FreeBSD.org From: culot@FreeBSD.org Cc: Subject: Re: ports/156816: Update sysutils/arcconf to 7.00 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 May 2011 07:03:05 -0000 Synopsis: Update sysutils/arcconf to 7.00 Responsible-Changed-From-To: freebsd-ports-bugs->culot Responsible-Changed-By: culot Responsible-Changed-When: Thu May 5 07:03:04 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=156816 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 5 08:30:14 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 94C3510656D5 for ; Thu, 5 May 2011 08:30:14 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 70BC78FC16 for ; Thu, 5 May 2011 08:30:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p458UEd5072637 for ; Thu, 5 May 2011 08:30:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p458UEnB072632; Thu, 5 May 2011 08:30:14 GMT (envelope-from gnats) Resent-Date: Thu, 5 May 2011 08:30:14 GMT Resent-Message-Id: <201105050830.p458UEnB072632@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Rob Farmer Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D0CDF106564A for ; Thu, 5 May 2011 08:29:27 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id BF3098FC16 for ; Thu, 5 May 2011 08:29:27 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p458TRDa052683 for ; Thu, 5 May 2011 08:29:27 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p458TRnp052682; Thu, 5 May 2011 08:29:27 GMT (envelope-from nobody) Message-Id: <201105050829.p458TRnp052682@red.freebsd.org> Date: Thu, 5 May 2011 08:29:27 GMT From: Rob Farmer To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156825: [maintainer] [patch] sysutils/uptimed Fix math error X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 May 2011 08:30:14 -0000 >Number: 156825 >Category: ports >Synopsis: [maintainer] [patch] sysutils/uptimed Fix math error >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 May 05 08:30:14 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Rob Farmer >Release: 9.0-CURRENT >Organization: >Environment: FreeBSD turquoise.predatorlabs.net 9.0-CURRENT FreeBSD 9.0-CURRENT #3: Wed May 4 22:45:37 PDT 2011 rfarmer@turquoise.predatorlabs.net:/usr/obj/usr/src/sys/TURQUOISE amd64 >Description: Fix where percent uptime is calculated as: (up*100)/(up-down) Should be: (up*100)/(up+down) Patch from: http://bugs.gentoo.org/show_bug.cgi?id=332753 Reported by: Akira Norimaki >How-To-Repeat: >Fix: Patch attached with submission follows: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/sysutils/uptimed/Makefile,v retrieving revision 1.18 diff -u -r1.18 Makefile --- Makefile 4 Dec 2010 07:33:41 -0000 1.18 +++ Makefile 5 May 2011 06:57:19 -0000 @@ -6,6 +6,7 @@ PORTNAME= uptimed PORTVERSION= 0.3.16 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://podgorny.cz/uptimed/releases/ \ http://www.predatorlabs.net/dl/ Index: files/patch-src__uprecords.c =================================================================== RCS file: files/patch-src__uprecords.c diff -N files/patch-src__uprecords.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-src__uprecords.c 5 May 2011 06:56:58 -0000 @@ -0,0 +1,12 @@ +--- ./src/uprecords.c.orig 2009-01-01 15:46:00.000000000 -0800 ++++ ./src/uprecords.c 2011-05-04 23:56:53.000000000 -0700 +@@ -236,6 +236,9 @@ + totalutime += u->utime; + } + ++ /* Prevents the downtime from showing as -x days, and the uptime as >100% */ ++ totaldtime = -totaldtime; ++ + print_entry(totalutime, "since", since, "up", 0, 0); + print_entry(totaldtime, "since", since, "down", 0, 0); + >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 5 09:10:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6187A1065672 for ; Thu, 5 May 2011 09:10:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 258398FC19 for ; Thu, 5 May 2011 09:10:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p459ABJs008625 for ; Thu, 5 May 2011 09:10:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p459ABWB008624; Thu, 5 May 2011 09:10:11 GMT (envelope-from gnats) Resent-Date: Thu, 5 May 2011 09:10:11 GMT Resent-Message-Id: <201105050910.p459ABWB008624@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Zane C.B." Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 83642106567E for ; Thu, 5 May 2011 09:02:10 +0000 (UTC) (envelope-from vvelox@vvelox.net) Received: from vulpes.vvelox.net (vulpes.vvelox.net [99.69.115.42]) by mx1.freebsd.org (Postfix) with ESMTP id 502DB8FC1B for ; Thu, 5 May 2011 09:02:10 +0000 (UTC) Received: from vixen42.vulpes.vvelox.net (unknown [192.168.14.1]) (Authenticated sender: vvelox) by vulpes.vvelox.net (Postfix) with ESMTPA id 6808C3F4A2 for ; Thu, 5 May 2011 04:03:28 -0500 (CDT) Message-Id: <1304586185.32516@vixen42.vulpes.vvelox.net> Date: Thu, 5 May 2011 04:03:05 -0500 From: "Zane C.B." To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.4.9 Cc: Subject: ports/156827: Port audio/pianobar: needs the snapshot updated from github X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 May 2011 09:10:11 -0000 >Number: 156827 >Category: ports >Synopsis: Port audio/pianobar: needs the snapshot updated from github >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 May 05 09:10:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Zane C.B. >Release: FreeBSD 8.2-PRERELEASE amd64 >Organization: >Environment: System: FreeBSD 8.2-PRERELEASE #0: Sun Feb 6 00:18:40 CST 2011 kitsune@vixen42.vulpes.vvelox.net:/usr/obj/usr/src/sys/vixen42 >Description: The tarball needs rerolled from a snapshot from github where this project is hosted. >How-To-Repeat: [kitsune@vixen42]/home/kitsune> pianobar Welcome to pianobar (2011.01.24)! Press ? for a list of commands. [?] Username: vvelox@vvelox.net [?] Password: (i) Login... Error: Protocol incompatible. Please upgrade libpiano. Segmentation fault Exit 139 [kitsune@vixen42]/home/kitsune> >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 5 09:10:21 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5953310656AE; Thu, 5 May 2011 09:10:21 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2F0528FC13; Thu, 5 May 2011 09:10:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p459ALNQ009100; Thu, 5 May 2011 09:10:21 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p459ALvN009096; Thu, 5 May 2011 09:10:21 GMT (envelope-from edwin) Date: Thu, 5 May 2011 09:10:21 GMT Message-Id: <201105050910.p459ALvN009096@freefall.freebsd.org> To: vvelox@vvelox.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156827: Port audio/pianobar: needs the snapshot updated from github X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 May 2011 09:10:21 -0000 Synopsis: Port audio/pianobar: needs the snapshot updated from github State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Thu May 5 09:10:20 UTC 2011 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156827 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 5 09:20:07 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 01BDC106566B for ; Thu, 5 May 2011 09:20:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DBA078FC14 for ; Thu, 5 May 2011 09:20:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p459K65e018739 for ; Thu, 5 May 2011 09:20:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p459K6Ui018738; Thu, 5 May 2011 09:20:06 GMT (envelope-from gnats) Date: Thu, 5 May 2011 09:20:06 GMT Message-Id: <201105050920.p459K6Ui018738@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/156827: Port audio/pianobar: needs the snapshot updated from github X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 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, 05 May 2011 09:20:07 -0000 The following reply was made to PR ports/156827; it has been noted by GNATS. From: Edwin Groothuis To: john@pcbsd.org Cc: bug-followup@FreeBSD.org Subject: Re: ports/156827: Port audio/pianobar: needs the snapshot updated from github Date: Thu, 5 May 2011 09:10:18 UT Maintainer of audio/pianobar, Please note that PR ports/156827 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/156827 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 5 09:30:08 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BA769106566C for ; Thu, 5 May 2011 09:30:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9035A8FC12 for ; Thu, 5 May 2011 09:30:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p459U8sn026850 for ; Thu, 5 May 2011 09:30:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p459U8gP026848; Thu, 5 May 2011 09:30:08 GMT (envelope-from gnats) Resent-Date: Thu, 5 May 2011 09:30:08 GMT Resent-Message-Id: <201105050930.p459U8gP026848@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Roland van Laar Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DE256106566C for ; Thu, 5 May 2011 09:21:30 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id B24568FC0C for ; Thu, 5 May 2011 09:21:30 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p459LU2a099890 for ; Thu, 5 May 2011 09:21:30 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p459LUW1099883; Thu, 5 May 2011 09:21:30 GMT (envelope-from nobody) Message-Id: <201105050921.p459LUW1099883@red.freebsd.org> Date: Thu, 5 May 2011 09:21:30 GMT From: Roland van Laar To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156828: New port: databases/py-sqlparse A non-validating SQL parser for Python. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 May 2011 09:30:08 -0000 >Number: 156828 >Category: ports >Synopsis: New port: databases/py-sqlparse A non-validating SQL parser for Python. >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 May 05 09:30:08 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Roland van Laar >Release: >Organization: >Environment: >Description: New port: databases/py-sqlparse sqlparse is a non-validating SQL parser module. It provides support for parsing, splitting and formatting SQL statements. >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-sqlparse # py-sqlparse/Makefile # py-sqlparse/pkg-plist # py-sqlparse/pkg-descr # py-sqlparse/distinfo # echo c - py-sqlparse mkdir -p py-sqlparse > /dev/null 2>&1 echo x - py-sqlparse/Makefile sed 's/^X//' >py-sqlparse/Makefile << '0cdbb99ba1f07dfe6acbc150e0ecd649' X# Ports collection makefile for: py-sqlparse X# Date created: April 29, 2011 X# Whom: Roland van Laar X# X# $FreeBSD$ X# X XPORTNAME= sqlparse XPORTVERSION= 0.1.2 XCATEGORIES= databases python XMASTER_SITES= CHEESESHOP XPKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} X XMAINTAINER= roland@micite.net XCOMMENT= A non-validating SQL parser for Python X XUSE_PYTHON= yes XUSE_PYDISTUTILS= easy_install X Xpost-patch: X @${REINPLACE_CMD} -e 's|distutils.core|setuptools|g' ${WRKSRC}/setup.py X X.include 0cdbb99ba1f07dfe6acbc150e0ecd649 echo x - py-sqlparse/pkg-plist sed 's/^X//' >py-sqlparse/pkg-plist << '87aa07ebc5e3e527caf7491fe18002b7' Xbin/sqlformat X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% 87aa07ebc5e3e527caf7491fe18002b7 echo x - py-sqlparse/pkg-descr sed 's/^X//' >py-sqlparse/pkg-descr << 'c28e93403bdc7a2b05e5811a5c14e883' Xsqlparse is a non-validating SQL parser module. XIt provides support for parsing, splitting and formatting SQL statements. X XWWW: http://code.google.com/p/python-sqlparse/ c28e93403bdc7a2b05e5811a5c14e883 echo x - py-sqlparse/distinfo sed 's/^X//' >py-sqlparse/distinfo << 'bdde78f7c861e0196f3cb625d320dec6' XSHA256 (sqlparse-0.1.2.tar.gz) = a92a84ae0d606505740b759c80d8129ed46d98b72c843bc1a6f6eac7420aa42a XSIZE (sqlparse-0.1.2.tar.gz) = 33262 bdde78f7c861e0196f3cb625d320dec6 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 5 12:19:04 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5B0A8106567A; Thu, 5 May 2011 12:19:04 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2F6948FC0A; Thu, 5 May 2011 12:19:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p45CJ45f084273; Thu, 5 May 2011 12:19:04 GMT (envelope-from culot@freefall.freebsd.org) Received: (from culot@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p45CJ4k1084269; Thu, 5 May 2011 12:19:04 GMT (envelope-from culot) Date: Thu, 5 May 2011 12:19:04 GMT Message-Id: <201105051219.p45CJ4k1084269@freefall.freebsd.org> To: culot@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, culot@FreeBSD.org From: culot@FreeBSD.org Cc: Subject: Re: ports/156825: [maintainer] [patch] sysutils/uptimed Fix math error X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 May 2011 12:19:04 -0000 Synopsis: [maintainer] [patch] sysutils/uptimed Fix math error Responsible-Changed-From-To: freebsd-ports-bugs->culot Responsible-Changed-By: culot Responsible-Changed-When: Thu May 5 12:19:03 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=156825 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 5 12:20:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0F054106566C for ; Thu, 5 May 2011 12:20:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D811E8FC1D for ; Thu, 5 May 2011 12:20:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p45CK9RV084399 for ; Thu, 5 May 2011 12:20:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p45CK9fQ084398; Thu, 5 May 2011 12:20:09 GMT (envelope-from gnats) Resent-Date: Thu, 5 May 2011 12:20:09 GMT Resent-Message-Id: <201105051220.p45CK9fQ084398@freefall.freebsd.org> 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 Hausner Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3FAE31065670 for ; Thu, 5 May 2011 12:13:08 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 12C3E8FC13 for ; Thu, 5 May 2011 12:13:08 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p45CD6rp073723 for ; Thu, 5 May 2011 12:13:06 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p45CD6L8073717; Thu, 5 May 2011 12:13:06 GMT (envelope-from nobody) Message-Id: <201105051213.p45CD6L8073717@red.freebsd.org> Date: Thu, 5 May 2011 12:13:06 GMT From: Alexander Hausner To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156829: [maintainer update] [net/tcpproxy] problem: port ignores settings in make.conf X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 May 2011 12:20:10 -0000 >Number: 156829 >Category: ports >Synopsis: [maintainer update] [net/tcpproxy] problem: port ignores settings in make.conf >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu May 05 12:20:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Alexander Hausner >Release: FreeBSD 8.2-RELEASE-p1 >Organization: BMG >Environment: FreeBSD hugo.bmg.gv.at 8.2-RELEASE-p1 FreeBSD 8.2-RELEASE-p1 #6: Mon May 2 11:47:49 CEST 2011 root@hugo.bmg.gv.at:/usr/obj/usr/src/sys/HUGO amd64 >Description: net/tcpproxy ignores settings in /etc/make.conf during the build process. >How-To-Repeat: >Fix: update to revision 1, which contains a patch for this problem, see the shar file. 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: # # tcpproxy # tcpproxy/distinfo # tcpproxy/Makefile # tcpproxy/files # tcpproxy/files/tcpproxy.in # tcpproxy/files/patch-configure # tcpproxy/pkg-descr # echo c - tcpproxy mkdir -p tcpproxy > /dev/null 2>&1 echo x - tcpproxy/distinfo sed 's/^X//' >tcpproxy/distinfo << '7ac5e450349bddc47b85d75236cd87ca' XSHA256 (tcpproxy-1.0.tar.gz) = 8d21bca2849b87b05566549859666a8bde0e21ed1a304390a71a12929e937f70 XSIZE (tcpproxy-1.0.tar.gz) = 35946 7ac5e450349bddc47b85d75236cd87ca echo x - tcpproxy/Makefile sed 's/^X//' >tcpproxy/Makefile << 'd9c3e76413d6988a9a98b84d11c2fdc7' X# New ports collection makefile for: tcpproxy X# Date created: 2011-03-30 X# Whom: Alexander Hausner X# X# $FreeBSD: ports/net/tcpproxy/Makefile,v 1.1 2011/04/03 11:22:53 dhn Exp $ X# X XPORTNAME= tcpproxy XPORTVERSION= 1.0 XPORTREVISION= 1 XCATEGORIES= net XMASTER_SITES= http://www.spreadspace.org/tcpproxy/releases/ \ X http://alex.bmg.gv.at/programs/ X XMAINTAINER= alex@hugo.bmg.gv.at XCOMMENT= A simple tcp connection proxy for ipv4 and ipv6 X XBUILD_DEPENDS= ragel:${PORTSDIR}/devel/ragel X XUSE_GMAKE= yes XHAS_CONFIGURE= yes X XUSERS= _tcpproxy XGROUPS= _tcpproxy X XMAN8= tcpproxy.8 X XUSE_RC_SUBR= tcpproxy X XWRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/src X XPLIST_FILES= bin/tcpproxy etc/tcpproxy_sample.conf X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/tcpproxy ${PREFIX}/bin X ${INSTALL_DATA} ${WRKDIR}/${PORTNAME}-${PORTVERSION}/contrib/example.conf ${PREFIX}/etc/tcpproxy_sample.conf X ${INSTALL_MAN} ${WRKDIR}/${PORTNAME}-${PORTVERSION}/doc/${MAN8} ${PREFIX}/man/man8 X X.include d9c3e76413d6988a9a98b84d11c2fdc7 echo c - tcpproxy/files mkdir -p tcpproxy/files > /dev/null 2>&1 echo x - tcpproxy/files/tcpproxy.in sed 's/^X//' >tcpproxy/files/tcpproxy.in << '3fa981900f21f7cae9b9a957bc005980' X#!/bin/sh X# X# PROVIDE: tcpproxy X# REQUIRE: LOGIN X# KEYWORD: shutdown X# X# Add the following lines to /etc/rc.conf.local or /etc/rc.conf X# to enable this service: X# X# tcpproxy_enable (bool): Set to NO by default. X# Set it to YES to enable tcpproxy. X# tcpproxy_config (path): Set to %%PREFIX%%/etc/tcpproxy.conf X# by default. X# X X. /etc/rc.subr X Xname="tcpproxy" Xrcvar=${name}_enable X Xcommand=%%PREFIX%%/bin/${name} Xpidfile=/var/run/${name}.pid X Xload_rc_config $name X X: ${tcpproxy_enable="NO"} X: ${tcpproxy_config="%%PREFIX%%/etc/tcpproxy.conf"} X Xcommand_args="-P $pidfile -c $tcpproxy_config -u _tcpproxy -g _tcpproxy" X Xrun_rc_command "$1" 3fa981900f21f7cae9b9a957bc005980 echo x - tcpproxy/files/patch-configure sed 's/^X//' >tcpproxy/files/patch-configure << '29ac940abd0300d45b6d02b3084aefb2' X--- configure.org 2011-05-04 20:30:40.000000000 +0200 X+++ configure 2011-05-04 20:31:06.000000000 +0200 X@@ -29,8 +29,8 @@ X TARGET=`uname -s` X EBUILD_COMPAT=0 X X-CFLAGS='-g -O2' X-LDFLAGS='-g -Wall -O2' X+CFLAGS="${CFLAGS} -g -O2" X+LDFLAGS="${LDFLAGS} -g -Wall -O2" X X PREFIX='/usr/local' X BINDIR='' 29ac940abd0300d45b6d02b3084aefb2 echo x - tcpproxy/pkg-descr sed 's/^X//' >tcpproxy/pkg-descr << '32436977b243a5d5d6cd26eac243c1a5' Xtcpproxy is a simple tcp connection proxy which combines the features of Xrinetd and 6tunnel. tcpproxy supports IPv4 and IPv6 and also supports Xconnections from IPv6 to IPv4 endpoints and vice versa. X XWWW: http://www.spreadspace.org/tcpproxy/ 32436977b243a5d5d6cd26eac243c1a5 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 5 13:10:12 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AF18E1065674 for ; Thu, 5 May 2011 13:10:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6BC938FC1A for ; Thu, 5 May 2011 13:10:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p45DACHw030001 for ; Thu, 5 May 2011 13:10:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p45DACJY030000; Thu, 5 May 2011 13:10:12 GMT (envelope-from gnats) Resent-Date: Thu, 5 May 2011 13:10:12 GMT Resent-Message-Id: <201105051310.p45DACJY030000@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Benedict Reuschling Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 19DEA1065670 for ; Thu, 5 May 2011 13:08:51 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 075498FC12 for ; Thu, 5 May 2011 13:08:51 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p45D8oVq030851 for ; Thu, 5 May 2011 13:08:50 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p45D8ovU030850; Thu, 5 May 2011 13:08:50 GMT (envelope-from nobody) Message-Id: <201105051308.p45D8ovU030850@red.freebsd.org> Date: Thu, 5 May 2011 13:08:50 GMT From: Benedict Reuschling To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156830: [patch] Update graphics/gource to version 0.32 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 May 2011 13:10:12 -0000 >Number: 156830 >Category: ports >Synopsis: [patch] Update graphics/gource to version 0.32 >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 May 05 13:10:12 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Benedict Reuschling >Release: 8.2-STABLE >Organization: The FreeBSD Project >Environment: n/a >Description: The attached patch updates gource to version 0.32. Tested with port test, portlint and the actual program with a commit history from svn. >How-To-Repeat: Compare the current version on the homepage with the one in the ports collection. >Fix: Apply the attached patch. Patch attached with submission follows: diff -ruN gource.old/Makefile gource/Makefile --- gource.old/Makefile 2011-05-05 12:48:45.000000000 +0000 +++ gource/Makefile 2011-05-05 12:49:24.000000000 +0000 @@ -6,7 +6,7 @@ # PORTNAME= gource -PORTVERSION= 0.28 +PORTVERSION= 0.32 CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} MASTER_SITE_SUBDIR= ${PORTNAME} diff -ruN gource.old/distinfo gource/distinfo --- gource.old/distinfo 2011-05-05 12:48:45.000000000 +0000 +++ gource/distinfo 2011-05-05 12:49:29.000000000 +0000 @@ -1,3 +1,2 @@ -MD5 (gource-0.28.tar.gz) = 82cadbd7791cff913970a63d63d894ff -SHA256 (gource-0.28.tar.gz) = c37648e70230b45c0170ed036d3aa9db2b1a4d9c59b2ca48c741d8e4d846a324 -SIZE (gource-0.28.tar.gz) = 606085 +SHA256 (gource-0.32.tar.gz) = fda5692e811c37f4601ddff78ffd316a9a2328085038a4695643159b8ba3a7de +SIZE (gource-0.32.tar.gz) = 653504 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 5 13:10:22 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5FD21106564A; Thu, 5 May 2011 13:10:22 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 344588FC08; Thu, 5 May 2011 13:10:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p45DAM71030665; Thu, 5 May 2011 13:10:22 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p45DAMlI030653; Thu, 5 May 2011 13:10:22 GMT (envelope-from edwin) Date: Thu, 5 May 2011 13:10:22 GMT Message-Id: <201105051310.p45DAMlI030653@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, demon@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156830: [patch] Update graphics/gource to version 0.32 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 May 2011 13:10:22 -0000 Synopsis: [patch] Update graphics/gource to version 0.32 Responsible-Changed-From-To: freebsd-ports-bugs->demon Responsible-Changed-By: edwin Responsible-Changed-When: Thu May 5 13:10:21 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156830 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 5 14:20:09 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 30C071065670 for ; Thu, 5 May 2011 14:20:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 01D408FC15 for ; Thu, 5 May 2011 14:20:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p45EK80r093576 for ; Thu, 5 May 2011 14:20:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p45EK8gn093575; Thu, 5 May 2011 14:20:08 GMT (envelope-from gnats) Resent-Date: Thu, 5 May 2011 14:20:08 GMT Resent-Message-Id: <201105051420.p45EK8gn093575@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Philippe Audéoud Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7D2311065674; Thu, 5 May 2011 14:15:51 +0000 (UTC) (envelope-from jadawin@huppa.tuxaco.net) Received: from huppa.tuxaco.net (unknown [IPv6:2001:41d0:1:66c1::1]) by mx1.freebsd.org (Postfix) with ESMTP id 0DFF18FC18; Thu, 5 May 2011 14:15:50 +0000 (UTC) Received: from huppa.tuxaco.net (localhost [127.0.0.1]) by huppa.tuxaco.net (Postfix) with ESMTP id CA84B2286F; Thu, 5 May 2011 16:18:15 +0200 (CEST) Received: from huppa.tuxaco.net ([127.0.0.1]) by huppa.tuxaco.net (huppa.tuxaco.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id EWpzGVz4+Tpm; Thu, 5 May 2011 16:18:13 +0200 (CEST) Received: by huppa.tuxaco.net (Postfix, from userid 1001) id 4087E22858; Thu, 5 May 2011 16:18:13 +0200 (CEST) Message-Id: <20110505141813.4087E22858@huppa.tuxaco.net> Date: Thu, 5 May 2011 16:18:13 +0200 (CEST) From: Philippe Audéoud To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: sbz@FreeBSD.org Subject: ports/156831: Update sysutils/goaccess to 0.4.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Philippe Audéoud List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 May 2011 14:20:09 -0000 >Number: 156831 >Category: ports >Synopsis: Update sysutils/goaccess to 0.4.2 >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 May 05 14:20:08 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Philippe Audéoud >Release: FreeBSD 8.2-RELEASE i386 >Organization: #telestore >Environment: System: FreeBSD huppa.tuxaco.net 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Fri Feb 18 02:24:46 UTC 2011 root@almeida.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: >How-To-Repeat: >Fix: --- sysutils-goaccess.diff begins here --- diff -ruN goaccess.orig/Makefile goaccess/Makefile --- goaccess.orig/Makefile 2011-05-05 14:58:48.000000000 +0200 +++ goaccess/Makefile 2011-05-05 15:53:01.000000000 +0200 @@ -6,10 +6,10 @@ # PORTNAME= goaccess -PORTVERSION= 0.3.3 +PORTVERSION= 0.4.2 CATEGORIES= sysutils -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME}/${PORTVERSION} +MASTER_SITES= SF +MASTER_SITE_SUBDIR= ${PORTNAME}/${PORTVERSION}/ MAINTAINER= sbz@FreeBSD.org COMMENT= Real-time Apache web log analyzer diff -ruN goaccess.orig/distinfo goaccess/distinfo --- goaccess.orig/distinfo 2011-05-05 14:58:48.000000000 +0200 +++ goaccess/distinfo 2011-05-05 15:53:08.000000000 +0200 @@ -1,2 +1,2 @@ -SHA256 (goaccess-0.3.3.tar.gz) = da716e4127e09a0f367ff8d41bd013531b78b67779f6a7a3c636e324349c2fe2 -SIZE (goaccess-0.3.3.tar.gz) = 121955 +SHA256 (goaccess-0.4.2.tar.gz) = 853bd73bed30c91f4d2c5d9f8dca22930c75b058e519b90b492d744a49dd5bc8 +SIZE (goaccess-0.4.2.tar.gz) = 118353 diff -ruN goaccess.orig/files/patch-util.c goaccess/files/patch-util.c --- goaccess.orig/files/patch-util.c 2011-05-05 14:58:48.000000000 +0200 +++ goaccess/files/patch-util.c 2011-05-05 15:47:51.000000000 +0200 @@ -1,10 +1,10 @@ ---- ./util.c.orig 2010-11-17 11:23:54.000000000 +0100 -+++ ./util.c 2010-11-17 11:24:10.000000000 +0100 -@@ -29,6 +29,7 @@ - #include - #include +--- util.c.orig 2011-05-05 15:46:50.000000000 +0200 ++++ util.c 2011-05-05 15:47:14.000000000 +0200 +@@ -34,6 +34,7 @@ + #include + #include #include +#include + #include #include - #include - #include + --- sysutils-goaccess.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 5 14:20:24 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1C8821065674; Thu, 5 May 2011 14:20:24 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E39B68FC13; Thu, 5 May 2011 14:20:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p45EKN8E094950; Thu, 5 May 2011 14:20:23 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p45EKNpT094941; Thu, 5 May 2011 14:20:23 GMT (envelope-from edwin) Date: Thu, 5 May 2011 14:20:23 GMT Message-Id: <201105051420.p45EKNpT094941@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sbz@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156831: Update sysutils/goaccess to 0.4.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 May 2011 14:20:24 -0000 Synopsis: Update sysutils/goaccess to 0.4.2 Responsible-Changed-From-To: freebsd-ports-bugs->sbz Responsible-Changed-By: edwin Responsible-Changed-When: Thu May 5 14:20:23 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156831 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 5 17:20:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 098CA106566B for ; Thu, 5 May 2011 17:20:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BDA908FC17 for ; Thu, 5 May 2011 17:20:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p45HKAcm055230 for ; Thu, 5 May 2011 17:20:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p45HKArw055229; Thu, 5 May 2011 17:20:10 GMT (envelope-from gnats) Resent-Date: Thu, 5 May 2011 17:20:10 GMT Resent-Message-Id: <201105051720.p45HKArw055229@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Kalten Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E985F106564A for ; Thu, 5 May 2011 17:19:26 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id D62798FC08 for ; Thu, 5 May 2011 17:19:26 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p45HJQuo023061 for ; Thu, 5 May 2011 17:19:26 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p45HJQ5P023060; Thu, 5 May 2011 17:19:26 GMT (envelope-from nobody) Message-Id: <201105051719.p45HJQ5P023060@red.freebsd.org> Date: Thu, 5 May 2011 17:19:26 GMT From: Kalten To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156832: ports-mgmt/portlint: length of COMMENT and Porter's Handbook discrepancy X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 May 2011 17:20:11 -0000 >Number: 156832 >Category: ports >Synopsis: ports-mgmt/portlint: length of COMMENT and Porter's Handbook discrepancy >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Thu May 05 17:20:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Kalten >Release: 8.2-RELEASE >Organization: >Environment: FreeBSD freeHugin.Walhalla.Leben 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Thu Feb 17 02:41:51 UTC 2011 root@mason.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: johans and I happened to notice a little bug together: There is a discrepancy at the maximal allowed length of COMMENT according to: *) ports-mgmt/portlint/ [1] ( 70 characters) and *) The Porter's Handbook[2] (<60 characters). Please do decide ;-) Greetings, Kalten [1] ports/ports-mgmt/portlint/src/portlint.pl line 2754 [2] http://www.freebsd.org/doc/en/books/porters-handbook/makefile-comment.html >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 5 17:20:20 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DE031106566B; Thu, 5 May 2011 17:20:20 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B1A158FC19; Thu, 5 May 2011 17:20:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p45HKKK1055926; Thu, 5 May 2011 17:20:20 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p45HKKRF055922; Thu, 5 May 2011 17:20:20 GMT (envelope-from edwin) Date: Thu, 5 May 2011 17:20:20 GMT Message-Id: <201105051720.p45HKKRF055922@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, marcus@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156832: ports-mgmt/portlint: length of COMMENT and Porter's Handbook discrepancy X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 May 2011 17:20:20 -0000 Synopsis: ports-mgmt/portlint: length of COMMENT and Porter's Handbook discrepancy Responsible-Changed-From-To: freebsd-ports-bugs->marcus Responsible-Changed-By: edwin Responsible-Changed-When: Thu May 5 17:20:20 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156832 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 5 17:50:07 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BF1D31065673 for ; Thu, 5 May 2011 17:50:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 919518FC12 for ; Thu, 5 May 2011 17:50:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p45Ho7rQ082536 for ; Thu, 5 May 2011 17:50:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p45Ho7u8082535; Thu, 5 May 2011 17:50:07 GMT (envelope-from gnats) Resent-Date: Thu, 5 May 2011 17:50:07 GMT Resent-Message-Id: <201105051750.p45Ho7u8082535@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Kalten Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 94A861065670 for ; Thu, 5 May 2011 17:48:23 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 6731A8FC12 for ; Thu, 5 May 2011 17:48:23 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p45HmNeE066443 for ; Thu, 5 May 2011 17:48:23 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p45HmN7M066442; Thu, 5 May 2011 17:48:23 GMT (envelope-from nobody) Message-Id: <201105051748.p45HmN7M066442@red.freebsd.org> Date: Thu, 5 May 2011 17:48:23 GMT From: Kalten To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156833: games/fairymax: O-Flags option and preparing change into masterport X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 May 2011 17:50:07 -0000 >Number: 156833 >Category: ports >Synopsis: games/fairymax: O-Flags option and preparing change into masterport >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 May 05 17:50:07 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Kalten >Release: 8.2-RELEASE >Organization: >Environment: FreeBSD freeHugin.Walhalla.Leben 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Thu Feb 17 02:41:51 UTC 2011 root@mason.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: I had removed the -O2 option as mentioned in Porter's Handbook[1] earlier. Now there is an option to re enable it (on by default). And it is being prepared to be changed into a master port, as my next PR with the title ``New port: games/fairymax-devel latest version of games/fairymax'' (hen egg problem: can not tell you its number yet) will introduce a slave port. (See attachment.) [1] http://www.freebsd.org/doc/en/books/porters-handbook/dads-cflags.html >How-To-Repeat: >Fix: Patch attached with submission follows: --- Makefile.orig 2011-05-05 00:47:54.000000000 +0200 +++ Makefile 2011-05-05 01:55:54.000000000 +0200 @@ -1,4 +1,4 @@ -# New ports collection makefile for: fairy-max +# New ports collection makefile for: fairymax # Date created: 22 April 2011 # Whom: Kalten # @@ -6,15 +6,20 @@ # PORTNAME= fairymax -PORTVERSION= 4.8Q +PORTVERSION?= 4.8Q +PORTREVISION?= 1 CATEGORIES= games MASTER_SITES= http://freeheimdall.homeunix.org/files/ -DISTNAME= ${PORTNAME}-c7a129e +DISTNAME?= ${PORTNAME}-c7a129e # http://hgm.nubati.net/cgi-bin/gitweb.cgi?p=fairymax.git;a=snapshot;h=c7a129ead81286990efb8409f238c48c7109c83b;sf=tgz MAINTAINER= kalten@gmx.at COMMENT= Chess engine (e.g. xboard) for shatranj, courier chess, ... +CONFLICTS?= fairymax-4.8Q.[0-9]* fairymax-4.8Q.[0-9]*_[0-9]* + +OPTIONS+= OCFLAGS "Use optimized compiler flags" on + DIST_SUBDIR= ${PORTNAME} PLIST_FILES= bin/fairymax \ @@ -33,6 +38,14 @@ MAKE_ARGS+= INI_FILE_fmax=${DATADIR}/fmax.ini \ INI_FILE_qmax=${DATADIR}/qmax.ini +.include + +.if defined(WITHOUT_OCFLAGS) +CFLAGS= +.else +CFLAGS= -O2 +.endif + post-patch: @${CP} ${WRKSRC}/fairymax.pod ${WRKSRC}/fairymax.pod.ori @${SED} -e 's|%%PREFIX%%|${PREFIX}|g;s|%%DATADIR%%|${DATADIR}|g' \ --- distinfo.orig 2011-05-05 01:51:04.000000000 +0200 +++ distinfo 2011-05-05 01:52:03.000000000 +0200 @@ -1,2 +1,4 @@ SHA256 (fairymax/fairymax-c7a129e.tar.gz) = ec8e75c92e345e0f0db56095ac576156f54fb9320af05e86f8e589a8300c5a9a SIZE (fairymax/fairymax-c7a129e.tar.gz) = 34229 +SHA256 (fairymax/fairymax-507c6ba.tar.gz) = 18727b04bf4a3a9d1e3bac55a2729727735a9103f3beb03afb8bbbfd21a6112a +SIZE (fairymax/fairymax-507c6ba.tar.gz) = 34289 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 5 17:50:17 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4C98D1065680; Thu, 5 May 2011 17:50:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 207EE8FC0A; Thu, 5 May 2011 17:50:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p45HoHVL083044; Thu, 5 May 2011 17:50:17 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p45HoGOS083040; Thu, 5 May 2011 17:50:17 GMT (envelope-from edwin) Date: Thu, 5 May 2011 17:50:17 GMT Message-Id: <201105051750.p45HoGOS083040@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156833: games/fairymax: O-Flags option and preparing change into masterport X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 May 2011 17:50:17 -0000 Synopsis: games/fairymax: O-Flags option and preparing change into masterport Class-Changed-From-To: change-request->maintainer-update Class-Changed-By: edwin Class-Changed-When: Thu May 5 17:50:16 UTC 2011 Class-Changed-Why: Fix category (submitter is maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156833 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 5 18:00:21 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3AB57106566B for ; Thu, 5 May 2011 18:00:21 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0BB518FC1C for ; Thu, 5 May 2011 18:00:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p45I0KZr090817 for ; Thu, 5 May 2011 18:00:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p45I0KUd090815; Thu, 5 May 2011 18:00:20 GMT (envelope-from gnats) Resent-Date: Thu, 5 May 2011 18:00:20 GMT Resent-Message-Id: <201105051800.p45I0KUd090815@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Kalten Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A454D1065672 for ; Thu, 5 May 2011 17:57:45 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 9199D8FC1B for ; Thu, 5 May 2011 17:57:45 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p45Hvjh5078263 for ; Thu, 5 May 2011 17:57:45 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p45HvjNO078262; Thu, 5 May 2011 17:57:45 GMT (envelope-from nobody) Message-Id: <201105051757.p45HvjNO078262@red.freebsd.org> Date: Thu, 5 May 2011 17:57:45 GMT From: Kalten To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156834: New port: games/fairymax-devel latest version of games/fairymax X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 May 2011 18:00:21 -0000 >Number: 156834 >Category: ports >Synopsis: New port: games/fairymax-devel latest version of games/fairymax >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 May 05 18:00:20 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Kalten >Release: 8.2-RELEASE >Organization: >Environment: FreeBSD freeHugin.Walhalla.Leben 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Thu Feb 17 02:41:51 UTC 2011 root@mason.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Slave port of games/fairymax with the latest version of fairymax in the author's git repository. Needs PR:ports/156833 to be done first. [1] http://www.freebsd.org/cgi/query-pr.cgi?pr=156833 >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: # # fairymax-devel # fairymax-devel/Makefile # echo c - fairymax-devel mkdir -p fairymax-devel > /dev/null 2>&1 echo x - fairymax-devel/Makefile sed 's/^X//' >fairymax-devel/Makefile << 'a4c5b58b41af49a3fd3f453103211697' X# New ports collection makefile for: fairymax, devel-version X# Date created: 5 May 2011 X# Whom: Kalten X# X# $FreeBSD:$ X# X XPORTVERSION= 4.8Q.3 XPORTREVISION= 0 XDISTNAME= fairymax-507c6ba X# http://hgm.nubati.net/cgi-bin/gitweb.cgi?p=fairymax.git;a=snapshot;h=507c6ba03ed2b868a3b0bd3a82c2e4c44d6d33ce;sf=tgz X XMAINTAINER= kalten@gmx.at XCOMMENT= Like games/fairymax but later version X XCONFLICTS= fairymax-4.8Q fairymax-4.8Q_[1-9]* fairymax-4.8Q.[4-9] fairymax-4.8Q.[1-9][0-9][0-9]* X XMASTERDIR= ${.CURDIR}/../fairymax XNO_LATEST_LINK= yes X X.include "${MASTERDIR}/Makefile" a4c5b58b41af49a3fd3f453103211697 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 5 20:00:25 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AE6E6106568B for ; Thu, 5 May 2011 20:00:25 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C05C28FC1E for ; Thu, 5 May 2011 20:00:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p45K0OFP099888 for ; Thu, 5 May 2011 20:00:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p45K0OIU099887; Thu, 5 May 2011 20:00:24 GMT (envelope-from gnats) Resent-Date: Thu, 5 May 2011 20:00:24 GMT Resent-Message-Id: <201105052000.p45K0OIU099887@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Marcin Cieslak , mm@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 06B181065670 for ; Thu, 5 May 2011 19:56:11 +0000 (UTC) (envelope-from saper@saper.info) Received: from l.saper.info (l.saper.info [IPv6:2001:41d0:1:d467::1000]) by mx1.freebsd.org (Postfix) with ESMTP id 74A3C8FC1A for ; Thu, 5 May 2011 19:56:10 +0000 (UTC) Received: from l.saper.info (uucp@localhost [127.0.0.1]) by l.saper.info (8.14.4/8.14.4) with ESMTP id p45Jt5fh092997 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Thu, 5 May 2011 19:55:06 GMT (envelope-from saper@saper.info) Received: (from uucp@localhost) by l.saper.info (8.14.4/8.14.4/Submit) with UUCP id p45Jt5s4092996 for FreeBSD-gnats-submit@freebsd.org; Thu, 5 May 2011 19:55:05 GMT (envelope-from saper@saper.info) Received: from radziecki.saper.info (localhost [127.0.0.1]) by radziecki.saper.info (8.14.4/8.14.4) with ESMTP id p45JtZD9006677 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Thu, 5 May 2011 19:55:35 GMT (envelope-from saper@saper.info) Received: (from saper@localhost) by radziecki.saper.info (8.14.4/8.14.4/Submit) id p45JtZJd006625; Thu, 5 May 2011 19:55:35 GMT (envelope-from saper) Message-Id: <201105051955.p45JtZJd006625@radziecki.saper.info> Date: Thu, 5 May 2011 19:55:35 GMT From: Marcin Cieslak To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/156836: multimedia/x264: undefined reference to `__gcov_init' using profiled libx264.a X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Marcin Cieslak , mm@FreeBSD.org List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 May 2011 20:00:25 -0000 >Number: 156836 >Category: ports >Synopsis: multimedia/x264: undefined reference to `__gcov_init' using profiled libx264.a >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu May 05 20:00:24 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Marcin Cieslak >Release: FreeBSD 9.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD radziecki.saper.info 9.0-CURRENT FreeBSD 9.0-CURRENT #1 r219785M: Mon Mar 21 11:40:40 CET 2011 saper@radziecki.saper.info:/usr/obj/usr/src/sys/VAIO amd64 >Description: multimedia/x264 build process failes when recompiling after profiling stage: ar rc libx264.a common/mc.o common/predict.o common/pixel.o common/macroblock.o common/frame.o common/dct.o common/cpu.o common/cabac.o common/common.o common/mdate.o common/rectangle.o common/set.o common/quant.o common/deblock.o common/vlc.o common/mvpred.o common/bitstream.o encoder/analyse.o encoder/me.o encoder/ratecontrol.o encoder/set.o encoder/macroblock.o encoder/cabac.o encoder/cavlc.o encoder/encoder.o encoder/lookahead.o common/threadpool.o common/visualize.o common/display-x11.o ranlib libx264.a COMPILER_PATH= cc -shared -o libx264.so.110 common/mc.o common/predict.o common/pixel.o common/macroblock.o common/frame.o common/dct.o common/cpu.o common/cabac.o common/common.o common/mdate.o common/rectangle.o common/set.o common/quant.o common/deblock.o common/vlc.o common/mvpred.o common/bitstream.o encoder/analyse.o encoder/me.o encoder/ratecontrol.o encoder/set.o encoder/macroblock.o encoder/cabac.o encoder/cavlc.o encoder/encoder.o encoder/lookahead.o common/threadpool.o common/visualize.o common/display-x11.o -Wl,-soname,libx264.so.110 -L/usr/X11R6/lib -lX11 -fstack-protector -L/usr/local/lib -lm -pthread -Wl,-Bsymbolic -s -fprofile-use COMPILER_PATH= cc -o x264 x264.o input/input.o input/timecode.o input/raw.o input/y4m.o output/raw.o output/matroska.o output/matroska_ebml.o output/flv.o output/flv_bytestream.o filters/filters.o filters/video/video.o filters/video/source.o filters/video/internal.o filters/video/resize.o filters/video/cache.o filters/video/fix_vfr_pts.o filters/video/select_every.o filters/video/crop.o filters/video/depth.o input/thread.o output/mp4.o libx264.a -lgpac -fprofile-use -L/usr/X11R6/lib -lX11 -fstack-protector -L/usr/local/lib -lm -pthread -Wl,-Bsymbolic -s -fprofile-use libx264.a(mc-c.o): In function `global constructors keyed to 0_x264_mc_init_mmx': mc-c.c:(.text+0x1b4e): undefined reference to `__gcov_init' libx264.a(mc-c.o):(.data.rel+0x208): undefined reference to `__gcov_merge_add' libx264.a(predict-c.o): In function `global constructors keyed to 0_x264_intra_sa8d_x3_8x8_sse2': predict-c.c:(.text+0xcbd): undefined reference to `__gcov_init' libx264.a(predict-c.o):(.data.rel+0x48): undefined reference to `__gcov_merge_add' gmake[1]: *** [x264] BÅ‚Ä…d 1 gmake[1]: Opuszczenie katalogu `/usr/obj/usr/ports/multimedia/x264/work/x264-snapshot-20101211-2245' gmake: *** [fprofiled] BÅ‚Ä…d 2 >How-To-Repeat: Build multimedia/x264 from ports using # $FreeBSD: ports/multimedia/x264/Makefile,v 1.82 2011/03/22 08:08:48 mm Exp $ >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 5 20:00:25 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A94671065688 for ; Thu, 5 May 2011 20:00:25 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3988C8FC19 for ; Thu, 5 May 2011 20:00:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p45K0Op1099870 for ; Thu, 5 May 2011 20:00:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p45K0OUn099868; Thu, 5 May 2011 20:00:24 GMT (envelope-from gnats) Resent-Date: Thu, 5 May 2011 20:00:24 GMT Resent-Message-Id: <201105052000.p45K0OUn099868@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Grzegorz Blach" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 641CD1065680 for ; Thu, 5 May 2011 19:50:24 +0000 (UTC) (envelope-from magik@roorback.net) Received: from mail-ey0-f182.google.com (mail-ey0-f182.google.com [209.85.215.182]) by mx1.freebsd.org (Postfix) with ESMTP id EB2768FC22 for ; Thu, 5 May 2011 19:50:23 +0000 (UTC) Received: by eyg7 with SMTP id 7so1004979eyg.13 for ; Thu, 05 May 2011 12:50:22 -0700 (PDT) Received: by 10.213.99.137 with SMTP id u9mr508860ebn.107.1304625022231; Thu, 05 May 2011 12:50:22 -0700 (PDT) Received: from silver.nine (89-72-104-219.dynamic.chello.pl [89.72.104.219]) by mx.google.com with ESMTPS id z1sm757929eeb.21.2011.05.05.12.50.20 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 05 May 2011 12:50:21 -0700 (PDT) Message-Id: <1304625020.6432@silver.nine> Date: Thu, 5 May 2011 21:50:20 +0200 From: "Grzegorz Blach" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.4.9 Cc: Subject: ports/156835: Fixed rcfile in www/drood X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 May 2011 20:00:25 -0000 >Number: 156835 >Category: ports >Synopsis: Fixed rcfile in www/drood >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Thu May 05 20:00:23 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Grzegorz Blach >Release: FreeBSD 8.2-RELEASE amd64 >Organization: >Environment: System: FreeBSD 8.2-RELEASE #8 r218743: Wed Feb 16 19:24:02 CET 2011 magik@silver.nine:/usr/obj/usr/src/sys/SILVER >Description: In drood 1.54 scgid was replaced by plunger, but rcfile still is using SCGI_ENABLE variable, which cause warning during system boot about PLUNGER_ENABLE is not defined. >How-To-Repeat: Aply attached patch >Fix: --- drood.diff.txt begins here --- diff -x .svn -ruN /var/cache/portshaker/ports/www/drood/Makefile www/drood/Makefile --- /var/cache/portshaker/ports/www/drood/Makefile 2011-04-30 01:51:07.000000000 +0200 +++ www/drood/Makefile 2011-05-05 21:42:17.801785679 +0200 @@ -7,6 +7,7 @@ PORTNAME= drood PORTVERSION= 2.2 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://www.mammothcheese.ca/ diff -x .svn -ruN /var/cache/portshaker/ports/www/drood/files/patch-plunger.rcfile www/drood/files/patch-plunger.rcfile --- /var/cache/portshaker/ports/www/drood/files/patch-plunger.rcfile 1970-01-01 01:00:00.000000000 +0100 +++ www/drood/files/patch-plunger.rcfile 2011-05-05 21:42:17.801785679 +0200 @@ -0,0 +1,10 @@ +--- plunger.rcfile.orig 2011-05-05 21:26:24.465426387 +0200 ++++ plunger.rcfile 2011-05-05 21:26:40.918702711 +0200 +@@ -15,6 +15,6 @@ + + load_rc_config ${name} + +-: ${scgi_enable="NO"} ++: ${plunger_enable="NO"} + + run_rc_command "$1" --- drood.diff.txt ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 5 20:00:37 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 05B40106564A; Thu, 5 May 2011 20:00:37 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CF95B8FC0A; Thu, 5 May 2011 20:00:36 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p45K0aX5000709; Thu, 5 May 2011 20:00:36 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p45K0aA0000699; Thu, 5 May 2011 20:00:36 GMT (envelope-from edwin) Date: Thu, 5 May 2011 20:00:36 GMT Message-Id: <201105052000.p45K0aA0000699@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, mm@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156836: multimedia/x264: undefined reference to `__gcov_init' using profiled libx264.a X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 May 2011 20:00:37 -0000 Synopsis: multimedia/x264: undefined reference to `__gcov_init' using profiled libx264.a Responsible-Changed-From-To: freebsd-ports-bugs->mm Responsible-Changed-By: edwin Responsible-Changed-When: Thu May 5 20:00:36 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156836 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 5 20:00:44 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4EAC710656D0; Thu, 5 May 2011 20:00:44 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 250148FC19; Thu, 5 May 2011 20:00:44 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p45K0iFm001390; Thu, 5 May 2011 20:00:44 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p45K0hpi001381; Thu, 5 May 2011 20:00:44 GMT (envelope-from edwin) Date: Thu, 5 May 2011 20:00:44 GMT Message-Id: <201105052000.p45K0hpi001381@freefall.freebsd.org> To: magik@roorback.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156835: Fixed rcfile in www/drood X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 May 2011 20:00:44 -0000 Synopsis: Fixed rcfile in www/drood State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Thu May 5 20:00:43 UTC 2011 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156835 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 5 20:10:12 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 03416106566B for ; Thu, 5 May 2011 20:10:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E61988FC1D for ; Thu, 5 May 2011 20:10:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p45KABBq011774 for ; Thu, 5 May 2011 20:10:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p45KABde011771; Thu, 5 May 2011 20:10:11 GMT (envelope-from gnats) Date: Thu, 5 May 2011 20:10:11 GMT Message-Id: <201105052010.p45KABde011771@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/156835: Fixed rcfile in www/drood X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 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, 05 May 2011 20:10:12 -0000 The following reply was made to PR ports/156835; it has been noted by GNATS. From: Edwin Groothuis To: jimmy@mammothcheese.ca Cc: bug-followup@FreeBSD.org Subject: Re: ports/156835: Fixed rcfile in www/drood Date: Thu, 5 May 2011 20:00:40 UT Maintainer of www/drood, Please note that PR ports/156835 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/156835 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 5 21:00:26 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BF26D1065670 for ; Thu, 5 May 2011 21:00:26 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 818168FC13 for ; Thu, 5 May 2011 21:00:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p45L0QUT057320 for ; Thu, 5 May 2011 21:00:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p45L0QUp057319; Thu, 5 May 2011 21:00:26 GMT (envelope-from gnats) Resent-Date: Thu, 5 May 2011 21:00:26 GMT Resent-Message-Id: <201105052100.p45L0QUp057319@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Barbara Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9326E106566C for ; Thu, 5 May 2011 20:54:44 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 825B88FC15 for ; Thu, 5 May 2011 20:54:44 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p45KsiYZ066138 for ; Thu, 5 May 2011 20:54:44 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p45Ksiil066137; Thu, 5 May 2011 20:54:44 GMT (envelope-from nobody) Message-Id: <201105052054.p45Ksiil066137@red.freebsd.org> Date: Thu, 5 May 2011 20:54:44 GMT From: Barbara To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156837: net-p2p/transmission-daemon: bump required after libevent2 update X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 May 2011 21:00:26 -0000 >Number: 156837 >Category: ports >Synopsis: net-p2p/transmission-daemon: bump required after libevent2 update >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu May 05 21:00:25 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Barbara >Release: RELENG_8 >Organization: >Environment: FreeBSD satanasso.local.net 8.2-STABLE FreeBSD 8.2-STABLE #0: Sat Apr 30 12:16:05 CEST 2011 root@satanasso.local.net:/usr/obj/usr/src/sys/SATANASSO i386 >Description: After updating libevent2 to 2.0.11 PORTREVISION has been bumped for transmission-cli and some other, but not for transmission-daemon. $ ldd /usr/local/bin/transmission-daemon | grep libevent libevent-2.0.so.5 => not found (0x0) $ pkg_info -W /usr/local/bin/transmission-daemon /usr/local/bin/transmission-daemon was installed by package transmission-daemon-2.22 >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 5 21:00:37 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 00166106566C; Thu, 5 May 2011 21:00:36 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CA90D8FC16; Thu, 5 May 2011 21:00:36 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p45L0aPq058161; Thu, 5 May 2011 21:00:36 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p45L0aSY058157; Thu, 5 May 2011 21:00:36 GMT (envelope-from edwin) Date: Thu, 5 May 2011 21:00:36 GMT Message-Id: <201105052100.p45L0aSY058157@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, mezz@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156837: net-p2p/transmission-daemon: bump required after libevent2 update X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 May 2011 21:00:37 -0000 Synopsis: net-p2p/transmission-daemon: bump required after libevent2 update Responsible-Changed-From-To: freebsd-ports-bugs->mezz Responsible-Changed-By: edwin Responsible-Changed-When: Thu May 5 21:00:36 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156837 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 5 21:30:16 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A5FE7106566B for ; Thu, 5 May 2011 21:30:16 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7AAD58FC16 for ; Thu, 5 May 2011 21:30:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p45LUGjs084432 for ; Thu, 5 May 2011 21:30:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p45LUGwh084427; Thu, 5 May 2011 21:30:16 GMT (envelope-from gnats) Date: Thu, 5 May 2011 21:30:16 GMT Message-Id: <201105052130.p45LUGwh084427@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: James Bailie Cc: Subject: Re: ports/156835: Fixed rcfile in www/drood X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: James Bailie List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 May 2011 21:30:16 -0000 The following reply was made to PR ports/156835; it has been noted by GNATS. From: James Bailie To: bug-followup@FreeBSD.org Cc: Edwin Groothuis Subject: Re: ports/156835: Fixed rcfile in www/drood Date: Thu, 5 May 2011 17:12:07 -0400 On Thu, 5 May 2011 20:00:40 UT Edwin Groothuis wrote: > Maintainer of www/drood, > > Please note that PR ports/156835 has just been submitted. PR is justified. Patch is good. Please apply. -- James Bailie http://www.mammothcheese.ca From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 5 22:20:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DC6D61065675 for ; Thu, 5 May 2011 22:20:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B552C8FC13 for ; Thu, 5 May 2011 22:20:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p45MKA4H031862 for ; Thu, 5 May 2011 22:20:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p45MKA2p031861; Thu, 5 May 2011 22:20:10 GMT (envelope-from gnats) Resent-Date: Thu, 5 May 2011 22:20:10 GMT Resent-Message-Id: <201105052220.p45MKA2p031861@freefall.freebsd.org> 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 [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5355E1065670 for ; Thu, 5 May 2011 22:19:42 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3fd3:cd67:fafa:3d78]) by mx1.freebsd.org (Postfix) with ESMTP id BC2B88FC16 for ; Thu, 5 May 2011 22:19:41 +0000 (UTC) Received: from lucid-nonsense.infracaninophile.co.uk (localhost [IPv6:::1]) by smtp.infracaninophile.co.uk (8.14.4/8.14.4) with ESMTP id p45MJaHI004417 for ; Thu, 5 May 2011 23:19:36 +0100 (BST) (envelope-from matthew@lucid-nonsense.infracaninophile.co.uk) Received: (from matthew@localhost) by lucid-nonsense.infracaninophile.co.uk (8.14.4/8.14.4/Submit) id p45MJaPM004416; Thu, 5 May 2011 23:19:36 +0100 (BST) (envelope-from matthew) Message-Id: <201105052219.p45MJaPM004416@lucid-nonsense.infracaninophile.co.uk> Date: Thu, 5 May 2011 23:19:36 +0100 (BST) From: Matthew Seaman To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/156839: [maintainer] net/phpldapadmin update to 1.2.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 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: Thu, 05 May 2011 22:20:11 -0000 >Number: 156839 >Category: ports >Synopsis: [maintainer] net/phpldapadmin update to 1.2.1 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu May 05 22:20:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Matthew Seaman >Release: FreeBSD 8.2-STABLE amd64 >Organization: Infracaninophile >Environment: System: FreeBSD lucid-nonsense.infracaninophile.co.uk 8.2-STABLE FreeBSD 8.2-STABLE #40 r220927M: Thu Apr 21 22:17:47 BST 2011 root@lucid-nonsense.infracaninophile.co.uk:/usr/obj/usr/src/sys/LUCID-NONSENSE amd64 >Description: Routine mostly bug-fix with some feature enhancements update to version 1.2.1 ChangeLog: http://sourceforge.net/projects/phpldapadmin/files/phpldapadmin-php5/1.2.1/ >How-To-Repeat: >Fix: --- phpldapadmin.diff begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/net/phpldapadmin/Makefile,v retrieving revision 1.39 diff -u -u -r1.39 Makefile --- Makefile 25 Feb 2011 01:32:00 -0000 1.39 +++ Makefile 5 May 2011 22:13:19 -0000 @@ -6,8 +6,7 @@ # PORTNAME= phpldapadmin -PORTVERSION= 1.2.0.5 -PORTREVISION= 1 +PORTVERSION= 1.2.1 PORTEPOCH= 1 CATEGORIES= net www MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-php5/${PORTVERSION} @@ -16,6 +15,8 @@ MAINTAINER= m.seaman@infracaninophile.co.uk COMMENT= A set of PHP-scripts to administer LDAP over the web +LICENSE= GPLv2 + NO_BUILD= yes USE_PHP= gettext ldap openssl pcre session xml iconv hash DEFAULT_PHP_VER= 5 Index: distinfo =================================================================== RCS file: /home/ncvs/ports/net/phpldapadmin/distinfo,v retrieving revision 1.23 diff -u -u -r1.23 distinfo --- distinfo 20 Mar 2011 12:52:36 -0000 1.23 +++ distinfo 5 May 2011 22:13:19 -0000 @@ -1,2 +1,2 @@ -SHA256 (phpldapadmin-1.2.0.5.tgz) = ee75da1dbba023499fdf50d6cedea9bcdb9caad017b15ed2e31700bcc61dfcfd -SIZE (phpldapadmin-1.2.0.5.tgz) = 1345901 +SHA256 (phpldapadmin-1.2.1.tgz) = 9e03cb53ccf2bb7c0dc6c88eecb4f474f0834ff80b06592000ec68d110458ca3 +SIZE (phpldapadmin-1.2.1.tgz) = 1468226 --- phpldapadmin.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 5 23:20:09 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 750C1106564A for ; Thu, 5 May 2011 23:20:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5E7828FC0A for ; Thu, 5 May 2011 23:20:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p45NK8Jk086243 for ; Thu, 5 May 2011 23:20:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p45NK82Y086242; Thu, 5 May 2011 23:20:08 GMT (envelope-from gnats) Date: Thu, 5 May 2011 23:20:08 GMT Message-Id: <201105052320.p45NK82Y086242@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Kalten Cc: Subject: Re: ports/156833: games/fairymax: O-Flags option and preparing change into masterport X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Kalten List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 May 2011 23:20:09 -0000 The following reply was made to PR ports/156833; it has been noted by GNATS. From: Kalten To: bug-followup@FreeBSD.org,kalten@gmx.at Cc: Subject: Re: ports/156833: games/fairymax: O-Flags option and preparing change into masterport Date: Fri, 06 May 2011 01:14:37 +0200 After a little conversation with johans I have given up the system of a master- and a slave port. Furthermore he meant, that the optimisation flags should be set globally, not by the port: well--as the original program uses them, I stick to this option (maybe better not on but off by default?) (as other ports have them too). I hope, it's OK now? New patch--replacing old one--attached here. --- patch.txt begins here --- --- Makefile.orig 2011-05-05 00:47:54.000000000 +0200 +++ Makefile 2011-05-06 00:43:39.000000000 +0200 @@ -1,4 +1,4 @@ -# New ports collection makefile for: fairy-max +# New ports collection makefile for: fairymax # Date created: 22 April 2011 # Whom: Kalten # @@ -7,6 +7,7 @@ PORTNAME= fairymax PORTVERSION= 4.8Q +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= http://freeheimdall.homeunix.org/files/ DISTNAME= ${PORTNAME}-c7a129e @@ -15,6 +16,10 @@ MAINTAINER= kalten@gmx.at COMMENT= Chess engine (e.g. xboard) for shatranj, courier chess, ... +CONFLICTS= fairymax-4.8Q.[0-9]* fairymax-4.8Q.[0-9]*_[0-9]* + +OPTIONS+= OCFLAGS "Use optimized compiler flags" on + DIST_SUBDIR= ${PORTNAME} PLIST_FILES= bin/fairymax \ @@ -33,6 +38,14 @@ MAKE_ARGS+= INI_FILE_fmax=${DATADIR}/fmax.ini \ INI_FILE_qmax=${DATADIR}/qmax.ini +.include + +.if defined(WITHOUT_OCFLAGS) +CFLAGS+= +.else +CFLAGS+= -O2 +.endif + post-patch: @${CP} ${WRKSRC}/fairymax.pod ${WRKSRC}/fairymax.pod.ori @${SED} -e 's|%%PREFIX%%|${PREFIX}|g;s|%%DATADIR%%|${DATADIR}|g' \ --- patch.txt ends here --- -- From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 5 23:40:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A24E31065670 for ; Thu, 5 May 2011 23:40:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 90C278FC14 for ; Thu, 5 May 2011 23:40:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p45NeB3k004301 for ; Thu, 5 May 2011 23:40:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p45NeB33004300; Thu, 5 May 2011 23:40:11 GMT (envelope-from gnats) Date: Thu, 5 May 2011 23:40:11 GMT Message-Id: <201105052340.p45NeB33004300@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Kalten Cc: Subject: Re: ports/156834: New port: games/fairymax-devel latest version of games/fairymax X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Kalten List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 May 2011 23:40:11 -0000 The following reply was made to PR ports/156834; it has been noted by GNATS. From: Kalten To: bug-followup@FreeBSD.org,kalten@gmx.at Cc: Subject: Re: ports/156834: New port: games/fairymax-devel latest version of games/fairymax Date: Fri, 06 May 2011 01:33:40 +0200 Given up master-/slave port variant (see PR:ports/156833) as suggested by johans. New version (very similar to games/fairymax) in attachment. (Replacing old version). Again the question of -O2 flags as in ports/156833 mentioned (maybe better not on but off by default?) I hope, it is OK. Greetings, Kalten --- fairymax-devel.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: # # fairymax-devel # fairymax-devel/Makefile # fairymax-devel/distinfo # fairymax-devel/files # fairymax-devel/files/patch-Makefile # fairymax-devel/files/patch-fairymax.pod # fairymax-devel/pkg-descr # echo c - fairymax-devel mkdir -p fairymax-devel > /dev/null 2>&1 echo x - fairymax-devel/Makefile sed 's/^X//' >fairymax-devel/Makefile << 'a4c5b58b41af49a3fd3f453103211697' X# New ports collection makefile for: fairymax-devel version X# Date created: 5 May 2011 X# Whom: Kalten X# X# $FreeBSD$ X# X XPORTNAME= fairymax XPORTVERSION= 4.8Q.3 XCATEGORIES= games XMASTER_SITES= http://freeheimdall.homeunix.org/files/ XDISTNAME= fairymax-507c6ba X# http://hgm.nubati.net/cgi-bin/gitweb.cgi?p=fairymax.git;a=snapshot;h=507c6ba03ed2b868a3b0bd3a82c2e4c44d6d33ce;sf=tgz X XMAINTAINER= kalten@gmx.at XCOMMENT= Like games/fairymax but later version X XCONFLICTS= fairymax-4.8Q fairymax-4.8Q_[1-9]* fairymax-4.8Q.[4-9] fairymax-4.8Q.[1-9][0-9][0-9]* X XOPTIONS+= OCFLAGS "Use optimized compiler flags" on X XDIST_SUBDIR= ${PORTNAME} X XPLIST_FILES= bin/fairymax \ X bin/shamax \ X bin/maxqi \ X ${DATADIR_REL}/fmax.ini \ X ${DATADIR_REL}/qmax.ini XPLIST_DIRS= ${DATADIR_REL} X XMAN6= fairymax.6 XMLINKS= fairymax.6 shamax.6 \ X fairymax.6 maxqi.6 X XUSE_GMAKE= yes XUSE_PERL5_BUILD=yes XMAKE_ARGS+= INI_FILE_fmax=${DATADIR}/fmax.ini \ X INI_FILE_qmax=${DATADIR}/qmax.ini X X.include X X.if defined(WITHOUT_OCFLAGS) XCFLAGS+= X.else XCFLAGS+= -O2 X.endif X Xpost-patch: X @${CP} ${WRKSRC}/fairymax.pod ${WRKSRC}/fairymax.pod.ori X @${SED} -e 's|%%PREFIX%%|${PREFIX}|g;s|%%DATADIR%%|${DATADIR}|g' \ X ${WRKSRC}/fairymax.pod.ori > ${WRKSRC}/fairymax.pod X Xpost-build: X @${CP} ${WRKSRC}/fmax.man ${WRKSRC}/fairymax.6 X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/fairymax ${PREFIX}/bin X ${INSTALL_PROGRAM} ${WRKSRC}/shamax ${PREFIX}/bin X ${INSTALL_PROGRAM} ${WRKSRC}/maxqi ${PREFIX}/bin X ${MKDIR} ${DATADIR} X ${INSTALL_DATA} ${WRKSRC}/data/fmax.ini ${DATADIR}/fmax.ini X ${INSTALL_DATA} ${WRKSRC}/data/qmax.ini ${DATADIR}/qmax.ini X ${INSTALL_MAN} ${WRKSRC}/${MAN6} ${MANPREFIX}/man/man6 X X.include a4c5b58b41af49a3fd3f453103211697 echo x - fairymax-devel/distinfo sed 's/^X//' >fairymax-devel/distinfo << 'e8a14d22fd10bedfc2e520812264eac0' XSHA256 (fairymax/fairymax-507c6ba.tar.gz) = 18727b04bf4a3a9d1e3bac55a2729727735a9103f3beb03afb8bbbfd21a6112a XSIZE (fairymax/fairymax-507c6ba.tar.gz) = 34289 e8a14d22fd10bedfc2e520812264eac0 echo c - fairymax-devel/files mkdir -p fairymax-devel/files > /dev/null 2>&1 echo x - fairymax-devel/files/patch-Makefile sed 's/^X//' >fairymax-devel/files/patch-Makefile << '97c0364a8a552f2bc8fbc63951d3e597' X--- Makefile.orig 2010-12-08 10:03:32.000000000 +0100 X+++ Makefile 2011-04-23 17:09:50.000000000 +0200 X@@ -1,21 +1,22 @@ X srcdir = . X X-CC=gcc X-CFLAGS += -O2 X- X+CC?=gcc X+CFLAGS += X+INI_FILE_fmax?="/usr/share/games/fairymax/fmax.ini" X+INI_FILE_qmax?="/usr/share/games/fairymax/qmax.ini" X X ALL= fairymax shamax maxqi fairymax.6.gz X X all: ${ALL} X X fairymax: fairymax.c X- $(CC) $(CFLAGS) -DINI_FILE=\"/usr/share/games/fairymax/fmax.ini\" fairymax.c -o fairymax X+ $(CC) $(CFLAGS) -DINI_FILE=\"${INI_FILE_fmax}\" fairymax.c -o fairymax X X shamax: fairymax.c X- $(CC) $(CFLAGS) -DINI_FILE=\"/usr/share/games/fairymax/fmax.ini\" -DSHATRANJ fairymax.c -o shamax X+ $(CC) $(CFLAGS) -DINI_FILE=\"${INI_FILE_fmax}\" -DSHATRANJ fairymax.c -o shamax X X maxqi: maxqi.c X- $(CC) $(CFLAGS) -DINI_FILE=\"/usr/share/games/fairymax/qmax.ini\" maxqi.c -o maxqi X+ $(CC) $(CFLAGS) -DINI_FILE=\"${INI_FILE_qmax}\" maxqi.c -o maxqi X X install: ${ALL} ${srcdir}/data/* X cp -u ${srcdir}/fairymax $(DESTDIR)/usr/games 97c0364a8a552f2bc8fbc63951d3e597 echo x - fairymax-devel/files/patch-fairymax.pod sed 's/^X//' >fairymax-devel/files/patch-fairymax.pod << 'a4414852026e826e9d2bf72ed17373c0' X--- fairymax.pod.orig 2010-12-08 10:03:32.000000000 +0100 X+++ fairymax.pod 2011-04-23 01:11:01.000000000 +0200 X@@ -117,11 +117,20 @@ X X =back X X+=head1 FILES X+ X+%%DATADIR%%/fmax.ini X+ X+%%DATADIR%%/qmax.ini X X =head1 SEE ALSO X X xboard(6) X X+http://hgm.nubati.net/cgi-bin/gitweb.cgi?p=fairymax.git X+ X+http://home.hccnet.nl/h.g.muller/fairy.html X+ X http://www.chessvariants.org/index/msdisplay.php?itemid=MSfairy-max X X http://home.hccnet.nl/h.g.muller/max-src2.html a4414852026e826e9d2bf72ed17373c0 echo x - fairymax-devel/pkg-descr sed 's/^X//' >fairymax-devel/pkg-descr << 'ebc4dfb5521893108b25e3668fb9b2f3' Xfairy-Max is a version of micro-Max that reads the piece description Xfrom a file fmax.ini, so that arbitrary fairy pieces can be implemen- Xted. This version supports up to 15 piece types, and board sizes upto X12x8 board. A Linux port exists in the format of a debian package. X XYou can use it e.g. with games/xboard/: Xe.g.: xboard -boardSize Middling -variant courier -fcp fairymax X XGIT: http://hgm.nubati.net/cgi-bin/gitweb.cgi?p=fairymax.git XWWW: http://home.hccnet.nl/h.g.muller/fairy.html ebc4dfb5521893108b25e3668fb9b2f3 exit --- fairymax-devel.shar ends here --- -- From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 5 23:53:34 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4A617106566C; Thu, 5 May 2011 23:53:34 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2077E8FC18; Thu, 5 May 2011 23:53:34 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p45NrYL0021146; Thu, 5 May 2011 23:53:34 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p45NrXoR021142; Thu, 5 May 2011 23:53:33 GMT (envelope-from eadler) Date: Thu, 5 May 2011 23:53:33 GMT Message-Id: <201105052353.p45NrXoR021142@freefall.freebsd.org> To: nikola.lecic@anthesphoria.net, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/156695: [Repocopy] [Maintainer] KMFL update (part 2/2): Rename keyboard ports, add a note to UPDATING X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 May 2011 23:53:34 -0000 Synopsis: [Repocopy] [Maintainer] KMFL update (part 2/2): Rename keyboard ports, add a note to UPDATING State-Changed-From-To: open->repocopy State-Changed-By: eadler State-Changed-When: Thu May 5 23:53:33 UTC 2011 State-Changed-Why: request for repocopy http://www.freebsd.org/cgi/query-pr.cgi?pr=156695 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri May 6 00:20:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9DE371065674 for ; Fri, 6 May 2011 00:20:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8E03B8FC1F for ; Fri, 6 May 2011 00:20:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p460KBDj040678 for ; Fri, 6 May 2011 00:20:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p460KBPa040677; Fri, 6 May 2011 00:20:11 GMT (envelope-from gnats) Date: Fri, 6 May 2011 00:20:11 GMT Message-Id: <201105060020.p460KBPa040677@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/156839: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 May 2011 00:20:11 -0000 The following reply was made to PR ports/156839; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/156839: commit references a PR Date: Fri, 6 May 2011 00:18:57 +0000 (UTC) wen 2011-05-06 00:18:49 UTC FreeBSD ports repository Modified files: net/phpldapadmin Makefile distinfo Log: - Update to 1.2.1 - Add LICENSE PR: ports/156839 Submitted by: Matthew Seaman (maintainer) Revision Changes Path 1.40 +3 -2 ports/net/phpldapadmin/Makefile 1.24 +2 -2 ports/net/phpldapadmin/distinfo _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Fri May 6 00:20:45 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 726C71065673; Fri, 6 May 2011 00:20:45 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 496A18FC13; Fri, 6 May 2011 00:20:45 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p460KjbY044688; Fri, 6 May 2011 00:20:45 GMT (envelope-from wen@freefall.freebsd.org) Received: (from wen@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p460KipF044628; Fri, 6 May 2011 00:20:44 GMT (envelope-from wen) Date: Fri, 6 May 2011 00:20:44 GMT Message-Id: <201105060020.p460KipF044628@freefall.freebsd.org> To: m.seaman@infracaninophile.co.uk, wen@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: wen@FreeBSD.org Cc: Subject: Re: ports/156839: [maintainer] net/phpldapadmin update to 1.2.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 May 2011 00:20:45 -0000 Synopsis: [maintainer] net/phpldapadmin update to 1.2.1 State-Changed-From-To: open->closed State-Changed-By: wen State-Changed-When: Fri May 6 00:20:44 UTC 2011 State-Changed-Why: Committed. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=156839 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri May 6 04:10:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8B3121065670 for ; Fri, 6 May 2011 04:10:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 669D98FC13 for ; Fri, 6 May 2011 04:10:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p464AAtA047368 for ; Fri, 6 May 2011 04:10:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p464AA81047367; Fri, 6 May 2011 04:10:10 GMT (envelope-from gnats) Resent-Date: Fri, 6 May 2011 04:10:10 GMT Resent-Message-Id: <201105060410.p464AA81047367@freefall.freebsd.org> 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 William Thrift Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7FA5E106566C for ; Fri, 6 May 2011 04:04:08 +0000 (UTC) (envelope-from douglas@douglasthrift.net) Received: from slowhand.douglasthrift.net (slowhand.douglasthrift.net [69.55.236.40]) by mx1.freebsd.org (Postfix) with ESMTP id 2772A8FC0A for ; Fri, 6 May 2011 04:04:07 +0000 (UTC) Received: from localhost (mustang.douglasthrift.net [76.91.0.190]) (authenticated bits=0) by slowhand.douglasthrift.net (8.14.4/8.14.4) with ESMTP id p463YR13043197 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Thu, 5 May 2011 20:34:32 -0700 (PDT) (envelope-from douglas@douglasthrift.net) Message-Id: <201105060334.p463YR13043197@slowhand.douglasthrift.net> Date: Thu, 5 May 2011 20:34:32 -0700 (PDT) From: Douglas William Thrift To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/156841: Update port: devel/py-pycerberus Upgrade to 0.4.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Douglas William Thrift List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 May 2011 04:10:10 -0000 >Number: 156841 >Category: ports >Synopsis: Update port: devel/py-pycerberus Upgrade to 0.4.2 >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 May 06 04:10:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Douglas William Thrift >Release: FreeBSD 8.2-RELEASE-p1 amd64 >Organization: >Environment: System: FreeBSD justonenight.douglasthrift.net 8.2-RELEASE-p1 FreeBSD 8.2-RELEASE-p1 #2: Wed Apr 20 15:29:35 PDT 2011 root@justonenight.douglasthrift.net:/usr/obj/usr/src/sys/FURTHERONUPTHEROAD amd64 >Description: Upgraded pycerberus to version 0.4.2. From Changelog.txt: 0.4.2 (05.05.2011) - More fixes for source distribution because of missing files in tar.gz 0.4.1 (16.04.2011) - Fix source distribution (distribution_helpers.py were not included) 0.4 (13.04.2011) - pycerberus now supports Python 3! - Fix installation/egg generation without babel - Added a schema which can parse positional parameters from a string into a dict before processing the data like a normal schema would do >How-To-Repeat: >Fix: --- py-pycerberus.patch begins here --- diff -Nrux .svn -x work /usr/ports/devel/py-pycerberus/Makefile py-pycerberus/Makefile --- /usr/ports/devel/py-pycerberus/Makefile 2010-10-11 19:54:01.000000000 -0700 +++ py-pycerberus/Makefile 2011-05-05 20:17:51.317671873 -0700 @@ -6,7 +6,7 @@ # PORTNAME= pycerberus -PORTVERSION= 0.3.3 +PORTVERSION= 0.4.2 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff -Nrux .svn -x work /usr/ports/devel/py-pycerberus/distinfo py-pycerberus/distinfo --- /usr/ports/devel/py-pycerberus/distinfo 2010-10-11 19:54:01.000000000 -0700 +++ py-pycerberus/distinfo 2011-05-05 18:52:49.083248753 -0700 @@ -1,3 +1,2 @@ -MD5 (pycerberus-0.3.3.tar.gz) = aa51d406f9afe2c5b896f00e7cf79c42 -SHA256 (pycerberus-0.3.3.tar.gz) = 7578aff85c2d250f1db1a6afb59905b0d44f0271377350f5470aacd69c842b90 -SIZE (pycerberus-0.3.3.tar.gz) = 91661 +SHA256 (pycerberus-0.4.2.tar.gz) = 5de70249a64e79f681a670a496f50e38c6a3f4e6fbcba5ecc38bce39824c5001 +SIZE (pycerberus-0.4.2.tar.gz) = 113869 diff -Nrux .svn -x work /usr/ports/devel/py-pycerberus/pkg-plist py-pycerberus/pkg-plist --- /usr/ports/devel/py-pycerberus/pkg-plist 2010-10-11 19:54:01.000000000 -0700 +++ py-pycerberus/pkg-plist 2011-05-05 20:14:33.682789162 -0700 @@ -32,12 +32,22 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pycerberus/lib/testcase.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pycerberus/lib/testcase.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pycerberus/lib/testcase.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pycerberus/locales/__init__.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pycerberus/locales/__init__.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pycerberus/locales/__init__.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pycerberus/locales/de/LC_MESSAGES/pycerberus.mo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pycerberus/locales/de/__init__.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pycerberus/locales/de/__init__.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pycerberus/locales/de/__init__.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pycerberus/release.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pycerberus/release.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pycerberus/release.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pycerberus/schema.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pycerberus/schema.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pycerberus/schema.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pycerberus/schemas.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pycerberus/schemas.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pycerberus/schemas.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pycerberus/test_util.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pycerberus/test_util.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pycerberus/test_util.pyo @@ -58,6 +68,9 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pycerberus/validators/string.pyo @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pycerberus/validators +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pycerberus/locales/de/LC_MESSAGES +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pycerberus/locales/de +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pycerberus/locales @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pycerberus/lib @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pycerberus @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% --- py-pycerberus.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri May 6 05:30:14 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ADCB21065678 for ; Fri, 6 May 2011 05:30:14 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6AF508FC14 for ; Fri, 6 May 2011 05:30:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p465U8Ia024550 for ; Fri, 6 May 2011 05:30:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p465U822024547; Fri, 6 May 2011 05:30:08 GMT (envelope-from gnats) Resent-Date: Fri, 6 May 2011 05:30:08 GMT Resent-Message-Id: <201105060530.p465U822024547@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Pavel I Volkov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E727A10656E0 for ; Fri, 6 May 2011 05:26:24 +0000 (UTC) (envelope-from pavelivolkov@googlemail.com) Received: from mail-fx0-f54.google.com (mail-fx0-f54.google.com [209.85.161.54]) by mx1.freebsd.org (Postfix) with ESMTP id 72E078FC14 for ; Fri, 6 May 2011 05:26:24 +0000 (UTC) Received: by fxm11 with SMTP id 11so2768139fxm.13 for ; Thu, 05 May 2011 22:26:23 -0700 (PDT) Received: by 10.223.14.137 with SMTP id g9mr2069405faa.1.1304659583280; Thu, 05 May 2011 22:26:23 -0700 (PDT) Received: from cvs0.catervaska.dyndns.org ([178.140.254.150]) by mx.google.com with ESMTPS id j18sm956748faa.42.2011.05.05.22.26.21 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 05 May 2011 22:26:22 -0700 (PDT) Received: from cvs0.catervaska.dyndns.org (localhost [127.0.0.1]) by cvs0.catervaska.dyndns.org (8.14.4/8.14.4) with ESMTP id p465QNDV007573 for ; Fri, 6 May 2011 09:26:23 +0400 (MSD) (envelope-from pol@cvs0.catervaska.dyndns.org) Received: (from pol@localhost) by cvs0.catervaska.dyndns.org (8.14.4/8.14.4/Submit) id p465QNqf007572; Fri, 6 May 2011 09:26:23 +0400 (MSD) (envelope-from pol) Message-Id: <201105060526.p465QNqf007572@cvs0.catervaska.dyndns.org> Date: Fri, 6 May 2011 09:26:23 +0400 (MSD) From: Pavel I Volkov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/156842: [MAINTAINER] databases/sqlite3: update to 3.7.6.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 May 2011 05:30:14 -0000 >Number: 156842 >Category: ports >Synopsis: [MAINTAINER] databases/sqlite3: update to 3.7.6.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: Fri May 06 05:30:08 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Pavel I Volkov >Release: FreeBSD 8.2-STABLE i386 >Organization: >Environment: System: FreeBSD cvs0.catervaska.dyndns.org 8.2-STABLE FreeBSD 8.2-STABLE #0: Sat Apr 9 20:20:05 MSD >Description: - Update to 3.7.6.2 Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- sqlite3-3.7.6.2.patch begins here --- diff -ruN --exclude=CVS /usr/ports/databases/sqlite3.orig/Makefile /usr/ports/databases/sqlite3/Makefile --- /usr/ports/databases/sqlite3.orig/Makefile 2011-05-06 08:04:53.000000000 +0400 +++ /usr/ports/databases/sqlite3/Makefile 2011-05-06 08:07:02.000000000 +0400 @@ -6,10 +6,10 @@ # PORTNAME= sqlite3 -PORTVERSION= 3.7.6.1 +PORTVERSION= 3.7.6.2 CATEGORIES= databases MASTER_SITES= http://www.sqlite.org/ http://www2.sqlite.org/ -DISTNAME= sqlite-src-3070601 +DISTNAME= sqlite-src-3070602 MAINTAINER= pavelivolkov@googlemail.com COMMENT= An SQL database engine in a C library diff -ruN --exclude=CVS /usr/ports/databases/sqlite3.orig/distinfo /usr/ports/databases/sqlite3/distinfo --- /usr/ports/databases/sqlite3.orig/distinfo 2011-05-06 08:04:53.000000000 +0400 +++ /usr/ports/databases/sqlite3/distinfo 2011-05-06 08:46:59.000000000 +0400 @@ -1,2 +1,2 @@ -SHA256 (sqlite-src-3070601.zip) = 74450f442a22ea57056bfe09719fb4eeee7e18e83d8cae149c963bc7876e6c08 -SIZE (sqlite-src-3070601.zip) = 4469325 +SHA256 (sqlite-src-3070602.zip) = 55ec0c95d0eab2de95714c846344f00d0fbc0405dc0d05ab2c80028790996f78 +SIZE (sqlite-src-3070602.zip) = 4469329 --- sqlite3-3.7.6.2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri May 6 06:16:09 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2E1091065673; Fri, 6 May 2011 06:16:09 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 062558FC1B; Fri, 6 May 2011 06:16:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p466G87P069826; Fri, 6 May 2011 06:16:08 GMT (envelope-from culot@freefall.freebsd.org) Received: (from culot@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p466G8eC069822; Fri, 6 May 2011 06:16:08 GMT (envelope-from culot) Date: Fri, 6 May 2011 06:16:08 GMT Message-Id: <201105060616.p466G8eC069822@freefall.freebsd.org> To: culot@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, culot@FreeBSD.org From: culot@FreeBSD.org Cc: Subject: Re: ports/156842: [MAINTAINER] databases/sqlite3: update to 3.7.6.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 May 2011 06:16:09 -0000 Synopsis: [MAINTAINER] databases/sqlite3: update to 3.7.6.2 Responsible-Changed-From-To: freebsd-ports-bugs->culot Responsible-Changed-By: culot Responsible-Changed-When: Fri May 6 06:16:08 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=156842 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri May 6 06:50:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3BD29106564A for ; Fri, 6 May 2011 06:50:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2CC028FC14 for ; Fri, 6 May 2011 06:50:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p466oAio001090 for ; Fri, 6 May 2011 06:50:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p466oAgv001089; Fri, 6 May 2011 06:50:10 GMT (envelope-from gnats) Date: Fri, 6 May 2011 06:50:10 GMT Message-Id: <201105060650.p466oAgv001089@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/156841: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 May 2011 06:50:10 -0000 The following reply was made to PR ports/156841; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/156841: commit references a PR Date: Fri, 6 May 2011 06:49:24 +0000 (UTC) wen 2011-05-06 06:49:16 UTC FreeBSD ports repository Modified files: devel/py-pycerberus Makefile distinfo pkg-plist Log: - Update to 0.4.2 PR: ports/156841 Submitted by: Douglas William Thrift (maintainer) Revision Changes Path 1.2 +1 -1 ports/devel/py-pycerberus/Makefile 1.2 +2 -3 ports/devel/py-pycerberus/distinfo 1.2 +14 -1 ports/devel/py-pycerberus/pkg-plist _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Fri May 6 08:09:09 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D82611065675; Fri, 6 May 2011 08:09:09 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B06478FC08; Fri, 6 May 2011 08:09:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p46899IU095649; Fri, 6 May 2011 08:09:09 GMT (envelope-from wen@freefall.freebsd.org) Received: (from wen@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p46899Md095645; Fri, 6 May 2011 08:09:09 GMT (envelope-from wen) Date: Fri, 6 May 2011 08:09:09 GMT Message-Id: <201105060809.p46899Md095645@freefall.freebsd.org> To: douglas@douglasthrift.net, wen@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: wen@FreeBSD.org Cc: Subject: Re: ports/156841: Update port: devel/py-pycerberus Upgrade to 0.4.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 May 2011 08:09:09 -0000 Synopsis: Update port: devel/py-pycerberus Upgrade to 0.4.2 State-Changed-From-To: open->closed State-Changed-By: wen State-Changed-When: Fri May 6 08:09:09 UTC 2011 State-Changed-Why: Committed. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=156841 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri May 6 08:10:12 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AF0B0106566C for ; Fri, 6 May 2011 08:10:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 820778FC1A for ; Fri, 6 May 2011 08:10:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p468ACq3095762 for ; Fri, 6 May 2011 08:10:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p468ACKQ095761; Fri, 6 May 2011 08:10:12 GMT (envelope-from gnats) Date: Fri, 6 May 2011 08:10:12 GMT Message-Id: <201105060810.p468ACKQ095761@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Jonathan Chen Cc: Subject: Re: ports/156437: [PATCH] java/java3d: make it available for java/openjdk X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Jonathan Chen List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 May 2011 08:10:12 -0000 The following reply was made to PR ports/156437; it has been noted by GNATS. From: Jonathan Chen To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/156437: [PATCH] java/java3d: make it available for java/openjdk Date: Fri, 6 May 2011 19:44:31 +1200 On Sat, Apr 16, 2011 at 07:10:20AM +0000, Edwin Groothuis wrote: > Maintainer of java/java3d, > > Please note that PR ports/156437 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. Approved. -- Jonathan Chen From owner-freebsd-ports-bugs@FreeBSD.ORG Fri May 6 09:50:13 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3FA2E1065676 for ; Fri, 6 May 2011 09:50:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 28F488FC14 for ; Fri, 6 May 2011 09:50:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p469oCV5088945 for ; Fri, 6 May 2011 09:50:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p469oCEK088944; Fri, 6 May 2011 09:50:12 GMT (envelope-from gnats) Resent-Date: Fri, 6 May 2011 09:50:12 GMT Resent-Message-Id: <201105060950.p469oCEK088944@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Bernhard Fröhlich Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DFA52106564A for ; Fri, 6 May 2011 09:43:43 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id CEA408FC15 for ; Fri, 6 May 2011 09:43:43 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p469hhXH058519 for ; Fri, 6 May 2011 09:43:43 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p469hhnW058489; Fri, 6 May 2011 09:43:43 GMT (envelope-from nobody) Message-Id: <201105060943.p469hhnW058489@red.freebsd.org> Date: Fri, 6 May 2011 09:43:43 GMT From: Bernhard Fröhlich To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156843: [REPOCOPY] emulators/virtualbox-ose -> emulators/virtualbox-ose-legacy and emulators/virtualbox-ose-kmod-legacy X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 May 2011 09:50:13 -0000 >Number: 156843 >Category: ports >Synopsis: [REPOCOPY] emulators/virtualbox-ose -> emulators/virtualbox-ose-legacy and emulators/virtualbox-ose-kmod-legacy >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 May 06 09:50:11 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Bernhard Fröhlich >Release: >Organization: >Environment: FreeBSD vs1.bluelife.at 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Fri Feb 18 02:24:46 UTC 2011 root@almeida.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: Please repo-copy emulators/virtualbox-ose to emulators/virtualbox-ose-legacy and emulators/virtualbox-ose-kmod to emulators/virtualbox-ose-kmod-legacy. Once the repo-copies are done we will update emulators/virtualbox-ose to VirtualBox 4.0.6 and want to maintain the last stable version in the -legacy ports so that people have a fallback. Discussed with: bapt@ >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri May 6 09:50:13 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8D0641065670 for ; Fri, 6 May 2011 09:50:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 92B058FC18 for ; Fri, 6 May 2011 09:50:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p469oCgD088954 for ; Fri, 6 May 2011 09:50:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p469oCoX088953; Fri, 6 May 2011 09:50:12 GMT (envelope-from gnats) Resent-Date: Fri, 6 May 2011 09:50:12 GMT Resent-Message-Id: <201105060950.p469oCoX088953@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Frank Wall Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7AF06106564A for ; Fri, 6 May 2011 09:47:37 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 4F9F18FC18 for ; Fri, 6 May 2011 09:47:37 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p469lahl060613 for ; Fri, 6 May 2011 09:47:36 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p469la93060612; Fri, 6 May 2011 09:47:36 GMT (envelope-from nobody) Message-Id: <201105060947.p469la93060612@red.freebsd.org> Date: Fri, 6 May 2011 09:47:36 GMT From: Frank Wall To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156844: [PATCH] net/p5-Net-ext: fix CPAN Bug #43071 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 May 2011 09:50:13 -0000 >Number: 156844 >Category: ports >Synopsis: [PATCH] net/p5-Net-ext: fix CPAN Bug #43071 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri May 06 09:50:12 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Frank Wall >Release: 7.3-RELEASE-p2 >Organization: >Environment: FreeBSD 7.3-RELEASE-p2 FreeBSD 7.3-RELEASE-p2 #0: Mon Jul 12 19:23:19 UTC 2010 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: The current version of net/p5-Net-ext has a bug that makes it partial incompatible with perl 5.10. A patch exists since 2009, but was not applied yet. Since perl 5.10 is our default version we should apply the patch. References: http://rt.cpan.org/Public/Bug/Display.html?id=43071 http://lists.opensuse.org/opensuse-bugs/2009-09/msg04661.html >How-To-Repeat: 1. make sure you have perl 5.10 installed: pkg_info -xI perl-5.10 2. install net/p5-Net-ext 3. issue the command: perl -w and then: use Net::TCP; Result: panic: no address for 'Net::TCP::TCP_RPTR2RXT' in 'Gen.c' at /usr/local/lib/perl5/5.10.1/mach/DynaLoader.pm line 223. BEGIN failed--compilation aborted at /usr/local/lib/perl5/site_perl/5.10.1/mach/Net/Gen.pm line 194. Compilation failed in require at /usr/local/lib/perl5/site_perl/5.10.1/mach/Net/Inet.pm line 33. BEGIN failed--compilation aborted at /usr/local/lib/perl5/site_perl/5.10.1/mach/Net/Inet.pm line 33. Compilation failed in require at /usr/local/lib/perl5/site_perl/5.10.1/mach/Net/UDP.pm line 32. BEGIN failed--compilation aborted at /usr/local/lib/perl5/site_perl/5.10.1/mach/Net/UDP.pm line 32. >Fix: - apply the attached patch Patch attached with submission follows: --- net/p5-Net-ext/files/does_not_exist 1970-01-01 01:00:00.000000000 +0100 +++ net/p5-Net-ext/files/patch-Gen.xs 2011-05-06 11:33:07.000000000 +0200 @@ -0,0 +1,11 @@ +--- Gen.xs.orig 2002-04-10 13:05:58.000000000 +0200 ++++ Gen.xs 2011-05-06 11:32:45.000000000 +0200 +@@ -146,7 +146,7 @@ + CV *cv; + klen = strlen(name); + (void) hv_fetch(missing, name, klen, TRUE); +- cv = newXS(name, NULL, file); /* newSUB with no block */ ++ cv = newXS(name, Perl_cv_undef, file); /* newSUB with no block */ + sv_setsv((SV*)cv, &PL_sv_no); /* prototype it as "()" */ + } + --- net/p5-Net-ext/Makefile.orig 2008-04-17 16:27:42.000000000 +0200 +++ net/p5-Net-ext/Makefile 2011-05-06 11:35:26.000000000 +0200 @@ -7,6 +7,7 @@ PORTNAME= Net-ext PORTVERSION= 1.011 +PORTREVISION= 1 CATEGORIES= net perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri May 6 09:50:23 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4A720106564A; Fri, 6 May 2011 09:50:23 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1FE5F8FC0A; Fri, 6 May 2011 09:50:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p469oNXs089720; Fri, 6 May 2011 09:50:23 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p469oM6o089708; Fri, 6 May 2011 09:50:22 GMT (envelope-from edwin) Date: Fri, 6 May 2011 09:50:22 GMT Message-Id: <201105060950.p469oM6o089708@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vbox@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156843: [REPOCOPY] emulators/virtualbox-ose -> emulators/virtualbox-ose-legacy and emulators/virtualbox-ose-kmod-legacy X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 May 2011 09:50:23 -0000 Synopsis: [REPOCOPY] emulators/virtualbox-ose -> emulators/virtualbox-ose-legacy and emulators/virtualbox-ose-kmod-legacy Responsible-Changed-From-To: freebsd-ports-bugs->vbox Responsible-Changed-By: edwin Responsible-Changed-When: Fri May 6 09:50:22 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156843 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri May 6 09:50:28 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6376F106566C; Fri, 6 May 2011 09:50:28 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3A5F48FC1B; Fri, 6 May 2011 09:50:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p469oSKX090381; Fri, 6 May 2011 09:50:28 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p469oSpe090372; Fri, 6 May 2011 09:50:28 GMT (envelope-from edwin) Date: Fri, 6 May 2011 09:50:28 GMT Message-Id: <201105060950.p469oSpe090372@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156844: [PATCH] net/p5-Net-ext: fix CPAN Bug #43071 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 May 2011 09:50:28 -0000 Synopsis: [PATCH] net/p5-Net-ext: fix CPAN Bug #43071 Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Fri May 6 09:50:27 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156844 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri May 6 11:50:09 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F246F1065674 for ; Fri, 6 May 2011 11:50:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C6C008FC1D for ; Fri, 6 May 2011 11:50:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p46Bo9Kd000612 for ; Fri, 6 May 2011 11:50:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p46Bo90O000611; Fri, 6 May 2011 11:50:09 GMT (envelope-from gnats) Resent-Date: Fri, 6 May 2011 11:50:09 GMT Resent-Message-Id: <201105061150.p46Bo90O000611@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Alex Deiter Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B747E1065673 for ; Fri, 6 May 2011 11:40:49 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 993A38FC14 for ; Fri, 6 May 2011 11:40:49 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p46BenqL062793 for ; Fri, 6 May 2011 11:40:49 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p46Ben9H062792; Fri, 6 May 2011 11:40:49 GMT (envelope-from nobody) Message-Id: <201105061140.p46Ben9H062792@red.freebsd.org> Date: Fri, 6 May 2011 11:40:49 GMT From: Alex Deiter To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156846: net/isc-dhcp41-server without IPv6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 May 2011 11:50:10 -0000 >Number: 156846 >Category: ports >Synopsis: net/isc-dhcp41-server without IPv6 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri May 06 11:50:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Alex Deiter >Release: 9.0-CURRENT-r221271 >Organization: N/A >Environment: FreeBSD blackbox.deiter.ru 9.0-CURRENT-r221271 FreeBSD 9.0-CURRENT-r221271 #0: Sun May 1 11:01:45 MSD 2011 root@blackbox.deiter.net.ru:/usr/obj/usr/src/sys/BLACKBOX i386 >Description: Port net/isc-dhcp41-server does not have config options for building without IPv6 support. Please review attached patch. >How-To-Repeat: cd /usr/ports/net/isc-dhcp41-server && make config install >Fix: cd /usr/ports/net patch -p0 < patch-isc-dhcp41-server.txt cd isc-dhcp41-server make config install Patch attached with submission follows: diff -ur isc-dhcp41-server.orig/Makefile isc-dhcp41-server/Makefile --- isc-dhcp41-server.orig/Makefile 2011-04-11 01:40:52.000000000 +0400 +++ isc-dhcp41-server/Makefile 2011-05-06 15:10:17.056815717 +0400 @@ -33,6 +33,7 @@ .if ${SUBSYS} == server OPTIONS= DHCP_PARANOIA "Enable support for chroot" on \ + DHCP_IPV6 "Enable support for IPv6" on \ DHCP_LDAP "Experimental LDAP backend support" off \ DHCP_LDAP_SSL "Support LDAP connection over SSL/TLS" on .endif @@ -72,7 +73,10 @@ MAN1= omshell.1 MAN3= dhcpctl.3 omapi.3 CFLAGS+= -fPIC -CONF_FILE= dhcpd.conf dhcpd6.conf +CONF_FILE= dhcpd.conf +.if defined(WITH_DHCP_IPV6) +CONF_FILE+= dhcpd6.conf +.endif .else MAN8+= dhcrelay.8 .endif @@ -135,6 +139,14 @@ SUB_LIST+= PARANOIA=no .endif +.if defined(WITH_DHCP_IPV6) +CONFIGURE_ARGS+= --enable-dhcpv6 +PLIST_SUB+= IPV6="" +.else +CONFIGURE_ARGS+= --disable-dhcpv6 +PLIST_SUB+= IPV6="@comment " +.endif + pre-patch: .if ${SUBSYS} == server && defined(WITH_DHCP_LDAP) @cd ${WRKSRC} && ${PATCH} -p1 < ${WRKDIR}/${LDAPPATCHDIST}/${LDAPPATCHFILE} @@ -155,9 +167,11 @@ ${MAKE} -C ${WRKSRC}/includes install ${MAKE} -C ${WRKSRC}/common install ${INSTALL_DATA} ${WRKSRC}/dhcpctl/dhcpctl.h ${PREFIX}/include +.if defined(WITH_DHCP_IPV6) ${INSTALL_DATA} ${WRKSRC}/doc/examples/dhcpd-dhcpv6.conf \ ${PREFIX}/etc/dhcpd6.conf.sample .endif +.endif .if defined(WITH_DHCP_LDAP) @${MKDIR} ${SCHEMA_DIR} ${INSTALL_DATA} ${LDAP_SCHEMA} ${SCHEMA_DIR} @@ -180,8 +194,10 @@ .if ${SUBSYS} == client ${INSTALL_SCRIPT} ${WRKSRC}/client/scripts/freebsd ${PREFIX}/sbin/dhclient-script .elif ${SUBSYS} == server +.if defined(WITH_DHCP_IPV6) @${LN} -sf isc-dhcpd ${PREFIX}/etc/rc.d/isc-dhcpd6 .endif +.endif @${SED} ${PKGMESSAGE_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} \ ${MSG_FILE} > ${PKGMESSAGE} .if defined(WITH_DHCP_LDAP) diff -ur isc-dhcp41-server.orig/pkg-plist isc-dhcp41-server/pkg-plist --- isc-dhcp41-server.orig/pkg-plist 2011-02-14 05:21:27.000000000 +0300 +++ isc-dhcp41-server/pkg-plist 2011-05-06 15:02:19.378804406 +0400 @@ -1,13 +1,13 @@ @comment $FreeBSD: ports/net/isc-dhcp41-server/pkg-plist,v 1.4 2011/02/14 02:21:27 wxs Exp $ @unexec %D/etc/rc.d/isc-dhcpd forcestop 2>/dev/null || true -@unexec %D/etc/rc.d/isc-dhcpd6 forcestop 2>/dev/null || true +%%IPV6%%@unexec %D/etc/rc.d/isc-dhcpd6 forcestop 2>/dev/null || true @unexec if cmp -s %D/etc/dhcpd.conf.sample %D/etc/dhcpd.conf; then rm -f %D/etc/dhcpd.conf; fi etc/dhcpd.conf.sample @exec if [ ! -f %D/etc/dhcpd.conf ] ; then cp -p %D/%F %B/dhcpd.conf; fi -@unexec if cmp -s %D/etc/dhcpd6.conf.sample %D/etc/dhcpd6.conf; then rm -f %D/etc/dhcpd6.conf; fi -etc/dhcpd6.conf.sample -@exec if [ ! -f %D/etc/dhcpd6.conf ] ; then cp -p %D/%F %B/dhcpd6.conf; fi -etc/rc.d/isc-dhcpd6 +%%IPV6%%@unexec if cmp -s %D/etc/dhcpd6.conf.sample %D/etc/dhcpd6.conf; then rm -f %D/etc/dhcpd6.conf; fi +%%IPV6%%etc/dhcpd6.conf.sample +%%IPV6%%@exec if [ ! -f %D/etc/dhcpd6.conf ] ; then cp -p %D/%F %B/dhcpd6.conf; fi +%%IPV6%%etc/rc.d/isc-dhcpd6 sbin/dhcpd bin/omshell %%LDAP%%bin/dhcpd-conf-to-ldap >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri May 6 11:50:19 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DFFF810656B3; Fri, 6 May 2011 11:50:19 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B58818FC15; Fri, 6 May 2011 11:50:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p46BoJYD001305; Fri, 6 May 2011 11:50:19 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p46BoJnr001297; Fri, 6 May 2011 11:50:19 GMT (envelope-from edwin) Date: Fri, 6 May 2011 11:50:19 GMT Message-Id: <201105061150.p46BoJnr001297@freefall.freebsd.org> To: alex.deiter@gmail.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156846: net/isc-dhcp41-server without IPv6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 May 2011 11:50:20 -0000 Synopsis: net/isc-dhcp41-server without IPv6 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Fri May 6 11:50:19 UTC 2011 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156846 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri May 6 12:00:27 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8950410656A4 for ; Fri, 6 May 2011 12:00:27 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 76FB78FC1E for ; Fri, 6 May 2011 12:00:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p46C0RXH009051 for ; Fri, 6 May 2011 12:00:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p46C0RCT009049; Fri, 6 May 2011 12:00:27 GMT (envelope-from gnats) Date: Fri, 6 May 2011 12:00:27 GMT Message-Id: <201105061200.p46C0RCT009049@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/156846: net/isc-dhcp41-server without IPv6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 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, 06 May 2011 12:00:27 -0000 The following reply was made to PR ports/156846; it has been noted by GNATS. From: Edwin Groothuis To: douglas@douglasthrift.net Cc: bug-followup@FreeBSD.org Subject: Re: ports/156846: net/isc-dhcp41-server without IPv6 Date: Fri, 6 May 2011 11:50:16 UT Maintainer of net/isc-dhcp41-server, Please note that PR ports/156846 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/156846 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Fri May 6 13:10:09 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B057C106564A for ; Fri, 6 May 2011 13:10:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 684798FC16 for ; Fri, 6 May 2011 13:10:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p46DA9HF071758 for ; Fri, 6 May 2011 13:10:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p46DA9Ij071757; Fri, 6 May 2011 13:10:09 GMT (envelope-from gnats) Resent-Date: Fri, 6 May 2011 13:10:09 GMT Resent-Message-Id: <201105061310.p46DA9Ij071757@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Richard Brooksby Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C04B01065670 for ; Fri, 6 May 2011 13:03:56 +0000 (UTC) (envelope-from rb@ravenbrook.com) Received: from raven.ravenbrook.com (raven.ravenbrook.com [94.229.129.33]) by mx1.freebsd.org (Postfix) with ESMTP id 59ADA8FC12 for ; Fri, 6 May 2011 13:03:55 +0000 (UTC) Received: from raven.ravenbrook.com (localhost [127.0.0.1]) by raven.ravenbrook.com (8.14.4/8.14.2) with ESMTP id p46CNFER017294 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Fri, 6 May 2011 13:23:15 +0100 (BST) (envelope-from rb@raven.ravenbrook.com) Received: (from rb@localhost) by raven.ravenbrook.com (8.14.4/8.14.4/Submit) id p46CNFrk017293; Fri, 6 May 2011 13:23:15 +0100 (BST) (envelope-from rb) Message-Id: <201105061223.p46CNFrk017293@raven.ravenbrook.com> Date: Fri, 6 May 2011 13:23:15 +0100 (BST) From: Richard Brooksby To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/156847: make of port www/py-html5lib does nothing X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Richard Brooksby List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 May 2011 13:10:09 -0000 >Number: 156847 >Category: ports >Synopsis: make of port www/py-html5lib does nothing >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: Fri May 06 13:10:08 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Richard Brooksby >Release: FreeBSD 7.3-RELEASE i386 >Organization: >Environment: System: FreeBSD raven.ravenbrook.com 7.3-RELEASE FreeBSD 7.3-RELEASE #0: Sun Mar 21 06:15:01 UTC 2010 root@walker.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: The port www/py-html5lib does not install. Nothing at all happens when you run "make" or "make install" in the port directory. This is immediately after a "portsnap fetch install" just before the date of this report. >How-To-Repeat: portsnap fetch install cd /usr/ports/www/py-html5lib make [nothing happens] >Fix: Fetch and install py-html5lib by hand, but this doesn't record it as installed so it will fail to get upgraded and reinstalled properly. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri May 6 14:26:38 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3E12D106564A; Fri, 6 May 2011 14:26:38 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 157618FC0C; Fri, 6 May 2011 14:26:38 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p46EQba0043733; Fri, 6 May 2011 14:26:37 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p46EQbg1043729; Fri, 6 May 2011 14:26:37 GMT (envelope-from linimon) Date: Fri, 6 May 2011 14:26:37 GMT Message-Id: <201105061426.p46EQbg1043729@freefall.freebsd.org> To: jonc@chen.org.nz, rhurlin@gwdg.de, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/156437: [PATCH] java/java3d: make it available for java/openjdk X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 May 2011 14:26:38 -0000 Synopsis: [PATCH] java/java3d: make it available for java/openjdk State-Changed-From-To: feedback->open State-Changed-By: linimon State-Changed-When: Fri May 6 14:26:19 UTC 2011 State-Changed-Why: Maintainer approved. http://www.freebsd.org/cgi/query-pr.cgi?pr=156437 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri May 6 16:20:08 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8CCFC106566B for ; Fri, 6 May 2011 16:20:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5E16A8FC1A for ; Fri, 6 May 2011 16:20:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p46GK8bI043030 for ; Fri, 6 May 2011 16:20:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p46GK84N043029; Fri, 6 May 2011 16:20:08 GMT (envelope-from gnats) Resent-Date: Fri, 6 May 2011 16:20:08 GMT Resent-Message-Id: <201105061620.p46GK84N043029@freefall.freebsd.org> 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 Helfman Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BFFAE1065670 for ; Fri, 6 May 2011 16:19:05 +0000 (UTC) (envelope-from jhelfman@experts-exchange.com) Received: from mail.experts-exchange.com (mail.experts-exchange.com [72.29.183.251]) by mx1.freebsd.org (Postfix) with ESMTP id A19108FC14 for ; Fri, 6 May 2011 16:19:05 +0000 (UTC) Received: from mail.experts-exchange.com (localhost [127.0.0.1]) by mail.experts-exchange.com (Postfix) with ESMTP id E2A966EF418 for ; Fri, 6 May 2011 09:19:04 -0700 (PDT) Received: from mail.experts-exchange.com ([127.0.0.1]) by mail.experts-exchange.com (mail.experts-exchange.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id PAIYea4Zvjeq for ; Fri, 6 May 2011 09:19:04 -0700 (PDT) Received: from experts-exchange.com (unknown [72.29.180.81]) by mail.experts-exchange.com (Postfix) with SMTP id B52A06EF3BE for ; Fri, 6 May 2011 09:19:04 -0700 (PDT) Received: (nullmailer pid 28145 invoked by uid 1001); Fri, 06 May 2011 16:19:04 -0000 Message-Id: <1304698744.244061.28144.nullmailer@experts-exchange.com> Date: Fri, 06 May 2011 09:19:04 -0700 From: Jason Helfman To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/156848: [patch][maintainer-update] graphics/rubygem-dragonfly: update to 0.9.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Jason Helfman List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 May 2011 16:20:08 -0000 >Number: 156848 >Category: ports >Synopsis: [patch][maintainer-update] graphics/rubygem-dragonfly: update to 0.9.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri May 06 16:20:07 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Jason Helfman >Release: FreeBSD 8.2-RELEASE i386 >Organization: Experts Exchange, LLC. >Environment: System: FreeBSD eggman.experts-exchange.com 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Fri Feb 18 02:24:46 UTC 2011 root@almeida.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: Update to 0.9.0 Builds clealy in Tinderbox >How-To-Repeat: >Fix: Index: graphics/rubygem-dragonfly/Makefile =================================================================== RCS file: /home/jhelfman/ncvs/ports/graphics/rubygem-dragonfly/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- graphics/rubygem-dragonfly/Makefile 30 Jan 2011 12:10:42 -0000 1.1 +++ graphics/rubygem-dragonfly/Makefile 5 May 2011 22:54:02 -0000 @@ -5,7 +5,7 @@ # $FreeBSD: ports/graphics/rubygem-dragonfly/Makefile,v 1.1 2011/01/30 12:10:42 miwi Exp $ PORTNAME= dragonfly -PORTVERSION= 0.8.2 +PORTVERSION= 0.9.0 CATEGORIES= graphics rubygems MASTER_SITES= RG Index: graphics/rubygem-dragonfly/distinfo =================================================================== RCS file: /home/jhelfman/ncvs/ports/graphics/rubygem-dragonfly/distinfo,v retrieving revision 1.1 diff -u -r1.1 distinfo --- graphics/rubygem-dragonfly/distinfo 30 Jan 2011 12:10:42 -0000 1.1 +++ graphics/rubygem-dragonfly/distinfo 5 May 2011 22:54:25 -0000 @@ -1,2 +1,2 @@ -SHA256 (rubygem/dragonfly-0.8.2.gem) = dbaf7f13af9d1714349daea793acdcf4d1edc756c25da6658f19b733dbca064f -SIZE (rubygem/dragonfly-0.8.2.gem) = 387584 +SHA256 (rubygem/dragonfly-0.9.0.gem) = 4cb6bb9a3a21b4ef4f115cebdd45236c28488eeeb3f61c4ec2177a291c09a4ef +SIZE (rubygem/dragonfly-0.9.0.gem) = 407552 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri May 6 16:20:19 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 21AEF106564A; Fri, 6 May 2011 16:20:19 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E9E748FC17; Fri, 6 May 2011 16:20:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p46GKI5v043793; Fri, 6 May 2011 16:20:18 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p46GKInm043781; Fri, 6 May 2011 16:20:18 GMT (envelope-from edwin) Date: Fri, 6 May 2011 16:20:18 GMT Message-Id: <201105061620.p46GKInm043781@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ruby@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156848: [patch][maintainer-update] graphics/rubygem-dragonfly: update to 0.9.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 May 2011 16:20:19 -0000 Synopsis: [patch][maintainer-update] graphics/rubygem-dragonfly: update to 0.9.0 Responsible-Changed-From-To: freebsd-ports-bugs->ruby Responsible-Changed-By: edwin Responsible-Changed-When: Fri May 6 16:20:18 UTC 2011 Responsible-Changed-Why: ruby@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156848 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri May 6 17:50:05 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1BCCC1065678 for ; Fri, 6 May 2011 17:50:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E407B8FC2B for ; Fri, 6 May 2011 17:50:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p46Ho32Q024706 for ; Fri, 6 May 2011 17:50:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p46Ho3TB024705; Fri, 6 May 2011 17:50:03 GMT (envelope-from gnats) Resent-Date: Fri, 6 May 2011 17:50:03 GMT Resent-Message-Id: <201105061750.p46Ho3TB024705@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Zhihao Yuan Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 90751106564A for ; Fri, 6 May 2011 17:42:12 +0000 (UTC) (envelope-from lichray@gmail.com) Received: from mail-iw0-f182.google.com (mail-iw0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id 213F08FC0C for ; Fri, 6 May 2011 17:42:11 +0000 (UTC) Received: by iwn33 with SMTP id 33so3998413iwn.13 for ; Fri, 06 May 2011 10:42:11 -0700 (PDT) Received: by 10.42.161.129 with SMTP id t1mr3078390icx.123.1304703730623; Fri, 06 May 2011 10:42:10 -0700 (PDT) Received: from compaq.yuetime (c-98-228-191-105.hsd1.il.comcast.net [98.228.191.105]) by mx.google.com with ESMTPS id 14sm1419605ibc.25.2011.05.06.10.42.07 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 06 May 2011 10:42:09 -0700 (PDT) Received: by compaq.yuetime (sSMTP sendmail emulation); Fri, 06 May 2011 12:42:06 -0500 Message-Id: <4dc432f1.ce00e70a.1770.63e7@mx.google.com> Date: Fri, 06 May 2011 12:42:06 -0500 From: Zhihao Yuan To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/156849: www/serf: updates to 0.7.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Zhihao Yuan List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 May 2011 17:50:05 -0000 >Number: 156849 >Category: ports >Synopsis: www/serf: updates to 0.7.2 >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: Fri May 06 17:50:03 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Zhihao Yuan >Release: FreeBSD 8.2-STABLE amd64 >Organization: Northern Illinois University >Environment: System: FreeBSD compaq.yuetime 8.2-STABLE FreeBSD 8.2-STABLE #0: Mon Mar 14 02:51:28 CDT 2011 root@compaq.yuetime:/usr/obj/usr/src/sys/HOUKAGO amd64 >Description: The old version in ports tree is 0.3.1, which is far behind the latest version. I have tested the new version. The ports depend on it, for example, subversion, needs to bump version. >How-To-Repeat: >Fix: --- serf-0.7.2.patch begins here --- diff -ruN --exclude=CVS /usr/ports/www/serf.orig/Makefile /usr/ports/www/serf/Makefile --- /usr/ports/www/serf.orig/Makefile 2010-05-17 23:07:54.000000000 -0500 +++ /usr/ports/www/serf/Makefile 2011-05-06 05:22:28.241951886 -0500 @@ -6,8 +6,8 @@ # PORTNAME= serf -PORTVERSION= 0.3.1 -PORTREVISION= 2 +PORTVERSION= 0.7.2 +PORTREVISION= 0 CATEGORIES= www MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} \ ${MASTER_SITE_LOCAL} diff -ruN --exclude=CVS /usr/ports/www/serf.orig/distinfo /usr/ports/www/serf/distinfo --- /usr/ports/www/serf.orig/distinfo 2011-03-19 07:36:48.000000000 -0500 +++ /usr/ports/www/serf/distinfo 2011-05-06 05:22:48.775844743 -0500 @@ -1,2 +1,2 @@ -SHA256 (serf-0.3.1.tar.bz2) = 8bcdb09952152376e6c2ada9e8b4b6cdf300e099711e1224a4f501bac22fb72a -SIZE (serf-0.3.1.tar.bz2) = 142578 +SHA256 (serf-0.7.2.tar.bz2) = 929cb8cfc27f3ebcdc71525781bc6ff6514399a717e0532b03b653a90683fc2f +SIZE (serf-0.7.2.tar.bz2) = 161904 diff -ruN --exclude=CVS /usr/ports/www/serf.orig/pkg-plist /usr/ports/www/serf/pkg-plist --- /usr/ports/www/serf.orig/pkg-plist 2008-05-28 16:59:02.000000000 -0500 +++ /usr/ports/www/serf/pkg-plist 2011-05-06 05:31:19.644386157 -0500 @@ -1,7 +1,7 @@ include/serf-0/serf.h include/serf-0/serf_bucket_types.h include/serf-0/serf_bucket_util.h -include/serf-0/serf_declare.h +include/serf-0/serf_private.h lib/libserf-0.so.0 lib/libserf-0.so lib/libserf-0.la --- serf-0.7.2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri May 6 17:50:16 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1F0341065670; Fri, 6 May 2011 17:50:16 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EE57F8FC15; Fri, 6 May 2011 17:50:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p46HoFoX025637; Fri, 6 May 2011 17:50:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p46HoF6F025633; Fri, 6 May 2011 17:50:15 GMT (envelope-from edwin) Date: Fri, 6 May 2011 17:50:15 GMT Message-Id: <201105061750.p46HoF6F025633@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, apache@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156849: www/serf: updates to 0.7.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 May 2011 17:50:16 -0000 Synopsis: www/serf: updates to 0.7.2 Responsible-Changed-From-To: freebsd-ports-bugs->apache Responsible-Changed-By: edwin Responsible-Changed-When: Fri May 6 17:50:15 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156849 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri May 6 19:20:14 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 21DAE1065686 for ; Fri, 6 May 2011 19:20:14 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 83DCA8FC17 for ; Fri, 6 May 2011 19:20:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p46JKCEM005852 for ; Fri, 6 May 2011 19:20:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p46JKCvS005851; Fri, 6 May 2011 19:20:12 GMT (envelope-from gnats) Resent-Date: Fri, 6 May 2011 19:20:12 GMT Resent-Message-Id: <201105061920.p46JKCvS005851@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Ruslan Mahmatkhanov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B04941065675 for ; Fri, 6 May 2011 19:15:59 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 9FE728FC23 for ; Fri, 6 May 2011 19:15:59 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p46JFxaQ048950 for ; Fri, 6 May 2011 19:15:59 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p46JFxSa048949; Fri, 6 May 2011 19:15:59 GMT (envelope-from nobody) Message-Id: <201105061915.p46JFxSa048949@red.freebsd.org> Date: Fri, 6 May 2011 19:15:59 GMT From: Ruslan Mahmatkhanov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156850: [UPDATE] net-im/ejabberd: update to 2.1.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 May 2011 19:20:14 -0000 >Number: 156850 >Category: ports >Synopsis: [UPDATE] net-im/ejabberd: update to 2.1.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 May 06 19:20:12 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Ruslan Mahmatkhanov >Release: 9.0-CURRENT >Organization: >Environment: 9.0-CURRENT i386 with erlang-r14b02,1 >Description: - update to 2.1.6 - switch to USERS/GROUPS knobs instead of manual creating of uids/gids - cleanup unsupported FreeBSD versions - some pkg-plist cleanup: - use ETCDIR instead of etc/PORTNAME - change 'ejabberd' with PORTNAME in all cases changelog: http://www.ejabberd.im/ejabberd-2.1.6 >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruNa ejabberd.orig/Makefile ejabberd/Makefile --- ejabberd.orig/Makefile 2010-10-25 01:55:04.000000000 +0400 +++ ejabberd/Makefile 2011-05-06 22:33:00.000000000 +0400 @@ -6,7 +6,7 @@ # PORTNAME= ejabberd -PORTVERSION= 2.1.5 +PORTVERSION= 2.1.6 CATEGORIES= net-im MASTER_SITES= http://www.process-one.net/downloads/ejabberd/${PORTVERSION}/ @@ -17,6 +17,9 @@ RUN_DEPENDS= erl:${PORTSDIR}/lang/erlang LIB_DEPENDS= expat.6:${PORTSDIR}/textproc/expat2 +USERS= ejabberd +GROUPS= ${USERS} + GNU_CONFIGURE= yes USE_GMAKE= yes USE_ICONV= yes @@ -31,7 +34,8 @@ PKGINSTALL= ${WRKDIR}/pkg-install PLIST_SUB= PORTNAME=${PORTNAME} PORTVERSION=${PORTVERSION} SUB_FILES= pkg-message pkg-install -SUB_LIST= PORTNAME=${PORTNAME} PORTVERSION=${PORTVERSION} +SUB_LIST= PORTNAME=${PORTNAME} PORTVERSION=${PORTVERSION} \ + USERS=${USERS} GROUPS=${GROUPS} WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/src LICENSE= GPLv2 @@ -41,11 +45,6 @@ USE_OPENSSL= yes -.if ${OSVERSION} < 700000 -BROKEN= does not compile -WITH_OPENSSL_PORT= yes -CONFIGURE_ARGS+=--with-openssl=${LOCALBASE} -.endif .include "${PORTSDIR}/Mk/bsd.openssl.mk" .if defined(WITH_ODBC) diff -ruNa ejabberd.orig/distinfo ejabberd/distinfo --- ejabberd.orig/distinfo 2011-03-20 15:53:23.000000000 +0300 +++ ejabberd/distinfo 2011-05-06 22:22:15.000000000 +0400 @@ -1,2 +1,2 @@ -SHA256 (ejabberd-2.1.5.tar.gz) = 31a46228c6933d7c24435753300a4d2ae2e84568a6097175dc5d4e553299dd9d -SIZE (ejabberd-2.1.5.tar.gz) = 2278008 +SHA256 (ejabberd-2.1.6.tar.gz) = b54886b119a0ae9f19c8dd91a18e85e518fbd979d47812bee582e872cfbc3544 +SIZE (ejabberd-2.1.6.tar.gz) = 2874967 diff -ruNa ejabberd.orig/files/pkg-install.in ejabberd/files/pkg-install.in --- ejabberd.orig/files/pkg-install.in 2009-03-16 11:38:32.000000000 +0300 +++ ejabberd/files/pkg-install.in 2011-05-06 22:29:42.000000000 +0400 @@ -4,35 +4,11 @@ exit 0 fi -USER=ejabberd -GROUP=${USER} -UID=543 -GID=${UID} USERS_HOME="/var/spool/ejabberd" -if ! pw groupshow "${GROUP}" 2>/dev/null 1>&2; then - if pw groupadd ${GROUP} -g ${GID}; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi -fi - -if ! pw usershow "${USER}" 2>/dev/null 1>&2; then - if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ - -s "/bin/sh" -d ${USERS_HOME} -c "ejabberd pseudo user"; \ - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi -fi - -install -d -m 750 -o ${USER} -g ${GROUP} ${USERS_HOME} /var/log/ejabberd +install -d -m 750 -o %%USERS%% -g %%GROUPS%% ${USERS_HOME} /var/log/ejabberd -chown -R ${USER}:${GROUP} %%PREFIX%%/etc/%%PORTNAME%% -chown -R ${USER}:${GROUP} %%PREFIX%%/lib/erlang/lib/%%PORTNAME%%-%%PORTVERSION%% +chown -R %%USERS%%:%%GROUPS%% %%PREFIX%%/etc/%%PORTNAME%% +chown -R %%USERS%%:%%GROUPS%% %%PREFIX%%/lib/erlang/lib/%%PORTNAME%%-%%PORTVERSION%% exit 0 diff -ruNa ejabberd.orig/pkg-deinstall ejabberd/pkg-deinstall --- ejabberd.orig/pkg-deinstall 2005-08-28 19:51:47.000000000 +0400 +++ ejabberd/pkg-deinstall 2011-05-06 22:34:59.000000000 +0400 @@ -4,18 +4,6 @@ exit 0 fi -USER=ejabberd - -echo "" - -if pw usershow "${USER}" 2>/dev/null 1>&2; then - echo "To delete ejabberd user permanently, use 'pw userdel ${USER}'." -fi - -if pw groupshow "${USER}" 2>/dev/null 1>&2; then - echo "To delete ejabberd group permanently, use 'pw groupdel ${USER}'." -fi - rm -Rf /var/run/ejabberd cat <Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri May 6 19:20:26 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A94DD106568C; Fri, 6 May 2011 19:20:26 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 81ABE8FC21; Fri, 6 May 2011 19:20:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p46JKQHf007051; Fri, 6 May 2011 19:20:26 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p46JKQZs007041; Fri, 6 May 2011 19:20:26 GMT (envelope-from edwin) Date: Fri, 6 May 2011 19:20:26 GMT Message-Id: <201105061920.p46JKQZs007041@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ashish@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156850: [UPDATE] net-im/ejabberd: update to 2.1.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 May 2011 19:20:26 -0000 Synopsis: [UPDATE] net-im/ejabberd: update to 2.1.6 Responsible-Changed-From-To: freebsd-ports-bugs->ashish Responsible-Changed-By: edwin Responsible-Changed-When: Fri May 6 19:20:25 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156850 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri May 6 19:30:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DD1021065670 for ; Fri, 6 May 2011 19:30:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9A83A8FC15 for ; Fri, 6 May 2011 19:30:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p46JUBpx014166 for ; Fri, 6 May 2011 19:30:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p46JUBKX014162; Fri, 6 May 2011 19:30:11 GMT (envelope-from gnats) Resent-Date: Fri, 6 May 2011 19:30:11 GMT Resent-Message-Id: <201105061930.p46JUBKX014162@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Ruslan Mahmatkhanov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5594D106566C for ; Fri, 6 May 2011 19:25:16 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 46B618FC17 for ; Fri, 6 May 2011 19:25:16 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p46JPGa4058051 for ; Fri, 6 May 2011 19:25:16 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p46JPGD9058050; Fri, 6 May 2011 19:25:16 GMT (envelope-from nobody) Message-Id: <201105061925.p46JPGD9058050@red.freebsd.org> Date: Fri, 6 May 2011 19:25:16 GMT From: Ruslan Mahmatkhanov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156851: [UPDATE] sysutils/fio: update to 1.53 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 May 2011 19:30:11 -0000 >Number: 156851 >Category: ports >Synopsis: [UPDATE] sysutils/fio: update to 1.53 >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 May 06 19:30:11 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Ruslan Mahmatkhanov >Release: 9.0-CURRENT >Organization: >Environment: 9.0-CURRENT i386 >Description: - update to 1.53 >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruNa fio.orig/Makefile fio/Makefile --- fio.orig/Makefile 2011-03-27 20:39:25.000000000 +0400 +++ fio/Makefile 2011-05-06 23:19:39.000000000 +0400 @@ -8,7 +8,7 @@ # PORTNAME= fio -PORTVERSION= 1.51 +PORTVERSION= 1.53 CATEGORIES= sysutils benchmarks MASTER_SITES= http://brick.kernel.dk/snaps/ diff -ruNa fio.orig/distinfo fio/distinfo --- fio.orig/distinfo 2011-03-27 20:39:25.000000000 +0400 +++ fio/distinfo 2011-05-06 23:19:49.000000000 +0400 @@ -1,2 +1,2 @@ -SHA256 (fio-1.51.tar.bz2) = a4c62f5b0282e49011babb63611f44c336cef34909c47d4fedd9d98deb2a6e97 -SIZE (fio-1.51.tar.bz2) = 343045 +SHA256 (fio-1.53.tar.bz2) = 9107e753f88ff579ddb8b513a3b69508ce35efca4725174aa9eff48e2c864618 +SIZE (fio-1.53.tar.bz2) = 343623 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri May 6 19:30:24 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0BA7C106566C; Fri, 6 May 2011 19:30:24 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D7ED48FC0C; Fri, 6 May 2011 19:30:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p46JUNZd015163; Fri, 6 May 2011 19:30:23 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p46JUNE6015150; Fri, 6 May 2011 19:30:23 GMT (envelope-from edwin) Date: Fri, 6 May 2011 19:30:23 GMT Message-Id: <201105061930.p46JUNE6015150@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, brucec@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156851: [UPDATE] sysutils/fio: update to 1.53 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 May 2011 19:30:24 -0000 Synopsis: [UPDATE] sysutils/fio: update to 1.53 Responsible-Changed-From-To: freebsd-ports-bugs->brucec Responsible-Changed-By: edwin Responsible-Changed-When: Fri May 6 19:30:22 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156851 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri May 6 19:50:07 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AA21B106566B for ; Fri, 6 May 2011 19:50:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 660C78FC12 for ; Fri, 6 May 2011 19:50:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p46Jo7wf032821 for ; Fri, 6 May 2011 19:50:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p46Jo7uC032820; Fri, 6 May 2011 19:50:07 GMT (envelope-from gnats) Resent-Date: Fri, 6 May 2011 19:50:07 GMT Resent-Message-Id: <201105061950.p46Jo7uC032820@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Ruslan Mahmatkhanov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 19D911065750 for ; Fri, 6 May 2011 19:40:24 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 5E0AA8FC1C for ; Fri, 6 May 2011 19:40:19 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p46JeJB3067654 for ; Fri, 6 May 2011 19:40:19 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p46JeIl1067651; Fri, 6 May 2011 19:40:18 GMT (envelope-from nobody) Message-Id: <201105061940.p46JeIl1067651@red.freebsd.org> Date: Fri, 6 May 2011 19:40:18 GMT From: Ruslan Mahmatkhanov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156852: [MAINTAINER] devel/rubygem-tilt: update to 1.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 May 2011 19:50:07 -0000 >Number: 156852 >Category: ports >Synopsis: [MAINTAINER] devel/rubygem-tilt: update to 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: Fri May 06 19:50:07 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Ruslan Mahmatkhanov >Release: 9.0-CURRENT >Organization: >Environment: 9.0-CURRENT i386 >Description: - update to 1.3 >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruNa rubygem-tilt.orig/Makefile rubygem-tilt/Makefile --- rubygem-tilt.orig/Makefile 2011-02-13 06:27:00.000000000 +0300 +++ rubygem-tilt/Makefile 2011-05-06 23:30:50.000000000 +0400 @@ -5,7 +5,7 @@ # $FreeBSD: ports/devel/rubygem-tilt/Makefile,v 1.2 2011/02/13 03:27:00 miwi Exp $ PORTNAME= tilt -PORTVERSION= 1.2.2 +PORTVERSION= 1.3 CATEGORIES= devel rubygems MASTER_SITES= RG diff -ruNa rubygem-tilt.orig/distinfo rubygem-tilt/distinfo --- rubygem-tilt.orig/distinfo 2011-02-10 19:31:16.000000000 +0300 +++ rubygem-tilt/distinfo 2011-05-06 23:30:55.000000000 +0400 @@ -1,2 +1,2 @@ -SHA256 (rubygem/tilt-1.2.2.gem) = 3eb7036985b2a1ee9b27401cbe3b3723e48d092563f212dcd712d4b8e2198eac -SIZE (rubygem/tilt-1.2.2.gem) = 28672 +SHA256 (rubygem/tilt-1.3.gem) = 66dfd57201144213c2bcfeaacc5e3dba1f3e2d04da66a19d256d1711d0f0a1d1 +SIZE (rubygem/tilt-1.3.gem) = 34304 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri May 6 19:50:17 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8A5B31065673; Fri, 6 May 2011 19:50:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 621768FC15; Fri, 6 May 2011 19:50:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p46JoHQF033524; Fri, 6 May 2011 19:50:17 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p46JoHKf033518; Fri, 6 May 2011 19:50:17 GMT (envelope-from edwin) Date: Fri, 6 May 2011 19:50:17 GMT Message-Id: <201105061950.p46JoHKf033518@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156852: [MAINTAINER] devel/rubygem-tilt: update to 1.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 May 2011 19:50:17 -0000 Synopsis: [MAINTAINER] devel/rubygem-tilt: update to 1.3 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Fri May 6 19:50:16 UTC 2011 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156852 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri May 6 20:50:13 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EA39A1065680 for ; Fri, 6 May 2011 20:50:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id AC4248FC14 for ; Fri, 6 May 2011 20:50:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p46KoDki088242 for ; Fri, 6 May 2011 20:50:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p46KoDIh088241; Fri, 6 May 2011 20:50:13 GMT (envelope-from gnats) Resent-Date: Fri, 6 May 2011 20:50:13 GMT Resent-Message-Id: <201105062050.p46KoDIh088241@freefall.freebsd.org> 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 Rees Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CF3F2106566C for ; Fri, 6 May 2011 20:44:37 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id BDDE78FC15 for ; Fri, 6 May 2011 20:44:37 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p46KibIY031659 for ; Fri, 6 May 2011 20:44:37 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p46KibYL031658; Fri, 6 May 2011 20:44:37 GMT (envelope-from nobody) Message-Id: <201105062044.p46KibYL031658@red.freebsd.org> Date: Fri, 6 May 2011 20:44:37 GMT From: Chris Rees To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156853: Update docs: jail(8) security issues with world-readable jail root X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 May 2011 20:50:14 -0000 >Number: 156853 >Category: ports >Synopsis: Update docs: jail(8) security issues with world-readable jail root >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Fri May 06 20:50:13 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Chris Rees >Release: >Organization: >Environment: >Description: I brought this problem up on freebsd-security two years ago [1], and promptly forgot about it, but then another person [2] has brought it up again... Jails have a problem in that if the jail directory is world-readable, an attacker with root access to the jail can create a setuid binary for their own use in the host environment (if they also have this access), thus breaking root in the host. [1] http://freebsd.1045724.n5.nabble.com/Thoughts-on-jail-privilege-FAQ-submission-td4219099.html [2] http://lists.freebsd.org/pipermail/freebsd-security/2011-May/005886.html >How-To-Repeat: Follow instructions in the Handbook or jail(8) manpage, create a setuid binary inside the jail as root, and run it as unprivileged user in the host. >Fix: No fix, but precautions can be taken; this exploit is impossible if the jail's files are not world-readable. Docs patches for the Handbook [3] and for the jail(8) manpage [4] are provided. - Advise 0700 permissions for jail root directory to stop various exploits Patch submitted by: Chris Rees (utisoft@gmail.com) Discovered by: Chris Rees (utisoft@gmail.com) and Pétur Ingi Egilsson (petur@petur.eu) [3] http://www.bayofrum.net/~crees/patches/jail-secure-handbook.diff [4] http://www.bayofrum.net/~crees/patches/jail-secure-manpage.diff >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri May 6 21:46:09 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B01A8106564A; Fri, 6 May 2011 21:46:09 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 84C308FC0A; Fri, 6 May 2011 21:46:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p46Lk9sx041478; Fri, 6 May 2011 21:46:09 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p46Lk9xo041474; Fri, 6 May 2011 21:46:09 GMT (envelope-from linimon) Date: Fri, 6 May 2011 21:46:09 GMT Message-Id: <201105062146.p46Lk9xo041474@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-doc@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: docs/156853: [patch] Update docs: jail(8) security issues with world-readable jail root X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 May 2011 21:46:09 -0000 Old Synopsis: Update docs: jail(8) security issues with world-readable jail root New Synopsis: [patch] Update docs: jail(8) security issues with world-readable jail root Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-doc Responsible-Changed-By: linimon Responsible-Changed-When: Fri May 6 21:45:29 UTC 2011 Responsible-Changed-Why: reclassify http://www.freebsd.org/cgi/query-pr.cgi?pr=156853 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat May 7 00:40:13 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1CB1B106566C for ; Sat, 7 May 2011 00:40:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0C3FA8FC1A for ; Sat, 7 May 2011 00:40:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p470eCWP095448 for ; Sat, 7 May 2011 00:40:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p470eCrd095447; Sat, 7 May 2011 00:40:12 GMT (envelope-from gnats) Date: Sat, 7 May 2011 00:40:12 GMT Message-Id: <201105070040.p470eCrd095447@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Mark Linimon Cc: Subject: Re: ports/156747: multimedia/mplayer: fix 24-bits OSS + some improvements X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Mark Linimon List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 May 2011 00:40:13 -0000 The following reply was made to PR ports/156747; it has been noted by GNATS. From: Mark Linimon To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/156747: multimedia/mplayer: fix 24-bits OSS + some improvements Date: Fri, 6 May 2011 19:31:36 -0500 ----- Forwarded message from Zhihao Yuan ----- Date: Fri, 6 May 2011 18:39:53 -0500 From: Zhihao Yuan To: FreeBSD Ports Subject: ports/156747: multimedia/mplayer: fix 24-bits OSS + some improvements My final patches applies to mplayer and mencoder. After some discussion, I think they are stable enough. I hope someone can take this PR soon (before next upstream update, at least). Thanks so much. http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/156747 -- Zhihao Yuan The best way to predict the future is to invent it. _______________________________________________ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" ----- End forwarded message ----- From owner-freebsd-ports-bugs@FreeBSD.ORG Sat May 7 01:20:09 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D8ADB1065676 for ; Sat, 7 May 2011 01:20:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B276C8FC13 for ; Sat, 7 May 2011 01:20:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p471K96c031108 for ; Sat, 7 May 2011 01:20:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p471K94e031107; Sat, 7 May 2011 01:20:09 GMT (envelope-from gnats) Resent-Date: Sat, 7 May 2011 01:20:09 GMT Resent-Message-Id: <201105070120.p471K94e031107@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Zhihao Yuan Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 41A9B106566C for ; Sat, 7 May 2011 01:15:14 +0000 (UTC) (envelope-from lichray@gmail.com) Received: from mail-iw0-f182.google.com (mail-iw0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id 09AC08FC1B for ; Sat, 7 May 2011 01:15:13 +0000 (UTC) Received: by iwn33 with SMTP id 33so4333483iwn.13 for ; Fri, 06 May 2011 18:15:13 -0700 (PDT) Received: by 10.43.45.8 with SMTP id ui8mr1705858icb.197.1304730912219; Fri, 06 May 2011 18:15:12 -0700 (PDT) Received: from compaq.yuetime (c-98-228-191-105.hsd1.il.comcast.net [98.228.191.105]) by mx.google.com with ESMTPS id wu17sm1412657icb.23.2011.05.06.18.15.09 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 06 May 2011 18:15:11 -0700 (PDT) Received: by compaq.yuetime (sSMTP sendmail emulation); Fri, 06 May 2011 20:15:04 -0500 Message-Id: <4dc49d1f.113d2b0a.183d.608d@mx.google.com> Date: Fri, 06 May 2011 20:15:04 -0500 From: Zhihao Yuan To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/156854: www/neon29: updates to 0.29.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Zhihao Yuan List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 May 2011 01:20:10 -0000 >Number: 156854 >Category: ports >Synopsis: www/neon29: updates to 0.29.6 >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: Sat May 07 01:20:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Zhihao Yuan >Release: FreeBSD 8.2-STABLE amd64 >Organization: Northern Illinois University >Environment: System: FreeBSD compaq.yuetime 8.2-STABLE FreeBSD 8.2-STABLE #0: Mon Mar 14 02:51:28 CDT 2011 root@compaq.yuetime:/usr/obj/usr/src/sys/HOUKAGO amd64 >Description: This is a bug-fix release. I have checked the pkg-plist, nothing changed. If you want to take this PR, please take a look at ports/156849 also, and bump devel/subversion's revision. >How-To-Repeat: >Fix: --- neon29-0.29.6.patch begins here --- diff -ruN --exclude=CVS /usr/ports/www/neon29.orig/Makefile /usr/ports/www/neon29/Makefile --- /usr/ports/www/neon29.orig/Makefile 2010-12-04 01:33:58.000000000 -0600 +++ /usr/ports/www/neon29/Makefile 2011-05-06 18:48:52.491187874 -0500 @@ -6,7 +6,7 @@ # PORTNAME= neon29 -PORTVERSION= 0.29.5 +PORTVERSION= 0.29.6 CATEGORIES= www MASTER_SITES= http://www.webdav.org/neon/ DISTNAME= neon-${PORTVERSION} diff -ruN --exclude=CVS /usr/ports/www/neon29.orig/distinfo /usr/ports/www/neon29/distinfo --- /usr/ports/www/neon29.orig/distinfo 2010-11-24 08:27:09.000000000 -0600 +++ /usr/ports/www/neon29/distinfo 2011-05-06 18:49:11.979263307 -0500 @@ -1,2 +1,2 @@ -SHA256 (neon-0.29.5.tar.gz) = dea3c52b9f3f915651c6279c76758acf7c427727e8b9b0130f8b138f24012290 -SIZE (neon-0.29.5.tar.gz) = 884484 +SHA256 (neon-0.29.6.tar.gz) = 9c640b728d6dc80ef1e48f83181166ab6bc95309cece5537e01ffdd01b96eb43 +SIZE (neon-0.29.6.tar.gz) = 882267 --- neon29-0.29.6.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat May 7 01:20:20 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B07C1106566C; Sat, 7 May 2011 01:20:20 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 889FD8FC19; Sat, 7 May 2011 01:20:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p471KKoX031878; Sat, 7 May 2011 01:20:20 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p471KKUA031869; Sat, 7 May 2011 01:20:20 GMT (envelope-from edwin) Date: Sat, 7 May 2011 01:20:20 GMT Message-Id: <201105070120.p471KKUA031869@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, lev@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156854: www/neon29: updates to 0.29.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 May 2011 01:20:20 -0000 Synopsis: www/neon29: updates to 0.29.6 Responsible-Changed-From-To: freebsd-ports-bugs->lev Responsible-Changed-By: edwin Responsible-Changed-When: Sat May 7 01:20:20 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156854 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat May 7 05:00:17 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E8B5C106564A for ; Sat, 7 May 2011 05:00:17 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B44F88FC0A for ; Sat, 7 May 2011 05:00:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p4750HT7028913 for ; Sat, 7 May 2011 05:00:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p4750HhX028912; Sat, 7 May 2011 05:00:17 GMT (envelope-from gnats) Resent-Date: Sat, 7 May 2011 05:00:17 GMT Resent-Message-Id: <201105070500.p4750HhX028912@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Kuan-Chung Chiu Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 38E2B1065672 for ; Sat, 7 May 2011 04:52:25 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 28F0F8FC14 for ; Sat, 7 May 2011 04:52:25 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p474qOL1016828 for ; Sat, 7 May 2011 04:52:24 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p474qOA2016827; Sat, 7 May 2011 04:52:24 GMT (envelope-from nobody) Message-Id: <201105070452.p474qOA2016827@red.freebsd.org> Date: Sat, 7 May 2011 04:52:24 GMT From: Kuan-Chung Chiu To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156855: [maintainer] textproc/scim-kmfl-khmer -> textproc/kmfl-khmer X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 May 2011 05:00:18 -0000 >Number: 156855 >Category: ports >Synopsis: [maintainer] textproc/scim-kmfl-khmer -> textproc/kmfl-khmer >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 May 07 05:00:17 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Kuan-Chung Chiu >Release: 9-CURRENT >Organization: N/A >Environment: FreeBSD Elizabeth.twbbs.org 9.0-CURRENT FreeBSD 9.0-CURRENT #0 r220689M: Sat Apr 16 19:48:29 CST 2011 root@Elizabeth.twbbs.org:/usr/obj/usr/src/sys/ELIZABETH amd64 >Description: This change depends on these prs: http://www.freebsd.org/cgi/query-pr.cgi?pr=156694 http://www.freebsd.org/cgi/query-pr.cgi?pr=156695 First it needs to repocopy textproc/scim-kmfl-khmer -> textproc/kmfl-khmer the attached patch is against textproc/kmfl-khmer >How-To-Repeat: >Fix: Patch attached with submission follows: diff --git a/textproc/kmfl-khmer/Makefile b/textproc/kmfl-khmer/Makefile index 8538b07..007ab70 100644 --- a/textproc/kmfl-khmer/Makefile +++ b/textproc/kmfl-khmer/Makefile @@ -4,35 +4,32 @@ # # $FreeBSD: ports/textproc/scim-kmfl-khmer/Makefile,v 1.1 2010/08/02 18:38:06 makc Exp $ -PORTNAME= scim +PORTNAME= khmer PORTVERSION= 1.0 CATEGORIES= textproc -MASTER_SITES= http://download.github.com/ \ - http://security-hole.info/distfile/ -PKGNAMESUFFIX= -kmfl-khmer -DISTNAME= buganini-kmfl-khmer-1.0-0-ga20cc89 +MASTER_SITES= https://github.com/buganini/kmfl-${PORTNAME}/tarball/${PORTVERSION}/ +PKGNAMEPREFIX= kmfl- +DISTNAME= buganini-${PORTNAME}-${PORTVERSION}-0-g${GITVERSION} MAINTAINER= buganini@gmail.com COMMENT= KMFL SCIM IMEngine keyboard for Khmer language -RUN_DEPENDS= kmflcomp:${PORTSDIR}/textproc/kmflcomp \ - ${LOCALBASE}/lib/scim-1.0/1.4.0/IMEngine/kmfl.so:${PORTSDIR}/textproc/scim-kmfl-imengine +RUN_DEPENDS= kmflcomp:${PORTSDIR}/textproc/kmflcomp -WRKSRC= ${WRKDIR}/buganini-kmfl-khmer-a20cc89/kmfl/ +GITVERSION= a20cc89 +FETCH_ARGS= -pRr +WRKSRC= ${WRKDIR}/buganini-kmfl-${PORTNAME}-${GITVERSION}/kmfl NO_BUILD= yes -PLIST_FILES= ${DATADIR_REL}/kmfl/khmer.kmn \ - ${DATADIR_REL}/kmfl/icons/khmer.bmp -PLIST_DIRS= ${DATADIR_REL}/kmfl/icons \ - ${DATADIR_REL}/kmfl \ - ${DATADIR_REL} +KMFL_DIR= share/kmfl +KMFL_ICONS_DIR= share/kmfl/icons + +PLIST_FILES= ${KMFL_DIR}/khmer.kmn \ + ${KMFL_ICONS_DIR}/khmer.bmp do-install: ${MKDIR} ${DATADIR}/kmfl/icons - ${INSTALL_DATA} ${WRKSRC}/*.kmn ${DATADIR}/kmfl - ${INSTALL_DATA} ${WRKSRC}/*.bmp ${DATADIR}/kmfl/icons - -post-install: - @${CAT} ${PKGMESSAGE} + ${INSTALL_DATA} ${WRKSRC}/*.kmn ${LOCALBASE}/${KMFL_DIR} + ${INSTALL_DATA} ${WRKSRC}/*.bmp ${LOCALBASE}/${KMFL_ICONS_DIR} .include diff --git a/textproc/kmfl-khmer/distinfo b/textproc/kmfl-khmer/distinfo index 33c33de..3c9e6f5 100644 --- a/textproc/kmfl-khmer/distinfo +++ b/textproc/kmfl-khmer/distinfo @@ -1,3 +1,2 @@ -MD5 (buganini-kmfl-khmer-1.0-0-ga20cc89.tar.gz) = cbd7c98806ceec67b6b1818633bfcf68 -SHA256 (buganini-kmfl-khmer-1.0-0-ga20cc89.tar.gz) = 90d59cbf8969fa768946d830870e8d06643c968bf98f9353d8fde579733a4020 -SIZE (buganini-kmfl-khmer-1.0-0-ga20cc89.tar.gz) = 2895 +SHA256 (buganini-khmer-1.0-0-ga20cc89.tar.gz) = 90d59cbf8969fa768946d830870e8d06643c968bf98f9353d8fde579733a4020 +SIZE (buganini-khmer-1.0-0-ga20cc89.tar.gz) = 2895 diff --git a/textproc/kmfl-khmer/pkg-message b/textproc/kmfl-khmer/pkg-message deleted file mode 100644 index 4b9a9d8..0000000 --- a/textproc/kmfl-khmer/pkg-message +++ /dev/null @@ -1,5 +0,0 @@ --------------------------------------------------------- - You should now have the new keyboard in the section" - \"Others\" in your SCIM menu. If you don't see it," - restart X." --------------------------------------------------------- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat May 7 05:30:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 437531065670 for ; Sat, 7 May 2011 05:30:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1FA398FC13 for ; Sat, 7 May 2011 05:30:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p475U9Jd060765 for ; Sat, 7 May 2011 05:30:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p475U9P3060760; Sat, 7 May 2011 05:30:09 GMT (envelope-from gnats) Resent-Date: Sat, 7 May 2011 05:30:09 GMT Resent-Message-Id: <201105070530.p475U9P3060760@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Hasan Alp İNAN" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A642B1065672 for ; Sat, 7 May 2011 05:21:44 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 958548FC12 for ; Sat, 7 May 2011 05:21:44 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p475Lip4043451 for ; Sat, 7 May 2011 05:21:44 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p475Ligt043450; Sat, 7 May 2011 05:21:44 GMT (envelope-from nobody) Message-Id: <201105070521.p475Ligt043450@red.freebsd.org> Date: Sat, 7 May 2011 05:21:44 GMT From: "Hasan Alp İNAN" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156856: Gnome2 dconf compiling error X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 May 2011 05:30:10 -0000 >Number: 156856 >Category: ports >Synopsis: Gnome2 dconf compiling error >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat May 07 05:30:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Hasan Alp İNAN >Release: FreeBSD 8.2 Release (with latest updates) >Organization: >Environment: FreeBSD beastie.seyhan.bel.tr 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Thu Feb 17 02:41:51 UTC 2011 root@mason.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: 1.I did a new installation. Update system with freebsd-update. 2.I did install bash and xorg packages. 3.Start gnome2 installation. (cd /usr/ports/x11/gnome2 && make install clean) make.conf file: PYTHON_VERSION=python2.7 PYTHON_DEFAULT_VERSION=python2.7 # added by use.perl 2011-05-06 11:06:41 PERL_VERSION=5.12.3 After giving the command I get the following error output when installation of dconf beastie# make install clean ===> Vulnerability check disabled, database not found ===> License check disabled, port has not defined LICENSE ===> Extracting for dconf-0.5.1_3 => SHA256 Checksum OK for gnome3/dconf-0.5.1.tar.bz2. ===> Patching for dconf-0.5.1_3 ===> Applying FreeBSD patches for dconf-0.5.1_3 ===> dconf-0.5.1_3 depends on executable: g-ir-scanner - found ===> dconf-0.5.1_3 depends on executable: valac - found ===> dconf-0.5.1_3 depends on executable: gmake - found ===> dconf-0.5.1_3 depends on file: /usr/local/bin/intltool-extract - found ===> dconf-0.5.1_3 depends on executable: pkg-config - found ===> dconf-0.5.1_3 depends on shared library: gee.2 - found ===> dconf-0.5.1_3 depends on shared library: atk-1.0.0 - found ===> dconf-0.5.1_3 depends on shared library: glib-2.0.0 - found ===> dconf-0.5.1_3 depends on shared library: gtk-x11-2.0.0 - found ===> dconf-0.5.1_3 depends on shared library: pango-1.0.0 - found ===> Configuring for dconf-0.5.1_3 checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking for a thread-safe mkdir -p... aux/install-sh -c -d checking for gawk... no checking for mawk... no checking for nawk... nawk checking whether gmake sets $(MAKE)... yes checking for gcc... cc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether cc accepts -g... yes checking for cc option to accept ISO C89... none needed checking for style of include used by gmake... GNU checking dependency style of cc... gcc3 checking for valac... /usr/local/bin/valac checking /usr/local/bin/valac is at least version 0.9.5... yes checking for pkg-config... /usr/local/bin/pkg-config checking pkg-config is at least version 0.9.0... yes checking for gobject-introspection... yes checking for gtkdoc-check... no checking for gtkdoc-rebase... no checking for gtkdoc-mkpdf... no checking whether to build gtk-doc documentation... no checking for gio... yes checking for gtk... yes checking for libxml... yes checking for gio-querymodules... /usr/local/bin/gio-querymodules configure: creating ./config.status config.status: creating common/Makefile config.status: creating gvdb/Makefile config.status: creating engine/Makefile config.status: creating gsettings/Makefile config.status: creating client/dconf.pc config.status: creating client/Makefile config.status: creating service/Makefile config.status: creating bin/Makefile config.status: creating editor/Makefile config.status: creating tests/Makefile config.status: creating docs/Makefile config.status: creating Makefile config.status: executing depfiles commands ===> Building for dconf-0.5.1_3 gmake -C /usr/ports/devel/dconf/work/dconf-0.5.1/client dconf-client.c libdconf.so.0 gmake: `/usr/ports/devel/dconf/work/dconf-0.5.1/client' dizine giriliyor VALAC libdconf_so_0_0_0_vala.stamp CC dconf-shmdir.o CC dconf-paths.o CC dconf-engine.o CC gvdb-reader.o CC dconf-client.o dconf-client.c:14:22: warning: missing whitespace after the macro name dconf-client.c:15:17: warning: missing whitespace after the macro name dconf-client.c:16:17: warning: missing whitespace after the macro name dconf-client.c:16:1: warning: "DCONF_CL" redefined dconf-client.c:15:1: warning: this is the location of the previous definition dconf-client.c:17:20: warning: missing whitespace after the macro name dconf-client.c:18:20: warning: missing whitespace after the macro name dconf-client.c:18:1: warning: "DCONF_IS_CL" redefined dconf-client.c:17:1: warning: this is the location of the previous definition dconf-client.c:19:17: warning: missing whitespace after the macro name dconf-client.c:19:1: warning: "DCONF_CL" redefined dconf-client.c:16:1: warning: this is the location of the previous definition dconf-client.c:142:17: warning: missing whitespace after the macro name dconf-client.c:142:1: warning: "DCONF_CL" redefined dconf-client.c:19:1: warning: this is the location of the previous definition dconf-client.c:144: error: stray '\304' in program dconf-client.c:144: error: stray '\260' in program dconf-client.c:144: error: expected ',' or '}' before '(' token dconf-client.c:144: error: stray '\304' in program dconf-client.c:144: error: stray '\260' in program dconf-client.c:144: error: stray '\304' in program dconf-client.c:144: error: stray '\260' in program dconf-client.c:144: error: stray '\304' in program dconf-client.c:144: error: stray '\260' in program dconf-client.c: In function 'dconf_client_new': dconf-client.c:1322: error: stray '\304' in program dconf-client.c:1322: error: stray '\260' in program dconf-client.c:1322: warning: implicit declaration of function 'ENT' dconf-client.c:1322: error: stray '\304' in program dconf-client.c:1322: error: stray '\260' in program dconf-client.c:1322: error: expected ')' before 'ENT' dconf-client.c:1322: error: too few arguments to function 'dconf_client_construct' dconf-client.c: In function 'dconf_client_instance_init': dconf-client.c:1334: error: stray '\304' in program dconf-client.c:1334: error: stray '\260' in program dconf-client.c:1334: error: 'o' undeclared (first use in this function) dconf-client.c:1334: error: (Each undeclared identifier is reported only once dconf-client.c:1334: error: for each function it appears in.) dconf-client.c:1334: error: called object '0' is not a function dconf-client.c:1334: error: stray '\304' in program dconf-client.c:1334: error: stray '\260' in program dconf-client.c:1334: error: stray '\304' in program dconf-client.c:1334: error: stray '\260' in program dconf-client.c:1334: error: expected ')' before 'ENT' dconf-client.c:1334: error: stray '\304' in program dconf-client.c:1334: error: stray '\260' in program dconf-client.c:1334: error: expected ';' before 'ENT_GET_PRIVATE' dconf-client.c: In function 'dconf_client_finalize': dconf-client.c:1340: error: stray '\304' in program dconf-client.c:1340: error: stray '\260' in program dconf-client.c:1340: error: 'o' undeclared (first use in this function) dconf-client.c:1340: error: called object '0' is not a function dconf-client.c:1340: error: stray '\304' in program dconf-client.c:1340: error: stray '\260' in program dconf-client.c:1340: error: stray '\304' in program dconf-client.c:1340: error: stray '\260' in program dconf-client.c:1340: error: expected ')' before 'ENT' dconf-client.c:1340: error: stray '\304' in program dconf-client.c:1340: error: stray '\260' in program dconf-client.c:1340: error: expected ';' before 'ENT' gmake: *** [dconf-client.o] Hata 1 gmake: `/usr/ports/devel/dconf/work/dconf-0.5.1/client' dizininden çıkılıyor *** Error code 2 Stop in /usr/ports/devel/dconf. I try "make clean && make install clean" nothing change. Sorry about my English. >How-To-Repeat: Just try to install Gnome2 from ports or install only dconf package. >Fix: I dont know but when i check dconf version at dconf web page; new versions released. March 22, 2011: dconf 0.7.3 released February 5, 2011: dconf 0.7.2 released January 18, 2011: dconf 0.7.1 released January 18, 2011: dconf 0.7 released December 21, 2010: dconf 0.6 released August 4, 2010: dconf 0.5 released Source : http://live.gnome.org/dconf dconf-0.5.1 may be incompatible with new Python version 2.7. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat May 7 07:30:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 06394106566B for ; Sat, 7 May 2011 07:30:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BD3EB8FC14 for ; Sat, 7 May 2011 07:30:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p477U97G088455 for ; Sat, 7 May 2011 07:30:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p477U9X6088454; Sat, 7 May 2011 07:30:09 GMT (envelope-from gnats) Resent-Date: Sat, 7 May 2011 07:30:09 GMT Resent-Message-Id: <201105070730.p477U9X6088454@freefall.freebsd.org> 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 Birgmeier Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9E4111065672 for ; Sat, 7 May 2011 07:29:02 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 8DB448FC0C for ; Sat, 7 May 2011 07:29:02 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p477T1N9059195 for ; Sat, 7 May 2011 07:29:01 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p477T1TQ059194; Sat, 7 May 2011 07:29:01 GMT (envelope-from nobody) Message-Id: <201105070729.p477T1TQ059194@red.freebsd.org> Date: Sat, 7 May 2011 07:29:01 GMT From: Martin Birgmeier To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156857: split lang/gcc* ports in stable and devel versions X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 May 2011 07:30:10 -0000 >Number: 156857 >Category: ports >Synopsis: split lang/gcc* ports in stable and devel versions >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 May 07 07:30:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Martin Birgmeier >Release: 7.4, 8.2 >Organization: MBi at home >Environment: irrelevant >Description: I would appreciate splitting the lang/gcc* ports into stable and development versions. These ports are prerequisites for several other ports and therefore installed without explicit requirement by the user. The lang/gcc* port maintainer does a very laudable job of always (weekly!) updating these ports to their latest versions. Unfortunately, this leads to repeated rebuilds when running portupgrade or portmaster, which in turn requires a long build time without apparent benefits. >How-To-Repeat: Run portupgrade or portmaster every day, with one of the lang/gcc* ports installed. >Fix: The lang/gcc* ports should be split into stable and development versions. In my opinion it would be best to use the current names for the stable versions, and to add new -devel ports carrying the continuously updated versions, e.g. lang/gcc46 for the stable version lang/gcc46-devel for the continuously updated version The stable version would then only be upgraded when its micro version changes upstream (e.g., from 4.6.0 to 4.6.1), or when there is a critical fix to apply (thereby increasing the FreeBSD revision). >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat May 7 08:00:21 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 811861065686 for ; Sat, 7 May 2011 08:00:21 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E19BB8FC14 for ; Sat, 7 May 2011 08:00:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p4780JvZ021317 for ; Sat, 7 May 2011 08:00:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p4780JXn021316; Sat, 7 May 2011 08:00:19 GMT (envelope-from gnats) Resent-Date: Sat, 7 May 2011 08:00:19 GMT Resent-Message-Id: <201105070800.p4780JXn021316@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, David Naylor Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2C9C3106564A for ; Sat, 7 May 2011 07:58:47 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 1C2FB8FC13 for ; Sat, 7 May 2011 07:58:47 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p477wk2T086033 for ; Sat, 7 May 2011 07:58:46 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p477wkuK086032; Sat, 7 May 2011 07:58:46 GMT (envelope-from nobody) Message-Id: <201105070758.p477wkuK086032@red.freebsd.org> Date: Sat, 7 May 2011 07:58:46 GMT From: David Naylor To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156858: [patch] math/R-cran-car: update from 1.2 to 2.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 May 2011 08:00:21 -0000 >Number: 156858 >Category: ports >Synopsis: [patch] math/R-cran-car: update from 1.2 to 2.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: Sat May 07 08:00:19 UTC 2011 >Closed-Date: >Last-Modified: >Originator: David Naylor >Release: FreeBSD-current >Organization: Private >Environment: >Description: Update from 1.2 to 2.0 >How-To-Repeat: >Fix: Patch attached with submission follows: diff -u /usr/ports/math/R-cran-car/Makefile R-cran-car/Makefile --- /usr/ports/math/R-cran-car/Makefile 2011-03-01 04:17:30.000000000 +0200 +++ R-cran-car/Makefile 2011-05-07 09:52:31.000000000 +0200 @@ -6,11 +6,10 @@ # PORTNAME= car -PORTVERSION= 1.2.16 -PORTREVISION= 2 +PORTVERSION= 2.0 CATEGORIES= math PKGNAMEPREFIX= R-cran- -DISTNAME= ${PORTNAME}_1.2-16 +DISTNAME= ${PORTNAME}_${PORTVERSION}-10 MAINTAINER= naylor.b.david@gmail.com COMMENT= Companion to Applied Regression for R diff -u /usr/ports/math/R-cran-car/distinfo R-cran-car/distinfo --- /usr/ports/math/R-cran-car/distinfo 2011-03-21 03:13:23.000000000 +0200 +++ R-cran-car/distinfo 2011-05-07 09:54:26.000000000 +0200 @@ -1,2 +1,2 @@ -SHA256 (car_1.2-16.tar.gz) = 0b2d10b9b19ba4d1aa1147d9e0f6edb8431048ec78098b0b349c06124dd303ea -SIZE (car_1.2-16.tar.gz) = 222253 +SHA256 (car_2.0-10.tar.gz) = 70d53d25f6e242b0216791fba3fb12b860f1ef8455fb976ebd768d6b71a7a763 +SIZE (car_2.0-10.tar.gz) = 359388 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat May 7 09:40:08 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DB6771065672 for ; Sat, 7 May 2011 09:40:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B43CD8FC08 for ; Sat, 7 May 2011 09:40:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p479e8Wa015758 for ; Sat, 7 May 2011 09:40:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p479e8QO015757; Sat, 7 May 2011 09:40:08 GMT (envelope-from gnats) Resent-Date: Sat, 7 May 2011 09:40:08 GMT Resent-Message-Id: <201105070940.p479e8QO015757@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Zhihao Yuan Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0675D106564A for ; Sat, 7 May 2011 09:33:10 +0000 (UTC) (envelope-from lichray@gmail.com) Received: from mail-iy0-f182.google.com (mail-iy0-f182.google.com [209.85.210.182]) by mx1.freebsd.org (Postfix) with ESMTP id C18BE8FC15 for ; Sat, 7 May 2011 09:33:09 +0000 (UTC) Received: by iyj12 with SMTP id 12so4593340iyj.13 for ; Sat, 07 May 2011 02:33:09 -0700 (PDT) Received: by 10.231.82.195 with SMTP id c3mr2899029ibl.190.1304760789005; Sat, 07 May 2011 02:33:09 -0700 (PDT) Received: from compaq.yuetime (c-98-228-191-105.hsd1.il.comcast.net [98.228.191.105]) by mx.google.com with ESMTPS id 4sm1689655ibc.32.2011.05.07.02.33.05 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 07 May 2011 02:33:08 -0700 (PDT) Received: by compaq.yuetime (sSMTP sendmail emulation); Sat, 07 May 2011 04:33:01 -0500 Message-Id: <4dc511d4.c400e70a.6d45.6d8a@mx.google.com> Date: Sat, 07 May 2011 04:33:01 -0500 From: Zhihao Yuan To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/156859: graphics/mupdf: updates to 0.8.165 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Zhihao Yuan List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 May 2011 09:40:08 -0000 >Number: 156859 >Category: ports >Synopsis: graphics/mupdf: updates to 0.8.165 >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: Sat May 07 09:40:08 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Zhihao Yuan >Release: FreeBSD 8.2-STABLE amd64 >Organization: Northern Illinois University >Environment: System: FreeBSD compaq.yuetime 8.2-STABLE FreeBSD 8.2-STABLE #0: Mon Mar 14 02:51:28 CDT 2011 root@compaq.yuetime:/usr/obj/usr/src/sys/HOUKAGO amd64 >Description: mupdf has been updated to 0.8.165. In this version, 1. mupdf supports XPS documents; 2. A new tool, xpsdraw was included. Check http://mupdf.com/news for details. >How-To-Repeat: >Fix: 1. Renames the xpsdraw to mu_xpsdraw, like other mupdf command-line tools; 2. Synchronizes the post-patch with the new updtream Makefile; 3. portlint-friendly port (meaningless...). --- mupdf-0.8.165,1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/graphics/mupdf.orig/Makefile /usr/ports/graphics/mupdf/Makefile --- /usr/ports/graphics/mupdf.orig/Makefile 2011-04-08 10:00:07.000000000 -0500 +++ /usr/ports/graphics/mupdf/Makefile 2011-05-07 04:13:41.861070025 -0500 @@ -5,13 +5,12 @@ # $FreeBSD: ports/graphics/mupdf/Makefile,v 1.12 2011/04/08 15:00:07 bapt Exp $ PORTNAME= mupdf -PORTVERSION= 0.8.15 +PORTVERSION= 0.8.165 PORTEPOCH= 1 CATEGORIES= graphics MASTER_SITES= GOOGLE_CODE \ http://www.mupdf.com/download/ - -DISTFILES= ${PORTNAME}-${DISTVERSION}-source.tar.gz +EXTRACT_SUFX= -source.tar.gz MAINTAINER= lichray@gmail.com COMMENT= Lightweight PDF viewer and toolkit @@ -22,7 +21,7 @@ openjpeg.2:${PORTSDIR}/graphics/openjpeg USE_GMAKE= yes -MAKE_ARGS+= build=release prefix=${PREFIX} verbose=1 MANDIR=${PREFIX}/man/man1 APPS_MAN="${MAN1:S@^@apps/man/@}" LIBDIR=${PREFIX}/lib +MAKE_ARGS+= build=native prefix=${PREFIX} verbose=1 mandir=${PREFIX}/man USE_XORG= x11 xext USE_GNOME= pkgconfig MAN1= mupdf.1 mu_pdfclean.1 mu_pdfdraw.1 mu_pdfshow.1 @@ -33,17 +32,22 @@ LICENSE_FILE= ${WRKSRC}/COPYING post-patch: .SILENT - ${REINPLACE_CMD} -e 's#\(PDF.*_EXE=.*DIR./\)#\1mu_#g' \ + ${REINPLACE_CMD} \ + -e 's#\(PDF_APPS :=.*/\)#\1mu_#' \ + -e 's#\(XPS_APPS :=.*/\)#\1mu_#' \ + -e 's#\(MUPDF) :.*/\)#\1mu_#' \ + -e 's#\(OUT)/\).*: apps/#\1mu_%.o : apps/#' \ -e '/install:/,/^$$/ { /-d/d; }' \ - -e '/install.*bin$$/s/install/$$(BSD_INSTALL_PROGRAM)/' \ - -e '/install.*lib$$/s/install/$$(BSD_INSTALL_PROGRAM)/' \ - -e '/install.*include$$/s/install/$$(BSD_INSTALL_DATA)/' \ + -e '/install.*bindir)$$/s/install/$$(BSD_INSTALL_PROGRAM)/' \ + -e '/install.*libdir)$$/s/install/$$(BSD_INSTALL_LIB)/' \ + -e '/install.*incdir)$$/s/install/$$(BSD_INSTALL_DATA)/' \ + -e '/install.*man1$$/s/install/$$(BSD_INSTALL_MAN)/' \ ${WRKSRC}/Makefile ${REINPLACE_CMD} -e 's/-O2//' \ -e 's|/usr/local|${LOCALBASE}|' \ ${WRKSRC}/Makerules pre-install: .SILENT - find ${WRKSRC} -name pdf\*.1 -exec sh -c 'mv {} $$(dirname {})/mu_$$(basename {})' \; + ${FIND} ${WRKSRC} -name pdf\*.1 -exec ${SH} -c 'mv {} $$(dirname {})/mu_$$(basename {})' \; .include diff -ruN --exclude=CVS /usr/ports/graphics/mupdf.orig/distinfo /usr/ports/graphics/mupdf/distinfo --- /usr/ports/graphics/mupdf.orig/distinfo 2011-04-08 06:47:42.000000000 -0500 +++ /usr/ports/graphics/mupdf/distinfo 2011-05-07 02:51:26.615205402 -0500 @@ -1,2 +1,2 @@ -SHA256 (mupdf-0.8.15-source.tar.gz) = c9e7acc86c208a854e460cd07c1132039a95df0c21aa5052c4481fb540b0e03e -SIZE (mupdf-0.8.15-source.tar.gz) = 3837265 +SHA256 (mupdf-0.8.165-source.tar.gz) = cfa00870ef857def5de1a8d20e5a20b21d72a5d31ce4746953539d2299cbc59e +SIZE (mupdf-0.8.165-source.tar.gz) = 3775041 diff -ruN --exclude=CVS /usr/ports/graphics/mupdf.orig/pkg-plist /usr/ports/graphics/mupdf/pkg-plist --- /usr/ports/graphics/mupdf.orig/pkg-plist 2010-10-06 15:31:12.000000000 -0500 +++ /usr/ports/graphics/mupdf/pkg-plist 2011-05-07 04:02:09.194508328 -0500 @@ -4,6 +4,10 @@ bin/mu_pdfextract bin/mu_pdfinfo bin/mu_pdfshow +bin/mu_xpsdraw include/fitz.h include/mupdf.h +include/muxps.h +lib/libfitz.a lib/libmupdf.a +lib/libmuxps.a --- mupdf-0.8.165,1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat May 7 11:00:19 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 364BC106566C for ; Sat, 7 May 2011 11:00:19 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 03C378FC17 for ; Sat, 7 May 2011 11:00:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p47B0Iba087957 for ; Sat, 7 May 2011 11:00:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p47B0IAN087955; Sat, 7 May 2011 11:00:18 GMT (envelope-from gnats) Resent-Date: Sat, 7 May 2011 11:00:18 GMT Resent-Message-Id: <201105071100.p47B0IAN087955@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Andriy Gapon Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ACE90106564A for ; Sat, 7 May 2011 10:57:23 +0000 (UTC) (envelope-from avg@pautina.in.ua) Received: from smtp.pautina-nau.net (smtp.pautina-nau.net [194.0.89.243]) by mx1.freebsd.org (Postfix) with ESMTP id 4BB4B8FC0C for ; Sat, 7 May 2011 10:57:22 +0000 (UTC) Received: from [92.249.64.71] (helo=trant.local.) by smtp.pautina-nau.net with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.69) (envelope-from ) id 1QIfCL-0003fo-72; Sat, 07 May 2011 13:57:21 +0300 Received: from trant.local. (localhost [127.0.0.1]) by trant.local. (8.14.4/8.14.4) with ESMTP id p47AvKTe030903; Sat, 7 May 2011 13:57:20 +0300 (EEST) (envelope-from avg@trant.local) Received: (from root@localhost) by trant.local. (8.14.4/8.14.4/Submit) id p47AvJND030902; Sat, 7 May 2011 13:57:20 +0300 (EEST) (envelope-from avg) Message-Id: <201105071057.p47AvJND030902@trant.local.> Date: Sat, 7 May 2011 13:57:20 +0300 (EEST) From: Andriy Gapon To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: itetcu@FreeBSD.org Subject: ports/156860: [PATCH] net/skype: update to 2.2.0.25 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 May 2011 11:00:19 -0000 >Number: 156860 >Category: ports >Synopsis: [PATCH] net/skype: update to 2.2.0.25 >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 May 07 11:00:17 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Andriy Gapon >Release: FreeBSD 9.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD 9.0-CURRENT amd64 >Description: - Update to 2.2.0.25 Perhaps this should actually be an update for skype-devel, while skype could be updated to the latest 2.1.x? Port maintainer (itetcu@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- skype-2.2.0.25,1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/net/skype.orig/Makefile /usr/ports/net/skype/Makefile --- /usr/ports/net/skype.orig/Makefile 2011-03-17 13:08:42.000000000 +0200 +++ /usr/ports/net/skype/Makefile 2011-05-04 09:43:52.492117906 +0300 @@ -9,11 +9,11 @@ # PORTNAME= skype -PORTVERSION= 2.0.0.72 +PORTVERSION= 2.2.0.25 PORTEPOCH= 1 CATEGORIES= net MASTER_SITES= http://download.skype.com/linux/ -DISTNAME= skype_static-${DISTVERSION}-oss +DISTNAME= skype_static-${DISTVERSION} MAINTAINER= itetcu@FreeBSD.org COMMENT= P2P VoIP software @@ -25,16 +25,13 @@ USE_LINUX_APPS+=dri .endif -BROKEN= This is the last version of skype that works on FreeBSD, but the distfile is no longer available from the vendor, and won't be in the future. We are working on alternative solutions. -DEPRECATED= has been broken for a year -EXPIRATION_DATE=2011-04-17 - +NO_BUILD= yes USE_BZIP2= yes USE_LINUX= yes -USE_LINUX_APPS+=alsalib expat fontconfig libsigcpp20 +USE_LINUX_APPS+=alsalib alsa-plugins-oss expat fontconfig libasyncns libsigcpp20 RESTRICTED= Redistribution prohibited. -WRKSRC= ${WRKDIR}/${PORTNAME}_static-${DISTVERSION}-oss +WRKSRC= ${WRKDIR}/${PORTNAME}_static-${DISTVERSION} SKYPEDIR= share/skype PORTDOCS= LICENSE README PLIST_SUB+= SKYPEDIR=${SKYPEDIR} @@ -43,24 +41,6 @@ .include -pre-fetch: - @${ECHO_MSG} "" - @${ECHO_MSG} "* * * * * * * * * * * * * * * * * * * * * * * * * * * *" - @${ECHO_MSG} "ATTENTION!" - @${ECHO_MSG} "" - @${ECHO_MSG} "Skype requires at least linux_base-fc6" - @${ECHO_MSG} "which is NOT default at this time." - @${ECHO_MSG} "If you don't have that version or above installed," - @${ECHO_MSG} "hit 'control c' now!" - @${ECHO_MSG} "" - @${ECHO_MSG} "Please read ${PORTSDIR}/UPDATING 20080318" - @${ECHO_MSG} "for update and install instructions." - @${ECHO_MSG} "* * * * * * * * * * * * * * * * * * * * * * * * * * * *" - @${ECHO_MSG} "" - -do-build: - @${BRANDELF} -t Linux ${WRKSRC}/skype - do-install: @${INSTALL} -d ${PREFIX}/share/applications @${INSTALL_DATA} ${WRKSRC}/skype.desktop ${PREFIX}/share/applications/ diff -ruN --exclude=CVS /usr/ports/net/skype.orig/distinfo /usr/ports/net/skype/distinfo --- /usr/ports/net/skype.orig/distinfo 2011-03-20 14:52:58.000000000 +0200 +++ /usr/ports/net/skype/distinfo 2011-04-14 20:05:14.236704489 +0300 @@ -1,2 +1,2 @@ -SHA256 (skype_static-2.0.0.72-oss.tar.bz2) = dbb70b25ec16202b867d8336649c8314f9fd8d224cf78ee444f168c8a67e5b6c -SIZE (skype_static-2.0.0.72-oss.tar.bz2) = 21587040 +SHA256 (skype_static-2.2.0.25.tar.bz2) = 1025952445bd7ce97bafdb0f74decc66d217ff183ee06621eaa3a033cb910e44 +SIZE (skype_static-2.2.0.25.tar.bz2) = 30882910 diff -ruN --exclude=CVS /usr/ports/net/skype.orig/pkg-plist /usr/ports/net/skype/pkg-plist --- /usr/ports/net/skype.orig/pkg-plist 2008-11-26 05:21:47.000000000 +0200 +++ /usr/ports/net/skype/pkg-plist 2011-04-14 20:29:15.369705568 +0300 @@ -101,6 +101,8 @@ %%SKYPEDIR%%/lang/skype_th.ts %%SKYPEDIR%%/lang/skype_tr.qm %%SKYPEDIR%%/lang/skype_tr.ts +%%SKYPEDIR%%/lang/skype_uk.qm +%%SKYPEDIR%%/lang/skype_uk.ts %%SKYPEDIR%%/lang/skype_zh_s.qm %%SKYPEDIR%%/lang/skype_zh_s.ts %%SKYPEDIR%%/lang/skype_zh_t.qm --- skype-2.2.0.25,1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat May 7 11:00:35 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ED8AB106566C; Sat, 7 May 2011 11:00:35 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C5B828FC12; Sat, 7 May 2011 11:00:35 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p47B0ZsY089247; Sat, 7 May 2011 11:00:35 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p47B0Zfs089236; Sat, 7 May 2011 11:00:35 GMT (envelope-from edwin) Date: Sat, 7 May 2011 11:00:35 GMT Message-Id: <201105071100.p47B0Zfs089236@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, itetcu@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156860: [PATCH] net/skype: update to 2.2.0.25 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 May 2011 11:00:36 -0000 Synopsis: [PATCH] net/skype: update to 2.2.0.25 Responsible-Changed-From-To: freebsd-ports-bugs->itetcu Responsible-Changed-By: edwin Responsible-Changed-When: Sat May 7 11:00:34 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156860 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat May 7 11:28:50 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7A4D11065672; Sat, 7 May 2011 11:28:50 +0000 (UTC) (envelope-from bf@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 527F48FC18; Sat, 7 May 2011 11:28:50 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p47BSoSm014903; Sat, 7 May 2011 11:28:50 GMT (envelope-from bf@freefall.freebsd.org) Received: (from bf@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p47BSoMS014899; Sat, 7 May 2011 11:28:50 GMT (envelope-from bf) Date: Sat, 7 May 2011 11:28:50 GMT Message-Id: <201105071128.p47BSoMS014899@freefall.freebsd.org> To: bf@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, bf@FreeBSD.org From: bf@FreeBSD.org Cc: Subject: Re: ports/156858: [patch] math/R-cran-car: update from 1.2 to 2.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 May 2011 11:28:50 -0000 Synopsis: [patch] math/R-cran-car: update from 1.2 to 2.0 Responsible-Changed-From-To: freebsd-ports-bugs->bf Responsible-Changed-By: bf Responsible-Changed-When: Sat May 7 11:28:49 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=156858 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat May 7 11:30:12 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2CD9210656D8 for ; Sat, 7 May 2011 11:30:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 068888FC1D for ; Sat, 7 May 2011 11:30:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p47BUBdk014973 for ; Sat, 7 May 2011 11:30:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p47BUBvY014970; Sat, 7 May 2011 11:30:11 GMT (envelope-from gnats) Resent-Date: Sat, 7 May 2011 11:30:11 GMT Resent-Message-Id: <201105071130.p47BUBvY014970@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Kalten Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 971B7106566C for ; Sat, 7 May 2011 11:22:56 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 85CB98FC0C for ; Sat, 7 May 2011 11:22:56 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p47BMuuR077371 for ; Sat, 7 May 2011 11:22:56 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p47BMuDs077367; Sat, 7 May 2011 11:22:56 GMT (envelope-from nobody) Message-Id: <201105071122.p47BMuDs077367@red.freebsd.org> Date: Sat, 7 May 2011 11:22:56 GMT From: Kalten To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156861: audio/denemo: update from 0.8.14_1 to 0.9.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 May 2011 11:30:12 -0000 >Number: 156861 >Category: ports >Synopsis: audio/denemo: update from 0.8.14_1 to 0.9.0 >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 May 07 11:30:11 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Kalten >Release: 8.2-RELEASE >Organization: >Environment: FreeBSD freeHugin.Walhalla.Leben 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Thu Feb 17 02:41:51 UTC 2011 root@mason.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Update audio/denemo from 0.8.14_1 to 0.9.0 There was a PR:ports/155188 to update denemo to an older version (probably to be closed since it is being superseded by this one): I did it a little bit different (I hope, it is OK). At deinstall something is not OK? I don't understand it. I used portlint and genplist. But I am not good at porting :-( Greetings, Kalten >How-To-Repeat: >Fix: Patch attached with submission follows: --- Makefile.orig 2010-05-31 03:57:24.000000000 +0200 +++ Makefile 2011-05-07 13:10:41.000000000 +0200 @@ -6,10 +6,9 @@ # PORTNAME= denemo -PORTVERSION= 0.8.14 -PORTREVISION= 1 +PORTVERSION= 0.9.0 CATEGORIES= audio -MASTER_SITES= SAVANNAH +MASTER_SITES= GNU MAINTAINER= multimedia@FreeBSD.org COMMENT= Graphical score editor @@ -20,12 +19,13 @@ jack.0:${PORTSDIR}/audio/jack \ guile.20:${PORTSDIR}/lang/guile \ fftw3.5:${PORTSDIR}/math/fftw3 -RUN_DEPENDS= ${BUILD_DEPENDS} +RUN_DEPENDS= portaudio>=19:${PORTSDIR}/audio/portaudio2 + +OPTIONS+= LILYPOND "Install LilyPond (Printing)" off USE_GNOME= gtk20 gtksourceview2 librsvg2 libxml2 USE_BISON= build GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" CONFIGURE_ARGS= --enable-jack \ --sysconfdir=${PREFIX}/etc @@ -35,8 +35,13 @@ CPPFLAGS= -I${LOCALBASE}/include LDFLAGS= -L${LOCALBASE}/lib +.include .include +.if defined(WITH_LILYPOND) +RUN_DEPENDS+= lilypond:${PORTSDIR}/print/lilypond +.endif + .if defined(WITHOUT_NLS) CONFIGURE_ARGS+= --disable-nls PLIST_SUB+= NLS="@comment " @@ -49,7 +54,7 @@ post-patch: @${REINPLACE_CMD} -e 's|m4 doc actions|m4 actions| ; \ s|fonts examples templates|fonts templates|' ${WRKSRC}/Makefile.in - @${REINPLACE_CMD} -e '//d' ${WRKSRC}/src/lyparser.y + @${REINPLACE_CMD} -e '//d' ${WRKSRC}/ltmain.sh post-install: @${LN} -sf ${DOCSDIR}/manual ${DATADIR}/manual --- distinfo.orig 2011-04-09 00:28:59.000000000 +0200 +++ distinfo 2011-05-07 07:43:47.000000000 +0200 @@ -1,2 +1,2 @@ -SHA256 (denemo-0.8.14.tar.gz) = 09c02166c6e2c6cb7c538e68d9ab00fea422e499ec7cec8b92accef0c5423f2e -SIZE (denemo-0.8.14.tar.gz) = 10927764 +SHA256 (denemo-0.9.0.tar.gz) = d74a9e6e63b3d3c49e9a7d3bbf878a6656a1314b70f2802ddedbdb3c7eb522f8 +SIZE (denemo-0.9.0.tar.gz) = 11629119 --- pkg-plist.orig 2010-04-16 15:16:59.000000000 +0200 +++ pkg-plist 2011-05-07 12:05:55.000000000 +0200 @@ -1,15 +1,28 @@ bin/denemo -bin/smfsh %%ETCDIR%%/denemo.conf share/applications/denemo.desktop -%%DATADIR%%/actions/Default.cmdset -%%DATADIR%%/actions/Empty.cmdset +%%DATADIR%%/actions/AllCommands.commands +%%DATADIR%%/actions/AllCommands.shortcuts +%%DATADIR%%/actions/Arranger.commands +%%DATADIR%%/actions/Arranger.scm +%%DATADIR%%/actions/Arranger.shortcuts +%%DATADIR%%/actions/Classic.commands +%%DATADIR%%/actions/Classic.shortcuts +%%DATADIR%%/actions/Composer.commands +%%DATADIR%%/actions/Composer.shortcuts +%%DATADIR%%/actions/Default.commands +%%DATADIR%%/actions/Default.scm +%%DATADIR%%/actions/Default.shortcuts +%%DATADIR%%/actions/LilyPond.commands +%%DATADIR%%/actions/LilyPond.shortcuts %%DATADIR%%/actions/Makefile %%DATADIR%%/actions/Makefile.am %%DATADIR%%/actions/Makefile.in -%%DATADIR%%/actions/NumericKeypad.cmdset -%%DATADIR%%/actions/Windows.cmdset -%%DATADIR%%/actions/bitmaps/Anacrusis.png +%%DATADIR%%/actions/Simple.commands +%%DATADIR%%/actions/Simple.scm +%%DATADIR%%/actions/Simple.shortcuts +%%DATADIR%%/actions/abstractionmovement.scm +%%DATADIR%%/actions/ans.scm %%DATADIR%%/actions/bitmaps/Barline.png %%DATADIR%%/actions/bitmaps/BracketedWholeMeasureRest.png %%DATADIR%%/actions/bitmaps/CheckMark.png @@ -20,6 +33,7 @@ %%DATADIR%%/actions/bitmaps/EncircleChar %%DATADIR%%/actions/bitmaps/EndBeam.png %%DATADIR%%/actions/bitmaps/EndSecondTimeBar.png +%%DATADIR%%/actions/bitmaps/EndVolta.png %%DATADIR%%/actions/bitmaps/FirstTimeBar.png %%DATADIR%%/actions/bitmaps/Forte.png %%DATADIR%%/actions/bitmaps/Fortissimo.png @@ -39,8 +53,11 @@ %%DATADIR%%/actions/bitmaps/MezzoPiano.png %%DATADIR%%/actions/bitmaps/MultiMeasureRests.png %%DATADIR%%/actions/bitmaps/NoBeam.png +%%DATADIR%%/actions/bitmaps/OpenFirstTimeBar.png +%%DATADIR%%/actions/bitmaps/OpenSecondTimeBar.png %%DATADIR%%/actions/bitmaps/Pianissimo.png %%DATADIR%%/actions/bitmaps/Pianississimo.png +%%DATADIR%%/actions/bitmaps/Piano.png %%DATADIR%%/actions/bitmaps/RehearsalMark %%DATADIR%%/actions/bitmaps/RehearsalMark.png %%DATADIR%%/actions/bitmaps/RepeatClose.png @@ -55,46 +72,574 @@ %%DATADIR%%/actions/bitmaps/StartTupletNumbering.png %%DATADIR%%/actions/bitmaps/StartUpStems.png %%DATADIR%%/actions/bitmaps/StopTupletNumbering.png +%%DATADIR%%/actions/bitmaps/Upbeat.png %%DATADIR%%/actions/bitmaps/WholeMeasureRest.png %%DATADIR%%/actions/bitmaps/WholeMeasureRestLH.png %%DATADIR%%/actions/bitmaps/WholeMeasureRestRH.png +%%DATADIR%%/actions/bitmaps/accidentals.doublesharp.svg +%%DATADIR%%/actions/bitmaps/accidentals.flat.arrowboth.svg +%%DATADIR%%/actions/bitmaps/accidentals.flat.arrowdown.svg +%%DATADIR%%/actions/bitmaps/accidentals.flat.arrowup.svg +%%DATADIR%%/actions/bitmaps/accidentals.flat.slash.svg +%%DATADIR%%/actions/bitmaps/accidentals.flat.slashslash.svg +%%DATADIR%%/actions/bitmaps/accidentals.flat.svg +%%DATADIR%%/actions/bitmaps/accidentals.flatflat.slash.svg +%%DATADIR%%/actions/bitmaps/accidentals.flatflat.svg +%%DATADIR%%/actions/bitmaps/accidentals.hufnagelM1.svg +%%DATADIR%%/actions/bitmaps/accidentals.leftparen.svg +%%DATADIR%%/actions/bitmaps/accidentals.medicaeaM1.svg +%%DATADIR%%/actions/bitmaps/accidentals.mensural1.svg +%%DATADIR%%/actions/bitmaps/accidentals.mensuralM1.svg +%%DATADIR%%/actions/bitmaps/accidentals.mirroredflat.backslash.svg +%%DATADIR%%/actions/bitmaps/accidentals.mirroredflat.flat.svg +%%DATADIR%%/actions/bitmaps/accidentals.mirroredflat.svg +%%DATADIR%%/actions/bitmaps/accidentals.natural.arrowboth.svg +%%DATADIR%%/actions/bitmaps/accidentals.natural.arrowdown.svg +%%DATADIR%%/actions/bitmaps/accidentals.natural.arrowup.svg +%%DATADIR%%/actions/bitmaps/accidentals.natural.svg +%%DATADIR%%/actions/bitmaps/accidentals.rightparen.svg +%%DATADIR%%/actions/bitmaps/accidentals.sharp.arrowboth.svg +%%DATADIR%%/actions/bitmaps/accidentals.sharp.arrowdown.svg +%%DATADIR%%/actions/bitmaps/accidentals.sharp.arrowup.svg +%%DATADIR%%/actions/bitmaps/accidentals.sharp.slashslash.stem.svg +%%DATADIR%%/actions/bitmaps/accidentals.sharp.slashslash.stemstemstem.svg +%%DATADIR%%/actions/bitmaps/accidentals.sharp.slashslashslash.stem.svg +%%DATADIR%%/actions/bitmaps/accidentals.sharp.slashslashslash.stemstem.svg +%%DATADIR%%/actions/bitmaps/accidentals.sharp.svg +%%DATADIR%%/actions/bitmaps/accidentals.vaticana0.svg +%%DATADIR%%/actions/bitmaps/accidentals.vaticanaM1.svg +%%DATADIR%%/actions/bitmaps/accordion-accStdbase.svg +%%DATADIR%%/actions/bitmaps/accordion.bayanbass.svg +%%DATADIR%%/actions/bitmaps/accordion.discant.svg +%%DATADIR%%/actions/bitmaps/accordion.dot.svg +%%DATADIR%%/actions/bitmaps/accordion.freebass.svg +%%DATADIR%%/actions/bitmaps/accordion.oldEE.svg +%%DATADIR%%/actions/bitmaps/accordion.pull.svg +%%DATADIR%%/actions/bitmaps/accordion.push.svg +%%DATADIR%%/actions/bitmaps/accordion.stdbass.svg +%%DATADIR%%/actions/bitmaps/arrowheads.close.01.svg +%%DATADIR%%/actions/bitmaps/arrowheads.close.0M1.svg +%%DATADIR%%/actions/bitmaps/arrowheads.close.11.svg +%%DATADIR%%/actions/bitmaps/arrowheads.close.1M1.svg +%%DATADIR%%/actions/bitmaps/arrowheads.open.01.svg +%%DATADIR%%/actions/bitmaps/arrowheads.open.0M1.svg +%%DATADIR%%/actions/bitmaps/arrowheads.open.11.svg +%%DATADIR%%/actions/bitmaps/arrowheads.open.1M1.svg +%%DATADIR%%/actions/bitmaps/brackettips.down.svg +%%DATADIR%%/actions/bitmaps/brackettips.up.svg +%%DATADIR%%/actions/bitmaps/clefs-C.svg +%%DATADIR%%/actions/bitmaps/clefs-G.svg +%%DATADIR%%/actions/bitmaps/clefs.C.svg +%%DATADIR%%/actions/bitmaps/clefs.C_change.svg +%%DATADIR%%/actions/bitmaps/clefs.F.svg +%%DATADIR%%/actions/bitmaps/clefs.F_change.svg +%%DATADIR%%/actions/bitmaps/clefs.G.svg +%%DATADIR%%/actions/bitmaps/clefs.G_change.svg +%%DATADIR%%/actions/bitmaps/clefs.hufnagel.do.fa.svg +%%DATADIR%%/actions/bitmaps/clefs.hufnagel.do.fa_change.svg +%%DATADIR%%/actions/bitmaps/clefs.hufnagel.do.svg +%%DATADIR%%/actions/bitmaps/clefs.hufnagel.do_change.svg +%%DATADIR%%/actions/bitmaps/clefs.hufnagel.fa.svg +%%DATADIR%%/actions/bitmaps/clefs.hufnagel.fa_change.svg +%%DATADIR%%/actions/bitmaps/clefs.medicaea.do.svg +%%DATADIR%%/actions/bitmaps/clefs.medicaea.do_change.svg +%%DATADIR%%/actions/bitmaps/clefs.medicaea.fa.svg +%%DATADIR%%/actions/bitmaps/clefs.medicaea.fa_change.svg +%%DATADIR%%/actions/bitmaps/clefs.mensural.c.svg +%%DATADIR%%/actions/bitmaps/clefs.mensural.c_change.svg +%%DATADIR%%/actions/bitmaps/clefs.mensural.f.svg +%%DATADIR%%/actions/bitmaps/clefs.mensural.f_change.svg +%%DATADIR%%/actions/bitmaps/clefs.mensural.g.svg +%%DATADIR%%/actions/bitmaps/clefs.mensural.g_change.svg +%%DATADIR%%/actions/bitmaps/clefs.neomensural.c.svg +%%DATADIR%%/actions/bitmaps/clefs.neomensural.c_change.svg +%%DATADIR%%/actions/bitmaps/clefs.percussion.svg +%%DATADIR%%/actions/bitmaps/clefs.percussion_change.svg +%%DATADIR%%/actions/bitmaps/clefs.petrucci.c1.svg +%%DATADIR%%/actions/bitmaps/clefs.petrucci.c1_change.svg +%%DATADIR%%/actions/bitmaps/clefs.petrucci.c2.svg +%%DATADIR%%/actions/bitmaps/clefs.petrucci.c2_change.svg +%%DATADIR%%/actions/bitmaps/clefs.petrucci.c3.svg +%%DATADIR%%/actions/bitmaps/clefs.petrucci.c3_change.svg +%%DATADIR%%/actions/bitmaps/clefs.petrucci.c4.svg +%%DATADIR%%/actions/bitmaps/clefs.petrucci.c4_change.svg +%%DATADIR%%/actions/bitmaps/clefs.petrucci.c5.svg +%%DATADIR%%/actions/bitmaps/clefs.petrucci.c5_change.svg +%%DATADIR%%/actions/bitmaps/clefs.petrucci.f.svg +%%DATADIR%%/actions/bitmaps/clefs.petrucci.f_change.svg +%%DATADIR%%/actions/bitmaps/clefs.petrucci.g.svg +%%DATADIR%%/actions/bitmaps/clefs.petrucci.g_change.svg +%%DATADIR%%/actions/bitmaps/clefs.tab.svg +%%DATADIR%%/actions/bitmaps/clefs.tab_change.svg +%%DATADIR%%/actions/bitmaps/clefs.vaticana.do.svg +%%DATADIR%%/actions/bitmaps/clefs.vaticana.do_change.svg +%%DATADIR%%/actions/bitmaps/clefs.vaticana.fa.svg +%%DATADIR%%/actions/bitmaps/clefs.vaticana.fa_change.svg +%%DATADIR%%/actions/bitmaps/comma.svg +%%DATADIR%%/actions/bitmaps/custodes.hufnagel.d0.svg +%%DATADIR%%/actions/bitmaps/custodes.hufnagel.d1.svg +%%DATADIR%%/actions/bitmaps/custodes.hufnagel.d2.svg +%%DATADIR%%/actions/bitmaps/custodes.hufnagel.u0.svg +%%DATADIR%%/actions/bitmaps/custodes.hufnagel.u1.svg +%%DATADIR%%/actions/bitmaps/custodes.hufnagel.u2.svg +%%DATADIR%%/actions/bitmaps/custodes.medicaea.d0.svg +%%DATADIR%%/actions/bitmaps/custodes.medicaea.d1.svg +%%DATADIR%%/actions/bitmaps/custodes.medicaea.d2.svg +%%DATADIR%%/actions/bitmaps/custodes.medicaea.u0.svg +%%DATADIR%%/actions/bitmaps/custodes.medicaea.u1.svg +%%DATADIR%%/actions/bitmaps/custodes.medicaea.u2.svg +%%DATADIR%%/actions/bitmaps/custodes.mensural.d0.svg +%%DATADIR%%/actions/bitmaps/custodes.mensural.d1.svg +%%DATADIR%%/actions/bitmaps/custodes.mensural.d2.svg +%%DATADIR%%/actions/bitmaps/custodes.mensural.u0.svg +%%DATADIR%%/actions/bitmaps/custodes.mensural.u1.svg +%%DATADIR%%/actions/bitmaps/custodes.mensural.u2.svg +%%DATADIR%%/actions/bitmaps/custodes.vaticana.d0.svg +%%DATADIR%%/actions/bitmaps/custodes.vaticana.d1.svg +%%DATADIR%%/actions/bitmaps/custodes.vaticana.d2.svg +%%DATADIR%%/actions/bitmaps/custodes.vaticana.u0.svg +%%DATADIR%%/actions/bitmaps/custodes.vaticana.u1.svg +%%DATADIR%%/actions/bitmaps/custodes.vaticana.u2.svg +%%DATADIR%%/actions/bitmaps/dots.dot.svg +%%DATADIR%%/actions/bitmaps/dots.dotvaticana.svg +%%DATADIR%%/actions/bitmaps/eight.svg +%%DATADIR%%/actions/bitmaps/f.svg %%DATADIR%%/actions/bitmaps/ffff.png +%%DATADIR%%/actions/bitmaps/five.svg +%%DATADIR%%/actions/bitmaps/flags.d3.svg +%%DATADIR%%/actions/bitmaps/flags.d4.svg +%%DATADIR%%/actions/bitmaps/flags.d5.svg +%%DATADIR%%/actions/bitmaps/flags.d6.svg +%%DATADIR%%/actions/bitmaps/flags.d7.svg +%%DATADIR%%/actions/bitmaps/flags.dgrace.svg +%%DATADIR%%/actions/bitmaps/flags.mensurald03.svg +%%DATADIR%%/actions/bitmaps/flags.mensurald04.svg +%%DATADIR%%/actions/bitmaps/flags.mensurald05.svg +%%DATADIR%%/actions/bitmaps/flags.mensurald06.svg +%%DATADIR%%/actions/bitmaps/flags.mensurald13.svg +%%DATADIR%%/actions/bitmaps/flags.mensurald14.svg +%%DATADIR%%/actions/bitmaps/flags.mensurald15.svg +%%DATADIR%%/actions/bitmaps/flags.mensurald16.svg +%%DATADIR%%/actions/bitmaps/flags.mensurald23.svg +%%DATADIR%%/actions/bitmaps/flags.mensurald24.svg +%%DATADIR%%/actions/bitmaps/flags.mensurald25.svg +%%DATADIR%%/actions/bitmaps/flags.mensurald26.svg +%%DATADIR%%/actions/bitmaps/flags.mensuralu03.svg +%%DATADIR%%/actions/bitmaps/flags.mensuralu04.svg +%%DATADIR%%/actions/bitmaps/flags.mensuralu05.svg +%%DATADIR%%/actions/bitmaps/flags.mensuralu06.svg +%%DATADIR%%/actions/bitmaps/flags.mensuralu13.svg +%%DATADIR%%/actions/bitmaps/flags.mensuralu14.svg +%%DATADIR%%/actions/bitmaps/flags.mensuralu15.svg +%%DATADIR%%/actions/bitmaps/flags.mensuralu16.svg +%%DATADIR%%/actions/bitmaps/flags.mensuralu23.svg +%%DATADIR%%/actions/bitmaps/flags.mensuralu24.svg +%%DATADIR%%/actions/bitmaps/flags.mensuralu25.svg +%%DATADIR%%/actions/bitmaps/flags.mensuralu26.svg +%%DATADIR%%/actions/bitmaps/flags.u3.svg +%%DATADIR%%/actions/bitmaps/flags.u4.svg +%%DATADIR%%/actions/bitmaps/flags.u5.svg +%%DATADIR%%/actions/bitmaps/flags.u6.svg +%%DATADIR%%/actions/bitmaps/flags.u7.svg +%%DATADIR%%/actions/bitmaps/flags.ugrace.svg +%%DATADIR%%/actions/bitmaps/four.svg %%DATADIR%%/actions/bitmaps/fp.png +%%DATADIR%%/actions/bitmaps/glyphasn.svg +%%DATADIR%%/actions/bitmaps/glyphati.svg +%%DATADIR%%/actions/bitmaps/hyphen.svg +%%DATADIR%%/actions/bitmaps/m.svg +%%DATADIR%%/actions/bitmaps/mute.png +%%DATADIR%%/actions/bitmaps/nine.svg +%%DATADIR%%/actions/bitmaps/noteheads.d0doFunk.svg +%%DATADIR%%/actions/bitmaps/noteheads.d0fa.svg +%%DATADIR%%/actions/bitmaps/noteheads.d0faFunk.svg +%%DATADIR%%/actions/bitmaps/noteheads.d0faThin.svg +%%DATADIR%%/actions/bitmaps/noteheads.d0miFunk.svg +%%DATADIR%%/actions/bitmaps/noteheads.d0reFunk.svg +%%DATADIR%%/actions/bitmaps/noteheads.d0tiFunk.svg +%%DATADIR%%/actions/bitmaps/noteheads.d1do.svg +%%DATADIR%%/actions/bitmaps/noteheads.d1doFunk.svg +%%DATADIR%%/actions/bitmaps/noteheads.d1doThin.svg +%%DATADIR%%/actions/bitmaps/noteheads.d1doWalker.svg +%%DATADIR%%/actions/bitmaps/noteheads.d1fa.svg +%%DATADIR%%/actions/bitmaps/noteheads.d1faFunk.svg +%%DATADIR%%/actions/bitmaps/noteheads.d1faThin.svg +%%DATADIR%%/actions/bitmaps/noteheads.d1faWalker.svg +%%DATADIR%%/actions/bitmaps/noteheads.d1miFunk.svg +%%DATADIR%%/actions/bitmaps/noteheads.d1re.svg +%%DATADIR%%/actions/bitmaps/noteheads.d1reFunk.svg +%%DATADIR%%/actions/bitmaps/noteheads.d1reThin.svg +%%DATADIR%%/actions/bitmaps/noteheads.d1reWalker.svg +%%DATADIR%%/actions/bitmaps/noteheads.d1ti.svg +%%DATADIR%%/actions/bitmaps/noteheads.d1tiFunk.svg +%%DATADIR%%/actions/bitmaps/noteheads.d1tiThin.svg +%%DATADIR%%/actions/bitmaps/noteheads.d1tiWalker.svg +%%DATADIR%%/actions/bitmaps/noteheads.d1triangle.svg +%%DATADIR%%/actions/bitmaps/noteheads.d2do.svg +%%DATADIR%%/actions/bitmaps/noteheads.d2doFunk.svg +%%DATADIR%%/actions/bitmaps/noteheads.d2doThin.svg +%%DATADIR%%/actions/bitmaps/noteheads.d2doWalker.svg +%%DATADIR%%/actions/bitmaps/noteheads.d2fa.svg +%%DATADIR%%/actions/bitmaps/noteheads.d2faFunk.svg +%%DATADIR%%/actions/bitmaps/noteheads.d2faThin.svg +%%DATADIR%%/actions/bitmaps/noteheads.d2faWalker.svg +%%DATADIR%%/actions/bitmaps/noteheads.d2re.svg +%%DATADIR%%/actions/bitmaps/noteheads.d2reFunk.svg +%%DATADIR%%/actions/bitmaps/noteheads.d2reThin.svg +%%DATADIR%%/actions/bitmaps/noteheads.d2reWalker.svg +%%DATADIR%%/actions/bitmaps/noteheads.d2ti.svg +%%DATADIR%%/actions/bitmaps/noteheads.d2tiFunk.svg +%%DATADIR%%/actions/bitmaps/noteheads.d2tiThin.svg +%%DATADIR%%/actions/bitmaps/noteheads.d2tiWalker.svg +%%DATADIR%%/actions/bitmaps/noteheads.d2triangle.svg +%%DATADIR%%/actions/bitmaps/noteheads.dM2.svg +%%DATADIR%%/actions/bitmaps/noteheads.s-1.svg +%%DATADIR%%/actions/bitmaps/noteheads.s-2.svg +%%DATADIR%%/actions/bitmaps/noteheads.s0.svg +%%DATADIR%%/actions/bitmaps/noteheads.s0cross.svg +%%DATADIR%%/actions/bitmaps/noteheads.s0diamond.svg +%%DATADIR%%/actions/bitmaps/noteheads.s0do.svg +%%DATADIR%%/actions/bitmaps/noteheads.s0doThin.svg +%%DATADIR%%/actions/bitmaps/noteheads.s0doWalker.svg +%%DATADIR%%/actions/bitmaps/noteheads.s0faWalker.svg +%%DATADIR%%/actions/bitmaps/noteheads.s0harmonic.svg +%%DATADIR%%/actions/bitmaps/noteheads.s0la.svg +%%DATADIR%%/actions/bitmaps/noteheads.s0laFunk.svg +%%DATADIR%%/actions/bitmaps/noteheads.s0laThin.svg +%%DATADIR%%/actions/bitmaps/noteheads.s0laWalker.svg +%%DATADIR%%/actions/bitmaps/noteheads.s0mensural.svg +%%DATADIR%%/actions/bitmaps/noteheads.s0mi.svg +%%DATADIR%%/actions/bitmaps/noteheads.s0miMirror.svg +%%DATADIR%%/actions/bitmaps/noteheads.s0miThin.svg +%%DATADIR%%/actions/bitmaps/noteheads.s0miWalker.svg +%%DATADIR%%/actions/bitmaps/noteheads.s0neomensural.svg +%%DATADIR%%/actions/bitmaps/noteheads.s0petrucci.svg +%%DATADIR%%/actions/bitmaps/noteheads.s0re.svg +%%DATADIR%%/actions/bitmaps/noteheads.s0reThin.svg +%%DATADIR%%/actions/bitmaps/noteheads.s0reWalker.svg +%%DATADIR%%/actions/bitmaps/noteheads.s0slash.svg +%%DATADIR%%/actions/bitmaps/noteheads.s0sol.svg +%%DATADIR%%/actions/bitmaps/noteheads.s0solFunk.svg +%%DATADIR%%/actions/bitmaps/noteheads.s0ti.svg +%%DATADIR%%/actions/bitmaps/noteheads.s0tiThin.svg +%%DATADIR%%/actions/bitmaps/noteheads.s0tiWalker.svg +%%DATADIR%%/actions/bitmaps/noteheads.s0triangle.svg +%%DATADIR%%/actions/bitmaps/noteheads.s1.svg +%%DATADIR%%/actions/bitmaps/noteheads.s1cross.svg +%%DATADIR%%/actions/bitmaps/noteheads.s1diamond.svg +%%DATADIR%%/actions/bitmaps/noteheads.s1la.svg +%%DATADIR%%/actions/bitmaps/noteheads.s1laFunk.svg +%%DATADIR%%/actions/bitmaps/noteheads.s1laThin.svg +%%DATADIR%%/actions/bitmaps/noteheads.s1laWalker.svg +%%DATADIR%%/actions/bitmaps/noteheads.s1mensural.svg +%%DATADIR%%/actions/bitmaps/noteheads.s1mi.svg +%%DATADIR%%/actions/bitmaps/noteheads.s1miMirror.svg +%%DATADIR%%/actions/bitmaps/noteheads.s1miThin.svg +%%DATADIR%%/actions/bitmaps/noteheads.s1miWalker.svg +%%DATADIR%%/actions/bitmaps/noteheads.s1neomensural.svg +%%DATADIR%%/actions/bitmaps/noteheads.s1petrucci.svg +%%DATADIR%%/actions/bitmaps/noteheads.s1slash.svg +%%DATADIR%%/actions/bitmaps/noteheads.s1sol.svg +%%DATADIR%%/actions/bitmaps/noteheads.s1solFunk.svg +%%DATADIR%%/actions/bitmaps/noteheads.s2.svg +%%DATADIR%%/actions/bitmaps/noteheads.s2cross.svg +%%DATADIR%%/actions/bitmaps/noteheads.s2diamond.svg +%%DATADIR%%/actions/bitmaps/noteheads.s2harmonic.svg +%%DATADIR%%/actions/bitmaps/noteheads.s2la.svg +%%DATADIR%%/actions/bitmaps/noteheads.s2laFunk.svg +%%DATADIR%%/actions/bitmaps/noteheads.s2laThin.svg +%%DATADIR%%/actions/bitmaps/noteheads.s2laWalker.svg +%%DATADIR%%/actions/bitmaps/noteheads.s2mensural.svg +%%DATADIR%%/actions/bitmaps/noteheads.s2mi.svg +%%DATADIR%%/actions/bitmaps/noteheads.s2miFunk.svg +%%DATADIR%%/actions/bitmaps/noteheads.s2miMirror.svg +%%DATADIR%%/actions/bitmaps/noteheads.s2miThin.svg +%%DATADIR%%/actions/bitmaps/noteheads.s2miWalker.svg +%%DATADIR%%/actions/bitmaps/noteheads.s2neomensural.svg +%%DATADIR%%/actions/bitmaps/noteheads.s2petrucci.svg +%%DATADIR%%/actions/bitmaps/noteheads.s2slash.svg +%%DATADIR%%/actions/bitmaps/noteheads.s2sol.svg +%%DATADIR%%/actions/bitmaps/noteheads.s2solFunk.svg +%%DATADIR%%/actions/bitmaps/noteheads.s2xcircle.svg +%%DATADIR%%/actions/bitmaps/noteheads.sM1.svg +%%DATADIR%%/actions/bitmaps/noteheads.sM1double.svg +%%DATADIR%%/actions/bitmaps/noteheads.sM1mensural.svg +%%DATADIR%%/actions/bitmaps/noteheads.sM1neomensural.svg +%%DATADIR%%/actions/bitmaps/noteheads.sM2mensural.svg +%%DATADIR%%/actions/bitmaps/noteheads.sM2neomensural.svg +%%DATADIR%%/actions/bitmaps/noteheads.sM3mensural.svg +%%DATADIR%%/actions/bitmaps/noteheads.sM3neomensural.svg +%%DATADIR%%/actions/bitmaps/noteheads.shufnagel.lpes.svg +%%DATADIR%%/actions/bitmaps/noteheads.shufnagel.punctum.svg +%%DATADIR%%/actions/bitmaps/noteheads.shufnagel.virga.svg +%%DATADIR%%/actions/bitmaps/noteheads.slmensural.svg +%%DATADIR%%/actions/bitmaps/noteheads.slneomensural.svg +%%DATADIR%%/actions/bitmaps/noteheads.smedicaea.inclinatum.svg +%%DATADIR%%/actions/bitmaps/noteheads.smedicaea.punctum.svg +%%DATADIR%%/actions/bitmaps/noteheads.smedicaea.rvirga.svg +%%DATADIR%%/actions/bitmaps/noteheads.smedicaea.virga.svg +%%DATADIR%%/actions/bitmaps/noteheads.ssolesmes.auct.asc.svg +%%DATADIR%%/actions/bitmaps/noteheads.ssolesmes.auct.desc.svg +%%DATADIR%%/actions/bitmaps/noteheads.ssolesmes.incl.auctum.svg +%%DATADIR%%/actions/bitmaps/noteheads.ssolesmes.incl.parvum.svg +%%DATADIR%%/actions/bitmaps/noteheads.ssolesmes.oriscus.svg +%%DATADIR%%/actions/bitmaps/noteheads.ssolesmes.stropha.aucta.svg +%%DATADIR%%/actions/bitmaps/noteheads.ssolesmes.stropha.svg +%%DATADIR%%/actions/bitmaps/noteheads.svaticana.cephalicus.svg +%%DATADIR%%/actions/bitmaps/noteheads.svaticana.epiphonus.svg +%%DATADIR%%/actions/bitmaps/noteheads.svaticana.inclinatum.svg +%%DATADIR%%/actions/bitmaps/noteheads.svaticana.inner.cephalicus.svg +%%DATADIR%%/actions/bitmaps/noteheads.svaticana.linea.punctum.cavum.svg +%%DATADIR%%/actions/bitmaps/noteheads.svaticana.linea.punctum.svg +%%DATADIR%%/actions/bitmaps/noteheads.svaticana.lpes.svg +%%DATADIR%%/actions/bitmaps/noteheads.svaticana.plica.svg +%%DATADIR%%/actions/bitmaps/noteheads.svaticana.punctum.cavum.svg +%%DATADIR%%/actions/bitmaps/noteheads.svaticana.punctum.svg +%%DATADIR%%/actions/bitmaps/noteheads.svaticana.quilisma.svg +%%DATADIR%%/actions/bitmaps/noteheads.svaticana.reverse.plica.svg +%%DATADIR%%/actions/bitmaps/noteheads.svaticana.reverse.vplica.svg +%%DATADIR%%/actions/bitmaps/noteheads.svaticana.upes.svg +%%DATADIR%%/actions/bitmaps/noteheads.svaticana.vepiphonus.svg +%%DATADIR%%/actions/bitmaps/noteheads.svaticana.vlpes.svg +%%DATADIR%%/actions/bitmaps/noteheads.svaticana.vplica.svg +%%DATADIR%%/actions/bitmaps/noteheads.svaticana.vupes.svg +%%DATADIR%%/actions/bitmaps/noteheads.u0doFunk.svg +%%DATADIR%%/actions/bitmaps/noteheads.u0fa.svg +%%DATADIR%%/actions/bitmaps/noteheads.u0faFunk.svg +%%DATADIR%%/actions/bitmaps/noteheads.u0faThin.svg +%%DATADIR%%/actions/bitmaps/noteheads.u0miFunk.svg +%%DATADIR%%/actions/bitmaps/noteheads.u0reFunk.svg +%%DATADIR%%/actions/bitmaps/noteheads.u0tiFunk.svg +%%DATADIR%%/actions/bitmaps/noteheads.u1do.svg +%%DATADIR%%/actions/bitmaps/noteheads.u1doFunk.svg +%%DATADIR%%/actions/bitmaps/noteheads.u1doThin.svg +%%DATADIR%%/actions/bitmaps/noteheads.u1doWalker.svg +%%DATADIR%%/actions/bitmaps/noteheads.u1fa.svg +%%DATADIR%%/actions/bitmaps/noteheads.u1faFunk.svg +%%DATADIR%%/actions/bitmaps/noteheads.u1faThin.svg +%%DATADIR%%/actions/bitmaps/noteheads.u1faWalker.svg +%%DATADIR%%/actions/bitmaps/noteheads.u1miFunk.svg +%%DATADIR%%/actions/bitmaps/noteheads.u1re.svg +%%DATADIR%%/actions/bitmaps/noteheads.u1reFunk.svg +%%DATADIR%%/actions/bitmaps/noteheads.u1reThin.svg +%%DATADIR%%/actions/bitmaps/noteheads.u1reWalker.svg +%%DATADIR%%/actions/bitmaps/noteheads.u1ti.svg +%%DATADIR%%/actions/bitmaps/noteheads.u1tiFunk.svg +%%DATADIR%%/actions/bitmaps/noteheads.u1tiThin.svg +%%DATADIR%%/actions/bitmaps/noteheads.u1tiWalker.svg +%%DATADIR%%/actions/bitmaps/noteheads.u1triangle.svg +%%DATADIR%%/actions/bitmaps/noteheads.u2do.svg +%%DATADIR%%/actions/bitmaps/noteheads.u2doFunk.svg +%%DATADIR%%/actions/bitmaps/noteheads.u2doThin.svg +%%DATADIR%%/actions/bitmaps/noteheads.u2doWalker.svg +%%DATADIR%%/actions/bitmaps/noteheads.u2fa.svg +%%DATADIR%%/actions/bitmaps/noteheads.u2faFunk.svg +%%DATADIR%%/actions/bitmaps/noteheads.u2faThin.svg +%%DATADIR%%/actions/bitmaps/noteheads.u2faWalker.svg +%%DATADIR%%/actions/bitmaps/noteheads.u2re.svg +%%DATADIR%%/actions/bitmaps/noteheads.u2reFunk.svg +%%DATADIR%%/actions/bitmaps/noteheads.u2reThin.svg +%%DATADIR%%/actions/bitmaps/noteheads.u2reWalker.svg +%%DATADIR%%/actions/bitmaps/noteheads.u2ti.svg +%%DATADIR%%/actions/bitmaps/noteheads.u2tiFunk.svg +%%DATADIR%%/actions/bitmaps/noteheads.u2tiThin.svg +%%DATADIR%%/actions/bitmaps/noteheads.u2tiWalker.svg +%%DATADIR%%/actions/bitmaps/noteheads.u2triangle.svg +%%DATADIR%%/actions/bitmaps/noteheads.uM2.svg +%%DATADIR%%/actions/bitmaps/noteheads_dM2.svg +%%DATADIR%%/actions/bitmaps/noteheads_sM1.svg +%%DATADIR%%/actions/bitmaps/noteheads_sM1neomensural.png +%%DATADIR%%/actions/bitmaps/noteheads_sM1neomensural.svg +%%DATADIR%%/actions/bitmaps/noteheads_sM2neomensural.png +%%DATADIR%%/actions/bitmaps/noteheads_sM2neomensural.svg +%%DATADIR%%/actions/bitmaps/one.svg +%%DATADIR%%/actions/bitmaps/p.svg +%%DATADIR%%/actions/bitmaps/pedal...svg +%%DATADIR%%/actions/bitmaps/pedal.M.svg +%%DATADIR%%/actions/bitmaps/pedal.P.svg +%%DATADIR%%/actions/bitmaps/pedal.Ped.svg +%%DATADIR%%/actions/bitmaps/pedal.d.svg +%%DATADIR%%/actions/bitmaps/pedal.e.svg +%%DATADIR%%/actions/bitmaps/period.svg +%%DATADIR%%/actions/bitmaps/plus.svg %%DATADIR%%/actions/bitmaps/pppp.png %%DATADIR%%/actions/bitmaps/ppppp.png +%%DATADIR%%/actions/bitmaps/r.svg +%%DATADIR%%/actions/bitmaps/rests.0.svg +%%DATADIR%%/actions/bitmaps/rests.0mensural.svg +%%DATADIR%%/actions/bitmaps/rests.0neomensural.svg +%%DATADIR%%/actions/bitmaps/rests.0o.svg +%%DATADIR%%/actions/bitmaps/rests.1.svg +%%DATADIR%%/actions/bitmaps/rests.1mensural.svg +%%DATADIR%%/actions/bitmaps/rests.1neomensural.svg +%%DATADIR%%/actions/bitmaps/rests.1o.svg +%%DATADIR%%/actions/bitmaps/rests.2.svg +%%DATADIR%%/actions/bitmaps/rests.2classical.svg +%%DATADIR%%/actions/bitmaps/rests.2mensural.svg +%%DATADIR%%/actions/bitmaps/rests.2neomensural.svg +%%DATADIR%%/actions/bitmaps/rests.3.svg +%%DATADIR%%/actions/bitmaps/rests.3mensural.svg +%%DATADIR%%/actions/bitmaps/rests.3neomensural.svg +%%DATADIR%%/actions/bitmaps/rests.4.svg +%%DATADIR%%/actions/bitmaps/rests.4mensural.svg +%%DATADIR%%/actions/bitmaps/rests.4neomensural.svg +%%DATADIR%%/actions/bitmaps/rests.5.svg +%%DATADIR%%/actions/bitmaps/rests.6.svg +%%DATADIR%%/actions/bitmaps/rests.7.svg +%%DATADIR%%/actions/bitmaps/rests.M1.svg +%%DATADIR%%/actions/bitmaps/rests.M1mensural.svg +%%DATADIR%%/actions/bitmaps/rests.M1neomensural.svg +%%DATADIR%%/actions/bitmaps/rests.M2.svg +%%DATADIR%%/actions/bitmaps/rests.M2mensural.svg +%%DATADIR%%/actions/bitmaps/rests.M2neomensural.svg +%%DATADIR%%/actions/bitmaps/rests.M3.svg +%%DATADIR%%/actions/bitmaps/rests.M3mensural.svg +%%DATADIR%%/actions/bitmaps/rests.M3neomensural.svg +%%DATADIR%%/actions/bitmaps/rests_M1neomensural.png +%%DATADIR%%/actions/bitmaps/rests_M1neomensural.svg +%%DATADIR%%/actions/bitmaps/rests_M2.svg +%%DATADIR%%/actions/bitmaps/rests_M2neomensural.png +%%DATADIR%%/actions/bitmaps/rests_M2neomensural.svg +%%DATADIR%%/actions/bitmaps/rests_M3neomensural.svg %%DATADIR%%/actions/bitmaps/rfz.png +%%DATADIR%%/actions/bitmaps/s.svg +%%DATADIR%%/actions/bitmaps/scripts.arpeggio.arrow.1.svg +%%DATADIR%%/actions/bitmaps/scripts.arpeggio.arrow.M1.svg +%%DATADIR%%/actions/bitmaps/scripts.arpeggio.svg +%%DATADIR%%/actions/bitmaps/scripts.augmentum.svg +%%DATADIR%%/actions/bitmaps/scripts.caesura.curved.svg +%%DATADIR%%/actions/bitmaps/scripts.caesura.straight.svg +%%DATADIR%%/actions/bitmaps/scripts.circulus.svg +%%DATADIR%%/actions/bitmaps/scripts.coda.svg +%%DATADIR%%/actions/bitmaps/scripts.daccentus.svg +%%DATADIR%%/actions/bitmaps/scripts.dfermata.svg +%%DATADIR%%/actions/bitmaps/scripts.dlongfermata.svg +%%DATADIR%%/actions/bitmaps/scripts.dmarcato.svg +%%DATADIR%%/actions/bitmaps/scripts.downbow.svg +%%DATADIR%%/actions/bitmaps/scripts.downmordent.svg +%%DATADIR%%/actions/bitmaps/scripts.downprall.svg +%%DATADIR%%/actions/bitmaps/scripts.dpedalheel.svg +%%DATADIR%%/actions/bitmaps/scripts.dpedaltoe.svg +%%DATADIR%%/actions/bitmaps/scripts.dportato.svg +%%DATADIR%%/actions/bitmaps/scripts.dsemicirculus.svg +%%DATADIR%%/actions/bitmaps/scripts.dshortfermata.svg +%%DATADIR%%/actions/bitmaps/scripts.dsignumcongruentiae.svg +%%DATADIR%%/actions/bitmaps/scripts.dstaccatissimo.svg +%%DATADIR%%/actions/bitmaps/scripts.dverylongfermata.svg +%%DATADIR%%/actions/bitmaps/scripts.espr.svg +%%DATADIR%%/actions/bitmaps/scripts.flageolet.svg +%%DATADIR%%/actions/bitmaps/scripts.halfopen.svg +%%DATADIR%%/actions/bitmaps/scripts.ictus.svg +%%DATADIR%%/actions/bitmaps/scripts.lcomma.svg +%%DATADIR%%/actions/bitmaps/scripts.lineprall.svg +%%DATADIR%%/actions/bitmaps/scripts.lvarcomma.svg +%%DATADIR%%/actions/bitmaps/scripts.mordent.svg +%%DATADIR%%/actions/bitmaps/scripts.open.svg +%%DATADIR%%/actions/bitmaps/scripts.prall.svg +%%DATADIR%%/actions/bitmaps/scripts.pralldown.svg +%%DATADIR%%/actions/bitmaps/scripts.prallmordent.svg +%%DATADIR%%/actions/bitmaps/scripts.prallprall.svg +%%DATADIR%%/actions/bitmaps/scripts.prallup.svg +%%DATADIR%%/actions/bitmaps/scripts.rcomma.svg +%%DATADIR%%/actions/bitmaps/scripts.reverseturn.svg +%%DATADIR%%/actions/bitmaps/scripts.rvarcomma.svg +%%DATADIR%%/actions/bitmaps/scripts.segno.svg +%%DATADIR%%/actions/bitmaps/scripts.sforzato.svg +%%DATADIR%%/actions/bitmaps/scripts.snappizzicato.svg +%%DATADIR%%/actions/bitmaps/scripts.staccato.svg +%%DATADIR%%/actions/bitmaps/scripts.stopped.svg +%%DATADIR%%/actions/bitmaps/scripts.tenuto.svg +%%DATADIR%%/actions/bitmaps/scripts.thumb.svg +%%DATADIR%%/actions/bitmaps/scripts.trilelement.svg +%%DATADIR%%/actions/bitmaps/scripts.trill.svg +%%DATADIR%%/actions/bitmaps/scripts.trill_element.svg +%%DATADIR%%/actions/bitmaps/scripts.turn.svg +%%DATADIR%%/actions/bitmaps/scripts.uaccentus.svg +%%DATADIR%%/actions/bitmaps/scripts.ufermata.svg +%%DATADIR%%/actions/bitmaps/scripts.ulongfermata.svg +%%DATADIR%%/actions/bitmaps/scripts.umarcato.svg +%%DATADIR%%/actions/bitmaps/scripts.upbow.svg +%%DATADIR%%/actions/bitmaps/scripts.upedalheel.svg +%%DATADIR%%/actions/bitmaps/scripts.upedaltoe.svg +%%DATADIR%%/actions/bitmaps/scripts.upmordent.svg +%%DATADIR%%/actions/bitmaps/scripts.uportato.svg +%%DATADIR%%/actions/bitmaps/scripts.upprall.svg +%%DATADIR%%/actions/bitmaps/scripts.usemicirculus.svg +%%DATADIR%%/actions/bitmaps/scripts.ushortfermata.svg +%%DATADIR%%/actions/bitmaps/scripts.usignumcongruentiae.svg +%%DATADIR%%/actions/bitmaps/scripts.ustaccatissimo.svg +%%DATADIR%%/actions/bitmaps/scripts.uverylongfermata.svg +%%DATADIR%%/actions/bitmaps/scripts.varcoda.svg +%%DATADIR%%/actions/bitmaps/scripts.varsegno.svg +%%DATADIR%%/actions/bitmaps/seven.svg %%DATADIR%%/actions/bitmaps/sf.png %%DATADIR%%/actions/bitmaps/sff.png %%DATADIR%%/actions/bitmaps/sfz.png +%%DATADIR%%/actions/bitmaps/six.svg %%DATADIR%%/actions/bitmaps/sp.png %%DATADIR%%/actions/bitmaps/spp.png +%%DATADIR%%/actions/bitmaps/three.svg +%%DATADIR%%/actions/bitmaps/timesig.C22.svg +%%DATADIR%%/actions/bitmaps/timesig.C44.svg +%%DATADIR%%/actions/bitmaps/timesig.mensural22.svg +%%DATADIR%%/actions/bitmaps/timesig.mensural24.svg +%%DATADIR%%/actions/bitmaps/timesig.mensural32.svg +%%DATADIR%%/actions/bitmaps/timesig.mensural34.svg +%%DATADIR%%/actions/bitmaps/timesig.mensural44.svg +%%DATADIR%%/actions/bitmaps/timesig.mensural48.svg +%%DATADIR%%/actions/bitmaps/timesig.mensural64.svg +%%DATADIR%%/actions/bitmaps/timesig.mensural68.svg +%%DATADIR%%/actions/bitmaps/timesig.mensural68alt.svg +%%DATADIR%%/actions/bitmaps/timesig.mensural94.svg +%%DATADIR%%/actions/bitmaps/timesig.mensural98.svg +%%DATADIR%%/actions/bitmaps/timesig.neomensural22.svg +%%DATADIR%%/actions/bitmaps/timesig.neomensural24.svg +%%DATADIR%%/actions/bitmaps/timesig.neomensural32.svg +%%DATADIR%%/actions/bitmaps/timesig.neomensural34.svg +%%DATADIR%%/actions/bitmaps/timesig.neomensural44.svg +%%DATADIR%%/actions/bitmaps/timesig.neomensural48.svg +%%DATADIR%%/actions/bitmaps/timesig.neomensural64.svg +%%DATADIR%%/actions/bitmaps/timesig.neomensural68.svg +%%DATADIR%%/actions/bitmaps/timesig.neomensural68alt.svg +%%DATADIR%%/actions/bitmaps/timesig.neomensural94.svg +%%DATADIR%%/actions/bitmaps/timesig.neomensural98.svg +%%DATADIR%%/actions/bitmaps/two.svg +%%DATADIR%%/actions/bitmaps/unmute.png +%%DATADIR%%/actions/bitmaps/z.svg +%%DATADIR%%/actions/bitmaps/zero.svg +%%DATADIR%%/actions/block.l +%%DATADIR%%/actions/commandlist.scm %%DATADIR%%/actions/denemo.scm %%DATADIR%%/actions/editscripts/D.C.AlFine.scm %%DATADIR%%/actions/editscripts/LHFinger.scm -%%DATADIR%%/actions/editscripts/Movement-title.scm -%%DATADIR%%/actions/editscripts/RehearsalMark.scm +%%DATADIR%%/actions/editscripts/Mute.scm %%DATADIR%%/actions/editscripts/StaffSize.scm %%DATADIR%%/actions/editscripts/StringNum.scm %%DATADIR%%/actions/editscripts/Tempo.scm %%DATADIR%%/actions/editscripts/UnknownScoreTag.scm +%%DATADIR%%/actions/helpsystem.scm +%%DATADIR%%/actions/incl.l %%DATADIR%%/actions/init.denemo +%%DATADIR%%/actions/lalr.scm +%%DATADIR%%/actions/lyimport-lexer.scm +%%DATADIR%%/actions/lyimport-parser.scm +%%DATADIR%%/actions/lyimport-todenemo.scm +%%DATADIR%%/actions/lyimport.scm %%DATADIR%%/actions/menus/MainMenu/EditMenu/ConvertDrum2GmSingleSelection +%%DATADIR%%/actions/menus/MainMenu/EditMenu/IntelligentDelete %%DATADIR%%/actions/menus/MainMenu/EditMenu/KeyBindings/StartEmacs2KeyShortcut -%%DATADIR%%/actions/menus/MainMenu/EditMenu/Paste +%%DATADIR%%/actions/menus/MainMenu/EditMenu/PasteReplaceSelection %%DATADIR%%/actions/menus/MainMenu/EditMenu/ReloadDrumHash -%%DATADIR%%/actions/menus/MainMenu/EditMenu/Select/ApplyToChordsInSelection %%DATADIR%%/actions/menus/MainMenu/EditMenu/Select/ApplyToSelection +%%DATADIR%%/actions/menus/MainMenu/EditMenu/Select/DeleteSelectionLeaveEmpty %%DATADIR%%/actions/menus/MainMenu/EditMenu/Select/SelectAllStaffs +%%DATADIR%%/actions/menus/MainMenu/EditMenu/Select/SelectColumn +%%DATADIR%%/actions/menus/MainMenu/EditMenu/Select/SelectLeft +%%DATADIR%%/actions/menus/MainMenu/EditMenu/Select/SelectMeasure +%%DATADIR%%/actions/menus/MainMenu/EditMenu/Select/SelectRight %%DATADIR%%/actions/menus/MainMenu/EditMenu/Select/SelectStaff -%%DATADIR%%/actions/menus/MainMenu/EditMenu/SetImmediatePlayback -%%DATADIR%%/actions/menus/MainMenu/EditMenu/Shift/ShiftDown -%%DATADIR%%/actions/menus/MainMenu/EditMenu/Shift/ShiftUp -%%DATADIR%%/actions/menus/MainMenu/EditMenu/Shift/init.scm -%%DATADIR%%/actions/menus/MainMenu/EditMenu/Transpose/SetTransposeIntervalFromNote -%%DATADIR%%/actions/menus/MainMenu/EditMenu/Transpose/SetTransposeIntervalFromSelection -%%DATADIR%%/actions/menus/MainMenu/EditMenu/Transpose/TransposeNote -%%DATADIR%%/actions/menus/MainMenu/EditMenu/Transpose/TransposeSelection -%%DATADIR%%/actions/menus/MainMenu/EditMenu/Transpose/init.scm +%%DATADIR%%/actions/menus/MainMenu/EditMenu/Select/SelectionToEmptyMeasure +%%DATADIR%%/actions/menus/MainMenu/EditMenu/StagedDelete %%DATADIR%%/actions/menus/MainMenu/Educational/Aural Training/Chord-Comparison/DiminishedOrAugmented %%DATADIR%%/actions/menus/MainMenu/Educational/Aural Training/Chord-Comparison/DiminishedOrMinor %%DATADIR%%/actions/menus/MainMenu/Educational/Aural Training/Chord-Comparison/HalfDiminished7OrDiminshed7 @@ -120,6 +665,7 @@ %%DATADIR%%/actions/menus/MainMenu/Educational/Aural Training/Identify-Scale-Note/init.scm %%DATADIR%%/actions/menus/MainMenu/Educational/MIDI/CheckPitches %%DATADIR%%/actions/menus/MainMenu/Educational/MIDI/Conductor +%%DATADIR%%/actions/menus/MainMenu/Educational/MIDI/FiguredBassExercises %%DATADIR%%/actions/menus/MainMenu/Educational/Note-Reading/BassClefNoteNameSpeedTest %%DATADIR%%/actions/menus/MainMenu/Educational/Note-Reading/CountSteps %%DATADIR%%/actions/menus/MainMenu/Educational/Note-Reading/DiatonicInterval @@ -132,65 +678,130 @@ %%DATADIR%%/actions/menus/MainMenu/Educational/Note-Reading/StepSkipOrSame %%DATADIR%%/actions/menus/MainMenu/Educational/Note-Reading/UpDownOrSame %%DATADIR%%/actions/menus/MainMenu/Educational/Note-Reading/init.scm +%%DATADIR%%/actions/menus/MainMenu/FileMenu/Import/Import-Lilypond +%%DATADIR%%/actions/menus/MainMenu/FileMenu/Import/Import-Midi +%%DATADIR%%/actions/menus/MainMenu/FileMenu/Import/Import-MusicXml +%%DATADIR%%/actions/menus/MainMenu/FileMenu/OpenMenu/OpenMyDefaultTemplate +%%DATADIR%%/actions/menus/MainMenu/FileMenu/PrintMenu/Preview4Bars +%%DATADIR%%/actions/menus/MainMenu/FileMenu/PrintMenu/PrintAccompanistsScore %%DATADIR%%/actions/menus/MainMenu/HelpMenu/IRC -%%DATADIR%%/actions/menus/MainMenu/ModeMenu/MIDI/AngryDelete -%%DATADIR%%/actions/menus/MainMenu/ModeMenu/MIDI/CheckPitches -%%DATADIR%%/actions/menus/MainMenu/ModeMenu/MIDI/FiguredBassFilterOn -%%DATADIR%%/actions/menus/MainMenu/ModeMenu/MIDI/MidiAdvanceOnEdit -%%DATADIR%%/actions/menus/MainMenu/ModeMenu/MIDI/MidiFilterOff -%%DATADIR%%/actions/menus/MainMenu/NavigationMenu/Bookmarks/Bookmark +%%DATADIR%%/actions/menus/MainMenu/HelpMenu/Tutorial +%%DATADIR%%/actions/menus/MainMenu/InputMenu/MIDI/AngryDelete +%%DATADIR%%/actions/menus/MainMenu/InputMenu/MIDI/CheckPitches +%%DATADIR%%/actions/menus/MainMenu/InputMenu/MIDI/ChordsOverBass +%%DATADIR%%/actions/menus/MainMenu/InputMenu/MIDI/FiguredBassFilterOn +%%DATADIR%%/actions/menus/MainMenu/InputMenu/MIDI/MidiAdvanceOnEdit +%%DATADIR%%/actions/menus/MainMenu/InputMenu/MIDI/MidiFilterOff +%%DATADIR%%/actions/menus/MainMenu/MoreMenu/LoadDefaultComposerNumberkeys +%%DATADIR%%/actions/menus/MainMenu/MoreMenu/LoadSelectDurationComposerNumberkeys +%%DATADIR%%/actions/menus/MainMenu/MoreMenu/NoOp +%%DATADIR%%/actions/menus/MainMenu/MoreMenu/OpEight +%%DATADIR%%/actions/menus/MainMenu/MoreMenu/OpFive +%%DATADIR%%/actions/menus/MainMenu/MoreMenu/OpFour +%%DATADIR%%/actions/menus/MainMenu/MoreMenu/OpNine +%%DATADIR%%/actions/menus/MainMenu/MoreMenu/OpOne +%%DATADIR%%/actions/menus/MainMenu/MoreMenu/OpSeven +%%DATADIR%%/actions/menus/MainMenu/MoreMenu/OpSix +%%DATADIR%%/actions/menus/MainMenu/MoreMenu/OpThree +%%DATADIR%%/actions/menus/MainMenu/MoreMenu/OpTwo +%%DATADIR%%/actions/menus/MainMenu/MoreMenu/OpZero %%DATADIR%%/actions/menus/MainMenu/NavigationMenu/Bookmarks/BookmarkNamed %%DATADIR%%/actions/menus/MainMenu/NavigationMenu/Bookmarks/BookmarkNonPrinting -%%DATADIR%%/actions/menus/MainMenu/NavigationMenu/Bookmarks/BookmarkRNamed -%%DATADIR%%/actions/menus/MainMenu/NavigationMenu/Bookmarks/BookmarkRNonPrinting %%DATADIR%%/actions/menus/MainMenu/NavigationMenu/Bookmarks/NextBookmark -%%DATADIR%%/actions/menus/MainMenu/NavigationMenu/Bookmarks/NextBookmarkR %%DATADIR%%/actions/menus/MainMenu/NavigationMenu/Bookmarks/PrevBookmark -%%DATADIR%%/actions/menus/MainMenu/NavigationMenu/Bookmarks/PrevBookmarkR %%DATADIR%%/actions/menus/MainMenu/NavigationMenu/Bookmarks/RehearsalMark %%DATADIR%%/actions/menus/MainMenu/NavigationMenu/Bookmarks/SearchBookmark -%%DATADIR%%/actions/menus/MainMenu/NavigationMenu/Bookmarks/SearchBookmarkR %%DATADIR%%/actions/menus/MainMenu/NavigationMenu/Cursor/CursorToHighestNote %%DATADIR%%/actions/menus/MainMenu/NavigationMenu/Cursor/CursorToLowestNote +%%DATADIR%%/actions/menus/MainMenu/NavigationMenu/Cursor/JumpDownOctave +%%DATADIR%%/actions/menus/MainMenu/NavigationMenu/Cursor/JumpLeft +%%DATADIR%%/actions/menus/MainMenu/NavigationMenu/Cursor/JumpRight +%%DATADIR%%/actions/menus/MainMenu/NavigationMenu/Cursor/JumpUpOctave +%%DATADIR%%/actions/menus/MainMenu/NavigationMenu/Cursor/MoveToMovementBeginning +%%DATADIR%%/actions/menus/MainMenu/NavigationMenu/Cursor/MoveToMovementEnd +%%DATADIR%%/actions/menus/MainMenu/NavigationMenu/Cursor/ToggleCursorHighlight +%%DATADIR%%/actions/menus/MainMenu/NavigationMenu/Cursor/init.scm +%%DATADIR%%/actions/menus/MainMenu/NavigationMenu/Seek/CheckForIncompleteMeasures %%DATADIR%%/actions/menus/MainMenu/NavigationMenu/Seek/FindEditPoint %%DATADIR%%/actions/menus/MainMenu/NavigationMenu/Seek/FindNextLowerNote +%%DATADIR%%/actions/menus/MainMenu/NavigationMenu/Seek/FindNote %%DATADIR%%/actions/menus/MainMenu/NavigationMenu/Seek/GoToEmptyMeasure +%%DATADIR%%/actions/menus/MainMenu/NavigationMenu/Seek/GoToMeasureEnd +%%DATADIR%%/actions/menus/MainMenu/NavigationMenu/Seek/MoveToPreviousEmptyMeasure %%DATADIR%%/actions/menus/MainMenu/NavigationMenu/Seek/NextHigher +%%DATADIR%%/actions/menus/MainMenu/PlaybackMenu/ConvertMidiForBass +%%DATADIR%%/actions/menus/MainMenu/PlaybackMenu/DenemoPlayCursorToEnd +%%DATADIR%%/actions/menus/MainMenu/PlaybackMenu/RecordAndConvert %%DATADIR%%/actions/menus/MainMenu/PlaybackMenu/RecreateTimebase +%%DATADIR%%/actions/menus/MainMenu/PlaybackMenu/ToggleConduct +%%DATADIR%%/actions/menus/MainMenu/PlaybackMenu/ToggleImmediatePlayback +%%DATADIR%%/actions/menus/MainMenu/PlaybackMenu/TogglePlayAlongPlayback %%DATADIR%%/actions/menus/MainMenu/ViewMenu/Zoom/ZoomDialog -%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/AddInterval/AddIntervalTest -%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/AddInterval/init.scm +%%DATADIR%%/actions/menus/MainMenu/ViewMenu/Zoom/ZoomIn +%%DATADIR%%/actions/menus/MainMenu/ViewMenu/Zoom/ZoomOut +%%DATADIR%%/actions/menus/MainMenu/ViewMenu/Zoom/ZoomReset +%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/AddAboveBase/AddLowestUpAugmented4 +%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/AddAboveBase/AddLowestUpDiminished5 +%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/AddAboveBase/AddLowestUpMajor2 +%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/AddAboveBase/AddLowestUpMajor3 +%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/AddAboveBase/AddLowestUpMajor6 +%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/AddAboveBase/AddLowestUpMajor7 +%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/AddAboveBase/AddLowestUpMinor2 +%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/AddAboveBase/AddLowestUpMinor3 +%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/AddAboveBase/AddLowestUpMinor6 +%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/AddAboveBase/AddLowestUpMinor7 +%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/AddAboveBase/AddLowestUpPerfect1 +%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/AddAboveBase/AddLowestUpPerfect4 +%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/AddAboveBase/AddLowestUpPerfect5 +%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/AddBelowTop/AddHighestDownAugmented4 +%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/AddBelowTop/AddHighestDownDiminished5 +%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/AddBelowTop/AddHighestDownMajor2 +%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/AddBelowTop/AddHighestDownMajor3 +%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/AddBelowTop/AddHighestDownMajor6 +%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/AddBelowTop/AddHighestDownMajor7 +%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/AddBelowTop/AddHighestDownMinor2 +%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/AddBelowTop/AddHighestDownMinor3 +%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/AddBelowTop/AddHighestDownMinor6 +%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/AddBelowTop/AddHighestDownMinor7 +%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/AddBelowTop/AddHighestDownPerfect1 +%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/AddBelowTop/AddHighestDownPerfect4 +%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/AddBelowTop/AddHighestDownPerfect5 +%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/ChangePrintDuration/ChangePrintDuration0 +%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/ChangePrintDuration/ChangePrintDuration1 +%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/ChangePrintDuration/ChangePrintDuration2 +%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/ChangePrintDuration/ChangePrintDurationBreve +%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/ChangePrintDuration/ChangePrintDurationLonga +%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/ChangePrintDuration/init.scm %%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/Directives/DeleteLilyPondOnChord %%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/HideLilyPond -%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/Markings/Metronome Markings/MetronomeMarking -%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/Markings/Ornaments/Trill+Above -%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/Markings/Ornaments/Trill+Below -%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/Markings/TextMarks/D.C.AlFine -%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/Markings/TextMarks/Dynamic Markings/DeleteDynamic -%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/Markings/TextMarks/Dynamic Markings/Forte -%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/Markings/TextMarks/Dynamic Markings/Fortissimo -%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/Markings/TextMarks/Dynamic Markings/Largo -%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/Markings/TextMarks/Dynamic Markings/MezzoForte -%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/Markings/TextMarks/Dynamic Markings/MezzoPiano -%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/Markings/TextMarks/Dynamic Markings/init.scm -%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/Markings/TextMarks/Glissando -%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/Markings/TextMarks/ParenthesizeChord -%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/Markings/TextMarks/ParenthesizeNote -%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/Markings/TextMarks/Tempo Indications/Allegro -%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/Markings/TextMarks/Tempo Indications/AllegroAssai -%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/Markings/TextMarks/Tempo Indications/Andante -%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/Markings/TextMarks/Tempo Indications/Largo -%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/Markings/TextMarks/Tempo Indications/Presto %%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/ParenthesizeChord %%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/Slurs/BeginPhrasingSlur %%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/Slurs/EndPhrasingSlur +%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/Slurs/ExtendSlur +%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/Slurs/ReduceSlur %%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/Slurs/SlurDown %%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/Slurs/SlurNeutral %%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/Slurs/SlurThree %%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/Slurs/SlurTwo %%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/Slurs/SlurUp +%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/Slurs/ToggleBeginPhrasingSlur +%%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/Slurs/ToggleEndPhrasingSlur %%DATADIR%%/actions/menus/ObjectMenu/ClefMenu/ClefChooser +%%DATADIR%%/actions/menus/ObjectMenu/Directives/AutoAccidentals +%%DATADIR%%/actions/menus/ObjectMenu/Directives/Barlines/ChooseBarline +%%DATADIR%%/actions/menus/ObjectMenu/Directives/Barlines/ClosingBarline +%%DATADIR%%/actions/menus/ObjectMenu/Directives/Barlines/DoubleBarline +%%DATADIR%%/actions/menus/ObjectMenu/Directives/Barlines/ForceBarline +%%DATADIR%%/actions/menus/ObjectMenu/Directives/Barlines/HalfBarline +%%DATADIR%%/actions/menus/ObjectMenu/Directives/BreathMark +%%DATADIR%%/actions/menus/ObjectMenu/Directives/CadenzaOn %%DATADIR%%/actions/menus/ObjectMenu/Directives/DynamicsDialog +%%DATADIR%%/actions/menus/ObjectMenu/Directives/EndVolta +%%DATADIR%%/actions/menus/ObjectMenu/Directives/FinishCadenza +%%DATADIR%%/actions/menus/ObjectMenu/Directives/FreeFermata +%%DATADIR%%/actions/menus/ObjectMenu/Directives/Hide +%%DATADIR%%/actions/menus/ObjectMenu/Directives/InsertStandaloneDirective +%%DATADIR%%/actions/menus/ObjectMenu/Directives/LineBreak %%DATADIR%%/actions/menus/ObjectMenu/Directives/MIDI/ChangeBalance %%DATADIR%%/actions/menus/ObjectMenu/Directives/MIDI/ChangeChannel %%DATADIR%%/actions/menus/ObjectMenu/Directives/MIDI/ChangeExpression @@ -206,61 +817,145 @@ %%DATADIR%%/actions/menus/ObjectMenu/Directives/MIDI/ChangeSustenutoPedal %%DATADIR%%/actions/menus/ObjectMenu/Directives/MIDI/ChangeVolume %%DATADIR%%/actions/menus/ObjectMenu/Directives/MIDI/ChannelChange +%%DATADIR%%/actions/menus/ObjectMenu/Directives/MIDI/ClarinetInA +%%DATADIR%%/actions/menus/ObjectMenu/Directives/MIDI/ClarinetInBb +%%DATADIR%%/actions/menus/ObjectMenu/Directives/MIDI/CloseTransposingInstrument %%DATADIR%%/actions/menus/ObjectMenu/Directives/MIDI/MidiTempo +%%DATADIR%%/actions/menus/ObjectMenu/Directives/MIDI/Temperament/StartEqualTemperament +%%DATADIR%%/actions/menus/ObjectMenu/Directives/MIDI/Temperament/StartQCMeanTone %%DATADIR%%/actions/menus/ObjectMenu/Directives/MIDI/init.scm -%%DATADIR%%/actions/menus/ObjectMenu/Directives/MM +%%DATADIR%%/actions/menus/ObjectMenu/Directives/MetronomeMarking +%%DATADIR%%/actions/menus/ObjectMenu/Directives/OpenFirstTimeBar +%%DATADIR%%/actions/menus/ObjectMenu/Directives/OpenSecondTimeBar +%%DATADIR%%/actions/menus/ObjectMenu/Directives/PageBreak +%%DATADIR%%/actions/menus/ObjectMenu/Directives/Print Transpositions/CloseLilyBlock +%%DATADIR%%/actions/menus/ObjectMenu/Directives/Print Transpositions/OpenOctaveDown +%%DATADIR%%/actions/menus/ObjectMenu/Directives/Print Transpositions/OpenOctaveUp %%DATADIR%%/actions/menus/ObjectMenu/Directives/RehearsalMark +%%DATADIR%%/actions/menus/ObjectMenu/Directives/SetBarNumber +%%DATADIR%%/actions/menus/ObjectMenu/Directives/SmallFontEnd +%%DATADIR%%/actions/menus/ObjectMenu/Directives/SmallFontStart +%%DATADIR%%/actions/menus/ObjectMenu/Directives/Staff/HideNotes +%%DATADIR%%/actions/menus/ObjectMenu/Directives/Staff/StartStaff +%%DATADIR%%/actions/menus/ObjectMenu/Directives/Staff/StopStaff +%%DATADIR%%/actions/menus/ObjectMenu/Directives/Staff/UnHideNotes %%DATADIR%%/actions/menus/ObjectMenu/Directives/Tempo +%%DATADIR%%/actions/menus/ObjectMenu/Directives/Tuning/SetTuningAllStaffs +%%DATADIR%%/actions/menus/ObjectMenu/Directives/Tuning/SetTuningStaff +%%DATADIR%%/actions/menus/ObjectMenu/Directives/TypesettingOff +%%DATADIR%%/actions/menus/ObjectMenu/Directives/TypesettingOn %%DATADIR%%/actions/menus/ObjectMenu/MeasureMenu/AddDuplicateMeasure %%DATADIR%%/actions/menus/ObjectMenu/MeasureMenu/Anacrusis -%%DATADIR%%/actions/menus/ObjectMenu/MeasureMenu/ClosingBarline -%%DATADIR%%/actions/menus/ObjectMenu/MeasureMenu/DeleteBarline -%%DATADIR%%/actions/menus/ObjectMenu/MeasureMenu/DoubleBarline -%%DATADIR%%/actions/menus/ObjectMenu/MeasureMenu/ForceBarline -%%DATADIR%%/actions/menus/ObjectMenu/MeasureMenu/ForceNewMeasure -%%DATADIR%%/actions/menus/ObjectMenu/MeasureMenu/LineBreak -%%DATADIR%%/actions/menus/ObjectMenu/MeasureMenu/PageBreak -%%DATADIR%%/actions/menus/ObjectMenu/MeasureMenu/ReBar -%%DATADIR%%/actions/menus/ObjectMenu/MeasureMenu/RepeatEnd -%%DATADIR%%/actions/menus/ObjectMenu/MeasureMenu/RepeatEndStart -%%DATADIR%%/actions/menus/ObjectMenu/MeasureMenu/RepeatStart +%%DATADIR%%/actions/menus/ObjectMenu/MeasureMenu/MergeWithNextMeasure %%DATADIR%%/actions/menus/ObjectMenu/MeasureMenu/Repeats/CloseReopenRepeat %%DATADIR%%/actions/menus/ObjectMenu/MeasureMenu/Repeats/CloseRepeat %%DATADIR%%/actions/menus/ObjectMenu/MeasureMenu/Repeats/EndSecondTimeBar %%DATADIR%%/actions/menus/ObjectMenu/MeasureMenu/Repeats/FirstTimeBar %%DATADIR%%/actions/menus/ObjectMenu/MeasureMenu/Repeats/OpenRepeat +%%DATADIR%%/actions/menus/ObjectMenu/MeasureMenu/Repeats/RepeatEnd +%%DATADIR%%/actions/menus/ObjectMenu/MeasureMenu/Repeats/RepeatEndStart +%%DATADIR%%/actions/menus/ObjectMenu/MeasureMenu/Repeats/RepeatStart %%DATADIR%%/actions/menus/ObjectMenu/MeasureMenu/Repeats/SecondTimeBar %%DATADIR%%/actions/menus/ObjectMenu/MeasureMenu/ShortMeasure %%DATADIR%%/actions/menus/ObjectMenu/MeasureMenu/SplitMeasure +%%DATADIR%%/actions/menus/ObjectMenu/MeasureMenu/Upbeat +%%DATADIR%%/actions/menus/ObjectMenu/MovementMenu/CreateIntro %%DATADIR%%/actions/menus/ObjectMenu/MovementMenu/HideMovement %%DATADIR%%/actions/menus/ObjectMenu/MovementMenu/MovementPageBreak %%DATADIR%%/actions/menus/ObjectMenu/MovementMenu/MvntComment +%%DATADIR%%/actions/menus/ObjectMenu/MovementMenu/NoteHeadStyles/MovementNoteheadsBaroque +%%DATADIR%%/actions/menus/ObjectMenu/MovementMenu/NoteHeadStyles/MovementNoteheadsCross +%%DATADIR%%/actions/menus/ObjectMenu/MovementMenu/NoteHeadStyles/MovementNoteheadsDefault +%%DATADIR%%/actions/menus/ObjectMenu/MovementMenu/NoteHeadStyles/MovementNoteheadsDelete +%%DATADIR%%/actions/menus/ObjectMenu/MovementMenu/NoteHeadStyles/MovementNoteheadsDiamond +%%DATADIR%%/actions/menus/ObjectMenu/MovementMenu/NoteHeadStyles/MovementNoteheadsHarmonic +%%DATADIR%%/actions/menus/ObjectMenu/MovementMenu/NoteHeadStyles/MovementNoteheadsHarmonic-black +%%DATADIR%%/actions/menus/ObjectMenu/MovementMenu/NoteHeadStyles/MovementNoteheadsHarmonic-mixed +%%DATADIR%%/actions/menus/ObjectMenu/MovementMenu/NoteHeadStyles/MovementNoteheadsMensural +%%DATADIR%%/actions/menus/ObjectMenu/MovementMenu/NoteHeadStyles/MovementNoteheadsNeomensural +%%DATADIR%%/actions/menus/ObjectMenu/MovementMenu/NoteHeadStyles/MovementNoteheadsPetrucci +%%DATADIR%%/actions/menus/ObjectMenu/MovementMenu/NoteHeadStyles/MovementNoteheadsSlash +%%DATADIR%%/actions/menus/ObjectMenu/MovementMenu/NoteHeadStyles/MovementNoteheadsXcircle %%DATADIR%%/actions/menus/ObjectMenu/MovementMenu/Print Layout/Indent +%%DATADIR%%/actions/menus/ObjectMenu/MovementMenu/ReBar %%DATADIR%%/actions/menus/ObjectMenu/MovementMenu/SetMovementTempo +%%DATADIR%%/actions/menus/ObjectMenu/MovementMenu/SwitchMensuralBarlines %%DATADIR%%/actions/menus/ObjectMenu/MovementMenu/Titles Etc/MovementPiece %%DATADIR%%/actions/menus/ObjectMenu/MovementMenu/Titles Etc/MovementSubtitle %%DATADIR%%/actions/menus/ObjectMenu/MovementMenu/Titles Etc/MovementTitle +%%DATADIR%%/actions/menus/ObjectMenu/NotationMagick/GenerateRhythmFromString/NotationMagick-InsertReversedStringAsBinaryRhythm +%%DATADIR%%/actions/menus/ObjectMenu/NotationMagick/GenerateRhythmFromString/NotationMagick-InsertReversedStringAsReversedBinaryRhythm +%%DATADIR%%/actions/menus/ObjectMenu/NotationMagick/GenerateRhythmFromString/NotationMagick-InsertStringAsBinaryRhythm +%%DATADIR%%/actions/menus/ObjectMenu/NotationMagick/GenerateRhythmFromString/NotationMagick-InsertStringAsReversedBinaryRhythm +%%DATADIR%%/actions/menus/ObjectMenu/NotationMagick/NotationMagick-InsertPoolShuffled +%%DATADIR%%/actions/menus/ObjectMenu/NotationMagick/NotationMagick-MirrorSelectedObjects +%%DATADIR%%/actions/menus/ObjectMenu/NotationMagick/NotationMagick-ReverseSelectedObjects +%%DATADIR%%/actions/menus/ObjectMenu/NotationMagick/NotationMagick-ShuffleSelectedObjects +%%DATADIR%%/actions/menus/ObjectMenu/NotationMagick/NotationMagick-SortSelectionAscending +%%DATADIR%%/actions/menus/ObjectMenu/NotationMagick/NotationMagick-SortSelectionDescending +%%DATADIR%%/actions/menus/ObjectMenu/NotationMagick/NotationMagick-TwelveToneRow +%%DATADIR%%/actions/menus/ObjectMenu/NotationMagick/SingleRandomNote/NotationMagick-InsertNoteFromPool +%%DATADIR%%/actions/menus/ObjectMenu/NotationMagick/SingleRandomNote/NotationMagick-RandomWithinClefRangeChromatic +%%DATADIR%%/actions/menus/ObjectMenu/NotationMagick/SingleRandomNote/NotationMagick-RandomWithinClefRangeDiatonic %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Augment %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Beaming/Beam1234 %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Beaming/EndBeam %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Beaming/StartBeam +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/ChangeDuration/ChangeBreve +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/ChangeDuration/ChangeLonga %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/ChordComment %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Diminish %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Directives/DeleteLilyPondOnNote -%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/EditModeNote/EditNote/CautionaryAccidental -%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/EditModeNote/EditNote/MoveNoteToCursor -%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/EditModeNote/EditNote/ReminderAccidental +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/DuplicateChord +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/EditDuration/Breve +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/EditDuration/Longa +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/EditNote/AddDotSelectionSwitcher +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/EditNote/CautionaryAccidental +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/EditNote/MoveNoteToCursor +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/EditNote/ReminderAccidental +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/EditNote/RemoveDotSelectionSwitcher +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/FingeringsDoublestroke +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/GraceNotes/GraceAfter +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/GraceNotes/GraceNoteSwitcher +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/GraceNotes/InsertTwoGraceNotesBeamed +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/InsertNote/InsertDuration/InsertBreve +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/InsertNote/InsertDuration/InsertLonga +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/InsertNote/InsertDuration/InsertOneNote +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/JoinChords +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/JoinChordsToMergedChord %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/Articulations/AccentSelectionSwitcher %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/Articulations/StaccatissimoSelectionSwitcher %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/Articulations/StaccatoSelectionSwitcher %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/Articulations/TenutoSelectionSwitcher +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/Ornaments/Trill+Above +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/Ornaments/Trill+Below %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/Strings/Fingerings/Finger0 %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/Strings/Fingerings/Finger1 %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/Strings/Fingerings/Finger2 %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/Strings/Fingerings/Finger3 %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/Strings/Fingerings/Finger4 +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/Strings/Fingerings/Finger5 %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/Strings/LHFinger %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/Strings/StringNum +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/TextAbove +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/TextMarks/ArbitraryTextAbove +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/TextMarks/Congruentia +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/TextMarks/D.C.AlFine +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/TextMarks/Dynamic Markings/DeleteDynamic +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/TextMarks/Dynamic Markings/Forte +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/TextMarks/Dynamic Markings/Fortissimo +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/TextMarks/Dynamic Markings/Largo +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/TextMarks/Dynamic Markings/MezzoForte +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/TextMarks/Dynamic Markings/MezzoPiano +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/TextMarks/Dynamic Markings/init.scm +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/TextMarks/Glissando +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/TextMarks/ParenthesizeChord +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/TextMarks/ParenthesizeNote +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/TextMarks/Tempo Indications/Allegro +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/TextMarks/Tempo Indications/AllegroAssai +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/TextMarks/Tempo Indications/Andante +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/TextMarks/Tempo Indications/Largo +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/TextMarks/Tempo Indications/Presto %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/NoteheadSizes/NormalSizeNotehead %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/NoteheadSizes/SmallNotehead %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/NoteheadSizes/TinyNotehead @@ -274,32 +969,50 @@ %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Percussion/RideBell %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Percussion/TimbalesStyle %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/RestEntry/EnterRest +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/RestEntry/InsertBreveRest +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/RestEntry/InsertLongaRest %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/RestEntry/InsertWholeMeasureRest %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/RestEntry/MultiMeasureRests %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/RestEntry/WholeMeasureRest +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/SelectDuration/SetBreve +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/SelectDuration/SetLonga %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Slurs/BeginPhrasingSlur %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Slurs/EndPhrasingSlur +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Slurs/ExtendSlur +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Slurs/ReduceSlur %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Slurs/SlurDown %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Slurs/SlurNeutral %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Slurs/SlurThree %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Slurs/SlurTwo %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Slurs/SlurUp +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Slurs/ToggleBeginPhrasingSlur +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Slurs/ToggleEndPhrasingSlur +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/SplitChord %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/StemControl/DesignateVoice %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/StemControl/StartDownStems %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/StemControl/StartUpStems %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/TiedNotes/InsertTiedNoteDuration -%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Transpose/CloseLilyBlock -%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Transpose/DiatonicShift/Third -%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Transpose/OpenOctaveDown -%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Transpose/OpenOctaveUp -%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Transpose/init.scm +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Transpose/ShiftDown +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Transpose/ShiftRealDialogDown +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Transpose/ShiftRealDialogUp +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Transpose/ShiftRealHalfDown +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Transpose/ShiftRealHalfUp +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Transpose/ShiftRealOctaveDown +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Transpose/ShiftRealOctaveUp +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Transpose/ShiftRealWholeDown +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Transpose/ShiftRealWholeUp +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Transpose/ShiftUp %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Tremolo %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Tuplets/NoTupletNumbers %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Tuplets/StartTuplet %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Tuplets/ToggleTripleting +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Tuplets/ToggleTupletBrackets %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Tuplets/ToggleTupletNumbering %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/init.scm -%%DATADIR%%/actions/menus/ObjectMenu/Score/Ambitus +%%DATADIR%%/actions/menus/ObjectMenu/NotesRests/split.scm +%%DATADIR%%/actions/menus/ObjectMenu/Score/AccompanistsScore +%%DATADIR%%/actions/menus/ObjectMenu/Score/DeactivateTimeSignatureStencil +%%DATADIR%%/actions/menus/ObjectMenu/Score/DenemoBar %%DATADIR%%/actions/menus/ObjectMenu/Score/EditProlog %%DATADIR%%/actions/menus/ObjectMenu/Score/Print Layout/HideEmptyStaffs %%DATADIR%%/actions/menus/ObjectMenu/Score/Print Layout/PaperSize @@ -323,27 +1036,67 @@ %%DATADIR%%/actions/menus/ObjectMenu/Score/Titles Etc/TitlePage %%DATADIR%%/actions/menus/ObjectMenu/Score/TransposeOctaveUp %%DATADIR%%/actions/menus/ObjectMenu/Score/TransposeScorePrint +%%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/Ambitus +%%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/ChangeStaff %%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/InstrumentName %%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/NonPrintingStaff %%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/Numbering/BarNumbers %%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/Ossia/CreateOssiaStaff %%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/Ossia/HideOssia %%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/Ossia/ShowOssia +%%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/Playback/SetInitialVolumeToZero %%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/PrintEffects/ClearStaffProlog %%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/PrintEffects/TransposeStaffOutput %%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/ShortInstrumentName +%%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/SimplifyTies %%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/SmallerStaff +%%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/StaffAlias %%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/StaffComment +%%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/StaffGroupings/ChoirStaffEnd +%%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/StaffGroupings/ChoirStaffStart +%%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/StaffGroupings/DeleteStaffGroupings +%%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/StaffGroupings/GrandStaffEnd +%%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/StaffGroupings/GrandStaffStart +%%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/StaffGroupings/GroupStaffEnd +%%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/StaffGroupings/GroupStaffStart +%%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/StaffGroupings/PianoStaffEnd +%%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/StaffGroupings/PianoStaffStart %%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/StaffOctaveUp +%%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/TabStaff +%%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/TinyStaff +%%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/TinyStaffAllMovements %%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/TransposeStaffPrint +%%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/Voices/CreateParts +%%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/Voices/VoicePreset1 +%%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/Voices/VoicePreset2 +%%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/Voices/VoicePreset3 +%%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/Voices/VoicePreset4 +%%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/Voices/VoicePresetAutomatic +%%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/Voices/VoicesDoublestroke +%%DATADIR%%/actions/menus/ObjectMenu/TimeSig/ChooseTimeSignature +%%DATADIR%%/actions/multilex.scm %%DATADIR%%/actions/musicgames/ReadingNoteNames.denemo +%%DATADIR%%/actions/mxml2ly2denemo/import_nwctext.scm +%%DATADIR%%/actions/mxml2ly2denemo/lyimport.dia +%%DATADIR%%/actions/mxml2ly2denemo/nwctext.l +%%DATADIR%%/actions/mxml2ly2denemo/sample.nwctext +%%DATADIR%%/actions/mxml2ly2denemo/silex.pdf +%%DATADIR%%/actions/mxml2ly2denemo/silex.tar.gz +%%DATADIR%%/actions/mytest.ly +%%DATADIR%%/actions/notationmagick.scm +%%DATADIR%%/actions/notes.l +%%DATADIR%%/actions/quote.l +%%DATADIR%%/actions/silex.scm +%%DATADIR%%/actions/testinclude.ly %%DATADIR%%/denemoui.xml %%DATADIR%%/examples/AbbreviatedNotes.denemo %%DATADIR%%/examples/CautionaryAccidental.denemo %%DATADIR%%/examples/Cues.denemo %%DATADIR%%/examples/ForcingBreaks.denemo %%DATADIR%%/examples/GraceLilyPondBugWorkaround.denemo +%%DATADIR%%/examples/HandelFiguredBassExercises.denemo %%DATADIR%%/examples/InstrumentNames.denemo +%%DATADIR%%/examples/LeadSheet.denemo %%DATADIR%%/examples/Makefile %%DATADIR%%/examples/Makefile.am %%DATADIR%%/examples/Makefile.in @@ -356,6 +1109,7 @@ %%DATADIR%%/examples/ReminderAccidental.denemo %%DATADIR%%/examples/SeveralVerses.denemo %%DATADIR%%/examples/SuggestedAccidental.denemo +%%DATADIR%%/examples/TemperamentShiftingPlayback.denemo %%DATADIR%%/examples/TextPosition.denemo %%DATADIR%%/examples/Upbeat.denemo %%DATADIR%%/examples/denemo @@ -496,47 +1250,210 @@ %%DATADIR%%/pixmaps/upbow.svg %%DATADIR%%/soundfonts/A320U-license.txt %%DATADIR%%/soundfonts/A320U.sf2 +%%DATADIR%%/templates/Accordion/accordion.denemo +%%DATADIR%%/templates/Early Music/BreveLonga.denemo %%DATADIR%%/templates/Makefile %%DATADIR%%/templates/Makefile.am %%DATADIR%%/templates/Makefile.in %%DATADIR%%/templates/band/BrassBand.denemo %%DATADIR%%/templates/band/BrassTrio.denemo -%%DATADIR%%/templates/band/Makefile -%%DATADIR%%/templates/band/Makefile.in -%%DATADIR%%/templates/chamber/Makefile -%%DATADIR%%/templates/chamber/Makefile.in %%DATADIR%%/templates/chamber/StringQuartet.denemo -%%DATADIR%%/templates/choral/Makefile -%%DATADIR%%/templates/choral/Makefile.in %%DATADIR%%/templates/choral/SATB-Piano.denemo %%DATADIR%%/templates/choral/SATB.denemo %%DATADIR%%/templates/choral/TTBB.denemo %%DATADIR%%/templates/drummap.denemo %%DATADIR%%/templates/jazz/JazzCombo.denemo -%%DATADIR%%/templates/jazz/Makefile -%%DATADIR%%/templates/jazz/Makefile.in +%%PORTDOCS%%%%DOCSDIR%%/AUTHORS +%%PORTDOCS%%%%DOCSDIR%%/ChangeLog +%%PORTDOCS%%%%DOCSDIR%%/DESIGN +%%PORTDOCS%%%%DOCSDIR%%/DESIGN.lilypond +%%PORTDOCS%%%%DOCSDIR%%/GOALS +%%PORTDOCS%%%%DOCSDIR%%/NEWS +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/TODO +%%PORTDOCS%%%%DOCSDIR%%/manual/denemo-manual.html +%%PORTDOCS%%%%DOCSDIR%%/manual/images/4fo2denemo.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/4for2abc.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/4for2abcps.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/4for2ly.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/4for2new-page1.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/4for2new-page2.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/4for2touchedly.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/Changeclefdialog.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/accent.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/acciaccatura.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/accidentals.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/addvc2currentstaff.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/appoggiatura.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/arpeggio.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/articulations.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/bandtemplate.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/blank.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/caution.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/changeinitialclef.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/choraltemplate1.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/chord.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/churchtemplate2.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/clefmenu.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/coda.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/copy.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/cut.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/denemomain.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/displaymenu.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/downbow.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/downmordent.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/downprall.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/draft.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/educationtemplate3.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/expressions.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/fermata.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/fig1.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/fig2.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/fig3.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/filemenu.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/flageolet.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/generaltemplate4.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/glissando.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/gotobegin.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/gotoend.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/grace.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/home.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/important.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/initalkeydialog.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/keymenu.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/lheel.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/lineprall.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/longfermata.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/lpmode.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/ltoe.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/main.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/marcato.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/mark1.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/mordent.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/navigationmenu.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/new.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/next.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/note-page1.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/note.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/open.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/orchestraltemplate5.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/othermenu1.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/paste.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/playbackcontrols.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/playbackmenu.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/playmidi.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/polyphony.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/portato.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/prall.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/pralldown.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/prallmordent.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/prallprall.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/prallup.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/prev.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/print.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/redo.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/rests.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/reverseturn.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/rheel.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/rtoe.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/save.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/scorewizard.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/secondending.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/segno.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/selectingkey.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/setpreferences.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/settimesigniture.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/shortfermata.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/signumcongruentime.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/simplemelody.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/simplerepeat.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/staccatissimo.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/staccato.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/stacctissiimo.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/staffmenu.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/stopmidi.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/stopped.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/tablituretemplate6.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/tenuto.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/thumb.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/timemenu.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/tip.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/toc-blank.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/toc-minus.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/toc-plus.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/tremolo1.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/tremolo2.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/tremolo3.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/trill.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/tupletmarkers.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/turn.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/undo.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/up.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/upbeat.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/upbow.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/upmordent.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/upprall.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/varcoda.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/verylongfermata.png +%%PORTDOCS%%%%DOCSDIR%%/manual/images/warning.png +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/AbbreviatedNotes.denemo +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/CautionaryAccidental.denemo +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Cues.denemo +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ForcingBreaks.denemo +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/GraceLilyPondBugWorkaround.denemo +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/HandelFiguredBassExercises.denemo +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/InstrumentNames.denemo +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/LeadSheet.denemo +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Metronome.denemo +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/MultiMeasureRests.denemo +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Ossia.denemo +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/PrintScoreAndParts.denemo +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/RaggedBottom.denemo +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/RehearsalMarks.denemo +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ReminderAccidental.denemo +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SeveralVerses.denemo +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/SuggestedAccidental.denemo +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/TemperamentShiftingPlayback.denemo +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/TextPosition.denemo +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Upbeat.denemo share/fonts/truetype/denemo/Denemo.ttf share/fonts/truetype/denemo/LICENSE_OFL.txt share/fonts/truetype/denemo/fetta.ttf -%%NLS%%share/locale/de/LC_MESSAGES/denemo.mo -%%NLS%%share/locale/es/LC_MESSAGES/denemo.mo -%%NLS%%share/locale/fr/LC_MESSAGES/denemo.mo -%%NLS%%share/locale/it/LC_MESSAGES/denemo.mo -%%NLS%%share/locale/sv/LC_MESSAGES/denemo.mo -share/pixmaps/denemo.png -@dirrmtry share/fonts/truetype/denemo -@dirrmtry share/fonts/truetype -@dirrmtry share/fonts +@dirrm www +@dirrm share/xml +@dirrm share/skel +@dirrm share/sgml +@dirrm share/misc +@dirrm %%JAVAJARDIR%% +@dirrm share/java +@dirrm share/fonts/truetype/denemo +@dirrm share/fonts/truetype +@dirrm share/fonts +@dirrm share/examples +@dirrm share/emacs/site-lisp +@dirrm share/emacs +@dirrm share/doc/ja +%%PORTDOCS%%@dirrm %%DOCSDIR%%/manual/images +%%PORTDOCS%%@dirrm %%DOCSDIR%%/manual +@dirrm share/doc +@dirrm share/dict @dirrm %%DATADIR%%/templates/jazz @dirrm %%DATADIR%%/templates/choral @dirrm %%DATADIR%%/templates/chamber @dirrm %%DATADIR%%/templates/band +@dirrm %%DATADIR%%/templates/Early Music +@dirrm %%DATADIR%%/templates/Accordion @dirrm %%DATADIR%%/templates @dirrm %%DATADIR%%/soundfonts @dirrm %%DATADIR%%/pixmaps @dirrm %%DATADIR%%/examples +@dirrm %%DATADIR%%/actions/mxml2ly2denemo @dirrm %%DATADIR%%/actions/musicgames +@dirrm %%DATADIR%%/actions/menus/ObjectMenu/TimeSig +@dirrm %%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/Voices +@dirrm %%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/StaffGroupings @dirrm %%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/PrintEffects +@dirrm %%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/Playback @dirrm %%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/Ossia @dirrm %%DATADIR%%/actions/menus/ObjectMenu/StaffMenu/Numbering @dirrm %%DATADIR%%/actions/menus/ObjectMenu/StaffMenu @@ -544,40 +1461,53 @@ @dirrm %%DATADIR%%/actions/menus/ObjectMenu/Score/Print Layout @dirrm %%DATADIR%%/actions/menus/ObjectMenu/Score @dirrm %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Tuplets -@dirrm %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Transpose/DiatonicShift @dirrm %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Transpose @dirrm %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/TiedNotes @dirrm %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/StemControl @dirrm %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Slurs +@dirrm %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/SelectDuration @dirrm %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/RestEntry @dirrm %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Percussion @dirrm %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/NoteheadSizes +@dirrm %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/TextMarks/Tempo Indications +@dirrm %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/TextMarks/Dynamic Markings +@dirrm %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/TextMarks @dirrm %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/Strings/Fingerings @dirrm %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/Strings +@dirrm %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/Ornaments @dirrm %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings/Articulations @dirrm %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Markings -@dirrm %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/EditModeNote/EditNote -@dirrm %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/EditModeNote +@dirrm %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/InsertNote/InsertDuration +@dirrm %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/InsertNote +@dirrm %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/GraceNotes +@dirrm %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/EditNote +@dirrm %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/EditDuration @dirrm %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Directives +@dirrm %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/ChangeDuration @dirrm %%DATADIR%%/actions/menus/ObjectMenu/NotesRests/Beaming @dirrm %%DATADIR%%/actions/menus/ObjectMenu/NotesRests +@dirrm %%DATADIR%%/actions/menus/ObjectMenu/NotationMagick/SingleRandomNote +@dirrm %%DATADIR%%/actions/menus/ObjectMenu/NotationMagick/GenerateRhythmFromString +@dirrm %%DATADIR%%/actions/menus/ObjectMenu/NotationMagick @dirrm %%DATADIR%%/actions/menus/ObjectMenu/MovementMenu/Titles Etc @dirrm %%DATADIR%%/actions/menus/ObjectMenu/MovementMenu/Print Layout +@dirrm %%DATADIR%%/actions/menus/ObjectMenu/MovementMenu/NoteHeadStyles @dirrm %%DATADIR%%/actions/menus/ObjectMenu/MovementMenu @dirrm %%DATADIR%%/actions/menus/ObjectMenu/MeasureMenu/Repeats @dirrm %%DATADIR%%/actions/menus/ObjectMenu/MeasureMenu +@dirrm %%DATADIR%%/actions/menus/ObjectMenu/Directives/Tuning +@dirrm %%DATADIR%%/actions/menus/ObjectMenu/Directives/Staff +@dirrm %%DATADIR%%/actions/menus/ObjectMenu/Directives/Print Transpositions +@dirrm %%DATADIR%%/actions/menus/ObjectMenu/Directives/MIDI/Temperament @dirrm %%DATADIR%%/actions/menus/ObjectMenu/Directives/MIDI +@dirrm %%DATADIR%%/actions/menus/ObjectMenu/Directives/Barlines @dirrm %%DATADIR%%/actions/menus/ObjectMenu/Directives @dirrm %%DATADIR%%/actions/menus/ObjectMenu/ClefMenu @dirrm %%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/Slurs -@dirrm %%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/Markings/TextMarks/Tempo Indications -@dirrm %%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/Markings/TextMarks/Dynamic Markings -@dirrm %%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/Markings/TextMarks -@dirrm %%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/Markings/Ornaments -@dirrm %%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/Markings/Metronome Markings -@dirrm %%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/Markings @dirrm %%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/Directives -@dirrm %%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/AddInterval +@dirrm %%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/ChangePrintDuration +@dirrm %%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/AddBelowTop +@dirrm %%DATADIR%%/actions/menus/ObjectMenu/ChordMenu/AddAboveBase @dirrm %%DATADIR%%/actions/menus/ObjectMenu/ChordMenu @dirrm %%DATADIR%%/actions/menus/ObjectMenu @dirrm %%DATADIR%%/actions/menus/MainMenu/ViewMenu/Zoom @@ -587,17 +1517,20 @@ @dirrm %%DATADIR%%/actions/menus/MainMenu/NavigationMenu/Cursor @dirrm %%DATADIR%%/actions/menus/MainMenu/NavigationMenu/Bookmarks @dirrm %%DATADIR%%/actions/menus/MainMenu/NavigationMenu -@dirrm %%DATADIR%%/actions/menus/MainMenu/ModeMenu/MIDI -@dirrm %%DATADIR%%/actions/menus/MainMenu/ModeMenu +@dirrm %%DATADIR%%/actions/menus/MainMenu/MoreMenu +@dirrm %%DATADIR%%/actions/menus/MainMenu/InputMenu/MIDI +@dirrm %%DATADIR%%/actions/menus/MainMenu/InputMenu @dirrm %%DATADIR%%/actions/menus/MainMenu/HelpMenu +@dirrm %%DATADIR%%/actions/menus/MainMenu/FileMenu/PrintMenu +@dirrm %%DATADIR%%/actions/menus/MainMenu/FileMenu/OpenMenu +@dirrm %%DATADIR%%/actions/menus/MainMenu/FileMenu/Import +@dirrm %%DATADIR%%/actions/menus/MainMenu/FileMenu @dirrm %%DATADIR%%/actions/menus/MainMenu/Educational/Note-Reading @dirrm %%DATADIR%%/actions/menus/MainMenu/Educational/MIDI -@dirrm %%DATADIR%%/actions/menus/MainMenu/Educational/Aural Training/Chord-Comparison @dirrm %%DATADIR%%/actions/menus/MainMenu/Educational/Aural Training/Identify-Scale-Note +@dirrm %%DATADIR%%/actions/menus/MainMenu/Educational/Aural Training/Chord-Comparison @dirrm %%DATADIR%%/actions/menus/MainMenu/Educational/Aural Training @dirrm %%DATADIR%%/actions/menus/MainMenu/Educational -@dirrm %%DATADIR%%/actions/menus/MainMenu/EditMenu/Transpose -@dirrm %%DATADIR%%/actions/menus/MainMenu/EditMenu/Shift @dirrm %%DATADIR%%/actions/menus/MainMenu/EditMenu/Select @dirrm %%DATADIR%%/actions/menus/MainMenu/EditMenu/KeyBindings @dirrm %%DATADIR%%/actions/menus/MainMenu/EditMenu @@ -607,5 +1540,246 @@ @dirrm %%DATADIR%%/actions/bitmaps @dirrm %%DATADIR%%/actions @dirrm %%DATADIR%% -@dirrmtry share/applications +@dirrm share/applications +@dirrm share/aclocal +@dirrm share +@dirrm sbin +@dirrmtry man/ru.KOI8-R/mann +@dirrmtry man/ru.KOI8-R/manl +@dirrmtry man/ru.KOI8-R/man9 +@dirrmtry man/ru.KOI8-R/man8 +@dirrmtry man/ru.KOI8-R/man7 +@dirrmtry man/ru.KOI8-R/man6 +@dirrmtry man/ru.KOI8-R/man5 +@dirrmtry man/ru.KOI8-R/man4 +@dirrmtry man/ru.KOI8-R/man3 +@dirrmtry man/ru.KOI8-R/man2 +@dirrmtry man/ru.KOI8-R/man1 +@dirrmtry man/ru.KOI8-R/catn +@dirrmtry man/ru.KOI8-R/catl +@dirrmtry man/ru.KOI8-R/cat9 +@dirrmtry man/ru.KOI8-R/cat8 +@dirrmtry man/ru.KOI8-R/cat7 +@dirrmtry man/ru.KOI8-R/cat6 +@dirrmtry man/ru.KOI8-R/cat5 +@dirrmtry man/ru.KOI8-R/cat4 +@dirrmtry man/ru.KOI8-R/cat3 +@dirrmtry man/ru.KOI8-R/cat2 +@dirrmtry man/ru.KOI8-R/cat1 +@dirrmtry man/ru.KOI8-R +@dirrmtry man/mann +@dirrmtry man/manl +@dirrmtry man/man9 +@dirrmtry man/man8 +@dirrmtry man/man7 +@dirrmtry man/man6 +@dirrmtry man/man5 +@dirrmtry man/man4 +@dirrmtry man/man3 +@dirrmtry man/man2 +@dirrmtry man/man1 +@dirrmtry man/ja/mann +@dirrmtry man/ja/manl +@dirrmtry man/ja/man9 +@dirrmtry man/ja/man8 +@dirrmtry man/ja/man7 +@dirrmtry man/ja/man6 +@dirrmtry man/ja/man5 +@dirrmtry man/ja/man4 +@dirrmtry man/ja/man3 +@dirrmtry man/ja/man2 +@dirrmtry man/ja/man1 +@dirrmtry man/ja/catn +@dirrmtry man/ja/catl +@dirrmtry man/ja/cat9 +@dirrmtry man/ja/cat8 +@dirrmtry man/ja/cat7 +@dirrmtry man/ja/cat6 +@dirrmtry man/ja/cat5 +@dirrmtry man/ja/cat4 +@dirrmtry man/ja/cat3 +@dirrmtry man/ja/cat2 +@dirrmtry man/ja/cat1 +@dirrmtry man/ja +@dirrmtry man/en.ISO8859-1/catn +@dirrmtry man/en.ISO8859-1/cat9/i386 +@dirrmtry man/en.ISO8859-1/cat9 +@dirrmtry man/en.ISO8859-1/cat8/i386 +@dirrmtry man/en.ISO8859-1/cat8 +@dirrmtry man/en.ISO8859-1/cat7 +@dirrmtry man/en.ISO8859-1/cat6 +@dirrmtry man/en.ISO8859-1/cat5 +@dirrmtry man/en.ISO8859-1/cat4/i386 +@dirrmtry man/en.ISO8859-1/cat4 +@dirrmtry man/en.ISO8859-1/cat3 +@dirrmtry man/en.ISO8859-1/cat2 +@dirrmtry man/en.ISO8859-1/cat1aout +@dirrmtry man/en.ISO8859-1/cat1 +@dirrmtry man/en.ISO8859-1 +@dirrmtry man/de.ISO8859-1/mann +@dirrmtry man/de.ISO8859-1/manl +@dirrmtry man/de.ISO8859-1/man9 +@dirrmtry man/de.ISO8859-1/man8 +@dirrmtry man/de.ISO8859-1/man7 +@dirrmtry man/de.ISO8859-1/man6 +@dirrmtry man/de.ISO8859-1/man5 +@dirrmtry man/de.ISO8859-1/man4 +@dirrmtry man/de.ISO8859-1/man3 +@dirrmtry man/de.ISO8859-1/man2 +@dirrmtry man/de.ISO8859-1/man1 +@dirrmtry man/de.ISO8859-1/catn +@dirrmtry man/de.ISO8859-1/catl +@dirrmtry man/de.ISO8859-1/cat9 +@dirrmtry man/de.ISO8859-1/cat8 +@dirrmtry man/de.ISO8859-1/cat7 +@dirrmtry man/de.ISO8859-1/cat6 +@dirrmtry man/de.ISO8859-1/cat5 +@dirrmtry man/de.ISO8859-1/cat4 +@dirrmtry man/de.ISO8859-1/cat3 +@dirrmtry man/de.ISO8859-1/cat2 +@dirrmtry man/de.ISO8859-1/cat1 +@dirrmtry man/de.ISO8859-1 +@dirrmtry man/catn +@dirrmtry man/catl +@dirrmtry man/cat9 +@dirrmtry man/cat8 +@dirrmtry man/cat7 +@dirrmtry man/cat6 +@dirrmtry man/cat5 +@dirrmtry man/cat4 +@dirrmtry man/cat3 +@dirrmtry man/cat2 +@dirrmtry man/cat1 +@dirrmtry man +@dirrm libexec +@dirrm libdata/pkgconfig +@dirrm libdata/ldconfig32 +@dirrm libdata/ldconfig +@dirrm libdata +@dirrm lib +@dirrm info +@dirrm include +@dirrm etc/pam.d +@dirrm etc/man.d +@dirrm etc/devd @dirrm %%ETCDIR%% +@dirrm etc +@dirrm bin +@exec mkdir -p %D/www +@exec mkdir -p %D/share/xml +@exec mkdir -p %D/share/skel +@exec mkdir -p %D/share/sgml +@exec mkdir -p %D/share/misc +@exec mkdir -p %D/%%JAVAJARDIR%% +@exec mkdir -p %D/share/emacs/site-lisp +@exec mkdir -p %D/share/doc/ja +@exec mkdir -p %D/share/dict +@exec mkdir -p %D/share/aclocal +@exec mkdir -p %D/sbin +@exec mkdir -p %D/man/ru.KOI8-R/mann +@exec mkdir -p %D/man/ru.KOI8-R/manl +@exec mkdir -p %D/man/ru.KOI8-R/man9 +@exec mkdir -p %D/man/ru.KOI8-R/man8 +@exec mkdir -p %D/man/ru.KOI8-R/man7 +@exec mkdir -p %D/man/ru.KOI8-R/man6 +@exec mkdir -p %D/man/ru.KOI8-R/man5 +@exec mkdir -p %D/man/ru.KOI8-R/man4 +@exec mkdir -p %D/man/ru.KOI8-R/man3 +@exec mkdir -p %D/man/ru.KOI8-R/man2 +@exec mkdir -p %D/man/ru.KOI8-R/man1 +@exec mkdir -p %D/man/ru.KOI8-R/catn +@exec mkdir -p %D/man/ru.KOI8-R/catl +@exec mkdir -p %D/man/ru.KOI8-R/cat9 +@exec mkdir -p %D/man/ru.KOI8-R/cat8 +@exec mkdir -p %D/man/ru.KOI8-R/cat7 +@exec mkdir -p %D/man/ru.KOI8-R/cat6 +@exec mkdir -p %D/man/ru.KOI8-R/cat5 +@exec mkdir -p %D/man/ru.KOI8-R/cat4 +@exec mkdir -p %D/man/ru.KOI8-R/cat3 +@exec mkdir -p %D/man/ru.KOI8-R/cat2 +@exec mkdir -p %D/man/ru.KOI8-R/cat1 +@exec mkdir -p %D/man/mann +@exec mkdir -p %D/man/manl +@exec mkdir -p %D/man/man9 +@exec mkdir -p %D/man/man8 +@exec mkdir -p %D/man/man7 +@exec mkdir -p %D/man/man6 +@exec mkdir -p %D/man/man5 +@exec mkdir -p %D/man/man4 +@exec mkdir -p %D/man/man3 +@exec mkdir -p %D/man/man2 +@exec mkdir -p %D/man/man1 +@exec mkdir -p %D/man/ja/mann +@exec mkdir -p %D/man/ja/manl +@exec mkdir -p %D/man/ja/man9 +@exec mkdir -p %D/man/ja/man8 +@exec mkdir -p %D/man/ja/man7 +@exec mkdir -p %D/man/ja/man6 +@exec mkdir -p %D/man/ja/man5 +@exec mkdir -p %D/man/ja/man4 +@exec mkdir -p %D/man/ja/man3 +@exec mkdir -p %D/man/ja/man2 +@exec mkdir -p %D/man/ja/man1 +@exec mkdir -p %D/man/ja/catn +@exec mkdir -p %D/man/ja/catl +@exec mkdir -p %D/man/ja/cat9 +@exec mkdir -p %D/man/ja/cat8 +@exec mkdir -p %D/man/ja/cat7 +@exec mkdir -p %D/man/ja/cat6 +@exec mkdir -p %D/man/ja/cat5 +@exec mkdir -p %D/man/ja/cat4 +@exec mkdir -p %D/man/ja/cat3 +@exec mkdir -p %D/man/ja/cat2 +@exec mkdir -p %D/man/ja/cat1 +@exec mkdir -p %D/man/en.ISO8859-1/catn +@exec mkdir -p %D/man/en.ISO8859-1/cat9/i386 +@exec mkdir -p %D/man/en.ISO8859-1/cat8/i386 +@exec mkdir -p %D/man/en.ISO8859-1/cat7 +@exec mkdir -p %D/man/en.ISO8859-1/cat6 +@exec mkdir -p %D/man/en.ISO8859-1/cat5 +@exec mkdir -p %D/man/en.ISO8859-1/cat4/i386 +@exec mkdir -p %D/man/en.ISO8859-1/cat3 +@exec mkdir -p %D/man/en.ISO8859-1/cat2 +@exec mkdir -p %D/man/en.ISO8859-1/cat1aout +@exec mkdir -p %D/man/en.ISO8859-1/cat1 +@exec mkdir -p %D/man/de.ISO8859-1/mann +@exec mkdir -p %D/man/de.ISO8859-1/manl +@exec mkdir -p %D/man/de.ISO8859-1/man9 +@exec mkdir -p %D/man/de.ISO8859-1/man8 +@exec mkdir -p %D/man/de.ISO8859-1/man7 +@exec mkdir -p %D/man/de.ISO8859-1/man6 +@exec mkdir -p %D/man/de.ISO8859-1/man5 +@exec mkdir -p %D/man/de.ISO8859-1/man4 +@exec mkdir -p %D/man/de.ISO8859-1/man3 +@exec mkdir -p %D/man/de.ISO8859-1/man2 +@exec mkdir -p %D/man/de.ISO8859-1/man1 +@exec mkdir -p %D/man/de.ISO8859-1/catn +@exec mkdir -p %D/man/de.ISO8859-1/catl +@exec mkdir -p %D/man/de.ISO8859-1/cat9 +@exec mkdir -p %D/man/de.ISO8859-1/cat8 +@exec mkdir -p %D/man/de.ISO8859-1/cat7 +@exec mkdir -p %D/man/de.ISO8859-1/cat6 +@exec mkdir -p %D/man/de.ISO8859-1/cat5 +@exec mkdir -p %D/man/de.ISO8859-1/cat4 +@exec mkdir -p %D/man/de.ISO8859-1/cat3 +@exec mkdir -p %D/man/de.ISO8859-1/cat2 +@exec mkdir -p %D/man/de.ISO8859-1/cat1 +@exec mkdir -p %D/man/catn +@exec mkdir -p %D/man/catl +@exec mkdir -p %D/man/cat9 +@exec mkdir -p %D/man/cat8 +@exec mkdir -p %D/man/cat7 +@exec mkdir -p %D/man/cat6 +@exec mkdir -p %D/man/cat5 +@exec mkdir -p %D/man/cat4 +@exec mkdir -p %D/man/cat3 +@exec mkdir -p %D/man/cat2 +@exec mkdir -p %D/man/cat1 +@exec mkdir -p %D/libexec +@exec mkdir -p %D/libdata/pkgconfig +@exec mkdir -p %D/libdata/ldconfig32 +@exec mkdir -p %D/libdata/ldconfig +@exec mkdir -p %D/info +@exec mkdir -p %D/etc/pam.d +@exec mkdir -p %D/etc/man.d +@exec mkdir -p %D/etc/devd --- files/patch-src__jackmidi.c.orig 2009-10-04 12:08:42.000000000 +0200 +++ files/patch-src__jackmidi.c 2011-05-07 10:44:43.000000000 +0200 @@ -1,10 +1,10 @@ ---- src/jackmidi.c.orig 2009-08-24 03:03:26.000000000 +0900 -+++ src/jackmidi.c 2009-09-28 15:42:09.000000000 +0900 -@@ -8,6 +8,7 @@ +--- src/jackmidi.c.orig 2011-04-27 19:59:45.083923000 +0200 ++++ src/jackmidi.c 2011-05-07 10:44:07.000000000 +0200 +@@ -7,6 +7,7 @@ #include #include #include +#include #include "exportmidi.h" + #include "jackmidi.h" #include "pitchentry.h" - #include "smf.h" --- files/patch-src__lolydirectives.c.orig 2009-10-04 12:08:42.000000000 +0200 +++ files/patch-src__lolydirectives.c 2011-05-07 12:57:23.000000000 +0200 @@ -1,11 +0,0 @@ ---- src/lilydirectives.c.orig 2009-08-24 03:03:26.000000000 +0900 -+++ src/lilydirectives.c 2009-09-28 17:25:00.000000000 +0900 -@@ -1966,7 +1966,7 @@ - return ret; - } - GError *error = (GError*)execute_script_file(filename); -- if(error) g_warning(error->message); -+ if(error) g_warning("%s", error->message); - g_free(filename); - return ret; - } --- files/patch-src__main.c.orig 2009-10-04 12:08:42.000000000 +0200 +++ files/patch-src__main.c 2011-05-07 13:00:02.000000000 +0200 @@ -1,27 +0,0 @@ ---- src/main.c.orig 2009-08-24 03:03:26.000000000 +0900 -+++ src/main.c 2009-09-28 17:25:00.000000000 +0900 -@@ -549,7 +549,7 @@ - g_print("opt %c has %s\n", opts, argv[optind]); - if (opts == 'h') - { -- g_print (helptext); -+ g_print ("%s", helptext); - exit (0); - } - else if (opts == 's') -@@ -573,13 +573,13 @@ - { - g_print (_("\nGNU Denemo version ")); - g_print (VERSION ".\n\n"); -- g_print (copytext); -+ g_print ("%s", copytext); - exit (0); - } - } - - g_print (_("\nGNU Denemo, a gtk+ frontend for GNU Lilypond\n")); -- g_print (copytext); -+ g_print ("%s", copytext); - - g_free (helptext); - --- files/patch-src__midi.c.orig 2010-04-16 15:16:59.000000000 +0200 +++ files/patch-src__midi.c 2011-05-07 13:00:02.000000000 +0200 @@ -1,11 +0,0 @@ ---- ./src/midi.c.orig 2010-04-06 23:54:58.000000000 -0400 -+++ ./src/midi.c 2010-04-06 23:56:14.000000000 -0400 -@@ -370,7 +370,7 @@ - if(channel) - g_io_channel_shutdown(channel, FALSE, &error); - if(error) -- g_warning(error->message); -+ g_warning("%s", error->message); - else - channel = NULL; - return 0; --- files/patch-src__mousing.c.orig 2009-10-04 12:08:42.000000000 +0200 +++ files/patch-src__mousing.c 2011-05-07 10:52:31.000000000 +0200 @@ -1,7 +1,7 @@ ---- src/mousing.c.orig 2009-08-24 03:03:26.000000000 +0900 -+++ src/mousing.c 2009-09-28 18:48:47.000000000 +0900 -@@ -177,8 +177,11 @@ - && pi->measure_number >= si->rightmeasurenum); +--- src/mousing.c.orig 2011-04-27 19:59:45.127257000 +0200 ++++ src/mousing.c 2011-05-07 10:52:03.000000000 +0200 +@@ -202,8 +202,11 @@ + && pi->measure_number >= rightmeasurenum); pi->the_staff = g_list_nth (si->thescore, pi->staff_number - 1); - pi->the_measure --- /dev/null 2011-05-07 13:00:02.000000000 +0200 +++ files/patch-src__pitchentry.c 2011-05-07 11:03:32.000000000 +0200 @@ -0,0 +1,13 @@ +--- src/pitchentry.c.orig 2011-04-27 19:59:45.153923000 +0200 ++++ src/pitchentry.c 2011-05-07 11:02:38.000000000 +0200 +@@ -14,7 +14,9 @@ + #define DEFAULT_HIGH (4500.0) + #define DEFAULT_LOW (60.0) + #define DEFAULT_TIMER_RATE (50) +- ++#ifndef log2(x) ++ #define log2(x) (log(x)/log(2)) ++#endif + + static GtkWidget *PR_window = NULL;/* a top level window for controlling pitch-recognition entry. + We do not create one of these for each view (ie each DenemoGUI object, ie each score) because there is only one audio input source being used, so we would have to cope with resource contention issues, there is just no point. */ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat May 7 11:30:30 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5D3FE106566B; Sat, 7 May 2011 11:30:30 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 34D278FC18; Sat, 7 May 2011 11:30:30 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p47BUUvo016755; Sat, 7 May 2011 11:30:30 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p47BUUNf016742; Sat, 7 May 2011 11:30:30 GMT (envelope-from edwin) Date: Sat, 7 May 2011 11:30:30 GMT Message-Id: <201105071130.p47BUUNf016742@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-multimedia@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156861: audio/denemo: update from 0.8.14_1 to 0.9.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 May 2011 11:30:30 -0000 Synopsis: audio/denemo: update from 0.8.14_1 to 0.9.0 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-multimedia Responsible-Changed-By: edwin Responsible-Changed-When: Sat May 7 11:30:29 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156861 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat May 7 12:40:08 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D427E1065672 for ; Sat, 7 May 2011 12:40:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B1B768FC15 for ; Sat, 7 May 2011 12:40:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p47Ce8Po081980 for ; Sat, 7 May 2011 12:40:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p47Ce8NX081979; Sat, 7 May 2011 12:40:08 GMT (envelope-from gnats) Resent-Date: Sat, 7 May 2011 12:40:08 GMT Resent-Message-Id: <201105071240.p47Ce8NX081979@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Ruslan Mahmatkhanov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AC060106564A for ; Sat, 7 May 2011 12:32:09 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 909288FC14 for ; Sat, 7 May 2011 12:32:09 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p47CW9pq038689 for ; Sat, 7 May 2011 12:32:09 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p47CW8so038688; Sat, 7 May 2011 12:32:08 GMT (envelope-from nobody) Message-Id: <201105071232.p47CW8so038688@red.freebsd.org> Date: Sat, 7 May 2011 12:32:08 GMT From: Ruslan Mahmatkhanov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156862: [UPDATE] security/gtkpasman: update to 0.11 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 May 2011 12:40:08 -0000 >Number: 156862 >Category: ports >Synopsis: [UPDATE] security/gtkpasman: update to 0.11 >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 May 07 12:40:08 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Ruslan Mahmatkhanov >Release: 9.0-CURRENT >Organization: >Environment: 9.0-CURRENT i386 >Description: - update to 0.11 - use gnupg2 - add -with-gtk2 to CONFIGURE_ARGS since gtkpasman looking for gtk30 by default - install desktop-file to be able to call gtkpasman from menu - show pkg-message only when NOPORTDOCS is not defined - use %%DOCSDIR%% instead of full path in pkg-message - couple of whitespace fixes in pkg-descr >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruNa gtkpasman.orig/Makefile gtkpasman/Makefile --- gtkpasman.orig/Makefile 2010-12-04 10:33:25.000000000 +0300 +++ gtkpasman/Makefile 2011-05-07 16:23:11.000000000 +0400 @@ -6,26 +6,26 @@ # PORTNAME= gtkpasman -PORTVERSION= 0.9 -PORTREVISION= 8 +PORTVERSION= 0.11 CATEGORIES= security MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-sources/${PORTVERSION} MAINTAINER= phil@teaser.fr COMMENT= A GTK+ passwords manager for system and network administrators -RUN_DEPENDS+= gpgv:${PORTSDIR}/security/gnupg1 +RUN_DEPENDS+= gpgv2:${PORTSDIR}/security/gnupg USE_GMAKE= yes -USE_GNOME= gtk20 +USE_GNOME= desktopfileutils gtk20 GNU_CONFIGURE= yes +CONFIGURE_ARGS+= --with-gtk2 USE_AUTOTOOLS= automake aclocal autoconf SUB_FILES= pkg-message PKGMESSAGE= ${WRKDIR}/pkg-message -DOCS= README src/gpasman4.sample -PLIST_FILES= bin/gtkpasman +DOCS= README data/gpasman4.sample +PLIST_FILES= bin/gtkpasman share/applications/gtkpasman.desktop ACLOCAL_ARGS?= --acdir=${ACLOCAL_DIR} -I ${LOCALBASE}/share/aclocal .if !defined(NOPORTDOCS) @@ -34,12 +34,17 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/gtkpasman ${PREFIX}/bin + ${INSTALL_DATA} ${WRKSRC}/data/gtkpasman.desktop \ + ${PREFIX}/share/applications .if !defined(NOPORTDOCS) ${MKDIR} ${DOCSDIR} ${INSTALL_MAN} ${DOCS:S,^,${WRKSRC}/,} ${DOCSDIR} .endif post-install: +.if !defined(NOPORTDOCS) @${CAT} ${PKGMESSAGE} +.endif + @-update-desktop-database .include diff -ruNa gtkpasman.orig/distinfo gtkpasman/distinfo --- gtkpasman.orig/distinfo 2007-02-06 19:03:42.000000000 +0300 +++ gtkpasman/distinfo 2011-05-07 16:04:56.000000000 +0400 @@ -1,3 +1,2 @@ -MD5 (gtkpasman-0.9.tar.gz) = dbf4f01d80939b397460b25d0b654b36 -SHA256 (gtkpasman-0.9.tar.gz) = 54e3f663eb84a9ab1d681bf9197c011e1df0438b2632dfd5f835247cd254e57a -SIZE (gtkpasman-0.9.tar.gz) = 123727 +SHA256 (gtkpasman-0.11.tar.gz) = a2514a96ca195f1e0834dea573119e97c48104ef2a6f6fd512ee045bcb03a3a2 +SIZE (gtkpasman-0.11.tar.gz) = 117037 diff -ruNa gtkpasman.orig/files/pkg-message.in gtkpasman/files/pkg-message.in --- gtkpasman.orig/files/pkg-message.in 2005-10-05 21:21:11.000000000 +0400 +++ gtkpasman/files/pkg-message.in 2011-05-07 16:15:05.000000000 +0400 @@ -2,7 +2,7 @@ ##################################################################### This port installs a sample password file in the following location: -%%PREFIX%%/share/doc/gtkpasman/ +%%DOCSDIR%% You may find this file useful while making your own password file. Also note that the File->Open function is not implemented yet. diff -ruNa gtkpasman.orig/pkg-descr gtkpasman/pkg-descr --- gtkpasman.orig/pkg-descr 2007-02-06 19:03:42.000000000 +0300 +++ gtkpasman/pkg-descr 2011-05-07 16:17:50.000000000 +0400 @@ -1,8 +1,8 @@ -The purpose of Gtkpasman is to provide system and network administrators a +The purpose of Gtkpasman is to provide system and network administrators a convenient tool to manage a passwords knowledge base related to customers, servers, services... It can help to retrieve passwords, or even connect to servers (ssh, telnet, ftp). -Passwords must be kept in a gnupg crypted file. The structure of the file is +Passwords must be kept in a gnupg crypted file. The structure of the file is predefined, but very easy to edit and maintain. WWW: http://gtkpasman.sourceforge.net/ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat May 7 12:40:26 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E0373106567C; Sat, 7 May 2011 12:40:26 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B7F8E8FC0A; Sat, 7 May 2011 12:40:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p47CeQ9A083849; Sat, 7 May 2011 12:40:26 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p47CeQBx083837; Sat, 7 May 2011 12:40:26 GMT (envelope-from edwin) Date: Sat, 7 May 2011 12:40:26 GMT Message-Id: <201105071240.p47CeQBx083837@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156862: [UPDATE] security/gtkpasman: update to 0.11 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 May 2011 12:40:27 -0000 Synopsis: [UPDATE] security/gtkpasman: update to 0.11 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Sat May 7 12:40:26 UTC 2011 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156862 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat May 7 14:20:15 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B4108106564A; Sat, 7 May 2011 14:20:15 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8C2148FC13; Sat, 7 May 2011 14:20:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p47EKFut071786; Sat, 7 May 2011 14:20:15 GMT (envelope-from bapt@freefall.freebsd.org) Received: (from bapt@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p47EKFQq071776; Sat, 7 May 2011 14:20:15 GMT (envelope-from bapt) Date: Sat, 7 May 2011 14:20:15 GMT Message-Id: <201105071420.p47EKFQq071776@freefall.freebsd.org> To: bapt@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, bapt@FreeBSD.org From: bapt@FreeBSD.org Cc: Subject: Re: ports/156859: graphics/mupdf: updates to 0.8.165 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 May 2011 14:20:15 -0000 Synopsis: graphics/mupdf: updates to 0.8.165 Responsible-Changed-From-To: freebsd-ports-bugs->bapt Responsible-Changed-By: bapt Responsible-Changed-When: Sat May 7 14:20:15 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=156859 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat May 7 14:30:15 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 630391065673 for ; Sat, 7 May 2011 14:30:15 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 264548FC18 for ; Sat, 7 May 2011 14:30:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p47EUETm080166 for ; Sat, 7 May 2011 14:30:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p47EUE0n080163; Sat, 7 May 2011 14:30:14 GMT (envelope-from gnats) Resent-Date: Sat, 7 May 2011 14:30:14 GMT Resent-Message-Id: <201105071430.p47EUE0n080163@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Chris Howey Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 66694106566C for ; Sat, 7 May 2011 14:25:44 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 5631F8FC14 for ; Sat, 7 May 2011 14:25:44 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p47EPi4D099227 for ; Sat, 7 May 2011 14:25:44 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p47EPi4I099226; Sat, 7 May 2011 14:25:44 GMT (envelope-from nobody) Message-Id: <201105071425.p47EPi4I099226@red.freebsd.org> Date: Sat, 7 May 2011 14:25:44 GMT From: Chris Howey To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156863: [maintainer update] Updating port: sysutils/parallel - New Version (20110422) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 May 2011 14:30:15 -0000 >Number: 156863 >Category: ports >Synopsis: [maintainer update] Updating port: sysutils/parallel - New Version (20110422) >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 May 07 14:30:14 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Chris Howey >Release: 8.1-RELEASE >Organization: N/A >Environment: FreeBSD tinny-asus 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Mon Jul 19 02:55:53 UTC 2010 root@almeida.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: Modified files: sysutils/parallel Makefile distinfo Update to 20110422 Changes: http://savannah.gnu.org/forum/forum.php?forum_id=6793 >How-To-Repeat: N/A >Fix: Patch included. Patch attached with submission follows: diff -ruN parallel.bak/Makefile parallel/Makefile --- parallel.bak/Makefile 2011-03-24 07:37:18.000000000 -0600 +++ parallel/Makefile 2011-05-07 08:15:49.000000000 -0600 @@ -6,7 +6,7 @@ # PORTNAME= parallel -PORTVERSION= 20110322 +PORTVERSION= 20110422 CATEGORIES= sysutils MASTER_SITES= GNU diff -ruN parallel.bak/distinfo parallel/distinfo --- parallel.bak/distinfo 2011-03-24 07:37:18.000000000 -0600 +++ parallel/distinfo 2011-05-07 08:15:56.000000000 -0600 @@ -1,2 +1,2 @@ -SHA256 (parallel-20110322.tar.bz2) = 79f973daaddcae2aed67be198d15088f55787e8f4133b24d0a2642ca11f39e7d -SIZE (parallel-20110322.tar.bz2) = 163481 +SHA256 (parallel-20110422.tar.bz2) = 93de16270d6d68504b1e66893838f499c5120c75cf02efabbceb564a1520dfe7 +SIZE (parallel-20110422.tar.bz2) = 165993 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat May 7 15:12:30 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 82009106566C; Sat, 7 May 2011 15:12:30 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 59E208FC08; Sat, 7 May 2011 15:12:30 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p47FCUZi024366; Sat, 7 May 2011 15:12:30 GMT (envelope-from bapt@freefall.freebsd.org) Received: (from bapt@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p47FCUOH024362; Sat, 7 May 2011 15:12:30 GMT (envelope-from bapt) Date: Sat, 7 May 2011 15:12:30 GMT Message-Id: <201105071512.p47FCUOH024362@freefall.freebsd.org> To: bapt@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, bapt@FreeBSD.org From: bapt@FreeBSD.org Cc: Subject: Re: ports/156644: New port: dns/adsuck DNS ad blocking. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 May 2011 15:12:30 -0000 Synopsis: New port: dns/adsuck DNS ad blocking. Responsible-Changed-From-To: freebsd-ports-bugs->bapt Responsible-Changed-By: bapt Responsible-Changed-When: Sat May 7 15:12:29 UTC 2011 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=156644 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat May 7 15:26:05 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3B42F1065672; Sat, 7 May 2011 15:26:05 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1145A8FC0A; Sat, 7 May 2011 15:26:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p47FQ414034518; Sat, 7 May 2011 15:26:04 GMT (envelope-from bapt@freefall.freebsd.org) Received: (from bapt@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p47FQ4lG034514; Sat, 7 May 2011 15:26:04 GMT (envelope-from bapt) Date: Sat, 7 May 2011 15:26:04 GMT Message-Id: <201105071526.p47FQ4lG034514@freefall.freebsd.org> To: neeraj.verma.ports@vermatech.com, bapt@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: bapt@FreeBSD.org Cc: Subject: Re: ports/151467: New port: sysutils/autojump acts as a complement to cd X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 May 2011 15:26:05 -0000 Synopsis: New port: sysutils/autojump acts as a complement to cd State-Changed-From-To: open->feedback State-Changed-By: bapt State-Changed-When: Sat May 7 15:25:42 UTC 2011 State-Changed-Why: Waiting for sender feedback http://www.freebsd.org/cgi/query-pr.cgi?pr=151467 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat May 7 15:30:11 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6819C106566C for ; Sat, 7 May 2011 15:30:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 402288FC0A for ; Sat, 7 May 2011 15:30:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p47FUBga034640 for ; Sat, 7 May 2011 15:30:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p47FUBpo034639; Sat, 7 May 2011 15:30:11 GMT (envelope-from gnats) Resent-Date: Sat, 7 May 2011 15:30:11 GMT Resent-Message-Id: <201105071530.p47FUBpo034639@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, James Bailie Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 70E82106564A for ; Sat, 7 May 2011 15:22:57 +0000 (UTC) (envelope-from jimmy@mammothcheese.ca) Received: from nm23-vm0.access.bullet.mail.mud.yahoo.com (nm23-vm0.access.bullet.mail.mud.yahoo.com [66.94.236.141]) by mx1.freebsd.org (Postfix) with SMTP id 2F7728FC08 for ; Sat, 7 May 2011 15:22:56 +0000 (UTC) Received: from [66.94.237.194] by nm23.access.bullet.mail.mud.yahoo.com with NNFMP; 07 May 2011 15:10:13 -0000 Received: from [66.94.237.103] by tm5.access.bullet.mail.mud.yahoo.com with NNFMP; 07 May 2011 15:10:13 -0000 Received: from [127.0.0.1] by omp1008.access.mail.mud.yahoo.com with NNFMP; 07 May 2011 15:10:13 -0000 Received: (qmail 12756 invoked from network); 7 May 2011 15:10:13 -0000 Received: from localhost (jimmy@99.255.2.249 with login) by smtp105.rog.mail.bf1.yahoo.com with SMTP; 07 May 2011 08:10:11 -0700 PDT Received: by localhost (sSMTP sendmail emulation); Sat, 07 May 2011 11:10:11 -0400 Message-Id: <57113.11797.qm@smtp105.rog.mail.bf1.yahoo.com> Date: Sat, 07 May 2011 11:10:11 -0400 From: "Charlie &" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/156864: Update Port: www/ephemera => 2.9 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: James Bailie List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 May 2011 15:30:11 -0000 >Number: 156864 >Category: ports >Synopsis: Update Port: www/ephemera => 2.9 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat May 07 15:30:10 UTC 2011 >Closed-Date: >Last-Modified: >Originator: James Bailie >Release: FreeBSD 8.2-STABLE amd64 >Organization: >Environment: System: FreeBSD localhost 8.2-STABLE FreeBSD 8.2-STABLE #9: Sat Apr 16 09:01:27 EDT 2011 jbailie@localhost:/usr/obj/usr/src/sys/GENERIC amd64 >Description: >How-To-Repeat: >Fix: --- ephemera.diff begins here --- diff -ruN /usr/ports/www/ephemera/Makefile ./ephemera/Makefile --- /usr/ports/www/ephemera/Makefile 2011-04-29 19:49:54.000000000 -0400 +++ ./ephemera/Makefile 2011-05-03 19:04:23.000000000 -0400 @@ -6,7 +6,7 @@ # PORTNAME= ephemera -PORTVERSION= 2.8 +PORTVERSION= 2.9 CATEGORIES= www MASTER_SITES= http://www.mammothcheese.ca/ diff -ruN /usr/ports/www/ephemera/distinfo ./ephemera/distinfo --- /usr/ports/www/ephemera/distinfo 2011-04-29 19:49:54.000000000 -0400 +++ ./ephemera/distinfo 2011-05-07 11:09:05.000000000 -0400 @@ -1,2 +1,2 @@ -SHA256 (ephemera-2.8.tar.gz) = c12b52b00969e3356839411f5286d98ee09b49f7b6867ad745961d0df2f2baa5 -SIZE (ephemera-2.8.tar.gz) = 27097 +SHA256 (ephemera-2.9.tar.gz) = a534af8946e28b815d1cf1fdbb80d39c7f7f5d33593a0847e393db645bd215fb +SIZE (ephemera-2.9.tar.gz) = 27114 --- ephemera.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat May 7 15:30:12 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E0EBC1065675 for ; Sat, 7 May 2011 15:30:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B8EE48FC13 for ; Sat, 7 May 2011 15:30:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p47FUBqD034671 for ; Sat, 7 May 2011 15:30:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p47FUBEA034668; Sat, 7 May 2011 15:30:11 GMT (envelope-from gnats) Resent-Date: Sat, 7 May 2011 15:30:11 GMT Resent-Message-Id: <201105071530.p47FUBEA034668@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, James Bailie Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DD8E51065673 for ; Sat, 7 May 2011 15:24:24 +0000 (UTC) (envelope-from jimmy@mammothcheese.ca) Received: from nm11-vm0.access.bullet.mail.mud.yahoo.com (nm11-vm0.access.bullet.mail.mud.yahoo.com [66.94.236.9]) by mx1.freebsd.org (Postfix) with SMTP id 817708FC19 for ; Sat, 7 May 2011 15:24:24 +0000 (UTC) Received: from [66.94.237.127] by nm11.access.bullet.mail.mud.yahoo.com with NNFMP; 07 May 2011 15:11:10 -0000 Received: from [66.94.237.108] by tm2.access.bullet.mail.mud.yahoo.com with NNFMP; 07 May 2011 15:11:10 -0000 Received: from [127.0.0.1] by omp1013.access.mail.mud.yahoo.com with NNFMP; 07 May 2011 15:11:10 -0000 Received: (qmail 13601 invoked from network); 7 May 2011 15:11:10 -0000 Received: from localhost (jimmy@99.255.2.249 with login) by smtp107.rog.mail.bf1.yahoo.com with SMTP; 07 May 2011 08:11:09 -0700 PDT Received: by localhost (sSMTP sendmail emulation); Sat, 07 May 2011 11:11:08 -0400 Message-Id: <265796.154.qm@smtp107.rog.mail.bf1.yahoo.com> Date: Sat, 07 May 2011 11:11:08 -0400 From: "Charlie &" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/156865: Update Port: lang/munger => 4.186 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: James Bailie List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 May 2011 15:30:12 -0000 >Number: 156865 >Category: ports >Synopsis: Update Port: lang/munger => 4.186 >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 May 07 15:30:11 UTC 2011 >Closed-Date: >Last-Modified: >Originator: James Bailie >Release: FreeBSD 8.2-STABLE amd64 >Organization: >Environment: System: FreeBSD localhost 8.2-STABLE FreeBSD 8.2-STABLE #9: Sat Apr 16 09:01:27 EDT 2011 jbailie@localhost:/usr/obj/usr/src/sys/GENERIC amd64 >Description: >How-To-Repeat: >Fix: --- munger.diff begins here --- diff -ruN /usr/ports/lang/munger/Makefile ./munger/Makefile --- /usr/ports/lang/munger/Makefile 2011-04-29 19:45:48.000000000 -0400 +++ ./munger/Makefile 2011-05-07 10:47:24.000000000 -0400 @@ -6,7 +6,7 @@ # PORTNAME= munger -PORTVERSION= 4.184 +PORTVERSION= 4.186 CATEGORIES= lang MASTER_SITES= http://www.mammothcheese.ca/ diff -ruN /usr/ports/lang/munger/distinfo ./munger/distinfo --- /usr/ports/lang/munger/distinfo 2011-04-29 19:45:48.000000000 -0400 +++ ./munger/distinfo 2011-05-07 10:56:27.000000000 -0400 @@ -1,2 +1,2 @@ -SHA256 (munger-4.184.tar.gz) = a5c108c787f753d97c974aeef2031d94152b52d6bc599cc12d0fa6761677f1dd -SIZE (munger-4.184.tar.gz) = 217348 +SHA256 (munger-4.186.tar.gz) = c5da1c5066f981c76266e44ae29f2269be8c5b65b5f1c5eddb6af834ea86b378 +SIZE (munger-4.186.tar.gz) = 217203 diff -ruN /usr/ports/lang/munger/pkg-plist ./munger/pkg-plist --- /usr/ports/lang/munger/pkg-plist 2011-04-29 19:45:48.000000000 -0400 +++ ./munger/pkg-plist 2011-05-07 10:47:28.000000000 -0400 @@ -1,5 +1,5 @@ bin/munger -lib/libmunger.so.69 +lib/libmunger.so.71 %%DATADIR%%/httpd.munger %%DATADIR%%/echo.munger %%DATADIR%%/xml2alist.munger --- munger.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat May 7 15:30:54 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9742F10657A6; Sat, 7 May 2011 15:30:54 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6E6F98FC15; Sat, 7 May 2011 15:30:54 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p47FUsMM038716; Sat, 7 May 2011 15:30:54 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p47FUspg038712; Sat, 7 May 2011 15:30:54 GMT (envelope-from edwin) Date: Sat, 7 May 2011 15:30:54 GMT Message-Id: <201105071530.p47FUspg038712@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, tabthorpe@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156864: Update Port: www/ephemera => 2.9 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 May 2011 15:30:54 -0000 Synopsis: Update Port: www/ephemera => 2.9 Responsible-Changed-From-To: freebsd-ports-bugs->tabthorpe Responsible-Changed-By: edwin Responsible-Changed-When: Sat May 7 15:30:53 UTC 2011 Responsible-Changed-Why: tabthorpe@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156864 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat May 7 15:31:02 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C53AC106566B; Sat, 7 May 2011 15:31:02 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9C6378FC08; Sat, 7 May 2011 15:31:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p47FV2DY039330; Sat, 7 May 2011 15:31:02 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p47FV2I7039320; Sat, 7 May 2011 15:31:02 GMT (envelope-from edwin) Date: Sat, 7 May 2011 15:31:02 GMT Message-Id: <201105071531.p47FV2I7039320@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, tabthorpe@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156865: Update Port: lang/munger => 4.186 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 May 2011 15:31:02 -0000 Synopsis: Update Port: lang/munger => 4.186 Responsible-Changed-From-To: freebsd-ports-bugs->tabthorpe Responsible-Changed-By: edwin Responsible-Changed-When: Sat May 7 15:31:01 UTC 2011 Responsible-Changed-Why: tabthorpe@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156865 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat May 7 16:50:02 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B2427106566C for ; Sat, 7 May 2011 16:50:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8C0BB8FC16 for ; Sat, 7 May 2011 16:50:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p47Go2ZU007942 for ; Sat, 7 May 2011 16:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p47Go2bL007941; Sat, 7 May 2011 16:50:02 GMT (envelope-from gnats) Resent-Date: Sat, 7 May 2011 16:50:02 GMT Resent-Message-Id: <201105071650.p47Go2bL007941@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Alex Deiter Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 14C5B1065672 for ; Sat, 7 May 2011 16:48:13 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id EE7898FC17 for ; Sat, 7 May 2011 16:48:12 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p47GmCia026555 for ; Sat, 7 May 2011 16:48:12 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p47GmCUE026554; Sat, 7 May 2011 16:48:12 GMT (envelope-from nobody) Message-Id: <201105071648.p47GmCUE026554@red.freebsd.org> Date: Sat, 7 May 2011 16:48:12 GMT From: Alex Deiter To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156866: [PATCH] change cachedir location/permission for print/cups-base X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 May 2011 16:50:02 -0000 >Number: 156866 >Category: ports >Synopsis: [PATCH] change cachedir location/permission for print/cups-base >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 May 07 16:50:02 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Alex Deiter >Release: 9.0-CURRENT-r221271 >Organization: Fine Solution >Environment: FreeBSD blackbox.deiter.ru 9.0-CURRENT-r221271 FreeBSD 9.0-CURRENT-r221271 #0: Sun May 1 11:01:45 MSD 2011 root@blackbox.deiter.net.ru:/usr/obj/usr/src/sys/BLACKBOX i386 >Description: 1. Change default location for Cups cachedir from /var/cache/cups to /var/db/cups according to man 7 hier: /var/ multi-purpose log, temporary, transient, and spool files db/ miscellaneous automatically generated system-spe‐ cific database files 2. Change permission for Cups cachedir from 755 to 775: Cups original cups-1.4.6/scheduler/Makefile used 775 permission for cups CACHEDIR: echo Creating $(CACHEDIR)... $(INSTALL_DIR) -m 775 -g $(CUPS_GROUP) $(CACHEDIR) with 755 permission we have errors in cups errorlog: E [07/May/2011:18:57:55 +0400] [cups-driverd] Unable to write "/var/cache/cups/ppds.dat" - Permission denied Could you please review attached patch ? >How-To-Repeat: cd /usr/ports/print/cups-base && make install >Fix: cd /usr/ports/print/cups-base && patch -p0 < patch-cups-cachedir.txt && make install Patch attached with submission follows: --- Makefile.orig 2011-05-07 19:28:06.081328256 +0400 +++ Makefile 2011-05-07 20:08:21.721264845 +0400 @@ -37,6 +37,7 @@ --with-icondir=${PREFIX}/share/icons \ --with-menudir=${DESKTOPDIR} \ --with-domainsocket=${CUPS_SOCKET} \ + --with-cachedir=${CUPS_CACHEDIR} \ --with-pam-module="unix" \ --enable-ssl @@ -54,6 +55,7 @@ XDG_OPEN "Build with XDG_OPEN as browser" off CUPS_ETCDIR= ${PREFIX}/etc/cups +CUPS_CACHEDIR?= /var/db/cups CUPS_SPOOLDIR= /var/spool/cups CUPS_SOCKET?= /var/run/cups.sock WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION} @@ -107,6 +109,7 @@ BUILD_DEPENDS+= ${LOCALBASE}/lib/libcups.a:${PORTSDIR}/${PKGCATEGORY}/cups-client COMMENT2= Server USE_RC_SUBR= cupsd +PLIST_SUB+= CACHEDIR="${CUPS_CACHEDIR}" .if ${ARCH} == "ia64" BROKEN= stack-protector not supported on ia64 .endif @@ -377,8 +380,7 @@ ${INSTALL} -d ${CUPS_SPOOLDIR}/tmp/ ${CHOWN} -R ${CUPSOWN}:${CUPSGRP} ${CUPS_SPOOLDIR}/ ${CHMOD} -R g+w ${CUPS_SPOOLDIR}/ - ${INSTALL} -d /var/cache/cups/ - ${CHOWN} root:${CUPSGRP} /var/cache/cups/ + ${INSTALL} -d -m 775 -g ${CUPSGRP} ${CUPS_CACHEDIR} .endif .if defined(CUPS_CLIENT) --- pkg-plist.orig 2011-05-07 19:42:51.096314756 +0400 +++ pkg-plist 2011-05-07 19:56:40.569382232 +0400 @@ -3,15 +3,15 @@ @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 /var/cache/cups || true -@exec chown root:cups /var/cache/cups +@exec mkdir -p %%CACHEDIR%% || true +@exec chown root:cups %%CACHEDIR%% +@exec chmod 775 %%CACHEDIR%% @exec mkdir -p /var/log/cups || true @exec chown cups:daemon /var/log/cups @exec mkdir -p %D/etc/cups/ppd || true @exec mkdir -p %D/etc/cups/interfaces || true @unexec rm -rf /var/spool/cups 2>/dev/null || true -@unexec rm -rf /var/cache/cups 2>/dev/null || true -@unexec rmdir /var/cache 2>/dev/null || true +@unexec rm -rf %%CACHEDIR%% 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 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat May 7 16:50:12 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9D694106566B; Sat, 7 May 2011 16:50:12 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 740158FC0A; Sat, 7 May 2011 16:50:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p47GoCOb008615; Sat, 7 May 2011 16:50:12 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p47GoC4e008606; Sat, 7 May 2011 16:50:12 GMT (envelope-from edwin) Date: Sat, 7 May 2011 16:50:12 GMT Message-Id: <201105071650.p47GoC4e008606@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, dinoex@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156866: [PATCH] change cachedir location/permission for print/cups-base X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 May 2011 16:50:12 -0000 Synopsis: [PATCH] change cachedir location/permission for print/cups-base Responsible-Changed-From-To: freebsd-ports-bugs->dinoex Responsible-Changed-By: edwin Responsible-Changed-When: Sat May 7 16:50:11 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156866 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat May 7 17:00:17 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B50B81065673 for ; Sat, 7 May 2011 17:00:17 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8CF668FC14 for ; Sat, 7 May 2011 17:00:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p47H0HeI016235 for ; Sat, 7 May 2011 17:00:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p47H0Hbs016234; Sat, 7 May 2011 17:00:17 GMT (envelope-from gnats) Resent-Date: Sat, 7 May 2011 17:00:17 GMT Resent-Message-Id: <201105071700.p47H0Hbs016234@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Grzegorz Blach" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3325A106566C for ; Sat, 7 May 2011 16:52:38 +0000 (UTC) (envelope-from magik@roorback.net) Received: from mail-ey0-f182.google.com (mail-ey0-f182.google.com [209.85.215.182]) by mx1.freebsd.org (Postfix) with ESMTP id B9DA18FC14 for ; Sat, 7 May 2011 16:52:37 +0000 (UTC) Received: by eyg7 with SMTP id 7so1638033eyg.13 for ; Sat, 07 May 2011 09:52:36 -0700 (PDT) Received: by 10.213.25.199 with SMTP id a7mr1616416ebc.30.1304787156073; Sat, 07 May 2011 09:52:36 -0700 (PDT) Received: from silver.nine (89-72-104-219.dynamic.chello.pl [89.72.104.219]) by mx.google.com with ESMTPS id r12sm2191033eeb.4.2011.05.07.09.52.34 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 07 May 2011 09:52:35 -0700 (PDT) Message-Id: <1304787155.99129@silver.nine> Date: Sat, 7 May 2011 18:52:35 +0200 From: "Grzegorz Blach" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.4.9 Cc: Subject: ports/156867: Port www/p5-Dancer-Plugin-Feed updated from 0.2 to 0.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 May 2011 17:00:17 -0000 >Number: 156867 >Category: ports >Synopsis: Port www/p5-Dancer-Plugin-Feed updated from 0.2 to 0.3 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat May 07 17:00:16 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Grzegorz Blach >Release: FreeBSD 8.2-RELEASE amd64 >Organization: >Environment: System: FreeBSD 8.2-RELEASE #8 r218743: Wed Feb 16 19:24:02 CET 2011 magik@silver.nine:/usr/obj/usr/src/sys/SILVER >Description: As in summary: www/p5-Dancer-Plugin-Feed updated from 0.2 to 0.3 >How-To-Repeat: >Fix: --- p5-Dancer-Plugin-Feed.diff.txt begins here --- diff -x .svn -ruN /var/cache/portshaker/ports/www/p5-Dancer-Plugin-Feed/Makefile www/p5-Dancer-Plugin-Feed/Makefile --- /var/cache/portshaker/ports/www/p5-Dancer-Plugin-Feed/Makefile 2011-04-28 09:51:19.000000000 +0200 +++ www/p5-Dancer-Plugin-Feed/Makefile 2011-05-07 18:41:12.079473837 +0200 @@ -6,7 +6,7 @@ # PORTNAME= Dancer-Plugin-Feed -PORTVERSION= 0.2 +PORTVERSION= 0.3 CATEGORIES= www perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:HOBBESTIG diff -x .svn -ruN /var/cache/portshaker/ports/www/p5-Dancer-Plugin-Feed/distinfo www/p5-Dancer-Plugin-Feed/distinfo --- /var/cache/portshaker/ports/www/p5-Dancer-Plugin-Feed/distinfo 2011-04-28 09:51:19.000000000 +0200 +++ www/p5-Dancer-Plugin-Feed/distinfo 2011-05-07 18:41:12.079473837 +0200 @@ -1,2 +1,2 @@ -SHA256 (Dancer-Plugin-Feed-0.2.tar.gz) = d18cb1b34874019483f89d5a19ea30a28d2a30614a53dd20a2557915d8f00c67 -SIZE (Dancer-Plugin-Feed-0.2.tar.gz) = 3479 +SHA256 (Dancer-Plugin-Feed-0.3.tar.gz) = d4bd6fc596959f40d9b7e6d37db659e93173c28de90f7a4292be39ed954bdbf3 +SIZE (Dancer-Plugin-Feed-0.3.tar.gz) = 3640 --- p5-Dancer-Plugin-Feed.diff.txt ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat May 7 17:00:28 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7B12A1065673; Sat, 7 May 2011 17:00:28 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 52B6E8FC1B; Sat, 7 May 2011 17:00:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p47H0S2j016833; Sat, 7 May 2011 17:00:28 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p47H0SbD016822; Sat, 7 May 2011 17:00:28 GMT (envelope-from edwin) Date: Sat, 7 May 2011 17:00:28 GMT Message-Id: <201105071700.p47H0SbD016822@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156867: Port www/p5-Dancer-Plugin-Feed updated from 0.2 to 0.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 May 2011 17:00:28 -0000 Synopsis: Port www/p5-Dancer-Plugin-Feed updated from 0.2 to 0.3 Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Sat May 7 17:00:27 UTC 2011 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156867 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat May 7 18:40:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 19C791065673 for ; Sat, 7 May 2011 18:40:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id ECBBB8FC16 for ; Sat, 7 May 2011 18:40:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p47Ie8PV007110 for ; Sat, 7 May 2011 18:40:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p47Ie8sU007109; Sat, 7 May 2011 18:40:08 GMT (envelope-from gnats) Resent-Date: Sat, 7 May 2011 18:40:08 GMT Resent-Message-Id: <201105071840.p47Ie8sU007109@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Philip M. Gollucci" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 64005106566C; Sat, 7 May 2011 18:30:50 +0000 (UTC) (envelope-from pgollucci@frieza.p6m7g8.net) Received: from frieza.p6m7g8.net (wsip-174-79-184-239.dc.dc.cox.net [174.79.184.239]) by mx1.freebsd.org (Postfix) with ESMTP id 126898FC12; Sat, 7 May 2011 18:30:49 +0000 (UTC) Received: from frieza.p6m7g8.net (localhost [127.0.0.1]) by frieza.p6m7g8.net (8.14.4/8.14.4) with ESMTP id p47IEmlc092448; Sat, 7 May 2011 18:14:48 GMT (envelope-from pgollucci@frieza.p6m7g8.net) Received: (from pgollucci@localhost) by frieza.p6m7g8.net (8.14.4/8.14.4/Submit) id p47IEmxf092444; Sat, 7 May 2011 18:14:48 GMT (envelope-from pgollucci) Message-Id: <201105071814.p47IEmxf092444@frieza.p6m7g8.net> Date: Sat, 7 May 2011 18:14:48 GMT From: "Philip M. Gollucci" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: oliver@FreeBSD.org Subject: ports/156869: [PATCH] x11/libexo: Fix WITH_PYTHON X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 May 2011 18:40:10 -0000 >Number: 156869 >Category: ports >Synopsis: [PATCH] x11/libexo: Fix WITH_PYTHON >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 May 07 18:40:08 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Philip M. Gollucci >Release: FreeBSD 9.0-CURRENT amd64 >Organization: RideCharge Inc / TaxiMagic >Environment: System: FreeBSD frieza.p6m7g8.net 9.0-CURRENT FreeBSD 9.0-CURRENT #0: Tue Oct 12 00:51:25 UTC 2010 >Description: No PORTREVISION bumps, non default option changes and no-ops only. Port maintainer (oliver@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- libexo-0.6.0.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/x11/libexo/Makefile,v retrieving revision 1.42 diff -u -u -r1.42 Makefile --- Makefile 14 Apr 2011 06:07:12 -0000 1.42 +++ Makefile 7 May 2011 18:09:40 -0000 @@ -8,8 +8,8 @@ PORTNAME= libexo PORTVERSION= 0.6.0 CATEGORIES= x11 xfce -DISTNAME= exo-${PORTVERSION} MASTER_SITES= ${MASTER_SITE_XFCE} +DISTNAME= exo-${PORTVERSION} DIST_SUBDIR= xfce4 MAINTAINER= oliver@FreeBSD.org @@ -42,7 +42,7 @@ MAN1= exo-csource.1 exo-open.1 -.include +.include .if !defined(WITHOUT_HAL) CONFIGURE_ARGS+=--enable-hal @@ -63,10 +63,9 @@ .if defined(WITH_PYTHON) USE_PYTHON= yes CONFIGURE_ARGS+=--enable-python -.include "${PORTSDIR}/Mk/bsd.python.mk" BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}gtk>=2:${PORTSDIR}/x11-toolkits/py-gtk2 RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}gtk>=2:${PORTSDIR}/x11-toolkits/py-gtk2 -PLIST_SUB+= PYTHON="" +PLIST_SUB+= PYTHON="" EXODIR="exo-0.6" .else CONFIGURE_ARGS+=--disable-python PLIST_SUB+= PYTHON="@comment " @@ -85,4 +84,4 @@ ${FIND} ${WRKSRC}/docs/reference -type f -regex '.*\.1' \ -exec ${INSTALL_MAN} "{}" "${MANPREFIX}/man/man1" \; -.include +.include Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/x11/libexo/pkg-plist,v retrieving revision 1.17 diff -u -u -r1.17 pkg-plist --- pkg-plist 3 Mar 2011 10:12:26 -0000 1.17 +++ pkg-plist 7 May 2011 17:53:31 -0000 @@ -196,6 +196,7 @@ share/locale/zh_CN/LC_MESSAGES/exo-1.mo share/locale/zh_TW/LC_MESSAGES/exo-1.mo share/pixmaps/exo-1/exo-thumbnail-frame.png +%%PYTHON%%share/pygtk/2.0/defs/%%EXODIR%%/exo.defs share/xfce4/helpers/Terminal.desktop share/xfce4/helpers/Thunar.desktop share/xfce4/helpers/aterm.desktop @@ -230,6 +231,20 @@ share/xfce4/helpers/urxvt.desktop share/xfce4/helpers/w3m.desktop share/xfce4/helpers/xterm.desktop +%%PYTHON%%%%PYTHON_SITELIBDIR%%/%%EXODIR%% +%%PYTHON%%%%PYTHON_SITELIBDIR%%/%%EXODIR%%/_exo.so +%%PYTHON%%%%PYTHON_SITELIBDIR%%/%%EXODIR%%/_exo.la +%%PYTHON%%%%PYTHON_SITELIBDIR%%/%%EXODIR%%/_exo.a +%%PYTHON%%%%PYTHON_SITELIBDIR%%/%%EXODIR%%/exo +%%PYTHON%%%%PYTHON_SITELIBDIR%%/%%EXODIR%%/exo/__init__.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/%%EXODIR%%/exo/__init__.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/%%EXODIR%%/exo/__init__.pyo +%%PYTHON%%%%PYTHON_SITELIBDIR%%/pyexo.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/pyexo.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/pyexo.pyo +%%PYTHON%%@dirrm %%PYTHON_SITELIBDIR%%/%%EXODIR%%/exo +%%PYTHON%%@dirrm %%PYTHON_SITELIBDIR%%/%%EXODIR%% +%%PYTHON%%@dirrm share/pygtk/2.0/defs/%%EXODIR%% @dirrm share/xfce4/helpers @dirrm share/xfce4 @dirrm share/pixmaps/exo-1 --- libexo-0.6.0.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat May 7 18:40:10 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3CD3E1065676 for ; Sat, 7 May 2011 18:40:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 19BD18FC19 for ; Sat, 7 May 2011 18:40:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p47Ie9ln007119 for ; Sat, 7 May 2011 18:40:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p47Ie9X3007118; Sat, 7 May 2011 18:40:09 GMT (envelope-from gnats) Resent-Date: Sat, 7 May 2011 18:40:09 GMT Resent-Message-Id: <201105071840.p47Ie9X3007118@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Philip M. Gollucci" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1D9781065672 for ; Sat, 7 May 2011 18:30:51 +0000 (UTC) (envelope-from pgollucci@frieza.p6m7g8.net) Received: from frieza.p6m7g8.net (wsip-174-79-184-239.dc.dc.cox.net [174.79.184.239]) by mx1.freebsd.org (Postfix) with ESMTP id B74078FC13 for ; Sat, 7 May 2011 18:30:50 +0000 (UTC) Received: from frieza.p6m7g8.net (localhost [127.0.0.1]) by frieza.p6m7g8.net (8.14.4/8.14.4) with ESMTP id p47IKKkM010391; Sat, 7 May 2011 18:20:20 GMT (envelope-from pgollucci@frieza.p6m7g8.net) Received: (from pgollucci@localhost) by frieza.p6m7g8.net (8.14.4/8.14.4/Submit) id p47IKKFd010390; Sat, 7 May 2011 18:20:20 GMT (envelope-from pgollucci) Message-Id: <201105071820.p47IKKFd010390@frieza.p6m7g8.net> Date: Sat, 7 May 2011 18:20:20 GMT From: "Philip M. Gollucci" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: duchateau.olivier@gmail.com Subject: ports/156870: [PATCH] x11-fonts/droid-fonts-ttf: Fix Checksums X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 May 2011 18:40:10 -0000 >Number: 156870 >Category: ports >Synopsis: [PATCH] x11-fonts/droid-fonts-ttf: Fix Checksums >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 May 07 18:40:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Philip M. Gollucci >Release: FreeBSD 9.0-CURRENT amd64 >Organization: RideCharge Inc / TaxiMagic >Environment: System: FreeBSD frieza.p6m7g8.net 9.0-CURRENT FreeBSD 9.0-CURRENT #0: Tue Oct 12 00:51:25 UTC 2010 >Description: Port maintainer (duchateau.olivier@gmail.com) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- droid-fonts-ttf-20100214_1.patch begins here --- Index: distinfo =================================================================== RCS file: /home/ncvs/ports/x11-fonts/droid-fonts-ttf/distinfo,v retrieving revision 1.2 diff -u -u -r1.2 distinfo --- distinfo 19 Mar 2011 12:38:43 -0000 1.2 +++ distinfo 7 May 2011 18:17:54 -0000 @@ -1,28 +1,28 @@ -SHA256 (DroidSans-Bold.ttf) = b631b677af5aa7316297a8b56a1fe3bb1da706737f8c9785d5a5fc94faae1ea9 -SIZE (DroidSans-Bold.ttf) = 191032 -SHA256 (DroidSans.ttf) = 4e2371bc0e4cf6983342e150412f140da79d674c9be0b56458401f581072ecd3 -SIZE (DroidSans.ttf) = 190044 -SHA256 (DroidSansArabic.ttf) = 52199b734c6185bc42e12d48157dfde4f344d5465e99ed77168b802f802b4415 -SIZE (DroidSansArabic.ttf) = 35908 -SHA256 (DroidSansFallback.ttf) = 730b5a43df486ddfca711cdf54a87836ca0913e2930f7e52d646beeb8efc5dc8 -SIZE (DroidSansFallback.ttf) = 3640264 +SHA256 (DroidSans-Bold.ttf) = 2f529a3e60c007979d95d29794c3660694217fb882429fb33919d2245fe969e9 +SIZE (DroidSans-Bold.ttf) = 194488 +SHA256 (DroidSans.ttf) = f51b88945f4c1b236f44b8d55a2d304316869127e95248c435c23f1e4142a7db +SIZE (DroidSans.ttf) = 190776 +SHA256 (DroidSansArabic.ttf) = 73aeb7f633544fd3129cdb1e855b2f55071e10961319670d4459d5e54e103e7f +SIZE (DroidSansArabic.ttf) = 35880 +SHA256 (DroidSansFallback.ttf) = f63694f2d0910e2f31d00a818e23b13c8e3a24af04672789c19c1fb1c9da24ce +SIZE (DroidSansFallback.ttf) = 3725920 SHA256 (DroidSansFallbackLegacy.ttf) = 82a74d0ef369ec7979172023cfff87f04f0a617a2871c39ef6aeb0f399c5cdaf SIZE (DroidSansFallbackLegacy.ttf) = 3081908 SHA256 (DroidSansHebrew.ttf) = e46a71b7f6c8f0acfe855e854b0cadd709c443ea8b743ea16a42871bd5410961 SIZE (DroidSansHebrew.ttf) = 23076 SHA256 (DroidSansJapanese.ttf) = 935867c21b8484c959170e62879460ae9363eae91f9b35e4519d24080e2eac30 SIZE (DroidSansJapanese.ttf) = 1173140 -SHA256 (DroidSansMono.ttf) = 089bdaac95caeed25a8392a6f0606328d009473119f1c7465b642d5cebe5320c -SIZE (DroidSansMono.ttf) = 117072 +SHA256 (DroidSansMono.ttf) = 12b552de765dc1265d64f9f5566649930dde4dba07da0251d9f92801e70a1047 +SIZE (DroidSansMono.ttf) = 119380 SHA256 (DroidSansThai.ttf) = af9f2f5d833ecfb6f1766f3d5d9f380b6fca8b2c9553515fccc4faa4cc0451d3 SIZE (DroidSansThai.ttf) = 36028 -SHA256 (DroidSerif-Bold.ttf) = ed3235ab9bf3551d3739a3978ae8bb21493cf37046f3a01f557f9df7ef03219f -SIZE (DroidSerif-Bold.ttf) = 184836 -SHA256 (DroidSerif-BoldItalic.ttf) = 07c980b43ce8d263f1051521cfd0514a3d6eadb5fa386e1c383f8e4acf7fa2a3 -SIZE (DroidSerif-BoldItalic.ttf) = 189916 -SHA256 (DroidSerif-Italic.ttf) = 76c161e3e0af1d0abf04b717d1126e9e263159889a581d85613178765d73093d -SIZE (DroidSerif-Italic.ttf) = 177176 -SHA256 (DroidSerif-Regular.ttf) = 57e4e2f2bc0194e05be42b40826f0c7d2b046047e0e94b8bdddef10bc47470fb -SIZE (DroidSerif-Regular.ttf) = 172532 +SHA256 (DroidSerif-Bold.ttf) = c746c6383a03effbcad6ccb028e4b39e87071ff1a146a24fb2110a23e05776bb +SIZE (DroidSerif-Bold.ttf) = 185228 +SHA256 (DroidSerif-BoldItalic.ttf) = 1aba99421b31afe890182663270c28bc619f00d8746234da3dda054cd5bf09b0 +SIZE (DroidSerif-BoldItalic.ttf) = 190304 +SHA256 (DroidSerif-Italic.ttf) = 02c0108dea583e393fbcbec39c7093e9a3095a09d65e37fafff9a9b7a89123a4 +SIZE (DroidSerif-Italic.ttf) = 177560 +SHA256 (DroidSerif-Regular.ttf) = ae32140265dbe0dfde24b9abd222be9210a531888f014ff9b2326aba2d6fd777 +SIZE (DroidSerif-Regular.ttf) = 172916 SHA256 (NOTICE) = 38751245389e1e23f73e6f5384b5cbe7fa972cc4410c5adc9c04b082a0b9561a SIZE (NOTICE) = 10695 --- droid-fonts-ttf-20100214_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat May 7 18:40:20 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F1D9E106566C; Sat, 7 May 2011 18:40:20 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CA6A18FC1F; Sat, 7 May 2011 18:40:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p47IeKnm007887; Sat, 7 May 2011 18:40:20 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p47IeKmj007878; Sat, 7 May 2011 18:40:20 GMT (envelope-from edwin) Date: Sat, 7 May 2011 18:40:20 GMT Message-Id: <201105071840.p47IeKmj007878@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, oliver@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156869: [PATCH] x11/libexo: Fix WITH_PYTHON X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 May 2011 18:40:21 -0000 Synopsis: [PATCH] x11/libexo: Fix WITH_PYTHON Responsible-Changed-From-To: freebsd-ports-bugs->oliver Responsible-Changed-By: edwin Responsible-Changed-When: Sat May 7 18:40:20 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156869 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat May 7 18:40:27 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 973B2106566C; Sat, 7 May 2011 18:40:27 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6EEB78FC25; Sat, 7 May 2011 18:40:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p47IeReK008537; Sat, 7 May 2011 18:40:27 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p47IeRmf008531; Sat, 7 May 2011 18:40:27 GMT (envelope-from edwin) Date: Sat, 7 May 2011 18:40:27 GMT Message-Id: <201105071840.p47IeRmf008531@freefall.freebsd.org> To: pgollucci@p6m7g8.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156870: [PATCH] x11-fonts/droid-fonts-ttf: Fix Checksums X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 May 2011 18:40:27 -0000 Synopsis: [PATCH] x11-fonts/droid-fonts-ttf: Fix Checksums State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sat May 7 18:40:26 UTC 2011 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156870 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat May 7 18:50:07 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DE66B106566C for ; Sat, 7 May 2011 18:50:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CEEB68FC17 for ; Sat, 7 May 2011 18:50:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p47Io7OZ016372 for ; Sat, 7 May 2011 18:50:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p47Io7FS016371; Sat, 7 May 2011 18:50:07 GMT (envelope-from gnats) Date: Sat, 7 May 2011 18:50:07 GMT Message-Id: <201105071850.p47Io7FS016371@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/156870: [PATCH] x11-fonts/droid-fonts-ttf: Fix Checksums X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 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, 07 May 2011 18:50:07 -0000 The following reply was made to PR ports/156870; it has been noted by GNATS. From: Edwin Groothuis To: duchateau.olivier@gmail.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/156870: [PATCH] x11-fonts/droid-fonts-ttf: Fix Checksums Date: Sat, 7 May 2011 18:40:24 UT Maintainer of x11-fonts/droid-fonts-ttf, Please note that PR ports/156870 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/156870 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Sat May 7 22:00:19 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B443B1065673 for ; Sat, 7 May 2011 22:00:19 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8E4498FC14 for ; Sat, 7 May 2011 22:00:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p47M0JMs085736 for ; Sat, 7 May 2011 22:00:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p47M0JpA085735; Sat, 7 May 2011 22:00:19 GMT (envelope-from gnats) Resent-Date: Sat, 7 May 2011 22:00:19 GMT Resent-Message-Id: <201105072200.p47M0JpA085735@freefall.freebsd.org> 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 [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E0FAA106564A for ; Sat, 7 May 2011 21:58:06 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id B6B358FC12 for ; Sat, 7 May 2011 21:58:06 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p47Lw6sS016732 for ; Sat, 7 May 2011 21:58:06 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p47Lw6dL016731; Sat, 7 May 2011 21:58:06 GMT (envelope-from nobody) Message-Id: <201105072158.p47Lw6dL016731@red.freebsd.org> Date: Sat, 7 May 2011 21:58:06 GMT From: Alexander Wittig To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156872: [SECURITY-UPDATE] mail/exim: patch for remote code execution vulnerability (CVE-2011-1764) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 May 2011 22:00:19 -0000 >Number: 156872 >Category: ports >Synopsis: [SECURITY-UPDATE] mail/exim: patch for remote code execution vulnerability (CVE-2011-1764) >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat May 07 22:00:19 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Alexander Wittig >Release: 8.2 Stable >Organization: >Environment: FreeBSD hotzenplotz.wittig.name 8.2-STABLE FreeBSD 8.2-STABLE #0: Sat Apr 9 18:46:35 CEST 2011 root@hotzenplotz.wittig.name:/usr/obj/usr/src/sys/ALEX amd64 >Description: CVE-2011-1764: Exim's DKIM code interprets arbitrary strings provided in (correct) DKIM headers as C format strings, which very likely allows arbitrary remote code execution. See https://lists.exim.org/lurker/message/20110506.112357.e99a8db1.en.html for details. The attached patch will correct this error and is taken directly from the GIT repository given in the above message (http://git.exim.org/exim.git/commitdiff_plain/337e3505b0e6cd4309db6bf6062b33fa56e06cf8). There will quite likely be a security release of exim version 4.76 very soon ("before Monday"), so it may not be worth the effort to put in this patch before that. However, there should be a VUXML entry for this in any case. >How-To-Repeat: Install exim >Fix: Place the attached patch (patch-src::dkim.c), taken from the above source, in the files directory. That'll fix this vulnerability. Patch attached with submission follows: --- src/dkim.c +++ src/dkim.c @@ -108,7 +108,7 @@ void dkim_exim_verify_finish(void) { /* Log a line for each signature */ uschar *logmsg = string_append(NULL, &size, &ptr, 5, - string_sprintf( "DKIM: d=%s s=%s c=%s/%s a=%s ", + string_sprintf( "d=%s s=%s c=%s/%s a=%s ", sig->domain, sig->selector, (sig->canon_headers == PDKIM_CANON_SIMPLE)?"simple":"relaxed", @@ -176,7 +176,7 @@ void dkim_exim_verify_finish(void) { } logmsg[ptr] = '\0'; - log_write(0, LOG_MAIN, (char *)logmsg); + log_write(0, LOG_MAIN, "DKIM: %s", logmsg); /* Build a colon-separated list of signing domains (and identities, if present) in dkim_signers */ dkim_signers = string_append(dkim_signers, >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat May 7 22:00:35 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 617DC106566C; Sat, 7 May 2011 22:00:35 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 392FC8FC1F; Sat, 7 May 2011 22:00:35 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p47M0Zm6086732; Sat, 7 May 2011 22:00:35 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p47M0ZIK086725; Sat, 7 May 2011 22:00:35 GMT (envelope-from edwin) Date: Sat, 7 May 2011 22:00:35 GMT Message-Id: <201105072200.p47M0ZIK086725@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rea@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156872: [SECURITY-UPDATE] mail/exim: patch for remote code execution vulnerability (CVE-2011-1764) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 May 2011 22:00:35 -0000 Synopsis: [SECURITY-UPDATE] mail/exim: patch for remote code execution vulnerability (CVE-2011-1764) Responsible-Changed-From-To: freebsd-ports-bugs->rea Responsible-Changed-By: edwin Responsible-Changed-When: Sat May 7 22:00:34 UTC 2011 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156872 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat May 7 22:20:12 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 848341065770 for ; Sat, 7 May 2011 22:20:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 529158FC15 for ; Sat, 7 May 2011 22:20:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p47MK9iI004613 for ; Sat, 7 May 2011 22:20:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p47MK9Kw004612; Sat, 7 May 2011 22:20:09 GMT (envelope-from gnats) Resent-Date: Sat, 7 May 2011 22:20:09 GMT Resent-Message-Id: <201105072220.p47MK9Kw004612@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, James Bailie Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3BC491065670 for ; Sat, 7 May 2011 22:16:22 +0000 (UTC) (envelope-from jimmy@mammothcheese.ca) Received: from nm14-vm0.access.bullet.mail.mud.yahoo.com (nm14-vm0.access.bullet.mail.mud.yahoo.com [66.94.236.15]) by mx1.freebsd.org (Postfix) with SMTP id D4DE48FC16 for ; Sat, 7 May 2011 22:16:21 +0000 (UTC) Received: from [66.94.237.200] by nm14.access.bullet.mail.mud.yahoo.com with NNFMP; 07 May 2011 22:16:20 -0000 Received: from [66.94.237.103] by tm11.access.bullet.mail.mud.yahoo.com with NNFMP; 07 May 2011 22:16:20 -0000 Received: from [127.0.0.1] by omp1008.access.mail.mud.yahoo.com with NNFMP; 07 May 2011 22:16:20 -0000 Received: (qmail 76436 invoked from network); 7 May 2011 22:16:20 -0000 Received: from localhost (jimmy@99.255.2.249 with login) by smtp101.rog.mail.bf1.yahoo.com with SMTP; 07 May 2011 15:16:19 -0700 PDT Received: by localhost (sSMTP sendmail emulation); Sat, 07 May 2011 18:16:18 -0400 Message-Id: <360552.72683.qm@smtp101.rog.mail.bf1.yahoo.com> Date: Sat, 07 May 2011 18:16:18 -0400 From: "Charlie &" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/156873: Update Port: www/drood => 2.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: James Bailie List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 May 2011 22:20:12 -0000 >Number: 156873 >Category: ports >Synopsis: Update Port: www/drood => 2.3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat May 07 22:20:08 UTC 2011 >Closed-Date: >Last-Modified: >Originator: James Bailie >Release: FreeBSD 8.2-STABLE amd64 >Organization: >Environment: System: FreeBSD localhost 8.2-STABLE FreeBSD 8.2-STABLE #9: Sat Apr 16 09:01:27 EDT 2011 jbailie@localhost:/usr/obj/usr/src/sys/GENERIC amd64 >Description: >How-To-Repeat: >Fix: --- drood.diff begins here --- diff -ruN /usr/ports/www/drood/Makefile ./drood/Makefile --- /usr/ports/www/drood/Makefile 2011-04-29 19:51:07.000000000 -0400 +++ ./drood/Makefile 2011-05-07 18:01:09.000000000 -0400 @@ -6,7 +6,7 @@ # PORTNAME= drood -PORTVERSION= 2.2 +PORTVERSION= 2.3 CATEGORIES= www MASTER_SITES= http://www.mammothcheese.ca/ diff -ruN /usr/ports/www/drood/distinfo ./drood/distinfo --- /usr/ports/www/drood/distinfo 2011-04-29 19:51:07.000000000 -0400 +++ ./drood/distinfo 2011-05-07 18:12:48.000000000 -0400 @@ -1,2 +1,2 @@ -SHA256 (drood-2.2.tar.gz) = 4211d4618af5dab198daeb260a46d108fd59acad646a7dbcf3690a4aa7e56db3 -SIZE (drood-2.2.tar.gz) = 50244 +SHA256 (drood-2.3.tar.gz) = a4f15f51b7facf4ee9abd1d8e9048c98d9bf081bca0b9ce90a31910f0916458d +SIZE (drood-2.3.tar.gz) = 50768 --- drood.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat May 7 22:20:37 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 59ED01065674; Sat, 7 May 2011 22:20:37 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3270C8FC20; Sat, 7 May 2011 22:20:37 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p47MKbCo008020; Sat, 7 May 2011 22:20:37 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p47MKbDM008011; Sat, 7 May 2011 22:20:37 GMT (envelope-from edwin) Date: Sat, 7 May 2011 22:20:37 GMT Message-Id: <201105072220.p47MKbDM008011@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, tabthorpe@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/156873: Update Port: www/drood => 2.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 May 2011 22:20:37 -0000 Synopsis: Update Port: www/drood => 2.3 Responsible-Changed-From-To: freebsd-ports-bugs->tabthorpe Responsible-Changed-By: edwin Responsible-Changed-When: Sat May 7 22:20:36 UTC 2011 Responsible-Changed-Why: tabthorpe@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=156873