# -*- mode: snippet -*- # name: guix-commit-message-update-package # key: update # condition: git-commit-mode # -- gnu: ${1:`(with-temp-buffer (magit-git-wash #'magit-diff-wash-diffs "diff" "--staged") (goto-char (point-min)) (when (re-search-forward "(define-public \\(\\S-+\\)" nil 'noerror) (match-string-no-properties 1)))`}: Update to ${2:`(with-temp-buffer (magit-git-wash #'magit-diff-wash-diffs "diff" "--staged") (goto-char (point-min)) (search-forward "name" nil 'noerror) (search-forward "+" nil 'noerror) ; first change (when (and (search-forward "version " nil 'noerror) (looking-at-p "\"")) (let ((end (save-excursion (search-forward "\")" nil 'noerror)))) (when end (forward-char) (buffer-substring-no-properties (point) (- end 2))))))`}. * `(car (magit-staged-files))` ($1): Update to $2.$0 `(mapconcat (lambda (file) (concat "* " file)) (cdr (magit-staged-files)) "\n")`/about/'>aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/rsync.scm
AgeCommit message (Expand)Author
2020-03-21gnu: rsync: Use system zlib and popt libraries....Reduce our likelihood of contracting security bugs at the expense of compression ratio (in some cases) and compatibility with rsync≤3.1.1. rsync@3.1.2 was released in 2014. Time to upgrade your CentOS box. * gnu/packages/rsync.scm (rsync)[inputs]: Add popt and zlib. [arguments]: Use them. Tobias Geerinckx-Rice
2020-02-03gnu: rsync: Fix cross-compilation....* gnu/packages/rsync.scm (rsync)[inputs]: Move PERL ... [native-inputs]: ... here. Marius Bakke
2020-01-14gnu: rsync: Update home page....* gnu/packages/rsync.scm (rsync)[source, home-page]: Use HTTPS. Marius Bakke