From owner-svn-ports-all@freebsd.org Fri Apr 17 16:35:32 2020 Return-Path: Delivered-To: svn-ports-all@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 882252C046F; Fri, 17 Apr 2020 16:35:32 +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 493hXh2BH2z4Dr9; Fri, 17 Apr 2020 16:35:32 +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 2C33125684; Fri, 17 Apr 2020 16:35:32 +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 03HGZWWK059964; Fri, 17 Apr 2020 16:35:32 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 03HGZVLJ059960; Fri, 17 Apr 2020 16:35:31 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <202004171635.03HGZVLJ059960@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:35:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r531947 - in head/devel: . libevdevPlus X-SVN-Group: ports-head X-SVN-Commit-Author: bapt X-SVN-Commit-Paths: in head/devel: . libevdevPlus X-SVN-Commit-Revision: 531947 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Apr 2020 16:35:32 -0000 Author: bapt Date: Fri Apr 17 16:35:30 2020 New Revision: 531947 URL: https://svnweb.freebsd.org/changeset/ports/531947 Log: new port devel/libevdevPlus Easy-to-use event device library in C++ WWW: https://github.com/YukiWorkshop/libevdevPlus Added: head/devel/libevdevPlus/ head/devel/libevdevPlus/Makefile (contents, props changed) head/devel/libevdevPlus/distinfo (contents, props changed) head/devel/libevdevPlus/pkg-descr (contents, props changed) head/devel/libevdevPlus/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Apr 17 16:33:45 2020 (r531946) +++ head/devel/Makefile Fri Apr 17 16:35:30 2020 (r531947) @@ -1174,6 +1174,7 @@ SUBDIR += libestr SUBDIR += libev SUBDIR += libevdev + SUBDIR += libevdevPlus SUBDIR += libevent SUBDIR += libevt SUBDIR += libevtx Added: head/devel/libevdevPlus/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libevdevPlus/Makefile Fri Apr 17 16:35:30 2020 (r531947) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= libevdevPlus +PORTVERSION= 0.1.1 +DISTVERSIONPREFIX= v +CATEGORIES= devel + +MAINTAINER= bapt@FreeBSD.org +COMMENT= Easy-to-use event device 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/libevdevPlus/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libevdevPlus/distinfo Fri Apr 17 16:35:30 2020 (r531947) @@ -0,0 +1,3 @@ +TIMESTAMP = 1587109323 +SHA256 (YukiWorkshop-libevdevPlus-v0.1.1_GH0.tar.gz) = c941b6b45f784c1e6c6f316f59256fabd604ac392db405cf7fd99de2686aaab0 +SIZE (YukiWorkshop-libevdevPlus-v0.1.1_GH0.tar.gz) = 9448 Added: head/devel/libevdevPlus/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libevdevPlus/pkg-descr Fri Apr 17 16:35:30 2020 (r531947) @@ -0,0 +1,3 @@ +Easy-to-use event device library in C++ + +WWW: https://github.com/YukiWorkshop/libevdevPlus Added: head/devel/libevdevPlus/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libevdevPlus/pkg-plist Fri Apr 17 16:35:30 2020 (r531947) @@ -0,0 +1,8 @@ +include/evdevPlus/CommonIncludes.hpp +include/evdevPlus/InputEvent.hpp +include/evdevPlus/evdevPlus.hpp +lib/libevdevPlus.a +lib/libevdevPlus.so +lib/libevdevPlus.so.0 +lib/libevdevPlus.so.0.1.1 +libdata/pkgconfig/evdevPlus.pc