Date: Tue, 15 Sep 2009 21:47:52 +0200 From: Bernhard Froehlich <decke@bluelife.at> To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/138857: [MAINTAINER] www/redmine: update to 0.8.5 Message-ID: <20090915214752.4664750b@chii.bluelife.at> Resent-Message-ID: <200909151950.n8FJo3qZ087868@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 138857 >Category: ports >Synopsis: [MAINTAINER] www/redmine: update to 0.8.5 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Sep 15 19:50:02 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Bernhard Froehlich >Release: FreeBSD 7.2-STABLE amd64 >Organization: >Environment: System: FreeBSD chii.bluelife.at 7.2-STABLE FreeBSD 7.2-STABLE #8: Thu Aug 20 09:24:47 CEST 2009 >Description: - Update to 0.8.5 (includes fixes for CVE-2009-3009) - Removed rails dependency because redmine includes rails 2.1.2 in vendor/ - Added patch for missing redmine version bump to 0.8.5 - Added pkg-message with links to Redmine Install/Upgrade Guide - Makefile improvements Added file(s): - files/patch-lib-redmine-version.rb - pkg-message Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- redmine-0.8.5.patch begins here --- diff -ruN --exclude=CVS /usr/ports/www/redmine.orig/Makefile /usr/ports/www/redmine/Makefile --- /usr/ports/www/redmine.orig/Makefile 2009-05-23 16:09:24.000000000 +0200 +++ /usr/ports/www/redmine/Makefile 2009-09-15 21:23:52.000000000 +0200 @@ -1,20 +1,19 @@ # New ports collection makefile for: redmine # Date created: 2009-02-24 -# Whom: Bernahrd Froehlich <decke@bluelife.at> +# Whom: Bernhard Froehlich <decke@bluelife.at> # # $FreeBSD: ports/www/redmine/Makefile,v 1.1 2009/05/23 14:09:24 miwi Exp $ # PORTNAME= redmine -PORTVERSION= 0.8.4 +PORTVERSION= 0.8.5 CATEGORIES= www -MASTER_SITES= RF +MASTER_SITES= ${MASTER_SITE_RUBYFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} MAINTAINER= decke@bluelife.at COMMENT= A flexible project management web application -RUN_DEPENDS= ${LOCALBASE}/bin/rails:${PORTSDIR}/www/rubygem-rails - USE_RUBY= yes USE_RUBY_FEATURES= iconv USE_RAKE= yes @@ -22,12 +21,16 @@ do-install: ${MKDIR} ${WWWDIR} - ${CP} -pR ${WRKSRC}/ ${WWWDIR} + (cd ${WRKSRC}/ && ${COPYTREE_SHARE} "*" ${WWWDIR} "! -name *.orig") + ${MKDIR} ${WWWDIR}/public/plugin_assets ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR} - for f in files log tmp public/plugin_assets; do \ - ${CHMOD} -R 755 ${WWWDIR}/$$f; \ - done +.for f in files log tmp public/plugin_assets + ${CHMOD} -R 755 ${WWWDIR}/${f} +.endfor + +post-install: + @${CAT} ${PKGMESSAGE} .include <bsd.port.mk> diff -ruN --exclude=CVS /usr/ports/www/redmine.orig/distinfo /usr/ports/www/redmine/distinfo --- /usr/ports/www/redmine.orig/distinfo 2009-05-23 16:09:24.000000000 +0200 +++ /usr/ports/www/redmine/distinfo 2009-09-14 21:22:49.000000000 +0200 @@ -1,3 +1,3 @@ -MD5 (redmine-0.8.4.tar.gz) = 17dbce6aac36c5ed157798e0500cb32d -SHA256 (redmine-0.8.4.tar.gz) = 521b3617018141b325fc772ff17f4a208bd4194220e7861de34fb4e8537f8429 -SIZE (redmine-0.8.4.tar.gz) = 3169166 +MD5 (redmine-0.8.5.tar.gz) = d921a77c0ab0af69ca79f4d16107d506 +SHA256 (redmine-0.8.5.tar.gz) = fba81b177d16a7fd27ca0ca0019882fea83ca1160fd324b83e6069af61de48f7 +SIZE (redmine-0.8.5.tar.gz) = 3174242 diff -ruN --exclude=CVS /usr/ports/www/redmine.orig/files/patch-lib-redmine-version.rb /usr/ports/www/redmine/files/patch-lib-redmine-version.rb --- /usr/ports/www/redmine.orig/files/patch-lib-redmine-version.rb 1970-01-01 01:00:00.000000000 +0100 +++ /usr/ports/www/redmine/files/patch-lib-redmine-version.rb 2009-09-15 21:24:00.000000000 +0200 @@ -0,0 +1,11 @@ +--- lib/redmine/version.rb.orig 2009-09-13 14:10:18.000000000 +0200 ++++ lib/redmine/version.rb 2009-09-15 09:30:33.000000000 +0200 +@@ -4,7 +4,7 @@ + module VERSION #:nodoc: + MAJOR = 0 + MINOR = 8 +- TINY = 4 ++ TINY = 5 + + # Branch values: + # * official release: nil diff -ruN --exclude=CVS /usr/ports/www/redmine.orig/pkg-message /usr/ports/www/redmine/pkg-message --- /usr/ports/www/redmine.orig/pkg-message 1970-01-01 01:00:00.000000000 +0100 +++ /usr/ports/www/redmine/pkg-message 2009-09-15 21:24:00.000000000 +0200 @@ -0,0 +1,16 @@ +============================================================================= + +Redmine was installed. + +You now need to setup your Redmine installation so +please have a look at the Installation Guide. + +http://www.redmine.org/wiki/redmine/RedmineInstall + + +If you are upgrading please read the Upgrading Guide +before starting the new version. + +http://www.redmine.org/wiki/redmine/RedmineUpgrade + +============================================================================= diff -ruN --exclude=CVS /usr/ports/www/redmine.orig/pkg-plist /usr/ports/www/redmine/pkg-plist --- /usr/ports/www/redmine.orig/pkg-plist 2009-05-23 16:09:24.000000000 +0200 +++ /usr/ports/www/redmine/pkg-plist 2009-09-15 21:23:52.000000000 +0200 @@ -371,6 +371,7 @@ %%WWWDIR%%/config/initializers/20-mime_types.rb %%WWWDIR%%/config/initializers/30-redmine.rb %%WWWDIR%%/config/initializers/40-email.rb +%%WWWDIR%%/config/initializers/bigdecimal-segfault-fix.rb %%WWWDIR%%/config/routes.rb %%WWWDIR%%/config/settings.yml %%WWWDIR%%/db/migrate/001_setup.rb @@ -562,6 +563,7 @@ %%WWWDIR%%/lib/generators/redmine_plugin_model/templates/unit_test.rb.erb %%WWWDIR%%/lib/redcloth3.rb %%WWWDIR%%/lib/redmine.rb +%%WWWDIR%%/lib/redmine/about.rb %%WWWDIR%%/lib/redmine/access_control.rb %%WWWDIR%%/lib/redmine/access_keys.rb %%WWWDIR%%/lib/redmine/activity.rb @@ -867,6 +869,7 @@ %%WWWDIR%%/test/fixtures/mail_handler/ticket_with_attributes.eml %%WWWDIR%%/test/fixtures/mail_handler/ticket_with_cc.eml %%WWWDIR%%/test/fixtures/mail_handler/ticket_with_custom_fields.eml +%%WWWDIR%%/test/fixtures/mail_handler/ticket_with_spaces_between_attribute_and_separator.eml %%WWWDIR%%/test/fixtures/mail_handler/ticket_without_from_header.eml %%WWWDIR%%/test/fixtures/members.yml %%WWWDIR%%/test/fixtures/messages.yml @@ -1275,6 +1278,8 @@ %%WWWDIR%%/vendor/plugins/ruby-net-ldap-0.0.4/tests/testldif.rb %%WWWDIR%%/vendor/plugins/ruby-net-ldap-0.0.4/tests/testpsw.rb %%WWWDIR%%/vendor/rails/.gitignore +%%WWWDIR%%/vendor/rails/2-1-CVE-2009-3009-diff1.patch +%%WWWDIR%%/vendor/rails/2-1-CVE-2009-3009-diff2.patch %%WWWDIR%%/vendor/rails/actionmailer/CHANGELOG %%WWWDIR%%/vendor/rails/actionmailer/MIT-LICENSE %%WWWDIR%%/vendor/rails/actionmailer/README @@ -2212,6 +2217,7 @@ %%WWWDIR%%/vendor/rails/activesupport/lib/active_support/multibyte/handlers/passthru_handler.rb %%WWWDIR%%/vendor/rails/activesupport/lib/active_support/multibyte/handlers/utf8_handler.rb %%WWWDIR%%/vendor/rails/activesupport/lib/active_support/multibyte/handlers/utf8_handler_proc.rb +%%WWWDIR%%/vendor/rails/activesupport/lib/active_support/multibyte/utils.rb %%WWWDIR%%/vendor/rails/activesupport/lib/active_support/option_merger.rb %%WWWDIR%%/vendor/rails/activesupport/lib/active_support/ordered_hash.rb %%WWWDIR%%/vendor/rails/activesupport/lib/active_support/ordered_options.rb @@ -2454,6 +2460,7 @@ %%WWWDIR%%/vendor/rails/activesupport/test/multibyte_chars_test.rb %%WWWDIR%%/vendor/rails/activesupport/test/multibyte_conformance.rb %%WWWDIR%%/vendor/rails/activesupport/test/multibyte_handler_test.rb +%%WWWDIR%%/vendor/rails/activesupport/test/multibyte_utils_test.rb %%WWWDIR%%/vendor/rails/activesupport/test/option_merger_test.rb %%WWWDIR%%/vendor/rails/activesupport/test/ordered_hash_test.rb %%WWWDIR%%/vendor/rails/activesupport/test/ordered_options_test.rb @@ -3126,7 +3133,7 @@ @dirrm %%WWWDIR%%/public/themes/alternate @dirrmtry %%WWWDIR%%/public/themes @dirrm %%WWWDIR%%/public/stylesheets -@dirrm %%WWWDIR%%/public/plugin_assets +@dirrmtry %%WWWDIR%%/public/plugin_assets @dirrm %%WWWDIR%%/public/javascripts/jstoolbar/lang @dirrm %%WWWDIR%%/public/javascripts/jstoolbar @dirrm %%WWWDIR%%/public/javascripts/calendar/lang --- redmine-0.8.5.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20090915214752.4664750b>