Re: [Lucene.Net] Re: Signing Binary Releases

2011-02-21 Thread Ayende Rahien
Okay, cool On Mon, Feb 21, 2011 at 11:27 AM, Robert Jordan robe...@gmx.net wrote: On 21.02.2011 05:55, Stefan Bodewig wrote: On 2011-02-20, Robert Jordan wrote: On 20.02.2011 07:49, Stefan Bodewig wrote: If you talk about strong naming assemblies then I don't have any experience how a

[Lucene.Net] Mailing List Subject Line Prefix

2011-02-21 Thread Troy Howard
All, The mailing lists have been updated to include a subject line prefix of [Lucene.Net]. Please update any mail filters you may have that relate. Thanks, Troy

[Lucene.Net] Re: Signing Binary Releases

2011-02-21 Thread Troy Howard
All, It seems there's some confusion about the term 'signed release' from my question. I'm specifically referring to Apache's rules about signing releases using OpenPGP. This is the part I need help with. Creating a Strong Named Assembly (SNA) using a Strong Name Key (SNK) file is easy and is

[Lucene.Net] [jira] Updated: (LUCENENET-172) This patch fixes the unexceptional exceptions ecountered in FastCharStream and SupportClass

2011-02-21 Thread Troy Howard (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-172?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Troy Howard updated LUCENENET-172: -- Due Date: 28/Mar/11 Fix Version/s: (was: Lucene.Net 3.x)

[Lucene.Net] [jira] Created: (LUCENENET-402) Update website to reflect current status and information

2011-02-21 Thread Troy Howard (JIRA)
Update website to reflect current status and information Key: LUCENENET-402 URL: https://issues.apache.org/jira/browse/LUCENENET-402 Project: Lucene.Net Issue Type: Sub-task

[Lucene.Net] [jira] Created: (LUCENENET-403) Improve site layout and design

2011-02-21 Thread Troy Howard (JIRA)
Improve site layout and design -- Key: LUCENENET-403 URL: https://issues.apache.org/jira/browse/LUCENENET-403 Project: Lucene.Net Issue Type: Sub-task Components: Project Infrastructure

[Lucene.Net] [jira] Created: (LUCENENET-404) Improve brand logo design

2011-02-21 Thread Troy Howard (JIRA)
Improve brand logo design - Key: LUCENENET-404 URL: https://issues.apache.org/jira/browse/LUCENENET-404 Project: Lucene.Net Issue Type: Sub-task Components: Project Infrastructure Reporter: Troy

[Lucene.Net] [jira] Commented: (LUCENENET-399) Port changes from Java Lucene 2.9.3 and 2.9.4 releases

2011-02-21 Thread Digy (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-399?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12997538#comment-12997538 ] Digy commented on LUCENENET-399: 2.9.3

[Lucene.Net] [jira] Updated: (LUCENENET-405) Port: contrib/Analysis.NGram

2011-02-21 Thread Digy (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-405?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Digy updated LUCENENET-405: --- Attachment: NGram.patch Port: contrib/Analysis.NGram

[Lucene.Net] [jira] Created: (LUCENENET-405) Port: contrib/Analysis.NGram

2011-02-21 Thread Digy (JIRA)
Port: contrib/Analysis.NGram Key: LUCENENET-405 URL: https://issues.apache.org/jira/browse/LUCENENET-405 Project: Lucene.Net Issue Type: New Feature Affects Versions: Lucene.Net 2.9.2, Lucene.Net 2.9.4

RE: [Lucene.Net] Creating a Strong Named Assembly as part of our release

2011-02-21 Thread Digy
After we have two files, one contaning public+private key(Lucene.Net.snk) {sn -k Lucene.Net.snk} and the other containing just public key(Lucene.Net.Public.snk) {sn -p Lucene.Net.snk Lucene.Net.Public.snk} we can share Lucene.Net.snk via private

Re: [Lucene.Net] Creating a Strong Named Assembly as part of our release

2011-02-21 Thread Troy Howard
DIGY - Extracting the public key out is generally only used for delay signing. I don't think delay signing would help our situation, because it means an end user still needs our private key to make a complete signed build. As a side note, I just realized that the multiple-signers scenario I

Re: [Lucene.Net] Creating a Strong Named Assembly as part of our release

2011-02-21 Thread Stefan Bodewig
On 2011-02-21, Troy Howard wrote: If we keep the key private, how do we then manage it? Is there a place to store these kinds of resources, where only the committers have access? If this is the route you wanted to go it would be easy to set up an svn area that only committers had read access

Re: [Lucene.Net] Re: Luke.Net

2011-02-21 Thread Stefan Bodewig
On 2011-02-21, Troy Howard wrote: As a general question about process around accepting software contributions, one thing I'm a little confused about: How does accepting this contribution differ from a normal contribution? Not much. By that I mean, suppose a developer contributed a

Re: [Lucene.Net] Creating a Strong Named Assembly as part of our release

2011-02-21 Thread Ayende Rahien
Please avoid doing that, it would result in two assemblies, built against the same version of lucene.net being unable to operate, since each uses a different snk. See log4net 1.0.9 and 1.0.10 fiasco for how much problems this can cause. On Tue, Feb 22, 2011 at 7:09 AM, Stefan Bodewig