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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DBD791382C5 for ; Tue, 11 May 2021 20:30:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 42520E0729; Tue, 11 May 2021 20:30:53 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2C2CFE0729 for ; Tue, 11 May 2021 20:30:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CF5FB340E04 for ; Tue, 11 May 2021 20:30:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 46295924 for ; Tue, 11 May 2021 15:21:23 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1620740905.351a7a9324f55ed3633ca1a3350701b188d4dabb.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: net-libs/usockets/, net-libs/usockets/files/ X-VCS-Repository: repo/proj/guru X-VCS-Files: net-libs/usockets/files/usockets-0.7.1-Makefile.patch net-libs/usockets/usockets-0.7.1_p20210214-r1.ebuild net-libs/usockets/usockets-0.7.1_p20210214-r2.ebuild X-VCS-Directories: net-libs/usockets/files/ net-libs/usockets/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 351a7a9324f55ed3633ca1a3350701b188d4dabb X-VCS-Branch: master Date: Tue, 11 May 2021 15:21:23 +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: 024bb2bb-4c89-4899-9171-996151d79057 X-Archives-Hash: d4b13609bd6890565f085be2223d1a85 commit: 351a7a9324f55ed3633ca1a3350701b188d4dabb Author: Aisha Tammy bsd ac> AuthorDate: Tue May 11 13:47:51 2021 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Tue May 11 13:48:25 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=351a7a93 net-libs/usockets: rename pkgconfig file Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Aisha Tammy bsd.ac> net-libs/usockets/files/usockets-0.7.1-Makefile.patch | 8 ++++---- ...7.1_p20210214-r1.ebuild => usockets-0.7.1_p20210214-r2.ebuild} | 0 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/net-libs/usockets/files/usockets-0.7.1-Makefile.patch b/net-libs/usockets/files/usockets-0.7.1-Makefile.patch index f1ed03b5a..2d3a47d29 100644 --- a/net-libs/usockets/files/usockets-0.7.1-Makefile.patch +++ b/net-libs/usockets/files/usockets-0.7.1-Makefile.patch @@ -86,7 +86,7 @@ index 9b54cac..a610bcc 100644 + $(AR) rvs libusockets.a *.o + $(CC) -shared -o $(LIBTARGET) *.o -Wl,-soname,$(LIBTARGET) `$(PKG_CONFIG) --libs $(REQUIRES)` $(LDFLAGS) + sed -e "s:@PREFIX@:$(prefix):" -e "s:@REQUIRES@:$(REQUIRES):" \ -+ -e "s:@LIB@:$(LIB):" -e "s:@VERSION@:$(VERSION):" usockets.pc.in > usockets.pc ++ -e "s:@LIB@:$(LIB):" -e "s:@VERSION@:$(VERSION):" libusockets.pc.in > libusockets.pc + +install: + install -d "$(DESTDIR)$(libdir)/pkgconfig" "$(DESTDIR)$(includedir)" @@ -94,7 +94,7 @@ index 9b54cac..a610bcc 100644 + install -m 755 $(LIBTARGET) "$(DESTDIR)$(libdir)" + ln -sf $(LIBTARGET) "$(DESTDIR)$(libdir)/libusockets.so" + install -m 755 libusockets.a "$(DESTDIR)$(libdir)/" -+ install -m 644 usockets.pc "$(DESTDIR)$(libdir)/pkgconfig/" ++ install -m 644 libusockets.pc "$(DESTDIR)$(libdir)/pkgconfig/" clean: rm -f *.o @@ -104,11 +104,11 @@ index 9b54cac..a610bcc 100644 + rm -f libusockets.pc + +.PHONY: default install clean -diff --git a/usockets.pc.in b/usockets.pc.in +diff --git a/libusockets.pc.in b/libusockets.pc.in new file mode 100644 index 0000000..b818020 --- /dev/null -+++ b/usockets.pc.in ++++ b/libusockets.pc.in @@ -0,0 +1,12 @@ +prefix=@PREFIX@ +libdir=${prefix}/@LIB@ diff --git a/net-libs/usockets/usockets-0.7.1_p20210214-r1.ebuild b/net-libs/usockets/usockets-0.7.1_p20210214-r2.ebuild similarity index 100% rename from net-libs/usockets/usockets-0.7.1_p20210214-r1.ebuild rename to net-libs/usockets/usockets-0.7.1_p20210214-r2.ebuild