discuss@mandoc.bsd.lv
 help / color / mirror / Atom feed
* mandoc-1.13.4 released
@ 2016-07-14 14:48 Ingo Schwarze
  2016-07-17 10:34 ` Jan Stary
  0 siblings, 1 reply; 3+ messages in thread
From: Ingo Schwarze @ 2016-07-14 14:48 UTC (permalink / raw)
  To: discuss

Hello,

mandoc = mdocml 1.13.4 is now publicly available
from <http://mdocml.bsd.lv/>.

After more than a year of development since 1.13.3, this is a regular
maintenance release, fixing many bugs.  This release contains almost
the same mandoc code as the upcoming OpenBSD 6.0 release.  Upgrading
is recommended for all downstream projects.

There are also some new features.  In particular,

 - the man.conf(5) file format has been simplified
 - when using less(1), you can now jump to various internal targets
   like command line options, internal commands, environment
   variables, and command modifiers using the :t (tag) command
   inside less
 - a soelim(1) implementation by Baptiste Daroussin is included
 - for privilege limitation, OpenBSD pledge(2) or OS X sandbox_init(3)
   are used when available
 - man.cgi(8) now supports short URIs like http://man.openbsd.org/mdoc
 - one unified stylesheet is used rather than three different ones

See <http://mdocml.bsd.lv/NEWS> for more details about fixed bugs
and new features.

Thanks to Baptiste Daroussin, Anthony Bentley, and Todd Miller
for code contributions, Jonathan Gray for yet more testing with afl(1),
and Svyatoslav Mishyn and Sevan Janiyan for extensive release testing.
Many others sent in patches, reported bugs, suggested features,
and helped with testing, see the NEWS file for a full list.

Yours,
  Ingo

P.S.
It seems likely that this will be the last release needing SQLite
for database support.  I have started work on removing the dependency
on SQLite without loss of functionality and without needing any
replacement, relying on POSIX interfaces only.  So it is likely
that we will have a 1.14.1 release this autumn that no longer needs
SQLite.  Then again, if there is substantial demand, i might maintain
the 1.13 branch for some time in parallel.
--
 To unsubscribe send an email to discuss+unsubscribe@mdocml.bsd.lv

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

* Re: mandoc-1.13.4 released
  2016-07-14 14:48 mandoc-1.13.4 released Ingo Schwarze
@ 2016-07-17 10:34 ` Jan Stary
  2016-07-19 18:04   ` Ingo Schwarze
  0 siblings, 1 reply; 3+ messages in thread
From: Jan Stary @ 2016-07-17 10:34 UTC (permalink / raw)
  To: discuss

Hi Ingo,

On Jul 14 16:48:20, schwarze@usta.de wrote:
> mandoc = mdocml 1.13.4 is now publicly available
> from <http://mdocml.bsd.lv/>.

testing downstream, it builds and works fine on Debian 7.10.
I have not built CGI though as I don't use it.

See below for a diff fixing a typo.

Also, the example configure.local says

  # Force usage of man.conf(5).
  # If it does not exist or contains no valid configuration,
    ^^^^^^^^^^^^^^^^^^^^
  # man(1), makewhatis(8), and apropos(1) will not work properly.
  HAVE_MANPATH=0

But the presence of man.conf is optional, right?

	Jan


Index: configure.local.example
===================================================================
RCS file: /cvs/mdocml/configure.local.example,v
retrieving revision 1.13
diff -u -p -r1.13 configure.local.example
--- configure.local.example	14 Jul 2016 11:09:06 -0000	1.13
+++ configure.local.example	17 Jul 2016 10:13:36 -0000
@@ -198,7 +198,7 @@ BINM_MAKEWHATIS=mandocdb	# default is "m
 PREFIX="/usr/local"
 HOMEBREWDIR="${PREFIX}/Cellar"
 
-# --- user settings related man.cgi ------------------------------------
+# --- user settings related to man.cgi ---------------------------------
 
 # By default, building man.cgi(8) is disabled.  To enable it, copy
 # cgi.h.example to cgi.h, edit it, and use the following line.


--
 To unsubscribe send an email to discuss+unsubscribe@mdocml.bsd.lv

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

* Re: mandoc-1.13.4 released
  2016-07-17 10:34 ` Jan Stary
@ 2016-07-19 18:04   ` Ingo Schwarze
  0 siblings, 0 replies; 3+ messages in thread
From: Ingo Schwarze @ 2016-07-19 18:04 UTC (permalink / raw)
  To: Jan Stary; +Cc: discuss

Hi Jan,

Jan Stary wrote on Sun, Jul 17, 2016 at 12:34:32PM +0200:
> On Jul 14 16:48:20, schwarze@usta.de wrote:

>> mandoc = mdocml 1.13.4 is now publicly available
>> from <http://mdocml.bsd.lv/>.

> testing downstream, it builds and works fine on Debian 7.10.

Thanks, noted on http://mdocml.bsd.lv/ports.html .

> I have not built CGI though as I don't use it.

No problem, that is rarely used, and people needing it will
know how to cope.

> See below for a diff fixing a typo.

Thanks, committed.

> Also, the example configure.local says
> 
>   # Force usage of man.conf(5).
>   # If it does not exist or contains no valid configuration,
>     ^^^^^^^^^^^^^^^^^^^^
>   # man(1), makewhatis(8), and apropos(1) will not work properly.
>   HAVE_MANPATH=0
> 
> But the presence of man.conf is optional, right?

Correct.  It was required some time ago, but that's no longer true.

So i deleted the misleading sentence.  No replacement is needed.
Getting the documentation shorter without less of correctness
and clarity is always nice.

Yours,
  Ingo


Log Message:
-----------
Remove one outdated comment and fix one typo
noted by Jan Stary <hans at stare dot cz>.

Modified Files:
--------------
    mdocml:
        configure.local.example

Revision Data
-------------
Index: configure.local.example
===================================================================
RCS file: /home/cvs/mdocml/mdocml/configure.local.example,v
retrieving revision 1.13
retrieving revision 1.14
diff -Lconfigure.local.example -Lconfigure.local.example -u -p -r1.13 -r1.14
--- configure.local.example
+++ configure.local.example
@@ -91,8 +91,6 @@ MANDIR="${PREFIX}/man"
 HAVE_MANPATH=1
 
 # Force usage of man.conf(5).
-# If it does not exist or contains no valid configuration,
-# man(1), makewhatis(8), and apropos(1) will not work properly.
 HAVE_MANPATH=0
 
 # Some distributions may want to avoid naming conflicts
@@ -198,7 +196,7 @@ BINM_MAKEWHATIS=mandocdb	# default is "m
 PREFIX="/usr/local"
 HOMEBREWDIR="${PREFIX}/Cellar"
 
-# --- user settings related man.cgi ------------------------------------
+# --- user settings related to man.cgi ---------------------------------
 
 # By default, building man.cgi(8) is disabled.  To enable it, copy
 # cgi.h.example to cgi.h, edit it, and use the following line.
--
 To unsubscribe send an email to discuss+unsubscribe@mdocml.bsd.lv

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

end of thread, other threads:[~2016-07-19 18:04 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-07-14 14:48 mandoc-1.13.4 released Ingo Schwarze
2016-07-17 10:34 ` Jan Stary
2016-07-19 18:04   ` Ingo Schwarze

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 NNTP newsgroup(s).