Re: Could you fix the error that is found by verilog-mode testing on Debian?

2016-10-18 Thread Sean Whitton
Hello Kiwamu,

On Wed, Oct 19, 2016 at 11:21:16AM +0900, Kiwamu Okabe wrote:
> OK. I should keep joining pkg-emacsen team.

It looks like you are already a member.

-- 
Sean Whitton



Re: Could you fix the error that is found by verilog-mode testing on Debian?

2016-10-18 Thread Kiwamu Okabe
Hi Sean,

On Wed, Oct 19, 2016 at 11:19 AM, Sean Whitton  wrote:
>> I have a question. May I write "pkg-emacsen-add...@lists.alioth.debian.org"
>> at the "Maintainer" field in debian/control file?
>
> Yes.

OK. I should keep joining pkg-emacsen team.

Best regards,
-- 
Kiwamu Okabe at METASEPI DESIGN



Re: Could you fix the error that is found by verilog-mode testing on Debian?

2016-10-18 Thread Sean Whitton
Hello Kiwamu,

On Tue, Oct 18, 2016 at 10:01:33PM +0900, Kiwamu Okabe wrote:
> On Mon, Oct 17, 2016 at 11:09 PM, Sean Whitton  
> wrote:
> > I didn't realise that you were trying to package verilog-mode for
> > xemacs.  dh_elpa supports only GNU Emacs.  Perhaps you need to revert to
> > your older packaging.  Apologies for leading you in circles somewhat.
> 
> Oh. so OK.
> 
> I have a question. May I write "pkg-emacsen-add...@lists.alioth.debian.org"
> at the "Maintainer" field in debian/control file?

Yes.

-- 
Sean Whitton



Re: Could you fix the error that is found by verilog-mode testing on Debian?

2016-10-18 Thread Kiwamu Okabe
Hi Sean,

On Mon, Oct 17, 2016 at 11:09 PM, Sean Whitton  wrote:
> I didn't realise that you were trying to package verilog-mode for
> xemacs.  dh_elpa supports only GNU Emacs.  Perhaps you need to revert to
> your older packaging.  Apologies for leading you in circles somewhat.

Oh. so OK.

I have a question. May I write "pkg-emacsen-add...@lists.alioth.debian.org"
at the "Maintainer" field in debian/control file?

Best regards,
-- 
Kiwamu Okabe at METASEPI DESIGN



Re: Could you fix the error that is found by verilog-mode testing on Debian?

2016-10-17 Thread Sean Whitton
Dear Kiwamu,

On Fri, Oct 14, 2016 at 09:53:44PM +0900, Kiwamu Okabe wrote:
> And my xemacs version on the Debian is following:
> 
>   $ xemacs --version
>   XEmacs 21.4 (patch 24) "Standard C" [Lucid] (x86_64-linux-gnu, Mule)
> of Fri Sep 16 2016 on debutante

I didn't realise that you were trying to package verilog-mode for
xemacs.  dh_elpa supports only GNU Emacs.  Perhaps you need to revert to
your older packaging.  Apologies for leading you in circles somewhat.

-- 
Sean Whitton



Re: Could you fix the error that is found by verilog-mode testing on Debian?

2016-10-15 Thread Kiwamu Okabe
On Sat, Oct 15, 2016 at 7:44 PM, Wilson Snyder  wrote:
> Makes sense.  I suspect the eval is turned off as
> root/fakeroot for security, however this verilog-mode test
> depends on that eval feature, so obviously the test will
> fail.

I understand detail of that, now. At far future, you'll try to support
running the test on root user? Or not?

Best regards,
-- 
Kiwamu Okabe at METASEPI DESIGN



Re: Could you fix the error that is found by verilog-mode testing on Debian?

2016-10-15 Thread Kiwamu Okabe
Hi Wilson,

On Sat, Oct 15, 2016 at 3:48 PM, Kiwamu Okabe  wrote:
> I found that! If we run "make test" on fakeroot environment, we get such 
> error!

I would like to fix this problem on Debian side by running "make test"
on normal user.

Best regards,
-- 
Kiwamu Okabe at METASEPI DESIGN



Re: Could you fix the error that is found by verilog-mode testing on Debian?

2016-10-14 Thread Kiwamu Okabe
Hi Wilson,

On Fri, Oct 14, 2016 at 10:03 PM, Wilson Snyder  wrote:
> Immediately above the error is this:
>
>Ignoring `eval:' in file's local variables
>
> But 0test.el has this:
>
>   (setq enable-local-eval t)
>
> Can you please debug why that setting is being ignored and the "Ignoring" 
> warning happens?

I found that! If we run "make test" on fakeroot environment, we get such error!

  $ grep url .git/config
  url = https://github.com/veripool/verilog-mode.git
  $ fakeroot make test
  --snip--
  Considering test autoasciienum_frominc.v
  autoasciienum_frominc.v: finding...
  Ignoring `eval:' in file's local variables
  autoasciienum_frominc.v: deleting indent...
  autoasciienum_frominc.v: deleting autos...
  autoasciienum_frominc.v: testing auto...
  Ignoring `eval:' in file's local variables
  autoasciienum_frominc.v:14: No state definitions for `En_C14ChipNum'
  xemacs exiting

And also, you'll see same error while running "make test" on root user:

  $ make clean
  $ sudo make test
  Considering test autoasciienum_frominc.v
  autoasciienum_frominc.v: finding...
  Ignoring `eval:' in file's local variables
  autoasciienum_frominc.v: deleting indent...
  autoasciienum_frominc.v: deleting autos...
  autoasciienum_frominc.v: testing auto...
  Ignoring `eval:' in file's local variables
  autoasciienum_frominc.v:14: No state definitions for `En_C14ChipNum'
  xemacs exiting

I think xemacs ignores file's local variables. It's a problem or a
specification at xemacs?

Best regards,
-- 
Kiwamu Okabe at METASEPI DESIGN



Re: Could you fix the error that is found by verilog-mode testing on Debian?

2016-10-14 Thread Wilson Snyder

The test passes for me using

  XEmacs 21.4 (patch 22) "Instant Classic" [Lucid] (x86_64-linux-gnu, Mule) of 
Sun Dec 27 2015 on lgw01-11

Note my patch level is lower than yours.

Immediately above the error is this:

   Ignoring `eval:' in file's local variables

But 0test.el has this:

  (setq enable-local-eval t)

Can you please debug why that setting is being ignored and the "Ignoring" 
warning happens?

-Wilson

Kiwamu Okabe  writes:

>Hi Michael and Wilson,
>
>Now, I'm trying to make Debian package of your verilog-mode. However,
>your verilog-mode testing occurs error on my Debian git repo, which
>has same code as your one. The error log is found at following:
>
>  
> https://gist.github.com/master-q/0afe681cc35329fec210691517b30843#file-verilog-mode-gbp-log-L10469
>
>Of course, your verilog-mode testing passes under your plain git repo:
>
>  $ git clone https://github.com/veripool/verilog-mode.git
>  $ cd verilog-mode
>  $ mkdir tmp
>  $ make -j1 install DESTDIR=./tmp AM_UPDATE_INFO_DIR=no
>
>My Debian git repo is following:
>
>  http://anonscm.debian.org/cgit/pkg-emacsen/pkg/verilog-mode.git
>
>And my xemacs version on the Debian is following:
>
>  $ xemacs --version
>  XEmacs 21.4 (patch 24) "Standard C" [Lucid] (x86_64-linux-gnu, Mule)
>of Fri Sep 16 2016 on debutante



Could you fix the error that is found by verilog-mode testing on Debian?

2016-10-14 Thread Kiwamu Okabe
Hi Michael and Wilson,

Now, I'm trying to make Debian package of your verilog-mode. However,
your verilog-mode testing occurs error on my Debian git repo, which
has same code as your one. The error log is found at following:

  
https://gist.github.com/master-q/0afe681cc35329fec210691517b30843#file-verilog-mode-gbp-log-L10469

Of course, your verilog-mode testing passes under your plain git repo:

  $ git clone https://github.com/veripool/verilog-mode.git
  $ cd verilog-mode
  $ mkdir tmp
  $ make -j1 install DESTDIR=./tmp AM_UPDATE_INFO_DIR=no

My Debian git repo is following:

  http://anonscm.debian.org/cgit/pkg-emacsen/pkg/verilog-mode.git

And my xemacs version on the Debian is following:

  $ xemacs --version
  XEmacs 21.4 (patch 24) "Standard C" [Lucid] (x86_64-linux-gnu, Mule)
of Fri Sep 16 2016 on debutante

Best regards,
-- 
Kiwamu Okabe at METASEPI DESIGN