From owner-svn-ports-head@freebsd.org Fri Apr 17 16:37:33 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 42DB82C0535; Fri, 17 Apr 2020 16:37:33 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 493hb110S2z4F2j; Fri, 17 Apr 2020 16:37:33 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 03E3A2568B; Fri, 17 Apr 2020 16:37:33 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 03HGbWoM060431; Fri, 17 Apr 2020 16:37:32 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 03HGbWMf060426; Fri, 17 Apr 2020 16:37:32 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <202004171637.03HGbWMf060426@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Fri, 17 Apr 2020 16:37:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r531949 - in head/devel: . libuInputPlus X-SVN-Group: ports-head X-SVN-Commit-Author: bapt X-SVN-Commit-Paths: in head/devel: . libuInputPlus X-SVN-Commit-Revision: 531949 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Apr 2020 16:37:33 -0000 Author: bapt Date: Fri Apr 17 16:37:31 2020 New Revision: 531949 URL: https://svnweb.freebsd.org/changeset/ports/531949 Log: New port devel/libuInputPlus Easy-to-use uinput library in C++ WWW: https://github.com/YukiWorkshop/libuInputPlus Added: head/devel/libuInputPlus/ head/devel/libuInputPlus/Makefile (contents, props changed) head/devel/libuInputPlus/distinfo (contents, props changed) head/devel/libuInputPlus/pkg-descr (contents, props changed) head/devel/libuInputPlus/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Apr 17 16:36:02 2020 (r531948) +++ head/devel/Makefile Fri Apr 17 16:37:31 2020 (r531949) @@ -1363,6 +1363,7 @@ SUBDIR += libublio SUBDIR += libubox SUBDIR += libudev-devd + SUBDIR += libuInputPlus SUBDIR += libukcprog SUBDIR += libunicode SUBDIR += libuninum Added: head/devel/libuInputPlus/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libuInputPlus/Makefile Fri Apr 17 16:37:31 2020 (r531949) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= libuInputPlus +PORTVERSION= 0.1.4 +DISTVERSIONPREFIX= v +CATEGORIES= devel + +MAINTAINER= bapt@FreeBSD.org +COMMENT= Easy-to-use uinput library in C++ + +LICENSE= MIT +LICENSE_FILES= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${LOCALBASE}/include/linux/uinput.h:devel/evdev-proto + +USES= cmake localbase + +USE_GITHUB= yes +GH_ACCOUNT= YukiWorkshop + +USE_LDCONFIG= yes + +.include Added: head/devel/libuInputPlus/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libuInputPlus/distinfo Fri Apr 17 16:37:31 2020 (r531949) @@ -0,0 +1,3 @@ +TIMESTAMP = 1587109806 +SHA256 (YukiWorkshop-libuInputPlus-v0.1.4_GH0.tar.gz) = a537e156d11ad00c643b93cbd9b712d3ec9d0ae8e40731ff763fe9a6ffe97458 +SIZE (YukiWorkshop-libuInputPlus-v0.1.4_GH0.tar.gz) = 8239 Added: head/devel/libuInputPlus/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libuInputPlus/pkg-descr Fri Apr 17 16:37:31 2020 (r531949) @@ -0,0 +1,3 @@ +Easy-to-use uinput library in C++ + +WWW: https://github.com/YukiWorkshop/libuInputPlus Added: head/devel/libuInputPlus/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libuInputPlus/pkg-plist Fri Apr 17 16:37:31 2020 (r531949) @@ -0,0 +1,7 @@ +include/uInputPlus/CommonIncludes.hpp +include/uInputPlus/uInput.hpp +include/uInputPlus/uInputSetup.hpp +lib/libuInputPlus.a +lib/libuInputPlus.so +lib/libuInputPlus.so.0 +lib/libuInputPlus.so.0.1.4