Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 21 Apr 2019 21:54:39 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r499596 - in head/misc: . bitwise
Message-ID:  <201904212154.x3LLsdHr009918@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Sun Apr 21 21:54:39 2019
New Revision: 499596
URL: https://svnweb.freebsd.org/changeset/ports/499596

Log:
  New port: misc/bitwise: Terminal-based bitwise manipulator in curses

Added:
  head/misc/bitwise/
  head/misc/bitwise/Makefile   (contents, props changed)
  head/misc/bitwise/distinfo   (contents, props changed)
  head/misc/bitwise/pkg-descr   (contents, props changed)
Modified:
  head/misc/Makefile

Modified: head/misc/Makefile
==============================================================================
--- head/misc/Makefile	Sun Apr 21 21:11:35 2019	(r499595)
+++ head/misc/Makefile	Sun Apr 21 21:54:39 2019	(r499596)
@@ -27,6 +27,7 @@
     SUBDIR += binclock
     SUBDIR += biosfont-demos
     SUBDIR += birthday
+    SUBDIR += bitwise
     SUBDIR += bogosort
     SUBDIR += bottlerocket
     SUBDIR += box2d

Added: head/misc/bitwise/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/bitwise/Makefile	Sun Apr 21 21:54:39 2019	(r499596)
@@ -0,0 +1,20 @@
+# $FreeBSD$
+
+PORTNAME=	bitwise
+DISTVERSION=	0.1
+CATEGORIES=	misc
+
+MAINTAINER=	yuri@FreeBSD.org
+COMMENT=	Terminal-based bitwise manipulator in curses
+
+LICENSE=	APACHE20
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		autoreconf ncurses
+GNU_CONFIGURE=	yes
+USE_GITHUB=	yes
+GH_ACCOUNT=	mellowcandle
+
+PLIST_FILES=	bin/bitwise
+
+.include <bsd.port.mk>

Added: head/misc/bitwise/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/bitwise/distinfo	Sun Apr 21 21:54:39 2019	(r499596)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1555883352
+SHA256 (mellowcandle-bitwise-0.1_GH0.tar.gz) = 2b5acf9e094d21559cfd837ee27f38ca0006a1c73c3b4828e8c67df7bcfc620a
+SIZE (mellowcandle-bitwise-0.1_GH0.tar.gz) = 10093

Added: head/misc/bitwise/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/bitwise/pkg-descr	Sun Apr 21 21:54:39 2019	(r499596)
@@ -0,0 +1,5 @@
+bitwise can be used both interactivly and in command line mode.
+In command line mode, passing a number in any base (Decimal, Hexedical & Octal)
+will output the number in all bases including binary representation.
+
+WWW: https://github.com/mellowcandle/bitwise



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201904212154.x3LLsdHr009918>