aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/plotutils.scm
pre { line-height: 125%; } td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; } span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; } td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; } span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; } .highlight .hll { background-color: #ffffcc } .highlight .c { color: #888 } /* Comment */ .highlight .err { color: #A61717; background-color: #E3D2D2 } /* Error */ .highlight .k { color: #080; font-weight: bold } /* Keyword */ .highlight .ch { color: #888 } /* Comment.Hashbang */ .highlight .cm { color: #888 } /* Comment.Multiline */ .highlight .cp { color: #C00; font-weight: bold } /* Comment.Preproc */ .highlight .cpf { color: #888 } /* Comment.PreprocFile */ .highlight .c1 { color: #888 } /* Comment.Single */ .highlight .cs { color: #C00; font-weight: bold; background-color: #FFF0F0 } /* Comment.Special */ .highlight .gd { color: #000; background-color: #FDD } /* Generic.Deleted */ .highlight .ge { font-style: italic } /* Generic.Emph */ .highlight .ges { font-weight: bold; font-style: italic } /* Generic.EmphStrong */ .highlight .gr { color: #A00 } /* Generic.Error */ .highlight .gh { color: #333 } /* Generic.Heading */ .highlight .gi { color: #000; background-color: #DFD } /* Generic.Inserted */ .high
AgeCommit message (Expand)Author
2016-09-02gnu: Use ghostscript over ghostscript-gs.Efraim Flashner
2016-07-28gnu: asymptote: Add native input gs.Andreas Enge
2016-07-25gnu: Use 'ghostscript-gs' in packages that need the 'gs' command.Ludovic Courtès
2016-06-13gnu: asymptote: Update to 2.38Nicolas Goaziou
2016-01-02gnu: Add Asymptote.Eric Bavier
2015-03-31utils: 'modify-phases' no longer introduces quotes.Ludovic Courtès
2015-03-09gnu: Add Ploticus.Ludovic Courtès
2015-01-19gnu: Move guile-charting to (gnu packages plotutils).Ludovic Courtès
2015-01-15gnu: plotutils: Do not propagate libXaw.Ludovic Courtès
2014-07-10gnu: plotutils: Propagate libXaw.Ludovic Courtès
2014-06-27gnu: Consolidate libjpeg, libpng, and libtiff into one module.David Thompson
2013-12-01gnu: Synchronize descriptions with 'gnumaint'.Ludovic Courtès
2013-10-09Synchronize package descriptions with the Womb.Ludovic Courtès
2013-10-09gnu: Use the 'patches' field of <origin>.Ludovic Courtès
2013-07-12gnu: plotutils: Allow compilation with newer libpng.Ludovic Courtès
2013-06-07gnu: plotutils: Add X client libraries as inputs.Ludovic Courtès
2013-05-22gnu: Add GNU Plotutils.Ludovic Courtès

© 2015 - 2026 Jakob L. Kreuze

e.Global */ .highlight .vi { color: #33B } /* Name.Variable.Instance */ .highlight .vm { color: #369 } /* Name.Variable.Magic */ .highlight .il { color: #00D; font-weight: bold } /* Literal.Number.Integer.Long */
Always provide the same date and time in 'Py_GetBuildInfo'.
This is the information shown at the REPL and in 'sys.version'.
We cannot pass it in CPPFLAGS due to whitespace in the DATE string.

--- a/Modules/getbuildinfo.c
+++ b/Modules/getbuildinfo.c
@@ -4,6 +4,10 @@
 #include <stdio.h>
 #endif
 
+/* Deterministic date and time.  */
+#define DATE "Jan  1 1970"
+#define TIME "00:00:01"
+
 #ifndef DATE
 #ifdef __DATE__
 #define DATE __DATE__

© 2015 - 2026 Jakob L. Kreuze