git: b94c2c9660f9 - main - devel/linenoise-ng: Remove expired port

From: Rene Ladan <rene_at_FreeBSD.org>
Date: Mon, 30 Jun 2025 11:30:32 UTC
The branch main has been updated by rene:

URL: https://cgit.FreeBSD.org/ports/commit/?id=b94c2c9660f9cee7a07486a68ccea0a04bbee925

commit b94c2c9660f9cee7a07486a68ccea0a04bbee925
Author:     Rene Ladan <rene@FreeBSD.org>
AuthorDate: 2025-06-30 11:30:21 +0000
Commit:     Rene Ladan <rene@FreeBSD.org>
CommitDate: 2025-06-30 11:30:21 +0000

    devel/linenoise-ng: Remove expired port
    
    2025-06-30 devel/linenoise-ng: Upstream repo archived Oct 28, 2020
---
 MOVED                                            |  1 +
 devel/Makefile                                   |  1 -
 devel/linenoise-ng/Makefile                      | 30 ----------------------
 devel/linenoise-ng/distinfo                      |  3 ---
 devel/linenoise-ng/files/patch-CMakeLists.txt    | 32 ------------------------
 devel/linenoise-ng/files/patch-src_linenoise.cpp | 10 --------
 devel/linenoise-ng/pkg-descr                     |  3 ---
 7 files changed, 1 insertion(+), 79 deletions(-)

diff --git a/MOVED b/MOVED
index 63670dc1b2c3..df60f91ef504 100644
--- a/MOVED
+++ b/MOVED
@@ -4613,3 +4613,4 @@ devel/glrparser||2025-06-30|Has expired: Unfetchable, unmaintained and upstream
 devel/kyra||2025-06-30|Has expired: Abandonware, last release in 2006 and depdends on deprecated libraries
 devel/libmimedir||2025-06-30|Has expired: Last release in 2008, no consumers in tree and unmaintained for years
 devel/py-openapi-codec|devel/py-openapi-core|2025-06-30|Has expired: Upstream archived the repository. Please use devel/py-openapi-core instead
+devel/linenoise-ng||2025-06-30|Has expired: Upstream repo archived Oct 28, 2020
diff --git a/devel/Makefile b/devel/Makefile
index af1dd0944a04..77f11bed8e89 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -1509,7 +1509,6 @@
     SUBDIR += libzvbi
     SUBDIR += lightning
     SUBDIR += linenoise
-    SUBDIR += linenoise-ng
     SUBDIR += linux-c7-dbus-libs
     SUBDIR += linux-c7-devtools
     SUBDIR += linux-c7-devtoolset
diff --git a/devel/linenoise-ng/Makefile b/devel/linenoise-ng/Makefile
deleted file mode 100644
index 3a6645e512ef..000000000000
--- a/devel/linenoise-ng/Makefile
+++ /dev/null
@@ -1,30 +0,0 @@
-PORTNAME=	linenoise-ng
-PORTVERSION=	1.0.1
-DISTVERSIONPREFIX=v
-CATEGORIES=	devel
-
-MAINTAINER=	ports@FreeBSD.org
-COMMENT=	Small, portable readline replacement
-WWW=		https://github.com/arangodb/linenoise-ng
-
-LICENSE=	BSD3CLAUSE
-LICENSE_FILE=	${WRKSRC}/LICENSE
-
-DEPRECATED=	Upstream repo archived Oct 28, 2020
-EXPIRATION_DATE=2025-06-30
-
-USES=		cmake compiler:c++11-lang
-USE_LDCONFIG=	yes
-
-USE_GITHUB=	yes
-GH_ACCOUNT=	arangodb
-
-CFLAGS+=	-fPIC
-
-CMAKE_ON=	BUILD_SHARED_LIBS
-
-PLIST_FILES=	include/linenoise.h	\
-		lib/liblinenoise.so	\
-		lib/liblinenoise.so.0
-
-.include <bsd.port.mk>
diff --git a/devel/linenoise-ng/distinfo b/devel/linenoise-ng/distinfo
deleted file mode 100644
index 77406ef01626..000000000000
--- a/devel/linenoise-ng/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1669801684
-SHA256 (arangodb-linenoise-ng-v1.0.1_GH0.tar.gz) = c91c074aa2edc6d73c1e135b6c5c64feabd7e499cd93aa0f643e21e5d34490e4
-SIZE (arangodb-linenoise-ng-v1.0.1_GH0.tar.gz) = 42724
diff --git a/devel/linenoise-ng/files/patch-CMakeLists.txt b/devel/linenoise-ng/files/patch-CMakeLists.txt
deleted file mode 100644
index 22405f937b7d..000000000000
--- a/devel/linenoise-ng/files/patch-CMakeLists.txt
+++ /dev/null
@@ -1,32 +0,0 @@
---- CMakeLists.txt.orig	2017-03-06 16:01:33 UTC
-+++ CMakeLists.txt
-@@ -1,6 +1,6 @@
- # -*- mode: CMAKE; -*-
- 
--cmake_minimum_required(VERSION 2.6)
-+cmake_minimum_required(VERSION 3.9)
- 
- project(linenoise)
- 
-@@ -13,7 +13,7 @@ endif()
- message(STATUS "Build mode: ${CMAKE_BUILD_TYPE}")
- 
- # INFO
--set(LINENOISE_VERSION "1.0.0" CACHE path "Linenoise version")
-+set(LINENOISE_VERSION "1.0.1" CACHE path "Linenoise version")
- set(LINENOISE_DISPLAY_NAME "Linenoise-NG")
- set(LINENOISE_URL_INFO_ABOUT "https://github.com/arangodb/linenoise-ng")
- set(LINENOISE_CONTACT "hackers@arangodb.org")
-@@ -77,11 +77,11 @@ include_directories(${PROJECT_SOURCE_DIR}/include ${PR
- # build liblinenoise
- add_library(
-   linenoise
--  STATIC
-   src/ConvertUTF.cpp
-   src/linenoise.cpp
-   src/wcwidth.cpp
- )
-+set_target_properties(linenoise PROPERTIES SOVERSION 0)
- 
- # install
- install(TARGETS linenoise DESTINATION lib)
diff --git a/devel/linenoise-ng/files/patch-src_linenoise.cpp b/devel/linenoise-ng/files/patch-src_linenoise.cpp
deleted file mode 100644
index 04335b7f74c7..000000000000
--- a/devel/linenoise-ng/files/patch-src_linenoise.cpp
+++ /dev/null
@@ -1,10 +0,0 @@
---- src/linenoise.cpp.orig	2017-03-06 16:01:33 UTC
-+++ src/linenoise.cpp
-@@ -110,6 +110,7 @@
- #include <unistd.h>
- #include <stdlib.h>
- #include <string.h>
-+#include <sys/stat.h>
- #include <sys/types.h>
- #include <sys/ioctl.h>
- #include <cctype>
diff --git a/devel/linenoise-ng/pkg-descr b/devel/linenoise-ng/pkg-descr
deleted file mode 100644
index 4d774012925e..000000000000
--- a/devel/linenoise-ng/pkg-descr
+++ /dev/null
@@ -1,3 +0,0 @@
-A small, portable GNU readline replacement for FreeBSD, Linux, Windows and
-macOS which is capable of handling UTF-8 characters. Unlike GNU readline, which
-is GPL, this library uses a BSD license and can be used in any kind of program.