public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/eselect-vi:master commit in: /
@ 2022-11-22  0:31 Sam James
  0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2022-11-22  0:31 UTC (permalink / raw
  To: gentoo-commits

commit:     4e73c232907faa662cbcd76d3ccec2d8a07bdc9e
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 22 00:29:46 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Nov 22 00:30:57 2022 +0000
URL:        https://gitweb.gentoo.org/proj/eselect-vi.git/commit/?id=4e73c232

Produce xz dist tarballs

defacto in Gentoo nowadays.

Signed-off-by: Sam James <sam <AT> gentoo.org>

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.ac b/configure.ac
index 1363d78..7729075 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
 AC_INIT([eselect-vi], [20200720])
-AM_INIT_AUTOMAKE([-Wall foreign no-dist-gzip dist-bzip2])
+AM_INIT_AUTOMAKE([-Wall foreign no-dist-gzip dist-xz])
 
 # Create output files.
 AC_CONFIG_FILES([Makefile vi.eselect])


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] proj/eselect-vi:master commit in: /
@ 2022-11-22  0:31 Sam James
  0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2022-11-22  0:31 UTC (permalink / raw
  To: gentoo-commits

commit:     20ce269b1e4ee95708a509b00f37fcd07e284646
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 22 00:29:00 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Nov 22 00:30:57 2022 +0000
URL:        https://gitweb.gentoo.org/proj/eselect-vi.git/commit/?id=20ce269b

Drop pointless autogen.sh

Just call 'autoreconf -fi'.

The existence of autogen.sh is usually an antipattern as it implies
the build system isn't using autotools correctly. In this case,
autogen.sh was just calling a single command - which means
all is well.

Signed-off-by: Sam James <sam <AT> gentoo.org>

 autogen.sh | 2 --
 1 file changed, 2 deletions(-)

diff --git a/autogen.sh b/autogen.sh
deleted file mode 100755
index 89dcaff..0000000
--- a/autogen.sh
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh -x
-exec autoreconf -fi


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] proj/eselect-vi:master commit in: /
@ 2022-11-22  0:31 Sam James
  0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2022-11-22  0:31 UTC (permalink / raw
  To: gentoo-commits

commit:     a1ac514c7a541d02d5363eed6bd68b8183fc479c
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 22 00:27:02 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Nov 22 00:30:57 2022 +0000
URL:        https://gitweb.gentoo.org/proj/eselect-vi.git/commit/?id=a1ac514c

Add additional man page compressed suffixes

Just copy the list from Portage's ecompress.

Signed-off-by: Sam James <sam <AT> gentoo.org>

 vi.eselect.in | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/vi.eselect.in b/vi.eselect.in
index af51482..3d4f469 100644
--- a/vi.eselect.in
+++ b/vi.eselect.in
@@ -30,16 +30,16 @@ find_targets() {
 # try to remove the vi, ex, view and man vi symlinks
 remove_symlinks() {
 	rm -f "${EROOT}"/usr/bin/{vi,ex,view} &>/dev/null && \
-	rm -f "${EROOT}"/usr/share/man/man1/{vi,ex,view}.1{,.gz,.bz2,.lzma} &>/dev/null
+	rm -f "${EROOT}"/usr/share/man/man1/{vi,ex,view}.1{,.Z,.gz,.bz2,.lzma,.lz,.lzo,.lz4,.xz,.zst} &> /dev/null
 }
 
 # set a man page symlink
 set_man_symlink() {
 	local target="${1}" link_name="${2}" x extension
 
-	for x in ".1" ".1.bz2" ".1.gz" ".1.lzma"; do
-		if [[ -e ${EROOT}/usr/share/man/man1/${target}${x} ]]; then
-			extension="${x}"
+	for x in '' .Z .gz .bz2 .lzma .lz .lzo .lz4 .xz .zst; do
+		if [[ -e ${EROOT}/usr/share/man/man1/${target}.1${x} ]]; then
+			extension=".1${x}"
 			break
 		fi
 	done


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] proj/eselect-vi:master commit in: /
@ 2022-11-22  0:31 Sam James
  0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2022-11-22  0:31 UTC (permalink / raw
  To: gentoo-commits

commit:     158d9b0828f55bf12ca409923f34f02901861c39
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 22 00:27:42 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Nov 22 00:30:57 2022 +0000
URL:        https://gitweb.gentoo.org/proj/eselect-vi.git/commit/?id=158d9b08

Add support for vis

Closes: https://bugs.gentoo.org/617774
Signed-off-by: Sam James <sam <AT> gentoo.org>

 vi.eselect.in | 1 +
 1 file changed, 1 insertion(+)

diff --git a/vi.eselect.in b/vi.eselect.in
index 3d4f469..3bcba1f 100644
--- a/vi.eselect.in
+++ b/vi.eselect.in
@@ -18,6 +18,7 @@ find_targets() {
 			"${EROOT}"/usr/bin/gvim \
 			"${EROOT}"/usr/bin/qvim \
 			"${EROOT}"/usr/bin/xvile \
+			"${EROOT}"/usr/bin/vis \
 			"${EROOT}"/usr/bin/pyvim \
 			"${EROOT}"/bin/busybox \
 		; do


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] proj/eselect-vi:master commit in: /
@ 2022-11-22  0:31 Sam James
  0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2022-11-22  0:31 UTC (permalink / raw
  To: gentoo-commits

commit:     0e0cbf3999a71ee978786b520562ee09e02f2027
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 22 00:28:22 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Nov 22 00:30:58 2022 +0000
URL:        https://gitweb.gentoo.org/proj/eselect-vi.git/commit/?id=0e0cbf39

Bump to version 1.3

Signed-off-by: Sam James <sam <AT> gentoo.org>

 vi.eselect.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/vi.eselect.in b/vi.eselect.in
index 3bcba1f..a5cdf56 100644
--- a/vi.eselect.in
+++ b/vi.eselect.in
@@ -1,10 +1,10 @@
 # -*-eselect-*-  vim: ft=eselect
-# Copyright 1999-2020 Gentoo Foundation
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 DESCRIPTION="Manage /usr/bin/vi implementations"
 MAINTAINER="vim@gentoo.org"
-VERSION="1.2"
+VERSION="1.3"
 
 # find a list of vi symlink targets, best first
 find_targets() {


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] proj/eselect-vi:master commit in: /
@ 2022-11-22  1:05 Sam James
  0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2022-11-22  1:05 UTC (permalink / raw
  To: gentoo-commits

commit:     223098ff72a3cdbfffa7edc9a6ec5b5ec77b76c8
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 22 00:58:16 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Nov 22 01:04:53 2022 +0000
URL:        https://gitweb.gentoo.org/proj/eselect-vi.git/commit/?id=223098ff

Update .gitignore

List grabbed from https://github.com/github/gitignore/blob/main/Autotools.gitignore

Signed-off-by: Sam James <sam <AT> gentoo.org>

 .gitignore | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 55 insertions(+)

diff --git a/.gitignore b/.gitignore
index 59d276d..79917eb 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,56 @@
+# http://www.gnu.org/software/automake
+
+Makefile.in
+/ar-lib
+/mdate-sh
+/py-compile
+/test-driver
+/ylwrap
+.deps/
+.dirstamp
+
+# http://www.gnu.org/software/autoconf
+
+autom4te.cache
+/autoscan.log
+/autoscan-*.log
+/aclocal.m4
+/compile
+/config.cache
+/config.guess
+/config.h.in
+/config.log
+/config.status
+/config.sub
+/configure
+/configure.scan
+/depcomp
+/install-sh
+/missing
+/stamp-h1
+
+# https://www.gnu.org/software/libtool/
+
+/ltmain.sh
+
+# http://www.gnu.org/software/texinfo
+
+/texinfo.tex
+
+# http://www.gnu.org/software/m4/
+
+m4/libtool.m4
+m4/ltoptions.m4
+m4/ltsugar.m4
+m4/ltversion.m4
+m4/lt~obsolete.m4
+
+# Generated Makefile
+# (meta build system like autotools,
+# can automatically generate from config.status script
+# (which is called by configure script))
+Makefile
+
+# Local to this project
 .version
+vi.eselect


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] proj/eselect-vi:master commit in: /
@ 2022-11-22  1:05 Sam James
  0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2022-11-22  1:05 UTC (permalink / raw
  To: gentoo-commits

commit:     dc2275bd7b332f3c3c387099cadf1b7fc1b1a7b3
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 22 00:57:24 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Nov 22 01:04:53 2022 +0000
URL:        https://gitweb.gentoo.org/proj/eselect-vi.git/commit/?id=dc2275bd

Tidy up configure.ac

Signed-off-by: Sam James <sam <AT> gentoo.org>

 configure.ac | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/configure.ac b/configure.ac
index 6246445..106fbc7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,7 +1,5 @@
-AC_INIT([eselect-vi], m4_esyscmd([build-aux/git-version-gen .tarball-version]))
+AC_INIT([eselect-vi],[m4_esyscmd(build-aux/git-version-gen .tarball-version)])
 AM_INIT_AUTOMAKE([-Wall foreign no-dist-gzip dist-xz])
 
-# Create output files.
 AC_CONFIG_FILES([Makefile vi.eselect])
-
 AC_OUTPUT


^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2022-11-22  1:05 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-22  0:31 [gentoo-commits] proj/eselect-vi:master commit in: / Sam James
  -- strict thread matches above, loose matches on Subject: below --
2022-11-22  0:31 Sam James
2022-11-22  0:31 Sam James
2022-11-22  0:31 Sam James
2022-11-22  0:31 Sam James
2022-11-22  1:05 Sam James
2022-11-22  1:05 Sam James

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox