You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@couchdb.apache.org by Jan Lehnardt <ja...@apache.org> on 2013/10/02 15:15:19 UTC

Re: [3/6] git commit: updated refs/heads/master to 00aa8fd

I believe this breaks `make distcheck`, I get this in a loop:

Running Sphinx v1.2b1

Exception occurred:
  File "conf.py", line 35, in <module>
ValueError: Project information source wasn't found. We're assume
that it's located within "acinclude.m4" file at the root of the project, but
looks like there is no such file there.
The full traceback has been saved in /var/folders/nb/g8p41mws6znd_gmy0wk8btz40000gn/T/sphinx-err-Z7lFEZ.log, if you want to report the issue to the developers.
Please also report this if it was a user error, so that a better error message can be provided next time.
Either send bugs to the mailing list at <http://groups.google.com/group/sphinx-users/>,
or report them in the tracker at <http://bitbucket.org/birkenfeld/sphinx/issues/>. Thanks!

Best
Jan
--


On Oct 1, 2013, at 15:49 , djc@apache.org wrote:

> For consistency, always look at acinclude.m4.in for versions.
> 
> 
> Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo
> Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/950f1a4c
> Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/950f1a4c
> Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/950f1a4c
> 
> Branch: refs/heads/master
> Commit: 950f1a4c76b79f2159e98b1483120596ef773be0
> Parents: 1d21a6c
> Author: Dirkjan Ochtman <dj...@apache.org>
> Authored: Tue Oct 1 15:17:03 2013 +0200
> Committer: Dirkjan Ochtman <dj...@apache.org>
> Committed: Tue Oct 1 15:17:03 2013 +0200
> 
> ----------------------------------------------------------------------
> share/doc/src/conf.py | 7 ++-----
> 1 file changed, 2 insertions(+), 5 deletions(-)
> ----------------------------------------------------------------------
> 
> 
> http://git-wip-us.apache.org/repos/asf/couchdb/blob/950f1a4c/share/doc/src/conf.py
> ----------------------------------------------------------------------
> diff --git a/share/doc/src/conf.py b/share/doc/src/conf.py
> index b3f8325..0b16402 100644
> --- a/share/doc/src/conf.py
> +++ b/share/doc/src/conf.py
> @@ -22,11 +22,8 @@ extensions = ["sphinx.ext.todo", "sphinx.ext.extlinks", 'github',
> 
> _info = {}
> _regex = re.compile('m4_define\(\[(.+)\],\s+\[(.+)\]\)')
> -_acinclude_m4 = '../../../acinclude.m4'
> _acinclude_m4_in = '../../../acinclude.m4.in'
> -if os.path.exists(_acinclude_m4):
> -    _source = _acinclude_m4
> -elif os.path.exists(_acinclude_m4_in):
> +if os.path.exists(_acinclude_m4_in):
>     _source = _acinclude_m4_in
> else:
>     _source = None
> @@ -145,4 +142,4 @@ html_context['git_branch'] = github_branch = 'master'
> 
> github_docs_path = 'share/doc/src'
> 
> -del _info, _regex, _acinclude_m4, _acinclude_m4_in, _source
> +del _info, _regex, _acinclude_m4_in, _source
>