Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
heroku-buildpack-python
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Django
heroku-buildpack-python
Commits
50d61d29
Commit
50d61d29
authored
10 years ago
by
Kenneth Reitz
Browse files
Options
Downloads
Patches
Plain Diff
moving things around
parent
47c40ce0
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
builds/libraries/vendor/libffi
+0
-0
0 additions, 0 deletions
builds/libraries/vendor/libffi
builds/libraries/vendor/libmemcache
+39
-0
39 additions, 0 deletions
builds/libraries/vendor/libmemcache
with
39 additions
and
0 deletions
builds/libraries/libffi
→
builds/libraries/
vendor/
libffi
+
0
−
0
View file @
50d61d29
File moved
This diff is collapsed.
Click to expand it.
builds/libraries/vendor/libmemcache
0 → 100755
+
39
−
0
View file @
50d61d29
#!/usr/bin/env bash
# Build Path: /app/.heroku/vendor/
OUT_PREFIX
=
$1
# fail hard
set
-o
pipefail
# fail harder
set
-eux
DEFAULT_VERSION
=
"1.0.18"
dep_version
=
${
VERSION
:-
$DEFAULT_VERSION
}
dep_dirname
=
libmemcached-
${
dep_version
}
dep_archive_name
=
${
dep_dirname
}
.tar.gz
dep_url
=
https://launchpad.net/libmemcached/1.0/
${
dep_version
}
/+download/
${
dep_archive_name
}
# SASL Support.
echo
"-----> Building cyrus-sasl 2.1.26..."
curl
-LO
ftp://ftp.cyrusimap.org/cyrus-sasl/cyrus-sasl-2.1.26.tar.gz
# FTP doesn't play well with piping into tar xz
tar
xzf cyrus-sasl-2.1.26.tar.gz
pushd
cyrus-sasl-2.1.26
./configure
--prefix
=
${
OUT_PREFIX
}
make
-s
-j
9
make
install
-s
popd
echo
"-----> Building libmemcached
${
dep_version
}
..."
curl
-L
${
dep_url
}
|
tar
xz
pushd
${
dep_dirname
}
CPPFLAGS
=
-I
${
OUT_PREFIX
}
/include
LDFLAGS
=
-L
${
OUT_PREFIX
}
/lib ./configure
--prefix
=
${
OUT_PREFIX
}
--without-memcached
make
-s
-j
9
make
install
-s
popd
echo
"-----> Done."
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment