From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E6F1C158176 for ; Tue, 07 Oct 2025 16:39:33 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id D49E3340EFA for ; Tue, 07 Oct 2025 16:39:33 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id D88F51102C9; Tue, 07 Oct 2025 16:39:28 +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) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id D041D1102C9 for ; Tue, 07 Oct 2025 16:39:28 +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 88C8D340EC3 for ; Tue, 07 Oct 2025 16:39:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E9B073ACD for ; Tue, 07 Oct 2025 16:39:26 +0000 (UTC) From: "Michael Mair-Keimberger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Mair-Keimberger" Message-ID: <1759854540.94f8f84cd233ca1e6db0a3f0ba9a61cefe71c294.mm1ke@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-laptop/msi-keyboard/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-laptop/msi-keyboard/files/msi-keyboard-1.0-makefile.patch X-VCS-Directories: app-laptop/msi-keyboard/files/ X-VCS-Committer: mm1ke X-VCS-Committer-Name: Michael Mair-Keimberger X-VCS-Revision: 94f8f84cd233ca1e6db0a3f0ba9a61cefe71c294 X-VCS-Branch: master Date: Tue, 07 Oct 2025 16:39:26 +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: f943a935-f964-414d-a1c9-d5bf97f1a050 X-Archives-Hash: 0714faf39602e831482a75757e5d6e23 commit: 94f8f84cd233ca1e6db0a3f0ba9a61cefe71c294 Author: Michael Mair-Keimberger gentoo org> AuthorDate: Tue Oct 7 16:29:00 2025 +0000 Commit: Michael Mair-Keimberger gentoo org> CommitDate: Tue Oct 7 16:29:00 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94f8f84c app-laptop/msi-keyboard: remove unused patch Signed-off-by: Michael Mair-Keimberger gentoo.org> .../files/msi-keyboard-1.0-makefile.patch | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/app-laptop/msi-keyboard/files/msi-keyboard-1.0-makefile.patch b/app-laptop/msi-keyboard/files/msi-keyboard-1.0-makefile.patch deleted file mode 100644 index 08cdaa79e235..000000000000 --- a/app-laptop/msi-keyboard/files/msi-keyboard-1.0-makefile.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- a/Makefile 2019-08-19 22:40:43.258528097 +0200 -+++ b/Makefile 2019-08-19 23:00:30.786462412 +0200 -@@ -1,6 +1,4 @@ - CC=g++ --CFLAGS=-c -Wall --LDFLAGS=-lhidapi-libusb - SOURCES=main.cpp Keyboard.cpp Color.cpp - OBJECTS=$(SOURCES:.cpp=.o) - EXECUTABLE=msi-keyboard -@@ -11,8 +9,7 @@ - rm $(OBJECTS) $(EXECUTABLE) - - $(EXECUTABLE): $(OBJECTS) -- $(CC) $(LDFLAGS) $(OBJECTS) -o $@ -+ $(CC) $(CFLAGS) -lhidapi-libusb $(LDFLAGS) $(OBJECTS) -o $@ - - .cpp.o: -- $(CC) $(CFLAGS) $< -o $@ -- -+ $(CC) $(CFLAGS) -c $< -o $@