Skip to content
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
6 changes: 1 addition & 5 deletions recipes/net/bridge-utils.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,11 @@ checkoutSCM:
digestSHA1: 07266dff2bf31a24fc912314b6764251ce645a39
stripComponents: 1

checkoutDeterministic: True
checkoutScript: |
autoconfReconfigure

buildVars: [AR]
buildScript: |
# this doesn't support out of tree builds; symlink the sources
mkdir -p build
cp -as $1/* build/
autotoolsBuild -o AR=$AR $1
autotoolsBuild -s -o AR=$AR $1

packageScript: autotoolsPackageTgt
4 changes: 1 addition & 3 deletions recipes/python/python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,9 @@ checkoutSCM:
checkoutDeterministic: True
checkoutScript: |
patchApplySeries $<<python/*>>
autoconfReconfigure

buildScript: |
mkdir -p src
rsync -aH --delete $1/ src/
autoconfSyncReconfigure $1 src

multiPackage:
"":
Expand Down
6 changes: 1 addition & 5 deletions recipes/utils/evtest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,7 @@ checkoutSCM:
digestSHA1: 8dd9df265524469f7740713b5f433e7ef85c444f
stripComponents: 1

checkoutDeterministic: True
checkoutScript: |
autoconfReconfigure

buildScript: |
autotoolsBuild $1
autotoolsBuild -s $1

packageScript: autotoolsPackageTgt
6 changes: 1 addition & 5 deletions recipes/utils/genext2fs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,8 @@ checkoutSCM:
digestSHA1: 4b06176c1c71b2818dc2f9d772346c5902238c33
stripComponents: 1

checkoutDeterministic: True
checkoutScript: |
autoconfReconfigure

buildScript: |
autotoolsBuild $1
autotoolsBuild -s $1

packageScript: |
autotoolsPackageTgt
Expand Down
6 changes: 1 addition & 5 deletions recipes/utils/inotify-tools.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,7 @@ checkoutSCM:
digestSHA256: "d33a4fd24c72c2d08893f129d724adf725b93dae96c359e4f4e9f32573cc853b"
stripComponents: 1

checkoutDeterministic: True
checkoutScript: |
autoconfReconfigure

buildScript: |
autotoolsBuild $1
autotoolsBuild -s $1

packageScript: autotoolsPackageTgt
4 changes: 1 addition & 3 deletions recipes/utils/sysbench.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,10 @@ depends:
checkoutDeterministic: True
checkoutScript: |
patchApplySeries -p0 $<@sysbench/*.patch@>
autoconfReconfigure

buildVars: [CC]
buildScript: |
# rsync -a --delete $1/ build
autotoolsBuild -o V=1 -o VERBOSE=1 $1 --without-mysql \
autotoolsBuild -s -o V=1 -o VERBOSE=1 $1 --without-mysql \
--with-system-ck \
--with-system-luajit

Expand Down