pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/www/php-owncloud Update to 6.0.2
details: https://anonhg.NetBSD.org/pkgsrc/rev/205f20576933
branches: trunk
changeset: 632310:205f20576933
user: ryoon <ryoon%pkgsrc.org@localhost>
date: Sun Mar 23 01:19:17 2014 +0000
description:
Update to 6.0.2
* Update MESSAGE to use nginx and php-fpm.
I cannot enable with apache24 (yet).
Changelog:
Version 6.0.2 March 3rd 2014
Several security fixes
Improved trash bin performance for deleting lots of files
Mobile interface improvements
Fix key problems in encryption mode in rare situations
Smaller LDAP improvements
Fix the keep-alive ping for non standard php session lifetimes
Cleanup storage table when deleting an entry
Fix compatibility with xsendfile mode
Fix file size calculation in encryption mode
Fix image previews in trash bin
Fix public upload with enabled enryption
Added APC enabled check
Correctly localise date in notification emails
Improve compatibility with some CIFS servers
Fix shared files and Gallery
Several Contacts compatibility improvements
Several Documents improvements
A lot of smaller bug fixes
diffstat:
www/php-owncloud/MESSAGE | 58 +++-
www/php-owncloud/Makefile | 4 +-
www/php-owncloud/PLIST | 629 +++++++++++++++++++++++++++++----------------
www/php-owncloud/distinfo | 8 +-
4 files changed, 449 insertions(+), 250 deletions(-)
diffs (truncated from 921 to 300 lines):
diff -r 7d0a3c90b967 -r 205f20576933 www/php-owncloud/MESSAGE
--- a/www/php-owncloud/MESSAGE Sat Mar 22 23:34:13 2014 +0000
+++ b/www/php-owncloud/MESSAGE Sun Mar 23 01:19:17 2014 +0000
@@ -1,25 +1,49 @@
===========================================================================
-$NetBSD: MESSAGE,v 1.13 2013/11/22 14:34:33 ryoon Exp $
+$NetBSD: MESSAGE,v 1.14 2014/03/23 01:19:17 ryoon Exp $
To use ownCloud, you will need to perform the following steps.
1. If you want to use with MySQL server, install databases/mysql55-*
and enable it, then create database.
-2. Install apache httpd server, for example www/apache24 and www/ap-php.
+2. Install nginx httpd server, for example www/nginx.
+
+3. Install PHP-FPM, PHP FastCGI Process Magager from www/php-fpm.
+
+4. Be sure to have the following lines in ${PREFIX}/etc/nginx/nginx.conf
+ to enable PHP script in http://YOUR_SERVER_NAME/owncloud/ .
-3. Be sure to have the following lines in ${PREFIX}/etc/httpd/httpd.conf
+ http {
+ server {
+ listen 80;
+ server_name YOUR_SERVER_NAME;
+ root ${PREFIX}/share/owncloud/;
+
+ client_max_body_size 10G; # set max upload size
+ fastcgi_buffers 64 4K;
- Alias /owncloud ${PREFIX}/share/owncloud
- <Directory "${PREFIX}/share/owncloud">
- DirectoryIndex index.php
- Options All
- Allow from All
- AllowOverride All
- Require all granted
- </Directory>
+ location /owncloud {
+ index index.php;
+ error_page 403 /owncloud/core/templates/403.php;
+ error_page 404 /owncloud/core/templates/404.php;
+ alias ${PREFIX}/share/owncloud;
+ }
-4. Be sure to have the following lines in ${PREFIX}/etc/php.ini.
+ location ~ ^(.+?\.php)(/.*)?$ {
+ include fastcgi_params;
+ fastcgi_param SCRIPT_FILENAME ${PREFIX}/share/$1;
+ fastcgi_param PATH_INFO $2;
+ fastcgi_pass 127.0.0.1:9000;
+ }
+ }
+ }
+
+5. Be sure to have the following lines in ${PREFIX}/etc/php-fam.conf
+ to restrict access from localhost only.
+
+ listen.allowed_clients = 127.0.0.1
+
+6. Be sure to have the following lines in ${PREFIX}/etc/php.ini.
extension=dom.so
extension=gd.so
@@ -34,7 +58,13 @@
extension=mysql.so ;if you select MySQL backend.
extension=pgsql.so ;if you select PostgreSQL backend.
-5. Start apache httpd.
+7. Start PHP-FPM daemon.
+
+ ${RCD_SCRIPTS_DIR}/php_fpm start
-6. Access http://localhost/owncloud/ and setup.
+8. Start nginx httpd server.
+
+ ${RCD_SCRIPTS_DIR}/nginx start
+
+6. Access http://YOUR_SERVER_NAME/owncloud/ and setup.
===========================================================================
diff -r 7d0a3c90b967 -r 205f20576933 www/php-owncloud/Makefile
--- a/www/php-owncloud/Makefile Sat Mar 22 23:34:13 2014 +0000
+++ b/www/php-owncloud/Makefile Sun Mar 23 01:19:17 2014 +0000
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.42 2014/02/02 14:56:58 ryoon Exp $
+# $NetBSD: Makefile,v 1.43 2014/03/23 01:19:17 ryoon Exp $
#
-DISTNAME= owncloud-6.0.1
+DISTNAME= owncloud-6.0.2
PKGNAME= ${PHP_PKG_PREFIX}-${DISTNAME}
CATEGORIES= www
MASTER_SITES= http://download.owncloud.org/community/
diff -r 7d0a3c90b967 -r 205f20576933 www/php-owncloud/PLIST
--- a/www/php-owncloud/PLIST Sat Mar 22 23:34:13 2014 +0000
+++ b/www/php-owncloud/PLIST Sun Mar 23 01:19:17 2014 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.23 2014/02/02 14:56:58 ryoon Exp $
+@comment $NetBSD: PLIST,v 1.24 2014/03/23 01:19:17 ryoon Exp $
share/owncloud/.htaccess
share/owncloud/3rdparty/Archive/Tar.php
share/owncloud/3rdparty/Console/Getopt.php
@@ -1520,6 +1520,7 @@
share/owncloud/3rdparty/miniColors/css/jquery.miniColors.css
share/owncloud/3rdparty/miniColors/js/jquery.miniColors.js
share/owncloud/3rdparty/miniColors/js/jquery.miniColors.min.js
+share/owncloud/3rdparty/patches.txt
share/owncloud/3rdparty/phpass/PasswordHash.php
share/owncloud/3rdparty/phpass/c/Makefile
share/owncloud/3rdparty/phpass/c/crypt_private.c
@@ -1664,79 +1665,6 @@
share/owncloud/3rdparty/phpdocx/lib/log4php/renderers/LoggerRendererMap.php
share/owncloud/3rdparty/phpdocx/lib/log4php/xml/log4php.dtd
share/owncloud/3rdparty/phpdocx/pdf/LICENSE.LGPL
-share/owncloud/3rdparty/phpdocx/pdf/dompdf.php
-share/owncloud/3rdparty/phpdocx/pdf/dompdf_config.inc.php
-share/owncloud/3rdparty/phpdocx/pdf/include/_dompdf2phpdocx.php
-share/owncloud/3rdparty/phpdocx/pdf/include/_dompdf_treeOut__20120418.php
-share/owncloud/3rdparty/phpdocx/pdf/include/absolute_positioner.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/abstract_renderer.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/attribute_translator.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/block_frame_decorator.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/block_frame_reflower.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/block_positioner.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/block_renderer.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/cached_pdf_decorator.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/canvas.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/canvas_factory.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/cellmap.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/cpdf_adapter.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/css_color.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/dompdf.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/dompdf_exception.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/dompdf_internal_exception.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/dompdf_treeOut.php
-share/owncloud/3rdparty/phpdocx/pdf/include/file.skel
-share/owncloud/3rdparty/phpdocx/pdf/include/fixed_positioner.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/font_metrics.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/frame.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/frame_decorator.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/frame_factory.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/frame_reflower.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/frame_tree.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/functions.inc.php
-share/owncloud/3rdparty/phpdocx/pdf/include/gd_adapter.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/image_cache.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/image_frame_decorator.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/image_frame_reflower.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/image_renderer.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/inline_frame_decorator.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/inline_frame_reflower.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/inline_positioner.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/inline_renderer.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/javascript_embedder.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/list_bullet_frame_decorator.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/list_bullet_frame_reflower.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/list_bullet_image_frame_decorator.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/list_bullet_positioner.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/list_bullet_renderer.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/null_frame_decorator.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/null_frame_reflower.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/null_positioner.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/page_cache.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/page_frame_decorator.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/page_frame_reflower.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/pdflib_adapter.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/php_evaluator.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/positioner.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/renderer.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/style.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/stylesheet.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/table_cell_frame_decorator.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/table_cell_frame_reflower.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/table_cell_positioner.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/table_cell_renderer.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/table_frame_decorator.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/table_frame_reflower.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/table_row_frame_decorator.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/table_row_frame_reflower.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/table_row_group_frame_decorator.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/table_row_group_frame_reflower.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/table_row_positioner.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/tcpdf_adapter.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/text_frame_decorator.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/text_frame_reflower.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/text_renderer.cls.php
-share/owncloud/3rdparty/phpdocx/pdf/include/ttf_info.cls.php
share/owncloud/3rdparty/phpdocx/pdf/lib/class.pdf.php
share/owncloud/3rdparty/phpdocx/pdf/lib/fonts/Courier-Bold.afm
share/owncloud/3rdparty/phpdocx/pdf/lib/fonts/Courier-BoldOblique.afm
@@ -2197,94 +2125,6 @@
share/owncloud/3rdparty/phpdocx/pdf/tcpdf/tcpdf.p12
share/owncloud/3rdparty/phpdocx/pdf/tcpdf/tcpdf.php
share/owncloud/3rdparty/phpdocx/pdf/tcpdf/unicode_data.php
-share/owncloud/3rdparty/phpdocx/pdf/www/examples.php
-share/owncloud/3rdparty/phpdocx/pdf/www/foot.inc
-share/owncloud/3rdparty/phpdocx/pdf/www/head.inc
-share/owncloud/3rdparty/phpdocx/pdf/www/images/arrow_01.gif
-share/owncloud/3rdparty/phpdocx/pdf/www/images/arrow_02.gif
-share/owncloud/3rdparty/phpdocx/pdf/www/images/arrow_03.gif
-share/owncloud/3rdparty/phpdocx/pdf/www/images/arrow_04.gif
-share/owncloud/3rdparty/phpdocx/pdf/www/images/arrow_05.gif
-share/owncloud/3rdparty/phpdocx/pdf/www/images/arrow_06.gif
-share/owncloud/3rdparty/phpdocx/pdf/www/images/css2.png
-share/owncloud/3rdparty/phpdocx/pdf/www/images/dompdf_simple.png
-share/owncloud/3rdparty/phpdocx/pdf/www/images/favicon.ico
-share/owncloud/3rdparty/phpdocx/pdf/www/images/favicon.png
-share/owncloud/3rdparty/phpdocx/pdf/www/images/h_bar.gif
-share/owncloud/3rdparty/phpdocx/pdf/www/images/left_arrow.gif
-share/owncloud/3rdparty/phpdocx/pdf/www/images/logo.png
-share/owncloud/3rdparty/phpdocx/pdf/www/images/logo.xcf
-share/owncloud/3rdparty/phpdocx/pdf/www/images/php5-power-micro.png
-share/owncloud/3rdparty/phpdocx/pdf/www/images/small_logo.png
-share/owncloud/3rdparty/phpdocx/pdf/www/images/star_01.gif
-share/owncloud/3rdparty/phpdocx/pdf/www/images/star_02.gif
-share/owncloud/3rdparty/phpdocx/pdf/www/images/star_03.gif
-share/owncloud/3rdparty/phpdocx/pdf/www/images/star_04.gif
-share/owncloud/3rdparty/phpdocx/pdf/www/images/star_05.gif
-share/owncloud/3rdparty/phpdocx/pdf/www/images/title.gif
-share/owncloud/3rdparty/phpdocx/pdf/www/images/v_bar.gif
-share/owncloud/3rdparty/phpdocx/pdf/www/images/xhtml10.png
-share/owncloud/3rdparty/phpdocx/pdf/www/index.php
-share/owncloud/3rdparty/phpdocx/pdf/www/style.css
-share/owncloud/3rdparty/phpdocx/pdf/www/test/anchor_link.html
-share/owncloud/3rdparty/phpdocx/pdf/www/test/background_image.html
-share/owncloud/3rdparty/phpdocx/pdf/www/test/backgroundcolor_fontdecoration_pageborder.html
-share/owncloud/3rdparty/phpdocx/pdf/www/test/baseline.html
-share/owncloud/3rdparty/phpdocx/pdf/www/test/block_height.html
-share/owncloud/3rdparty/phpdocx/pdf/www/test/border_css_values.html
-share/owncloud/3rdparty/phpdocx/pdf/www/test/border_test.html
-share/owncloud/3rdparty/phpdocx/pdf/www/test/br.html
-share/owncloud/3rdparty/phpdocx/pdf/www/test/center_table.html
-share/owncloud/3rdparty/phpdocx/pdf/www/test/css/common.css
-share/owncloud/3rdparty/phpdocx/pdf/www/test/css/importabs.css
-share/owncloud/3rdparty/phpdocx/pdf/www/test/css/importall.css
-share/owncloud/3rdparty/phpdocx/pdf/www/test/css/importdisplay.css
-share/owncloud/3rdparty/phpdocx/pdf/www/test/css/importprint.css
-share/owncloud/3rdparty/phpdocx/pdf/www/test/css/importsub.css
-share/owncloud/3rdparty/phpdocx/pdf/www/test/css/linkall.css
-share/owncloud/3rdparty/phpdocx/pdf/www/test/css/linkdefault.css
-share/owncloud/3rdparty/phpdocx/pdf/www/test/css/linkdisplay.css
-share/owncloud/3rdparty/phpdocx/pdf/www/test/css/linkprint.css
-share/owncloud/3rdparty/phpdocx/pdf/www/test/css/print_static.css
-share/owncloud/3rdparty/phpdocx/pdf/www/test/demo_01.html
-share/owncloud/3rdparty/phpdocx/pdf/www/test/entities.html
-share/owncloud/3rdparty/phpdocx/pdf/www/test/font_selection.html
-share/owncloud/3rdparty/phpdocx/pdf/www/test/gif_test.html
-share/owncloud/3rdparty/phpdocx/pdf/www/test/html_attributes.html
-share/owncloud/3rdparty/phpdocx/pdf/www/test/image.html
-share/owncloud/3rdparty/phpdocx/pdf/www/test/image_variants.html
-share/owncloud/3rdparty/phpdocx/pdf/www/test/images/dokuwiki-128.png
-share/owncloud/3rdparty/phpdocx/pdf/www/test/images/dompdf_simple.png
-share/owncloud/3rdparty/phpdocx/pdf/www/test/images/goldengate.jpg
-share/owncloud/3rdparty/phpdocx/pdf/www/test/images/html.png
-share/owncloud/3rdparty/phpdocx/pdf/www/test/images/pdf.png
-share/owncloud/3rdparty/phpdocx/pdf/www/test/images/php.gif
-share/owncloud/3rdparty/phpdocx/pdf/www/test/images/png.png
-share/owncloud/3rdparty/phpdocx/pdf/www/test/images/smiley.png
-share/owncloud/3rdparty/phpdocx/pdf/www/test/images/what_ordered.gif
-share/owncloud/3rdparty/phpdocx/pdf/www/test/important_flag.html
-share/owncloud/3rdparty/phpdocx/pdf/www/test/javascript.html
-share/owncloud/3rdparty/phpdocx/pdf/www/test/large_table.html
-share/owncloud/3rdparty/phpdocx/pdf/www/test/latin1.html
-share/owncloud/3rdparty/phpdocx/pdf/www/test/long_table.php
-share/owncloud/3rdparty/phpdocx/pdf/www/test/margin.html
-share/owncloud/3rdparty/phpdocx/pdf/www/test/media.html
-share/owncloud/3rdparty/phpdocx/pdf/www/test/multiple_class.html
-share/owncloud/3rdparty/phpdocx/pdf/www/test/nbsp.html
-share/owncloud/3rdparty/phpdocx/pdf/www/test/nested_table.html
-share/owncloud/3rdparty/phpdocx/pdf/www/test/pages.html
-share/owncloud/3rdparty/phpdocx/pdf/www/test/php_test.php
-share/owncloud/3rdparty/phpdocx/pdf/www/test/remote.html
-share/owncloud/3rdparty/phpdocx/pdf/www/test/simple_ul.html
-share/owncloud/3rdparty/phpdocx/pdf/www/test/special.html
-share/owncloud/3rdparty/phpdocx/pdf/www/test/symbols.html
-share/owncloud/3rdparty/phpdocx/pdf/www/test/table.html
-share/owncloud/3rdparty/phpdocx/pdf/www/test/table_01.html
-share/owncloud/3rdparty/phpdocx/pdf/www/test/table_height.html
-share/owncloud/3rdparty/phpdocx/pdf/www/test/table_image.html
-share/owncloud/3rdparty/phpdocx/pdf/www/test/ul.html
-share/owncloud/3rdparty/phpdocx/pdf/www/test/unicode.html
-share/owncloud/3rdparty/phpdocx/pdf/www/test/unicode_wrapping.html
share/owncloud/3rdparty/phpdocx/templates/README.txt
share/owncloud/3rdparty/phpdocx/templates/phpdocxBaseTemplate.docx
share/owncloud/3rdparty/phpdocx/templates/xmls/app.xml
@@ -3494,6 +3334,7 @@
share/owncloud/apps/documents/ajax/controller.php
share/owncloud/apps/documents/ajax/documentController.php
share/owncloud/apps/documents/ajax/download.php
+share/owncloud/apps/documents/ajax/mimes.php
share/owncloud/apps/documents/ajax/otpoll.php
share/owncloud/apps/documents/ajax/personal.php
share/owncloud/apps/documents/ajax/sessionController.php
@@ -4293,7 +4134,6 @@
share/owncloud/apps/documents/lib/filter.php
share/owncloud/apps/documents/lib/genesis.php
share/owncloud/apps/documents/lib/helper.php
-share/owncloud/apps/documents/lib/invite.php
share/owncloud/apps/documents/lib/request.php
Home |
Main Index |
Thread Index |
Old Index