Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #37043
| References | (1 earlier) <846C3A8E860C4344B567D813B63AA51D64BC9424@BL2PRD0610MB349.namprd06.prod.outlook.com> <CAMw+j7+CH2HDhOfxXCuAa339oDVG2rWpVHYERdbMBgtKbnM+Sg@mail.gmail.com> <7whames0hj.fsf@benfinney.id.au> <CAPTjJmo3LkwFgiUAAgGuHL+Sqw8C3VP8cfCQF-wfxKg41Ezwfw@mail.gmail.com> <50f9f602.2583440a.7194.311c@mx.google.com> |
|---|---|
| Date | 2013-01-19 13:00 +1100 |
| Subject | Re: Vote tallying... |
| From | Chris Angelico <rosuav@gmail.com> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.660.1358560851.2939.python-list@python.org> (permalink) |
On Sat, Jan 19, 2013 at 12:25 PM, Kushal Kumaran <kushal.kumaran+python@gmail.com> wrote: > Chris Angelico <rosuav@gmail.com> writes: > >> On Sat, Jan 19, 2013 at 7:24 AM, Ben Finney <ben+python@benfinney.id.au> wrote: >>> * MySQL's development has suffered under Sun, and become virtually >>> moribund under Oracle. They operate as a closed shop, occasionally >>> tossing GPL-licensed releases over the wall, with very little input >>> accepted from the community. >> >> I don't know whether it's a legit concern or pure FUD, but it's been >> suggested that since the MySQL license is GPL and not LGPL, any code >> that links against it is forced to be GPL too. I'm not sure how far >> that goes (eg if you're using it from Python, at what point does it >> stop being "code linked to GPL code" and start being a discrete >> system), and IANAL, but I prefer to work with systems with more >> freedom in their licensing. PostgreSQL is under a BSD-like license, so >> it can be used without issues. >> > > Oracle have a page about this: > http://www.mysql.com/about/legal/licensing/foss-exception/ Thanks, I was working from memory and wasn't sure. So yes, it's a fully legit issue, and it basically means you can't use MySQL with any proprietary code. So if I create a thin wrapper around libmysql, release that wrapper under the BSD 2-clause license (which is listed among the valid licenses - at least, I'm guessing that they mean the 2-clause), and then use that wrapper in a proprietary project, is that valid? This is getting ridiculously messy, and I'm definitely glad now not using MySQL at work. > As far as python goes, there are at least two pure-python > implementations of the mysql protocol available: > > - https://github.com/petehunt/PyMySQL (MIT license) That should be perfectly legal then. You're not linking against any GPL'd code, you're just connecting via a TCP socket to a GPL application. Really, I don't see what GPLing the client library achieves, other than creating a mess for people. ChrisA
Back to comp.lang.python | Previous | Next | Find similar | Unroll thread
Re: Vote tallying... Chris Angelico <rosuav@gmail.com> - 2013-01-19 13:00 +1100
csiph-web