Em 22-12-2010 17:26, Dave Andreoli escreveu: > I dont want to remove the script from svn, but I would like if we could > discuss > it's feature. > Your script lacks a lot of functionality (present in easy_e17 and > reasy), so we need > to make your script better. As I told you (and also Tom agree) the > FOLDER-SVNREV > is crazy: I compile the whole stuff once a week and frequently only > just some pkgs, > so that feature really hurt me.
What I personally do in a Fedora 14 box and because I like to have cleanly built RPMs: function e17build { TS=`date +%Y%m%d%H%M` make distclean && ./autogen.sh && make dist-gzip && mv $1*.tar.gz /tmp/ && sudo su - makerpm -c -- "rpmbuild --define \"_rel 0.$TS\" -tb /tmp/$1*.tar.gz" && sudo rpm -Fvh /home/makerpm/rpmbuild/RPMS/x86_64/$1-*$TS*rpm } Then you can do stuff like: for PKG in eina eet evas ecore efreet e_dbus embryo edje ; do (cd $PKG && e17build $PKG) &> /tmp/$PKG.log done (cd TMP/st/elementary && e17build elementary) &> /tmp/elm.log (cd PROTO/azy && e17build azy) &> /tmp/azy.log Sure it's not testing for broken packages and there are other caveats, but as long as you check the logs, you can just run it and leave it working while you have some coffee or something. Rui ------------------------------------------------------------------------------ Learn how Oracle Real Application Clusters (RAC) One Node allows customers to consolidate database storage, standardize their database environment, and, should the need arise, upgrade to a full multi-node Oracle RAC database without downtime or disruption http://p.sf.net/sfu/oracle-sfdevnl _______________________________________________ enlightenment-devel mailing list enlightenment-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-devel