Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 30 Sep 2025 08:18:29 GMT
From:      Lexi Winter <ivy@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: b0f25a38d721 - main - liby: Move to toolchain package
Message-ID:  <202509300818.58U8ITHc024716@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by ivy:

URL: https://cgit.FreeBSD.org/src/commit/?id=b0f25a38d7217b04dcdf7f2272ecf5f2f314d314

commit b0f25a38d7217b04dcdf7f2272ecf5f2f314d314
Author:     Lexi Winter <ivy@FreeBSD.org>
AuthorDate: 2025-09-30 08:10:32 +0000
Commit:     Lexi Winter <ivy@FreeBSD.org>
CommitDate: 2025-09-30 08:14:05 +0000

    liby: Move to toolchain package
    
    We don't need an entire package for this trivial library.  Move it to
    toolchain, which in practice means it's installed in toolchain-dev as
    it only contains a static library.
    
    MFC after:      1 day
    Reviewed by:    bapt
    Sponsored by:   https://www.patreon.com/bsdivy
    Differential Revision:  https://reviews.freebsd.org/D52793
---
 lib/liby/Makefile                 |  2 +-
 release/packages/ucl/liby-all.ucl | 28 ----------------------------
 2 files changed, 1 insertion(+), 29 deletions(-)

diff --git a/lib/liby/Makefile b/lib/liby/Makefile
index 93f72ee440f8..ace8f8457d22 100644
--- a/lib/liby/Makefile
+++ b/lib/liby/Makefile
@@ -1,4 +1,4 @@
-PACKAGE=lib${LIB}
+PACKAGE=toolchain
 LIB=	y
 SRCS=	main.c yyerror.c
 NO_PIC=
diff --git a/release/packages/ucl/liby-all.ucl b/release/packages/ucl/liby-all.ucl
deleted file mode 100644
index 313058e08710..000000000000
--- a/release/packages/ucl/liby-all.ucl
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * SPDX-License-Identifier: ISC
- *
- * Copyright (c) 2025 Lexi Winter <ivy@FreeBSD.org>
- *
- * Permission to use, copy, modify, and distribute this software for any
- * purpose with or without fee is hereby granted, provided that the above
- * copyright notice and this permission notice appear in all copies.
- *
- * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
- * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
- * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
- * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
- * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
- * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
- * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
- */
-
-comment = "YACC runtime library"
-
-desc = <<EOD
-liby provides default implementations of main() and yyerror() for applications
-which use the yacc(1) parser generator.
-EOD
-
-annotations {
-	set = "optional,optional-jail"
-}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202509300818.58U8ITHc024716>