Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The artistic license talks about modified and standard releases of a package, but nothing is said about chunks of code. Of course nobody here is a lawyer, but can you find something reasonable in the license allowing to take chunks of code from an AL project and putting the code verbatim into a BSD licensed project ?

share|improve this question
1  
current view on meta seems to be that all legal questions should be closed. This is most def a legal question. – bmargulies Dec 30 '09 at 16:19
1  
I disagree. We do know that the answer to a software legal question should be "go ask a lawyer", but we also know that 1) most programmers don't want to shell out a bomb of money to 2) ask a lawyer specialized in software (assuming he can find him) 3) if he can perform a technical action the lawyer has no idea of, and 4) to grant you nothing but his opinion. In any trial, one laywer is right, the other is wrong, because the judge decides. So the opinion of a lawyer is close to irrelevant, and the opinion of a programmer is most likely to have a bit of real world experience on the argument. – Stefano Borini Dec 30 '09 at 16:23
Of course, I do understand that every opinion is said is just that, an opinion, and no one should be accountable for his opinion if it turns out to be wrong and misdirecting. Responsibility is always individual. – Stefano Borini Dec 30 '09 at 16:38
The latest meta post on legal questions mentions GPL type of questions as being legit: meta.stackoverflow.com/questions/19886/…, I'm guessing this is one of those questions. – dsolimano Dec 30 '09 at 18:31

1 Answer

up vote 2 down vote accepted

I think there are probably two things which would allow you to do this.

The first is that Wikipedia classifies AL as non-copyleft, which leads me to believe that you can integrate the source into a BSD license, as long as you follow the other provisions of the license.

It looks like what you want to do falls under 4b in the AL:

(4) You may Distribute your Modified Version as Source (either gratis or for a Distributor Fee, and with or without a Compiled form of the Modified Version) provided that you clearly document how it differs from the Standard Version, including, but not limited to, documenting any non-standard features, executables, or modules, and provided that you do at least ONE of the following:

(b) ensure that installation of your Modified Version does not prevent the user installing or running the Standard Version. In addition, the Modified Version must bear a name that is different from the name of the Standard Version.

So I think as long as you don't call it by its original name, and it doesn't interfere with the functioning of the AL-licensed package, you should be able to lift the code and place it in a BSD project, as AL is not copyleft. I think, however, that the code would still remain under the AL, so you would now have a part BSD, part AL project. Just a best-effort guess though.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.