You are viewing a plain text version of this content. The canonical link for it is here.
Posted to general@incubator.apache.org by "Ian Holsman (JIRA)" <ji...@apache.org> on 2008/06/23 12:20:45 UTC

[jira] Created: (INCUBATOR-77) [IP-GRANT] Local Lucene/Solr Code Dump

[IP-GRANT] Local Lucene/Solr Code Dump
--------------------------------------

                 Key: INCUBATOR-77
                 URL: https://issues.apache.org/jira/browse/INCUBATOR-77
             Project: Incubator
          Issue Type: New Feature
         Environment: lucene.apache.org
            Reporter: Ian Holsman


$ rpm -qf $(which md5sum)
coreutils-5.97-12.1.el5


$ md5sum locallucene.tgz
e470f7dfd963994eebb6c5002f810549  locallucene.tgz




-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: general-unsubscribe@incubator.apache.org
For additional commands, e-mail: general-help@incubator.apache.org


[jira] Commented: (INCUBATOR-77) [IP-GRANT] Local Lucene/Solr Code Dump

Posted by "Ryan McKinley (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/INCUBATOR-77?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12631893#action_12631893 ] 

Ryan McKinley commented on INCUBATOR-77:
----------------------------------------

Unless someone else is working on this, i'll take over getting it ready and integrated.

The key tasks are:
 * remove LGPL libraries: geoapi-nogenerics-2.1-M2.jar / gt2-referencing-2.3.1.jar 
    - Currently, this is just used for a DistanceUtils.orthodromicDistance().  Since a proper orthodromicDistance calculation is rather involved, I will replace this with an earth as sphere approximation and hope that down the line someone will beef it up.  

* Remove the LGPL file: LonLatTrig  -- the functions in here are relatively simple trig stuff:
{code:java}
   public static final double getDistanceKm(double lon1, double lat1, double lon2, double lat2) {
   public static final double getDistanceMi(double lon1, double lat1, double lon2, double lat2) {
   public static final Point2D getPointOnRadialKm(double lon, double lat, double km, double radial) {
   public static final Point2D getPointOnRadialMi(double lon, double lat, double mi, double radial) {
   public static final Rectangle2D getRadiusBoundsKm(double lon, double lat, double km) {
   public static final Rectangle2D getRadiusBoundsMi(double lon, double lat, double mi) {
{code}


* For now, I will leave out the localcinema demo since it links to gwt

- - - -

Do we refactor the package names?  Currently, the code lives in:
 com.pjaol.search.*
 com.mapquest.localsolr;

If so, what should the target packages be?  Should this take "geo" just like spelling takes "spell"
 org.apache.lucene.geo
and
 org.apache.solr.geo

perhaps "gis", "geosearch" -- "local" does not seem quite right as it could also be "global"

ryan




> [IP-GRANT] Local Lucene/Solr Code Dump
> --------------------------------------
>
>                 Key: INCUBATOR-77
>                 URL: https://issues.apache.org/jira/browse/INCUBATOR-77
>             Project: Incubator
>          Issue Type: New Feature
>         Environment: lucene.apache.org
>            Reporter: Ian Holsman
>         Attachments: locallucene.tgz.asc
>
>
> $ rpm -qf $(which md5sum)
> coreutils-5.97-12.1.el5
> $ md5sum locallucene.tgz
> e470f7dfd963994eebb6c5002f810549  locallucene.tgz

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: general-unsubscribe@incubator.apache.org
For additional commands, e-mail: general-help@incubator.apache.org


[jira] Commented: (INCUBATOR-77) [IP-GRANT] Local Lucene/Solr Code Dump

Posted by "Grant Ingersoll (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/INCUBATOR-77?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12628089#action_12628089 ] 

Grant Ingersoll commented on INCUBATOR-77:
------------------------------------------

There also seems to be dependencies on other LGPL code.  In the download, I see:
./contrib/demo/localcinema/libs/com/mapitz/gwt/googlemaps_gwt/2_2_1/googlemaps_gwt-2_2_1.jar
./lib/common/geoapi-nogenerics-2.1-M2.jar
./lib/common/gt2-referencing-2.3.1.jar
./lib/common/jsr108-0.01.jar
./lib/common/junit-4.1.jar
./lib/lucene/lucene-core-2.2.0.jar
./lib/solr/apache-solr-1.3-dev.jar
./lib/solr/apache-solr-common-1.3-dev.jar
./target/locallucene.jar
./target/mqspatialbase.jar


The geo tools stuff is LGPL and the Geo API stuff appears to be a new license by the Open Geospatial Consortuim.  Both of these libraries usages seems to be limited to one or two files.

The jsr108 stuff seems like it could be removed, as it doesn't appear to be used (and the JSR seems to be dead: http://jcp.org/en/jsr/detail?id=108


> [IP-GRANT] Local Lucene/Solr Code Dump
> --------------------------------------
>
>                 Key: INCUBATOR-77
>                 URL: https://issues.apache.org/jira/browse/INCUBATOR-77
>             Project: Incubator
>          Issue Type: New Feature
>         Environment: lucene.apache.org
>            Reporter: Ian Holsman
>         Attachments: locallucene.tgz.asc
>
>
> $ rpm -qf $(which md5sum)
> coreutils-5.97-12.1.el5
> $ md5sum locallucene.tgz
> e470f7dfd963994eebb6c5002f810549  locallucene.tgz

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: general-unsubscribe@incubator.apache.org
For additional commands, e-mail: general-help@incubator.apache.org


[jira] Commented: (INCUBATOR-77) [IP-GRANT] Local Lucene/Solr Code Dump

Posted by "Grant Ingersoll (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/INCUBATOR-77?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12608247#action_12608247 ] 

Grant Ingersoll commented on INCUBATOR-77:
------------------------------------------

OK, I'm starting to dig into this.  Can you put in the Apache License header?  It looks like you have most of it, other than that the copyright is assigned to PJ.

Looks like we are in OK shape on http://incubator.apache.org/ip-clearance/ip-clearance-template.html but you may want to double check the various pieces that I have to go through.

> [IP-GRANT] Local Lucene/Solr Code Dump
> --------------------------------------
>
>                 Key: INCUBATOR-77
>                 URL: https://issues.apache.org/jira/browse/INCUBATOR-77
>             Project: Incubator
>          Issue Type: New Feature
>         Environment: lucene.apache.org
>            Reporter: Ian Holsman
>         Attachments: locallucene.tgz.asc
>
>
> $ rpm -qf $(which md5sum)
> coreutils-5.97-12.1.el5
> $ md5sum locallucene.tgz
> e470f7dfd963994eebb6c5002f810549  locallucene.tgz

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: general-unsubscribe@incubator.apache.org
For additional commands, e-mail: general-help@incubator.apache.org


[jira] Updated: (INCUBATOR-77) [IP-GRANT] Local Lucene/Solr Code Dump

Posted by "Ian Holsman (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/INCUBATOR-77?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Ian Holsman updated INCUBATOR-77:
---------------------------------

    Attachment: locallucene.tgz.asc

code is 11M and is located on 
http://people.apache.org/~ianh/locallucene.tgz

> [IP-GRANT] Local Lucene/Solr Code Dump
> --------------------------------------
>
>                 Key: INCUBATOR-77
>                 URL: https://issues.apache.org/jira/browse/INCUBATOR-77
>             Project: Incubator
>          Issue Type: New Feature
>         Environment: lucene.apache.org
>            Reporter: Ian Holsman
>         Attachments: locallucene.tgz.asc
>
>
> $ rpm -qf $(which md5sum)
> coreutils-5.97-12.1.el5
> $ md5sum locallucene.tgz
> e470f7dfd963994eebb6c5002f810549  locallucene.tgz

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: general-unsubscribe@incubator.apache.org
For additional commands, e-mail: general-help@incubator.apache.org


[jira] Commented: (INCUBATOR-77) [IP-GRANT] Local Lucene/Solr Code Dump

Posted by "Ian Holsman (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/INCUBATOR-77?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12607176#action_12607176 ] 

Ian Holsman commented on INCUBATOR-77:
--------------------------------------

correction
md5 is
$ md5sum  locallucene.tgz
ab93e18dd2231ff568671111cd8a3bfc  locallucene.tgz

not the original.

code is here: http://people.apache.org/~ianh/locallucene.tgz with http://people.apache.org/~ianh/locallucene.tgz.asc GPG signature

> [IP-GRANT] Local Lucene/Solr Code Dump
> --------------------------------------
>
>                 Key: INCUBATOR-77
>                 URL: https://issues.apache.org/jira/browse/INCUBATOR-77
>             Project: Incubator
>          Issue Type: New Feature
>         Environment: lucene.apache.org
>            Reporter: Ian Holsman
>         Attachments: locallucene.tgz.asc
>
>
> $ rpm -qf $(which md5sum)
> coreutils-5.97-12.1.el5
> $ md5sum locallucene.tgz
> e470f7dfd963994eebb6c5002f810549  locallucene.tgz

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: general-unsubscribe@incubator.apache.org
For additional commands, e-mail: general-help@incubator.apache.org


[jira] Commented: (INCUBATOR-77) [IP-GRANT] Local Lucene/Solr Code Dump

Posted by "Doug Cutting (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/INCUBATOR-77?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12617537#action_12617537 ] 

Doug Cutting commented on INCUBATOR-77:
---------------------------------------

Strictly speaking, licensing doesn't need to be 100% correct until the code is released, but it would be preferable to not commit the LGPL'd file in the first place, since otherwise you have to monitor it carefully to make sure that it isn't included in a release.  So, to my thinking, it's up to the PMC whether it wants to commit this now and remove the LGPL'd bit later, prior to any release, or wait until it's removed before committing it.


> [IP-GRANT] Local Lucene/Solr Code Dump
> --------------------------------------
>
>                 Key: INCUBATOR-77
>                 URL: https://issues.apache.org/jira/browse/INCUBATOR-77
>             Project: Incubator
>          Issue Type: New Feature
>         Environment: lucene.apache.org
>            Reporter: Ian Holsman
>         Attachments: locallucene.tgz.asc
>
>
> $ rpm -qf $(which md5sum)
> coreutils-5.97-12.1.el5
> $ md5sum locallucene.tgz
> e470f7dfd963994eebb6c5002f810549  locallucene.tgz

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: general-unsubscribe@incubator.apache.org
For additional commands, e-mail: general-help@incubator.apache.org


[jira] Commented: (INCUBATOR-77) [IP-GRANT] Local Lucene/Solr Code Dump

Posted by "Grant Ingersoll (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/INCUBATOR-77?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12617415#action_12617415 ] 

Grant Ingersoll commented on INCUBATOR-77:
------------------------------------------

{quote}
my understanding is that this code is being replaced with the code in the mqspatialbase directory, so will not be there in the medium term.
{quote}

It's not clear to me when that needs to take place by.  Is it before release of the contrib or is it before acceptance?  http://incubator.apache.org/ip-clearance/ip-clearance-template.html says to:
{quote}
Check and make sure that for all items included with the distribution that is not under the Apache license, we have the right to combine with Apache-licensed code and redistribute.
{quote}

Right now, I don't think I can answer that in the affirmative.  So, I"m not sure what to do at this point.

> [IP-GRANT] Local Lucene/Solr Code Dump
> --------------------------------------
>
>                 Key: INCUBATOR-77
>                 URL: https://issues.apache.org/jira/browse/INCUBATOR-77
>             Project: Incubator
>          Issue Type: New Feature
>         Environment: lucene.apache.org
>            Reporter: Ian Holsman
>         Attachments: locallucene.tgz.asc
>
>
> $ rpm -qf $(which md5sum)
> coreutils-5.97-12.1.el5
> $ md5sum locallucene.tgz
> e470f7dfd963994eebb6c5002f810549  locallucene.tgz

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: general-unsubscribe@incubator.apache.org
For additional commands, e-mail: general-help@incubator.apache.org


[jira] Commented: (INCUBATOR-77) [IP-GRANT] Local Lucene/Solr Code Dump

Posted by "Grant Ingersoll (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/INCUBATOR-77?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12631911#action_12631911 ] 

Grant Ingersoll commented on INCUBATOR-77:
------------------------------------------

Note, I created issues in both Lucene and Solr to handle this now that it is in Lucene.  I think it makes more sense to track from there.

> [IP-GRANT] Local Lucene/Solr Code Dump
> --------------------------------------
>
>                 Key: INCUBATOR-77
>                 URL: https://issues.apache.org/jira/browse/INCUBATOR-77
>             Project: Incubator
>          Issue Type: New Feature
>         Environment: lucene.apache.org
>            Reporter: Ian Holsman
>         Attachments: locallucene.tgz.asc
>
>
> $ rpm -qf $(which md5sum)
> coreutils-5.97-12.1.el5
> $ md5sum locallucene.tgz
> e470f7dfd963994eebb6c5002f810549  locallucene.tgz

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: general-unsubscribe@incubator.apache.org
For additional commands, e-mail: general-help@incubator.apache.org


[jira] Commented: (INCUBATOR-77) [IP-GRANT] Local Lucene/Solr Code Dump

Posted by "Grant Ingersoll (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/INCUBATOR-77?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12613032#action_12613032 ] 

Grant Ingersoll commented on INCUBATOR-77:
------------------------------------------

Ping.  Any progress on the headers?

> [IP-GRANT] Local Lucene/Solr Code Dump
> --------------------------------------
>
>                 Key: INCUBATOR-77
>                 URL: https://issues.apache.org/jira/browse/INCUBATOR-77
>             Project: Incubator
>          Issue Type: New Feature
>         Environment: lucene.apache.org
>            Reporter: Ian Holsman
>         Attachments: locallucene.tgz.asc
>
>
> $ rpm -qf $(which md5sum)
> coreutils-5.97-12.1.el5
> $ md5sum locallucene.tgz
> e470f7dfd963994eebb6c5002f810549  locallucene.tgz

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: general-unsubscribe@incubator.apache.org
For additional commands, e-mail: general-help@incubator.apache.org


[jira] Commented: (INCUBATOR-77) [IP-GRANT] Local Lucene/Solr Code Dump

Posted by "Grant Ingersoll (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/INCUBATOR-77?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12619203#action_12619203 ] 

Grant Ingersoll commented on INCUBATOR-77:
------------------------------------------

That's fine by me.  The one thing I would ask is maybe a status on where it's currently at.  Is this something that is almost fixed or nowhere near?

> [IP-GRANT] Local Lucene/Solr Code Dump
> --------------------------------------
>
>                 Key: INCUBATOR-77
>                 URL: https://issues.apache.org/jira/browse/INCUBATOR-77
>             Project: Incubator
>          Issue Type: New Feature
>         Environment: lucene.apache.org
>            Reporter: Ian Holsman
>         Attachments: locallucene.tgz.asc
>
>
> $ rpm -qf $(which md5sum)
> coreutils-5.97-12.1.el5
> $ md5sum locallucene.tgz
> e470f7dfd963994eebb6c5002f810549  locallucene.tgz

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: general-unsubscribe@incubator.apache.org
For additional commands, e-mail: general-help@incubator.apache.org


[jira] Commented: (INCUBATOR-77) [IP-GRANT] Local Lucene/Solr Code Dump

Posted by "Ryan McKinley (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/INCUBATOR-77?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12631925#action_12631925 ] 

Ryan McKinley commented on INCUBATOR-77:
----------------------------------------

For reference, here are the issues:
  https://issues.apache.org/jira/browse/LUCENE-1387
  https://issues.apache.org/jira/browse/SOLR-773
  
I'll move discussion there...

Should this issue be closed since the IP-GRANT is complete (if I understand correctly)?

> [IP-GRANT] Local Lucene/Solr Code Dump
> --------------------------------------
>
>                 Key: INCUBATOR-77
>                 URL: https://issues.apache.org/jira/browse/INCUBATOR-77
>             Project: Incubator
>          Issue Type: New Feature
>         Environment: lucene.apache.org
>            Reporter: Ian Holsman
>         Attachments: locallucene.tgz.asc
>
>
> $ rpm -qf $(which md5sum)
> coreutils-5.97-12.1.el5
> $ md5sum locallucene.tgz
> e470f7dfd963994eebb6c5002f810549  locallucene.tgz

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: general-unsubscribe@incubator.apache.org
For additional commands, e-mail: general-help@incubator.apache.org


[jira] Commented: (INCUBATOR-77) [IP-GRANT] Local Lucene/Solr Code Dump

Posted by "Ian Holsman (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/INCUBATOR-77?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12615846#action_12615846 ] 

Ian Holsman commented on INCUBATOR-77:
--------------------------------------

http://people.apache.org/~ianh/locallucene-ASF.tgz
GPG sig: http://people.apache.org/~ianh/locallucene.tgz.sig

$ md5 locallucene-ASF.tgz
MD5 (locallucene-ASF.tgz) = 0eaf4dfab591e8fba997d10916049e81


headers for 99% were converted to standard ASL header.
1 file was not modified LonLatTrig.java in com.traversetechnologies.fulcrum.math
as it is LGPL

my understanding is that this code is being replaced with the code in the mqspatialbase directory, so will not be there in the medium term.

> [IP-GRANT] Local Lucene/Solr Code Dump
> --------------------------------------
>
>                 Key: INCUBATOR-77
>                 URL: https://issues.apache.org/jira/browse/INCUBATOR-77
>             Project: Incubator
>          Issue Type: New Feature
>         Environment: lucene.apache.org
>            Reporter: Ian Holsman
>         Attachments: locallucene.tgz.asc
>
>
> $ rpm -qf $(which md5sum)
> coreutils-5.97-12.1.el5
> $ md5sum locallucene.tgz
> e470f7dfd963994eebb6c5002f810549  locallucene.tgz

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: general-unsubscribe@incubator.apache.org
For additional commands, e-mail: general-help@incubator.apache.org