X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=opencloud.spec;h=e877ff4c4959ee574fe82f955b5e35c4820c8809;hb=140f15a7b66b8a1d73bab25c8ef72b37e30866f2;hp=dab5f11ccf1592d8dcbd748930db6fe78eb416e0;hpb=44fd4cc7ec7f9e1a6f960627ce6870695846a506;p=plstackapi.git diff --git a/opencloud.spec b/opencloud.spec index dab5f11..e877ff4 100644 --- a/opencloud.spec +++ b/opencloud.spec @@ -1,7 +1,7 @@ Summary: OpenCloud core services Name: opencloud -Version: 1.0 -Release: 1 +Version: 1.0.10 +Release: 4 License: GPL+ Group: Development/Tools Source0: %{_tmppath}/%{name}-%{version}.tar.gz @@ -16,6 +16,8 @@ requires: libxslt-devel requires: python-pip requires: tar requires: gcc +requires: python-httplib2 +requires: GeoIP %description %{summary} @@ -42,8 +44,25 @@ pip-python install django-geoposition pip-python install django-extensions pip-python install django-suit pip-python install django-evolution +pip-python install django-bitfield +pip-python install django-ipware easy_install django_evolution +easy_install python_gflags +easy_install google_api_python_client + +wget -P /usr/lib/python2.7/site-packages/suit/static/suit/js http://code.jquery.com/jquery-1.9.1.min.js + +if [ ! -f /usr/share/GeoIP/GeoLiteCity.dat ]; then + rm -f /usr/share/GeoIP/GeoLiteCity.* + wget -P /usr/share/GeoIP http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz + gzip -d /usr/share/GeoIP/GeoLiteCity*.gz +fi + +if [ "$1" == 2 ] ; then + echo "UPGRADE - saving current state" + /opt/planetstack/scripts/opencloud dumpdata +fi %install rm -rf %{buildroot} @@ -51,21 +70,34 @@ mkdir -p %{buildroot} install -d %{buildroot}/opt/planetstack # in builddir -cp -rp /opt/plstackapi/planetstack %{buildroot}/opt/. +cp -rp ./planetstack %{buildroot}/opt/. -find %{buildroot}/opt/planetstack -type f -print | sed "s@^$RPM_BUILD_ROOT@@g" > %{_tmppath}/tmp-filelist +find %{buildroot}/opt/planetstack -type f -print | sed "s@^$RPM_BUILD_ROOT@@g" > %{_tmppath}/tmp-filelist +cp %{_tmppath}/tmp-filelist /tmp/tmp-filelist %clean rm -rf %{buildroot} %files -f %{_tmppath}/tmp-filelist %defattr(-,root,root,-) +%config /opt/planetstack/plstackapi_config %post -/opt/planetstack/scripts/opencloud initdb +if [ "$1" == 1 ] ; then + echo "NEW INSTALL - initializing database" + /opt/planetstack/scripts/opencloud initdb +else + echo "UPGRADE - doing evolution" + /opt/planetstack/scripts/opencloud evolvedb +fi +# start the server +/opt/planetstack/scripts/opencloud runserver %preun -rm -rf /opt/planetstack +if [ "$1" = 0 ] ; then + echo "UNINSTALL - destroying planetstack" + rm -rf /opt/planetstack +fi %changelog * Sat Feb 22 2014 Siobhan Tully 1.0.0