ok, so you want to revert E17 to a previous revision, but you didn't do a backup of that revision? Not a problem anymore with this handy little script I made, which could possibly be included in easy_e17.sh soon enough! Anyway, here is the script which I made:
#!/bin/sh
for filename in /var/cache/e17_src/*
do
if [ -d $filename ]
then
cd $filename
svn merge -rHEAD:${1} .
cd ..
fi
done
Now, finallyjust run the script posted above as so:
sudo /path-to-script.sh ${cd /var/cache/e17_src/e && svn info --revision {YYYY-MM-DD} | grep Revision | cut -d ' ' -f 2}
Replacing YYYY with the year as 4 digits, MM with the month as two digits, and DD as the day with two digits. Now, finally, just add this to the end of your /etc/easy_e17.conf:
-s
That's it, now you're running on a custom E17 revision which won't be updated when you install new stuff with easy_e17.sh! To install this revision, just run:
sudo easy_e17.sh -iAnd then restart E17. Presto, you're running on an older version of E17!