Re: [Vala] Any xUnit framework for Vala?

2010-12-27 Thread Ildar Mulyukov
project itself does some magic with testwrapper.sh, is it preferred solution? I can't see any State of the Art or well-known Unit testing framework for Vala around here, none of the existing is widely used. Regards, -- Ildar Mulyukov, free SW designer/programmer

Re: [Vala] Proposed Vala Logo

2010-09-01 Thread Ildar Mulyukov
. I could be coding a little too much Scheme, lately… I don't agree the proposed logo is similar to Racket. Best regards, -- Ildar Mulyukov, free SW designer/programmer email: il...@users.sourceforge.net home: http://tuganger.narod.ru/ ALT Linux

Re: [Vala] Supressing specific warnings

2010-07-08 Thread Ildar Mulyukov
. This suggestion was (generally) declined last time. See attachment. Best regards, -- Ildar Mulyukov, free SW designer/programmer email: il...@users.sourceforge.net home: http://tuganger.narod.ru/ ALT Linux Sisyphus

Re: [Vala] A problem in writing some ValaIde plugin..

2010-03-30 Thread Ildar Mulyukov
Hi On 30.03.2010 14:15:53, Arkadi Viner wrote: valide: symbol lookup error: /usr/local/lib/valide/plugins/terminal/libterminal.so: undefined symbol: vte_terminal_new sounds like underlinked library. You need to add -lvte to the LD_ADD or corresponding construct. Best regards, -- Ildar

Re: [Vala] [ANNOUNCE] Libgee 0.5.0 - GObject collection library

2009-09-29 Thread Ildar Mulyukov
is not the only reason. Ok. But IMHO you should at least note this somewhere. And, better, put a check in configure.in -- Ildar Mulyukov, free SW designer/programmer email: il...@users.sourceforge.net home: http://tuganger.narod.ru/ ALT Linux Sisyphus

Re: [Vala] supressing warnings

2009-09-08 Thread Ildar Mulyukov
. And Valac is the 1st in the list. I'll file a feature request for it as soon as I get a faster internet (say, at the weekend). Best regards, -- Ildar Mulyukov, free SW designer/programmer email: il...@users.sourceforge.net home: http

Re: [Vala] Making libraries with Vala

2009-09-07 Thread Ildar Mulyukov
sad. -- Ildar Mulyukov, free SW designer/programmer email: il...@users.sourceforge.net home: http://tuganger.narod.ru/ ALT Linux Sisyphus ___ Vala-list

Re: [Vala] Making libraries with Vala

2009-09-06 Thread Ildar Mulyukov
Hi! Abderrahim, thank you. Your letter helped me a lot. On 04.09.2009 13:39:53, Abderrahim Kitouni wrote: 2009/9/4 Ildar Mulyukov il...@users.sourceforge.net: 1. Valac supports --library option, but still cannot build one with one shot - it cannot link a library (is it true?) yes

Re: [Vala] [RFC] Testing framework improvements

2009-08-08 Thread Ildar Mulyukov
could get test method names directly from the library. Use objdump for example. Jan, it's not the 1st time when Unit tests are discussed. Have a look at discussions on Oct. and Dec. last year. (subj. GTest and VUnit). Hope you did that already. Best regards, Ildar -- Ildar Mulyukov, free

Re: [Vala] libgee test failed

2009-01-19 Thread Ildar Mulyukov
Hi! On 19.01.2009 14:40:55, Jürg Billeter wrote: On Fri, 2009-01-02 at 00:17 +0600, Ildar Mulyukov wrote: Hi, everybody! Last time (for about a month) I see libgee make check FAILED: make[2]: Entering directory `/tmp/libgee/tests' TEST: testarraylist... (pid=30778

[Vala] libgee test failed

2009-01-01 Thread Ildar Mulyukov
. Best regards, -- Ildar Mulyukov, free SW designer/programmer email: il...@users.sourceforge.net home: http://tuganger.narod.ru/ ALT Linux Sisyphus

Re: [Vala] inline C

2008-12-16 Thread Ildar Mulyukov
needs inline C. Vala already makes it pretty easy to work on a low level by supporting pointers and simple ad-hoc bindings with the `extern' modifier. Agree. Ok, I think that's enough for the discussion. Thank you everybody who expressed here. Best regards, Ildar -- Ildar Mulyukov, free

Re: [Vala] [ModuleInit] and __attribute__ ((constructor)) ?

2008-12-13 Thread Ildar Mulyukov
Hi, Jürg! thanks for your answers. On 12.12.2008 14:04:51, Jürg Billeter wrote: Hi Ildar, On Wed, 2008-10-15 at 03:03 +0600, Ildar Mulyukov wrote: I am very new to Vala. Great thanks to Jürg and participants. I've a question (or it's really two separate questions?) 1. What does

[Vala] inline C

2008-12-13 Thread Ildar Mulyukov
think about having C inline in Vala? This looks quite natural for Vala. Especially while Vala is quite unperfect (having 304 open bugs). This could ease implementing workarounds ;) Best regards, Ildar -- Ildar Mulyukov, free SW designer/programmer

Re: [Vala] inline C

2008-12-13 Thread Ildar Mulyukov
On 14.12.2008 00:00:31, Jamie McCracken wrote: On Sat, 2008-12-13 at 17:46 +, Karl Lattimer wrote: On Sat, 2008-12-13 at 23:44 +0600, Ildar Mulyukov wrote: What do you think about having C inline in Vala? This looks quite natural for Vala. Especially while Vala is quite unperfect (having

Re: [Vala] inline C

2008-12-13 Thread Ildar Mulyukov
something else? -- Ildar Mulyukov, free SW designer/programmer email: il...@users.sourceforge.net home: http://tuganger.narod.ru/ ALT Linux Sisyphus ___ Vala

Re: [Vala] Interface properties: private accessors

2008-11-30 Thread Ildar Mulyukov
On 27.11.2008 10:39:27, Ildar Mulyukov wrote: % valac cl1.vala if2.vala /tmp/.private/ildar/cc8mGVTD.o: In function `ns1_cl1_constructor': cl1.c:(.text+0x160): undefined reference to `ns1_i1_set_str1' Why this stupid compiler tries to use _interface's_accessor_? Any comments? This is what

Re: [Vala] Interface properties

2008-11-26 Thread Ildar Mulyukov
On 22.11.2008 18:12:06, Ildar Mulyukov wrote: Hello, just another one try to use a property in an interface. ... 2. Because of the point 1, one have to write such strange things as: public string str1 { get; private set; } Though it doesn't work either (i.e. valac cl1.vala if2

[Vala] Interface properties

2008-11-22 Thread Ildar Mulyukov
of the declaration in interface. 2. Prohibit private accessors in interfaces. I attach a small example. Best regards, Ildar -- Ildar Mulyukov, free SW designer/programmer email: [EMAIL PROTECTED] home: http://tuganger.narod.ru/ ALT Linux Sisyphus

Re: [Vala] interface properties: unexistent accessor

2008-11-17 Thread Ildar Mulyukov
On 17.11.2008 13:08:20, Alexander Bokovoy wrote: On Sun, Nov 16, 2008 at 8:17 PM, Alexander Bokovoy [EMAIL PROTECTED] wrote: 2008/11/16 Ildar Mulyukov [EMAIL PROTECTED]: valac test-iface-prop-noset-impl.vala test-iface-prop-noset-iface.vala/tmp/.private/ildar/ccIVSzoO.o: In function

[Vala] split strings error

2008-10-15 Thread Ildar Mulyukov
is a workaround. But this looks like a bug to me. Regards, Ildar -- Ildar Mulyukov, free SW designer/programmer email: [EMAIL PROTECTED] home: http://tuganger.narod.ru/ ALT Linux Sisyphus