From 912e06714fc276c15b4d5d1b42bd2b11edb8deff Mon Sep 17 00:00:00 2001 From: Hisham Muhammad Date: Tue, 26 Jul 2022 12:40:59 -0300 Subject: [PATCH] keplerproject -> lunarmodules --- LICENSE | 4 ++-- README.md | 8 ++++---- docs/examples.html | 8 ++++---- docs/index.html | 10 +++++----- docs/license.html | 12 ++++++------ docs/manual.html | 8 ++++---- luafilesystem-scm-1.rockspec | 2 +- src/lfs.c | 23 ++++------------------- src/lfs.h | 7 +++++-- 9 files changed, 35 insertions(+), 47 deletions(-) diff --git a/LICENSE b/LICENSE index 7fdfbf1..07ccdb1 100644 --- a/LICENSE +++ b/LICENSE @@ -1,5 +1,5 @@ -Copyright © 2003-2014 Kepler Project. -Copyright © 2014-2022 The LuaFileSystem authors. +Copyright © 2003-2010 Kepler Project. +Copyright © 2010-2022 The LuaFileSystem authors. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation diff --git a/README.md b/README.md index c791909..7e008b8 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ [![License](http://img.shields.io/badge/Licence-MIT-brightgreen.svg)](LICENSE) -[![Build Status](https://github.com/keplerproject/luafilesystem/actions/workflows/ci.yml/badge.svg)](https://github.com/keplerproject/luafilesystem/actions) +[![Build Status](https://github.com/lunarmodules/luafilesystem/actions/workflows/ci.yml/badge.svg)](https://github.com/lunarmodules/luafilesystem/actions) [![Build status](https://ci.appveyor.com/api/projects/status/y04s4ms7u16trw8e?svg=true)](https://ci.appveyor.com/project/ignacio/luafilesystem) -[![Coverage Status](https://coveralls.io/repos/keplerproject/luafilesystem/badge.png)](https://coveralls.io/r/keplerproject/luafilesystem) +[![Coverage Status](https://coveralls.io/repos/lunarmodules/luafilesystem/badge.png)](https://coveralls.io/r/lunarmodules/luafilesystem) # LuaFileSystem - File System Library for Lua -https://keplerproject.github.io/luafilesystem +https://lunarmodules.github.io/luafilesystem # Description @@ -23,4 +23,4 @@ luarocks install luafilesystem # Documentation -Please check the at `docs/` for more information, also available at the [project website](https://keplerproject.github.io/luafilesystem). +Please check the at `docs/` for more information, also available at the [project website](https://lunarmodules.github.io/luafilesystem). diff --git a/docs/examples.html b/docs/examples.html index 68756c8..a41bd2a 100644 --- a/docs/examples.html +++ b/docs/examples.html @@ -13,7 +13,7 @@
@@ -44,10 +44,10 @@

LuaFileSystem

  • Examples
  • -
  • Project +
  • Project
  • License
  • diff --git a/docs/index.html b/docs/index.html index b4f056e..34e0730 100644 --- a/docs/index.html +++ b/docs/index.html @@ -13,7 +13,7 @@
    @@ -44,10 +44,10 @@

    LuaFileSystem

  • Examples
  • -
  • Project +
  • Project
  • License
  • @@ -81,7 +81,7 @@

    Download

    $ luarocks install luafilesystem -

    Its source can be found at its GitHub page.

    +

    Its source can be found at its GitHub page.

    History

    diff --git a/docs/license.html b/docs/license.html index bb66e48..78704b4 100644 --- a/docs/license.html +++ b/docs/license.html @@ -13,7 +13,7 @@
    @@ -44,10 +44,10 @@

    LuaFileSystem

  • Examples
  • -
  • Project +
  • Project
  • License
  • @@ -71,8 +71,8 @@

    License

    The implementation is not derived from any other licensed software.


    -

    Copyright © 2003 - 2014 Kepler Project.

    -

    Copyright © 2014 - 2022 The LuaFileSystem authors.

    +

    Copyright © 2003 - 2010 Kepler Project.

    +

    Copyright © 2010 - 2022 The LuaFileSystem authors.

    Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation diff --git a/docs/manual.html b/docs/manual.html index 1feb86a..0f84797 100644 --- a/docs/manual.html +++ b/docs/manual.html @@ -13,7 +13,7 @@

    @@ -44,10 +44,10 @@

    LuaFileSystem

  • Examples
  • -
  • Project +
  • Project
  • License
  • diff --git a/luafilesystem-scm-1.rockspec b/luafilesystem-scm-1.rockspec index 8a78605..19b6225 100644 --- a/luafilesystem-scm-1.rockspec +++ b/luafilesystem-scm-1.rockspec @@ -1,7 +1,7 @@ package = "luafilesystem" version = "scm-1" source = { - url = "git+https://github.com/keplerproject/luafilesystem" + url = "git+https://github.com/lunarmodules/luafilesystem" } description = { summary = "File System Library for the Lua Programming Language", diff --git a/src/lfs.c b/src/lfs.c index fb5e825..e5e5ee4 100644 --- a/src/lfs.c +++ b/src/lfs.c @@ -1,23 +1,10 @@ /* ** LuaFileSystem -** Copyright Kepler Project 2003 - 2020 -** (http://keplerproject.github.io/luafilesystem) +** File system manipulation library ** -** File system manipulation library. -** This library offers these functions: -** lfs.attributes (filepath [, attributename | attributetable]) -** lfs.chdir (path) -** lfs.currentdir () -** lfs.dir (path) -** lfs.link (old, new[, symlink]) -** lfs.lock (fh, mode) -** lfs.lock_dir (path) -** lfs.mkdir (path) -** lfs.rmdir (path) -** lfs.setmode (filepath, mode) -** lfs.symlinkattributes (filepath [, attributename]) -** lfs.touch (filepath [, atime [, mtime]]) -** lfs.unlock (fh) +** Copyright (C) 2003-2010 Kepler Project. +** Copyright (C) 2010-2022 The LuaFileSystem authors. +** (http://lunarmodules.github.io/luafilesystem) */ #ifndef LFS_DO_NOT_USE_LARGE_FILE @@ -1141,8 +1128,6 @@ static int link_info(lua_State * L) */ static void set_info(lua_State * L) { - lua_pushliteral(L, "Copyright (C) 2003-2017 Kepler Project"); - lua_setfield(L, -2, "_COPYRIGHT"); lua_pushliteral(L, "LuaFileSystem is a Lua library developed to complement " "the set of functions related to file systems offered by " diff --git a/src/lfs.h b/src/lfs.h index 13b60a9..116b892 100644 --- a/src/lfs.h +++ b/src/lfs.h @@ -1,7 +1,10 @@ /* ** LuaFileSystem -** Copyright Kepler Project 2003 - 2020 -** (http://keplerproject.github.io/luafilesystem) +** File system manipulation library +** +** Copyright (C) 2003-2010 Kepler Project. +** Copyright (C) 2010-2022 The LuaFileSystem authors. +** (http://lunarmodules.github.io/luafilesystem) */ /* Define 'chdir' for systems that do not implement it */