summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2012-11-14 16:48:22 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2012-11-14 16:48:22 -0500
commit790698d078b8ee3c29ffd1a326e6bacefba4819f (patch)
tree0fd61225bab5a69968c17c2ca120cdd22e590860
parentc4124bfc9ffb7b6a6187620ef3d0e95bc763b8dc (diff)
update libre/parabolaweb-utils: run update_types_permissions if it exists
-rw-r--r--PKGBUILD6
-rw-r--r--parabolaweb-update17
2 files changed, 14 insertions, 9 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 5000e02..bfdfc54 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -8,7 +8,7 @@
pkgname=parabolaweb-utils
pkgver=`_get_pkgver`
-pkgrel=6
+pkgrel=7
pkgdesc="Utils for the Parabola website"
arch=('any')
url="https://projects.parabolagnulinux.org/parabolaweb.git/"
@@ -18,7 +18,7 @@ depends=(
'python2-flup' # for fcgi
'postgresql' # for database
'git' # used in parabolaweb-download
- 'libretools' # used in parabolaweb-{download,update}
+ 'libretools' # used in parabolaweb-{download,update} (libremessages)
`_get_depends`)
backup=('etc/conf.d/parabolaweb')
@@ -50,7 +50,7 @@ package() {
md5sums=('SKIP'
'f162c2ce49b4cafe0a14bd4767dfea04'
- 'a73063b14746720b77fdbab851f5c161'
+ '184f3e52781747369d8e26abc9723f7c'
'd5294495f42df29d29519ebd0a8f6093'
'cc15e153f99fba82e7bb032896f655c2'
'a468016a7155b5da46521dcfc6428384'
diff --git a/parabolaweb-update b/parabolaweb-update
index 45e17c4..1789176 100644
--- a/parabolaweb-update
+++ b/parabolaweb-update
@@ -15,17 +15,18 @@ find_makefiles() {
}
clean() {
- msg "Purging old .pyc files...."
cd "$WEBDIR"
+ msg "Purging old .pyc files..."
find . -name '*.pyc' -delete
+ msg "Purging GNU Make generated files..."
for dir in `find_makefiles`; do
make -C "$WEBDIR/$dir" clean
done
}
configure() {
- msg "Checking configuration...."
cd "$WEBDIR"
+ msg "Checking configuration..."
if [[ ! -f local_settings.py ]]; then
msg2 "Configuration file missing, opening editor..."
cp local_settings.py.example local_settings.tmp.$$.py
@@ -36,7 +37,7 @@ configure() {
msg "Failed to configure, exiting"
exit 1
fi
- msg2 "Creating database...."
+ msg2 "Creating database..."
./manage.py syncdb
else
msg2 "Current configuration checks out"
@@ -44,11 +45,15 @@ configure() {
}
update-database() {
- msg "Updating database...."
cd "$WEBDIR"
- msg2 "Running migrations...."
+ msg "Updating database..."
+ msg2 "Running migrations..."
./manage.py migrate
- msg2 "Loading fixtures...."
+ if [[ -f devel/management/commands/update_types_permissions.py ]]; then
+ msg2 "Updating permission..."
+ ./manage.py update_types_permissions
+ fi
+ msg2 "Loading fixtures..."
./manage.py loaddata */fixtures/*.json
}