I won't divulge the name of the company, but a year or two ago, we purchased a license for a software program written in perl to have access to their "source" code (the code they gave you without a license was severely obfuscated, and it was LONG).

What we found was that, in order to avoid having to redistribute modules with their code, they had simply taken the relevant parts they needed from perl modules and simply included them, verbatim into their code. Now, I'm not sure what the licenses say about that, but I'm pretty sure that that particular practice is dead wrong.

As for this specific case, IANAL (ooo...), but I would think that as long as you're not selling the actual interpreter and modules, then you've got nothing to fear. You're allowed to sell perl code. Package the two parts separately, one you pay for (yours) and one you don't (everyone else's).

But just remember, once they have your hands on the perl code, it's kind of hard to stop them from deciphering it, especially if you're using modules which must be called by their names. If they really want to keep managed control of their source, they need to use a compiled language. In my earlier example, we actually did a fair amount of hacking on their code using their munged stuff, simply by tracking which vars went where.


In reply to Re: ethical software development by Hrunting
in thread ethical software development by dshahin

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.