aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2026-05-09 19:25:46 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2026-05-09 19:25:46 +0000
commit5f67e3fe69a1858054711ac01521de327bf12b9c (patch)
treeb350c79cd509135b056a6b3bfeb159de8ac0fbdb
parent2a17f4c87a42a23c14e302e49e07cec850dc1f40 (diff)
downloads6-rc-5f67e3fe69a1858054711ac01521de327bf12b9c.tar.gz
Prepare for 0.6.1.1 ; fix loop exit condition in store checking
-rw-r--r--INSTALL2
-rw-r--r--NEWS6
-rw-r--r--doc/index.html6
-rw-r--r--doc/upgrade.html7
-rw-r--r--package/deps-build2
-rw-r--r--package/info2
-rw-r--r--src/repo/s6rc_repo_sync.c1
7 files changed, 20 insertions, 6 deletions
diff --git a/INSTALL b/INSTALL
index d1ce0af..7581084 100644
--- a/INSTALL
+++ b/INSTALL
@@ -7,7 +7,7 @@ Build Instructions
- A POSIX-compliant C development environment
- GNU make version 3.81 or later
- skalibs version 2.15.0.0 or later: https://skarnet.org/software/skalibs/
- - execline version 2.9.8.2 or later: https://skarnet.org/software/execline/
+ - execline version 2.9.9.1 or later: https://skarnet.org/software/execline/
- s6 version 2.15.0.0 or later: https://skarnet.org/software/s6/
This software will run on any operating system that implements
diff --git a/NEWS b/NEWS
index b06a16f..e387229 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,11 @@
Changelog for s6-rc.
+In 0.6.1.1
+----------
+
+ - Bugfixes.
+
+
In 0.6.1.0
----------
diff --git a/doc/index.html b/doc/index.html
index fb7e119..f643e75 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -53,7 +53,7 @@ scripts are also run in a controlled environment.
2.15.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/execline/">execline</a> version
-2.9.9.0 or later. It's a build-time <em>and</em> run-time requirement. </li>
+2.9.9.1 or later. It's a build-time <em>and</em> run-time requirement. </li>
<li> <a href="//skarnet.org/software/s6/">s6</a> version
2.15.0.0 or later. It's a build-time <em>and</em> run-time requirement. </li>
</ul>
@@ -69,8 +69,8 @@ requirement if you link against the shared version of the skalibs library. </li>
<ul>
<li> The current released version of s6-rc is
-<a href="s6-rc-0.6.1.0.tar.gz">0.6.1.0</a>.
-You can access its checksum <a href="s6-rc-0.6.1.0.tar.gz.sha256">here</a>. </li>
+<a href="s6-rc-0.6.1.1.tar.gz">0.6.1.1</a>.
+You can access its checksum <a href="s6-rc-0.6.1.1.tar.gz.sha256">here</a>. </li>
<li> Alternatively, you can checkout a copy of the
<a href="//git.skarnet.org/cgi-bin/cgit.cgi/s6-rc/">s6-rc
git repository</a>:
diff --git a/doc/upgrade.html b/doc/upgrade.html
index 0e75dbe..c854a44 100644
--- a/doc/upgrade.html
+++ b/doc/upgrade.html
@@ -31,6 +31,13 @@ minor and bugfix version changes.
<h1> What has changed in s6-rc </h1>
+<h2> in 0.6.1.1 </h2>
+
+<ul>
+ <li> <a href="//skarnet.org/software/execline/">execline</a>
+dependency bumped to 2.9.9.1. </li>
+</ul>
+
<h2> in 0.6.1.0 </h2>
<ul>
diff --git a/package/deps-build b/package/deps-build
index 7d756e7..f7f2355 100644
--- a/package/deps-build
+++ b/package/deps-build
@@ -1,3 +1,3 @@
true true /package/prog/skalibs 2.15.0.0 libskarnet
-true false /package/admin/execline 2.9.9.0 libexecline
+true false /package/admin/execline 2.9.9.1 libexecline
true true /package/admin/s6 2.15.0.0 libs6
diff --git a/package/info b/package/info
index 1932ad2..854e7b3 100644
--- a/package/info
+++ b/package/info
@@ -1,4 +1,4 @@
package=s6-rc
-version=0.6.1.0
+version=0.6.1.1
category=admin
package_macro_name=S6RC
diff --git a/src/repo/s6rc_repo_sync.c b/src/repo/s6rc_repo_sync.c
index 2fd7df2..64f4017 100644
--- a/src/repo/s6rc_repo_sync.c
+++ b/src/repo/s6rc_repo_sync.c
@@ -82,6 +82,7 @@ int s6rc_repo_sync (char const *repo, unsigned int verbosity, char const *fdhuse
dir = opendir(store) ;
if (!dir)
{
+ if (errno == ENOENT) break ; /* normal loop exit */
strerr_warnfu2sys("opendir ", store) ;
goto err ;
}