Commit ac2cc6b3 authored by Lucas Carvalho's avatar Lucas Carvalho

Moved some part of the procedure to rpmgen Makefile.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@35073 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 9fba8899
......@@ -40,24 +40,13 @@ debian-appliance:
sed -i "s,__PACKAGE_RELEASE__,$(PACKAGE_SOFTWARE_RELEASE),g" debian-tiolive-application/debian/changelog
cd debian-tiolive-application; sudo dpkg-buildpackage -b
rpm-appliance:
mandriva-rpm-appliance:
svn co https://svn.erp5.org/repos/public/erp5/trunk/utils/rpmgen rpmgen
# set the correct name erp5-5.4.6
sed -i "s,name = erp5-official-buildout,name = erp5-`cat VERSION.txt`,g" rpmgen/buildout.cfg
# set the correct version defined in the main buildout
sed -i "s,\$${checkout:location\}\/VERSION.txt,$(PACKAGE_VERSION),g" rpmgen/buildout.cfg
# set the correct release
sed -i "/release \= 001/{x;/^$$/s//0/;y/012/123/;/2/{x;s/release = 001/release = $(PACKAGE_APPLICATION_RELEASE)/;x;};x;}" rpmgen/buildout.cfg
sed -i 's,release = 001,release = $(PACKAGE_SOFTWARE_RELEASE),1' rpmgen/buildout.cfg
# it must use version defined in the main buildout
sed -i "s,name = erp5-official-buildout,name = erp5-`cat VERSION.txt`,g" rpmgen/profiles/mandriva.cfg
sed -i "s,\$${checkout:location\}\/VERSION.txt,$(PACKAGE_VERSION),g" rpmgen/profiles/mandriva.cfg
sed -i "/release \= 001/{x;/^$$/s//0/;y/012/123/;/2/{x;s/release = 001/release = $(PACKAGE_APPLICATION_RELEASE)/;x;};x;}" rpmgen/profiles/mandriva.cfg
sed -i 's,release = 001,release = $(PACKAGE_SOFTWARE_RELEASE),1' rpmgen/profiles/mandriva.cfg
sed -i "s,\$$(shell cat parts/checkout/VERSION.txt), `cat VERSION.txt`,g" rpmgen/Makefile
sudo helpers/mandriva2010.0.sh
# just make and wait...
cd rpmgen; make erp5-software
# now we have the erp5 software rpm and we need it installed to build tiolive application rpm
if test -d ~/rpmbuild/RPMS/x86_64; \
then find ~/rpmbuild/RPMS/x86_64/ -name erp5-`cat VERSION.txt`*.rpm -print0 | xargs -0 sudo urpmi --auto ; \
else find ~/rpmbuild/RPMS/i586/ -name erp5-`cat VERSION.txt`*.rpm -print0 | xargs -0 sudo urpmi --auto ; \
fi
# building tiolive appliance
sudo rpmbuild -bb rpmgen/specs/tiolive-application-buildout-mandriva2010.spec
cd rpmgen; make mandriva
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment