https://codeberg.org/gnuastro/papers
Revision 644a236b70fd64df6f1526c7e3ca3d148ad08044 authored by Mohammad Akhlaghi on 07 May 2023, 09:31:06 UTC, committed by Mohammad Akhlaghi on 07 May 2023, 09:48:14 UTC
SUMMARY: just house-cleaning, no need to do anything major in your branch. Just update the copyright years in files that you have added. Until now, the latest copyright years of the whole Maneage source code was 2022! As of this commit, we have already moved to 2023 for 5 months! Furthermore, there were a few other minor issues that needed correction: - The URL to download input datasets wasn't quoted in 'initialize.mk' or the download script! As a result, when the input URL had characters that are meaningful to the shell (like '&'), the download command would not work. - The only program that had 'make check' in the 'basic.mk' programs was MPFR. At that stage, we still haven't built our own compiler at this stage, this is not accurate. - The 'pyerfa' and 'extension-helpers' packages in Python need 'setuptools_scm' on some systems. But until now, it was not in the list of their prerequisites. With this commit, all the issues above have been corrected.
1 parent 4318670
Tip revision: 644a236b70fd64df6f1526c7e3ca3d148ad08044 authored by Mohammad Akhlaghi on 07 May 2023, 09:31:06 UTC
Copyright years: updated to 2023, accompanied by some minor fixes
Copyright years: updated to 2023, accompanied by some minor fixes
Tip revision: 644a236
.dir-locals.el
;; This files contains Emacs Directory Local Variables.
;;
;; Emacs is an extensible, customizable, free/libre text editor. It
;; allows specification of certain settings that will be applied to
;; all files in current directory and its subdirectories. This is
;; useful in order to automatically enforce certain coding conventions
;; for all contributors of Gnuastro, like the maximum length of lines
;; or the number of spaces to be used for indentation.
;;
;; For more information see (info "(emacs) Directory Variables")
;;
;; Copyright (C) 2017-2020 Mosè Giordano <mose@gnu.org>
;; Copyright (C) 2018-2020 Mohammad Akhlaghi <mohammad@akhlaghi.org>
;;
;; Copying and distribution of this file, with or without modification,
;; are permitted in any medium without royalty provided the copyright
;; notice and this notice are preserved. This file is offered as-is,
;; without any warranty.
(
;; C files.
(c-mode
(c-basic-offset . 2) ;; 2 spaces of indentation
(c-file-style . "gnu")) ;; GNU style for braces
;; Makefiles.
(makefile-mode
(indent-tabs-mode . t)) ;; Real TABs are important in makefiles
;; All other files (this has to be in the end).
(nil
(indent-tabs-mode . nil) ;; No tabs as indentation
(fill-column . 75)) ;; 75-character wide lines
)

Computing file changes ...