<div dir="auto">We need some indication for automated builds on RTEMS.org that the server actually did build something. The script that builds the docs on the server should create a file and put the build time in it.</div><br><div class="gmail_quote"><div dir="ltr">On Mon, Jan 7, 2019, 5:04 AM Sebastian Huber <<a href="mailto:sebastian.huber@embedded-brains.de">sebastian.huber@embedded-brains.de</a> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">The usage of a build date prevents reproducible builds.<br>
---<br>
 common/conf.py | 25 +------------------------<br>
 1 file changed, 1 insertion(+), 24 deletions(-)<br>
<br>
diff --git a/common/conf.py b/common/conf.py<br>
index 60db066..8d5e6b8 100644<br>
--- a/common/conf.py<br>
+++ b/common/conf.py<br>
@@ -1,26 +1,3 @@<br>
-import datetime<br>
-<br>
-def build_date():<br>
-    now = datetime.date.today()<br>
-    m = now.strftime('%B')<br>
-    y = now.strftime('%Y')<br>
-    if now.day == 11:<br>
-        s = 'th'<br>
-    elif now.day % 10 == 1:<br>
-        s = 'st'<br>
-    elif now.day == 12:<br>
-        s = 'th'<br>
-    elif now.day % 10 == 2:<br>
-        s = 'nd'<br>
-    elif now.day == 13:<br>
-        s = 'th'<br>
-    elif now.day == 3:<br>
-        s = 'rd'<br>
-    else:<br>
-        s = 'th'<br>
-    d = '%2d%s' % (now.day, s)<br>
-    return '%s %s %s' % (d, m, y)<br>
-<br>
 extensions = [<br>
        "sphinx.ext.autodoc",<br>
        "sphinx.ext.coverage",<br>
@@ -47,7 +24,7 @@ master_doc = 'index'<br>
<br>
 # General information about the project.<br>
 project = u'RTEMS Documentation Project'<br>
-copyright = u'2018, RTEMS Project (built %s)' % (build_date())<br>
+copyright = u'2018, RTEMS Project'<br>
<br>
 # The version info for the project you're documenting, acts as replacement for<br>
 # |version| and |release|, also used in various other places throughout the<br>
-- <br>
2.16.4<br>
<br>
_______________________________________________<br>
devel mailing list<br>
<a href="mailto:devel@rtems.org" target="_blank" rel="noreferrer">devel@rtems.org</a><br>
<a href="http://lists.rtems.org/mailman/listinfo/devel" rel="noreferrer noreferrer" target="_blank">http://lists.rtems.org/mailman/listinfo/devel</a><br>
</blockquote></div>