dlibgit ~libgit_version_agnostic
D wrapper library for libgit2.
To use this package, run the following command in your project's root directory:
Manual usage
Put the following dependency into your project's dependences section:
dlibgit - libgit2 D bindings
These are the D bindings to the libgit2 library.
News
dlibgit has been updated and now targets libgit v0.19.0.
Note: A partial D-oriented API is in the D_API
branch. Currently it's not being worked on (I don't have enough free time or effort to finish the API). But if you want to, you may fork the project and continue writing the API.
DUB Package
A DUB package is maintained at the following fork, which contains some additions such as pre-compiled win32 binaries: https://github.com/s-ludwig/dlibgit
Its DUB page is located here.
v0.19.0 Changes
The new C-based bindings are now part of the
git.c
package.The
_object.d
and_version.d
files have been renamed toobject_.d
andversion_.d
, as this is the usual D convention of naming modules that use D keywords.C-based documentation in the header files is now included with the .d files.
Enums members can now be accessed both with their fully qualified name (e.g.
auto x = git_otype.GIT_OBJ_ANY
), and as if they were defined in module scope (e.g.auto x = GIT_OBJ_ANY
).
Notes
- Currently the opaque structs are defined as structs with a disabled default ctor, and a disabled
copy ctor. Ordinarily opaque structs are defined via the
struct S;
syntax, however due to a compiler bug (Issue 10497) the alternative syntax had to be used.
Requirements
[DMD] 2.063+.
Dependencies
- Make sure you either clone with
git clone --recursive
, or if you've already cloned then use:$ git submodule init $ git submodule update
Windows:
- Get the libgit2 DLL from here.
- Or build
libgit2
manually.
Posix:
- Get the libgit2 shared library with your package manager, making sure you're getting the
0.19.0
release. - Or build
libgit2
manually.
Building libgit2 manually
$ cd <your-folder-of-choice>
$ git clone git://github.com/libgit2/libgit2.git
$ cd libgit2
$ git checkout v0.19.0
- Then follow these instructions: https://github.com/libgit2/libgit2#building-libgit2---using-cmake
- You might need to install zlib if cmake says it's missing (On Posix use your package manager to find the
zlib dev
package).
Additional Posix notes:
- Make sure the libgit2 shared lib path is in your ld conf file, for example on Linux Mint libgit2 installs to
/usr/local/lib
, so either edit/etc/ld.so.conf
or run:$ LD_LIBRARY_PATH=/usr/local/lib $ export LD_LIBRARY_PATH
Building and running samples
Samples
diff sample:
$ rdmd build.d diff/diff.d
$ bin\diff.exe .git 2504016ab220b5b 1e8ffc04be048c0
- This will diff the first two commits in dlibgit.
- You could pass an absolute path, e.g.
C:/some/git/repo/.git
showindex sample:
$ rdmd build.d showindex/showindex.d
$ bin\showindex.exe .git
git client sample: Note: This sample has not been ported to v0.19.0 yet.
$ rdmd build.d network/git.d
$ bin\git.exe ls-remote git://github.com/AndrejMitrovic/dlibgit.git
$ bin\git.exe index-pack path\to\.git\objects\pack\abcd1234.pack
$ bin\git.exe clone git://github.com/AndrejMitrovic/dlibgit.git ../../dlibgit2_clone
clone
is not the same as git'sclone
command, it does not deflate git object files.fetch
doesn't currently work due to some bugs in network\fetch.d.- Replace
path\to
with a valid path for index-pack.
On win32 some libgit functions work with either form of slashes, but you should prefer using forward slashes.
Usage tips
As a convenience you can import git.c.all
or git.c
(with the new 2.064 package import feature) to import all modules at once.
Documentation
You can use the libgit2 [API] docs. The [general] example is a good read.
See also
- The libgit2 [homepage] and [github] repository.
- [Git Merge 2013] - Current status of libgit2 - conference video.
License
See libgit's [COPYING] file, included in the src/git/c
folder. Also see the licensing remarks on the [libgit2] github page.
Disclaimer
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- Registered by Sönke Ludwig
- ~libgit_version_agnostic released 10 years ago
- s-ludwig/dlibgit
- LGPL 2
- Copyright © 2013 Andrej Mitrovic, 2014 David Nadlinger, 2014 Sönke Ludwig
- Authors:
- Dependencies:
- libgit2
- Versions:
-
0.50.6 2016-Jul-04 0.50.5 2014-Nov-28 0.50.4 2014-Apr-02 0.50.3 2014-Mar-01 0.50.2 2014-Feb-28 - Download Stats:
-
-
0 downloads today
-
0 downloads this week
-
1 downloads this month
-
986 downloads total
-
- Score:
- 2.4
- Short URL:
- dlibgit.dub.pm