Port fails to download the distfiles, I think this might be because Github have deprecated their downloads: https://github.com/blog/1302-goodbye-uploads I have tried setting the Github options in the Makefile and I was able to get the download working but when running 'port test' I was getting errors about missing jars. I'm still learning the port system so I'm afraid I can't figure this out and fix the port & bump to latest version 20.3 myself.
Responsible Changed From-To: freebsd-ports-bugs->tj Over to maintainer (via the GNATS Auto Assign Tool)
Author: tj Date: Tue Jan 29 17:25:03 2013 New Revision: 311175 URL: http://svnweb.freebsd.org/changeset/ports/311175 Log: Upgrade to 0.20.4. Changes: http://www.elasticsearch.org/download/2013/01/29/0.20.4.html http://www.elasticsearch.org/download/2013/01/25/0.20.3.html http://www.elasticsearch.org/download/2012/12/27/0.20.2.html http://www.elasticsearch.org/download/2012/12/07/0.20.1.html http://www.elasticsearch.org/download/2012/12/07/0.20.0.html PR: ports/175614 Submitted by: Ross Timson <ross@rosstimson.com> Modified: head/UPDATING head/textproc/elasticsearch/Makefile head/textproc/elasticsearch/distinfo head/textproc/elasticsearch/pkg-plist Modified: head/UPDATING ============================================================================== --- head/UPDATING Tue Jan 29 17:18:40 2013 (r311174) +++ head/UPDATING Tue Jan 29 17:25:03 2013 (r311175) @@ -5,6 +5,18 @@ they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20130129: + AFFECTES: users of textproc/elasticsearch + AUTHOR: tj@FreeBSD.org + + elasticsearch has been updated to 0.20.4. This upgrade requires a + full cluster restart after installation. + + Upgrade steps: + 1) Shutdown all cluster nodes + 2) Install elasticsearch update + 3) Start all cluster nodes + 20130128: AFFECTS: users of libffi AUTHOR jkim@FreeBSD.org Modified: head/textproc/elasticsearch/Makefile ============================================================================== --- head/textproc/elasticsearch/Makefile Tue Jan 29 17:18:40 2013 (r311174) +++ head/textproc/elasticsearch/Makefile Tue Jan 29 17:25:03 2013 (r311175) @@ -2,16 +2,16 @@ # $FreeBSD$ PORTNAME= elasticsearch -PORTVERSION= 0.19.12 +PORTVERSION= 0.20.4 CATEGORIES= textproc java devel -MASTER_SITES= http://cloud.github.com/downloads/${PORTNAME}/${PORTNAME}/ +MASTER_SITES= http://download.elasticsearch.org/${PORTNAME}/${PORTNAME}/ \ + http://mirrors.rit.edu/zi/ MAINTAINER= tj@FreeBSD.org COMMENT= A full-text search engine for Java LICENSE= AL2 -USE_ZIP= yes USE_JAVA= yes NO_BUILD= yes JAVA_VERSION= 1.6+ @@ -20,17 +20,19 @@ USE_RC_SUBR= ${PORTNAME} .include <bsd.port.options.mk> -LUCENEVER= 3.6.1 +LUCENEVER= 3.6.2 CONFIG_FILES= elasticsearch.yml logging.yml JARS= elasticsearch-${PORTVERSION}.jar \ jna-3.3.0.jar \ + jts-1.12.jar \ log4j-1.2.17.jar \ lucene-analyzers-${LUCENEVER}.jar \ lucene-core-${LUCENEVER}.jar \ lucene-highlighter-${LUCENEVER}.jar \ lucene-memory-${LUCENEVER}.jar \ lucene-queries-${LUCENEVER}.jar \ - snappy-java-1.0.4.1.jar + snappy-java-1.0.4.1.jar \ + spatial4j-0.3.jar DOCS= LICENSE.txt \ NOTICE.txt \ README.textile Modified: head/textproc/elasticsearch/distinfo ============================================================================== --- head/textproc/elasticsearch/distinfo Tue Jan 29 17:18:40 2013 (r311174) +++ head/textproc/elasticsearch/distinfo Tue Jan 29 17:25:03 2013 (r311175) @@ -1,2 +1,2 @@ -SHA256 (elasticsearch-0.19.12.zip) = d293b091841d64e51ce6bdef381aff34b46e92a529568bcb13a97d2306479567 -SIZE (elasticsearch-0.19.12.zip) = 15558899 +SHA256 (elasticsearch-0.20.4.tar.gz) = 65aa94e91b8e76e6858a34386a1914bf7cc15a36a5e41a39dfdb597654a78dec +SIZE (elasticsearch-0.20.4.tar.gz) = 16198793 Modified: head/textproc/elasticsearch/pkg-plist ============================================================================== --- head/textproc/elasticsearch/pkg-plist Tue Jan 29 17:18:40 2013 (r311174) +++ head/textproc/elasticsearch/pkg-plist Tue Jan 29 17:25:03 2013 (r311175) @@ -13,6 +13,7 @@ etc/elasticsearch/logging.yml.sample bin/elasticsearch-plugin lib/elasticsearch/elasticsearch-%%PORTVERSION%%.jar lib/elasticsearch/jna-3.3.0.jar +lib/elasticsearch/jts-1.12.jar lib/elasticsearch/log4j-1.2.17.jar lib/elasticsearch/lucene-analyzers-%%LUCENEVER%%.jar lib/elasticsearch/lucene-core-%%LUCENEVER%%.jar @@ -20,6 +21,7 @@ lib/elasticsearch/lucene-highlighter-%%L lib/elasticsearch/lucene-memory-%%LUCENEVER%%.jar lib/elasticsearch/lucene-queries-%%LUCENEVER%%.jar lib/elasticsearch/snappy-java-1.0.4.1.jar +lib/elasticsearch/spatial4j-0.3.jar lib/elasticsearch/sigar/sigar-1.6.4.jar %%PORTDOCS%%%%DOCSDIR%%/LICENSE.txt %%PORTDOCS%%%%DOCSDIR%%/NOTICE.txt _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Port updated to 0.20.4. Thanks!