From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 00:27:36 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D5E53A10; Sun, 27 Jul 2014 00:27:36 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C1FE82063; Sun, 27 Jul 2014 00:27:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6R0RaI8055267; Sun, 27 Jul 2014 00:27:36 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6R0RaKM055266; Sun, 27 Jul 2014 00:27:36 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201407270027.s6R0RaKM055266@svn.freebsd.org> From: John Marino Date: Sun, 27 Jul 2014 00:27:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363000 - head/sysutils/grub2/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 00:27:37 -0000 Author: marino Date: Sun Jul 27 00:27:36 2014 New Revision: 363000 URL: http://svnweb.freebsd.org/changeset/ports/363000 QAT: https://qat.redports.org/buildarchive/r363000/ Log: sysutils/grub2: Resolve install sysutils/grub2 on UFS problem PR: 185741 Submitted by: onborodin (gmail) Added: head/sysutils/grub2/files/patch-util_grub-install.in (contents, props changed) Added: head/sysutils/grub2/files/patch-util_grub-install.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/grub2/files/patch-util_grub-install.in Sun Jul 27 00:27:36 2014 (r363000) @@ -0,0 +1,72 @@ +--- util/grub-install.in.orig 2012-06-26 21:31:03.000000000 +0000 ++++ util/grub-install.in +@@ -107,6 +107,8 @@ usage () { + print_option_help "--recheck" "$(gettext "delete device map if it already exists")" + print_option_help "--force" "$(gettext "install even if problems are detected")" + print_option_help "--force-file-id" "$(gettext "use identifier file even if UUID is available")" ++ print_option_help "--force-label" "$(gettext "use filesystem label even if UUID is available")" ++ + print_option_help "--disk-module=$(gettext "MODULE")" "$(gettext "disk module to use (biosdisk or native). This option is only available on BIOS target.")" + print_option_help "--no-nvram" "$(gettext "don't update the \`boot-device' NVRAM variable. This option is only available on IEEE1275 targets.")" + print_option_help "--removable" "$(gettext "the installation device is removable. This option is only available on EFI.")" +@@ -159,6 +161,9 @@ do + --force-file-id) + force_file_id=y ;; + ++ --force-label) ++ force_fs_label=y ;; ++ + # Accept and ignore for compatibility + --font) + shift;; +@@ -585,7 +590,7 @@ fi + partmap_module= + for x in `echo "${grub_device}" | xargs "$grub_probe" --device-map="${device_map}" --target=partmap --device 2> /dev/null`; do + case "$x" in +- netbsd | openbsd) ++ netbsd | openbsd | freebsd ) + partmap_module="$partmap_module part_bsd";; + "") ;; + *) +@@ -593,6 +598,11 @@ for x in `echo "${grub_device}" | xargs + esac + done + ++case `uname -o` in ++ FreeBSD) ++ partmap_module="$partmap_module part_msdos part_bsd";; ++esac ++ + # Device abstraction module, if any (lvm, raid). + devabstraction_module="`echo "${grub_device}" | xargs "$grub_probe" --device-map="${device_map}" --target=abstraction --device`" + +@@ -668,16 +678,28 @@ if [ "x${devabstraction_module}" = "x" ] + echo 1>&2 + hints= + fi ++ ++ if [ x"$force_fs_label" = xy ]; then ++ fs_label="`echo "${grub_device}" | xargs "$grub_probe" --device-map="${device_map}" --target=fs_label --device`" ++ fi ++ ++ if [ x"$fs_label" != x ]; then ++ echo "search.fs_label ${fs_label} root $hints " >> "${grubdir}/${grub_modinfo_target_cpu}-$grub_modinfo_platform/load.cfg" ++ search_module=search_label ++ else ++ + if [ x"$uuid" != x ]; then + echo "search.fs_uuid ${uuid} root $hints " >> "${grubdir}/${grub_modinfo_target_cpu}-$grub_modinfo_platform/load.cfg" + search_module=search_fs_uuid + else + mkdir -p "${grubdir}/uuid" +- file="`mktemp "${grubdir}/uuid/XXXXXXXXXXXXXXXXXXXXXXXXX"`" ++ file="`mktemp "${grubdir}/uuid/XXXX-XXXX-XXXX"`" + relfile="`${grub_mkrelpath} "$file"`" + echo "search.file '${relfile}' root $hints " >> "${grubdir}/${grub_modinfo_target_cpu}-$grub_modinfo_platform/load.cfg" + search_module=search_fs_file + fi ++ fi ++ + echo 'set prefix=($root)'"$(echo "${relative_grubdir}" | sed "s,\\([ \"'\\\\]\\),\\\\\\1,g")" >> "${grubdir}/${grub_modinfo_target_cpu}-$grub_modinfo_platform/load.cfg" + config_opt_file="${grubdir}/${grub_modinfo_target_cpu}-$grub_modinfo_platform/load.cfg" + modules="$modules $search_module" From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 00:40:40 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A7051DCD; Sun, 27 Jul 2014 00:40:40 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 797C42133; Sun, 27 Jul 2014 00:40:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6R0eUgg060553; Sun, 27 Jul 2014 00:40:30 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6R0eUc4060551; Sun, 27 Jul 2014 00:40:30 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201407270040.s6R0eUc4060551@svn.freebsd.org> From: John Marino Date: Sun, 27 Jul 2014 00:40:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363001 - head/sysutils/uptimed X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 00:40:40 -0000 Author: marino Date: Sun Jul 27 00:40:29 2014 New Revision: 363001 URL: http://svnweb.freebsd.org/changeset/ports/363001 QAT: https://qat.redports.org/buildarchive/r363001/ Log: sysutils/uptimed: Fix config path and prevent config file overwrite PR: 187774 Submitted by: Lukasz Wasikowski Modified: head/sysutils/uptimed/Makefile head/sysutils/uptimed/pkg-plist Modified: head/sysutils/uptimed/Makefile ============================================================================== --- head/sysutils/uptimed/Makefile Sun Jul 27 00:27:36 2014 (r363000) +++ head/sysutils/uptimed/Makefile Sun Jul 27 00:40:29 2014 (r363001) @@ -3,7 +3,7 @@ PORTNAME= uptimed PORTVERSION= 0.3.17 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils MASTER_SITES= http://podgorny.cz/uptimed/releases/ \ http://www.predatorlabs.net/dl/ @@ -27,13 +27,20 @@ post-patch: 's|/usr/lib/sendmail|/usr/sbin/sendmail| ; \ s|/var/run/uptimed|/var/run/uptimed.pid|' \ ${WRKSRC}/etc/uptimed.conf-dist + @${REINPLACE_CMD} -e \ + 's|/etc/uprecords-cgi/|${PREFIX}/www/cgi-bin/|' \ + ${WRKSRC}/src/uprecords.c post-install: @${MKDIR} ${STAGEDIR}${PREFIX}/www/cgi-bin ${INSTALL_PROGRAM} ${STAGEDIR}${PREFIX}/bin/uprecords \ ${STAGEDIR}${PREFIX}/www/cgi-bin/uprecords.cgi - ${INSTALL_DATA} ${WRKSRC}/sample-cgi/* \ - ${STAGEDIR}${PREFIX}/www/cgi-bin + ${INSTALL_DATA} ${WRKSRC}/sample-cgi/uprecords.conf \ + ${STAGEDIR}${PREFIX}/www/cgi-bin/uprecords.conf.sample + ${INSTALL_DATA} ${WRKSRC}/sample-cgi/uprecords.header \ + ${STAGEDIR}${PREFIX}/www/cgi-bin/uprecords.header.sample + ${INSTALL_DATA} ${WRKSRC}/sample-cgi/uprecords.footer \ + ${STAGEDIR}${PREFIX}/www/cgi-bin/uprecords.footer.sample @${MKDIR} ${STAGEDIR}/var/spool/uptimed .include Modified: head/sysutils/uptimed/pkg-plist ============================================================================== --- head/sysutils/uptimed/pkg-plist Sun Jul 27 00:27:36 2014 (r363000) +++ head/sysutils/uptimed/pkg-plist Sun Jul 27 00:40:29 2014 (r363001) @@ -9,8 +9,8 @@ man/man1/uprecords.1.gz man/man8/uptimed.8.gz sbin/uptimed www/cgi-bin/uprecords.cgi -www/cgi-bin/uprecords.conf -www/cgi-bin/uprecords.footer -www/cgi-bin/uprecords.header +www/cgi-bin/uprecords.conf.sample +www/cgi-bin/uprecords.footer.sample +www/cgi-bin/uprecords.header.sample @dirrmtry www/cgi-bin @unexec rmdir /var/spool/uptimed 2>/dev/null || true From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 00:49:32 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 651C0FAA; Sun, 27 Jul 2014 00:49:32 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 519BF21E9; Sun, 27 Jul 2014 00:49:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6R0nWWY064189; Sun, 27 Jul 2014 00:49:32 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6R0nWMV064188; Sun, 27 Jul 2014 00:49:32 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201407270049.s6R0nWMV064188@svn.freebsd.org> From: John Marino Date: Sun, 27 Jul 2014 00:49:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363002 - head/www/mod_auth_pubtkt X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 00:49:32 -0000 Author: marino Date: Sun Jul 27 00:49:31 2014 New Revision: 363002 URL: http://svnweb.freebsd.org/changeset/ports/363002 QAT: https://qat.redports.org/buildarchive/r363002/ Log: www/mod_auth_pubtkt: Fix build with Apache 2.4 PR: 191942 Submitted by: maintainer (Manuel Kasper) Modified: head/www/mod_auth_pubtkt/Makefile Modified: head/www/mod_auth_pubtkt/Makefile ============================================================================== --- head/www/mod_auth_pubtkt/Makefile Sun Jul 27 00:40:29 2014 (r363001) +++ head/www/mod_auth_pubtkt/Makefile Sun Jul 27 00:49:31 2014 (r363002) @@ -3,6 +3,7 @@ PORTNAME= mod_auth_pubtkt PORTVERSION= 0.8 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= https://neon1.net/mod_auth_pubtkt/ PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX} @@ -14,7 +15,14 @@ COMMENT= An Apache module to provide pub USE_APACHE= 22+ AP_FAST_BUILD= yes AP_GENPLIST= yes -AP_EXTRAS= -DAPACHE22 SRC_FILE= src/mod_auth_pubtkt.c -.include +.include + +.if ${APACHE_VERSION} > 22 +AP_EXTRAS= -DAPACHE24 +.else +AP_EXTRAS= -DAPACHE22 +.endif + +.include From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 00:51:12 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 95B12180; Sun, 27 Jul 2014 00:51:12 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8265D226B; Sun, 27 Jul 2014 00:51:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6R0pCl7067714; Sun, 27 Jul 2014 00:51:12 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6R0pBSr067708; Sun, 27 Jul 2014 00:51:11 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201407270051.s6R0pBSr067708@svn.freebsd.org> From: Steve Wills Date: Sun, 27 Jul 2014 00:51:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363003 - in head: Mk lang/ruby21 lang/ruby21/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 00:51:12 -0000 Author: swills Date: Sun Jul 27 00:51:11 2014 New Revision: 363003 URL: http://svnweb.freebsd.org/changeset/ports/363003 QAT: https://qat.redports.org/buildarchive/r363003/ Log: lang/ruby21: Update to Ruby 2.1.2 Deleted: head/lang/ruby21/files/extra-patch-ext__readline__readline.c Modified: head/Mk/bsd.ruby.mk head/lang/ruby21/Makefile head/lang/ruby21/distinfo Modified: head/Mk/bsd.ruby.mk ============================================================================== --- head/Mk/bsd.ruby.mk Sun Jul 27 00:49:31 2014 (r363002) +++ head/Mk/bsd.ruby.mk Sun Jul 27 00:51:11 2014 (r363003) @@ -208,8 +208,8 @@ RUBY21= "@comment " # # Ruby 2.1 # -RUBY_RELVERSION= 2.1.1 -RUBY_PORTREVISION= 2 +RUBY_RELVERSION= 2.1.2 +RUBY_PORTREVISION= 0 RUBY_PORTEPOCH= 1 RUBY_PATCHLEVEL= 0 Modified: head/lang/ruby21/Makefile ============================================================================== --- head/lang/ruby21/Makefile Sun Jul 27 00:49:31 2014 (r363002) +++ head/lang/ruby21/Makefile Sun Jul 27 00:51:11 2014 (r363003) @@ -103,7 +103,6 @@ CONFIGURE_ARGS+= --enable-libedit --with BUILD_DEPENDS+= readline>=0:${PORTSDIR}/devel/readline RUN_DEPENDS+= readline>=0:${PORTSDIR}/devel/readline CONFIGURE_ARGS+= --disable-libedit --with-readline-prefix=${LOCALBASE} -EXTRA_PATCHES+= ${FILESDIR}/extra-patch-ext__readline__readline.c .endif .if ${RUBY_VER} == ${RUBY_DEFAULT_VER} Modified: head/lang/ruby21/distinfo ============================================================================== --- head/lang/ruby21/distinfo Sun Jul 27 00:49:31 2014 (r363002) +++ head/lang/ruby21/distinfo Sun Jul 27 00:51:11 2014 (r363003) @@ -1,2 +1,2 @@ -SHA256 (ruby/ruby-2.1.1.tar.bz2) = 96aabab4dd4a2e57dd0d28052650e6fcdc8f133fa8980d9b936814b1e93f6cfc -SIZE (ruby/ruby-2.1.1.tar.bz2) = 11990697 +SHA256 (ruby/ruby-2.1.2.tar.bz2) = 6948b02570cdfb89a8313675d4aa665405900e27423db408401473f30fc6e901 +SIZE (ruby/ruby-2.1.2.tar.bz2) = 11976939 From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 00:57:35 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C88B4305; Sun, 27 Jul 2014 00:57:35 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B5D9622A2; Sun, 27 Jul 2014 00:57:35 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6R0vZLo068567; Sun, 27 Jul 2014 00:57:35 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6R0vZqd068565; Sun, 27 Jul 2014 00:57:35 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201407270057.s6R0vZqd068565@svn.freebsd.org> From: John Marino Date: Sun, 27 Jul 2014 00:57:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363004 - head/net/opennx X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 00:57:35 -0000 Author: marino Date: Sun Jul 27 00:57:34 2014 New Revision: 363004 URL: http://svnweb.freebsd.org/changeset/ports/363004 QAT: https://qat.redports.org/buildarchive/r363004/ Log: net/opennx: Update version 0.16.0.725 => 0.16.0.729 PR: 191915 Submitted by: maintainer (Timothy Beyer) Modified: head/net/opennx/Makefile head/net/opennx/distinfo Modified: head/net/opennx/Makefile ============================================================================== --- head/net/opennx/Makefile Sun Jul 27 00:51:11 2014 (r363003) +++ head/net/opennx/Makefile Sun Jul 27 00:57:34 2014 (r363004) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= opennx -PORTVERSION= 0.16.0.725 -PORTREVISION= 1 +PORTVERSION= 0.16.0.729 CATEGORIES= net MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/CI-source @@ -33,12 +32,14 @@ CPPFLAGS+= -I${LOCALBASE}/include INSTALLS_ICONS= yes NO_PACKAGE= must generate a fresh private key at install time +LEGAL_PACKAGE= yes SSH_KEYGEN?= ssh-keygen OPTIONS_DEFINE= NLS OPTIONS_SUB= yes +NLS_USES= gettext NLS_CONFIGURE_ENABLE= nls # do not use default private key included with tarball Modified: head/net/opennx/distinfo ============================================================================== --- head/net/opennx/distinfo Sun Jul 27 00:51:11 2014 (r363003) +++ head/net/opennx/distinfo Sun Jul 27 00:57:34 2014 (r363004) @@ -1,2 +1,2 @@ -SHA256 (opennx-0.16.0.725.tar.gz) = 342a6d7f4cf733f51c10bb7265ad7ecff0896f9c383b94775bda1fb135f946ba -SIZE (opennx-0.16.0.725.tar.gz) = 5343452 +SHA256 (opennx-0.16.0.729.tar.gz) = 1dd6613a78d5d31b4e496c9185b06cfa47ec6c24b33c6e1f8b43dd176d7d5572 +SIZE (opennx-0.16.0.729.tar.gz) = 5345822 From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 01:08:31 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A615051A; Sun, 27 Jul 2014 01:08:31 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 92B2E237B; Sun, 27 Jul 2014 01:08:31 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6R18VBr073544; Sun, 27 Jul 2014 01:08:31 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6R18VJV073542; Sun, 27 Jul 2014 01:08:31 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201407270108.s6R18VJV073542@svn.freebsd.org> From: John Marino Date: Sun, 27 Jul 2014 01:08:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363005 - in head/net/libvncserver: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 01:08:31 -0000 Author: marino Date: Sun Jul 27 01:08:30 2014 New Revision: 363005 URL: http://svnweb.freebsd.org/changeset/ports/363005 QAT: https://qat.redports.org/buildarchive/r363005/ Log: net/libvncserver: fix compile warning PR: 191527 Submitted by: Duane Added: head/net/libvncserver/files/patch-libvncserver_rfbregion.c (contents, props changed) Modified: head/net/libvncserver/Makefile Modified: head/net/libvncserver/Makefile ============================================================================== --- head/net/libvncserver/Makefile Sun Jul 27 00:57:34 2014 (r363004) +++ head/net/libvncserver/Makefile Sun Jul 27 01:08:30 2014 (r363005) @@ -3,13 +3,13 @@ PORTNAME= libvncserver PORTVERSION= 0.9.9 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= net devel MASTER_SITES= SF DISTNAME= LibVNCServer-${PORTVERSION} MAINTAINER= ports@FreeBSD.org -COMMENT= Provide an easy API to write one's own vnc server +COMMENT= Provide an easy API to a custom vnc server LICENSE= GPLv2 Added: head/net/libvncserver/files/patch-libvncserver_rfbregion.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/libvncserver/files/patch-libvncserver_rfbregion.c Sun Jul 27 01:08:30 2014 (r363005) @@ -0,0 +1,11 @@ +--- ./libvncserver/rfbregion.c.orig 2014-07-01 23:00:03.428441834 +1000 ++++ ./libvncserver/rfbregion.c 2014-07-01 23:00:14.275274256 +1000 +@@ -751,7 +751,7 @@ + i->ptrSize += DEFSTEP; + i->sPtrs = (sraSpan**)realloc(i->sPtrs, sizeof(sraSpan*)*i->ptrSize); + } +- i->ptrPos =+ 2; ++ i->ptrPos += 2; + if(sraReverse(i)) { + i->sPtrs[i->ptrPos] = i->sPtrs[i->ptrPos-2]->subspan->back._prev; + i->sPtrs[i->ptrPos+1] = &(i->sPtrs[i->ptrPos-2]->subspan->front); From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 01:16:19 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 769D7714; Sun, 27 Jul 2014 01:16:19 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 637BD2428; Sun, 27 Jul 2014 01:16:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6R1GJUf078034; Sun, 27 Jul 2014 01:16:19 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6R1GJd3078031; Sun, 27 Jul 2014 01:16:19 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201407270116.s6R1GJd3078031@svn.freebsd.org> From: John Marino Date: Sun, 27 Jul 2014 01:16:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363006 - head/archivers/kzip X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 01:16:19 -0000 Author: marino Date: Sun Jul 27 01:16:18 2014 New Revision: 363006 URL: http://svnweb.freebsd.org/changeset/ports/363006 QAT: https://qat.redports.org/buildarchive/r363006/ Log: archivers/kzip: Upgrade version 20070805 => 20091108 PR: 191205 Submitted by: Carlos JPM Modified: head/archivers/kzip/Makefile head/archivers/kzip/distinfo Modified: head/archivers/kzip/Makefile ============================================================================== --- head/archivers/kzip/Makefile Sun Jul 27 01:08:30 2014 (r363005) +++ head/archivers/kzip/Makefile Sun Jul 27 01:16:18 2014 (r363006) @@ -2,9 +2,9 @@ # $FreeBSD$ PORTNAME= kzip -DISTVERSION= 20070805 +DISTVERSION= 20091108 CATEGORIES= archivers linux -MASTER_SITES= http://static.jonof.id.au.nyud.net/dl/kenutils/ +MASTER_SITES= http://static.jonof.id.au/dl/kenutils/ DISTNAME= kzipmix-${DISTVERSION}-linux-static MAINTAINER= ports@FreeBSD.org @@ -18,10 +18,8 @@ ONLY_FOR_ARCHS= i386 USE_LINUX= yes NO_BUILD= yes -WRKSRC= ${WRKDIR}/kzipmix-static FILES= kzip-static - .for file in ${FILES} PLIST_FILES+= bin/${file:S/-static$//} .endfor Modified: head/archivers/kzip/distinfo ============================================================================== --- head/archivers/kzip/distinfo Sun Jul 27 01:08:30 2014 (r363005) +++ head/archivers/kzip/distinfo Sun Jul 27 01:16:18 2014 (r363006) @@ -1,2 +1,2 @@ -SHA256 (kzipmix-20070805-linux-static.tar.gz) = 33d55754a77d5fa83864fa8eb29b56127ed0f5b979ac2189bbb09ed259c80ee1 -SIZE (kzipmix-20070805-linux-static.tar.gz) = 455967 +SHA256 (kzipmix-20091108-linux-static.tar.gz) = 086a5bd4225b7ccad97ae4c377fe6041eaf78c29a908db547df1f31b2a9bb462 +SIZE (kzipmix-20091108-linux-static.tar.gz) = 495296 From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 01:29:04 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C9E45967; Sun, 27 Jul 2014 01:29:04 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A9EE924EC; Sun, 27 Jul 2014 01:29:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6R1T4HA082900; Sun, 27 Jul 2014 01:29:04 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6R1T3tY082891; Sun, 27 Jul 2014 01:29:03 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201407270129.s6R1T3tY082891@svn.freebsd.org> From: John Marino Date: Sun, 27 Jul 2014 01:29:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363007 - in head/x11/dzen2: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 01:29:04 -0000 Author: marino Date: Sun Jul 27 01:29:03 2014 New Revision: 363007 URL: http://svnweb.freebsd.org/changeset/ports/363007 QAT: https://qat.redports.org/buildarchive/r363007/ Log: x11/dzen2: gadgets and docs support * Can build and install gadgets optionally * Install docs * minor fixes * Reset maintainer (two timeouts, not heard from since 2008) PR: 191128 Submitted by: Zsolt Udvari Added: head/x11/dzen2/files/patch-Makefile (contents, props changed) head/x11/dzen2/files/patch-gadgets__config.mk (contents, props changed) head/x11/dzen2/files/patch-gadgets__kittscanner.sh (contents, props changed) head/x11/dzen2/pkg-plist (contents, props changed) Modified: head/x11/dzen2/Makefile head/x11/dzen2/files/patch-config.mk Modified: head/x11/dzen2/Makefile ============================================================================== --- head/x11/dzen2/Makefile Sun Jul 27 01:16:18 2014 (r363006) +++ head/x11/dzen2/Makefile Sun Jul 27 01:29:03 2014 (r363007) @@ -3,22 +3,27 @@ PORTNAME= dzen2 PORTVERSION= 0.8.5 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11 MASTER_SITES= http://gotmor.googlepages.com/ -MAINTAINER= msk@nullpointer.dk +MAINTAINER= ports@FreeBSD.org COMMENT= General purpose messaging, notification and menuing program for X11 -USE_XORG= x11 +LICENSE= MIT -PLIST_FILES= bin/${PORTNAME} +USE_XORG= x11 -OPTIONS_DEFINE= XPM XINERAMA +OPTIONS_DEFINE= EXAMPLES GADGETS XPM XINERAMA OPTIONS_DEFAULT= XPM XINERAMA +GADGETS_DESC=Build and install gadgets +OPTIONS_SUB=yes + +LDFLAGS+= -L${LOCALBASE}/lib +CFLAGS+= -I${LOCALBASE}/include +GADGETS_ALL_TARGET=all gadgets +GADGETS_INSTALL_TARGET=install install-gadgets -LDFLAGS= -L${LOCALBASE}/lib -CFLAGS= -I${LOCALBASE}/include XPM_USE= XORG=xpm XPM_CFLAGS= -DDZEN_XPM XPM_LDFLAGS= -lXpm @@ -26,7 +31,14 @@ XINERAMA_USE= XORG=xinerama XINERAMA_LDFLAGS= -lXinerama XINERAMA_CLAGS= -DDZEN_XINERAMA -MAKE_ARGS= LDFLAGS="${LDFLAGS} \$${LIBS}" \ +MAKE_ARGS+= LDFLAGS="${LDFLAGS} \$${LIBS}" \ CFLAGS="${CFLAGS} ${INCS} -DVERSION=\\\"\$${VERSION}\\\"" +post-install: + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_MAN} ${WRKSRC}/README.dzen ${STAGEDIR}${DOCSDIR} + ${INSTALL_MAN} ${WRKSRC}/gadgets/README.* ${STAGEDIR}${DOCSDIR} + ${INSTALL_MAN} ${WRKSRC}/gadgets/*.sh ${STAGEDIR}${EXAMPLESDIR} + .include Added: head/x11/dzen2/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/dzen2/files/patch-Makefile Sun Jul 27 01:29:03 2014 (r363007) @@ -0,0 +1,25 @@ +--- ./Makefile.orig 2007-08-18 08:18:50.000000000 +0200 ++++ ./Makefile 2014-06-17 14:58:37.000000000 +0200 +@@ -27,6 +27,9 @@ + @strip $@ + @echo "Run ./help for documentation" + ++gadgets: ++ $(MAKE) -C gadgets ++ + clean: + @echo cleaning + @rm -f dzen2 ${OBJ} dzen2-${VERSION}.tar.gz +@@ -49,8 +52,11 @@ + @cp -f dzen2 ${DESTDIR}${PREFIX}/bin + @chmod 755 ${DESTDIR}${PREFIX}/bin/dzen2 + ++install-gadgets: gadgets ++ $(MAKE) -C gadgets install ++ + uninstall: + @echo removing executable file from ${DESTDIR}${PREFIX}/bin + @rm -f ${DESTDIR}${PREFIX}/bin/dzen2 + +-.PHONY: all options clean dist install uninstall ++.PHONY: all options clean dist install uninstall gadgets install-gadgets Modified: head/x11/dzen2/files/patch-config.mk ============================================================================== --- head/x11/dzen2/files/patch-config.mk Sun Jul 27 01:16:18 2014 (r363006) +++ head/x11/dzen2/files/patch-config.mk Sun Jul 27 01:29:03 2014 (r363007) @@ -1,5 +1,5 @@ ---- config.mk.orig 2013-07-03 22:32:45.866885213 +0200 -+++ config.mk 2013-07-03 22:32:51.306100406 +0200 +--- ./config.mk.orig 2007-08-18 08:18:50.000000000 +0200 ++++ ./config.mk 2014-06-17 14:58:37.000000000 +0200 @@ -49,5 +49,5 @@ #LDFLAGS = -g ${LIBS} Added: head/x11/dzen2/files/patch-gadgets__config.mk ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/dzen2/files/patch-gadgets__config.mk Sun Jul 27 01:29:03 2014 (r363007) @@ -0,0 +1,9 @@ +--- ./gadgets/config.mk.orig 2007-08-18 08:18:50.000000000 +0200 ++++ ./gadgets/config.mk 2014-06-17 14:58:37.000000000 +0200 +@@ -14,5 +14,5 @@ + LDFLAGS = ${LIBS} + + # compiler and linker +-CC = gcc ++CC ?= cc + LD = ${CC} Added: head/x11/dzen2/files/patch-gadgets__kittscanner.sh ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/dzen2/files/patch-gadgets__kittscanner.sh Sun Jul 27 01:29:03 2014 (r363007) @@ -0,0 +1,17 @@ +--- ./gadgets/kittscanner.sh.orig 2014-06-17 15:00:13.000000000 +0200 ++++ ./gadgets/kittscanner.sh 2014-06-17 15:00:24.000000000 +0200 +@@ -19,10 +19,10 @@ + + SLEEP=0.1 + +-#DZEN=/usr/local/bin/dzen2 +-DZEN=../dzen2 +-#DZENOPTS="-bg $BG -fg $INACTIVE_LED_COLOR" +-DZENOPTS="-bg $BG -fg $INACTIVE_LED_COLOR -xs 1 -y 30" ++DZEN=/usr/local/bin/dzen2 ++#DZEN=../dzen2 ++DZENOPTS="-bg $BG -fg $INACTIVE_LED_COLOR" ++#DZENOPTS="-bg $BG -fg $INACTIVE_LED_COLOR -xs 1 -y 30" + + #----------------------------------------------------------------------- + Added: head/x11/dzen2/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/dzen2/pkg-plist Sun Jul 27 01:29:03 2014 (r363007) @@ -0,0 +1,15 @@ +bin/dzen2 +%%GADGETS%%bin/dbar +%%GADGETS%%bin/gcpubar +%%GADGETS%%bin/gdbar +%%GADGETS%%bin/textwidth +%%DOCSDIR%%/README.dzen +%%GADGETS%%%%DOCSDIR%%/README.dbar +%%GADGETS%%%%DOCSDIR%%/README.gcpubar +%%GADGETS%%%%DOCSDIR%%/README.gdbar +%%GADGETS%%%%DOCSDIR%%/README.kittscanner +%%GADGETS%%%%DOCSDIR%%/README.textwidth +%%EXAMPLES%%%%EXAMPLESDIR%%/kittscanner.sh +%%EXAMPLES%%%%EXAMPLESDIR%%/noisyalert.sh +@dirrmtry %%DOCSDIR%% +%%EXAMPLES%%@dirrmtry %%EXAMPLESDIR%% From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 01:35:31 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A3EB5B19; Sun, 27 Jul 2014 01:35:31 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 90E912591; Sun, 27 Jul 2014 01:35:31 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6R1ZV9u087000; Sun, 27 Jul 2014 01:35:31 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6R1ZVgh086999; Sun, 27 Jul 2014 01:35:31 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201407270135.s6R1ZVgh086999@svn.freebsd.org> From: John Marino Date: Sun, 27 Jul 2014 01:35:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363008 - head/audio/alsa-utils X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 01:35:31 -0000 Author: marino Date: Sun Jul 27 01:35:31 2014 New Revision: 363008 URL: http://svnweb.freebsd.org/changeset/ports/363008 QAT: https://qat.redports.org/buildarchive/r363008/ Log: audio/alsa-utils: use SHEBANGFIX to fix alsaconf.in bash shebang PR: 191505 Submitted by: Soeren Straarup Approved by: maintainer timeout Modified: head/audio/alsa-utils/Makefile Modified: head/audio/alsa-utils/Makefile ============================================================================== --- head/audio/alsa-utils/Makefile Sun Jul 27 01:29:03 2014 (r363007) +++ head/audio/alsa-utils/Makefile Sun Jul 27 01:35:31 2014 (r363008) @@ -3,7 +3,7 @@ PORTNAME= alsa-utils PORTVERSION= 1.0.27.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio MASTER_SITES= ALSA/utils \ GENTOO/distfiles @@ -14,10 +14,11 @@ COMMENT= ALSA compatibility utils LIB_DEPENDS= libasound.so:${PORTSDIR}/audio/alsa-lib RUN_DEPENDS= ${LOCALBASE}/lib/alsa-lib/libasound_module_pcm_oss.so:${PORTSDIR}/audio/alsa-plugins -USES= gmake tar:bzip2 +USES= gmake tar:bzip2 shebangfix GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-udev-rules-dir="\$${prefix}/lib/udev" CFLAGS+= -I${LOCALBASE}/include +SHEBANG_FILES= alsaconf/alsaconf.in OPTIONS_SUB= yes OPTIONS_DEFINE= XMLTO NLS From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 03:18:34 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F3CF88D4 for ; Sun, 27 Jul 2014 03:18:33 +0000 (UTC) Received: from mail-lb0-f174.google.com (mail-lb0-f174.google.com [209.85.217.174]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7929D2D6E for ; Sun, 27 Jul 2014 03:18:32 +0000 (UTC) Received: by mail-lb0-f174.google.com with SMTP id c11so4659216lbj.33 for ; Sat, 26 Jul 2014 20:18:24 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:message-id:date:from:user-agent:mime-version:to :subject:references:in-reply-to:content-type :content-transfer-encoding; bh=ZG9suihdZuZkpd6A2WrS+BJGzXJVXdEclDmwXQ3UIoY=; b=NZUWsshC00u2IgxxvzlewjCfUGZMtZ1XCjBQB9v8mAanm+bAzwZHzwH7n4NvYPzvgA bfHqi/rGsImTryJgTEzuZ1BqotBkfF/RldFMB0D25qxAyyIRC6xXaZAmOKbx9JiYbhDB gawXN/Y0XWpBZkH8dZ6NBjz5qWxwNsj4/0rAsnx0gIQLMZTngqYgLTLhyxd20y5JqFlx 0NEbd49GM0/ZXMnYgBmuOQ08oRv3OdBJV87s8MJomtGwCEHr+gEs9/LFBe+SJ+UX/rzD e48yvO3QN+lbJ3EabalnAQOQL2L+dAoRwf/ugvKqzpyLK58Ldtj/HohBTolduqVa1jEN HUFw== X-Gm-Message-State: ALoCoQn/RT+4S7AoJqd23ui7036aFz6wgywrur094WjjDlJbmLd2DXdSebzfV4ohePfiTvteUP0x X-Received: by 10.152.2.3 with SMTP id 3mr25674595laq.8.1406431104625; Sat, 26 Jul 2014 20:18:24 -0700 (PDT) Received: from [192.168.1.2] ([89.169.173.68]) by mx.google.com with ESMTPSA id lc3sm9928868lac.19.2014.07.26.20.18.23 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 26 Jul 2014 20:18:23 -0700 (PDT) Message-ID: <53D46F7F.8020609@freebsd.org> Date: Sun, 27 Jul 2014 07:18:23 +0400 From: Andrey Chernov User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.0 MIME-Version: 1.0 To: Baptiste Daroussin , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r362996 - head/ports-mgmt/pkg References: <201407262308.s6QN85Od018020@svn.freebsd.org> In-Reply-To: <201407262308.s6QN85Od018020@svn.freebsd.org> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 03:18:34 -0000 On 27.07.2014 3:08, Baptiste Daroussin wrote: > Author: bapt > Date: Sat Jul 26 23:08:04 2014 > New Revision: 362996 > URL: http://svnweb.freebsd.org/changeset/ports/362996 > QAT: https://qat.redports.org/buildarchive/r362996/ > > Log: > Update to 1.3.1 > Changes: Of course I notice that pkg becomes worse and worse by each version. F.e. 1.3.0 makes portupgrade to be slower a lot comparing to 1.2.* But this version surpass any degradation by just causing segmentation fault and dropping core in pkg-static in recent 10-stable i386. Now pkg can't be installed: ... Installed packages to be REMOVED: pkg-1.3.0 The operation will free 8 MB [1/1] Deleting pkg-1.3.0: 100% [Reading data from pkg(8) ... Child process pid=21722 terminated abnormally: Segmentation fault - 0 packages found - done] ---> Uninstallation of pkg-1.3.0 ended at: Sun, 27 Jul 2014 07:05:24 +0400 (consumed 00:00:08) ---> Installation of ports-mgmt/pkg started at: Sun, 27 Jul 2014 07:05:24 +0400 ---> Installing the new version via the port ===> Installing for pkg-1.3.1 ===> Registering installation for pkg-1.3.1 Child process pid=21787 terminated abnormally: Segmentation fault *** Error code 245 Stop. make[2]: stopped in /usr/ports/ports-mgmt/pkg *** Error code 1 Stop. make[1]: stopped in /usr/ports/ports-mgmt/pkg *** Error code 1 Stop. make: stopped in /usr/ports/ports-mgmt/pkg ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade20140727-15238-rmytrq env UPGRADE_TOOL=portupgrade UPGRADE_PORT=pkg-1.3.0 UPGRADE_PORT_VER=1.3.0 make reinstall ---> Updating dependency info ---> Restoring the old version Child process pid=21799 terminated abnormally: Segmentation fault ---> Installation of ports-mgmt/pkg ended at: Sun, 27 Jul 2014 07:05:27 +0400 (consumed 00:00:02) ** Command failed [exit code 245]: /usr/ports/ports-mgmt/pkg/work/pkg-1.3.1/src/pkg-static add /var/tmp/portupgradeySA6HLqh/pkg-1.3.0.txz ---> Skipping 'ports-mgmt/pkg' ---> Upgrade of ports-mgmt/pkg ended at: Sun, 27 Jul 2014 07:05:27 +0400 (consumed 00:01:01) ---> ** Upgrade tasks 1: 0 done, 0 ignored, 1 skipped and 0 failed [Updating the pkgdb in /var/db/pkg ... - 0 packages found (-485 +0) nothing to do] ---> Listing the results (+:done / -:ignored / *:skipped / !:failed) * ports-mgmt/pkg (pkg-1.3.0) ---> Packages processed: 0 done, 0 ignored, 1 skipped and 0 failed ---> Session ended at: Sun, 27 Jul 2014 07:05:27 +0400 (consumed 00:01:02) -- http://ache.vniz.net/ From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 04:51:11 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 85EE2360; Sun, 27 Jul 2014 04:51:11 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 59906242C; Sun, 27 Jul 2014 04:51:11 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6R4pBej075245; Sun, 27 Jul 2014 04:51:11 GMT (envelope-from koobs@svn.freebsd.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6R4pAjJ075242; Sun, 27 Jul 2014 04:51:11 GMT (envelope-from koobs@svn.freebsd.org) Message-Id: <201407270451.s6R4pAjJ075242@svn.freebsd.org> From: Kubilay Kocak Date: Sun, 27 Jul 2014 04:51:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363009 - head/graphics/py-pillow X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 04:51:11 -0000 Author: koobs Date: Sun Jul 27 04:51:10 2014 New Revision: 363009 URL: http://svnweb.freebsd.org/changeset/ports/363009 QAT: https://qat.redports.org/buildarchive/r363009/ Log: graphics/py-pillow: Update to 2.5.1, Add TKINTER option - Update to 2.5.1 - OPTIONS: Add Tkinter (Tcl/Tk) support - OPTIONS: Add FreeType as an options default Changes: https://github.com/python-pillow/Pillow/blob/2.5.1/CHANGES.rst Modified: head/graphics/py-pillow/Makefile head/graphics/py-pillow/distinfo Modified: head/graphics/py-pillow/Makefile ============================================================================== --- head/graphics/py-pillow/Makefile Sun Jul 27 01:35:31 2014 (r363008) +++ head/graphics/py-pillow/Makefile Sun Jul 27 04:51:10 2014 (r363009) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pillow -PORTVERSION= 2.4.0 +PORTVERSION= 2.5.1 CATEGORIES= graphics python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= ${PORTNAME:C/p/P/}-${PORTVERSION} @@ -15,15 +15,17 @@ LICENSE_NAME= Standard PIL License LICENSE_FILE= ${WRKSRC}/docs/LICENSE LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept -OPTIONS_DEFINE= FREETYPE JPEG LCMS PNG TIFF WEBP -OPTIONS_DEFAULT= JPEG PNG +OPTIONS_DEFINE= FREETYPE JPEG LCMS PNG TIFF TKINTER WEBP +OPTIONS_DEFAULT= FREETYPE JPEG PNG LCMS_DESC= Little Color Management System +TKINTER_DESC= Tkinter (Tcl/Tk) BitmapImage & PhotoImage support FREETYPE_LIB_DEPENDS= libfreetype.so:${PORTSDIR}/print/freetype2 JPEG_LIB_DEPENDS= libjpeg.so:${PORTSDIR}/graphics/jpeg LCMS_LIB_DEPENDS= liblcms2.so:${PORTSDIR}/graphics/lcms2 TIFF_LIB_DEPENDs= libtiff.so:${PORTSDIR}/graphics/tiff +TKINTER_USES= tk:build WEBP_LIB_DEPENDS= libwebp.so:${PORTSDIR}/graphics/webp USE_GITHUB= yes @@ -35,7 +37,7 @@ PYDISTUTILS_BUILD_TARGET= build_ext GH_ACCOUNT= python-pillow GH_PROJECT= ${PORTNAME:C/p/P/} -GH_COMMIT= 72de37c +GH_COMMIT= 1ab78b8 CONFLICTS_INSTALL= py*-imaging-* @@ -71,6 +73,13 @@ PYDISTUTILS_BUILDARGS+= --enable-tiff PYDISTUTILS_BUILDARGS+= --disable-tiff .endif +.if ${PORT_OPTIONS:MTKINTER} +PYDISTUTILS_BUILDARGS+= --enable-tcl --enable-tk \ + --include-dirs=${TCL_INCLUDEDIR}:${TK_INCLUDEDIR} +.else +PYDISTUTILS_BUILDARGS+= --disable-tcl --disable-tk +.endif + .if ${PORT_OPTIONS:MWEBP} PYDISTUTILS_BUILDARGS+= --enable-webp .else Modified: head/graphics/py-pillow/distinfo ============================================================================== --- head/graphics/py-pillow/distinfo Sun Jul 27 01:35:31 2014 (r363008) +++ head/graphics/py-pillow/distinfo Sun Jul 27 04:51:10 2014 (r363009) @@ -1,2 +1,2 @@ -SHA256 (Pillow-2.4.0.tar.gz) = 5eef8463eab73d0efe0cd4f7a6833926862f86411994ef7801646d614fdce0c2 -SIZE (Pillow-2.4.0.tar.gz) = 6201074 +SHA256 (Pillow-2.5.1.tar.gz) = e7934f86705a7054e3c117ab1295d612b2aa34f4cfa4d61bd88e544e9a544a13 +SIZE (Pillow-2.5.1.tar.gz) = 6528250 From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 04:51:43 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9414E441; Sun, 27 Jul 2014 04:51:43 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 81E2C2436; Sun, 27 Jul 2014 04:51:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6R4phPS075475; Sun, 27 Jul 2014 04:51:43 GMT (envelope-from wen@svn.freebsd.org) Received: (from wen@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6R4phTQ075473; Sun, 27 Jul 2014 04:51:43 GMT (envelope-from wen@svn.freebsd.org) Message-Id: <201407270451.s6R4phTQ075473@svn.freebsd.org> From: Wen Heping Date: Sun, 27 Jul 2014 04:51:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363010 - head/astro/py-aipy X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 04:51:43 -0000 Author: wen Date: Sun Jul 27 04:51:42 2014 New Revision: 363010 URL: http://svnweb.freebsd.org/changeset/ports/363010 QAT: https://qat.redports.org/buildarchive/r363010/ Log: - Update to 2.1.0 - Convert to PYDISTUTILS_AUTOPLIST Deleted: head/astro/py-aipy/pkg-plist Modified: head/astro/py-aipy/Makefile head/astro/py-aipy/distinfo Modified: head/astro/py-aipy/Makefile ============================================================================== --- head/astro/py-aipy/Makefile Sun Jul 27 04:51:10 2014 (r363009) +++ head/astro/py-aipy/Makefile Sun Jul 27 04:51:42 2014 (r363010) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= aipy -PORTVERSION= 1.1.1 -PORTREVISION= 3 +PORTVERSION= 2.1.0 CATEGORIES= astro python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -17,7 +16,8 @@ BUILD_DEPENDS= ${PYNUMPY} \ ${PKGNAMEPREFIX}matplotlib>=0.98:${PORTSDIR}/math/py-matplotlib RUN_DEPENDS:= ${BUILD_DEPENDS} -USE_PYTHON= yes +USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes .include Modified: head/astro/py-aipy/distinfo ============================================================================== --- head/astro/py-aipy/distinfo Sun Jul 27 04:51:10 2014 (r363009) +++ head/astro/py-aipy/distinfo Sun Jul 27 04:51:42 2014 (r363010) @@ -1,2 +1,2 @@ -SHA256 (aipy-1.1.1.tar.gz) = de9c8673e4d3ccad98c1db4b14680aa57730eb4e290f389652107f2ebde51541 -SIZE (aipy-1.1.1.tar.gz) = 961773 +SHA256 (aipy-2.1.0.tar.gz) = 495a4ee6776b2255c22bfb15338451d4e923e86e00e6b505510d49c2887809fb +SIZE (aipy-2.1.0.tar.gz) = 981319 From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 05:11:57 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 833F1224; Sun, 27 Jul 2014 05:11:57 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 56BB825B1; Sun, 27 Jul 2014 05:11:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6R5Bvbq087360; Sun, 27 Jul 2014 05:11:57 GMT (envelope-from koobs@svn.freebsd.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6R5Bu6u087357; Sun, 27 Jul 2014 05:11:56 GMT (envelope-from koobs@svn.freebsd.org) Message-Id: <201407270511.s6R5Bu6u087357@svn.freebsd.org> From: Kubilay Kocak Date: Sun, 27 Jul 2014 05:11:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363011 - head/devel/py-omnijson X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 05:11:57 -0000 Author: koobs Date: Sun Jul 27 05:11:56 2014 New Revision: 363011 URL: http://svnweb.freebsd.org/changeset/ports/363011 QAT: https://qat.redports.org/buildarchive/r363011/ Log: devel/py-omnijson: Switch to GitHub, Add QA bits - Add TEST_DEPENDS - Add regression-test target - Switch to GITHUB - Fix typo in pkg-descr Modified: head/devel/py-omnijson/Makefile head/devel/py-omnijson/distinfo head/devel/py-omnijson/pkg-descr Modified: head/devel/py-omnijson/Makefile ============================================================================== --- head/devel/py-omnijson/Makefile Sun Jul 27 04:51:42 2014 (r363010) +++ head/devel/py-omnijson/Makefile Sun Jul 27 05:11:56 2014 (r363011) @@ -3,8 +3,8 @@ PORTNAME= omnijson PORTVERSION= 0.1.2 +PORTREVISION= 1 CATEGORIES= devel python -MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= koobs@FreeBSD.org @@ -13,8 +13,23 @@ COMMENT= Wraps the best Python JSON inst LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:${PORTSDIR}/devel/py-pytest + +OPTIONS_DEFINE= TESTS + +TESTS_DESC= Install tools required to run unit tests +TESTS_BUILD_DEPENDS= ${TEST_DEPENDS} + +USE_GITHUB= yes +GH_ACCOUNT= kennethreitz +GH_TAGNAME= v${PORTVERSION} +GH_COMMIT= 2235005 + USE_PYTHON= yes USE_PYDISTUTILS= yes PYDISTUTILS_AUTOPLIST= yes +regression-test: build + @cd ${WRKSRC} && ${PYTHON_CMD} -m pytest + .include Modified: head/devel/py-omnijson/distinfo ============================================================================== --- head/devel/py-omnijson/distinfo Sun Jul 27 04:51:42 2014 (r363010) +++ head/devel/py-omnijson/distinfo Sun Jul 27 05:11:56 2014 (r363011) @@ -1,2 +1,2 @@ -SHA256 (omnijson-0.1.2.tar.gz) = 0b73d7f3129b92b55adb3463d84d1ca7e4261042e2499759e46e0d77453d614c -SIZE (omnijson-0.1.2.tar.gz) = 16817 +SHA256 (omnijson-0.1.2.tar.gz) = 92758346537371ef41cf417bad62c786233d10d16940fb90a01a437e6e850346 +SIZE (omnijson-0.1.2.tar.gz) = 16728 Modified: head/devel/py-omnijson/pkg-descr ============================================================================== --- head/devel/py-omnijson/pkg-descr Sun Jul 27 04:51:42 2014 (r363010) +++ head/devel/py-omnijson/pkg-descr Sun Jul 27 05:11:56 2014 (r363011) @@ -5,7 +5,7 @@ Features: * Loads whichever is the fastest JSON module installed * Falls back on built in pure-python simplejson, just in case. * Proper API (loads(), dumps()) - * Verndorizable + * Vendorizable * Supports Python 2.5-3.2 out of the box WWW: https://github.com/kennethreitz/omnijson From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 05:50:33 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 749566D5; Sun, 27 Jul 2014 05:50:33 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 627EE27F8; Sun, 27 Jul 2014 05:50:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6R5oXn6002279; Sun, 27 Jul 2014 05:50:33 GMT (envelope-from culot@svn.freebsd.org) Received: (from culot@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6R5oXbp002276; Sun, 27 Jul 2014 05:50:33 GMT (envelope-from culot@svn.freebsd.org) Message-Id: <201407270550.s6R5oXbp002276@svn.freebsd.org> From: Frederic Culot Date: Sun, 27 Jul 2014 05:50:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363012 - head/devel/p5-Term-RawInput X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 05:50:33 -0000 Author: culot Date: Sun Jul 27 05:50:32 2014 New Revision: 363012 URL: http://svnweb.freebsd.org/changeset/ports/363012 QAT: https://qat.redports.org/buildarchive/r363012/ Log: - Update to 1.20 Changes: http://search.cpan.org/dist/Term-RawInput/ChangeLog Modified: head/devel/p5-Term-RawInput/Makefile head/devel/p5-Term-RawInput/distinfo Modified: head/devel/p5-Term-RawInput/Makefile ============================================================================== --- head/devel/p5-Term-RawInput/Makefile Sun Jul 27 05:11:56 2014 (r363011) +++ head/devel/p5-Term-RawInput/Makefile Sun Jul 27 05:50:32 2014 (r363012) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Term-RawInput -PORTVERSION= 1.16 +PORTVERSION= 1.20 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:REEDFISH Modified: head/devel/p5-Term-RawInput/distinfo ============================================================================== --- head/devel/p5-Term-RawInput/distinfo Sun Jul 27 05:11:56 2014 (r363011) +++ head/devel/p5-Term-RawInput/distinfo Sun Jul 27 05:50:32 2014 (r363012) @@ -1,2 +1,2 @@ -SHA256 (Term-RawInput-1.16.tar.gz) = 0306b1e0d17b8de6e357d7d5455da3eb45f76c6966965459deb51eed29962b9c -SIZE (Term-RawInput-1.16.tar.gz) = 36132 +SHA256 (Term-RawInput-1.20.tar.gz) = efd89746034c87f7fe2edeb9d936eecd5de308ae86e52fb81aa776f83ccb2087 +SIZE (Term-RawInput-1.20.tar.gz) = 42671 From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 06:01:55 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A89338BA; Sun, 27 Jul 2014 06:01:55 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 95F99292E; Sun, 27 Jul 2014 06:01:55 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6R61tHl009883; Sun, 27 Jul 2014 06:01:55 GMT (envelope-from culot@svn.freebsd.org) Received: (from culot@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6R61tYJ009878; Sun, 27 Jul 2014 06:01:55 GMT (envelope-from culot@svn.freebsd.org) Message-Id: <201407270601.s6R61tYJ009878@svn.freebsd.org> From: Frederic Culot Date: Sun, 27 Jul 2014 06:01:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363013 - head/devel/p5-Path-FindDev X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 06:01:55 -0000 Author: culot Date: Sun Jul 27 06:01:54 2014 New Revision: 363013 URL: http://svnweb.freebsd.org/changeset/ports/363013 QAT: https://qat.redports.org/buildarchive/r363013/ Log: - Update to 0.5.1 Changes: http://search.cpan.org/~kentnl/Path-FindDev-0.5.1/Changes Modified: head/devel/p5-Path-FindDev/Makefile head/devel/p5-Path-FindDev/distinfo Modified: head/devel/p5-Path-FindDev/Makefile ============================================================================== --- head/devel/p5-Path-FindDev/Makefile Sun Jul 27 05:50:32 2014 (r363012) +++ head/devel/p5-Path-FindDev/Makefile Sun Jul 27 06:01:54 2014 (r363013) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Path-FindDev -PORTVERSION= 0.5.0 +PORTVERSION= 0.5.1 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:KENTNL @@ -18,7 +18,9 @@ BUILD_DEPENDS= p5-Class-Tiny>=0.010:${PO p5-Path-IsDev>=0.2.2:${PORTSDIR}/devel/p5-Path-IsDev \ p5-Path-Tiny>=0.038:${PORTSDIR}/devel/p5-Path-Tiny RUN_DEPENDS:= ${BUILD_DEPENDS} -TEST_DEPENDS= p5-Test-Simple>=1.001.002:${PORTSDIR}/devel/p5-Test-Simple +TEST_DEPENDS= p5-CPAN-Meta>0:${PORTSDIR}/devel/p5-CPAN-Meta \ + p5-CPAN-Meta-Requirements>2.120:${PORTSDIR}/devel/p5-CPAN-Meta-Requirements \ + p5-Test-Simple>=1.001.003:${PORTSDIR}/devel/p5-Test-Simple USES= perl5 USE_PERL5= configure Modified: head/devel/p5-Path-FindDev/distinfo ============================================================================== --- head/devel/p5-Path-FindDev/distinfo Sun Jul 27 05:50:32 2014 (r363012) +++ head/devel/p5-Path-FindDev/distinfo Sun Jul 27 06:01:54 2014 (r363013) @@ -1,2 +1,2 @@ -SHA256 (Path-FindDev-0.5.0.tar.gz) = 3c4297dc4ed966a8f286ab5a0c98d05fe5991c9ee972c5316aa3c1f76632b549 -SIZE (Path-FindDev-0.5.0.tar.gz) = 45010 +SHA256 (Path-FindDev-0.5.1.tar.gz) = 3daab1e048a8720050032c7cfa8f522210dd4526d481ada9a607cf0775c7ee1c +SIZE (Path-FindDev-0.5.1.tar.gz) = 40893 From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 06:40:29 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DAAB3E33; Sun, 27 Jul 2014 06:40:29 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C83992B53; Sun, 27 Jul 2014 06:40:29 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6R6eTHe017298; Sun, 27 Jul 2014 06:40:29 GMT (envelope-from leeym@svn.freebsd.org) Received: (from leeym@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6R6eTPn017296; Sun, 27 Jul 2014 06:40:29 GMT (envelope-from leeym@svn.freebsd.org) Message-Id: <201407270640.s6R6eTPn017296@svn.freebsd.org> From: Yen-Ming Lee Date: Sun, 27 Jul 2014 06:40:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363014 - head/textproc/p5-HTML-Copy X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 06:40:29 -0000 Author: leeym Date: Sun Jul 27 06:40:28 2014 New Revision: 363014 URL: http://svnweb.freebsd.org/changeset/ports/363014 QAT: https://qat.redports.org/buildarchive/r363014/ Log: - update to 1.31 Modified: head/textproc/p5-HTML-Copy/Makefile head/textproc/p5-HTML-Copy/distinfo Modified: head/textproc/p5-HTML-Copy/Makefile ============================================================================== --- head/textproc/p5-HTML-Copy/Makefile Sun Jul 27 06:01:54 2014 (r363013) +++ head/textproc/p5-HTML-Copy/Makefile Sun Jul 27 06:40:28 2014 (r363014) @@ -2,19 +2,19 @@ # $FreeBSD$ PORTNAME= HTML-Copy -PORTVERSION= 1.30 +PORTVERSION= 1.31 CATEGORIES= textproc perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- -DISTNAME= ${PORTNAME}-${PORTVERSION:C/0+$//} MAINTAINER= perl@FreeBSD.org COMMENT= Copy a HTML file without breaking links -BUILD_DEPENDS= p5-HTML-Parser>=0:${PORTSDIR}/www/p5-HTML-Parser \ - p5-libwww>=0:${PORTSDIR}/www/p5-libwww \ - p5-Class-Accessor>=0:${PORTSDIR}/devel/p5-Class-Accessor \ +RUN_DEPENDS= p5-Class-Accessor>=0:${PORTSDIR}/devel/p5-Class-Accessor \ + p5-HTML-Parser>=3.4:${PORTSDIR}/www/p5-HTML-Parser \ + p5-HTTP-Message>=0:${PORTSDIR}/www/p5-HTTP-Message \ p5-URI>=0:${PORTSDIR}/net/p5-URI +BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 USE_PERL5= configure Modified: head/textproc/p5-HTML-Copy/distinfo ============================================================================== --- head/textproc/p5-HTML-Copy/distinfo Sun Jul 27 06:01:54 2014 (r363013) +++ head/textproc/p5-HTML-Copy/distinfo Sun Jul 27 06:40:28 2014 (r363014) @@ -1,2 +1,2 @@ -SHA256 (HTML-Copy-1.3.tar.gz) = 2ef93c6fb0f59acea84f75f68b1366926a68ab027375fb761be282397dad83d4 -SIZE (HTML-Copy-1.3.tar.gz) = 7285 +SHA256 (HTML-Copy-1.31.tar.gz) = b0b419574e1a7383e90be5b9100d67d1b151ff523a1697106b4e57a5f5d8c023 +SIZE (HTML-Copy-1.31.tar.gz) = 7701 From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 07:27:19 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E7FE86DF; Sun, 27 Jul 2014 07:27:18 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C929B2E7B; Sun, 27 Jul 2014 07:27:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6R7RIjc038094; Sun, 27 Jul 2014 07:27:18 GMT (envelope-from wen@svn.freebsd.org) Received: (from wen@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6R7RIfN038091; Sun, 27 Jul 2014 07:27:18 GMT (envelope-from wen@svn.freebsd.org) Message-Id: <201407270727.s6R7RIfN038091@svn.freebsd.org> From: Wen Heping Date: Sun, 27 Jul 2014 07:27:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363015 - in head/biology/p5-bioperl: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 07:27:19 -0000 Author: wen Date: Sun Jul 27 07:27:17 2014 New Revision: 363015 URL: http://svnweb.freebsd.org/changeset/ports/363015 QAT: https://qat.redports.org/buildarchive/r363015/ Log: - Update to 1.6.924 [1] - Reset maintainer to perl@ PR: 192088 [1] Submitted by: Kurt Jaeger [1] Modified: head/biology/p5-bioperl/Makefile head/biology/p5-bioperl/distinfo head/biology/p5-bioperl/files/patch-Bio-Root-Build.pm Modified: head/biology/p5-bioperl/Makefile ============================================================================== --- head/biology/p5-bioperl/Makefile Sun Jul 27 06:40:28 2014 (r363014) +++ head/biology/p5-bioperl/Makefile Sun Jul 27 07:27:17 2014 (r363015) @@ -2,14 +2,14 @@ # $FreeBSD$ PORTNAME= bioperl -PORTVERSION= 1.6.923 +PORTVERSION= 1.6.924 CATEGORIES= biology perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:CJFIELDS PKGNAMEPREFIX= p5- DISTNAME= BioPerl-${PORTVERSION} -MAINTAINER= wen@FreeBSD.org +MAINTAINER= perl@FreeBSD.org COMMENT= Collection of Perl modules for bioinformatics LICENSE= ART10 GPLv1 Modified: head/biology/p5-bioperl/distinfo ============================================================================== --- head/biology/p5-bioperl/distinfo Sun Jul 27 06:40:28 2014 (r363014) +++ head/biology/p5-bioperl/distinfo Sun Jul 27 07:27:17 2014 (r363015) @@ -1,2 +1,2 @@ -SHA256 (BioPerl-1.6.923.tar.gz) = 6f6ada4ebd51ad223662e4b1ddcccc37a4fb8c47f3ecbbf060e6844d361730cd -SIZE (BioPerl-1.6.923.tar.gz) = 12562520 +SHA256 (BioPerl-1.6.924.tar.gz) = 616a7546bb3c58504de27304a0f6cb904e18b6bbcdb6a4ec8454f2bd37bb76d0 +SIZE (BioPerl-1.6.924.tar.gz) = 12623118 Modified: head/biology/p5-bioperl/files/patch-Bio-Root-Build.pm ============================================================================== --- head/biology/p5-bioperl/files/patch-Bio-Root-Build.pm Sun Jul 27 06:40:28 2014 (r363014) +++ head/biology/p5-bioperl/files/patch-Bio-Root-Build.pm Sun Jul 27 07:27:17 2014 (r363015) @@ -1,6 +1,6 @@ ---- Bio/Root/Build.pm.orig 2009-09-30 00:33:53.000000000 +0800 -+++ Bio/Root/Build.pm 2009-12-01 10:31:39.000000000 +0800 -@@ -127,49 +127,9 @@ +--- Bio/Root/Build.pm.orig 2014-07-10 22:13:23.000000000 +0200 ++++ Bio/Root/Build.pm 2014-07-24 11:55:59.000000000 +0200 +@@ -83,49 +83,9 @@ } } closedir($scripts_dir); @@ -52,11 +52,12 @@ print "\n"; } -@@ -1136,21 +1096,9 @@ +@@ -1153,22 +1113,9 @@ sub prompt_for_network { my ($self, $accept) = @_; -- my $proceed = $accept ? 0 : $self->y_n("Do you want to run tests that require connection to servers across the internet\n(likely to cause some failures)? y/n", 'n'); +- my $proceed = $accept ? 0 : $self->y_n( "Do you want to run tests that require connection to servers across the internet\n" +- . "(likely to cause some failures)? y/n", 'n'); - - if ($proceed) { - $self->notes('network' => 1); @@ -76,4 +77,4 @@ + $self->log_info(" - will not run internet-requiring tests\n"); } - # override the build script warnings flag + =head2 print_build_script From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 07:30:27 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0508689E; Sun, 27 Jul 2014 07:30:27 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E68F52E9A; Sun, 27 Jul 2014 07:30:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6R7UQkR039671; Sun, 27 Jul 2014 07:30:26 GMT (envelope-from mva@svn.freebsd.org) Received: (from mva@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6R7UQQr039669; Sun, 27 Jul 2014 07:30:26 GMT (envelope-from mva@svn.freebsd.org) Message-Id: <201407270730.s6R7UQQr039669@svn.freebsd.org> From: Marcus von Appen Date: Sun, 27 Jul 2014 07:30:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363016 - head/games/manaplus X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 07:30:27 -0000 Author: mva Date: Sun Jul 27 07:30:26 2014 New Revision: 363016 URL: http://svnweb.freebsd.org/changeset/ports/363016 QAT: https://qat.redports.org/buildarchive/r363016/ Log: - Update to version 1.4.7.19 Modified: head/games/manaplus/Makefile head/games/manaplus/distinfo Modified: head/games/manaplus/Makefile ============================================================================== --- head/games/manaplus/Makefile Sun Jul 27 07:27:17 2014 (r363015) +++ head/games/manaplus/Makefile Sun Jul 27 07:30:26 2014 (r363016) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= manaplus -PORTVERSION= 1.4.7.5 -PORTREVISION= 1 +PORTVERSION= 1.4.7.19 CATEGORIES= games MASTER_SITES= http://download.evolonline.org/manaplus/download/${PORTVERSION}/ Modified: head/games/manaplus/distinfo ============================================================================== --- head/games/manaplus/distinfo Sun Jul 27 07:27:17 2014 (r363015) +++ head/games/manaplus/distinfo Sun Jul 27 07:30:26 2014 (r363016) @@ -1,2 +1,2 @@ -SHA256 (manaplus-1.4.7.5.tar.xz) = 3dcb44514104db327a9f7f4d040adae41a883e8910049c7ae10f0d39bf9cd4f6 -SIZE (manaplus-1.4.7.5.tar.xz) = 9033012 +SHA256 (manaplus-1.4.7.19.tar.xz) = 16393565f8667d393a5c788141f2be55bc02f71907db3113de60209defb4c852 +SIZE (manaplus-1.4.7.19.tar.xz) = 9042300 From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 07:50:12 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AAFE8C04; Sun, 27 Jul 2014 07:50:12 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7E71A2FEB; Sun, 27 Jul 2014 07:50:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6R7oC7s046885; Sun, 27 Jul 2014 07:50:12 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6R7oCug046883; Sun, 27 Jul 2014 07:50:12 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201407270750.s6R7oCug046883@svn.freebsd.org> From: John Marino Date: Sun, 27 Jul 2014 07:50:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363017 - head/graphics/shotwell X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 07:50:12 -0000 Author: marino Date: Sun Jul 27 07:50:11 2014 New Revision: 363017 URL: http://svnweb.freebsd.org/changeset/ports/363017 QAT: https://qat.redports.org/buildarchive/r363017/ Log: graphics/shotwell: Upgrade from version 0.18.0 => 0.18.1 This fixes a flickering issue. While here, remove an unneeded dependency and, if appropriate, strip libraries before they are installed. PR: 191887 Submitted by: maintainer (cmt) Modified: head/graphics/shotwell/Makefile head/graphics/shotwell/distinfo Modified: head/graphics/shotwell/Makefile ============================================================================== --- head/graphics/shotwell/Makefile Sun Jul 27 07:30:26 2014 (r363016) +++ head/graphics/shotwell/Makefile Sun Jul 27 07:50:11 2014 (r363017) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= shotwell -PORTVERSION= 0.18.0 -PORTREVISION= 1 +PORTVERSION= 0.18.1 CATEGORIES= graphics gnome MASTER_SITES= GNOME/sources/shotwell/${PORTVERSION:R} @@ -27,7 +26,7 @@ LIB_DEPENDS= libdbus-glib-1.so:${PORTSDI librest-0.7.so:${PORTSDIR}/devel/librest USES= shebangfix gettext desktop-file-utils gmake pkgconfig tar:xz -USE_GNOME= gnomehier gconf2 gtk20 gnomedocutils librsvg2 +USE_GNOME= dconf gnomehier gtk30 gnomedocutils USE_SQLITE= 3 USE_GSTREAMER1= yes HAS_CONFIGURE= yes @@ -67,6 +66,14 @@ post-configure: -e 's|\.get_child\("share")\.get_child\("shotwell")|${SHOTWELL_DATADIR}|' \ ${WRKSRC}/src/AppDirs.vala +post-install: + @${STRIP_CMD} ${STAGEDIR}${LOCALBASE}/bin/shotwell \ + ${STAGEDIR}${LOCALBASE}/lib/shotwell/plugins/builtin/shotwell-transitions.so \ + ${STAGEDIR}${LOCALBASE}/lib/shotwell/plugins/builtin/shotwell-publishing.so \ + ${STAGEDIR}${LOCALBASE}/lib/shotwell/plugins/builtin/shotwell-data-imports.so \ + ${STAGEDIR}${LOCALBASE}/lib/shotwell/plugins/builtin/shotwell-publishing-extras.so \ + ${STAGEDIR}${LOCALBASE}/libexec/shotwell/shotwell-video-thumbnailer + .include # attempt at a DATADIR safe port Modified: head/graphics/shotwell/distinfo ============================================================================== --- head/graphics/shotwell/distinfo Sun Jul 27 07:30:26 2014 (r363016) +++ head/graphics/shotwell/distinfo Sun Jul 27 07:50:11 2014 (r363017) @@ -1,2 +1,2 @@ -SHA256 (shotwell-0.18.0.tar.xz) = 6717b73cb243918ae71d251fddae27d0967a1d26727b43beefc40d3782fe0033 -SIZE (shotwell-0.18.0.tar.xz) = 1727216 +SHA256 (shotwell-0.18.1.tar.xz) = af1e1a682a7d293b04970b81f2c25c267f5dd9b2cd7b1ebc84eb0bb45c123317 +SIZE (shotwell-0.18.1.tar.xz) = 1727276 From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 07:59:57 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EAA12DD1; Sun, 27 Jul 2014 07:59:57 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BDBDB20B8; Sun, 27 Jul 2014 07:59:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6R7xv9A051310; Sun, 27 Jul 2014 07:59:57 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6R7xv0c051308; Sun, 27 Jul 2014 07:59:57 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201407270759.s6R7xv0c051308@svn.freebsd.org> From: John Marino Date: Sun, 27 Jul 2014 07:59:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363018 - in head/lang/polyml: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 07:59:58 -0000 Author: marino Date: Sun Jul 27 07:59:57 2014 New Revision: 363018 URL: http://svnweb.freebsd.org/changeset/ports/363018 QAT: https://qat.redports.org/buildarchive/r363018/ Log: lang/polyml: Upgrade version 5.5 => 5.5.2 Also: * add support for system libffi * Use sed instead of patch to fix configure * Adopt modern port conventions PR: 191914 Submitted by: maintainer (Timothy Beyer) Deleted: head/lang/polyml/files/ Modified: head/lang/polyml/Makefile head/lang/polyml/distinfo Modified: head/lang/polyml/Makefile ============================================================================== --- head/lang/polyml/Makefile Sun Jul 27 07:50:11 2014 (r363017) +++ head/lang/polyml/Makefile Sun Jul 27 07:59:57 2014 (r363018) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= polyml -PORTVERSION= 5.5 -PORTREVISION= 1 +PORTVERSION= 5.5.2 CATEGORIES= lang MASTER_SITES= SF DISTNAME= ${PORTNAME}.${PORTVERSION} @@ -15,20 +14,26 @@ COMMENT= Fast open-source implementation LICENSE= LGPL21 GNU_CONFIGURE= yes -CONFIGURE_ARGS= --without-x +CONFIGURE_ARGS= --without-x --with-system-libffi USE_GCC= yes USE_LDCONFIG= yes ONLY_FOR_ARCHS= i386 amd64 -PLIST_FILES= bin/poly \ - bin/polyimport \ - lib/libpolymain.a \ - lib/libpolymain.la \ - lib/libpolyml.a \ - lib/libpolyml.la \ - lib/libpolyml.so \ - lib/libpolyml.so.4 \ - man/man1/poly.1.gz \ +USES= libtool:keepla pkgconfig pathfix + +pre-build: + @${REINPLACE_CMD} "s|ELFXX_R_INFO(_y, _z) ELF64_R_INFO(_y, _z)|ELFXX_R_INFO(_y, _z) ELF64_R_INFO((Elf64_Xword)(_y), _z)|g" ${WRKSRC}/libpolyml/elfexport.h + +PLIST_FILES= bin/poly \ + bin/polyc \ + bin/polyimport \ + lib/libpolymain.a \ + lib/libpolymain.la \ + lib/libpolyml.a \ + lib/libpolyml.la \ + libdata/pkgconfig/polyml.pc \ + man/man1/poly.1.gz \ + man/man1/polyc.1.gz \ man/man1/polyimport.1.gz .include Modified: head/lang/polyml/distinfo ============================================================================== --- head/lang/polyml/distinfo Sun Jul 27 07:50:11 2014 (r363017) +++ head/lang/polyml/distinfo Sun Jul 27 07:59:57 2014 (r363018) @@ -1,2 +1,2 @@ -SHA256 (polyml/polyml.5.5.tar.gz) = 2b20e597e6fe43df1b0ed01e78e410c6b51d0ac7911833e91d94fcc9eb05d831 -SIZE (polyml/polyml.5.5.tar.gz) = 5504389 +SHA256 (polyml/polyml.5.5.2.tar.gz) = 73fd2be89f7e3ff0567e27ef525ef788775d9f963d6db54069cb34d53040a682 +SIZE (polyml/polyml.5.5.2.tar.gz) = 5599140 From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 08:08:15 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 51E881AA; Sun, 27 Jul 2014 08:08:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3FBA6217F; Sun, 27 Jul 2014 08:08:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6R88FBj056229; Sun, 27 Jul 2014 08:08:15 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6R88FOk056227; Sun, 27 Jul 2014 08:08:15 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201407270808.s6R88FOk056227@svn.freebsd.org> From: John Marino Date: Sun, 27 Jul 2014 08:08:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363019 - head/sysutils/syslog-ng X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 08:08:15 -0000 Author: marino Date: Sun Jul 27 08:08:14 2014 New Revision: 363019 URL: http://svnweb.freebsd.org/changeset/ports/363019 QAT: https://qat.redports.org/buildarchive/r363019/ Log: sysutils/syslog-ng: Fix various build and configuration failures PR: 191769 Reported by: Paul (dokas.name) Fixed by: maintainer (cy@) Modified: head/sysutils/syslog-ng/Makefile Modified: head/sysutils/syslog-ng/Makefile ============================================================================== --- head/sysutils/syslog-ng/Makefile Sun Jul 27 07:59:57 2014 (r363018) +++ head/sysutils/syslog-ng/Makefile Sun Jul 27 08:08:14 2014 (r363019) @@ -98,7 +98,7 @@ CONFIGURE_ARGS+= --disable-pcre .if ${PORT_OPTIONS:MGEOIP} CONFIGURE_ARGS+= --enable-geoip LIB_DEPENDS+= libGeoIP.so:${PORTSDIR}/net/GeoIP -CONFIGURE_ENV+= GEOIP_LIBS="-lGeoIP" +CONFIGURE_ENV+= GEOIP_LIBS="-L${LOCALBASE}/lib -lGeoIP" PLIST_FILES+= lib/syslog-ng/libtfgeoip.so .else CONFIGURE_ARGS+= --disable-geoip From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 08:15:16 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8A2A6377; Sun, 27 Jul 2014 08:15:16 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5CED5222C; Sun, 27 Jul 2014 08:15:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6R8FGip061195; Sun, 27 Jul 2014 08:15:16 GMT (envelope-from rene@svn.freebsd.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6R8FFoS061192; Sun, 27 Jul 2014 08:15:15 GMT (envelope-from rene@svn.freebsd.org) Message-Id: <201407270815.s6R8FFoS061192@svn.freebsd.org> From: Rene Ladan Date: Sun, 27 Jul 2014 08:15:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363020 - in head: . devel devel/p5-MetaCPAN-API net-im net-im/pidgin-facebookchat X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 08:15:16 -0000 Author: rene Date: Sun Jul 27 08:15:15 2014 New Revision: 363020 URL: http://svnweb.freebsd.org/changeset/ports/363020 QAT: https://qat.redports.org/buildarchive/r363020/ Log: Remove expired ports: 2014-07-27 devel/p5-MetaCPAN-API: Use devel/p5-MetaCPAN-Client instead 2014-07-27 net-im/pidgin-facebookchat: obsolete, development has ceased, not staged Deleted: head/devel/p5-MetaCPAN-API/ head/net-im/pidgin-facebookchat/ Modified: head/MOVED head/devel/Makefile head/net-im/Makefile Modified: head/MOVED ============================================================================== --- head/MOVED Sun Jul 27 08:08:14 2014 (r363019) +++ head/MOVED Sun Jul 27 08:15:15 2014 (r363020) @@ -6333,3 +6333,5 @@ sysutils/lookupd_ldap||2014-07-24|Has ex sysutils/p5-Sys-Utmp||2014-07-24|Has expired: Fails to build with new utmpx sysutils/syslog-ng2||2014-07-24|Has expired: Fails to build with new utmpx sysutils/yawho||2014-07-24|Has expired: Fails to build with new utmpx +devel/p5-MetaCPAN-API|devel/p5-MetaCPAN-Client|2014-07-27|Has expired: Use devel/p5-MetaCPAN-Client instead +net-im/pidgin-facebookchat||2014-07-27|Has expired: obsolete, development has ceased, not staged Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Jul 27 08:08:14 2014 (r363019) +++ head/devel/Makefile Sun Jul 27 08:15:15 2014 (r363020) @@ -2300,7 +2300,6 @@ SUBDIR += p5-Memoize SUBDIR += p5-Memoize-ExpireLRU SUBDIR += p5-Meta-Builder - SUBDIR += p5-MetaCPAN-API SUBDIR += p5-MetaCPAN-Client SUBDIR += p5-Metabase-Client-Simple SUBDIR += p5-Metabase-Fact Modified: head/net-im/Makefile ============================================================================== --- head/net-im/Makefile Sun Jul 27 08:08:14 2014 (r363019) +++ head/net-im/Makefile Sun Jul 27 08:15:15 2014 (r363020) @@ -102,7 +102,6 @@ SUBDIR += pidgin-audacious-remote SUBDIR += pidgin-birthday-reminder SUBDIR += pidgin-bs - SUBDIR += pidgin-facebookchat SUBDIR += pidgin-fetion SUBDIR += pidgin-guifications SUBDIR += pidgin-hotkeys From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 08:16:12 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A880445D; Sun, 27 Jul 2014 08:16:12 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 95D832234; Sun, 27 Jul 2014 08:16:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6R8GCWm061465; Sun, 27 Jul 2014 08:16:12 GMT (envelope-from wen@svn.freebsd.org) Received: (from wen@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6R8GCtL061463; Sun, 27 Jul 2014 08:16:12 GMT (envelope-from wen@svn.freebsd.org) Message-Id: <201407270816.s6R8GCtL061463@svn.freebsd.org> From: Wen Heping Date: Sun, 27 Jul 2014 08:16:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363021 - head/deskutils/sugarcrm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 08:16:12 -0000 Author: wen Date: Sun Jul 27 08:16:11 2014 New Revision: 363021 URL: http://svnweb.freebsd.org/changeset/ports/363021 QAT: https://qat.redports.org/buildarchive/r363021/ Log: - Update to 6.5.17 Modified: head/deskutils/sugarcrm/Makefile head/deskutils/sugarcrm/distinfo Modified: head/deskutils/sugarcrm/Makefile ============================================================================== --- head/deskutils/sugarcrm/Makefile Sun Jul 27 08:15:15 2014 (r363020) +++ head/deskutils/sugarcrm/Makefile Sun Jul 27 08:16:11 2014 (r363021) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= sugarcrm -PORTVERSION= 6.5.16 +PORTVERSION= 6.5.17 CATEGORIES= deskutils www MASTER_SITES= SF MASTER_SITE_SUBDIR= ${PORTNAME}/1%20-%20SugarCRM%206.5.X/SugarCommunityEdition-6.5.X Modified: head/deskutils/sugarcrm/distinfo ============================================================================== --- head/deskutils/sugarcrm/distinfo Sun Jul 27 08:15:15 2014 (r363020) +++ head/deskutils/sugarcrm/distinfo Sun Jul 27 08:16:11 2014 (r363021) @@ -1,2 +1,2 @@ -SHA256 (SugarCE-6.5.16.zip) = 411e5bde2a0107ac01676d24aea0831d4757373cea009c1a319aa82b784a440b -SIZE (SugarCE-6.5.16.zip) = 21255862 +SHA256 (SugarCE-6.5.17.zip) = bac6b1bbe25cfba6503c2ac3d80a2c0095892ed49bada38a9153ee5505944c41 +SIZE (SugarCE-6.5.17.zip) = 21256029 From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 08:18:17 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D2C8F57D; Sun, 27 Jul 2014 08:18:17 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C053E2245; Sun, 27 Jul 2014 08:18:17 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6R8IHS6061908; Sun, 27 Jul 2014 08:18:17 GMT (envelope-from wen@svn.freebsd.org) Received: (from wen@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6R8IH8l061905; Sun, 27 Jul 2014 08:18:17 GMT (envelope-from wen@svn.freebsd.org) Message-Id: <201407270818.s6R8IH8l061905@svn.freebsd.org> From: Wen Heping Date: Sun, 27 Jul 2014 08:18:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363022 - head/ftp/py-curl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 08:18:17 -0000 Author: wen Date: Sun Jul 27 08:18:17 2014 New Revision: 363022 URL: http://svnweb.freebsd.org/changeset/ports/363022 QAT: https://qat.redports.org/buildarchive/r363022/ Log: - Update to 7.19.5 - Add MASTER_SITES mirror - Reset maintainer to port@ Modified: head/ftp/py-curl/Makefile head/ftp/py-curl/distinfo Modified: head/ftp/py-curl/Makefile ============================================================================== --- head/ftp/py-curl/Makefile Sun Jul 27 08:16:11 2014 (r363021) +++ head/ftp/py-curl/Makefile Sun Jul 27 08:18:17 2014 (r363022) @@ -2,14 +2,15 @@ # $FreeBSD$ PORTNAME= curl -PORTVERSION= 7.19.3.1 +PORTVERSION= 7.19.5 CATEGORIES= ftp python -MASTER_SITES= http://pycurl.sourceforge.net/download/ \ +MASTER_SITES= CHEESESHOP \ + http://pycurl.sourceforge.net/download/ \ http://pycurl.sourceforge.net/download/00-OLD-VERSIONS/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= py${PORTNAME}-${PORTVERSION} -MAINTAINER= wenheping@gmail.com +MAINTAINER= ports@FreeBSD.org COMMENT= Python interface to libcurl LICENSE= LGPL21 MIT Modified: head/ftp/py-curl/distinfo ============================================================================== --- head/ftp/py-curl/distinfo Sun Jul 27 08:16:11 2014 (r363021) +++ head/ftp/py-curl/distinfo Sun Jul 27 08:18:17 2014 (r363022) @@ -1,2 +1,2 @@ -SHA256 (pycurl-7.19.3.1.tar.gz) = c0d673fe99a9de07239eabe77c798f1b043f60c02afaec1430ceaf59d7501a4f -SIZE (pycurl-7.19.3.1.tar.gz) = 116687 +SHA256 (pycurl-7.19.5.tar.gz) = 69a0aa7c9dddbfe4cebf4d1f674c490faccf739fc930d85d8990ce2fd0551a43 +SIZE (pycurl-7.19.5.tar.gz) = 107580 From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 08:18:58 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B917B667; Sun, 27 Jul 2014 08:18:58 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A6775224A; Sun, 27 Jul 2014 08:18:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6R8Iw5T062096; Sun, 27 Jul 2014 08:18:58 GMT (envelope-from wen@svn.freebsd.org) Received: (from wen@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6R8IwQf062094; Sun, 27 Jul 2014 08:18:58 GMT (envelope-from wen@svn.freebsd.org) Message-Id: <201407270818.s6R8IwQf062094@svn.freebsd.org> From: Wen Heping Date: Sun, 27 Jul 2014 08:18:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363023 - head/databases/py-pg8000 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 08:18:58 -0000 Author: wen Date: Sun Jul 27 08:18:57 2014 New Revision: 363023 URL: http://svnweb.freebsd.org/changeset/ports/363023 QAT: https://qat.redports.org/buildarchive/r363023/ Log: - Update to 1.9.12 Modified: head/databases/py-pg8000/Makefile head/databases/py-pg8000/distinfo Modified: head/databases/py-pg8000/Makefile ============================================================================== --- head/databases/py-pg8000/Makefile Sun Jul 27 08:18:17 2014 (r363022) +++ head/databases/py-pg8000/Makefile Sun Jul 27 08:18:57 2014 (r363023) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pg8000 -PORTVERSION= 1.9.10 +PORTVERSION= 1.9.12 CATEGORIES= databases python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/databases/py-pg8000/distinfo ============================================================================== --- head/databases/py-pg8000/distinfo Sun Jul 27 08:18:17 2014 (r363022) +++ head/databases/py-pg8000/distinfo Sun Jul 27 08:18:57 2014 (r363023) @@ -1,2 +1,2 @@ -SHA256 (pg8000-1.9.10.tar.gz) = 653e096125d5b48ea98731370d555f478788f5f7bdf021649018dbe1979bff49 -SIZE (pg8000-1.9.10.tar.gz) = 26893 +SHA256 (pg8000-1.9.12.tar.gz) = bd0ffaf043bf06e3d390432ff5800e18158e804b3c3ec8f60fe8a317e4c2639b +SIZE (pg8000-1.9.12.tar.gz) = 37301 From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 08:20:55 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AF9E4887; Sun, 27 Jul 2014 08:20:55 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9D20322D7; Sun, 27 Jul 2014 08:20:55 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6R8KtVP062519; Sun, 27 Jul 2014 08:20:55 GMT (envelope-from wen@svn.freebsd.org) Received: (from wen@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6R8Kt6M062517; Sun, 27 Jul 2014 08:20:55 GMT (envelope-from wen@svn.freebsd.org) Message-Id: <201407270820.s6R8Kt6M062517@svn.freebsd.org> From: Wen Heping Date: Sun, 27 Jul 2014 08:20:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363024 - head/devel/p5-Exporter-Easy X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 08:20:55 -0000 Author: wen Date: Sun Jul 27 08:20:54 2014 New Revision: 363024 URL: http://svnweb.freebsd.org/changeset/ports/363024 QAT: https://qat.redports.org/buildarchive/r363024/ Log: - Update to 0.17 Changes: http://cpansearch.perl.org/src/NEILB/Exporter-Easy-0.17/Changes - Reset maintainer to perl@ Modified: head/devel/p5-Exporter-Easy/Makefile head/devel/p5-Exporter-Easy/distinfo Modified: head/devel/p5-Exporter-Easy/Makefile ============================================================================== --- head/devel/p5-Exporter-Easy/Makefile Sun Jul 27 08:18:57 2014 (r363023) +++ head/devel/p5-Exporter-Easy/Makefile Sun Jul 27 08:20:54 2014 (r363024) @@ -2,12 +2,12 @@ # $FreeBSD$ PORTNAME= Exporter-Easy -PORTVERSION= 0.16 +PORTVERSION= 0.17 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- -MAINTAINER= wen@FreeBSD.org +MAINTAINER= perl@FreeBSD.org COMMENT= Takes the drudgery out of Exporting symbols USES= perl5 Modified: head/devel/p5-Exporter-Easy/distinfo ============================================================================== --- head/devel/p5-Exporter-Easy/distinfo Sun Jul 27 08:18:57 2014 (r363023) +++ head/devel/p5-Exporter-Easy/distinfo Sun Jul 27 08:20:54 2014 (r363024) @@ -1,2 +1,2 @@ -SHA256 (Exporter-Easy-0.16.tar.gz) = fa7b08b74756a7996dd5b764678030072cca64edda56a99b36f5038665adec8e -SIZE (Exporter-Easy-0.16.tar.gz) = 9235 +SHA256 (Exporter-Easy-0.17.tar.gz) = 7aa57ad5790431133452ac59b20de43d341d75b0ecf9768a76327e8530cf8080 +SIZE (Exporter-Easy-0.17.tar.gz) = 16841 From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 08:25:21 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ABC34AD3; Sun, 27 Jul 2014 08:25:21 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9911122EF; Sun, 27 Jul 2014 08:25:21 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6R8PLx1066339; Sun, 27 Jul 2014 08:25:21 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6R8PL0Y066336; Sun, 27 Jul 2014 08:25:21 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201407270825.s6R8PL0Y066336@svn.freebsd.org> From: John Marino Date: Sun, 27 Jul 2014 08:25:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363025 - head/devel/premake X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 08:25:21 -0000 Author: marino Date: Sun Jul 27 08:25:20 2014 New Revision: 363025 URL: http://svnweb.freebsd.org/changeset/ports/363025 QAT: https://qat.redports.org/buildarchive/r363025/ Log: devel/premake: pet portlint and unmask installation I meant to cd to devel/premake4 and started cleaning up this port by mistake. Oh well. Portlint is now happy and danfe@ will be happy that I unmasked and installation command. Modified: head/devel/premake/Makefile head/devel/premake/pkg-descr Modified: head/devel/premake/Makefile ============================================================================== --- head/devel/premake/Makefile Sun Jul 27 08:20:54 2014 (r363024) +++ head/devel/premake/Makefile Sun Jul 27 08:25:20 2014 (r363025) @@ -9,7 +9,7 @@ MASTER_SITES= SF/${PORTNAME}/Premake/${P DISTNAME= ${PORTNAME}-src-${PORTVERSION} MAINTAINER= lippe@FreeBSD.org -COMMENT= Writes build scripts +COMMENT= Build script creation tool OPTIONS_DEFINE= DOCS @@ -24,6 +24,6 @@ PORTDOCS= CHANGES.txt LICENSE.txt README do-install: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} - @${INSTALL_PROGRAM} ${WRKSRC}/bin/premake ${STAGEDIR}${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/bin/premake ${STAGEDIR}${PREFIX}/bin .include Modified: head/devel/premake/pkg-descr ============================================================================== --- head/devel/premake/pkg-descr Sun Jul 27 08:20:54 2014 (r363024) +++ head/devel/premake/pkg-descr Sun Jul 27 08:25:20 2014 (r363025) @@ -2,4 +2,4 @@ Describe your software project with a fu Premake write the build scripts for you. With one file your project can support both IDE-addicted Windows coders and Linux command-line junkies! -WWW: http://premake.sourceforge.net +WWW: http://premake.sourceforge.net From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 08:30:42 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CFA5CE98; Sun, 27 Jul 2014 08:30:42 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A32552316; Sun, 27 Jul 2014 08:30:42 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6R8Ugg1068555; Sun, 27 Jul 2014 08:30:42 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6R8Ugun068222; Sun, 27 Jul 2014 08:30:42 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201407270830.s6R8Ugun068222@svn.freebsd.org> From: John Marino Date: Sun, 27 Jul 2014 08:30:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363026 - in head/devel/premake4: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 08:30:42 -0000 Author: marino Date: Sun Jul 27 08:30:41 2014 New Revision: 363026 URL: http://svnweb.freebsd.org/changeset/ports/363026 QAT: https://qat.redports.org/buildarchive/r363026/ Log: devel/premake4: Upgrade version from 4.3 => 4.4b It's bad practice to upgrade from a release version to a beta version, but according to the maintainer several projects are already requiring the 4.4 version of premake, essentially forcing an upgrade. PR: 192004 Submitted by: maintainer (Vitaly Magerya) Deleted: head/devel/premake4/files/ Modified: head/devel/premake4/Makefile head/devel/premake4/distinfo Modified: head/devel/premake4/Makefile ============================================================================== --- head/devel/premake4/Makefile Sun Jul 27 08:25:20 2014 (r363025) +++ head/devel/premake4/Makefile Sun Jul 27 08:30:41 2014 (r363026) @@ -2,21 +2,21 @@ # $FreeBSD$ PORTNAME= premake4 -PORTVERSION= 4.3 +PORTVERSION= 4.4.b5 CATEGORIES= devel -MASTER_SITES= SF/premake/Premake/${PORTVERSION} -DISTNAME= premake-${PORTVERSION}-src +MASTER_SITES= SF/premake/Premake/${PORTVERSION:C/.b.+//} +DISTNAME= premake-${PORTVERSION:S/.b/-beta/}-src MAINTAINER= vmagerya@gmail.com -COMMENT= Writes build scripts +COMMENT= Build script creation tool OPTIONS_DEFINE= DOCS -WRKSRC= ${WRKDIR}/premake-${PORTVERSION} +WRKSRC= ${WRKDIR}/premake-${PORTVERSION:S/.b/-beta/} BUILD_WRKSRC= ${WRKSRC}/build/gmake.unix USES= gmake zip -MAKE_ARGS= ARCH="" +MAKE_ARGS= ARCH="" CC="${CC}" CXX="${CXX}" PLIST_FILES= bin/premake4 @@ -24,12 +24,18 @@ PORTDOCS= CHANGES.txt LICENSE.txt README post-patch: ${REINPLACE_CMD} -e 's|-ldl||' ${BUILD_WRKSRC}/Premake4.make - ${REINPLACE_CMD} -e 's|debug|release|' ${WRKSRC}/tests/test + ${REINPLACE_CMD} -e 's|debug|release|' \ + ${WRKSRC}/tests/test \ + ${WRKSRC}/tests/base/test_premake_command.lua + ${REINPLACE_CMD} -e 's|io.open(conf_file)|nil|' \ + ${WRKSRC}/src/base/os.lua \ + ${WRKSRC}/src/host/scripts.c do-install: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} - ${INSTALL_PROGRAM} ${WRKSRC}/bin/release/premake4 ${STAGEDIR}${PREFIX}/bin + ${INSTALL_PROGRAM} \ + ${WRKSRC}/bin/release/premake4 ${STAGEDIR}${PREFIX}/bin regression-test: build cd ${WRKSRC}/tests && ./test Modified: head/devel/premake4/distinfo ============================================================================== --- head/devel/premake4/distinfo Sun Jul 27 08:25:20 2014 (r363025) +++ head/devel/premake4/distinfo Sun Jul 27 08:30:41 2014 (r363026) @@ -1,2 +1,2 @@ -SHA256 (premake-4.3-src.zip) = 36536490f8928d8ecde135da80cd8b751ea5bebe50cabba5c0de49cd41cb2780 -SIZE (premake-4.3-src.zip) = 514366 +SHA256 (premake-4.4-beta5-src.zip) = 0fa1ed02c5229d931e87995123cdb11d44fcc8bd99bba8e8bb1bbc0aaa798161 +SIZE (premake-4.4-beta5-src.zip) = 596883 From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 08:36:04 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B8A52FB1; Sun, 27 Jul 2014 08:36:04 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A56FA23A5; Sun, 27 Jul 2014 08:36:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6R8a44U071166; Sun, 27 Jul 2014 08:36:04 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6R8a47B071163; Sun, 27 Jul 2014 08:36:04 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201407270836.s6R8a47B071163@svn.freebsd.org> From: John Marino Date: Sun, 27 Jul 2014 08:36:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363027 - head/lang/chicken X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 08:36:04 -0000 Author: marino Date: Sun Jul 27 08:36:03 2014 New Revision: 363027 URL: http://svnweb.freebsd.org/changeset/ports/363027 QAT: https://qat.redports.org/buildarchive/r363027/ Log: lang/chicken: Upgrade version 4.8.0.5 => 4.9.0.1 PR: 192001 Submitted by: maintainer (Vitaly Magerya) Modified: head/lang/chicken/Makefile head/lang/chicken/distinfo head/lang/chicken/pkg-plist Modified: head/lang/chicken/Makefile ============================================================================== --- head/lang/chicken/Makefile Sun Jul 27 08:30:41 2014 (r363026) +++ head/lang/chicken/Makefile Sun Jul 27 08:36:03 2014 (r363027) @@ -2,9 +2,9 @@ # $FreeBSD$ PORTNAME= chicken -PORTVERSION= 4.8.0.5 +PORTVERSION= 4.9.0.1 CATEGORIES= lang scheme -MASTER_SITES= http://code.call-cc.org/releases/4.8.0/ +MASTER_SITES= http://code.call-cc.org/releases/4.9.0/ MAINTAINER= vmagerya@gmail.com COMMENT= Scheme-to-C compiler Modified: head/lang/chicken/distinfo ============================================================================== --- head/lang/chicken/distinfo Sun Jul 27 08:30:41 2014 (r363026) +++ head/lang/chicken/distinfo Sun Jul 27 08:36:03 2014 (r363027) @@ -1,2 +1,2 @@ -SHA256 (chicken-4.8.0.5.tar.gz) = 5b9192951bc61cc19dd4963cceb93908bff46b6868d7927f19850e8973c430fb -SIZE (chicken-4.8.0.5.tar.gz) = 3970370 +SHA256 (chicken-4.9.0.1.tar.gz) = 04df7c439c36fc16446bdfa186e7a70258f911d2d826b5216a8e6b1cb2aa2815 +SIZE (chicken-4.9.0.1.tar.gz) = 4023371 Modified: head/lang/chicken/pkg-plist ============================================================================== --- head/lang/chicken/pkg-plist Sun Jul 27 08:30:41 2014 (r363026) +++ head/lang/chicken/pkg-plist Sun Jul 27 08:36:03 2014 (r363027) @@ -8,32 +8,31 @@ bin/csc bin/csi include/chicken/chicken-config.h include/chicken/chicken.h -lib/chicken/6/chicken.import.so -lib/chicken/6/csi.import.so -lib/chicken/6/data-structures.import.so -lib/chicken/6/extras.import.so -lib/chicken/6/files.import.so -lib/chicken/6/foreign.import.so -lib/chicken/6/irregex.import.so -lib/chicken/6/lolevel.import.so -lib/chicken/6/ports.import.so -lib/chicken/6/posix.import.so -lib/chicken/6/setup-api.import.so -lib/chicken/6/setup-api.so -lib/chicken/6/setup-download.import.so -lib/chicken/6/setup-download.so -lib/chicken/6/srfi-1.import.so -lib/chicken/6/srfi-13.import.so -lib/chicken/6/srfi-14.import.so -lib/chicken/6/srfi-18.import.so -lib/chicken/6/srfi-4.import.so -lib/chicken/6/srfi-69.import.so -lib/chicken/6/tcp.import.so -lib/chicken/6/types.db -lib/chicken/6/utils.import.so +lib/chicken/7/chicken.import.so +lib/chicken/7/csi.import.so +lib/chicken/7/data-structures.import.so +lib/chicken/7/extras.import.so +lib/chicken/7/files.import.so +lib/chicken/7/foreign.import.so +lib/chicken/7/irregex.import.so +lib/chicken/7/lolevel.import.so +lib/chicken/7/ports.import.so +lib/chicken/7/posix.import.so +lib/chicken/7/setup-api.import.so +lib/chicken/7/setup-api.so +lib/chicken/7/setup-download.import.so +lib/chicken/7/setup-download.so +lib/chicken/7/srfi-1.import.so +lib/chicken/7/srfi-13.import.so +lib/chicken/7/srfi-14.import.so +lib/chicken/7/srfi-18.import.so +lib/chicken/7/srfi-4.import.so +lib/chicken/7/srfi-69.import.so +lib/chicken/7/tcp.import.so +lib/chicken/7/types.db +lib/chicken/7/utils.import.so lib/libchicken.a -lib/libchicken.so -lib/libchicken.so.6 +lib/libchicken.so.7 man/man1/chicken-bug.1.gz man/man1/chicken-install.1.gz man/man1/chicken-profile.1.gz @@ -95,16 +94,16 @@ man/man1/csi.1.gz %%PORTDOCS%%%%DOCSDIR%%/manual/Unit tcp.html %%PORTDOCS%%%%DOCSDIR%%/manual/Unit utils.html %%PORTDOCS%%%%DOCSDIR%%/manual/Using the compiler.html -%%PORTDOCS%%%%DOCSDIR%%/manual/chicken.png %%PORTDOCS%%%%DOCSDIR%%/manual/Using the interpreter.html +%%PORTDOCS%%%%DOCSDIR%%/manual/chicken.png %%PORTDOCS%%%%DOCSDIR%%/manual/faq.html %%PORTDOCS%%%%DOCSDIR%%/manual/index.html %%PORTDOCS%%%%DOCSDIR%%/manual/manual.css %%PORTDOCS%%@dirrm %%DOCSDIR%%/manual %%PORTDOCS%%@dirrm %%DOCSDIR%% @exec %D/bin/chicken-install -update-db -@unexec rm -f %D/lib/chicken/6/modules.db +@unexec rm -f %D/lib/chicken/7/modules.db @dirrm %%DATADIR%% -@dirrm lib/chicken/6 +@dirrm lib/chicken/7 @dirrm lib/chicken @dirrm include/chicken From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 08:41:55 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 48107584; Sun, 27 Jul 2014 08:41:55 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 35DBA243A; Sun, 27 Jul 2014 08:41:55 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6R8ftjo073386; Sun, 27 Jul 2014 08:41:55 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6R8fsLs073380; Sun, 27 Jul 2014 08:41:54 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201407270841.s6R8fsLs073380@svn.freebsd.org> From: John Marino Date: Sun, 27 Jul 2014 08:41:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363028 - head/lang/s9fes X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 08:41:55 -0000 Author: marino Date: Sun Jul 27 08:41:54 2014 New Revision: 363028 URL: http://svnweb.freebsd.org/changeset/ports/363028 QAT: https://qat.redports.org/buildarchive/r363028/ Log: stage lang/s9fes PR: 192008 Submitted by: maintainer (Vitaly Magerya) Modified: head/lang/s9fes/Makefile head/lang/s9fes/pkg-plist Modified: head/lang/s9fes/Makefile ============================================================================== --- head/lang/s9fes/Makefile Sun Jul 27 08:36:03 2014 (r363027) +++ head/lang/s9fes/Makefile Sun Jul 27 08:41:54 2014 (r363028) @@ -18,8 +18,11 @@ LIBDIR= ${DATADIR} MAKE_ARGS= ${MAKE_ENV} WRKSRC= ${WRKDIR}/s9 -MAN1= s9.1 -MANCOMPRESSED= yes +post-patch: + ${REINPLACE_CMD} -E \ + -e 's|\$$\(BINDIR\)|$$(DESTDIR)$$(BINDIR)|g' \ + -e '/-DDEF|>s9.1.gz/!s|\$$\(LIBDIR\)|$$(DESTDIR)$$(LIBDIR)|g' \ + -e 's|\$$\(MANDIR\)|$$(DESTDIR)$$(MANDIR)|g' \ + ${WRKSRC}/Makefile -NO_STAGE= yes .include Modified: head/lang/s9fes/pkg-plist ============================================================================== --- head/lang/s9fes/pkg-plist Sun Jul 27 08:36:03 2014 (r363027) +++ head/lang/s9fes/pkg-plist Sun Jul 27 08:41:54 2014 (r363028) @@ -3,6 +3,7 @@ bin/s9help bin/s9resolve bin/scm2html bin/scmpp +man/man1/s9.1.gz %%DATADIR%%/S9Book %%DATADIR%%/S9Book-bw %%DATADIR%%/_template From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 08:51:37 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EBF439CF; Sun, 27 Jul 2014 08:51:37 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D8CCF251A; Sun, 27 Jul 2014 08:51:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6R8pbRq079430; Sun, 27 Jul 2014 08:51:37 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6R8pbrk079428; Sun, 27 Jul 2014 08:51:37 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201407270851.s6R8pbrk079428@svn.freebsd.org> From: John Marino Date: Sun, 27 Jul 2014 08:51:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363029 - in head/x11/xcb: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 08:51:38 -0000 Author: marino Date: Sun Jul 27 08:51:37 2014 New Revision: 363029 URL: http://svnweb.freebsd.org/changeset/ports/363029 QAT: https://qat.redports.org/buildarchive/r363029/ Log: x11/xcb: Fix incorrectly built app-defaults file The app-defaults file for xcb was not built correctly as a consequence of the switch to clang and replacement of gcc's cpp to tradcpp which is more strict about the order of the parameters. The filename must be last on the command line otherwise a zero-length file is created. Fixed by moving the filename parameter to the end of the cpp command PR: 188203 Submitted by: callum (omma.gibson.athome) Added: head/x11/xcb/files/ head/x11/xcb/files/patch-Imakefile (contents, props changed) Modified: head/x11/xcb/Makefile Modified: head/x11/xcb/Makefile ============================================================================== --- head/x11/xcb/Makefile Sun Jul 27 08:41:54 2014 (r363028) +++ head/x11/xcb/Makefile Sun Jul 27 08:51:37 2014 (r363029) @@ -3,7 +3,7 @@ PORTNAME= xcb PORTVERSION= 2.4 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= x11 MASTER_SITES= http://oldhome.schmorp.de/marc/data/ \ http://ftp.lyx.org/pub/pcg/marc/ \ Added: head/x11/xcb/files/patch-Imakefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/xcb/files/patch-Imakefile Sun Jul 27 08:51:37 2014 (r363029) @@ -0,0 +1,10 @@ +--- Imakefile.orig 2002-11-25 15:28:17.000000000 +0000 ++++ Imakefile +@@ -20,6 +20,6 @@ OBJS = xcb.o + ComplexProgramTarget(xcb) + + Xcb.ad: Xcb.ad.base +- $(CPP) -P Xcb.ad.base $(GUI) > $@ # -P removes line directives. ++ $(CPP) $(GUI) -P Xcb.ad.base > $@ # -P removes line directives. + + InstallAppDefaults(Xcb) From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 09:05:49 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E4FC9E1B; Sun, 27 Jul 2014 09:05:49 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D1FF72603; Sun, 27 Jul 2014 09:05:49 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6R95nBR085243; Sun, 27 Jul 2014 09:05:49 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6R95n6W085241; Sun, 27 Jul 2014 09:05:49 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201407270905.s6R95n6W085241@svn.freebsd.org> From: John Marino Date: Sun, 27 Jul 2014 09:05:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363030 - in head/sysutils/tcplist: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 09:05:50 -0000 Author: marino Date: Sun Jul 27 09:05:49 2014 New Revision: 363030 URL: http://svnweb.freebsd.org/changeset/ports/363030 QAT: https://qat.redports.org/buildarchive/r363030/ Log: sysutils/tcplist: Fix compatiblity with sysutils/lsof PR: 187240 Submitted by: Chris Hutchinson Fix by: Ruslan Modified: head/sysutils/tcplist/Makefile head/sysutils/tcplist/files/patch-03 Modified: head/sysutils/tcplist/Makefile ============================================================================== --- head/sysutils/tcplist/Makefile Sun Jul 27 08:51:37 2014 (r363029) +++ head/sysutils/tcplist/Makefile Sun Jul 27 09:05:49 2014 (r363030) @@ -3,7 +3,7 @@ PORTNAME= tcplist PORTVERSION= 2.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils net MASTER_SITES= ftp://ftp.cdf.toronto.edu/pub/jdd/tcplist/ EXTRACT_SUFX= .shar Modified: head/sysutils/tcplist/files/patch-03 ============================================================================== --- head/sysutils/tcplist/files/patch-03 Sun Jul 27 08:51:37 2014 (r363029) +++ head/sysutils/tcplist/files/patch-03 Sun Jul 27 09:05:49 2014 (r363030) @@ -1,11 +1,11 @@ ---- lsof.c.orig Tue Mar 9 11:49:40 1999 -+++ lsof.c Tue Mar 9 11:51:17 1999 +--- lsof.c.orig 2014-07-27 08:59:42.000000000 +0000 ++++ lsof.c @@ -27,7 +27,7 @@ #define LSOFCMD "lsof -HPsli TCP | awk '{print $3,$NF}' | sort | uniq" #else /* !OLDLSOF */ /* These use the current (as of 3.62W, at least) parameters for lsof */ -#define LSOFCMD "lsof -nPsli TCP | awk '{print $3,$NF}' | sort | uniq" -+#define LSOFCMD "lsof -nPsli TCP | awk '{print $3,$(NF - 1)}' | sort | uniq" ++#define LSOFCMD "lsof -nPls -iTCP | awk '{print $3,$(NF - 1)}' | tail -n+2 | sort | uniq" #endif /* !OLDLSOF */ #endif /* LSOFCMD */ From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 09:36:58 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B23DC511; Sun, 27 Jul 2014 09:36:58 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8520128AB; Sun, 27 Jul 2014 09:36:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6R9awZG099106; Sun, 27 Jul 2014 09:36:58 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6R9awsd099104; Sun, 27 Jul 2014 09:36:58 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201407270936.s6R9awsd099104@svn.freebsd.org> From: John Marino Date: Sun, 27 Jul 2014 09:36:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363031 - in head/net/boinc-client: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 09:36:58 -0000 Author: marino Date: Sun Jul 27 09:36:57 2014 New Revision: 363031 URL: http://svnweb.freebsd.org/changeset/ports/363031 QAT: https://qat.redports.org/buildarchive/r363031/ Log: net/boinc-client: Fix to detect virtualbox again The virtualbox path detection code has been patched to work on FreeBSD. The PR submission was modified to avoid hardcoding /usr/local. PR: 188710 Submitted by: Lawrence Chen Added: head/net/boinc-client/files/patch-client__hostinfo_unix.cpp (contents, props changed) Modified: head/net/boinc-client/Makefile Modified: head/net/boinc-client/Makefile ============================================================================== --- head/net/boinc-client/Makefile Sun Jul 27 09:05:49 2014 (r363030) +++ head/net/boinc-client/Makefile Sun Jul 27 09:36:57 2014 (r363031) @@ -3,7 +3,7 @@ PORTNAME= boinc-client PORTVERSION= 7.2.33 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_LOCAL} \ ftp://rene-ladan.nl/pub/distfiles/ @@ -124,6 +124,10 @@ post-extract: ${WRKSRC}/zip/zip/zip.c ${WRKSRC}/zip/zip/zipfile.c \ ${WRKSRC}/zip/zip/zipup.c +post-patch: + ${REINPLACE_CMD} -e 's|@PREFIX@|${PREFIX}|' \ + ${WRKSRC}/client/hostinfo_unix.cpp + pre-configure: (cd ${WRKSRC} ; ./_autosetup) Added: head/net/boinc-client/files/patch-client__hostinfo_unix.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/boinc-client/files/patch-client__hostinfo_unix.cpp Sun Jul 27 09:36:57 2014 (r363031) @@ -0,0 +1,20 @@ +--- client/hostinfo_unix.cpp.orig 2013-12-20 14:28:08.000000000 -0600 ++++ client/hostinfo_unix.cpp 2014-04-16 17:07:56.996236131 -0500 +@@ -1213,6 +1213,8 @@ + + #if LINUX_LIKE_SYSTEM + safe_strcpy(path, "/usr/lib/virtualbox/VBoxManage"); ++#elif defined( __FreeBSD__) ++ safe_strcpy(path, "@PREFIX@/lib/virtualbox/VBoxManage"); + #elif defined( __APPLE__) + FSRef theFSRef; + OSStatus status = noErr; +@@ -1231,7 +1233,7 @@ + #endif + + if (boinc_file_exists(path)) { +-#if LINUX_LIKE_SYSTEM ++#if LINUX_LIKE_SYSTEM || defined( __FreeBSD__) + if (access(path, X_OK)) { + return 0; + } From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 09:39:44 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 08D3D6F9; Sun, 27 Jul 2014 09:39:44 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EA0AD28C4; Sun, 27 Jul 2014 09:39:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6R9dhRo099546; Sun, 27 Jul 2014 09:39:43 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6R9dhZD099545; Sun, 27 Jul 2014 09:39:43 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201407270939.s6R9dhZD099545@svn.freebsd.org> From: Antoine Brodin Date: Sun, 27 Jul 2014 09:39:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363032 - head/print/qpdf X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 09:39:44 -0000 Author: antoine Date: Sun Jul 27 09:39:43 2014 New Revision: 363032 URL: http://svnweb.freebsd.org/changeset/ports/363032 QAT: https://qat.redports.org/buildarchive/r363032/ Log: Turn SDK option on by default to unbreak print/cups-filters With hat: portmgr Modified: head/print/qpdf/Makefile Modified: head/print/qpdf/Makefile ============================================================================== --- head/print/qpdf/Makefile Sun Jul 27 09:36:57 2014 (r363031) +++ head/print/qpdf/Makefile Sun Jul 27 09:39:43 2014 (r363032) @@ -3,6 +3,7 @@ PORTNAME= qpdf PORTVERSION= 5.1.2 +PORTREVISION= 1 CATEGORIES= print MASTER_SITES= SF @@ -15,6 +16,7 @@ BUILD_DEPENDS= bash:${PORTSDIR}/shells/b LIB_DEPENDS= libpcre.so:${PORTSDIR}/devel/pcre OPTIONS_DEFINE= SDK +OPTIONS_DEFAULT= SDK OPTIONS_SUB= yes SDK_DESC= Install header files. From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 09:43:06 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E31A7849; Sun, 27 Jul 2014 09:43:06 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D003C295E; Sun, 27 Jul 2014 09:43:06 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6R9h6mP003352; Sun, 27 Jul 2014 09:43:06 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6R9h6SF003351; Sun, 27 Jul 2014 09:43:06 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201407270943.s6R9h6SF003351@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sun, 27 Jul 2014 09:43:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363033 - head/ftp/py-curl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 09:43:07 -0000 Author: sunpoet Date: Sun Jul 27 09:43:06 2014 New Revision: 363033 URL: http://svnweb.freebsd.org/changeset/ports/363033 QAT: https://qat.redports.org/buildarchive/r363033/ Log: - Take maintainership Modified: head/ftp/py-curl/Makefile Modified: head/ftp/py-curl/Makefile ============================================================================== --- head/ftp/py-curl/Makefile Sun Jul 27 09:39:43 2014 (r363032) +++ head/ftp/py-curl/Makefile Sun Jul 27 09:43:06 2014 (r363033) @@ -10,7 +10,7 @@ MASTER_SITES= CHEESESHOP \ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= py${PORTNAME}-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= Python interface to libcurl LICENSE= LGPL21 MIT From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 10:02:10 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 82D6ECA7; Sun, 27 Jul 2014 10:02:10 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6FDD92AD7; Sun, 27 Jul 2014 10:02:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6RA2A9h012292; Sun, 27 Jul 2014 10:02:10 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6RA2ATI012291; Sun, 27 Jul 2014 10:02:10 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201407271002.s6RA2ATI012291@svn.freebsd.org> From: John Marino Date: Sun, 27 Jul 2014 10:02:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363034 - head/x11/dzen2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 10:02:10 -0000 Author: marino Date: Sun Jul 27 10:02:09 2014 New Revision: 363034 URL: http://svnweb.freebsd.org/changeset/ports/363034 QAT: https://qat.redports.org/buildarchive/r363034/ Log: Assign maintainership of x11/dzen2 to Zsolt Udvari per request Modified: head/x11/dzen2/Makefile Modified: head/x11/dzen2/Makefile ============================================================================== --- head/x11/dzen2/Makefile Sun Jul 27 09:43:06 2014 (r363033) +++ head/x11/dzen2/Makefile Sun Jul 27 10:02:09 2014 (r363034) @@ -7,7 +7,7 @@ PORTREVISION= 2 CATEGORIES= x11 MASTER_SITES= http://gotmor.googlepages.com/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= udvzsolt@gmail.com COMMENT= General purpose messaging, notification and menuing program for X11 LICENSE= MIT From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 10:02:53 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AEBF8DF5; Sun, 27 Jul 2014 10:02:53 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9BB8D2ADF; Sun, 27 Jul 2014 10:02:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6RA2rS9012494; Sun, 27 Jul 2014 10:02:53 GMT (envelope-from amdmi3@svn.freebsd.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6RA2rw5012493; Sun, 27 Jul 2014 10:02:53 GMT (envelope-from amdmi3@svn.freebsd.org) Message-Id: <201407271002.s6RA2rw5012493@svn.freebsd.org> From: Dmitry Marakasov Date: Sun, 27 Jul 2014 10:02:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363035 - head/databases/oracle8-client X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 10:02:53 -0000 Author: amdmi3 Date: Sun Jul 27 10:02:53 2014 New Revision: 363035 URL: http://svnweb.freebsd.org/changeset/ports/363035 QAT: https://qat.redports.org/buildarchive/r363035/ Log: - Convert USE_BZIP2 to USES - Stagify Modified: head/databases/oracle8-client/Makefile Modified: head/databases/oracle8-client/Makefile ============================================================================== --- head/databases/oracle8-client/Makefile Sun Jul 27 10:02:09 2014 (r363034) +++ head/databases/oracle8-client/Makefile Sun Jul 27 10:02:53 2014 (r363035) @@ -5,27 +5,23 @@ PORTNAME= oracle8-client PORTVERSION= 0.2.0 PORTREVISION= 1 CATEGORIES= databases -MASTER_SITES= ${MASTER_SITE_LOCAL} -MASTER_SITE_SUBDIR= fjoe +MASTER_SITES= LOCAL/fjoe -MAINTAINER= ports@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Oracle 8 client -USE_BZIP2= yes +USES= tar:bzip2 ONLY_FOR_ARCHS= i386 WRKSRC= ${WRKDIR}/${PORTNAME} ORACLE_HOME= ${PREFIX}/${PORTNAME} -NO_STAGE= yes -.include - do-build: @cd ${WRKSRC}/freebsd && ./redefine-syms.sh ../lib/libclntst8.a @cd ${WRKSRC}/freebsd && ${MAKE} all patch clean ORACLE_HOME=${WRKSRC} do-install: - @${MKDIR} ${ORACLE_HOME} + @${MKDIR} ${STAGEDIR}${ORACLE_HOME} cd ${WRKSRC} && ${FIND} . -not -name '*.orig' -print0 |\ - ${CPIO} -dump0 -R ${SHAREOWN}:${SHAREGRP} ${ORACLE_HOME} + ${CPIO} -dump0 -R ${SHAREOWN}:${SHAREGRP} ${STAGEDIR}${ORACLE_HOME} -.include +.include From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 10:04:42 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E84D2F30; Sun, 27 Jul 2014 10:04:42 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D51A22AEF; Sun, 27 Jul 2014 10:04:42 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6RA4gYq012895; Sun, 27 Jul 2014 10:04:42 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6RA4gtj012893; Sun, 27 Jul 2014 10:04:42 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201407271004.s6RA4gtj012893@svn.freebsd.org> From: John Marino Date: Sun, 27 Jul 2014 10:04:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363036 - head/x11-wm/compton X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 10:04:43 -0000 Author: marino Date: Sun Jul 27 10:04:42 2014 New Revision: 363036 URL: http://svnweb.freebsd.org/changeset/ports/363036 QAT: https://qat.redports.org/buildarchive/r363036/ Log: x11-wm/compton: Upgrade version from 20130625 => 20140326 PR: 188794 Submitted by: ouzne.alleykatze (gmail) Approved by: maintainer timeout (> 3 months) Redports fix: marino Modified: head/x11-wm/compton/Makefile head/x11-wm/compton/distinfo Modified: head/x11-wm/compton/Makefile ============================================================================== --- head/x11-wm/compton/Makefile Sun Jul 27 10:02:53 2014 (r363035) +++ head/x11-wm/compton/Makefile Sun Jul 27 10:04:42 2014 (r363036) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= compton -PORTVERSION= 20130625 -PORTREVISION= 2 +PORTVERSION= 20140326 CATEGORIES= x11-wm MAINTAINER= femc7488@gmail.com @@ -17,10 +16,10 @@ RUN_DEPENDS= xprop:${PORTSDIR}/x11/xprop USE_GITHUB= yes GH_ACCOUNT= chjj GH_TAGNAME= ${GH_COMMIT} -GH_COMMIT= b26bbc0 +GH_COMMIT= 360da12 USES= gmake pkgconfig -USE_XORG= xcomposite xdamage xrandr xrender +USE_XORG= xcomposite xdamage xrandr xrender xinerama MAKE_ARGS= COMPTON_VERSION=git-${PORTVERSION}-${GH_COMMIT} \ XDGDIR=${LOCALBASE}/etc/xdg Modified: head/x11-wm/compton/distinfo ============================================================================== --- head/x11-wm/compton/distinfo Sun Jul 27 10:02:53 2014 (r363035) +++ head/x11-wm/compton/distinfo Sun Jul 27 10:04:42 2014 (r363036) @@ -1,2 +1,2 @@ -SHA256 (compton-20130625.tar.gz) = 6039a6407c1fc228f4a2d8861bc48f9ee10ca83d0fe9b5a2030728930f9a2c78 -SIZE (compton-20130625.tar.gz) = 138987 +SHA256 (compton-20140326.tar.gz) = 734e987018829bf23546277a6586f353d49802ddecdb2b650449828fb19c8063 +SIZE (compton-20140326.tar.gz) = 149257 From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 10:06:50 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 39174132; Sun, 27 Jul 2014 10:06:50 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0B8302B15; Sun, 27 Jul 2014 10:06:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6RA6nuF013455; Sun, 27 Jul 2014 10:06:49 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6RA6npn013452; Sun, 27 Jul 2014 10:06:49 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201407271006.s6RA6npn013452@svn.freebsd.org> From: Antoine Brodin Date: Sun, 27 Jul 2014 10:06:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363037 - in head/net/py-impacket: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 10:06:50 -0000 Author: antoine Date: Sun Jul 27 10:06:49 2014 New Revision: 363037 URL: http://svnweb.freebsd.org/changeset/ports/363037 QAT: https://qat.redports.org/buildarchive/r363037/ Log: Update to 0.9.12 Modified: head/net/py-impacket/Makefile head/net/py-impacket/distinfo head/net/py-impacket/files/patch-setup.py Modified: head/net/py-impacket/Makefile ============================================================================== --- head/net/py-impacket/Makefile Sun Jul 27 10:04:42 2014 (r363036) +++ head/net/py-impacket/Makefile Sun Jul 27 10:06:49 2014 (r363037) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= impacket -PORTVERSION= 0.9.11 +PORTVERSION= 0.9.12 CATEGORIES= net python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/net/py-impacket/distinfo ============================================================================== --- head/net/py-impacket/distinfo Sun Jul 27 10:04:42 2014 (r363036) +++ head/net/py-impacket/distinfo Sun Jul 27 10:06:49 2014 (r363037) @@ -1,2 +1,2 @@ -SHA256 (impacket-0.9.11.tar.gz) = e0b4e5174b869efa35c3068ee55ac3c2364706b59ffc43cd9e3c2f75f5accf2d -SIZE (impacket-0.9.11.tar.gz) = 779016 +SHA256 (impacket-0.9.12.tar.gz) = 59cd71e69ac66e6b2905d663e475772f1f94b93b039f929ba3d655a730fbd935 +SIZE (impacket-0.9.12.tar.gz) = 965250 Modified: head/net/py-impacket/files/patch-setup.py ============================================================================== --- head/net/py-impacket/files/patch-setup.py Sun Jul 27 10:04:42 2014 (r363036) +++ head/net/py-impacket/files/patch-setup.py Sun Jul 27 10:06:49 2014 (r363037) @@ -1,11 +1,12 @@ ---- ./setup.py.orig 2014-01-30 16:07:52.000000000 +0000 -+++ ./setup.py 2014-03-26 22:12:00.000000000 +0000 -@@ -21,8 +21,4 @@ +--- ./setup.py.orig 2014-07-27 09:34:58.000000000 +0000 ++++ ./setup.py 2014-07-27 09:34:58.000000000 +0000 +@@ -21,9 +21,5 @@ platforms = ["Unix","Windows"], - packages = ['impacket', 'impacket.dcerpc', 'impacket.examples', 'impacket.dcerpc.v5'], + packages = ['impacket', 'impacket.dcerpc', 'impacket.examples', 'impacket.dcerpc.v5', 'impacket.dcerpc.v5.dcom'], scripts = glob.glob(os.path.join('examples', '*.py')), - data_files = [(os.path.join('share', 'doc', PACKAGE_NAME), ['README', 'LICENSE']+glob.glob('doc/*')), - (os.path.join('share', 'doc', PACKAGE_NAME, 'testcases', 'dot11'),glob.glob('impacket/testcases/dot11/*')), - (os.path.join('share', 'doc', PACKAGE_NAME, 'testcases', 'ImpactPacket'),glob.glob('impacket/testcases/ImpactPacket/*')), -- (os.path.join('share', 'doc', PACKAGE_NAME, 'testcases', 'SMB-RPC'),glob.glob('impacket/testcases/SMB-RPC/*'))], +- (os.path.join('share', 'doc', PACKAGE_NAME, 'testcases', 'SMB_RPC'),glob.glob('impacket/testcases/SMB_RPC/*'))], + requires=['pycrypto (>=2.6)'], ) From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 10:15:29 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0D51A2E0; Sun, 27 Jul 2014 10:15:29 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EE40C2BC5; Sun, 27 Jul 2014 10:15:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6RAFSTs018124; Sun, 27 Jul 2014 10:15:28 GMT (envelope-from amdmi3@svn.freebsd.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6RAFSui018121; Sun, 27 Jul 2014 10:15:28 GMT (envelope-from amdmi3@svn.freebsd.org) Message-Id: <201407271015.s6RAFSui018121@svn.freebsd.org> From: Dmitry Marakasov Date: Sun, 27 Jul 2014 10:15:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363038 - head/databases/oracle_odbc_driver X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 10:15:29 -0000 Author: amdmi3 Date: Sun Jul 27 10:15:28 2014 New Revision: 363038 URL: http://svnweb.freebsd.org/changeset/ports/363038 QAT: https://qat.redports.org/buildarchive/r363038/ Log: - Switch to USES=libtool, drop .la files - Stagify Modified: head/databases/oracle_odbc_driver/Makefile head/databases/oracle_odbc_driver/pkg-plist Modified: head/databases/oracle_odbc_driver/Makefile ============================================================================== --- head/databases/oracle_odbc_driver/Makefile Sun Jul 27 10:06:49 2014 (r363037) +++ head/databases/oracle_odbc_driver/Makefile Sun Jul 27 10:15:28 2014 (r363038) @@ -3,12 +3,12 @@ PORTNAME= oracle_odbc_driver PORTVERSION= 0.5.6 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= databases MASTER_SITES= http://home.fnal.gov/~dbox/oracle/odbc/ DISTNAME= ${PORTNAME}.${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Oracle Open Source ODBC driver LIB_DEPENDS= libodbc.so:${PORTSDIR}/databases/unixODBC @@ -20,14 +20,13 @@ RUN_DEPENDS= ${ORACLE_HOME}/lib/libclnts WRKSRC= ${WRKDIR}/${PORTNAME} ORACLE_HOME= ${LOCALBASE}/oracle8-client +USES= libtool GNU_CONFIGURE= yes CONFIGURE_ENV= ORACLE_HOME="${ORACLE_HOME}" \ AUTOHEADER=true LIBS+= `${CAT} ${ORACLE_HOME}/lib/sysliblist` USE_LDCONFIG= yes -USE_AUTOTOOLS= libtool -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e 's/-lclntst8 -lcompat -lpthread -lm/-lclntst8 -lcompat ${PTHREAD_LIBS} -lm/' ${WRKSRC}/configure Modified: head/databases/oracle_odbc_driver/pkg-plist ============================================================================== --- head/databases/oracle_odbc_driver/pkg-plist Sun Jul 27 10:06:49 2014 (r363037) +++ head/databases/oracle_odbc_driver/pkg-plist Sun Jul 27 10:15:28 2014 (r363038) @@ -1,4 +1,4 @@ lib/liboraodbc.a -lib/liboraodbc.la lib/liboraodbc.so lib/liboraodbc.so.1 +lib/liboraodbc.so.1.0.0 From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 10:29:01 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 088294EC; Sun, 27 Jul 2014 10:29:01 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CFF172CA5; Sun, 27 Jul 2014 10:29:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6RAT0EM023435; Sun, 27 Jul 2014 10:29:00 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6RAT0ij023433; Sun, 27 Jul 2014 10:29:00 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201407271029.s6RAT0ij023433@svn.freebsd.org> From: John Marino Date: Sun, 27 Jul 2014 10:29:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363039 - head/math/mingw32-libgmp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 10:29:01 -0000 Author: marino Date: Sun Jul 27 10:29:00 2014 New Revision: 363039 URL: http://svnweb.freebsd.org/changeset/ports/363039 QAT: https://qat.redports.org/buildarchive/r363039/ Log: math/mingw32-libgmp: Upgrade version 5.1.3 => 6.0.0 PR: 188832 Submitted by: maintainer (Naram Qashat) Modified: head/math/mingw32-libgmp/Makefile head/math/mingw32-libgmp/distinfo Modified: head/math/mingw32-libgmp/Makefile ============================================================================== --- head/math/mingw32-libgmp/Makefile Sun Jul 27 10:15:28 2014 (r363038) +++ head/math/mingw32-libgmp/Makefile Sun Jul 27 10:29:00 2014 (r363039) @@ -2,11 +2,11 @@ # $FreeBSD$ PORTNAME= libgmp -PORTVERSION= 5.1.3 +PORTVERSION= 6.0.0 CATEGORIES= math devel -MASTER_SITES= ftp://ftp.gmplib.org/pub/gmp-${PORTVERSION}/ +MASTER_SITES= GNU/gmp PKGNAMEPREFIX= mingw32- -DISTNAME= gmp-${PORTVERSION} +DISTNAME= gmp-${DISTVERSION}a MAINTAINER= cyberbotx@cyberbotx.com COMMENT= Library for arbitrary precision arithmetic (MinGW32) @@ -14,6 +14,8 @@ COMMENT= Library for arbitrary precision BUILD_DEPENDS= ${PKGNAMEPREFIX}gcc:${PORTSDIR}/devel/${PKGNAMEPREFIX}gcc \ mingwm10.dll:${PORTSDIR}/devel/mingw32-bin-msvcrt +WRKSRC= ${WRKDIR}/gmp-${PORTVERSION} + USES= makeinfo tar:bzip2 GMP_TARG= ${PKGNAMEPREFIX:S/-$//} GNU_CONFIGURE= yes @@ -21,7 +23,8 @@ CC= ${PKGNAMEPREFIX}gcc CXX= ${PKGNAMEPREFIX}c++ CFLAGS+= -I/usr/include CONFIGURE_ENV= MAKEINFO="makeinfo --no-split" \ - PREFIX="${PREFIX}/${GMP_TARG}" + PREFIX="${PREFIX}/${GMP_TARG}" \ + M4="/usr/bin/m4" CONFIGURE_ARGS= --enable-cxx --host=${GMP_TARG} \ --includedir=${PREFIX}/${GMP_TARG}/include \ --exec_prefix=${PREFIX}/${GMP_TARG} \ Modified: head/math/mingw32-libgmp/distinfo ============================================================================== --- head/math/mingw32-libgmp/distinfo Sun Jul 27 10:15:28 2014 (r363038) +++ head/math/mingw32-libgmp/distinfo Sun Jul 27 10:29:00 2014 (r363039) @@ -1,2 +1,2 @@ -SHA256 (gmp-5.1.3.tar.bz2) = 752079520b4690531171d0f4532e40f08600215feefede70b24fabdc6f1ab160 -SIZE (gmp-5.1.3.tar.bz2) = 2196480 +SHA256 (gmp-6.0.0a.tar.bz2) = 7f8e9a804b9c6d07164cf754207be838ece1219425d64e28cfa3e70d5c759aaf +SIZE (gmp-6.0.0a.tar.bz2) = 2319400 From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 10:30:37 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4A1BF619; Sun, 27 Jul 2014 10:30:37 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 378732D30; Sun, 27 Jul 2014 10:30:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6RAUbfd023839; Sun, 27 Jul 2014 10:30:37 GMT (envelope-from riggs@svn.freebsd.org) Received: (from riggs@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6RAUbZU023838; Sun, 27 Jul 2014 10:30:37 GMT (envelope-from riggs@svn.freebsd.org) Message-Id: <201407271030.s6RAUbZU023838@svn.freebsd.org> From: Thomas Zander Date: Sun, 27 Jul 2014 10:30:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363040 - head/textproc/p5-xmltv X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 10:30:37 -0000 Author: riggs Date: Sun Jul 27 10:30:36 2014 New Revision: 363040 URL: http://svnweb.freebsd.org/changeset/ports/363040 QAT: https://qat.redports.org/buildarchive/r363040/ Log: - Add missing dependency on devel/p5-File-Slurp - Add LICENSE - Bump PORTREVISION PR: 192129 Submitted by: dreamcat4@gmail.com Approved by: mentors (implicit) Modified: head/textproc/p5-xmltv/Makefile Modified: head/textproc/p5-xmltv/Makefile ============================================================================== --- head/textproc/p5-xmltv/Makefile Sun Jul 27 10:29:00 2014 (r363039) +++ head/textproc/p5-xmltv/Makefile Sun Jul 27 10:30:36 2014 (r363040) @@ -3,7 +3,7 @@ PORTNAME= xmltv PORTVERSION= 0.5.61 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc perl5 MASTER_SITES= SF PKGNAMEPREFIX= p5- @@ -11,6 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= multimedia@FreeBSD.org COMMENT= Set of programs to process TV (tvguide) listings in XML format +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + XMLTV_DEPENDS= \ p5-XML-Parser>=0:${PORTSDIR}/textproc/p5-XML-Parser \ p5-XML-Twig>=0:${PORTSDIR}/textproc/p5-XML-Twig \ @@ -39,7 +42,8 @@ XMLTV_DEPENDS= \ p5-Archive-Zip>=0:${PORTSDIR}/archivers/p5-Archive-Zip \ p5-HTTP-Cache-Transparent>=0:${PORTSDIR}/www/p5-HTTP-Cache-Transparent \ p5-IO-stringy>=0:${PORTSDIR}/devel/p5-IO-stringy \ - p5-TimeDate>=0:${PORTSDIR}/devel/p5-TimeDate + p5-TimeDate>=0:${PORTSDIR}/devel/p5-TimeDate \ + p5-File-Slurp>=0:${PORTSDIR}/devel/p5-File-Slurp BUILD_DEPENDS= ${XMLTV_DEPENDS} RUN_DEPENDS= ${XMLTV_DEPENDS} From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 10:37:15 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7B3A68E6; Sun, 27 Jul 2014 10:37:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6653F2D81; Sun, 27 Jul 2014 10:37:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6RAbFuO027859; Sun, 27 Jul 2014 10:37:15 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6RAbFEK027858; Sun, 27 Jul 2014 10:37:15 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201407271037.s6RAbFEK027858@svn.freebsd.org> From: John Marino Date: Sun, 27 Jul 2014 10:37:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363041 - head/mail/dcc-dccd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 10:37:15 -0000 Author: marino Date: Sun Jul 27 10:37:14 2014 New Revision: 363041 URL: http://svnweb.freebsd.org/changeset/ports/363041 QAT: https://qat.redports.org/buildarchive/r363041/ Log: mail/dcc-dccd: reset maintainer, but apply ports sendmail fix This port should have been reset with the big batches. There is a PR to update the version (184281) but stage support is not included and nobody is stepping up to update the PR. But while here, add a one-line fix to support building with sendmail from ports. PR: 188903 Submitted by: Jamie Landeg-Jones Approved by: maintainer timeout (3 months) Approved by: portmgr (implicit, NOT_STAGED) Modified: head/mail/dcc-dccd/Makefile Modified: head/mail/dcc-dccd/Makefile ============================================================================== --- head/mail/dcc-dccd/Makefile Sun Jul 27 10:30:36 2014 (r363040) +++ head/mail/dcc-dccd/Makefile Sun Jul 27 10:37:14 2014 (r363041) @@ -11,7 +11,7 @@ MASTER_SITES= http://www.dcc-servers.net DISTNAME= dcc-${PORTVERSION} EXTRACT_SUFX= .tar.Z -MAINTAINER= cgreen@sentex.net +MAINTAINER= ports@FreeBSD.org COMMENT= Distributed Checksum Clearinghouse bulk email detector .if ! defined(PACKAGE_BUILDING) @@ -114,6 +114,7 @@ MILTERINC= ${MILTERBASE}/include MILTERLIB= ${MILTERBASE}/lib CPPFLAGS+= -I${MILTERINC} +CFLAGS+= -I${MILTERINC} LDFLAGS+= -L${MILTERLIB} CONFIGURE_ARGS+= --with-sendmail=yes From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 10:47:06 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1E141BBA; Sun, 27 Jul 2014 10:47:06 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0B5142E4F; Sun, 27 Jul 2014 10:47:06 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6RAl5Qc032324; Sun, 27 Jul 2014 10:47:05 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6RAl5Hq032323; Sun, 27 Jul 2014 10:47:05 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201407271047.s6RAl5Hq032323@svn.freebsd.org> From: John Marino Date: Sun, 27 Jul 2014 10:47:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363042 - head/www/phpgedview X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 10:47:06 -0000 Author: marino Date: Sun Jul 27 10:47:05 2014 New Revision: 363042 URL: http://svnweb.freebsd.org/changeset/ports/363042 QAT: https://qat.redports.org/buildarchive/r363042/ Log: Deprecate www/phpgedview for removal on 15 AUG 2014 This port is obsolete and has been superceded by www/webtrees PR: 189628 Submitted by: fbsd (opal.com) Approved by: maintainer timeout (10 weeks) Modified: head/www/phpgedview/Makefile Modified: head/www/phpgedview/Makefile ============================================================================== --- head/www/phpgedview/Makefile Sun Jul 27 10:37:14 2014 (r363041) +++ head/www/phpgedview/Makefile Sun Jul 27 10:47:05 2014 (r363042) @@ -10,6 +10,9 @@ DISTNAME= ${PORTNAME:S/p/P/}-basic-${POR MAINTAINER= fbsd@opal.com COMMENT= Online genealogy viewer +DEPRECATED= Superceded by www/webtrees +EXPIRATION_DATE=2014-08-15 + WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} EXTRACT_AFTER_ARGS= -d ${WRKSRC} From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 10:50:28 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 62AF1CF1; Sun, 27 Jul 2014 10:50:28 +0000 (UTC) Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3A91F2EE5; Sun, 27 Jul 2014 10:50:27 +0000 (UTC) Received: from [192.168.0.21] (unknown [130.255.19.191]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id CB84443552; Sun, 27 Jul 2014 05:50:03 -0500 (CDT) Message-ID: <53D4D949.5000502@marino.st> Date: Sun, 27 Jul 2014 12:49:45 +0200 From: John Marino Reply-To: marino@freebsd.org User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: John Marino , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r363042 - head/www/phpgedview References: <201407271047.s6RAl5Hq032323@svn.freebsd.org> In-Reply-To: <201407271047.s6RAl5Hq032323@svn.freebsd.org> X-Enigmail-Version: 1.6 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 10:50:28 -0000 On 7/27/2014 12:47, John Marino wrote: > Author: marino > Date: Sun Jul 27 10:47:05 2014 > New Revision: 363042 > URL: http://svnweb.freebsd.org/changeset/ports/363042 > QAT: https://qat.redports.org/buildarchive/r363042/ > > Log: > Deprecate www/phpgedview for removal on 15 AUG 2014 > > This port is obsolete and has been superceded by www/webtrees > > PR: 189628 > Submitted by: fbsd (opal.com) > Approved by: maintainer timeout (10 weeks) > I just figured out fbsd (opal.com) is also the maintainer... From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 10:58:32 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9A463E62; Sun, 27 Jul 2014 10:58:32 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 874E72F0F; Sun, 27 Jul 2014 10:58:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6RAwWVj036927; Sun, 27 Jul 2014 10:58:32 GMT (envelope-from riggs@svn.freebsd.org) Received: (from riggs@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6RAwWmP036926; Sun, 27 Jul 2014 10:58:32 GMT (envelope-from riggs@svn.freebsd.org) Message-Id: <201407271058.s6RAwWmP036926@svn.freebsd.org> From: Thomas Zander Date: Sun, 27 Jul 2014 10:58:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363043 - head/multimedia/gstreamer-plugins-good X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 10:58:32 -0000 Author: riggs Date: Sun Jul 27 10:58:31 2014 New Revision: 363043 URL: http://svnweb.freebsd.org/changeset/ports/363043 QAT: https://qat.redports.org/buildarchive/r363043/ Log: - Fix hidden dependency on xdamage - Bump PORTREVISION PR: 175940 Submitted by: Pawel Pekala Approved by: mentors (implicit) MFH: 2014Q3 Modified: head/multimedia/gstreamer-plugins-good/Makefile Modified: head/multimedia/gstreamer-plugins-good/Makefile ============================================================================== --- head/multimedia/gstreamer-plugins-good/Makefile Sun Jul 27 10:47:05 2014 (r363042) +++ head/multimedia/gstreamer-plugins-good/Makefile Sun Jul 27 10:58:31 2014 (r363043) @@ -2,7 +2,7 @@ # $FreeBSD$ # $MCom: ports/multimedia/gstreamer-plugins-good/Makefile,v 1.14 2008/03/19 14:05:36 ahze Exp $ -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= multimedia COMMENT= Good gstreamer-plugins @@ -15,6 +15,8 @@ MASTERDIR= ${.CURDIR}/../../multimedia/g BUILD_DEPENDS+= gstreamer-plugins>=${GST_VERSION}${GST_MINOR_VERSION}:${PORTSDIR}/multimedia/gstreamer-plugins RUN_DEPENDS+= gstreamer-plugins>=${GST_VERSION}${GST_MINOR_VERSION}:${PORTSDIR}/multimedia/gstreamer-plugins +USE_XORG+= xdamage + gst_good_DIST= good GOOD_GST_DIRS= gst sys po PLIST_SUB= VERSION="${GST_VERSION}" From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 11:02:09 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A70FCFED; Sun, 27 Jul 2014 11:02:09 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 945692FAF; Sun, 27 Jul 2014 11:02:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6RB29qD040814; Sun, 27 Jul 2014 11:02:09 GMT (envelope-from pi@svn.freebsd.org) Received: (from pi@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6RB29Yg040813; Sun, 27 Jul 2014 11:02:09 GMT (envelope-from pi@svn.freebsd.org) Message-Id: <201407271102.s6RB29Yg040813@svn.freebsd.org> From: Kurt Jaeger Date: Sun, 27 Jul 2014 11:02:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363044 - head/devel/visualparadigm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 11:02:09 -0000 Author: pi Date: Sun Jul 27 11:02:09 2014 New Revision: 363044 URL: http://svnweb.freebsd.org/changeset/ports/363044 QAT: https://qat.redports.org/buildarchive/r363044/ Log: devel/visualparadigm: fix pkg-descr of community edition PR: 183723 Submitted by: fernando.apesteguia@gmail.com Modified: head/devel/visualparadigm/pkg-descr Modified: head/devel/visualparadigm/pkg-descr ============================================================================== --- head/devel/visualparadigm/pkg-descr Sun Jul 27 10:58:31 2014 (r363043) +++ head/devel/visualparadigm/pkg-descr Sun Jul 27 11:02:09 2014 (r363044) @@ -5,7 +5,9 @@ BPMN, XMI, etc. It offers complete tools teams need for requirements capturing, software planning, test planning, class modeling, data modeling, and etc. -The application provides the community edition with a 30-days -free trial for non-commercial use. +The application provides the community edition, limited to +one diagram per diagram type in each project, and all the diagrams +and documentations generated from the Community Edition will show +a small Visual Paradigm logo at the top left corner. WWW: http://www.visual-paradigm.com/product/vpuml/ From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 11:10:44 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 064E11F5; Sun, 27 Jul 2014 11:10:44 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E619B2088; Sun, 27 Jul 2014 11:10:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6RBAhnk044434; Sun, 27 Jul 2014 11:10:43 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6RBAhLU044433; Sun, 27 Jul 2014 11:10:43 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201407271110.s6RBAhLU044433@svn.freebsd.org> From: John Marino Date: Sun, 27 Jul 2014 11:10:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363045 - head/deskutils/cairo-dock-plugins X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2014 11:10:44 -0000 Author: marino Date: Sun Jul 27 11:10:43 2014 New Revision: 363045 URL: http://svnweb.freebsd.org/changeset/ports/363045 QAT: https://qat.redports.org/buildarchive/r363045/ Log: cairo-dock-plugins: Resolve conflict seen with XFCE_INTEGRATION option PR: 188233 Submitted by: maintainer (Ivan Klymenko) Modified: head/deskutils/cairo-dock-plugins/Makefile Modified: head/deskutils/cairo-dock-plugins/Makefile ============================================================================== --- head/deskutils/cairo-dock-plugins/Makefile Sun Jul 27 11:02:09 2014 (r363044) +++ head/deskutils/cairo-dock-plugins/Makefile Sun Jul 27 11:10:43 2014 (r363045) @@ -2,7 +2,7 @@ PORTNAME= cairo-dock-plugins DISTVERSION= 3.2.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= deskutils MASTER_SITES= https://launchpadlibrarian.net/137290159/ \ http://pazzle.otdux.com.ua/ @@ -57,8 +57,7 @@ post-patch: s|/usr/share/cairo-dock|${LOCALBASE}/share/cairo-dock|g' .if ${PORT_OPTIONS:MXFCE_INTEGRATION} -LIB_DEPENDS+= libthunar-vfs-1.so:${PORTSDIR}/x11-fm/thunar-vfs \ - libexif.so:${PORTSDIR}/graphics/libexif +LIB_DEPENDS+= libexif.so:${PORTSDIR}/graphics/libexif CMAKE_ARGS+= -Denable-xfce-integration:BOOL=TRUE .else CMAKE_ARGS+= -Denable-xfce-integration:BOOL=FALSE From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 11:19:17 2014 Return-Path: