Skip to content

Commit

Permalink
Merge pull request #86 from gcotelli/libgit_1.8_Pharo13
Browse files Browse the repository at this point in the history
Add libgit 1.8 support for Pharo 13
  • Loading branch information
guillep authored May 27, 2024
2 parents 4bcf2da + 9dd5b02 commit c2b6428
Show file tree
Hide file tree
Showing 24 changed files with 142 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest ]
smalltalk: [ Pharo64-apha ]
smalltalk: [ Pharo64-alpha ]
runs-on: ${{ matrix.os }}
name: ${{ matrix.smalltalk }} on ${{ matrix.os }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
fail-fast: false
matrix:
smalltalk: [ Pharo64-apha ]
smalltalk: [ Pharo64-alpha ]
os: [ ubuntu-latest, macOS-latest ]
ston: [ .smalltalk.ston ]
runs-on: ${{ matrix.os }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,8 @@ pushOptionsStructureClass
ifTrue: [ ^ LGitPushOptionsV100 ].
(self ffiLibrary uniqueInstance isVersionLessThan: #(1 4))
ifTrue: [ ^ LGitPushOptionsV120 ].
(self ffiLibrary uniqueInstance isVersionLessThan: #(1 8))
ifTrue: [ ^ LGitPushOptionsV140 ].

^ LGitPushOptionsV180

^ LGitPushOptionsV140
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ accessing - platform
unix64LibraryName

^ FFIUnix64LibraryFinder findAnyLibrary: #(
'libgit2.so.1.8'
'libgit2.so.1.7'
'libgit2.so.1.6'
'libgit2.so.1.5'
Expand Down
Empty file.
44 changes: 44 additions & 0 deletions LibGit-Core.package/LGitPushOptionsV180.class/class/fieldsDesc.st
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
field definition
fieldsDesc
"self rebuildFieldAccessors"

^ #(
LGitOptionsVersionsEnum version;
"
* If the transport being used to push to the remote requires the creation
* of a pack file, this controls the number of worker threads used by
* the packbuilder when creating that pack file to be sent to the remote.
*
* If set to 0, the packbuilder will auto-detect the number of threads
* to create. The default value is 1.
"
uint pb_parallelism;
"
* Callbacks to use for this push operation
"
LGitRemoteCallbacksV120 callbacks;
"
* Proxy options to use, by default no proxy is used.
"
LGitProxyOptions proxy_opts;
"
* Whether to allow off-site redirects. If this is not
* specified, the `http.followRedirects` configuration setting
* will be consulted.
"
LGitRemoteRedirectEnum follow_redirects;
"
* Extra headers for this push operation
"
LGitStringArray custom_headers;
"
* 'Push options' to deliver to the remote.
"
LGitStringArray remote_push_options;
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
libgit-fields
prim_callbacks: anObject
"This method was automatically generated"
handle structAt: OFFSET_PRIM_CALLBACKS put: anObject getHandle length: LGitRemoteCallbacksV120 byteSize
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
libgit-fields
prim_callbacks
"This method was automatically generated"
^ LGitRemoteCallbacksV120 fromHandle: (handle referenceStructAt: OFFSET_PRIM_CALLBACKS length: LGitRemoteCallbacksV120 byteSize)
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
libgit-fields
prim_custom_headers: anObject
"This method was automatically generated"
handle structAt: OFFSET_PRIM_CUSTOM_HEADERS put: anObject getHandle length: LGitStringArray byteSize
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
libgit-fields
prim_custom_headers
"This method was automatically generated"
^ LGitStringArray fromHandle: (handle referenceStructAt: OFFSET_PRIM_CUSTOM_HEADERS length: LGitStringArray byteSize)
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
libgit-fields
prim_follow_redirects: anObject
"This method was automatically generated"
handle unsignedLongAt: OFFSET_PRIM_FOLLOW_REDIRECTS put: anObject value
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
libgit-fields
prim_follow_redirects
"This method was automatically generated"
^LGitRemoteRedirectEnum fromInteger: (handle unsignedLongAt: OFFSET_PRIM_FOLLOW_REDIRECTS)
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
libgit-fields
prim_pb_parallelism: anObject
"This method was automatically generated"
handle unsignedLongAt: OFFSET_PRIM_PB_PARALLELISM put: anObject
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
libgit-fields
prim_pb_parallelism
"This method was automatically generated"
^handle unsignedLongAt: OFFSET_PRIM_PB_PARALLELISM
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
libgit-fields
prim_proxy_opts: anObject
"This method was automatically generated"
handle structAt: OFFSET_PRIM_PROXY_OPTS put: anObject getHandle length: LGitProxyOptions byteSize
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
libgit-fields
prim_proxy_opts
"This method was automatically generated"
^ LGitProxyOptions fromHandle: (handle referenceStructAt: OFFSET_PRIM_PROXY_OPTS length: LGitProxyOptions byteSize)
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
libgit-fields
prim_remote_push_options: anObject
"This method was automatically generated"
handle structAt: OFFSET_PRIM_REMOTE_PUSH_OPTIONS put: anObject getHandle length: LGitStringArray byteSize
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
libgit-fields
prim_remote_push_options
"This method was automatically generated"
^ LGitStringArray fromHandle: (handle referenceStructAt: OFFSET_PRIM_REMOTE_PUSH_OPTIONS length: LGitStringArray byteSize)
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
libgit-fields
prim_version: anObject
"This method was automatically generated"
handle unsignedLongAt: OFFSET_PRIM_VERSION put: anObject value
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
libgit-fields
prim_version
"This method was automatically generated"
^LGitOptionsVersionsEnum fromInteger: (handle unsignedLongAt: OFFSET_PRIM_VERSION)
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
libgit - calls
push_init_options: options version: version
self
ffiCall: #(LGitReturnCodeEnum git_push_init_options(LGitPushOptionsV180 *options, LGitOptionsVersionsEnum version))
options: #()
19 changes: 19 additions & 0 deletions LibGit-Core.package/LGitPushOptionsV180.class/properties.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"commentStamp" : "",
"super" : "LGitAbstractPushOptions",
"category" : "LibGit-Core-FFI-Structs",
"classinstvars" : [ ],
"pools" : [ ],
"classvars" : [
"OFFSET_PRIM_CALLBACKS",
"OFFSET_PRIM_CUSTOM_HEADERS",
"OFFSET_PRIM_FOLLOW_REDIRECTS",
"OFFSET_PRIM_PB_PARALLELISM",
"OFFSET_PRIM_PROXY_OPTS",
"OFFSET_PRIM_REMOTE_PUSH_OPTIONS",
"OFFSET_PRIM_VERSION"
],
"instvars" : [ ],
"name" : "LGitPushOptionsV180",
"type" : "normal"
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,7 @@ remote_push: remote refspecs: refspecs opts: opts
ifTrue: [ ^ self remote_push_v100: remote refspecs: refspecs opts: opts ].
(self ffiLibrary uniqueInstance isVersionLessThan: #(1 4))
ifTrue: [ ^ self remote_push_v120: remote refspecs: refspecs opts: opts ].
(self ffiLibrary uniqueInstance isVersionLessThan: #(1 8))
ifTrue: [ ^ self remote_push_v140: remote refspecs: refspecs opts: opts ].

^ self remote_push_v140: remote refspecs: refspecs opts: opts
^ self remote_push_v180: remote refspecs: refspecs opts: opts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
libgit - calls
remote_push_v180: remote refspecs: refspecs opts: opts

^ self ffiCallSafely: #(LGitReturnCodeEnum git_remote_push #(
self,
LGitStringArray *refspecs,
LGitPushOptionsV180 *opts))
options: #(optCoerceNilToNull)

0 comments on commit c2b6428

Please sign in to comment.