xaizek / vifm (License: GPLv2+) (since 2018-12-07)
Vifm is a file manager with curses interface, which provides Vi[m]-like environment for managing objects within file systems, extended with some useful ideas from mutt.
Commit 5d0b9f8c04c389911cfab197903b0f90de2b0537

Run distcheck in a fresh clone in scripts/deploy
This avoids picking up untracked files in tests/ which is listed in
EXTRA_DIST of Makefile.am as a directory resulting in all of its
contents being included as is.

Makefile.am uses dist-hook to remove some of the files, the top line of
that recipe is still relevant because on distcheck tests/ will contain
build artifacts that shouldn't make it into the archive.
Author: xaizek
Author date (UTC): 2025-03-25 19:14
Committer name: xaizek
Committer date (UTC): 2025-03-25 19:18
Parent(s): 1c50b3ddda43251f3facdb445ce0d2de53d6f7c6
Signing key: 99DC5E4DB05F6BE2
Tree: 6b796f66ca851802c86e65c2ffc12ffc093b1031
File Lines added Lines deleted
Makefile.am 0 1
Makefile.in 0 1
scripts/deploy 10 1
File Makefile.am changed (mode: 100644) (index 242fb5da5..2804673a6)
... ... SUBDIRS = src
5 5 EXTRA_DIST = COPYING.3party ChangeLog.LuaAPI FAQ BUGS patches pkgs tests EXTRA_DIST = COPYING.3party ChangeLog.LuaAPI FAQ BUGS patches pkgs tests
6 6 dist-hook: dist-hook:
7 7 make -C "$(distdir)/tests" clean make -C "$(distdir)/tests" clean
8 rm -f "$(distdir)/tests/.in.vim"
9 8
10 9 # enable generating tags files in particular directories # enable generating tags files in particular directories
11 10 distcheck-hook: distcheck-hook:
File Makefile.in changed (mode: 100644) (index 44392636c..639bea5be)
... ... uninstall-am:
816 816
817 817 dist-hook: dist-hook:
818 818 make -C "$(distdir)/tests" clean make -C "$(distdir)/tests" clean
819 rm -f "$(distdir)/tests/.in.vim"
820 819
821 820 # enable generating tags files in particular directories # enable generating tags files in particular directories
822 821 distcheck-hook: distcheck-hook:
File scripts/deploy changed (mode: 100755) (index c4961be9d..8d9313ebf)
... ... if [ "$target" = all ] || [ "$target" = archive ]; then
126 126 # make archive # make archive
127 127 if [ "$OS" != Windows_NT ]; then if [ "$OS" != Windows_NT ]; then
128 128 archive_name="vifm-$ver.tar.bz2" archive_name="vifm-$ver.tar.bz2"
129 make distcheck
129
130 # perform build in a temporary directory to avoid picking up untracked
131 # files in tests/ which is listed in EXTRA_DIST of Makefile.am
132 build_dir=$(mktemp --directory --tmpdir vifm-release-XXXXXX)
133 trap 'rm -rf "$build_dir"' EXIT
134
135 git clone . "$build_dir"
136 ( cd "$build_dir" && scripts/fix-timestamps && ./configure )
137 make -C "$build_dir" distcheck
138 mv "$build_dir/$archive_name" .
130 139 else else
131 140 # remove config.h to make Makefile.win install default configuration # remove config.h to make Makefile.win install default configuration
132 141 rm -f build-aux/config.h rm -f build-aux/config.h
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/vifm

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/vifm

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master