Cobenian / expcap

Elixir PCAP library
Apache License 2.0
30 stars 13 forks source link

Missing LICENSE #4

Closed mickel8 closed 3 years ago

mickel8 commented 3 years ago

According to our mails, could you please add LICENSE file? :wink:

brweber2 commented 3 years ago

Should be there now. It is also in mix.exs.

On Jun 23, 2021, at 11:17 AM, Michał Śledź @.***> wrote:

According to our mails, could you please add LICENSE file? 😉

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/Cobenian/expcap/issues/4, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAAE3P2B2I3AJYIBNCIQIA3TUH3IHANCNFSM47GAWQEA.

mickel8 commented 3 years ago

Thanks and sorry for the late response. Unfortunately you are missing some details in LICENSE - date and copyright owner.

According to

APPENDIX: How to apply the Apache License to your work.

      To apply the Apache License to your work, attach the following
      boilerplate notice, with the fields enclosed by brackets "[]"
      replaced with your own identifying information. (Don't include
      the brackets!)  The text should be enclosed in the appropriate
      comment syntax for the file format. We also recommend that a
      file or class name and description of purpose be included on the
      same "printed page" as the copyright notice for easier
      identification within third-party archives.

   Copyright [yyyy] [name of copyright owner]

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.

you should probably do something like

   Copyright 2021 Bryan Weber

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
brweber2 commented 3 years ago

Done.

On Jul 14, 2021, at 7:10 AM, Michał Śledź @.***> wrote:

Thanks and sorry for the late response. Unfortunately you are missing some details in LICENSE - date and copyright owner.

According to

APPENDIX: How to apply the Apache License to your work.

  To apply the Apache License to your work, attach the following
  boilerplate notice, with the fields enclosed by brackets "[]"
  replaced with your own identifying information. (Don't include
  the brackets!)  The text should be enclosed in the appropriate
  comment syntax for the file format. We also recommend that a
  file or class name and description of purpose be included on the
  same "printed page" as the copyright notice for easier
  identification within third-party archives.

Copyright [yyyy] [name of copyright owner]

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. you should probably do something like

Copyright 2021 Bryan Weber

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

  http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. — You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/Cobenian/expcap/issues/4#issuecomment-879803290, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAAE3PY7UEHEZ7WIUCRC3ETTXVWEBANCNFSM47GAWQEA.

mickel8 commented 3 years ago

Thanks!