I&#39;ll snip most of Rusty&#39;s responses, since I&#39;ve commented earlier in the thread.<br><br><div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
&nbsp;&nbsp;&nbsp; <a href="http://ccan-repo.org">ccan-repo.org</a> is the one I like most so far, but I&#39;d love to find someone<br>near Ohio who can chase down ccan.org...</blockquote><div><br>This is probably a good idea, OR we can try to get 
<a href="http://ccan.com">ccan.com</a> first, before we spook he <a href="http://ccan.org">ccan.org</a> owners...<br><br></div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
I agree: two licenses is already one too many.&nbsp;&nbsp;But there is existing code<br>which is GPL which would be useful (talloc springs to mind), and so GPL and a<br>weaker license makes sense.&nbsp;&nbsp;(BSD no advertising can be mixed with GPL no
<br>problems).</blockquote><div><br>As mentioned, one of the strongest network effects is that people start converting existing code to become  &quot;CCAN-compliant packages&quot; and in many cases may switch to CCAN as the primary distribution method, especially if you can create things like CCAN to debian auto-convertors and such.
<br><br>We should try to be as flexible as we can about licenses, within the scope of the legal problems created by license mixing. If we HAVE to dictate a standard license, so be it. But that should be an absolute last resort.
<br></div><br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">&gt; &gt; 5) Uploading, automated testing, etc.&nbsp;&nbsp;No idea here, plan to steal as
<br>&gt; &gt; much of CPAN as possible for this.<br>&gt;<br>&gt; I think we need to use something bzr or darcs where people can send<br>&gt; patches to the maintainer. These need to be tested before added for<br>&gt; inclusion into the repo. There need to be some requirements before a
<br>&gt; module goes in (like tests, license etc).<br><br>The repo itself will probably be bzr (since that&#39;s the one I haven&#39;t used<br>yet :), but it will need to be available through multiple means, and<br>similarly submission should be possible by &quot;upload a tarball&quot;.
<br><br>We have to balance requirements with ease of contributing.&nbsp;&nbsp;I&#39;d prefer to<br>accept anything but then grade them (automatically).&nbsp;&nbsp;I&#39;m hoping that Adam<br>Kennedy will weigh in here...</blockquote><div><br>
I&#39;ve mentioned that tarball should be the primary unit of code.<br><br>I&#39;ll add to this a cultural point. One of the most noted things about the CPAN is that it has both enormous amounts of useful code, but just as enormous amounts of crap code in it.
<br><br>The reason this is the case is that we let people upload (almost) literally anything they want.<br><br>The upload concept is that each author gets a &quot;home directory&quot; within the master CPAN filesystem tree, into which they can put anything they like.
<br><br>Then the indexer will look at the stuff they upload, and try to work out if any of it looks like a &quot;package&quot;, in which case it will open it up, read the metadata, index it and so on.<br><br>It is very important that we keep the barrier to entry as low as we can, because we are dealing primarily with volunteers and if you put barriers in the way they simply won&#39;t upload.
<br><br>And a lot of modules that started off as bad code in the initial releases gets a lot better over time, particularly as it gets taken over by other authors down the track.<br><br>CPAN doesn&#39;t even check that uploaded code has a license. We react to observations of illegal or unlicensed code after the event.
<br><br>People who want &quot;quality control&quot; generally only see the modern CPAN, and think of the problem in terms of needing to somehow &quot;protect&quot; the repository. What they generally miss, and the reason why we admins resist these efforts, is that we need code from people far more than they need us, otherwise the CPAN simply wouldn&#39;t exist in it&#39;s current form.
<br><br>Now, if I had the option to apply any form of quality control to CPAN, personally I would check ONLY that any upload that we are going to treat as a &quot;CCAN Package&quot; and provide in the index has a license of any sort that we recognize and know we can distribute, because there are most likely legal issues for us providing a distribution network for this code.
<br><br></div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">&gt; &gt; 7) Automatic downloading, testing, checking for updates, and dependency
<br>&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;tracking.&nbsp;&nbsp;This would be nice, particularly handling namespacization<br>&gt; &gt; and detecting local mods.<br>&gt;<br>&gt; Again bzr of darcs can automatically take care of the updating,<br>&gt; dependency tracking and detecting local mods.
<br><br>I&#39;m not so sure.&nbsp;&nbsp;I don&#39;t think most people are going to grab the entire repo.<br>They want the hash table routine, for example (and, by implication, anything<br>else in ccan that needs).&nbsp;&nbsp;I think there are several use cases:
<br><br>1) Junkcode-style:<br>&nbsp;&nbsp;&nbsp;&nbsp;grab a module, copy it into my source, never look back.<br>2) New project:<br>&nbsp;&nbsp;&nbsp;&nbsp;grab a module, drop it under ccan/&lt;modulename&gt;.&nbsp;&nbsp;May update later.<br>3) Large existing project:<br>
&nbsp;&nbsp;&nbsp;&nbsp;grab a module, drop it under ccan/&lt;modulename&gt;, namespacize.<br>&nbsp;&nbsp;&nbsp;&nbsp;May update later.<br><br>While it&#39;d be nice to ship helpers like &quot;ccan-grab&quot; and &quot;ccan-update&quot;, I think<br>that &quot;download a tarball&quot; is going to be the most universal method; and we
<br>can generate tarballs automatically containing all the dependencies.</blockquote></div><br>&quot;minicpan&quot; is one of our most popular tools.<br><br>It derives a partial mirror from a full CPAN mirror that contains every packaged with an entry in the index. That is, it keeps the most current tarball for any package that you might want to install.
<br><br>TONS of Perl developers keep minicpan repositories (currently at about 750meg) on their laptops for hacking on planes and so on.<br><br>It&#39;s also very common to burn them onto a CD or copy onto a 1gig flash drive, so that full CPAN installations can be done in highly secure environments with firewalled or completely isolated networks.
<br><br>