public inbox for cygwin-apps@cygwin.com
 help / color / mirror / Atom feed
* dblatex needs update
@ 2021-02-03 21:49 Ken Brown
  2021-02-03 23:30 ` Yaakov Selkowitz
  0 siblings, 1 reply; 8+ messages in thread
From: Ken Brown @ 2021-02-03 21:49 UTC (permalink / raw)
  To: cygwin-apps

dblatex (still shown as maintained by Yaakov) is currently broken because it was 
built for python2 but its shebang points to python.

I could do a quick non-maintainer upload to fix the shebang, but maybe someone 
wants to adopt it and rebuild it for python3.

Ken

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: dblatex needs update
  2021-02-03 21:49 dblatex needs update Ken Brown
@ 2021-02-03 23:30 ` Yaakov Selkowitz
  2021-02-04  2:00   ` Marco Atzeri
  0 siblings, 1 reply; 8+ messages in thread
From: Yaakov Selkowitz @ 2021-02-03 23:30 UTC (permalink / raw)
  To: cygwin-apps

On Wed, 2021-02-03 at 16:49 -0500, Ken Brown via Cygwin-apps wrote:
> dblatex (still shown as maintained by Yaakov) is currently broken because it
> was built for python2 but its shebang points to python.
> 
> I could do a quick non-maintainer upload to fix the shebang, but maybe
> someone wants to adopt it and rebuild it for python3.

Please note that the version currently in Cygwin is not Py3 compatible; the
latest upstream version should be though.

-- 
Yaakov


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: dblatex needs update
  2021-02-03 23:30 ` Yaakov Selkowitz
@ 2021-02-04  2:00   ` Marco Atzeri
  2021-02-04  2:30     ` Marco Atzeri
  0 siblings, 1 reply; 8+ messages in thread
From: Marco Atzeri @ 2021-02-04  2:00 UTC (permalink / raw)
  To: cygwin-apps

On 04.02.2021 00:30, Yaakov Selkowitz via Cygwin-apps wrote:
> On Wed, 2021-02-03 at 16:49 -0500, Ken Brown via Cygwin-apps wrote:
>> dblatex (still shown as maintained by Yaakov) is currently broken because it
>> was built for python2 but its shebang points to python.
>>
>> I could do a quick non-maintainer upload to fix the shebang, but maybe
>> someone wants to adopt it and rebuild it for python3.
> 
> Please note that the version currently in Cygwin is not Py3 compatible; the
> latest upstream version should be though.
> 

let me try to build upstream version

Regards
Marco

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: dblatex needs update
  2021-02-04  2:00   ` Marco Atzeri
@ 2021-02-04  2:30     ` Marco Atzeri
  2021-02-04  2:44       ` Marco Atzeri
  0 siblings, 1 reply; 8+ messages in thread
From: Marco Atzeri @ 2021-02-04  2:30 UTC (permalink / raw)
  To: cygwin-apps

On 04.02.2021 03:00, Marco Atzeri wrote:
> On 04.02.2021 00:30, Yaakov Selkowitz via Cygwin-apps wrote:
>> On Wed, 2021-02-03 at 16:49 -0500, Ken Brown via Cygwin-apps wrote:
>>> dblatex (still shown as maintained by Yaakov) is currently broken 
>>> because it
>>> was built for python2 but its shebang points to python.
>>>
>>> I could do a quick non-maintainer upload to fix the shebang, but maybe
>>> someone wants to adopt it and rebuild it for python3.
>>
>> Please note that the version currently in Cygwin is not Py3 
>> compatible; the
>> latest upstream version should be though.
>>
> 
> let me try to build upstream version
> 
> Regards
> Marco

question:
as dblatex3-0.3.12 does not produce anything in
/usr/bin

but I assume we need one as current

/usr/bin/dblatex
-------------------------------
#!/usr/bin/env python
import sys
import os

package_base = r"/usr/share/dblatex"

from dbtexmf.dblatex import dblatex
dblatex.main(base=package_base)
--------------------------------

Fedora 3.11 seems to have one and Debian has

----------------------------------
#! /usr/bin/python3

# Register the Debian error analyser
from dbtexmf.core import error
from dbtexmf.contrib.debian.errorhandler import DebianHandler
error.set_errhandler(DebianHandler())

from dbtexmf.dblatex import dblatex
dblatex.main('/usr/share/dblatex')
------------------------------------

that seems a simplified version after removing the
error handler

Regards
Marco



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: dblatex needs update
  2021-02-04  2:30     ` Marco Atzeri
@ 2021-02-04  2:44       ` Marco Atzeri
  2021-02-04  3:00         ` Marco Atzeri
  0 siblings, 1 reply; 8+ messages in thread
From: Marco Atzeri @ 2021-02-04  2:44 UTC (permalink / raw)
  To: cygwin-apps

On 04.02.2021 03:30, Marco Atzeri wrote:
> On 04.02.2021 03:00, Marco Atzeri wrote:
>> On 04.02.2021 00:30, Yaakov Selkowitz via Cygwin-apps wrote:
>>> On Wed, 2021-02-03 at 16:49 -0500, Ken Brown via Cygwin-apps wrote:
>>>> dblatex (still shown as maintained by Yaakov) is currently broken 
>>>> because it
>>>> was built for python2 but its shebang points to python.
>>>>
>>>> I could do a quick non-maintainer upload to fix the shebang, but maybe
>>>> someone wants to adopt it and rebuild it for python3.
>>>
>>> Please note that the version currently in Cygwin is not Py3 
>>> compatible; the
>>> latest upstream version should be though.
>>>
>>
>> let me try to build upstream version
>>
>> Regards
>> Marco
> 

0.3.12-1

going up with
> ----------------------------------
> #!/usr/bin/python3
> 
> 
> from dbtexmf.dblatex import dblatex
> dblatex.main('/usr/share/dblatex')
> ------------------------------------
> 
> 

Regards
Marco

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: dblatex needs update
  2021-02-04  2:44       ` Marco Atzeri
@ 2021-02-04  3:00         ` Marco Atzeri
  2021-02-04  3:16           ` Ken Brown
       [not found]           ` <e0a46bfa-6d5d-20f3-ec84-42bf94b2616a@cornell.edu>
  0 siblings, 2 replies; 8+ messages in thread
From: Marco Atzeri @ 2021-02-04  3:00 UTC (permalink / raw)
  To: cygwin-apps

On 04.02.2021 03:44, Marco Atzeri wrote:
> On 04.02.2021 03:30, Marco Atzeri wrote:
>> On 04.02.2021 03:00, Marco Atzeri wrote:
>>> On 04.02.2021 00:30, Yaakov Selkowitz via Cygwin-apps wrote:
>>>> On Wed, 2021-02-03 at 16:49 -0500, Ken Brown via Cygwin-apps wrote:
>>>>> dblatex (still shown as maintained by Yaakov) is currently broken 

>>
> 
> 0.3.12-1
> 
> going up with
>> ----------------------------------
>> #!/usr/bin/python3
>>
>>
>> from dbtexmf.dblatex import dblatex
>> dblatex.main('/usr/share/dblatex')
>> ------------------------------------
>>
>>
> 
> Regards
> Marco

too fast:

I assume

    texlive-collection-mathextra

was replaced by

    texlive-collection-mathscience

or are we missing a package ?

Marco


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: dblatex needs update
  2021-02-04  3:00         ` Marco Atzeri
@ 2021-02-04  3:16           ` Ken Brown
       [not found]           ` <e0a46bfa-6d5d-20f3-ec84-42bf94b2616a@cornell.edu>
  1 sibling, 0 replies; 8+ messages in thread
From: Ken Brown @ 2021-02-04  3:16 UTC (permalink / raw)
  To: cygwin-apps

[Resending.  Accidentally replied to Marco instead of to list.]

On 2/3/2021 10:00 PM, Marco Atzeri via Cygwin-apps wrote:
> On 04.02.2021 03:44, Marco Atzeri wrote:
>> On 04.02.2021 03:30, Marco Atzeri wrote:
>>> On 04.02.2021 03:00, Marco Atzeri wrote:
>>>> On 04.02.2021 00:30, Yaakov Selkowitz via Cygwin-apps wrote:
>>>>> On Wed, 2021-02-03 at 16:49 -0500, Ken Brown via Cygwin-apps wrote:
>>>>>> dblatex (still shown as maintained by Yaakov) is currently broken 
> 
>>>
>>
>> 0.3.12-1
>>
>> going up with
>>> ----------------------------------
>>> #!/usr/bin/python3
>>>
>>>
>>> from dbtexmf.dblatex import dblatex
>>> dblatex.main('/usr/share/dblatex')
>>> ------------------------------------
>>>
>>>
>>
>> Regards
>> Marco
> 
> too fast:
> 
> I assume
> 
>     texlive-collection-mathextra
> 
> was replaced by
> 
>     texlive-collection-mathscience

That's right.  texlive-collection-mathscience obsoletes both 
texlive-collection-mathextra and texlive-collection-science.

Ken

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: dblatex needs update
       [not found]             ` <b66aacde-a302-3e24-a1d1-099d58999943@gmail.com>
@ 2021-02-04 12:55               ` Ken Brown
  0 siblings, 0 replies; 8+ messages in thread
From: Ken Brown @ 2021-02-04 12:55 UTC (permalink / raw)
  To: Marco Atzeri; +Cc: cygwin-apps

On 2/3/2021 10:18 PM, Marco Atzeri wrote:
> On 04.02.2021 04:14, Ken Brown wrote:
> 
>>>
>>> too fast:
>>>
>>> I assume
>>>
>>>     texlive-collection-mathextra
>>>
>>> was replaced by
>>>
>>>     texlive-collection-mathscience
>>
>> That's right.  texlive-collection-mathscience obsoletes both 
>> texlive-collection-mathextra and texlive-collection-science.
>>
>> Ken
> 
> Hi Ken,
> 
> 0.3.12 is going up
> 
> I will announce after you check that is fine

Works fine.  I tested it by building cygwin, in which dblatex is used to build 
the docs.

Thanks.

Ken

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2021-02-04 12:55 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-03 21:49 dblatex needs update Ken Brown
2021-02-03 23:30 ` Yaakov Selkowitz
2021-02-04  2:00   ` Marco Atzeri
2021-02-04  2:30     ` Marco Atzeri
2021-02-04  2:44       ` Marco Atzeri
2021-02-04  3:00         ` Marco Atzeri
2021-02-04  3:16           ` Ken Brown
     [not found]           ` <e0a46bfa-6d5d-20f3-ec84-42bf94b2616a@cornell.edu>
     [not found]             ` <b66aacde-a302-3e24-a1d1-099d58999943@gmail.com>
2021-02-04 12:55               ` Ken Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).