summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolás Reynolds <apoyosis@correo.inta.gob.ar>2012-01-11 14:37:23 -0300
committerNicolás Reynolds <apoyosis@correo.inta.gob.ar>2012-01-11 14:37:23 -0300
commit8fb014563d5142fc52d22238d0d5f1ac6fcbf27b (patch)
treea26a096b051f7d6785e143b1b34f840d000fd1a2
parent201e906ce628e92e00276f89534317ac5496e956 (diff)
social/diaspora-git-20120105-2
-rw-r--r--social/diaspora-git/PKGBUILD14
1 files changed, 7 insertions, 7 deletions
diff --git a/social/diaspora-git/PKGBUILD b/social/diaspora-git/PKGBUILD
index 4688d8abf..3c241473b 100644
--- a/social/diaspora-git/PKGBUILD
+++ b/social/diaspora-git/PKGBUILD
@@ -9,7 +9,7 @@
pkgbase=diaspora-git
pkgname=('diaspora-mysql-git' 'diaspora-postgresql-git')
pkgver=20120105
-pkgrel=1
+pkgrel=2
pkgdesc="A privacy aware, personally controlled, do-it-all, open source social network"
arch=('i686' 'x86_64')
url="https://diasporafoundation.org/"
@@ -39,11 +39,11 @@ build() {
if [[ -d $_gitname ]] ; then
pushd $_gitname
- tsocks git pull origin
+ git pull origin
msg "The local files are updated."
popd
else
- tsocks git clone $_gitroot
+ git clone $_gitroot
msg "Git clone done."
fi
@@ -119,11 +119,11 @@ _package() {
# TODO extract mysql2 version from Gemfile
case $DB in
mysql)
- tsocks gem install mysql2 -v "0.2.17" -- --with-mysql-config=/usr/bin/mysql_config
+ gem install mysql2 -v "0.2.17" -- --with-mysql-config=/usr/bin/mysql_config
;;
posgres)
- tsocks gem install pg -- --with-pg-config=/usr/bin/pg_config
+ gem install pg -- --with-pg-config=/usr/bin/pg_config
# Preconfigure right subsection in database.yml.example
sed -e "s/<<: \*mysql/#<<: \*mysql/" \
@@ -136,8 +136,8 @@ _package() {
esac
- tsocks gem install bundler
- tsocks bundle install --path ${GEM_PATH} --without development test heroku
+ gem install bundler
+ bundle install --path ${GEM_PATH} --without development test heroku
install -d $pkgdir/usr/share/licenses/$_gitname/
install -Dm644 ${srcdir}/$_gitname-build/{AUTHORS,COPYRIGHT,GNU-AGPL-3.0} \