moving ejdblua into ejdb-lua repository
authoradam <adamansky@gmail.com>
Thu, 12 Sep 2013 16:41:53 +0000 (23:41 +0700)
committeradam <adamansky@gmail.com>
Thu, 12 Sep 2013 16:41:53 +0000 (23:41 +0700)
.gitignore
.idea/modules.xml
Makefile
README.md

index 095cf06..bf1f423 100644 (file)
@@ -4,7 +4,6 @@
 *.status
 *.dylib
 *.upload
-*.rock
 *.so
 *.so.*
 *.a
@@ -107,18 +106,6 @@ tcejdb/debian/libtcejdb9*/
 tcejdb/debian/tmp/*
 tcejdb/debian/*.debhelper
 
-/luaejdb/debian/files
-/luaejdb/test/testdb*
-/luaejdb/debian/lua51-ejdb*
-/luaejdb/debian/*.log
-/lua-ejdb_*.build
-/lua-ejdb_*.dsc
-/lua-ejdb_*.gz
-/lua-ejdb_*.build
-/lua-ejdb_*.changes
-/lua51-ejdb_*.deb
-
-
 /jejdb/build
 /jejdb/target
 /jejdb/*.so
index cb54f6a..4a95041 100644 (file)
@@ -3,7 +3,6 @@
   <component name="ProjectModuleManager">
     <modules>
       <module fileurl="file://$PROJECT_DIR$/jejdb/jejdb.iml" filepath="$PROJECT_DIR$/jejdb/jejdb.iml" />
-      <module fileurl="file://$PROJECT_DIR$/luaejdb/luaejdb.iml" filepath="$PROJECT_DIR$/luaejdb/luaejdb.iml" />
       <module fileurl="file://$PROJECT_DIR$/rbejdb/rbejdb.iml" filepath="$PROJECT_DIR$/rbejdb/rbejdb.iml" />
       <module fileurl="file://$PROJECT_DIR$/tcejdb/tcejdb.iml" filepath="$PROJECT_DIR$/tcejdb/tcejdb.iml" />
     </modules>
index a550c42..409c945 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -8,8 +8,6 @@ clean:
        - rm -rf ./var/*
        - rm -f *.upload
        - rm -f libtcejdb*.tar.gz libtcejdb*.deb libtcejdb*.changes libtcejdb*.build libtcejdb*.dsc
-       - rm -f python*.tar.gz python*.deb python*.changes python*.build python*.dsc
-       - rm -f lua*.tar.gz lua*.deb lua*.changes lua*.build lua*.dsc
        - rm -f *.tgz
 
 deb-packages: deb-packages-tcejdb deb-packages-luaejdb;
@@ -17,18 +15,12 @@ deb-packages: deb-packages-tcejdb deb-packages-luaejdb;
 deb-packages-tcejdb: init
        $(MAKE) -C ./tcejdb deb-packages
 
-deb-packages-luaejdb: init
-       $(MAKE) -C ./luaejdb deb-packages
-
 deb-source-packages:
        $(MAKE) -C ./ deb-packages DEBUILD_OPTS="-S"
 
 deb-source-packages-tcejdb:
        $(MAKE) -C ./ deb-packages-tcejdb DEBUILD_OPTS="-S"
 
-deb-source-packages-luaejdb:
-       $(MAKE) -C ./ deb-packages-luaejdb DEBUILD_OPTS="-S"
-
 init:
        cd ./tcejdb && ./configure
        $(MAKE) -C ./tcejdb version
index db0e674..a144da1 100644 (file)
--- a/README.md
+++ b/README.md
@@ -24,7 +24,7 @@ News
 * `2013-05-02` **[NodeJS win32 module available](https://github.com/Softmotions/ejdb/blob/master/tcejdb/WIN32.md#ejdb-nodejs-module-installation)**
 * `2013-04-25` **[EJDB and TokyoCabinet API ported to Windows](https://github.com/Softmotions/ejdb/blob/master/tcejdb/WIN32.md)**
 * `2013-04-03` **[Java API binding available](https://github.com/Softmotions/ejdb/blob/master/jejdb/)**
-* `2013-03-20` **[Lua binding available](https://github.com/Softmotions/ejdb/blob/master/luaejdb/)**
+* `2013-03-20` **[Lua binding available](https://github.com/Softmotions/ejdb-lua/)**
 * `2013-02-15` **[EJDB Python3 binding available](https://github.com/Softmotions/ejdb-python)**
 * `2013-02-07` **[Debian packages provided](https://github.com/Softmotions/ejdb/wiki/Debian-Ubuntu-installation)**
 * `2013-01-22` **[Collection joins now supported](https://github.com/Softmotions/ejdb/wiki/Collection-joins)**
@@ -57,7 +57,7 @@ Documentation
     * **[C# .Net] (https://github.com/Softmotions/ejdb-csharp)**
     * **[NodeJS] (https://github.com/Softmotions/ejdb/blob/master/node/)**
     * **[Python 2.7/3.x](https://github.com/Softmotions/ejdb-python)**
-    * **[Lua](https://github.com/Softmotions/ejdb/blob/master/luaejdb/)**
+    * **[Lua](https://github.com/Softmotions/ejdb-lua/)**
     * **[Java](https://github.com/Softmotions/ejdb/blob/master/jejdb/)**
     * **[Ruby](https://github.com/Softmotions/ejdb/blob/master/rbejdb/)**
     * **[Objective-C](https://github.com/johnnyd/EJDBKit)**
@@ -239,7 +239,7 @@ end
 
 db:close()
 ```
-**[EJDB Lua binding page](https://github.com/Softmotions/ejdb/blob/master/luaejdb)**
+**[EJDB Lua binding page](https://github.com/Softmotions/ejdb-lua)**
 
 EJDB Go
 ==================================