diff options
-rw-r--r-- | INSTALL | 4 | ||||
-rw-r--r-- | NEWS | 8 | ||||
-rw-r--r-- | doc/index.html | 7 | ||||
-rw-r--r-- | doc/overview.html | 5 | ||||
-rw-r--r-- | doc/upgrade.html | 12 | ||||
-rw-r--r-- | package/info | 2 |
6 files changed, 31 insertions, 7 deletions
@@ -6,8 +6,8 @@ Build Instructions - A POSIX-compliant C development environment - GNU make version 3.81 or later - - skalibs version 2.8.0.0 or later: https://skarnet.org/software/skalibs/ - - To run the test suite and the nsssd-* programs: s6 version 2.8.0.0 or later: https://skarnet.org/software/s6/ + - skalibs version 2.9.0.0 or later: https://skarnet.org/software/skalibs/ + - To run the test suite and the nsssd-* programs: s6 version 2.9.0.0 or later: https://skarnet.org/software/s6/ This software will run on any operating system that implements POSIX.1-2008, available at: @@ -1,7 +1,15 @@ Changelog for nsss. +In 0.0.2.0 +---------- + + - Adaptation to skalibs-2.9.0.0 + - getgrouplist() support. + + In 0.0.1.2 ---------- + - Bugfixes. diff --git a/doc/index.html b/doc/index.html index ae4a9b6..f2bfe31 100644 --- a/doc/index.html +++ b/doc/index.html @@ -81,11 +81,11 @@ functions. <li> A POSIX-compliant system with a standard C development environment </li> <li> GNU make, version 3.81 or later </li> <li> <a href="//skarnet.org/software/skalibs/">skalibs</a> version -2.8.0.0 or later. It's a build-time requirement. It's also a run-time +2.9.0.0 or later. It's a build-time requirement. It's also a run-time requirement if you link against the shared version of the skalibs library. </li> <li> <a href="//skarnet.org/software/s6/">s6</a> version -2.8.0.0 or later. It's a <em>run-time</em> requirement only, to run +2.9.0.0 or later. It's a <em>run-time</em> requirement only, to run the nsssd service (and can be done without if you have a suitable replacement for <a href="//skarnet.org/software/s6/s6-ipcserver">s6-ipcserver</a>). </li> </ul> @@ -100,7 +100,7 @@ for <a href="//skarnet.org/software/s6/s6-ipcserver">s6-ipcserver</a>). </li> <h3> Download </h3> <ul> - <li> The current released version of nsss is <a href="nsss-0.0.1.2.tar.gz">0.0.1.2</a>. </li> + <li> The current released version of nsss is <a href="nsss-0.0.2.0.tar.gz">0.0.2.0</a>. </li> <li> Alternatively, you can checkout a copy of the <a href="//git.skarnet.org/cgi-bin/cgit.cgi/nsss/">nsss git repository</a>: @@ -172,6 +172,7 @@ following primitives will automatically perform libnsss calls: <li> getgrgid_r() </li> <li> getgrnam() </li> <li> getgrnam_r() </li> + <li> getgrouplist() </li> <li> endspent() </li> <li> setspent() </li> <li> getspent() </li> diff --git a/doc/overview.html b/doc/overview.html index 4eec53f..b8876ba 100644 --- a/doc/overview.html +++ b/doc/overview.html @@ -87,7 +87,7 @@ default location can be changed at nsss build time via the </p> <p> - As of 0.0.1.0, two suitable implementations of a nsssd daemon are + As of 0.0.2.0, three suitable implementations of a nsssd daemon are provided by the nsss package: </p> @@ -103,6 +103,9 @@ performs requests to a daemon running on the same system and returns the answers fetched by nslcd. This allows nsss to get its users/groups information from a LDAP database. </li> + <li> The <a href="nsssd-switch.html">nsssd-switch</a> program, which +tries several other backends in sequence and uses the first one that +succeeds. </li> </ul> <p> diff --git a/doc/upgrade.html b/doc/upgrade.html index 1ef5a50..9d36b74 100644 --- a/doc/upgrade.html +++ b/doc/upgrade.html @@ -18,6 +18,18 @@ <h1> What has changed in nsss </h1> +<h2> in 0.0.2.0 </h2> + +<ul> + <li> <a href="//skarnet.org/software/skalibs/">skalibs</a> dependency bumped to +2.9.0.0. </li> + <li> <a href="//skarnet.org/software/s6/">s6</a> optional dependency bumped to +2.9.0.0. </li> + <li> Support for <a href="http://man7.org/linux/man-pages/man3/getgrouplist.3.html">getgrouplist()</a> +has been added. </li> + <li> The <a href="nsssd-switch.html">nsssd-switch</a> backend has been added. </li> +</ul> + <h2> in 0.0.1.2 </h2> <ul> diff --git a/package/info b/package/info index 26253ec..aca0075 100644 --- a/package/info +++ b/package/info @@ -1,4 +1,4 @@ package=nsss -version=0.0.1.2 +version=0.0.2.0 category=admin package_macro_name=NSSS |