kb is a text-oriented minimalist command line knowledge base manager. kb can be considered a quick note collection and access tool oriented toward software developers, penetration testers, hackers, students or whoever has to collect and organize notes in a clean way. Although kb is mainly targeted on text-based note collection, it supports non-text files as well (e.g., images, pdf, videos and others). The project was born from the frustration of trying to find a good way to quickly access my notes, procedures, cheatsheets and lists (e.g., payloads) but at the same time, keeping them organized. This is particularly useful for any kind of student. I use it in the context of penetration testing to organize pentesting procedures, cheatsheets, payloads, guides and notes. Packaged by Giuseppe Nebbione and shared via PR pkg/56193.
27 lines
962 B
Makefile
27 lines
962 B
Makefile
# $NetBSD: Makefile,v 1.1 2021/05/29 10:22:25 leot Exp $
|
|
|
|
DISTNAME= kb-manager-0.1.6
|
|
EGGNAME= ${DISTNAME:S/-manager//}
|
|
PKGNAME= ${PYPKGPREFIX}-${EGGNAME}
|
|
CATEGORIES= databases python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=k/kb-manager/}
|
|
|
|
MAINTAINER= nebbionegiuseppe@gmail.com
|
|
HOMEPAGE= https://github.com/gnebbia/kb/
|
|
COMMENT= Minimalist command line knowledge base manager
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-attrs-[0-9]*:../../devel/py-attrs
|
|
DEPENDS+= ${PYPKGPREFIX}-colored-[0-9]*:../../textproc/py-colored
|
|
DEPENDS+= ${PYPKGPREFIX}-gitpython-[0-9]*:../../devel/py-gitpython
|
|
DEPENDS+= ${PYPKGPREFIX}-sqlite3-[0-9]*:../../databases/py-sqlite3
|
|
DEPENDS+= ${PYPKGPREFIX}-toml-[0-9]*:../../textproc/py-toml
|
|
|
|
# Not for 2.7. 3.6 and 3.7 would need py-attr that is currently not packaged
|
|
PYTHON_VERSIONS_INCOMPATIBLE= 27 36 37
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|