mirror of
https://github.com/ivabus/pantry
synced 2024-11-22 16:35:07 +03:00
parent
2dc39b4d51
commit
84e97a0423
7 changed files with 53 additions and 5 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -2,6 +2,7 @@
|
||||||
/builds
|
/builds
|
||||||
/testbeds
|
/testbeds
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
/prefixes
|
||||||
|
|
||||||
#TODO commit after v1
|
#TODO commit after v1
|
||||||
/deno.lock
|
/deno.lock
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
export GEM_HOME="$(cd $(dirname $0)/.. && pwd)"
|
export GEM_HOME="$(cd "$(dirname "$0")"/.. && pwd)"
|
||||||
export GEM_PATH="$GEM_HOME"
|
export GEM_PATH="$GEM_HOME"
|
||||||
export PATH="$GEM_HOME/gems/bin:$PATH"
|
export PATH="$GEM_HOME/gems/bin:$PATH"
|
||||||
exec "$GEM_HOME"/gems/bin/asciidoctor "$@"
|
exec "$GEM_HOME"/gems/bin/asciidoctor "$@"
|
||||||
|
|
42
projects/cocoapods.org/package.yml
Normal file
42
projects/cocoapods.org/package.yml
Normal file
|
@ -0,0 +1,42 @@
|
||||||
|
distributable:
|
||||||
|
url: https://github.com/CocoaPods/CocoaPods/archive/{{version}}.tar.gz
|
||||||
|
strip-components: 1
|
||||||
|
|
||||||
|
versions:
|
||||||
|
github: CocoaPods/CocoaPods
|
||||||
|
|
||||||
|
dependencies:
|
||||||
|
ruby-lang.org: ^3
|
||||||
|
sourceware.org/libffi: ^3
|
||||||
|
rubygems.org: ^3
|
||||||
|
git-scm.org: ^2
|
||||||
|
|
||||||
|
build:
|
||||||
|
dependencies:
|
||||||
|
tea.xyz/gx/cc: c99
|
||||||
|
tea.xyz/gx/make: '*'
|
||||||
|
env:
|
||||||
|
GEM_HOME: ${{prefix}}
|
||||||
|
GEM_PATH: ${{prefix}}
|
||||||
|
|
||||||
|
# FIXME ruby’s mkmf needs patching to check CPATH
|
||||||
|
CFLAGS: -I{{deps.sourceware.org/libffi.prefix}}/include
|
||||||
|
script:
|
||||||
|
- gem build cocoapods.gemspec
|
||||||
|
- gem install cocoapods-{{version}}.gem
|
||||||
|
|
||||||
|
- run: |
|
||||||
|
mv {{prefix}}/bin/* .
|
||||||
|
cp $SRCROOT/props/proxy {{prefix}}/bin/pod
|
||||||
|
working-directory:
|
||||||
|
${{prefix}}/gems/bin
|
||||||
|
|
||||||
|
provides:
|
||||||
|
- bin/pod
|
||||||
|
|
||||||
|
test:
|
||||||
|
env:
|
||||||
|
# some of our test containers are raw and thus run as root
|
||||||
|
COCOAPODS_ALLOW_ROOT: 1
|
||||||
|
script:
|
||||||
|
pod --version
|
5
projects/cocoapods.org/proxy
Executable file
5
projects/cocoapods.org/proxy
Executable file
|
@ -0,0 +1,5 @@
|
||||||
|
#!/bin/sh
|
||||||
|
export GEM_HOME="$(cd "$(dirname "$0")"/.. && pwd)"
|
||||||
|
export GEM_PATH="$GEM_HOME"
|
||||||
|
export PATH="$GEM_HOME/gems/bin:$PATH"
|
||||||
|
exec "$GEM_HOME"/gems/bin/pod "$@"
|
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
export GEM_HOME="$(cd $(dirname $0)/.. && pwd)"
|
export GEM_HOME="$(cd "$(dirname "$0")"/.. && pwd)"
|
||||||
export GEM_PATH="$GEM_HOME"
|
export GEM_PATH="$GEM_HOME"
|
||||||
export PATH="$GEM_HOME/gems/bin:$PATH"
|
export PATH="$GEM_HOME/gems/bin:$PATH"
|
||||||
exec "$GEM_HOME"/gems/bin/fastlane "$@"
|
exec "$GEM_HOME"/gems/bin/fastlane "$@"
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
export GEM_HOME="$(cd $(dirname $0)/.. && pwd)"
|
export GEM_HOME="$(cd "$(dirname "$0")"/.. && pwd)"
|
||||||
export GEM_PATH="$GEM_HOME"
|
export GEM_PATH="$GEM_HOME"
|
||||||
export PATH="$GEM_HOME/gems/bin:$PATH"
|
export PATH="$GEM_HOME/gems/bin:$PATH"
|
||||||
exec "$GEM_HOME"/gems/bin/ronn "$@"
|
exec "$GEM_HOME"/gems/bin/ronn "$@"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
d="$(cd "$(dirname $0)"/.. && pwd)"
|
d="$(cd "$(dirname "$0")"/.. && pwd)"
|
||||||
export RUBYLIB="$d/lib"
|
export RUBYLIB="$d/lib"
|
||||||
$d/shim/$(basename $0) "$@"
|
$d/shim/$(basename "$0") "$@"
|
||||||
|
|
Loading…
Reference in a new issue