Skip to content

Commit

Permalink
ext-uuid/1.1.0, fixes #371
Browse files Browse the repository at this point in the history
  • Loading branch information
dzuelke committed Dec 11, 2019
1 parent 39a884b commit d92d55e
Show file tree
Hide file tree
Showing 6 changed files with 42 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
- ext-rdkafka/3.1.3 [David Zuelke]
- ext-rdkafka/4.0.0 [David Zuelke]
- ext-blackfire/1.29.4 [David Zuelke]
- ext-uuid/1.1.0 (#371) [David Zuelke]

### CHG

Expand Down
21 changes: 21 additions & 0 deletions support/build/extensions/no-debug-non-zts-20151012/uuid
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#!/usr/bin/env bash

dep_name=$(basename $BASH_SOURCE)

# we need libuuid1 already installed
needed=( libuuid1 )
missing=$(comm -1 -3 <(dpkg-query -W -f '${package}\n' | sort) <(IFS=$'\n'; echo "${needed[*]}" | sort))
if [[ "$missing" ]]; then
echo "Error! Missing libraries: $missing"
exit 1
fi

# we need uuid-dev to compile
needed=( uuid-dev )
missing=$(comm -1 -3 <(dpkg-query -W -f '${package}\n' | sort) <(IFS=$'\n'; echo "${needed[*]}" | sort))
if [[ "$missing" ]]; then
apt-get update -qq || { echo "Failed to 'apt-get update'. You must build this formula using Docker."; exit 1; }
apt-get install -q -y $missing
fi

source $(dirname $BASH_SOURCE)/../pecl
5 changes: 5 additions & 0 deletions support/build/extensions/no-debug-non-zts-20151012/uuid-1.1.0
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/usr/bin/env bash
# Build Path: /app/.heroku/php
# Build Deps: php-7.0.*

source $(dirname $0)/../no-debug-non-zts-20151012/uuid
5 changes: 5 additions & 0 deletions support/build/extensions/no-debug-non-zts-20160303/uuid-1.1.0
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/usr/bin/env bash
# Build Path: /app/.heroku/php
# Build Deps: php-7.1.*

source $(dirname $0)/../no-debug-non-zts-20151012/uuid
5 changes: 5 additions & 0 deletions support/build/extensions/no-debug-non-zts-20170718/uuid-1.1.0
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/usr/bin/env bash
# Build Path: /app/.heroku/php
# Build Deps: php-7.2.*

source $(dirname $0)/../no-debug-non-zts-20151012/uuid
5 changes: 5 additions & 0 deletions support/build/extensions/no-debug-non-zts-20180731/uuid-1.1.0
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/usr/bin/env bash
# Build Path: /app/.heroku/php
# Build Deps: php-7.3.*

source $(dirname $0)/../no-debug-non-zts-20151012/uuid

0 comments on commit d92d55e

Please sign in to comment.