Re: [Evolution-hackers] latest e-d-s git head won't build out of source tree

2010-10-05 Thread Matthew Barnes
On Mon, 2010-10-04 at 17:33 +0200, Javier Jardón wrote:
 The patch attached should fix the problem

Thanks for this.  Applied to master branch of evolution-data-server and
evolution.  Our other modules are still using GLib's gettext, so I guess
they'll need to be fixed similarly when we switch them over to upstream
gettext.

___
evolution-hackers mailing list
evolution-hackers@gnome.org
To change your list options or unsubscribe, visit ...
http://mail.gnome.org/mailman/listinfo/evolution-hackers


Re: [Evolution-hackers] latest e-d-s git head won't build out of source tree

2010-10-05 Thread Reid Thompson
On Tue, 2010-10-05 at 08:16 -0400, Matthew Barnes wrote:
 On Mon, 2010-10-04 at 17:33 +0200, Javier Jardón wrote:
  The patch attached should fix the problem
 
 Thanks for this.  Applied to master branch of evolution-data-server and
 evolution.  Our other modules are still using GLib's gettext, so I guess
 they'll need to be fixed similarly when we switch them over to upstream
 gettext.
 


rthom...@raker~/evo-git-head/obj/evolution-data-server 
$ ../../evolution-data-server/autogen.sh --prefix=/usr
**Error**: Directory `../../evolution-data-server' does not look like the 
top-level evolution-data-server directory

rthom...@raker~/evo-git-head/evolution-data-server
$ git branch
  gnome-2-30
  gnome-2-32
* master

rthom...@raker~/evo-git-head/obj/evolution-data-server 
$ git log

commit 821747af30cb25382b35dc8845c9bac154e21603
Author: Matthew Barnes mbar...@redhat.com
Date:   Tue Oct 5 11:29:28 2010 -0400

Limit libgdata support to 0.6.

libgdata 0.7 will break API.  We don't want to deal with that until 0.7
is released, so cap the supported version.

commit 6954a545ac771ab999251c43c56ed4d4f673acb0
Author: Javier Jardón jjar...@gnome.org
Date:   Tue Oct 5 08:10:41 2010 -0400

Fix srcdir != builddir builds.

...snip...

___
evolution-hackers mailing list
evolution-hackers@gnome.org
To change your list options or unsubscribe, visit ...
http://mail.gnome.org/mailman/listinfo/evolution-hackers


Re: [Evolution-hackers] latest e-d-s git head won't build out of source tree

2010-10-05 Thread Reid Thompson
On Tue, 2010-10-05 at 13:15 -0400, Reid Thompson wrote:
 On Tue, 2010-10-05 at 08:16 -0400, Matthew Barnes wrote:
  On Mon, 2010-10-04 at 17:33 +0200, Javier Jardón wrote:
   The patch attached should fix the problem
  
  Thanks for this.  Applied to master branch of evolution-data-server and
  evolution.  Our other modules are still using GLib's gettext, so I guess
  they'll need to be fixed similarly when we switch them over to upstream
  gettext.
  
 
 
 rthom...@raker~/evo-git-head/obj/evolution-data-server 
 $ ../../evolution-data-server/autogen.sh --prefix=/usr
 **Error**: Directory `../../evolution-data-server' does not look like the 
 top-level evolution-data-server directory
 
 rthom...@raker~/evo-git-head/evolution-data-server
 $ git branch
   gnome-2-30
   gnome-2-32
 * master
 
 rthom...@raker~/evo-git-head/obj/evolution-data-server 
 $ git log
 
 commit 821747af30cb25382b35dc8845c9bac154e21603
 Author: Matthew Barnes mbar...@redhat.com
 Date:   Tue Oct 5 11:29:28 2010 -0400
 
 Limit libgdata support to 0.6.
 
 libgdata 0.7 will break API.  We don't want to deal with that until 0.7
 is released, so cap the supported version.
 
 commit 6954a545ac771ab999251c43c56ed4d4f673acb0
 Author: Javier Jardón jjar...@gnome.org
 Date:   Tue Oct 5 08:10:41 2010 -0400
 
 Fix srcdir != builddir builds.
 
 ...snip...
 
 ___
 evolution-hackers mailing list
 evolution-hackers@gnome.org
 To change your list options or unsubscribe, visit ...
 http://mail.gnome.org/mailman/listinfo/evolution-hackers

adding abit of debugging

diff --git a/autogen.sh b/autogen.sh
index 4e87cdc..5fdb989 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -4,8 +4,13 @@
 srcdir=`dirname $0`
 test -z $srcdir  srcdir=.
 
+echo srcdir is  $srcdir
+
 cd $srcdir
 
+echo pwd is  $PWD
+ls
+
 PKG_NAME=evolution-data-server
 REQUIRED_AUTOCONF_VERSION=2.58
 REQUIRED_AUTOMAKE_VERSION=1.10


$ ../../evolution-data-server/autogen.sh 
srcdir is  ../../evolution-data-server
pwd is  /home/rthompso/evo-git-head/evolution-data-server
aclocal.m4  depcomp   ltmain.sh
addressbook docs  m4
art evolution-data-server.doapMAINTAINERS
AUTHORS evolution-data-server.pc.in   Makefile.am
autogen.sh  evolution-data-server-zip.in  Makefile.in
autom4te.cache  git.mkmarshal.mk
calendarglib-gen.mak  missing
camel   gtk-doc.make  mkinstalldirs
ChangeLog   HACKING   NEWS
compile iconv-detect.cpo
config.guessinstall-shREADME
config.h.in intltool-extract.in   servers
config.h.in~intltool-merge.in test.sh
config.sub  intltool-update.intest.sh.clean
configure   libebackend   TODO
configure.aclibedataserver
COPYING libedataserverui
**Error**: Directory `../../evolution-data-server' does not look like
the top-level evolution-data-server directory

so I think it's ending up with
pwd being /home/rthompso/evo-git-head/evolution-data-server
and the tests being
../../evolution-data-server/configure.ac
../../evolution-data-server/ChangeLog
../../evolution-data-server/calendar

which fails??


___
evolution-hackers mailing list
evolution-hackers@gnome.org
To change your list options or unsubscribe, visit ...
http://mail.gnome.org/mailman/listinfo/evolution-hackers


Re: [Evolution-hackers] latest e-d-s git head won't build out of source tree

2010-10-04 Thread Milan Crha
On Fri, 2010-10-01 at 10:40 -0400, Reid Thompson wrote:
 rthom...@raker~/evo-git-head/obj/evolution-data-server   
   
 $ ../../evolution-data-server/autogen.sh 
 /usr/bin/gnome-autogen.sh
 autopoint: *** Missing configure.in or configure.ac, please cd to your 
 package first.
 autopoint: *** Stop.
 rthom...@raker~/evo-git-head/obj/evolution-data-server


Hi,
might be caused by this commit:

http://git.gnome.org/browse/evolution-data-server/commit/?id=5440f849

though I have no idea what it does and what it should do. Thus CC'ing
the author.

Javier, do you have an idea on this, please?
Bye,
Milan

___
evolution-hackers mailing list
evolution-hackers@gnome.org
To change your list options or unsubscribe, visit ...
http://mail.gnome.org/mailman/listinfo/evolution-hackers


Re: [Evolution-hackers] latest e-d-s git head won't build out of source tree

2010-10-04 Thread Javier Jardón
2010/10/4 Milan Crha mc...@redhat.com:
 On Fri, 2010-10-01 at 10:40 -0400, Reid Thompson wrote:
 rthom...@raker~/evo-git-head/obj/evolution-data-server
 $ ../../evolution-data-server/autogen.sh
 /usr/bin/gnome-autogen.sh
 autopoint: *** Missing configure.in or configure.ac, please cd to your 
 package first.
 autopoint: *** Stop.
 rthom...@raker~/evo-git-head/obj/evolution-data-server

 Javier, do you have an idea on this, please?
        Bye,
        Milan

The patch attached should fix the problem

Regards,
-- 
Javier Jardón Cabezas


0001-Fix-srcdir-buildir-builds.patch
Description: Binary data
___
evolution-hackers mailing list
evolution-hackers@gnome.org
To change your list options or unsubscribe, visit ...
http://mail.gnome.org/mailman/listinfo/evolution-hackers


[Evolution-hackers] latest e-d-s git head won't build out of source tree

2010-10-03 Thread Reid Thompson
This used to work...
is the issue something on my side, or something changed at the source
level.

source is in ~/evo-git-head/evolution-data-server
build is in ~/evo-git-head/obj/evolution-data-server

rthom...@raker~/evo-git-head   

$ cd obj/evolution-data-server/
rthom...@raker~/evo-git-head/obj/evolution-data-server 

$ ../../evolution-data-server/autogen.sh 
/usr/bin/gnome-autogen.sh
autopoint: *** Missing configure.in or configure.ac, please cd to your package 
first.
autopoint: *** Stop.
rthom...@raker~/evo-git-head/obj/evolution-data-server

___
evolution-hackers mailing list
evolution-hackers@gnome.org
To change your list options or unsubscribe, visit ...
http://mail.gnome.org/mailman/listinfo/evolution-hackers