git: 3b3da7d7b279 - main - devel/unibilium: Tidy up
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 16 Oct 2022 15:50:46 UTC
The branch main has been updated by adamw:
URL: https://cgit.FreeBSD.org/ports/commit/?id=3b3da7d7b279f89e86163035b4d1c6616c2b2155
commit 3b3da7d7b279f89e86163035b4d1c6616c2b2155
Author: Adam Weinberger <adamw@FreeBSD.org>
AuthorDate: 2022-10-16 15:47:05 +0000
Commit: Adam Weinberger <adamw@FreeBSD.org>
CommitDate: 2022-10-16 15:50:42 +0000
devel/unibilium: Tidy up
Various small cleanups.
The biggest change here is that GH_TAGNAME is removed. It was specifying
the commit hash of the release, which is redundant. Removing it means
that the distfile is changed, but the contents are necessarily
identical. No PORTREVISION bump for this.
---
devel/unibilium/Makefile | 13 +++++++------
devel/unibilium/distinfo | 6 +++---
devel/unibilium/pkg-descr | 7 ++++---
3 files changed, 14 insertions(+), 12 deletions(-)
diff --git a/devel/unibilium/Makefile b/devel/unibilium/Makefile
index c386579960c6..ac4f595cb732 100644
--- a/devel/unibilium/Makefile
+++ b/devel/unibilium/Makefile
@@ -4,21 +4,22 @@ DISTVERSION= 2.1.1
CATEGORIES= devel
MAINTAINER= adamw@FreeBSD.org
-COMMENT= Very basic terminfo library
-WWW= https://github.com/mauke/unibilium
+COMMENT= Terminfo parsing library
+WWW= https://github.com/neovim/unibilium
LICENSE= LGPL3
LICENSE_FILE= ${WRKSRC}/LGPLv3
USES= gmake libtool:build pathfix perl5 pkgconfig
-PATHFIX_MAKEFILEIN= Makefile
USE_PERL5= build
-USE_LDCONFIG= yes
-MAKE_ARGS= MANDIR=${MANPREFIX}/man
+PATHFIX_MAKEFILEIN= Makefile
USE_GITHUB= yes
GH_ACCOUNT= neovim
-GH_TAGNAME= 444e4f3
+
+MAKE_ARGS= MANDIR=${MANPREFIX}/man
+TEST_TARGET= test
+USE_LDCONFIG= yes
post-install:
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libunibilium.so
diff --git a/devel/unibilium/distinfo b/devel/unibilium/distinfo
index 7530921a0ee4..e19214b0635c 100644
--- a/devel/unibilium/distinfo
+++ b/devel/unibilium/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1664528595
-SHA256 (neovim-unibilium-v2.1.1-444e4f3_GH0.tar.gz) = 8291eb57243d50c21f967e90e40190818e82f7ac069016f8507d62c469aad6b8
-SIZE (neovim-unibilium-v2.1.1-444e4f3_GH0.tar.gz) = 121997
+TIMESTAMP = 1665934668
+SHA256 (neovim-unibilium-v2.1.1_GH0.tar.gz) = 6f0ee21c8605340cfbb458cbd195b4d074e6d16dd0c0e12f2627ca773f3cabf1
+SIZE (neovim-unibilium-v2.1.1_GH0.tar.gz) = 121998
diff --git a/devel/unibilium/pkg-descr b/devel/unibilium/pkg-descr
index 4002f2106c59..a5ba6707ac0f 100644
--- a/devel/unibilium/pkg-descr
+++ b/devel/unibilium/pkg-descr
@@ -1,3 +1,4 @@
-Unibilium is a very basic terminfo library. It doesn't depend on curses or any
-other library. It also doesn't use global variables, so it should be
-thread-safe.
+Unibilium is a very basic terminfo library. It can read and write
+ncurses-style terminfo files, and it can interpret terminfo format
+strings. It doesn't depend on curses or any other library. It also
+doesn't use global variables, so it should be thread-safe.