Re: [Evolution] evolution very slow to close



On Thu, 2018-04-19 at 06:08 -0700, Christophe PEREZ wrote:
[EXTERNAL SOURCE]



I do not think so. The changes in that previously mentioned bug will
help.

Nice.

Well, you do use vFolders. The On This Computer/Trash and On This
Computer/Junk folders are vFolders. If I recall correctly, the change
in that bug was not only for vFolders, it helped with other Maildir
operations as well.

Ok ! So I'll wait for evolution 3.26 in gentoo.



--
Sent from: 
https://urldefense.proofpoint.com/v2/url?u=http-3A__gnome-2Devolution-2Dgeneral.1774414.n4.nabble.com_&d=DwICAg&c=w8fEmIi-B5lsC0MnOiGTloUx5YmN70-3jVCmqqbXNxM&r=4r1gVE34nFB7YgioINuzq1cdGrl
IBszDh26sKYP7ux8&m=lHN9Xgw59AG-5GCzXd3k9mS8qKPhenXi7VPJ3lAwyIE&s=_P_p0q7ZSbShG41WP5qL6lqxz9KbBl0UhEzGWcS-Rc0&e=
_______________________________________________
evolution-list mailing list
evolution-list gnome org
To change your list options or unsubscribe, visit ...
https://urldefense.proofpoint.com/v2/url?u=https-3A__mail.gnome.org_mailman_listinfo_evolution-2Dlist&d=DwICAg&c=w8fEmIi-B5lsC0MnOiGTloUx5YmN70-3jVCmqqbXNxM&r=4r1gVE34nFB7YgioINuzq1cdGrlIBszDh26sKYP
7ux8&m=lHN9Xgw59AG-5GCzXd3k9mS8qKPhenXi7VPJ3lAwyIE&s=xgy4Anicd0_l9iZ4rQdRI2VDh9u-hF147KShvCTfdOE&e=


don't wait, 

build it  https://wiki.gnome.org/Apps/Evolution/Building


EX:

currently running 3.28.1 (branch gnome-3-28)

NOTE:
if you elect to build and use the below scripts as a reference, be aware
that my PREFIX (install dir) is different from the one configured in
https://wiki.gnome.org/Apps/Evolution/Building -- I install in /opt/evo.
And there are some directory paths in a couple of the scripts that you
would need to adjust to your environment, and possibly a few other
things.

[11:16:09][2s] rthompso@raker3> ~/evo-git-head 
$ pwd
/home/rthompso/evo-git-head
[11:16:10][0s] rthompso@raker3> ~/evo-git-head 
$ ls -lrt
total 53
-rwxr-xr-x  1 rthompso staff  327 Aug 31  2017 setenvironment
-rwxr-xr-x  1 rthompso staff 1647 Aug 31  2017 buildit
-rwxr-xr-x  1 rthompso staff  196 Sep 22  2017 pullupdates
-rwxr-xr-x  1 rthompso staff  419 Oct 25 07:55 runit
-rwxr-xr-x  1 rthompso staff  173 Jan  3 14:48 flushbuilddirs
drwxr-xr-x 13 rthompso staff   36 Apr  3 13:12 evolution
-rwxr-xr-x  1 rthompso staff  215 Apr  3 13:12 setbranch
drwxr-xr-x 10 rthompso staff   24 Apr  3 13:12 evolution-data-server
drwxr-xr-x  8 rthompso staff   18 Apr  3 13:12 evolution-ews
[11:16:16][0s] rthompso@raker3> ~/evo-git-head 
$ cat setenvironment
#!/bin/bash

export PREFIX=/opt/evo
export PATH=$PREFIX/bin:$PATH
export LD_LIBRARY_PATH=$PREFIX/lib
export PKG_CONFIG_PATH=$PREFIX/lib/pkgconfig:$PREFIX/share/pkgconfig
export GSETTINGS_SCHEMA_DIR=$PREFIX/share/glib-2.0/schemas
export CFLAGS="-Wno-deprecated-declarations"
export CCACHE_DIR=/home/rthompso/evo-git-head/ccache
[11:16:29][0s] rthompso@raker3> ~/evo-git-head 
$ cat buildit
#!/bin/bash

export PREFIX=/opt/evo
export PATH=$PREFIX/bin:$PATH
export LD_LIBRARY_PATH=$PREFIX/lib
export PKG_CONFIG_PATH=$PREFIX/lib/pkgconfig:$PREFIX/share/pkgconfig
export GSETTINGS_SCHEMA_DIR=$PREFIX/share/glib-2.0/schemas
export CFLAGS="-Wno-deprecated-declarations"
export CCACHE_DIR=/home/rthompso/evo-git-head/ccache

cd $HOME/evo-git-head/evolution-data-server/_build
cmake .. -G "Unix Makefiles" \
        -DCMAKE_BUILD_TYPE=Debug \
        -DCMAKE_INSTALL_PREFIX=$PREFIX \
        -DLIB_SUFFIX= \
        -DENABLE_FILE_LOCKING=fcntl \
        -DENABLE_DOT_LOCKING=OFF \
        -DENABLE_GOOGLE_AUTH=ON \
        -DENABLE_GTK=ON \
        -DENABLE_UOA=OFF \
        -DENABLE_EXAMPLES=ON \
        -DENABLE_INTROSPECTION=ON \
        -DENABLE_VALA_BINDINGS=ON \
        -DENABLE_INSTALLED_TESTS=ON \
        -DENABLE_GTK_DOC=OFF \
        -DWITH_PRIVATE_DOCS=OFF \
        -DWITH_PHONENUMBER=OFF \
        -DWITH_LIBDB=OFF

make &&  make install


cd $HOME/evo-git-head/evolution/_build
cmake .. -G "Unix Makefiles" \
        -DCMAKE_BUILD_TYPE=Debug \
        -DCMAKE_INSTALL_PREFIX=$PREFIX \
        -DLIB_SUFFIX= \
        -DENABLE_AUTOAR=OFF \
        -DENABLE_CANBERRA=OFF \
        -DENABLE_CONTACT_MAPS=OFF \
        -DENABLE_GNOME_DESKTOP=OFF \
        -DENABLE_INSTALLED_TESTS=OFF \
        -DENABLE_PST_IMPORT=OFF \
        -DENABLE_GTK_DOC=OFF \
        -DWITH_GLADE_CATALOG=OFF \
        -DWITH_HELP=OFF

make &&  make install


cd $HOME/evo-git-head/evolution-ews/_build
cmake .. -G "Unix Makefiles" \
        -DCMAKE_BUILD_TYPE=Debug \
        -DCMAKE_INSTALL_PREFIX=$PREFIX \
        -DLIB_SUFFIX=

make &&  make install
[11:16:33][0s] rthompso@raker3> ~/evo-git-head
$ cat pullupdates
#!/bin/bash

GITDIR="/home/rthompso/evo-git-head"

cd $GITDIR

for dir in evolution  evolution-data-server  evolution-ews
do
   echo "updating $GITDIR/$dir"
   cd $GITDIR/$dir
   git pull
done



[11:16:37][0s] rthompso@raker3> ~/evo-git-head
$ cat  runit
#!/bin/bash
cd /home/rthompso/evo-git-head

source $HOME/evo-git-head/setenvironment
$PREFIX/libexec/evolution-source-registry &
sleep 1
$PREFIX/libexec/evolution-calendar-factory -r &
sleep 1
$PREFIX/libexec/evolution-addressbook-factory -r &
sleep 1
$PREFIX/bin/evolution &


[11:16:45][0s] rthompso@raker3> ~/evo-git-head
$ cat flushbuilddirs
echo "rm -rf $HOME/evo-git-head/evolution-data-server/_build/*"
echo "rm -rf $HOME/evo-git-head/evolution/_build/*"
echo "rm -rf $HOME/evo-git-head/evolution-ews/_build/*"

[11:17:14][0s] rthompso@raker3> ~/evo-git-head
$ cat setbranch
#!/bin/bash

GITDIR="/home/rthompso/evo-git-head"

cd $GITDIR

for dir in evolution  evolution-data-server  evolution-ews
do
   echo "setting branch to $1"
   cd $GITDIR/$dir
   git checkout -b $1 origin/$1
done



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]