Hello all -

I built it from source using OpenJDK 8 on a Debian 8 box -- all went
smoothly, and all tests passed. I played around with TinkerGraph in the
Gremlin console, and that works too.

The only issues I encountered relate to the signature verification process.
Specifically, the sha1 and md5 checksum files are not formatted to included
the associated filename so it breaks the command line tools check commands
(see below).

Here's the command to to generate the standard sha1 checksum file (
https://en.wikipedia.org/wiki/Sha1sum), and to generate the md5 checksum
vile, use md4sum -c:

sha1sum filename > filename.sha1


$ sha1sum -c apache-tinkerpop-3.0.2-incubating-source-release.zip.sha1
sha1sum: apache-tinkerpop-3.0.2-incubating-source-release.zip.sha1: no
properly formatted SHA1 checksum lines found

$ sha1sum apache-tinkerpop-3.0.2-incubating-source-release.zip
69c945dec30c4602beb70058cd9fb3026250a1c4
 apache-tinkerpop-3.0.2-incubating-source-release.zip

$ cat apache-tinkerpop-3.0.2-incubating-source-release.zip.sha1
69c945dec30c4602beb70058cd9fb3026250a1c4


$ md5sum -c apache-tinkerpop-3.0.2-incubating-source-release.zip.md5
md5sum: apache-tinkerpop-3.0.2-incubating-source-release.zip.md5: no
properly formatted MD5 checksum lines found

$ md5sum apache-tinkerpop-3.0.2-incubating-source-release.zip
9760ec6b5326059a7f4cbbcf08e0647e
 apache-tinkerpop-3.0.2-incubating-source-release.zip

$ cat apache-tinkerpop-3.0.2-incubating-source-release.zip.md5
9760ec6b5326059a7f4cbbcf08e0647ej


$ gpg --verify apache-tinkerpop-3.0.2-incubating-source-release.zip.asc
apache-tinkerpop-3.0.2-incubating-source-release.zip
gpg: Signature made Mon 19 Oct 2015 01:13:46 PM UTC using RSA key ID
54EAB0E6
gpg: Good signature from "Stephen Mallette <spmalle...@apache.org>"
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the
owner.
Primary key fingerprint: 0871 A360 AAB5 FD42 2516  E2FB EA53 A998 54EA B0E6


$ uname -a
Linux act-1 3.16.0-4-amd64 #1 SMP Debian 3.16.7-ckt11-1+deb8u5 (2015-10-09)
x86_64 GNU/Linux


$ java -version
openjdk version "1.8.0_66-internal"
OpenJDK Runtime Environment (build 1.8.0_66-internal-b01)
OpenJDK 64-Bit Server VM (build 25.66-b01, mixed mode)


$ mvn clean install

...

[INFO]
------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO]
[INFO] Apache TinkerPop .................................. SUCCESS [14.337s]
[INFO] Apache TinkerPop :: Gremlin Shaded ................ SUCCESS [2.673s]
[INFO] Apache TinkerPop :: Gremlin Core .................. SUCCESS [20.480s]
[INFO] Apache TinkerPop :: Gremlin Test .................. SUCCESS [7.082s]
[INFO] Apache TinkerPop :: Gremlin Groovy ................ SUCCESS [48.823s]
[INFO] Apache TinkerPop :: Gremlin Groovy Test ........... SUCCESS [3.696s]
[INFO] Apache TinkerPop :: TinkerGraph Gremlin ........... SUCCESS
[1:10.893s]
[INFO] Apache TinkerPop :: Hadoop Gremlin ................ SUCCESS
[2:42.355s]
[INFO] Apache TinkerPop :: Neo4j Gremlin ................. SUCCESS [2.528s]
[INFO] Apache TinkerPop :: Gremlin Driver ................ SUCCESS [6.314s]
[INFO] Apache TinkerPop :: Gremlin Server ................ SUCCESS [3.844s]
[INFO] Apache TinkerPop :: Gremlin Console ............... SUCCESS [10.356s]
[INFO]
------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO]
------------------------------------------------------------------------
[INFO] Total time: 5:53.591s
[INFO] Finished at: Tue Oct 20 20:18:20 UTC 2015
[INFO] Final Memory: 101M/1954M
[INFO]
------------------------------------------------------------------------


$ gremlin-console/bin/gremlin.sh

         \,,,/
         (o o)
-----oOOo-(3)-oOOo-----
plugin activated: tinkerpop.server
plugin activated: tinkerpop.utilities
plugin activated: tinkerpop.tinkergraph
gremlin> graph = TinkerGraph.open()
==>tinkergraph[vertices:0 edges:0]
gremlin> g = graph.traversal()
==>graphtraversalsource[tinkergraph[vertices:0 edges:0], standard]
gremlin> g.V()
gremlin> graph.io(graphml()).readGraph('data/grateful-dead.xml')
==>null
gremlin> clock(1000) {g.V().has('name','Garcia').iterate()} //(1)
==>0.24023040699999998
gremlin> graph = TinkerGraph.open()
==>tinkergraph[vertices:0 edges:0]
gremlin> g = graph.traversal()
==>graphtraversalsource[tinkergraph[vertices:0 edges:0], standard]
gremlin> graph.createIndex('name',Vertex.class)
==>null
gremlin> graph.io(graphml()).readGraph('data/grateful-dead.xml')
==>null
gremlin> clock(1000){g.V().has('name','Garcia').iterate()} //(2)
==>0.039181089999999995

- James


On Mon, Oct 19, 2015 at 10:26 AM, Stephen Mallette <spmalle...@gmail.com>
wrote:

> Hello,
>
> The release artifacts can be found at this location:
>
> https://dist.apache.org/repos/dist/dev/incubator/tinkerpop/3.0.2-incubating/
>
> The source distribution is provided by:
> apache-tinkerpop-3.0.2-incubating-source-release.zip
>
> Two binary distributions are provided for user convenience:
> apache-gremlin-console-3.0.2-incubating-distribution.zip
> apache-gremlin-server-3.0.2-incubating-distribution.zip
>
> The online docs can be found here:
> http://tinkerpop.incubator.apache.org/docs/3.0.2-incubating/index.html
> (user docs)
>
>
> http://tinkerpop.incubator.apache.org/docs/3.0.2-incubating/upgrade.html#_tinkerpop_3_0_2
> (upgrade docs)
> http://tinkerpop.incubator.apache.org/javadocs/3.0.2-incubating/core/
> (core
> javadoc)
> http://tinkerpop.incubator.apache.org/javadocs/3.0.2-incubating/full/
> (full
> javadoc)
>
> The tag in Apache Git can be found here:
>
> https://git-wip-us.apache.org/repos/asf?p=incubator-tinkerpop.git;a=tag;h=8e9af13d6beb184a137067caa0445157351435ab
>
> The release notes are available here:
> *
> https://github.com/apache/incubator-tinkerpop/blob/3.0.2-incubating/CHANGELOG.asciidoc#tinkerpop-302-release-date-october-19-2015
> <
> https://github.com/apache/incubator-tinkerpop/blob/3.0.2-incubating/CHANGELOG.asciidoc#tinkerpop-302-release-date-october-19-2015
> >*
>
> The [VOTE] will be open for the next 72 hours --- closing Thursday (October
> 22, 2015) at 12:00 PM EST.
>
> My vote is +1.
>
> Thank you very much,
>
> Stephen
>



-- 
James Thornton, *http://electricspeed.com <http://electricspeed.com>*

Reply via email to