Re: [E-devel] E SVN: barbieri trunk/BINDINGS/python/python-e_dbus

2012-08-13 Thread Eduardo Lima (Etrunko)
On Sun, Aug 12, 2012 at 3:48 PM, Enlightenment SVN
no-re...@enlightenment.org wrote:
 Log:
 python-e_dbus 1.7.0

   sync with C version, including in version.

   cython and python versions updated to what I have in my machine, at
   least it's known to work.



 Author:   barbieri
 Date: 2012-08-12 11:48:05 -0700 (Sun, 12 Aug 2012)
 New Revision: 75170
 Trac: http://trac.enlightenment.org/e/changeset/75170

 Modified:
   trunk/BINDINGS/python/python-e_dbus/README 
 trunk/BINDINGS/python/python-e_dbus/configure.ac

 Modified: trunk/BINDINGS/python/python-e_dbus/README
 ===
 --- trunk/BINDINGS/python/python-e_dbus/README  2012-08-12 18:47:10 UTC (rev 
 75169)
 +++ trunk/BINDINGS/python/python-e_dbus/README  2012-08-12 18:48:05 UTC (rev 
 75170)
 @@ -3,11 +3,11 @@
  REQUIREMENTS
  

 - * E_Dbus = 1.0.0
 - * D-Bus Python = 0.80
 - * Ecore = 1.0.0(indirect, E_DBus dependency)
 - * D-Bus = 0.62 (indirect, E_DBus dependency)
 - * Python = 2.4
 + * E_Dbus = 1.7.0
 + * D-Bus Python = 1.0.0
 + * Ecore = 1.7.0(indirect, E_DBus dependency)
 + * D-Bus = 1.4.0(indirect, E_DBus dependency)
 + * Python = 2.7 (tested version, may work with older or newer)


  BUILDING AND INSTALLING

 Modified: trunk/BINDINGS/python/python-e_dbus/configure.ac
 ===
 --- trunk/BINDINGS/python/python-e_dbus/configure.ac2012-08-12 18:47:10 
 UTC (rev 75169)
 +++ trunk/BINDINGS/python/python-e_dbus/configure.ac2012-08-12 18:48:05 
 UTC (rev 75170)
 @@ -1,25 +1,24 @@
  ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
  ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
 -m4_define([v_maj], [0])
 +m4_define([v_maj], [1])
  m4_define([v_min], [7])
 -m4_define([v_mic], [3])
 -m4_define([v_rev], m4_esyscmd([(svnversion ${SVN_REPO_PATH:-.} | grep -v 
 export || echo 0) | awk -F : '{printf(%s\n, $1);}' | tr -d ' :MSP\n']))
 +m4_define([v_mic], [0])
 +m4_define([v_rev], m4_esyscmd([(svnversion ${SVN_REPO_PATH:-.} | grep -v 
 '\(export\|Unversioned directory\)' || echo 0) | awk -F : '{printf(%s\n, 
 $1);}' | tr -d ' :MSP\n']))
  m4_if(v_rev, [0], [m4_define([v_rev], m4_esyscmd([git log 2 /dev/null | 
 (grep -m1 git-svn-id || echo 0) | sed -e 's/.*@\([0-9]*\).*/\1/' | tr -d 
 '\n']))])
  ##--   When released, remove the dnl on the below line
 -dnl m4_undefine([v_rev])
 +m4_undefine([v_rev])
  ##--   When doing snapshots - change soname. remove dnl on below line
 -m4_define([relname], [ver-pre-svn-08])
 -m4_define([v_rel], [-release relname])
 +dnl m4_define([relname], [ver-pre-svn-07])
 +dnl m4_define([v_rel], [-release relname])
  ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
 -m4_ifdef([v_rev], [m4_define([v_ver], [v_maj.v_min.v_mic.v_rev])],
 -[m4_define([v_ver], [v_maj.v_min.v_mic])])
 -m4_define([lt_rev], m4_eval(v_maj + v_min))
 -m4_define([lt_cur], v_mic)
 +m4_ifdef([v_rev], [m4_define([v_ver], [v_maj.v_min.v_mic.v_rev])], 
 [m4_define([v_ver], [v_maj.v_min.v_mic])])
 +m4_define([lt_cur], m4_eval(v_maj + v_min))
 +m4_define([lt_rev], v_mic)
  m4_define([lt_age], v_min)
  ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
  ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##

 -AC_INIT([python-e_dbus], [v_ver], 
 [enlightenment-devel@lists.sourceforge.net])
 +AC_INIT([python-e_dbus], [v_ver-alpha], 
 [enlightenment-devel@lists.sourceforge.net])
  AC_PREREQ([2.65])
  AC_CONFIG_SRCDIR([configure.ac])
  AC_CONFIG_MACRO_DIR([m4])
 @@ -62,11 +61,11 @@
  fi
  AC_SUBST(pkgconfig_requires_private)

 -pkgconfig_edbus_requires_libs=dbus-python = 0.83, edbus = 1.0.0
 +pkgconfig_edbus_requires_libs=dbus-python = 1.0.0, edbus = 1.7.0

Is 1.0 actually required? Fedora and maybe other distros still ship
0.83, which is sufficient for building here.


-- 
Eduardo de Barros Lima ◤✠◢
ebl...@gmail.com

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: barbieri trunk/BINDINGS/python/python-e_dbus

2012-08-13 Thread Gustavo Sverzut Barbieri
O dont know. That's what I know work on my machine. If it works with
others, then decrease the number, it can go in our beta and final release.

On Monday, August 13, 2012, Eduardo Lima (Etrunko) wrote:

 On Sun, Aug 12, 2012 at 3:48 PM, Enlightenment SVN
 no-re...@enlightenment.org wrote:
  Log:
  python-e_dbus 1.7.0
 
sync with C version, including in version.
 
cython and python versions updated to what I have in my machine, at
least it's known to work.
 
 
 
  Author:   barbieri
  Date: 2012-08-12 11:48:05 -0700 (Sun, 12 Aug 2012)
  New Revision: 75170
  Trac: http://trac.enlightenment.org/e/changeset/75170
 
  Modified:
trunk/BINDINGS/python/python-e_dbus/README
 trunk/BINDINGS/python/python-e_dbus/configure.ac
 
  Modified: trunk/BINDINGS/python/python-e_dbus/README
  ===
  --- trunk/BINDINGS/python/python-e_dbus/README  2012-08-12 18:47:10 UTC
 (rev 75169)
  +++ trunk/BINDINGS/python/python-e_dbus/README  2012-08-12 18:48:05 UTC
 (rev 75170)
  @@ -3,11 +3,11 @@
   REQUIREMENTS
   
 
  - * E_Dbus = 1.0.0
  - * D-Bus Python = 0.80
  - * Ecore = 1.0.0(indirect, E_DBus dependency)
  - * D-Bus = 0.62 (indirect, E_DBus dependency)
  - * Python = 2.4
  + * E_Dbus = 1.7.0
  + * D-Bus Python = 1.0.0
  + * Ecore = 1.7.0(indirect, E_DBus dependency)
  + * D-Bus = 1.4.0(indirect, E_DBus dependency)
  + * Python = 2.7 (tested version, may work with older or newer)
 
 
   BUILDING AND INSTALLING
 
  Modified: trunk/BINDINGS/python/python-e_dbus/configure.ac
  ===
  --- trunk/BINDINGS/python/python-e_dbus/configure.ac2012-08-12
 18:47:10 UTC (rev 75169)
  +++ trunk/BINDINGS/python/python-e_dbus/configure.ac2012-08-12
 18:48:05 UTC (rev 75170)
  @@ -1,25 +1,24 @@
   ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
   ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
  -m4_define([v_maj], [0])
  +m4_define([v_maj], [1])
   m4_define([v_min], [7])
  -m4_define([v_mic], [3])
  -m4_define([v_rev], m4_esyscmd([(svnversion ${SVN_REPO_PATH:-.} | grep
 -v export || echo 0) | awk -F : '{printf(%s\n, $1);}' | tr -d ' :MSP\n']))
  +m4_define([v_mic], [0])
  +m4_define([v_rev], m4_esyscmd([(svnversion ${SVN_REPO_PATH:-.} | grep
 -v '\(export\|Unversioned directory\)' || echo 0) | awk -F :
 '{printf(%s\n, $1);}' | tr -d ' :MSP\n']))
   m4_if(v_rev, [0], [m4_define([v_rev], m4_esyscmd([git log 2 /dev/null
 | (grep -m1 git-svn-id || echo 0) | sed -e 's/.*@\([0-9]*\).*/\1/' | tr -d
 '\n']))])
   ##--   When released, remove the dnl on the below line
  -dnl m4_undefine([v_rev])
  +m4_undefine([v_rev])
   ##--   When doing snapshots - change soname. remove dnl on below line
  -m4_define([relname], [ver-pre-svn-08])
  -m4_define([v_rel], [-release relname])
  +dnl m4_define([relname], [ver-pre-svn-07])
  +dnl m4_define([v_rel], [-release relname])
   ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
  -m4_ifdef([v_rev], [m4_define([v_ver], [v_maj.v_min.v_mic.v_rev])],
  -[m4_define([v_ver], [v_maj.v_min.v_mic])])
  -m4_define([lt_rev], m4_eval(v_maj + v_min))
  -m4_define([lt_cur], v_mic)
  +m4_ifdef([v_rev], [m4_define([v_ver], [v_maj.v_min.v_mic.v_rev])],
 [m4_define([v_ver], [v_maj.v_min.v_mic])])
  +m4_define([lt_cur], m4_eval(v_maj + v_min))
  +m4_define([lt_rev], v_mic)
   m4_define([lt_age], v_min)
   ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
   ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
 
  -AC_INIT([python-e_dbus], [v_ver], [Is 1.0 actually required? Fedora
 and maybe other distros still ship
 0.83, which is sufficient for building here.


 --
 Eduardo de Barros Lima ◤✠◢
 ebl...@gmail.com javascript:;


 --
 Live Security Virtual Conference
 Exclusive live event will cover all the ways today's security and
 threat landscape has changed and how IT managers can respond. Discussions
 will include endpoint security, mobile security and the latest in malware
 threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net javascript:;
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel



-- 
Gustavo Sverzut Barbieri
http://profusion.mobi embedded systems
--
MSN: barbi...@gmail.com
Skype: gsbarbieri
Mobile: +55 (19) 9225-2202
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. 

Re: [E-devel] E SVN: barbieri trunk/BINDINGS/python/python-e_dbus

2012-08-13 Thread Eduardo Lima (Etrunko)
On Mon, Aug 13, 2012 at 9:30 AM, Gustavo Sverzut Barbieri
barbi...@profusion.mobi wrote:
 O dont know. That's what I know work on my machine. If it works with
 others, then decrease the number, it can go in our beta and final release.


Alright, done in 75211


-- 
Eduardo de Barros Lima ◤✠◢
ebl...@gmail.com

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel