Skip to content
This repository was archived by the owner on Apr 12, 2019. It is now read-only.

Commit 08adcd3

Browse files
authoredJan 23, 2017
Merge pull request JuliaLang#20135 from JuliaLang/ksh/ownerrepo
Deprecate LibGit2.owner in favour of repository
2 parents 80c816d + 7d0cf34 commit 08adcd3

File tree

5 files changed

+18
-8
lines changed

5 files changed

+18
-8
lines changed
 

‎base/deprecated.jl

+7
Original file line numberDiff line numberDiff line change
@@ -1763,4 +1763,11 @@ end)
17631763
return false
17641764
end
17651765

1766+
# Not exported
1767+
eval(LibGit2, quote
1768+
function owner(x)
1769+
depwarn("owner(x) is deprecated, use repository(x) instead.", :owner)
1770+
repository(x)
1771+
end
1772+
end)
17661773
# End deprecations scheduled for 0.6

‎base/libgit2/index.jl

+8-5
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,16 @@ function write_tree!(idx::GitIndex)
2424
return oid_ptr[]
2525
end
2626

27-
function owner(idx::GitIndex)
28-
isnull(idx.nrepo) && throw(GitError(Error.Index, Error.ENOTFOUND, "Index does not have an owning repository."))
29-
return Base.get(idx.nrepo)
27+
function repository(idx::GitIndex)
28+
if isnull(idx.nrepo)
29+
throw(GitError(Error.Index, Error.ENOTFOUND, "Index does not have an owning repository."))
30+
else
31+
return Base.get(idx.nrepo)
32+
end
3033
end
3134

3235
function read_tree!(idx::GitIndex, tree_id::GitHash)
33-
repo = owner(idx)
36+
repo = repository(idx)
3437
tree = get(GitTree, repo, tree_id)
3538
try
3639
@check ccall((:git_index_read_tree, :libgit2), Cint,
@@ -114,5 +117,5 @@ end
114117
stage(ie::IndexEntry) = ccall((:git_index_entry_stage, :libgit2), Cint, (Ptr{IndexEntry},), Ref(ie))
115118

116119
function Base.show(io::IO, idx::GitIndex)
117-
println(io, "GitIndex:\nOwner: ", owner(idk), "\nNumber of elements: ", count(idx))
120+
println(io, "GitIndex:\nRepository: ", repository(idk), "\nNumber of elements: ", count(idx))
118121
end

‎base/libgit2/reference.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ function upstream(ref::GitReference)
196196
return GitReference(ref.repo, ref_ptr_ptr[])
197197
end
198198

199-
owner(ref::GitReference) = ref.repo
199+
repository(ref::GitReference) = ref.repo
200200

201201
function target!(ref::GitReference, new_oid::GitHash; msg::AbstractString="")
202202
ref_ptr_ptr = Ref{Ptr{Void}}(C_NULL)

‎base/libgit2/tree.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ function treewalk(f::Function, tree::GitTree, payload=Any[], post::Bool = false)
1616
return cbf_payload
1717
end
1818

19-
function owner(tree::GitTree)
19+
function repository(tree::GitTree)
2020
repo_ptr = ccall((:git_tree_owner, :libgit2), Ptr{Void},
2121
(Ptr{Void},), tree.ptr)
2222
return GitRepo(repo_ptr)

‎test/libgit2.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ mktempdir() do dir
325325
@test LibGit2.shortname(brref) == master_branch
326326
@test LibGit2.ishead(brref)
327327
@test LibGit2.upstream(brref) === nothing
328-
@test repo.ptr == LibGit2.owner(brref).ptr
328+
@test repo.ptr == LibGit2.repository(brref).ptr
329329
@test brnch == master_branch
330330
@test LibGit2.headname(repo) == master_branch
331331
LibGit2.branch!(repo, test_branch, string(commit_oid1), set_head=false)

0 commit comments

Comments
 (0)