On 07/24/2013 11:10 PM, Bruce Dubbs wrote:
On Wed, Jul 24, 2013 at 1:42 PM, Bruce Dubbs
<[email protected]> wrote:
On Wed, Jul 24, 2013 at 1:13 PM, Thanos Baloukas <[email protected]> wrote:
On 07/24/2013 07:02 PM, Bruce Dubbs wrote:
I was checking wicd so it can be updated for lfs-7.3 and I ran into a problem.
The install procedure tries to copy a lot of translations for wicd.mo to
/usr/share,  but none of these seem to exist.  I don't use this package
so I'm unsure how to proceed.

Has anyone seen this or even installed this package?

I have it installed. In the build script I see that I configured with
--no-install-i18n-man but can not remember why.

Thanks.  That's probably it.  I'll validate and update the book.

Well, that wasn't it.  It requires pybabel
(http://babel.edgewall.org/wiki/Download) which, in turn, needs setuptools
to actually get the pybabel script in /usr/bin. :(

It also fails because the babel does not recognize the ast (Asturian) locale.

One way to fix it is to just 'rm po/*.po' without babel and 'rm
po/ast.po' with it.


Glad you solved it. The --no-install-i18n-man switch worked for me.
I'm currently using Wicd-1.7.2.4 on a system running systemd.
That's why I did not report to the lists the problems I encountered.
I needed the attached patch because of this bug:

https://bugs.launchpad.net/wicd/+bug/993912

Not sure if it's systemd specific.
--

Thanos
From
bazaar.launchpad.net/~wicd-devel/wicd/experimental/diff/770
apply with 'patch -Np0 -i'

=== modified file 'wicd/misc.py'
--- wicd/misc.py  2012-04-30 19:20:47 +0000
+++ wicd/misc.py  2012-05-03 16:01:49 +0000
@@ -430,7 +430,10 @@
     """ Sanitize property names to be used in config-files. """
     allowed = string.ascii_letters + '_' + string.digits
     table = string.maketrans(allowed, ' ' * len(allowed))
-    return s.translate(None, table)
+
+    # s is a dbus.String -- since we don't allow unicode property keys,
+    # make it simple.
+    return str(s).translate(None, table)
 
 def sanitize_escaped(s):
     """ Sanitize double-escaped unicode strings. """

-- 
http://linuxfromscratch.org/mailman/listinfo/blfs-dev
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Reply via email to