From owner-svn-ports-all@freebsd.org Tue Nov 17 18:36:05 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 87F9D46C423; Tue, 17 Nov 2020 18:36:05 +0000 (UTC) (envelope-from rodrigo@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 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 4CbF5132kGz3HQc; Tue, 17 Nov 2020 18:36:05 +0000 (UTC) (envelope-from rodrigo@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 572E824B80; Tue, 17 Nov 2020 18:36:05 +0000 (UTC) (envelope-from rodrigo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0AHIa58i067620; Tue, 17 Nov 2020 18:36:05 GMT (envelope-from rodrigo@FreeBSD.org) Received: (from rodrigo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0AHIa4Hg067616; Tue, 17 Nov 2020 18:36:04 GMT (envelope-from rodrigo@FreeBSD.org) Message-Id: <202011171836.0AHIa4Hg067616@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rodrigo set sender to rodrigo@FreeBSD.org using -f From: Rodrigo Osorio Date: Tue, 17 Nov 2020 18:36:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r555575 - in head/devel: . libibuddy X-SVN-Group: ports-head X-SVN-Commit-Author: rodrigo X-SVN-Commit-Paths: in head/devel: . libibuddy X-SVN-Commit-Revision: 555575 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.34 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: Tue, 17 Nov 2020 18:36:05 -0000 Author: rodrigo Date: Tue Nov 17 18:36:04 2020 New Revision: 555575 URL: https://svnweb.freebsd.org/changeset/ports/555575 Log: New port devel/Makefile: a library and CLI tool for i-budy devices libibuddy is a C library to control the i-buddy USB device. A command line tool ibuddycmd is also available to control it from the command line. The i-Buddy is a small USB figure in the form of an MSN messenger contact with butterfly wings. Added: head/devel/libibuddy/ head/devel/libibuddy/Makefile (contents, props changed) head/devel/libibuddy/distinfo (contents, props changed) head/devel/libibuddy/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Nov 17 18:01:28 2020 (r555574) +++ head/devel/Makefile Tue Nov 17 18:36:04 2020 (r555575) @@ -1194,6 +1194,7 @@ SUBDIR += libhoard SUBDIR += libhtp SUBDIR += libhyve-remote + SUBDIR += libibuddy SUBDIR += libical SUBDIR += libindicator SUBDIR += libinotify Added: head/devel/libibuddy/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libibuddy/Makefile Tue Nov 17 18:36:04 2020 (r555575) @@ -0,0 +1,22 @@ +# Created by: Rodrigo OSORIO +# $FreeBSD$ + +PORTNAME= libibuddy +PORTVERSION= 0.0.2 +CATEGORIES= devel + +MAINTAINER= rodrigo@FreeBSD.org +COMMENT= C loadable library and CLI tool to control an i-buddy device + +LICENSE= BSD2CLAUSE + +USES= cmake +USE_LDCONFIG= yes +USE_GITHUB= yes +GH_ACCOUNT= rosorio +GH_PROJECT= libibuddy +GH_TAGNAME= 919d309 + +PLIST_FILES= bin/ibuddy_test bin/ibuddycmd include/ibuddy.h lib/libibuddy.so + +.include Added: head/devel/libibuddy/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libibuddy/distinfo Tue Nov 17 18:36:04 2020 (r555575) @@ -0,0 +1,3 @@ +TIMESTAMP = 1605631622 +SHA256 (rosorio-libibuddy-0.0.2-919d309_GH0.tar.gz) = 2a2c0ea4e54e0cef068bb97d2e733f07a9a9637846c84a364d1a31adc8dfa91a +SIZE (rosorio-libibuddy-0.0.2-919d309_GH0.tar.gz) = 6102 Added: head/devel/libibuddy/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libibuddy/pkg-descr Tue Nov 17 18:36:04 2020 (r555575) @@ -0,0 +1,9 @@ +libibuddy is a C library to control the i-buddy +USB device. The i-Buddy is a small USB figure +in the form of an MSN messenger contact with +butterfly wings. + +To start plug your i-buddy, and run the ibuddy_test +command. + +WWW: http://www.osorio.me/projects/dev/libibbudy/