[Valvula] axl source - python axl missing

Francis Brosnan Blázquez francis en aspl.es
Mie Mar 4 18:23:35 CET 2015


El mié, 04-03-2015 a las 14:41 +0100, Martin Thomas Schrott escribió:

> Hello Francis,


Hello Martin,


> today I went on with the setup, and as you suggested I tried a
> python import axl
> 
> which results in an error, that no such module was available.


Ok,


> So even if everything installed successfully from your sources and the
> database already works "OK" the module for python is still missing.


Ok, the axl python module isn't fully required to have valvula working.
It is for the valvulad-mgr.py
manager which will help you to setup valvula connection with
postifix...but any of the work done 
by this script can be done manually. 


> any idea where that got lost? :-)Maybe it just got copied to a wrong
> path, I will have to check that. 
> 
> Am I right, that this is not really needed and just a tool to set the
> config up more easily? 


That's right Martin. You don't needed to have valvula working...however,
it does help to have it 
so you can easily connect valvula to postfix. If it is already
connected, you can perfectly leave 
without it.

Just for the record, when run ran the ./configure for Axl library, what
did it show for the following lighted lines?


        Python includes: -I/usr/include/python2.6
        -I/usr/include/python2.6
        Python development headers status: yes
        Python install dir OK: /usr/lib/python2.6/dist-packages
        Detected gcc compiler: gcc, adding options: -Wstrict-prototypes
        -Wall -Werror -g -ansi
        checking for pkg-config... yes
        checking for doxygen... yes
        Checking vasprintf support: yes
        vasprintf support found
        platform found: x86_64-unknown-linux-gnu
        configure: creating ./config.status
        Host detected: x86_64-unknown-linux-gnu
        config.status: creating Makefile
        config.status: creating Makefile.win
        config.status: creating src/Makefile
        config.status: creating ns/Makefile
        config.status: creating doc/Makefile
        config.status: creating doc/axl-doc.doxygen
        config.status: creating babel/Makefile
        config.status: creating test/Makefile
        config.status: creating knife/Makefile
        config.status: creating py-axl/Makefile
        config.status: creating py-axl/__init__.py
        config.status: creating py-axl/doc/conf.py
        config.status: creating py-axl/doc/Makefile
        config.status: creating axl.pc
        config.status: creating axl-ns.pc
        config.status: creating axl-babel.pc
        config.status: creating config.h
        config.status: config.h is unchanged
        config.status: executing depfiles commands
        config.status: executing libtool commands
        config.status: executing axl_config.h commands
        config.status: axl_config.h is unchanged
        ------------------------------------------
        --       LibAXL LIBRARY SETTINGS        --
        ------------------------------------------
           Installation prefix:          /usr
           Compiler:                     gcc
           Build Axl Namespace support:  yes
           Build Axl Library tests:      yes
           Build Axl Knife:              yes
           Build Axl Library debug log:  yes
           Build PyAxl:                  yes
           Build Axl Library doc:        enabled
           vasprintf support:            yes
        ------------------------------------------
        --     NOW TYPE: make; make install     --
        ------------------------------------------


The python support for axl is optional so I guess it wasn't built
without it. Maybe you try
to install python-devel package and rerun ./configure for axl and check
that above items
are enabled.

If that's the case, after installing it, you should be able to run
"python" and then "import axl"
without any issue, and hence, you should be able to run valvulad-mgr.py
without any problem.

Best Regards,


> Best,
> Martin
> 
> 
> 
> Am 03.03.2015 um 15:27 schrieb Francis Brosnan Blázquez:
> 
> > 
> > El mar, 03-03-2015 a las 15:24 +0100, Martin Thomas Schrott
> > escribió:
> > 
> > > Hi Francis, hi Laurent,
> > 
> > 
> > Hi Martin,
> > 
> > 
> > > there is no package python-axl for CENTOS and libpython2.7 is
> > > called python-libs.
> > 
> > 
> > Ok, Laurent refes to the debian/ubuntu package python-axl
> > 
> > Because you did install axl from sources, you already have it. That
> > package, python-axl
> > provides the python module axl. You can check that you have it by
> > running:
> > 
> > python
> > >>> import axl
> > # no failure should happen here
> > 
> > 
> > > beside that I was able to get everything installed now, after
> > > removing everything and starting from the beginning.
> > 
> > 
> > Perfect,
> > 
> > 
> > > Francis, here is how it works on CENTOS7 if you like to publish a
> > > working howto:
> > > 
> > > how to install valvula on centos7 
> > > yum install gcc
> > > yum install doxygen
> > > yum install mariadb
> > > yum install mariadb-devel
> > > 
> > > wget http://www.aspl.es/xml/downloads/axl-0.6.9.b5308.g5312.tar.gz
> > > tar zxvf axl-*
> > > cd axl-*
> > > ./configure
> > > make
> > > make install
> > > export PKG_CONFIG_PATH='/usr/local/lib/pkgconfig'
> > > 
> > > cd ~
> > > wget http://www.aspl.es/valvula/downloads/valvula-1.0.5.tar.gz
> > > tar xzvf  valvula-1.*
> > > cd valvula-1.*
> > > ./configure
> > > make
> > > make install
> > 
> > 
> > Perfect. I'll update documentation with this notes,
> > Best Regards,
> > 
> > 
> > > thanks for your help.
> > > 
> > > best wishes,
> > > Martin
> > > 
> > > 
> > > 
> > > 
> > > Am 03.03.2015 um 13:23 schrieb Francis Brosnan Blázquez:
> > > 
> > > 
> > > > Hello Martin,
> > > > 
> > > > For some reason, your pkg-config installation does not want to
> > > > use axl.pc files
> > > > located at /usr/local/lib/pkg-config
> > > > 
> > > > Try the following. Uninstall it as it is, reconfigure to with
> > > > standard location and
> > > > reinstall again:
> > > > 
> > > > >> cd axl-build-sources
> > > > >> make uninstall
> > > > >> make clean
> > > > >> ./configure --prefix=/usr --sysconfdir=/etc
> > > > >> make
> > > > >> make install
> > > > 
> > > > After that, you should have a file located
> > > > at /usr/lib/pkgconfig/axl.pc that will enable
> > > > your system to successfully run the following command:
> > > > 
> > > > >> pkg-config --libs --cflags axl
> > > > -I/usr/include/axl  -laxl -lm  
> > > > 
> > > > After that, rerun valvula configuration to see it if works.
> > > > 
> > > > Alternatively (depending on your needs), you can try setting up
> > > > pkg-config paths 
> > > > so it loads configurations found at /usr/local/lib/pkg-config by
> > > > running:
> > > > 
> > > > >> export
> > > > PKG_CONFIG_PATH=/usr/lib/pkg-config:/usr/local/lib/pkg-config
> > > > 
> > > > ...and then, rerun valvula configuration..
> > > > 
> > > > Best Regards,
> > > > 
> > > > 
> > > > 
> > > > > Hello Francis,
> > > > > 
> > > > > okay, axl seems to have been installed again, there are some
> > > > > files in /usr/local/lib ...libaxl*
> > > > > What I did:
> > > > > uninstall axl, download the src, extract, configure, make,
> > > > > make install.
> > > > > 
> > > > > Now, valvula does not find axl anymore:
> > > > > 
> > > > > checking for AXL... no
> > > > > configure: error: Package requirements (axl >= 0.6.4) were not
> > > > > met:
> > > > > 
> > > > > No package 'axl' found
> > > > > 
> > > > > Consider adjusting the PKG_CONFIG_PATH environment variable if
> > > > > you
> > > > > installed software in a non-standard prefix.
> > > > > 
> > > > > Alternatively, you may set the environment variables
> > > > > AXL_CFLAGS
> > > > > and AXL_LIBS to avoid the need to call pkg-config.
> > > > > See the pkg-config man page for more details.
> > > > > 
> > > > > 
> > > > > so there still seems to be something messed up in one of the
> > > > > sources.
> > > > > 
> > > > > Thanks,
> > > > > Martin
> > > > > 
> > > > > 
> > > > > 
> > > > > Am 03.03.2015 um 12:24 schrieb Francis Brosnan Blázquez:
> > > > > 
> > > > > 
> > > > > > El mar, 03-03-2015 a las 12:12 +0100, Martin Thomas Schrott
> > > > > > escribió:
> > > > > > 
> > > > > > > Thanks Francis,
> > > > > > 
> > > > > > 
> > > > > > Hi Martin,
> > > > > > 
> > > > > > 
> > > > > > > for the quick help and fixed version. Your welcome,
> > > > > > > interesting, that nobody did report the missing files
> > > > > > > until now :-)
> > > > > > 
> > > > > > 
> > > > > > I guess someone must be the first :-) 
> > > > > > 
> > > > > > 
> > > > > > > configure works fine now. sadly, now we have another
> > > > > > > issue, think this time it is related to the lib axl - here
> > > > > > > a short extract of the make commands result:
> > > > > > > 
> > > > > > > --
> > > > > > > /usr/bin/ld: /usr/lib64/libaxl.a(axl_error.o): relocation
> > > > > > > R_X86_64_32 against `.rodata.str1.1' can not be used when
> > > > > > > making a shared object; recompile with -fPIC
> > > > > > > /usr/lib64/libaxl.a: could not read symbols: Bad value
> > > > > > > collect2: error: ld returned 1 exit status
> > > > > > > make[2]: *** [libvalvula.la] Error 1
> > > > > > > make[2]: Leaving directory `/root/valvula-1.0.5/lib'
> > > > > > > make[1]: *** [all-recursive] Error 1
> > > > > > > make[1]: Leaving directory `/root/valvula-1.0.5'
> > > > > > > ...
> > > > > > > --
> > > > > > > 
> > > > > > > we used a pkg from pkgs.org to install axl on our CENTOS7
> > > > > > > system, as we did not find any files on your page, for
> > > > > > > linux systems.  Our version is:
> > > > > > > 
> > > > > > > axl-0.6.8-20120112.1.x86_64
> > > > > > > 
> > > > > > > Any ideas whats going on? 
> > > > > > 
> > > > > > 
> > > > > > Given the error, it seems the quality of the package
> > > > > > provided by pkgs.org is not good (I wasn't aware they were
> > > > > > available there). I recommend you to install axl with the
> > > > > > usual standard vodoo (it'll work):
> > > > > > 
> > > > > > >> wget
> > > > > > http://www.aspl.es/xml/downloads/axl-0.6.9.b5308.g5312.tar.gz
> > > > > > >> tar zxvf axl-0.6.9.b5308.g5312.tar.gz
> > > > > > >> cd axl-0.6.9.b5308.g5312
> > > > > > >> ./configure
> > > > > > >> make
> > > > > > >> make install
> > > > > > 
> > > > > > ...And of course, please, remove first that axl-0.6.8
> > > > > > package,
> > > > > > 
> > > > > > After that, you shoul be able to build valvula without any
> > > > > > issue,
> > > > > > 
> > > > > > Best Regards,
> > > > > > 
> > > > > > 
> > > > > > 
> > > > > > > Thanks again,
> > > > > > > martin
> > > > > > > 
> > > > > > > Am 03.03.2015 um 11:03 schrieb Francis Brosnan Blázquez:
> > > > > > > 
> > > > > > > 
> > > > > > > > Hi there Martin,
> > > > > > > > 
> > > > > > > > Thanks for reporting. I've checked and fixed all missing
> > > > > > > > references for the dist .targz
> > > > > > > > file. Please, have a reference to the next stable
> > > > > > > > release that includes this fixings 
> > > > > > > > as well as others:
> > > > > > > > 
> > > > > > > > http://www.aspl.es/valvula/downloads/valvula-1.0.5.tar.gz
> > > > > > > > 
> > > > > > > > Let us know your progress,
> > > > > > > > Best Regards,
> > > > > > > > 
> > > > > > > > 
> > > > > > > > > dear all,
> > > > > > > > > 
> > > > > > > > > we try to install valvula on a centos7 system.
> > > > > > > > > 
> > > > > > > > > we installed the axl and the gcc to meet the prerequisites. MYSQL-devel 
> > > > > > > > > (mariadb-devel) also exists.
> > > > > > > > > After that we downloaded the src file of the current release and 
> > > > > > > > > extracted it, following the instructions.
> > > > > > > > > 
> > > > > > > > > But there seems to be an error in the source package, because
> > > > > > > > > ./configure
> > > > > > > > > gives only the following result:
> > > > > > > > > config.status: error: cannot find input file: `doc/valvula.doxygen.in'
> > > > > > > > > 
> > > > > > > > > 
> > > > > > > > > may the doc files be missing in the src file? the option to disable 
> > > > > > > > > (enable) valvula-doc does not work either, it gives the same error 
> > > > > > > > > message, when I try to disable doc creation.
> > > > > > > > > Wonder how others could install valvula, am I doing something wrong?
> > > > > > > > > hope you can help us!
> > > > > > > > > 
> > > > > > > > > cheers,
> > > > > > > > > Martin
> > > > > > > > > 
> > > > > > > > > _______________________________________________
> > > > > > > > > Valvula mailing list
> > > > > > > > > Valvula en lists.aspl.es
> > > > > > > > > http://lists.aspl.es/cgi-bin/mailman/listinfo/valvula
> > > > > > > > 
> > > > > > > > 
> > > > > > > > -- 
> > > > > > > > Francis Brosnan Blázquez <francis.brosnan en aspl.es>
> > > > > > > > ASPL
> > > > > > > > 91 134 14 22 - 91 134 14 45 - 91 116 07 57
> > > > > > > > 
> > > > > > > > AVISO LEGAL
> > > > > > > > 
> > > > > > > > Este mensaje se dirige exclusivamente a su destinatario. Los datos
> > > > > > > > incluidos en el presente correo son confidenciales y sometidos a secreto
> > > > > > > > profesional, se prohíbe divulgarlos, en virtud de las leyes vigentes. Si
> > > > > > > > usted no lo es y lo ha recibido por error o tiene conocimiento del mismo
> > > > > > > > por cualquier motivo, le rogamos que nos lo comunique por este medio y
> > > > > > > > proceda a destruirlo o borrarlo.
> > > > > > > > 
> > > > > > > > En virtud de lo dispuesto en la Ley Orgánica 15/1999, de 13 de
> > > > > > > > diciembre, de Protección de Datos de Carácter Personal, le informamos de
> > > > > > > > que sus datos de carácter personal, recogidos de fuentes accesibles al
> > > > > > > > público o datos que usted nos ha facilitado previamente, proceden de
> > > > > > > > bases de datos propiedad de Advanced Software Production Line, S.L.
> > > > > > > > (ASPL). No obstante, usted puede ejercitar sus derechos de acceso,
> > > > > > > > rectificación, cancelación y oposición dispuestos en la mencionada Ley
> > > > > > > > Orgánica, notificándolo por escrito a:
> > > > > > > > ASPL - Protección Datos, C/Antonio Suárez 10 A-102, 28802, Alcalá de
> > > > > > > > Henares (Madrid).
> > > > > > > 
> > > > > > > 
> > > > > > 
> > > > > > 
> > > > > > -- 
> > > > > > Francis Brosnan Blázquez <francis.brosnan en aspl.es>
> > > > > > ASPL
> > > > > > 91 134 14 22 - 91 134 14 45 - 91 116 07 57
> > > > > > 
> > > > > > AVISO LEGAL
> > > > > > 
> > > > > > Este mensaje se dirige exclusivamente a su destinatario. Los datos
> > > > > > incluidos en el presente correo son confidenciales y sometidos a secreto
> > > > > > profesional, se prohíbe divulgarlos, en virtud de las leyes vigentes. Si
> > > > > > usted no lo es y lo ha recibido por error o tiene conocimiento del mismo
> > > > > > por cualquier motivo, le rogamos que nos lo comunique por este medio y
> > > > > > proceda a destruirlo o borrarlo.
> > > > > > 
> > > > > > En virtud de lo dispuesto en la Ley Orgánica 15/1999, de 13 de
> > > > > > diciembre, de Protección de Datos de Carácter Personal, le informamos de
> > > > > > que sus datos de carácter personal, recogidos de fuentes accesibles al
> > > > > > público o datos que usted nos ha facilitado previamente, proceden de
> > > > > > bases de datos propiedad de Advanced Software Production Line, S.L.
> > > > > > (ASPL). No obstante, usted puede ejercitar sus derechos de acceso,
> > > > > > rectificación, cancelación y oposición dispuestos en la mencionada Ley
> > > > > > Orgánica, notificándolo por escrito a:
> > > > > > ASPL - Protección Datos, C/Antonio Suárez 10 A-102, 28802, Alcalá de
> > > > > > Henares (Madrid).
> > > > > 
> > > > > 
> > > > 
> > > > 
> > > > -- 
> > > > Francis Brosnan Blázquez <francis.brosnan en aspl.es>
> > > > ASPL
> > > > 91 134 14 22 - 91 134 14 45 - 91 116 07 57
> > > > 
> > > > AVISO LEGAL
> > > > 
> > > > Este mensaje se dirige exclusivamente a su destinatario. Los datos
> > > > incluidos en el presente correo son confidenciales y sometidos a secreto
> > > > profesional, se prohíbe divulgarlos, en virtud de las leyes vigentes. Si
> > > > usted no lo es y lo ha recibido por error o tiene conocimiento del mismo
> > > > por cualquier motivo, le rogamos que nos lo comunique por este medio y
> > > > proceda a destruirlo o borrarlo.
> > > > 
> > > > En virtud de lo dispuesto en la Ley Orgánica 15/1999, de 13 de
> > > > diciembre, de Protección de Datos de Carácter Personal, le informamos de
> > > > que sus datos de carácter personal, recogidos de fuentes accesibles al
> > > > público o datos que usted nos ha facilitado previamente, proceden de
> > > > bases de datos propiedad de Advanced Software Production Line, S.L.
> > > > (ASPL). No obstante, usted puede ejercitar sus derechos de acceso,
> > > > rectificación, cancelación y oposición dispuestos en la mencionada Ley
> > > > Orgánica, notificándolo por escrito a:
> > > > ASPL - Protección Datos, C/Antonio Suárez 10 A-102, 28802, Alcalá de
> > > > Henares (Madrid).
> > > 
> > > 
> > 
> > 
> > -- 
> > Francis Brosnan Blázquez <francis.brosnan en aspl.es>
> > ASPL
> > 91 134 14 22 - 91 134 14 45 - 91 116 07 57
> > 
> > AVISO LEGAL
> > 
> > Este mensaje se dirige exclusivamente a su destinatario. Los datos
> > incluidos en el presente correo son confidenciales y sometidos a secreto
> > profesional, se prohíbe divulgarlos, en virtud de las leyes vigentes. Si
> > usted no lo es y lo ha recibido por error o tiene conocimiento del mismo
> > por cualquier motivo, le rogamos que nos lo comunique por este medio y
> > proceda a destruirlo o borrarlo.
> > 
> > En virtud de lo dispuesto en la Ley Orgánica 15/1999, de 13 de
> > diciembre, de Protección de Datos de Carácter Personal, le informamos de
> > que sus datos de carácter personal, recogidos de fuentes accesibles al
> > público o datos que usted nos ha facilitado previamente, proceden de
> > bases de datos propiedad de Advanced Software Production Line, S.L.
> > (ASPL). No obstante, usted puede ejercitar sus derechos de acceso,
> > rectificación, cancelación y oposición dispuestos en la mencionada Ley
> > Orgánica, notificándolo por escrito a:
> > ASPL - Protección Datos, C/Antonio Suárez 10 A-102, 28802, Alcalá de
> > Henares (Madrid).
> 
> 


-- 
Francis Brosnan Blázquez <francis.brosnan en aspl.es>
ASPL
91 134 14 22 - 91 134 14 45 - 91 116 07 57

AVISO LEGAL

Este mensaje se dirige exclusivamente a su destinatario. Los datos
incluidos en el presente correo son confidenciales y sometidos a secreto
profesional, se prohíbe divulgarlos, en virtud de las leyes vigentes. Si
usted no lo es y lo ha recibido por error o tiene conocimiento del mismo
por cualquier motivo, le rogamos que nos lo comunique por este medio y
proceda a destruirlo o borrarlo.

En virtud de lo dispuesto en la Ley Orgánica 15/1999, de 13 de
diciembre, de Protección de Datos de Carácter Personal, le informamos de
que sus datos de carácter personal, recogidos de fuentes accesibles al
público o datos que usted nos ha facilitado previamente, proceden de
bases de datos propiedad de Advanced Software Production Line, S.L.
(ASPL). No obstante, usted puede ejercitar sus derechos de acceso,
rectificación, cancelación y oposición dispuestos en la mencionada Ley
Orgánica, notificándolo por escrito a:
ASPL - Protección Datos, C/Antonio Suárez 10 A-102, 28802, Alcalá de
Henares (Madrid).
------------ próxima parte ------------
Se ha borrado un adjunto en formato HTML...
URL: <http://lists.aspl.es/pipermail/valvula/attachments/20150304/395dc3a6/attachment-0001.html>


Más información sobre la lista de distribución Valvula