Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

py-gitpython: update to version 3.1.2 #7159

Merged
merged 2 commits into from
Jun 6, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 23 additions & 9 deletions python/py-gitdb/Portfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,38 @@ PortSystem 1.0
PortGroup python 1.0
PortGroup github 1.0

github.setup gitpython-developers gitdb 2.0.5
github.setup gitpython-developers gitdb 4.0.5
name py-gitdb
maintainers nomaintainer
revision 0

platforms darwin
supported_archs noarch
license BSD
maintainers nomaintainer

description GitDB is a pure-Python git object database
long_description ${description}

python.versions 27 36 37
python.versions 27 36 37 38
aphor marked this conversation as resolved.
Show resolved Hide resolved

checksums rmd160 b7e127468f5d3859c7e466a36ee739ed75b75d6b \
sha256 8078d816da0b952a46ba761bbb7b29c3c535aa89b039671a58f4641efa384d29 \
size 407348
checksums rmd160 b69676ddd9142c8a8b370cd31a8d609872665223 \
sha256 881432a275d50e1dd87e768e9ffc466bffd5054c2e18951a55750397eee58a78 \
size 406782

if {${name} ne ${subport}} {
depends_build-append port:py${python.version}-setuptools
depends_run-append port:py${python.version}-smmap
if {${python.version} == 27} {
github.setup gitpython-developers gitdb 2.0.6
revision 0
checksums rmd160 8991fdb0bb948686d9af3b91dbb9a9985640690f \
sha256 8358ca2481184108009118ee3437b51b934aa38544405388b6ca21dcbd3f109c \
size 407378
}

depends_build-append \
port:py${python.version}-setuptools

depends_run-append \
port:py${python.version}-smmap

livecheck.type none
livecheck.type none
}
29 changes: 21 additions & 8 deletions python/py-gitpython/Portfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@ PortSystem 1.0
PortGroup python 1.0
PortGroup github 1.0

github.setup gitpython-developers GitPython 2.1.11
github.setup gitpython-developers GitPython 3.1.3
name py-gitpython
revision 0

platforms darwin
supported_archs noarch
license BSD
maintainers nomaintainer

Expand All @@ -16,15 +18,26 @@ long_description GitPython provides object model access to your git \
repository. Once you have created a repository object, you \
can traverse it to find parent commit(s), trees, blobs, etc.

checksums rmd160 26d60c211c58174b885370663af858e2f51a7d33 \
sha256 8e2f57750df91fe72ba5cd1608e4c1954f94bea35c5d735081b2a9b082341bc5 \
size 519437
checksums rmd160 56233f3342a6d2a74122d5abf8fa03a55bc0580f \
sha256 343ba65756c47e40b61e643ba7446c78f3f23a059387356862aa3d994d583ead \
size 442619

python.versions 27 36 37
python.versions 27 36 37 38

if {${name} ne ${subport}} {
depends_build-append port:py${python.version}-setuptools
depends_lib-append port:py${python.version}-gitdb
if {${python.version} == 27} {
github.setup gitpython-developers GitPython 2.1.15
revision 0
checksums rmd160 209cf71e22518e3fb0b24376154bb03aabbca93f \
sha256 ec23cdd597fcf7c16fa8c1a9311ade6eecef4f3e6c1feb953e1a9eaf170445da \
size 523535
}

livecheck.type none
depends_build-append \
port:py${python.version}-setuptools

depends_lib-append \
port:py${python.version}-gitdb

livecheck.type none
}