summaryrefslogtreecommitdiff
path: root/src/repository.nobj.lua
diff options
context:
space:
mode:
authorRobert G. Jakabosky <bobby@sharedrealm.com>2011-04-02 14:11:34 -0700
committerRobert G. Jakabosky <bobby@sharedrealm.com>2011-04-02 14:11:34 -0700
commit8fcc9f34d7bc1eed7ce6724e407c77eeca8b4eaf (patch)
tree02b5ac631dd92fe08943bc7144748facb2ec6d20 /src/repository.nobj.lua
parent86f0d0974af2c72452f0bfc8336ba6a04cf93148 (diff)
downloadluagit2-8fcc9f34d7bc1eed7ce6724e407c77eeca8b4eaf.tar.gz
Update luagit2 to latest libgit2 interface (3e3e4631a0362ba23)
Diffstat (limited to 'src/repository.nobj.lua')
-rw-r--r--src/repository.nobj.lua14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/repository.nobj.lua b/src/repository.nobj.lua
index 5985fcf..cef52e8 100644
--- a/src/repository.nobj.lua
+++ b/src/repository.nobj.lua
@@ -50,19 +50,5 @@ typedef git_repository Repository;
c_call { "GitError", "err" } "git_repository_index"
{ "Index *", "&index>1", "Repository *", "this" },
},
- method "lookup" {
- c_call { "int", "(otype)" } "git_object_string2type" { "const char *", "type<3" },
- c_call { "GitError", "err" } "git_repository_lookup"
- { "Object *", "&obj>1", "Repository *", "this<1", "OID", "&id<2", "int", "otype" },
- },
- method "newobject" {
- c_call { "int", "(otype)" } "git_object_string2type" { "const char *", "type<2" },
- c_call { "GitError", "err" } "git_repository_newobject"
- { "Object *", "&obj>1", "Repository *", "this<1", "int", "otype" },
- },
- method "blob_writefile" {
- c_call { "GitError", "err" } "git_blob_writefile"
- { "OID", "&written_id>1", "Repository *", "this<1", "const char *", "path" },
- },
}