Bug 165872 - [MAINTAINER] www/pivotx: update to 2.3.2
Summary: [MAINTAINER] www/pivotx: update to 2.3.2
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Martin Wilke
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-03-09 08:30 UTC by fumifumi
Modified: 2012-04-10 17:50 UTC (History)
0 users

See Also:


Attachments
pivotx-2.3.2.patch (5.75 KB, patch)
2012-03-09 08:30 UTC, fumifumi
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description fumifumi 2012-03-09 08:30:10 UTC
- Update to 2.3.2

Thanks,

Generated with FreeBSD Port Tools 0.99_4 (mode: update, diff: ports)
Comment 1 Michael Scheidell freebsd_committer freebsd_triage 2012-03-09 13:48:01 UTC
in ports@ group, we have brought up the common practice of having ports 
change behaviour, depending on if there was some shadow dependency that 
already existed.

can you consider putting this in as an options knob instead?
it would be more consistant


.if exists(${PHPBASE}/lib/php/${PHP_EXT_DIR}/dom.so)
USE_PHP+=       dom
.else
USE_PHP+=   simplexml
.endif


also, this line:  it wasn't necessary to reorder this, was it? just 
checking.

-- 
Michael Scheidell, CTO
 >*| * SECNAP Network Security Corporation
d: +1.561.948.2259
w: http://people.freebsd.org/~scheidell
Comment 2 Martin Wilke freebsd_committer freebsd_triage 2012-03-09 15:38:01 UTC
Responsible Changed
From-To: freebsd-ports-bugs->miwi

I'll take it.
Comment 3 fumifumi 2012-03-10 06:34:20 UTC
Thank you for the followup.

 > can you consider putting this in as an options knob instead?  it
 > would be more consistant

I understand. Please use this instead.

 > also, this line: it wasn't necessary to reorder this, was it? just
 > checking.

Those lines were reorderd to reduce the one redundant condition. just
an excuse.
If you mean the first USE_PHP above of it, the reordering was not
necessary. The checker (seems to be a little bit obsolete) provided by
PivotX assumes that modules except gd and pcre are fundamental feature
of PHP, so I moved them to the first.

Thank you,

>Fix:

--- pivotx-2.3.2.patch begins here ---
diff -ruN --exclude=CVS /usr/ports/www/pivotx/Makefile ./Makefile
--- /usr/ports/www/pivotx/Makefile	2011-10-17 13:35:02.000000000 +0900
+++ ./Makefile	2012-03-10 14:35:43.000000000 +0900
@@ -6,12 +6,12 @@
 #
 
 PORTNAME=	pivotx
-PORTVERSION=	2.3.0
+PORTVERSION=	2.3.2
 CATEGORIES=	www
 MASTER_SITES=	SF/pivot-weblog/PivotX \
 		http://pivotx.net/files/ \
 		http://pivotx.net/files/archived/
-DISTNAME=	pivotx_2.3.0
+DISTNAME=	pivotx_${PORTVERSION}
 EXTRACT_SUFX=	.tgz
 
 MAINTAINER=	fumifumi@abacustech.jp
@@ -26,23 +26,24 @@
 # Requirements:
 # http://book.pivotx.net/index.php?page=app-e#anchor-determining-if-your-server-meets-pivotxs-requirements
 
-OPTIONS=	MYSQL	"Use MySQL instead of flat files" off
+OPTIONS=	MYSQL	"Use MySQL instead of flat files" off \
+		PHPDOM	"Use PHP:DOM instead of SimpleXML" off
 
 .include <bsd.port.options.mk>
 
 WANT_PHP_WEB=	yes
 IGNORE_WITH_PHP=4
-USE_PHP=	session gettext xml gd pcre tokenizer
+USE_PHP=	session gettext xml tokenizer gd pcre
 USE_GETTEXT=	yes
 
-.if exists(${PHPBASE}/lib/php/${PHP_EXT_DIR}/simplexml.so) || !exists(${PHPBASE}/lib/php/${PHP_EXT_DIR}/dom.so)
-USE_PHP+=	simplexml
-.else
+.if defined(WITH_PHPDOM)
 USE_PHP+=	dom
+.else
+USE_PHP+=	simplexml
 .endif
 
 .if defined(WITH_MYSQL)
-USE_MYSQL=	yes
+USE_MYSQL=	client
 USE_PHP+=	mysql
 .endif
 
@@ -102,7 +103,7 @@
 	@${MKDIR} '${WWWDIR}'
 	@cd '${WRKSRC}' && ${COPYTREE_SHARE} . '${WWWDIR}'
 .for DIR in ${WRITABLEDIRS}
-	@${CHOWN} -R ${WWWOWN}:${WWWGRP} '${WWWDIR}/${DIR}'
+	@${CHOWN} -R '${WWWOWN}:${WWWGRP}' '${WWWDIR}/${DIR}'
 	@${FIND} '${WWWDIR}/${DIR}' -type d -print0 | ${XARGS} -0 ${CHMOD} u=rwx,go=rx
 	@${FIND} '${WWWDIR}/${DIR}' -type f -print0 | ${XARGS} -0 ${CHMOD} u=rw,go=r
 .endfor
diff -ruN --exclude=CVS /usr/ports/www/pivotx/distinfo ./distinfo
--- /usr/ports/www/pivotx/distinfo	2011-08-16 23:29:38.000000000 +0900
+++ ./distinfo	2012-03-01 13:29:44.000000000 +0900
@@ -1,2 +1,2 @@
-SHA256 (pivotx_2.3.0.tgz) = 93248ceea6cc8b1654386a14175c1a3d4035bf63dca99b0e46b8fa6bba84df64
-SIZE (pivotx_2.3.0.tgz) = 2345261
+SHA256 (pivotx_2.3.2.tgz) = 5fb4e8665774ca6f314053eabea6644ad0c3e10eb3f6247b2f6addb9f73cf1e3
+SIZE (pivotx_2.3.2.tgz) = 2387895
diff -ruN --exclude=CVS /usr/ports/www/pivotx/pkg-plist ./pkg-plist
--- /usr/ports/www/pivotx/pkg-plist	2011-08-16 23:29:38.000000000 +0900
+++ ./pkg-plist	2012-03-01 13:43:31.000000000 +0900
@@ -8,8 +8,6 @@
 %%WWWDIR%%/pivotx/data.php
 @exec   rm -f  %B/db/cache/*
 @unexec rm -rf %B/db/cache 2>/dev/null || true
-%%WWWDIR%%/pivotx/db/blocked_ips.txt.php
-%%WWWDIR%%/pivotx/db/ignored_domains.txt.php
 %%WWWDIR%%/pivotx/db/index.html
 %%WWWDIR%%/pivotx/db/refkeys/index.html
 %%WWWDIR%%/pivotx/db/rsscache/index.html
@@ -22,16 +20,8 @@
 %%WWWDIR%%/pivotx/editor_wysi/plugins/contextmenu/editor_plugin.js
 %%WWWDIR%%/pivotx/editor_wysi/plugins/fullscreen/editor_plugin.js
 %%WWWDIR%%/pivotx/editor_wysi/plugins/fullscreen/fullscreen.htm
-%%WWWDIR%%/pivotx/editor_wysi/plugins/media/css/content.css
 %%WWWDIR%%/pivotx/editor_wysi/plugins/media/css/media.css
 %%WWWDIR%%/pivotx/editor_wysi/plugins/media/editor_plugin.js
-%%WWWDIR%%/pivotx/editor_wysi/plugins/media/img/flash.gif
-%%WWWDIR%%/pivotx/editor_wysi/plugins/media/img/flv_player.swf
-%%WWWDIR%%/pivotx/editor_wysi/plugins/media/img/quicktime.gif
-%%WWWDIR%%/pivotx/editor_wysi/plugins/media/img/realmedia.gif
-%%WWWDIR%%/pivotx/editor_wysi/plugins/media/img/shockwave.gif
-%%WWWDIR%%/pivotx/editor_wysi/plugins/media/img/trans.gif
-%%WWWDIR%%/pivotx/editor_wysi/plugins/media/img/windowsmedia.gif
 %%WWWDIR%%/pivotx/editor_wysi/plugins/media/js/embed.js
 %%WWWDIR%%/pivotx/editor_wysi/plugins/media/js/media.js
 %%WWWDIR%%/pivotx/editor_wysi/plugins/media/langs/en_dlg.js
@@ -111,6 +101,7 @@
 %%WWWDIR%%/pivotx/editor_wysi/themes/advanced/langs/en.js
 %%WWWDIR%%/pivotx/editor_wysi/themes/advanced/langs/en_dlg.js
 %%WWWDIR%%/pivotx/editor_wysi/themes/advanced/link.htm
+%%WWWDIR%%/pivotx/editor_wysi/themes/advanced/shortcuts.htm
 %%WWWDIR%%/pivotx/editor_wysi/themes/advanced/skins/default/content.css
 %%WWWDIR%%/pivotx/editor_wysi/themes/advanced/skins/default/dialog.css
 %%WWWDIR%%/pivotx/editor_wysi/themes/advanced/skins/default/img/buttons.png
@@ -244,9 +235,9 @@
 %%WWWDIR%%/pivotx/includes/index.html
 %%WWWDIR%%/pivotx/includes/js/bookmarklet.js
 %%WWWDIR%%/pivotx/includes/js/index.html
-%%WWWDIR%%/pivotx/includes/js/jquery-1.6.2.min.js
+%%WWWDIR%%/pivotx/includes/js/jquery-1.7.1.min.js
 %%WWWDIR%%/pivotx/includes/js/jquery-plugins.js
-%%WWWDIR%%/pivotx/includes/js/jquery-ui-1.8.15.custom.min.js
+%%WWWDIR%%/pivotx/includes/js/jquery-ui-1.8.17.custom.min.js
 %%WWWDIR%%/pivotx/includes/js/jquery.Jcrop.min.js
 %%WWWDIR%%/pivotx/includes/js/m_pivotx.js
 %%WWWDIR%%/pivotx/includes/js/pivotx.js
@@ -377,6 +368,9 @@
 %%WWWDIR%%/pivotx/includes/textile/help.html
 %%WWWDIR%%/pivotx/includes/textile/index.html
 %%WWWDIR%%/pivotx/includes/textile/overview.html
+%%WWWDIR%%/pivotx/includes/timthumb-config.php
+%%WWWDIR%%/pivotx/includes/timthumb-error.jpg
+%%WWWDIR%%/pivotx/includes/timthumb-notfnd.jpg
 %%WWWDIR%%/pivotx/includes/timthumb.php
 %%WWWDIR%%/pivotx/includes/timwrapper.php
 %%WWWDIR%%/pivotx/includes/xmlrpc/compat/array_key_exists.php
@@ -855,7 +849,7 @@
 %%WWWDIR%%/pivotx/templates_internal/ui-theme/images/ui-icons_454545_256x240.png
 %%WWWDIR%%/pivotx/templates_internal/ui-theme/images/ui-icons_888888_256x240.png
 %%WWWDIR%%/pivotx/templates_internal/ui-theme/images/ui-icons_cd0a0a_256x240.png
-%%WWWDIR%%/pivotx/templates_internal/ui-theme/jquery-ui-1.8.15.custom.css
+%%WWWDIR%%/pivotx/templates_internal/ui-theme/jquery-ui-1.8.17.custom.css
 %%WWWDIR%%/pivotx/templates_internal/users.tpl
 %%WWWDIR%%/pivotx/templates_internal/visitors.tpl
 %%WWWDIR%%/pivotx/templates_internal/weblog.tpl
@@ -949,7 +943,6 @@
 @dirrm %%WWWDIR%%/pivotx/editor_wysi/plugins/nonbreaking
 @dirrm %%WWWDIR%%/pivotx/editor_wysi/plugins/media/langs
 @dirrm %%WWWDIR%%/pivotx/editor_wysi/plugins/media/js
-@dirrm %%WWWDIR%%/pivotx/editor_wysi/plugins/media/img
 @dirrm %%WWWDIR%%/pivotx/editor_wysi/plugins/media/css
 @dirrm %%WWWDIR%%/pivotx/editor_wysi/plugins/media
 @dirrm %%WWWDIR%%/pivotx/editor_wysi/plugins/fullscreen
--- pivotx-2.3.2.patch ends here ---
Comment 4 Martin Wilke freebsd_committer freebsd_triage 2012-03-18 12:09:16 UTC
State Changed
From-To: open->feedback

please resend this patch as attachment thx.
Comment 5 fumifumi 2012-03-19 02:36:54 UTC
----Next_Part(Mon_Mar_19_11_36_54_2012_073)--
Content-Type: Text/Plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

Thank you for taking care. Here it is.

----Next_Part(Mon_Mar_19_11_36_54_2012_073)--
Content-Type: Text/X-Patch; charset=us-ascii
Content-Transfer-Encoding: 7bit
Content-Disposition: inline; filename="pivotx-2.3.2.patch"

--- pivotx-2.3.2.patch begins here ---
diff -ruN --exclude=CVS /usr/ports/www/pivotx/Makefile ./Makefile
--- /usr/ports/www/pivotx/Makefile	2011-10-17 13:35:02.000000000 +0900
+++ ./Makefile	2012-03-10 14:35:43.000000000 +0900
@@ -6,12 +6,12 @@
 #
 
 PORTNAME=	pivotx
-PORTVERSION=	2.3.0
+PORTVERSION=	2.3.2
 CATEGORIES=	www
 MASTER_SITES=	SF/pivot-weblog/PivotX \
 		http://pivotx.net/files/ \
 		http://pivotx.net/files/archived/
-DISTNAME=	pivotx_2.3.0
+DISTNAME=	pivotx_${PORTVERSION}
 EXTRACT_SUFX=	.tgz
 
 MAINTAINER=	fumifumi@abacustech.jp
@@ -26,23 +26,24 @@
 # Requirements:
 # http://book.pivotx.net/index.php?page=app-e#anchor-determining-if-your-server-meets-pivotxs-requirements
 
-OPTIONS=	MYSQL	"Use MySQL instead of flat files" off
+OPTIONS=	MYSQL	"Use MySQL instead of flat files" off \
+		PHPDOM	"Use PHP:DOM instead of SimpleXML" off
 
 .include <bsd.port.options.mk>
 
 WANT_PHP_WEB=	yes
 IGNORE_WITH_PHP=4
-USE_PHP=	session gettext xml gd pcre tokenizer
+USE_PHP=	session gettext xml tokenizer gd pcre
 USE_GETTEXT=	yes
 
-.if exists(${PHPBASE}/lib/php/${PHP_EXT_DIR}/simplexml.so) || !exists(${PHPBASE}/lib/php/${PHP_EXT_DIR}/dom.so)
-USE_PHP+=	simplexml
-.else
+.if defined(WITH_PHPDOM)
 USE_PHP+=	dom
+.else
+USE_PHP+=	simplexml
 .endif
 
 .if defined(WITH_MYSQL)
-USE_MYSQL=	yes
+USE_MYSQL=	client
 USE_PHP+=	mysql
 .endif
 
@@ -102,7 +103,7 @@
 	@${MKDIR} '${WWWDIR}'
 	@cd '${WRKSRC}' && ${COPYTREE_SHARE} . '${WWWDIR}'
 .for DIR in ${WRITABLEDIRS}
-	@${CHOWN} -R ${WWWOWN}:${WWWGRP} '${WWWDIR}/${DIR}'
+	@${CHOWN} -R '${WWWOWN}:${WWWGRP}' '${WWWDIR}/${DIR}'
 	@${FIND} '${WWWDIR}/${DIR}' -type d -print0 | ${XARGS} -0 ${CHMOD} u=rwx,go=rx
 	@${FIND} '${WWWDIR}/${DIR}' -type f -print0 | ${XARGS} -0 ${CHMOD} u=rw,go=r
 .endfor
diff -ruN --exclude=CVS /usr/ports/www/pivotx/distinfo ./distinfo
--- /usr/ports/www/pivotx/distinfo	2011-08-16 23:29:38.000000000 +0900
+++ ./distinfo	2012-03-01 13:29:44.000000000 +0900
@@ -1,2 +1,2 @@
-SHA256 (pivotx_2.3.0.tgz) = 93248ceea6cc8b1654386a14175c1a3d4035bf63dca99b0e46b8fa6bba84df64
-SIZE (pivotx_2.3.0.tgz) = 2345261
+SHA256 (pivotx_2.3.2.tgz) = 5fb4e8665774ca6f314053eabea6644ad0c3e10eb3f6247b2f6addb9f73cf1e3
+SIZE (pivotx_2.3.2.tgz) = 2387895
diff -ruN --exclude=CVS /usr/ports/www/pivotx/pkg-plist ./pkg-plist
--- /usr/ports/www/pivotx/pkg-plist	2011-08-16 23:29:38.000000000 +0900
+++ ./pkg-plist	2012-03-01 13:43:31.000000000 +0900
@@ -8,8 +8,6 @@
 %%WWWDIR%%/pivotx/data.php
 @exec   rm -f  %B/db/cache/*
 @unexec rm -rf %B/db/cache 2>/dev/null || true
-%%WWWDIR%%/pivotx/db/blocked_ips.txt.php
-%%WWWDIR%%/pivotx/db/ignored_domains.txt.php
 %%WWWDIR%%/pivotx/db/index.html
 %%WWWDIR%%/pivotx/db/refkeys/index.html
 %%WWWDIR%%/pivotx/db/rsscache/index.html
@@ -22,16 +20,8 @@
 %%WWWDIR%%/pivotx/editor_wysi/plugins/contextmenu/editor_plugin.js
 %%WWWDIR%%/pivotx/editor_wysi/plugins/fullscreen/editor_plugin.js
 %%WWWDIR%%/pivotx/editor_wysi/plugins/fullscreen/fullscreen.htm
-%%WWWDIR%%/pivotx/editor_wysi/plugins/media/css/content.css
 %%WWWDIR%%/pivotx/editor_wysi/plugins/media/css/media.css
 %%WWWDIR%%/pivotx/editor_wysi/plugins/media/editor_plugin.js
-%%WWWDIR%%/pivotx/editor_wysi/plugins/media/img/flash.gif
-%%WWWDIR%%/pivotx/editor_wysi/plugins/media/img/flv_player.swf
-%%WWWDIR%%/pivotx/editor_wysi/plugins/media/img/quicktime.gif
-%%WWWDIR%%/pivotx/editor_wysi/plugins/media/img/realmedia.gif
-%%WWWDIR%%/pivotx/editor_wysi/plugins/media/img/shockwave.gif
-%%WWWDIR%%/pivotx/editor_wysi/plugins/media/img/trans.gif
-%%WWWDIR%%/pivotx/editor_wysi/plugins/media/img/windowsmedia.gif
 %%WWWDIR%%/pivotx/editor_wysi/plugins/media/js/embed.js
 %%WWWDIR%%/pivotx/editor_wysi/plugins/media/js/media.js
 %%WWWDIR%%/pivotx/editor_wysi/plugins/media/langs/en_dlg.js
@@ -111,6 +101,7 @@
 %%WWWDIR%%/pivotx/editor_wysi/themes/advanced/langs/en.js
 %%WWWDIR%%/pivotx/editor_wysi/themes/advanced/langs/en_dlg.js
 %%WWWDIR%%/pivotx/editor_wysi/themes/advanced/link.htm
+%%WWWDIR%%/pivotx/editor_wysi/themes/advanced/shortcuts.htm
 %%WWWDIR%%/pivotx/editor_wysi/themes/advanced/skins/default/content.css
 %%WWWDIR%%/pivotx/editor_wysi/themes/advanced/skins/default/dialog.css
 %%WWWDIR%%/pivotx/editor_wysi/themes/advanced/skins/default/img/buttons.png
@@ -244,9 +235,9 @@
 %%WWWDIR%%/pivotx/includes/index.html
 %%WWWDIR%%/pivotx/includes/js/bookmarklet.js
 %%WWWDIR%%/pivotx/includes/js/index.html
-%%WWWDIR%%/pivotx/includes/js/jquery-1.6.2.min.js
+%%WWWDIR%%/pivotx/includes/js/jquery-1.7.1.min.js
 %%WWWDIR%%/pivotx/includes/js/jquery-plugins.js
-%%WWWDIR%%/pivotx/includes/js/jquery-ui-1.8.15.custom.min.js
+%%WWWDIR%%/pivotx/includes/js/jquery-ui-1.8.17.custom.min.js
 %%WWWDIR%%/pivotx/includes/js/jquery.Jcrop.min.js
 %%WWWDIR%%/pivotx/includes/js/m_pivotx.js
 %%WWWDIR%%/pivotx/includes/js/pivotx.js
@@ -377,6 +368,9 @@
 %%WWWDIR%%/pivotx/includes/textile/help.html
 %%WWWDIR%%/pivotx/includes/textile/index.html
 %%WWWDIR%%/pivotx/includes/textile/overview.html
+%%WWWDIR%%/pivotx/includes/timthumb-config.php
+%%WWWDIR%%/pivotx/includes/timthumb-error.jpg
+%%WWWDIR%%/pivotx/includes/timthumb-notfnd.jpg
 %%WWWDIR%%/pivotx/includes/timthumb.php
 %%WWWDIR%%/pivotx/includes/timwrapper.php
 %%WWWDIR%%/pivotx/includes/xmlrpc/compat/array_key_exists.php
@@ -855,7 +849,7 @@
 %%WWWDIR%%/pivotx/templates_internal/ui-theme/images/ui-icons_454545_256x240.png
 %%WWWDIR%%/pivotx/templates_internal/ui-theme/images/ui-icons_888888_256x240.png
 %%WWWDIR%%/pivotx/templates_internal/ui-theme/images/ui-icons_cd0a0a_256x240.png
-%%WWWDIR%%/pivotx/templates_internal/ui-theme/jquery-ui-1.8.15.custom.css
+%%WWWDIR%%/pivotx/templates_internal/ui-theme/jquery-ui-1.8.17.custom.css
 %%WWWDIR%%/pivotx/templates_internal/users.tpl
 %%WWWDIR%%/pivotx/templates_internal/visitors.tpl
 %%WWWDIR%%/pivotx/templates_internal/weblog.tpl
@@ -949,7 +943,6 @@
 @dirrm %%WWWDIR%%/pivotx/editor_wysi/plugins/nonbreaking
 @dirrm %%WWWDIR%%/pivotx/editor_wysi/plugins/media/langs
 @dirrm %%WWWDIR%%/pivotx/editor_wysi/plugins/media/js
-@dirrm %%WWWDIR%%/pivotx/editor_wysi/plugins/media/img
 @dirrm %%WWWDIR%%/pivotx/editor_wysi/plugins/media/css
 @dirrm %%WWWDIR%%/pivotx/editor_wysi/plugins/media
 @dirrm %%WWWDIR%%/pivotx/editor_wysi/plugins/fullscreen
--- pivotx-2.3.2.patch ends here ---

----Next_Part(Mon_Mar_19_11_36_54_2012_073)----
Comment 6 fumifumi 2012-04-03 11:29:08 UTC
----Next_Part(Tue_Apr__3_19_29_08_2012_823)--
Content-Type: Text/Plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

Hi,

Retried with application/octet-stream instead of Text/X-Patch.
Sorry for bothering times.

----Next_Part(Tue_Apr__3_19_29_08_2012_823)--
Content-Type: Application/Octet-Stream
Content-Transfer-Encoding: base64
Content-Description: pivotx-2.3.2.patch.txt
Content-Disposition: attachment; filename="pivotx-2.3.2.patch.txt"

LS0tIHBpdm90eC0yLjMuMi5wYXRjaCBiZWdpbnMgaGVyZSAtLS0KZGlmZiAtcnVOIC0tZXhjbHVk
ZT1DVlMgL3Vzci9wb3J0cy93d3cvcGl2b3R4L01ha2VmaWxlIC4vTWFrZWZpbGUKLS0tIC91c3Iv
cG9ydHMvd3d3L3Bpdm90eC9NYWtlZmlsZQkyMDExLTEwLTE3IDEzOjM1OjAyLjAwMDAwMDAwMCAr
MDkwMAorKysgLi9NYWtlZmlsZQkyMDEyLTAzLTEwIDE0OjM1OjQzLjAwMDAwMDAwMCArMDkwMApA
QCAtNiwxMiArNiwxMiBAQAogIwogCiBQT1JUTkFNRT0JcGl2b3R4Ci1QT1JUVkVSU0lPTj0JMi4z
LjAKK1BPUlRWRVJTSU9OPQkyLjMuMgogQ0FURUdPUklFUz0Jd3d3CiBNQVNURVJfU0lURVM9CVNG
L3Bpdm90LXdlYmxvZy9QaXZvdFggXAogCQlodHRwOi8vcGl2b3R4Lm5ldC9maWxlcy8gXAogCQlo
dHRwOi8vcGl2b3R4Lm5ldC9maWxlcy9hcmNoaXZlZC8KLURJU1ROQU1FPQlwaXZvdHhfMi4zLjAK
K0RJU1ROQU1FPQlwaXZvdHhfJHtQT1JUVkVSU0lPTn0KIEVYVFJBQ1RfU1VGWD0JLnRnegogCiBN
QUlOVEFJTkVSPQlmdW1pZnVtaUBhYmFjdXN0ZWNoLmpwCkBAIC0yNiwyMyArMjYsMjQgQEAKICMg
UmVxdWlyZW1lbnRzOgogIyBodHRwOi8vYm9vay5waXZvdHgubmV0L2luZGV4LnBocD9wYWdlPWFw
cC1lI2FuY2hvci1kZXRlcm1pbmluZy1pZi15b3VyLXNlcnZlci1tZWV0cy1waXZvdHhzLXJlcXVp
cmVtZW50cwogCi1PUFRJT05TPQlNWVNRTAkiVXNlIE15U1FMIGluc3RlYWQgb2YgZmxhdCBmaWxl
cyIgb2ZmCitPUFRJT05TPQlNWVNRTAkiVXNlIE15U1FMIGluc3RlYWQgb2YgZmxhdCBmaWxlcyIg
b2ZmIFwKKwkJUEhQRE9NCSJVc2UgUEhQOkRPTSBpbnN0ZWFkIG9mIFNpbXBsZVhNTCIgb2ZmCiAK
IC5pbmNsdWRlIDxic2QucG9ydC5vcHRpb25zLm1rPgogCiBXQU5UX1BIUF9XRUI9CXllcwogSUdO
T1JFX1dJVEhfUEhQPTQKLVVTRV9QSFA9CXNlc3Npb24gZ2V0dGV4dCB4bWwgZ2QgcGNyZSB0b2tl
bml6ZXIKK1VTRV9QSFA9CXNlc3Npb24gZ2V0dGV4dCB4bWwgdG9rZW5pemVyIGdkIHBjcmUKIFVT
RV9HRVRURVhUPQl5ZXMKIAotLmlmIGV4aXN0cygke1BIUEJBU0V9L2xpYi9waHAvJHtQSFBfRVhU
X0RJUn0vc2ltcGxleG1sLnNvKSB8fCAhZXhpc3RzKCR7UEhQQkFTRX0vbGliL3BocC8ke1BIUF9F
WFRfRElSfS9kb20uc28pCi1VU0VfUEhQKz0Jc2ltcGxleG1sCi0uZWxzZQorLmlmIGRlZmluZWQo
V0lUSF9QSFBET00pCiBVU0VfUEhQKz0JZG9tCisuZWxzZQorVVNFX1BIUCs9CXNpbXBsZXhtbAog
LmVuZGlmCiAKIC5pZiBkZWZpbmVkKFdJVEhfTVlTUUwpCi1VU0VfTVlTUUw9CXllcworVVNFX01Z
U1FMPQljbGllbnQKIFVTRV9QSFArPQlteXNxbAogLmVuZGlmCiAKQEAgLTEwMiw3ICsxMDMsNyBA
QAogCUAke01LRElSfSAnJHtXV1dESVJ9JwogCUBjZCAnJHtXUktTUkN9JyAmJiAke0NPUFlUUkVF
X1NIQVJFfSAuICcke1dXV0RJUn0nCiAuZm9yIERJUiBpbiAke1dSSVRBQkxFRElSU30KLQlAJHtD
SE9XTn0gLVIgJHtXV1dPV059OiR7V1dXR1JQfSAnJHtXV1dESVJ9LyR7RElSfScKKwlAJHtDSE9X
Tn0gLVIgJyR7V1dXT1dOfToke1dXV0dSUH0nICcke1dXV0RJUn0vJHtESVJ9JwogCUAke0ZJTkR9
ICcke1dXV0RJUn0vJHtESVJ9JyAtdHlwZSBkIC1wcmludDAgfCAke1hBUkdTfSAtMCAke0NITU9E
fSB1PXJ3eCxnbz1yeAogCUAke0ZJTkR9ICcke1dXV0RJUn0vJHtESVJ9JyAtdHlwZSBmIC1wcmlu
dDAgfCAke1hBUkdTfSAtMCAke0NITU9EfSB1PXJ3LGdvPXIKIC5lbmRmb3IKZGlmZiAtcnVOIC0t
ZXhjbHVkZT1DVlMgL3Vzci9wb3J0cy93d3cvcGl2b3R4L2Rpc3RpbmZvIC4vZGlzdGluZm8KLS0t
IC91c3IvcG9ydHMvd3d3L3Bpdm90eC9kaXN0aW5mbwkyMDExLTA4LTE2IDIzOjI5OjM4LjAwMDAw
MDAwMCArMDkwMAorKysgLi9kaXN0aW5mbwkyMDEyLTAzLTAxIDEzOjI5OjQ0LjAwMDAwMDAwMCAr
MDkwMApAQCAtMSwyICsxLDIgQEAKLVNIQTI1NiAocGl2b3R4XzIuMy4wLnRneikgPSA5MzI0OGNl
ZWE2Y2M4YjE2NTQzODZhMTQxNzVjMWEzZDQwMzViZjYzZGNhOTliMGU0NmI4ZmE2YmJhODRkZjY0
Ci1TSVpFIChwaXZvdHhfMi4zLjAudGd6KSA9IDIzNDUyNjEKK1NIQTI1NiAocGl2b3R4XzIuMy4y
LnRneikgPSA1ZmI0ZTg2NjU3NzRjYTZmMzE0MDUzZWFiZWE2NjQ0YWQwYzNlMTBlYjNmNjI0N2Iy
ZjZhZGRiOWY3M2NmMWUzCitTSVpFIChwaXZvdHhfMi4zLjIudGd6KSA9IDIzODc4OTUKZGlmZiAt
cnVOIC0tZXhjbHVkZT1DVlMgL3Vzci9wb3J0cy93d3cvcGl2b3R4L3BrZy1wbGlzdCAuL3BrZy1w
bGlzdAotLS0gL3Vzci9wb3J0cy93d3cvcGl2b3R4L3BrZy1wbGlzdAkyMDExLTA4LTE2IDIzOjI5
OjM4LjAwMDAwMDAwMCArMDkwMAorKysgLi9wa2ctcGxpc3QJMjAxMi0wMy0wMSAxMzo0MzozMS4w
MDAwMDAwMDAgKzA5MDAKQEAgLTgsOCArOCw2IEBACiAlJVdXV0RJUiUlL3Bpdm90eC9kYXRhLnBo
cAogQGV4ZWMgICBybSAtZiAgJUIvZGIvY2FjaGUvKgogQHVuZXhlYyBybSAtcmYgJUIvZGIvY2Fj
aGUgMj4vZGV2L251bGwgfHwgdHJ1ZQotJSVXV1dESVIlJS9waXZvdHgvZGIvYmxvY2tlZF9pcHMu
dHh0LnBocAotJSVXV1dESVIlJS9waXZvdHgvZGIvaWdub3JlZF9kb21haW5zLnR4dC5waHAKICUl
V1dXRElSJSUvcGl2b3R4L2RiL2luZGV4Lmh0bWwKICUlV1dXRElSJSUvcGl2b3R4L2RiL3JlZmtl
eXMvaW5kZXguaHRtbAogJSVXV1dESVIlJS9waXZvdHgvZGIvcnNzY2FjaGUvaW5kZXguaHRtbApA
QCAtMjIsMTYgKzIwLDggQEAKICUlV1dXRElSJSUvcGl2b3R4L2VkaXRvcl93eXNpL3BsdWdpbnMv
Y29udGV4dG1lbnUvZWRpdG9yX3BsdWdpbi5qcwogJSVXV1dESVIlJS9waXZvdHgvZWRpdG9yX3d5
c2kvcGx1Z2lucy9mdWxsc2NyZWVuL2VkaXRvcl9wbHVnaW4uanMKICUlV1dXRElSJSUvcGl2b3R4
L2VkaXRvcl93eXNpL3BsdWdpbnMvZnVsbHNjcmVlbi9mdWxsc2NyZWVuLmh0bQotJSVXV1dESVIl
JS9waXZvdHgvZWRpdG9yX3d5c2kvcGx1Z2lucy9tZWRpYS9jc3MvY29udGVudC5jc3MKICUlV1dX
RElSJSUvcGl2b3R4L2VkaXRvcl93eXNpL3BsdWdpbnMvbWVkaWEvY3NzL21lZGlhLmNzcwogJSVX
V1dESVIlJS9waXZvdHgvZWRpdG9yX3d5c2kvcGx1Z2lucy9tZWRpYS9lZGl0b3JfcGx1Z2luLmpz
Ci0lJVdXV0RJUiUlL3Bpdm90eC9lZGl0b3Jfd3lzaS9wbHVnaW5zL21lZGlhL2ltZy9mbGFzaC5n
aWYKLSUlV1dXRElSJSUvcGl2b3R4L2VkaXRvcl93eXNpL3BsdWdpbnMvbWVkaWEvaW1nL2Zsdl9w
bGF5ZXIuc3dmCi0lJVdXV0RJUiUlL3Bpdm90eC9lZGl0b3Jfd3lzaS9wbHVnaW5zL21lZGlhL2lt
Zy9xdWlja3RpbWUuZ2lmCi0lJVdXV0RJUiUlL3Bpdm90eC9lZGl0b3Jfd3lzaS9wbHVnaW5zL21l
ZGlhL2ltZy9yZWFsbWVkaWEuZ2lmCi0lJVdXV0RJUiUlL3Bpdm90eC9lZGl0b3Jfd3lzaS9wbHVn
aW5zL21lZGlhL2ltZy9zaG9ja3dhdmUuZ2lmCi0lJVdXV0RJUiUlL3Bpdm90eC9lZGl0b3Jfd3lz
aS9wbHVnaW5zL21lZGlhL2ltZy90cmFucy5naWYKLSUlV1dXRElSJSUvcGl2b3R4L2VkaXRvcl93
eXNpL3BsdWdpbnMvbWVkaWEvaW1nL3dpbmRvd3NtZWRpYS5naWYKICUlV1dXRElSJSUvcGl2b3R4
L2VkaXRvcl93eXNpL3BsdWdpbnMvbWVkaWEvanMvZW1iZWQuanMKICUlV1dXRElSJSUvcGl2b3R4
L2VkaXRvcl93eXNpL3BsdWdpbnMvbWVkaWEvanMvbWVkaWEuanMKICUlV1dXRElSJSUvcGl2b3R4
L2VkaXRvcl93eXNpL3BsdWdpbnMvbWVkaWEvbGFuZ3MvZW5fZGxnLmpzCkBAIC0xMTEsNiArMTAx
LDcgQEAKICUlV1dXRElSJSUvcGl2b3R4L2VkaXRvcl93eXNpL3RoZW1lcy9hZHZhbmNlZC9sYW5n
cy9lbi5qcwogJSVXV1dESVIlJS9waXZvdHgvZWRpdG9yX3d5c2kvdGhlbWVzL2FkdmFuY2VkL2xh
bmdzL2VuX2RsZy5qcwogJSVXV1dESVIlJS9waXZvdHgvZWRpdG9yX3d5c2kvdGhlbWVzL2FkdmFu
Y2VkL2xpbmsuaHRtCislJVdXV0RJUiUlL3Bpdm90eC9lZGl0b3Jfd3lzaS90aGVtZXMvYWR2YW5j
ZWQvc2hvcnRjdXRzLmh0bQogJSVXV1dESVIlJS9waXZvdHgvZWRpdG9yX3d5c2kvdGhlbWVzL2Fk
dmFuY2VkL3NraW5zL2RlZmF1bHQvY29udGVudC5jc3MKICUlV1dXRElSJSUvcGl2b3R4L2VkaXRv
cl93eXNpL3RoZW1lcy9hZHZhbmNlZC9za2lucy9kZWZhdWx0L2RpYWxvZy5jc3MKICUlV1dXRElS
JSUvcGl2b3R4L2VkaXRvcl93eXNpL3RoZW1lcy9hZHZhbmNlZC9za2lucy9kZWZhdWx0L2ltZy9i
dXR0b25zLnBuZwpAQCAtMjQ0LDkgKzIzNSw5IEBACiAlJVdXV0RJUiUlL3Bpdm90eC9pbmNsdWRl
cy9pbmRleC5odG1sCiAlJVdXV0RJUiUlL3Bpdm90eC9pbmNsdWRlcy9qcy9ib29rbWFya2xldC5q
cwogJSVXV1dESVIlJS9waXZvdHgvaW5jbHVkZXMvanMvaW5kZXguaHRtbAotJSVXV1dESVIlJS9w
aXZvdHgvaW5jbHVkZXMvanMvanF1ZXJ5LTEuNi4yLm1pbi5qcworJSVXV1dESVIlJS9waXZvdHgv
aW5jbHVkZXMvanMvanF1ZXJ5LTEuNy4xLm1pbi5qcwogJSVXV1dESVIlJS9waXZvdHgvaW5jbHVk
ZXMvanMvanF1ZXJ5LXBsdWdpbnMuanMKLSUlV1dXRElSJSUvcGl2b3R4L2luY2x1ZGVzL2pzL2px
dWVyeS11aS0xLjguMTUuY3VzdG9tLm1pbi5qcworJSVXV1dESVIlJS9waXZvdHgvaW5jbHVkZXMv
anMvanF1ZXJ5LXVpLTEuOC4xNy5jdXN0b20ubWluLmpzCiAlJVdXV0RJUiUlL3Bpdm90eC9pbmNs
dWRlcy9qcy9qcXVlcnkuSmNyb3AubWluLmpzCiAlJVdXV0RJUiUlL3Bpdm90eC9pbmNsdWRlcy9q
cy9tX3Bpdm90eC5qcwogJSVXV1dESVIlJS9waXZvdHgvaW5jbHVkZXMvanMvcGl2b3R4LmpzCkBA
IC0zNzcsNiArMzY4LDkgQEAKICUlV1dXRElSJSUvcGl2b3R4L2luY2x1ZGVzL3RleHRpbGUvaGVs
cC5odG1sCiAlJVdXV0RJUiUlL3Bpdm90eC9pbmNsdWRlcy90ZXh0aWxlL2luZGV4Lmh0bWwKICUl
V1dXRElSJSUvcGl2b3R4L2luY2x1ZGVzL3RleHRpbGUvb3ZlcnZpZXcuaHRtbAorJSVXV1dESVIl
JS9waXZvdHgvaW5jbHVkZXMvdGltdGh1bWItY29uZmlnLnBocAorJSVXV1dESVIlJS9waXZvdHgv
aW5jbHVkZXMvdGltdGh1bWItZXJyb3IuanBnCislJVdXV0RJUiUlL3Bpdm90eC9pbmNsdWRlcy90
aW10aHVtYi1ub3RmbmQuanBnCiAlJVdXV0RJUiUlL3Bpdm90eC9pbmNsdWRlcy90aW10aHVtYi5w
aHAKICUlV1dXRElSJSUvcGl2b3R4L2luY2x1ZGVzL3RpbXdyYXBwZXIucGhwCiAlJVdXV0RJUiUl
L3Bpdm90eC9pbmNsdWRlcy94bWxycGMvY29tcGF0L2FycmF5X2tleV9leGlzdHMucGhwCkBAIC04
NTUsNyArODQ5LDcgQEAKICUlV1dXRElSJSUvcGl2b3R4L3RlbXBsYXRlc19pbnRlcm5hbC91aS10
aGVtZS9pbWFnZXMvdWktaWNvbnNfNDU0NTQ1XzI1NngyNDAucG5nCiAlJVdXV0RJUiUlL3Bpdm90
eC90ZW1wbGF0ZXNfaW50ZXJuYWwvdWktdGhlbWUvaW1hZ2VzL3VpLWljb25zXzg4ODg4OF8yNTZ4
MjQwLnBuZwogJSVXV1dESVIlJS9waXZvdHgvdGVtcGxhdGVzX2ludGVybmFsL3VpLXRoZW1lL2lt
YWdlcy91aS1pY29uc19jZDBhMGFfMjU2eDI0MC5wbmcKLSUlV1dXRElSJSUvcGl2b3R4L3RlbXBs
YXRlc19pbnRlcm5hbC91aS10aGVtZS9qcXVlcnktdWktMS44LjE1LmN1c3RvbS5jc3MKKyUlV1dX
RElSJSUvcGl2b3R4L3RlbXBsYXRlc19pbnRlcm5hbC91aS10aGVtZS9qcXVlcnktdWktMS44LjE3
LmN1c3RvbS5jc3MKICUlV1dXRElSJSUvcGl2b3R4L3RlbXBsYXRlc19pbnRlcm5hbC91c2Vycy50
cGwKICUlV1dXRElSJSUvcGl2b3R4L3RlbXBsYXRlc19pbnRlcm5hbC92aXNpdG9ycy50cGwKICUl
V1dXRElSJSUvcGl2b3R4L3RlbXBsYXRlc19pbnRlcm5hbC93ZWJsb2cudHBsCkBAIC05NDksNyAr
OTQzLDYgQEAKIEBkaXJybSAlJVdXV0RJUiUlL3Bpdm90eC9lZGl0b3Jfd3lzaS9wbHVnaW5zL25v
bmJyZWFraW5nCiBAZGlycm0gJSVXV1dESVIlJS9waXZvdHgvZWRpdG9yX3d5c2kvcGx1Z2lucy9t
ZWRpYS9sYW5ncwogQGRpcnJtICUlV1dXRElSJSUvcGl2b3R4L2VkaXRvcl93eXNpL3BsdWdpbnMv
bWVkaWEvanMKLUBkaXJybSAlJVdXV0RJUiUlL3Bpdm90eC9lZGl0b3Jfd3lzaS9wbHVnaW5zL21l
ZGlhL2ltZwogQGRpcnJtICUlV1dXRElSJSUvcGl2b3R4L2VkaXRvcl93eXNpL3BsdWdpbnMvbWVk
aWEvY3NzCiBAZGlycm0gJSVXV1dESVIlJS9waXZvdHgvZWRpdG9yX3d5c2kvcGx1Z2lucy9tZWRp
YQogQGRpcnJtICUlV1dXRElSJSUvcGl2b3R4L2VkaXRvcl93eXNpL3BsdWdpbnMvZnVsbHNjcmVl
bgotLS0gcGl2b3R4LTIuMy4yLnBhdGNoIGVuZHMgaGVyZSAtLS0K

----Next_Part(Tue_Apr__3_19_29_08_2012_823)----
Comment 7 Martin Wilke freebsd_committer freebsd_triage 2012-04-10 17:47:12 UTC
State Changed
From-To: feedback->closed

Committed. Thanks!
Comment 8 dfilter service freebsd_committer freebsd_triage 2012-04-10 17:47:14 UTC
miwi        2012-04-10 16:47:00 UTC

  FreeBSD ports repository

  Modified files:
    www/pivotx           Makefile distinfo pkg-plist 
  Log:
  - Update to 2.3.2
  
  PR:             165872
  Submitted by:   Fumiyuki Shimizu <fumifumi@abacustech.jp> (maintainer)
  
  Revision  Changes    Path
  1.7       +10 -9     ports/www/pivotx/Makefile
  1.6       +2 -2      ports/www/pivotx/distinfo
  1.6       +7 -14     ports/www/pivotx/pkg-plist
_______________________________________________
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"