summaryrefslogtreecommitdiff
path: root/COPYING
Commit message (Collapse)AuthorAgeFilesLines
* copying: remove obsolete items from copying that dont exist anymoreCarsten Haitzler (Rasterman)2020-03-261-2/+0
|
* cxx: Add license to CXX bindings.Felipe Magno de Almeida2019-10-241-0/+1
| | | | | | | | | | | | | | | | | Summary: Like C#, it will also be Apache 2.0 Depends on D9414 Reviewers: vitor.sousa, woohyun, jpeg, lauromoura Reviewed By: lauromoura Subscribers: jpeg, cedric, #reviewers, #committers Tags: #efl Differential Revision: https://phab.enlightenment.org/D9418
* csharp: Add licensing information.Lauro Moura2019-10-241-0/+1
| | | | | | | | | | | | | | | | | | | | | | Summary: C# bindings will be lincensed under Apache Sofware License 2.0. This commit adds the license text to the licenses folder and a copyright notice to the binding files. Fixes T8039 Reviewers: woohyun, felipealmeida, vitor.sousa Reviewed By: felipealmeida Subscribers: cedric, #reviewers, #committers Tags: #efl Maniphest Tasks: T8039 Differential Revision: https://phab.enlightenment.org/D9414
* add missing license line for libefl to COPYINGCarsten Haitzler (Rasterman)2017-07-101-0/+1
| | | | | LGPL will do - we never declared a license so take the most restrictive one we have for this (LGPL).
* evas: integrate evas generic loaders into our single tree build system.Cedric BAIL2016-06-021-0/+2
|
* elementary: move all legacy files to their expected new location.Cedric BAIL2016-03-231-0/+1
|
* ecore_con: Moving dns.c and dns.h to static_libs.Srivardhan Hebbar2015-11-101-0/+1
| | | | | | | | | | | | Summary: Took the license file from https://github.com/wahern/dns The dns.c and dns.h are taken from here. Signed-off-by: Srivardhan Hebbar <sri.hebbar@samsung.com> Reviewers: cedric Differential Revision: https://phab.enlightenment.org/D3314
* specify ector licenses.ChunEon Park2015-07-311-0/+1
|
* copying: add license informationDaniel Kolesa2015-07-301-0/+2
|
* emile: initial introduction of Emile.Cedric BAIL2015-03-171-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The intent of Emile is to be the common layer for serialisation, compression and ciphering. It will expose the library we currently use internally to an easier use from the outside (like gcrypt and lz4). It should improve portability. Instead of pushing JSON, XML and what's not to Eina, I do think that they will fit better in Emile. As for the naming of Emile, you will need to be French and say : "Un quoi ?" "Un serializer !" Regarding why it is put there in the stack. Right now there is two users of compression (eet and terminology), two users of cipher library (eet and ecore_con) and a few handful of user for serialization (eina, eet, efreet, ecore_con, ...). So the choice was quite simple, it needed to be below Eet. Now it could have been on top of Eo or integrated into Eina. One of the use case I am thinking of, is to compress Eo object when a canvas get hidden/minized. For that it require Eo to use that library and it can't be a higher level object. And with current implementation of Eo it is perfectly possible to implement such idea. So not at Eo level. As for Eina, I am starting to think it is getting to much things in its namespace. I do believe that infact Eina_Simple_XML and Eina_File should after all have landed in their own library. That's why I am putting the current logic in a new library. It is going to expand, I want it to provide an few SAX like parser for JSON, Eet_Data and protobuf with also an API like Eet_Data to directly feed those value into a C structure without using a DOM at all. It would also be the right place to experiment and benchmark for a new Eet_Data format that could be more efficient to use. So at the end, and due to how I see things going and being used, I do think it is better of in its own library.
* compliance/licensing - clarify, fix formatting and point to tldrlegal.comCarsten Haitzler (Rasterman)2013-10-301-1/+1
|
* Rename edbus->eldbusLucas De Marchi2013-04-231-1/+1
| | | | | | | | | | | | | | git grep -l edbus2 | while read f; do sed -i 's/edbus2/eldbus/g' "$f"; done find . -name '*edbus2*' -exec rename edbus2 eldbus {} \; git grep -l "EDBUS" | while read f; do sed -i 's/EDBUS/ELDBUS/g' "$f"; done git grep -l "EDBus" | while read f; do sed -i 's/EDBus/Eldbus/g' "$f"; done git grep -l "edbus (v2)" | while read f; do sed -i 's/edbus (v2)/eldbus/g' "$f"; done git grep -l "Edbus" | while read f; do sed -i 's/Edbus/Eldbus/g' "$f"; done git grep -l "edbus" | while read f; do sed -i 's/edbus/eldbus/g' "$f"; done find . -name '*edbus*' -exec rename edbus eldbus {} \; find . -name '*EDBus*' -exec rename EDBus Eldbus {} \;
* add a COMPLIANCE file for convenience.Carsten Haitzler (Rasterman)2013-03-231-4/+14
|
* add missing licenses references, fix copyright, add link result notice.Gustavo Sverzut Barbieri2013-01-161-4/+16
| | | | SVN revision: 82911
* merge: missing some informations changes about ecoreVincent Torri2012-12-021-0/+1
| | | | SVN revision: 79996
* merge: add escape ecore, fix several bugsVincent Torri2012-12-021-1/+2
| | | | SVN revision: 79995
* merge: and now EvasVincent Torri2012-11-041-0/+1
| | | | | | | | | | | | | | | | | | | I've tested make -j 3 install and it works nicely I've tested expedite with software and opengl xlib, and it works. Not tested other engines, so please report any problems (engines or other) on the ML. TODO: examples and tests, I'll add them later ISSUE: Eina_Unicode size check. It indirectly depends on eina_config.h, which is created at the end of the configure script. So its size is always 0. I don't know how that size is used, so I can't do a lot, for now. SVN revision: 78895
* merge: add embryoVincent Torri2012-10-261-0/+2
| | | | | | | | | please check and report problems (not cosmetic ones) someone should update the efl.spec.in file, i don't know that stuff SVN revision: 78512
* cleaning up the base of efl tree moving files to subdirsCarsten Haitzler2012-09-271-6/+5
| | | | SVN revision: 77106
* merge: add COPYING files (BSD 2-clause, LGPL and GPL) and docVincent Torri2012-09-191-22/+4
| | | | | | | | doc though head.html should be improved :) SVN revision: 76843
* merge: add infra for evilVincent Torri2012-09-111-0/+25
SVN revision: 76463