Honor SOURCE_DATE_EPOCH variable to avoid non-determinism in generated "autoloads" files. --- a/lisp/emacs-lisp/autoload.el +++ b/lisp/emacs-lisp/autoload.el @@ -419,8 +419,12 @@ ;; nil t)) ;; (match-end 2)))) (insert generate-autoload-section-header) - (prin1 `(autoloads ,autoloads ,load-name ,file ,time) - outbuf) + (let* ((env (getenv "SOURCE_DATE_EPOCH")) + (time (if env + (seconds-to-time (string-to-number env)) + time))) + (prin1 `(autoloads ,autoloads ,load-name ,file ,time) + outbuf)) (terpri outbuf) ;; Break that line at spaces, to avoid very long lines. ;; Make each sub-line into a comment. ange='this.form.submit();'> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/services/messaging.scm
AgeCommit message (Expand)Author
2019-03-13Remove traces of "GuixSD"....Ludovic Courtès
2019-01-10services: Use 'define-deprecated' for service procedures....Ludovic Courtès
2018-12-24services: Add quassel....Efraim Flashner
2018-08-13services: prosody: Get the Shepherd to respawn Prosody....Clément Lassieur
2018-08-13services: prosody: Use 'invoke' rather than 'system*'....Clément Lassieur
2018-05-11services: bitlbee: Add plugins....Pierre-Antoine Rouby
2018-05-01services: prosody: Add a default value to the prosody-service-type....Clément Lassieur
2018-05-01services: prosody: Add a description to the prosody-service-type....Clément Lassieur
2018-03-03services: messaging: Prosody config supports file-like objects....Clément Lassieur
2018-01-15doc: Deprecate 'bitlbee-service' procedure....Ludovic Courtès
2018-01-15services: bitlbee: Move to (gnu services messaging)....Ludovic Courtès
2017-12-24services: messaging: Use HTTPS for prosody.im URLs....Tobias Geerinckx-Rice