-
Notifications
You must be signed in to change notification settings - Fork 201
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
conda: add pygit2+libgit2 recipes + pygit2 dependency in artiq pkg
Showing
5 changed files
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,6 +48,7 @@ requirements: | |
- quamash | ||
- pyqtgraph | ||
- flterm # [linux] | ||
- pygit2 | ||
|
||
test: | ||
imports: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/bash | ||
|
||
mkdir build | ||
cd build | ||
cmake .. -DCMAKE_INSTALL_PREFIX=$PREFIX | ||
make -j2 | ||
make install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package: | ||
name: libgit2 | ||
version: 0.22.3 | ||
|
||
source: | ||
git_url: https://github.com/libgit2/libgit2 | ||
git_tag: v0.22.3 | ||
|
||
build: | ||
number: 0 | ||
|
||
requirements: | ||
build: | ||
- system # [linux] | ||
- cmake # [linux] | ||
|
||
about: | ||
home: https://libgit2.github.com/ | ||
license: GPLv2 with a special Linking Exception | ||
summary: 'libgit2 is a portable, pure C implementation of the Git core methods provided as a re-entrant linkable library with a solid API, allowing you to write native speed custom Git applications in any language with bindings.' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
export LIBGIT2=$PREFIX | ||
$PYTHON setup.py install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
package: | ||
name: pygit2 | ||
version: 0.22.1 | ||
|
||
source: | ||
git_url: https://github.com/libgit2/pygit2 | ||
git_tag: v0.22.1 | ||
|
||
build: | ||
number: 0 | ||
|
||
requirements: | ||
build: | ||
- system # [linux] | ||
- python | ||
- libgit2 | ||
- cffi >=0.8.1 | ||
- pkgconfig # [linux] | ||
run: | ||
- system # [linux] | ||
- python | ||
- libgit2 | ||
- cffi >=0.8.1 | ||
|
||
about: | ||
home: http://www.pygit2.org/ | ||
license: GPLv2 with a special Linking Exception | ||
summary: 'Pygit2 is a set of Python bindings to the libgit2 shared library, libgit2 implements the core of Git.' |