From: Francesco M. <fr...@us...> - 2008-02-03 21:55:36
|
Update of /cvsroot/wxlua/wxLua/distrib/autopackage In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv20598/distrib/autopackage Modified Files: default.apspec.in makeautopackage Log Message: updated stuff for the autopackage building Index: default.apspec.in =================================================================== RCS file: /cvsroot/wxlua/wxLua/distrib/autopackage/default.apspec.in,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** default.apspec.in 24 Dec 2006 13:30:56 -0000 1.4 --- default.apspec.in 3 Feb 2008 21:55:31 -0000 1.5 *************** *** 24,28 **** export APBUILD_STATIC="tiff expat" export NO_WXLUAEDIT_CHECK=1 ! prepareBuild --disable-shared --disable-debug --enable-unicode --disable-customwxbind-install --disable-precomp-headers [BuildUnprepare] --- 24,28 ---- export APBUILD_STATIC="tiff expat" export NO_WXLUAEDIT_CHECK=1 ! prepareBuild --disable-shared --disable-debug --enable-unicode --disable-customwxbind-install --disable-precomp-headers --disable-systemlua [BuildUnprepare] *************** *** 40,44 **** # statically to all wxWidgets (STC cannot be built statically # against a shared build of wx) ! ##require @wxwidgets.org/wxgtk 26.0 # remove the wxLua RPM/DEB/other native package format if installed --- 40,44 ---- # statically to all wxWidgets (STC cannot be built statically # against a shared build of wx) ! ##require @wxwidgets.org/wxgtk 28.0 # remove the wxLua RPM/DEB/other native package format if installed Index: makeautopackage =================================================================== RCS file: /cvsroot/wxlua/wxLua/distrib/autopackage/makeautopackage,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** makeautopackage 24 Dec 2006 13:30:56 -0000 1.3 --- makeautopackage 3 Feb 2008 21:55:31 -0000 1.4 *************** *** 1,14 **** ! #!/bin/sh # NB: you can also do "make autopackage" from the # main dir after you ran configure there rm -rf toupload mkdir -p toupload ! rm -f upload/*.xml upload/*.meta upload/*.package cd ../.. ! makeinstaller $@ distrib/autopackage/default.apspec if test $? = 0; then mv *.xml *.meta *.package distrib/autopackage/toupload fi --- 1,38 ---- ! #!/bin/bash # NB: you can also do "make autopackage" from the # main dir after you ran configure there + currloc="http://wxlua.sourceforge.net/wxlua/" + sshurl="shell.sf.net:/home/groups/w/wx/wxlua/htdocs/wxlua/" + + + if [[ ! -f distrib/autopackage/default.apspec ]]; then + echo + echo "Please first run the configure script in the ../.. folder in" + echo "order to create the default.apspec file from default.apspec.in" + echo + exit 1 + fi + + # remove old stuff rm -rf toupload mkdir -p toupload ! rm -f toupload/*.xml toupload/*.meta toupload/*.package + # build the package cd ../.. ! makepackage $@ distrib/autopackage/default.apspec if test $? = 0; then mv *.xml *.meta *.package distrib/autopackage/toupload + + echo + echo + echo "= REMINDER ===================================================" + echo "Now that the autopackage has been built successfully, remember" + echo "to upload the .meta, .package and .xml files to the" + echo " $currloc" + echo "folder:" + echo " scp toupload/*.xml toupload/*.meta toupload/*.package $sshurl" + echo "==============================================================" fi |