From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 06477158170 for ; Sat, 20 Jul 2024 00:00:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C1C66E2AB7; Sat, 20 Jul 2024 00:00:57 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9F041E2AB7 for ; Sat, 20 Jul 2024 00:00:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 91F70343007 for ; Sat, 20 Jul 2024 00:00:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C85421D19 for ; Sat, 20 Jul 2024 00:00:54 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1721433636.e0cd8e155e3bdc1b1cf15aef3e632891c9faf412.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lua/luasystem/, dev-lua/luasystem/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lua/luasystem/files/luasystem-0.4.2-fix-makefile.patch dev-lua/luasystem/luasystem-0.4.2-r1.ebuild dev-lua/luasystem/luasystem-0.4.2.ebuild X-VCS-Directories: dev-lua/luasystem/ dev-lua/luasystem/files/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: e0cd8e155e3bdc1b1cf15aef3e632891c9faf412 X-VCS-Branch: master Date: Sat, 20 Jul 2024 00:00:54 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 5d64a673-cc5d-4242-97f4-1c59991ce2b3 X-Archives-Hash: ace84c320750bbdb4eb714ba1cb28a99 commit: e0cd8e155e3bdc1b1cf15aef3e632891c9faf412 Author: Conrad Kostecki gentoo org> AuthorDate: Fri Jul 19 23:57:23 2024 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sat Jul 20 00:00:36 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0cd8e15 dev-lua/luasystem: add missing build parts Needed, as otherwise other dev-lua/* packages will fail tests. Closes: https://bugs.gentoo.org/935634 Closes: https://bugs.gentoo.org/935635 Closes: https://bugs.gentoo.org/935636 Closes: https://bugs.gentoo.org/935637 Closes: https://bugs.gentoo.org/935638 Closes: https://bugs.gentoo.org/935639 Closes: https://bugs.gentoo.org/935640 Signed-off-by: Conrad Kostecki gentoo.org> .../files/luasystem-0.4.2-fix-makefile.patch | 49 ++++++++++++++++++++++ ...stem-0.4.2.ebuild => luasystem-0.4.2-r1.ebuild} | 2 +- 2 files changed, 50 insertions(+), 1 deletion(-) diff --git a/dev-lua/luasystem/files/luasystem-0.4.2-fix-makefile.patch b/dev-lua/luasystem/files/luasystem-0.4.2-fix-makefile.patch new file mode 100644 index 000000000000..2d930a29fe78 --- /dev/null +++ b/dev-lua/luasystem/files/luasystem-0.4.2-fix-makefile.patch @@ -0,0 +1,49 @@ +--- a/src/Makefile ++++ b/src/Makefile +@@ -50,7 +50,7 @@ + # /usr/local/include/lua$(LUA_VERSION) + # where lua headers are found for linux builds + LUAINC_linux_base?=/usr/include +-LUAINC_linux?=$(LUAINC_linux_base)/lua/$(LUA_VERSION) ++LUAINC_linux?=$(LUAINC_linux_base)/lua$(LUA_VERSION) + LUAPREFIX_linux?=/usr/local + CDIR_linux?=lib/lua/$(LUA_VERSION) + LDIR_linux?=share/lua/$(LUA_VERSION) +@@ -144,8 +144,8 @@ + CC_linux=gcc + DEF_linux= + CFLAGS_linux= -I$(LUAINC) $(DEF) -Wall -Wshadow -Wextra \ +- -Wimplicit -O2 -ggdb3 -fpic -fvisibility=hidden +-LDFLAGS_linux=-lrt -O -shared -fpic -o ++ -Wimplicit -fpic -fvisibility=hidden ++LDFLAGS_linux=-lrt -shared -fpic -o + LD_linux=gcc + + #------ +@@ -208,7 +208,7 @@ + # + CC=$(CC_$(PLAT)) + DEF=$(DEF_$(PLAT)) +-CFLAGS=$(MYCFLAGS) $(CFLAGS_$(PLAT)) ++CFLAGS=$(CFLAGS_$(PLAT)) $(MYCFLAGS) + LDFLAGS=$(MYLDFLAGS) $(LDFLAGS_$(PLAT)) + LD=$(LD_$(PLAT)) + LUAINC= $(LUAINC_$(PLAT)) +@@ -217,7 +217,7 @@ + #------ + # Objects + # +-OBJS=core.$(O) compat.$(O) time.$(O) environment.$(O) random.$(O) term.$(O) ++OBJS=core.$(O) compat.$(O) time.$(O) environment.$(O) random.$(O) term.$(O) bitflags.$(O) wcwidth.$(O) + + #------ + # Targets +@@ -248,7 +248,7 @@ + all: $(SOLIB) + + $(SOLIB): $(OBJS) +- $(LD) $(OBJS) $(LDFLAGS)$@ ++ $(LD) $(OBJS) $(LDFLAGS) $@ + + install: all + $(INSTALL_DIR) $(INSTALL_TOP_LDIR) diff --git a/dev-lua/luasystem/luasystem-0.4.2.ebuild b/dev-lua/luasystem/luasystem-0.4.2-r1.ebuild similarity index 96% rename from dev-lua/luasystem/luasystem-0.4.2.ebuild rename to dev-lua/luasystem/luasystem-0.4.2-r1.ebuild index 3bfbf46ba5c8..edc7640b031c 100644 --- a/dev-lua/luasystem/luasystem-0.4.2.ebuild +++ b/dev-lua/luasystem/luasystem-0.4.2-r1.ebuild @@ -31,7 +31,7 @@ BDEPEND=" ) " -PATCHES=( "${FILESDIR}"/${PN}-0.2.1_p0-fix-makefile.patch ) +PATCHES=( "${FILESDIR}"/${PN}-0.4.2-fix-makefile.patch ) src_prepare() { default