pkgsrc/databases/py-kb/Makefile
leot a6dee516da py-kb: Update to 0.1.7
Changes:
0.1.7
-----
  * Fixed grep bug with pull request 89
  * XDG Compliance: moving files to `$XDG_DATA_HOME/kb`, if it exists, and fall back
    to `$HOME/.local/share/kb` if that environment variable does not exist
  * Added kb to pkgsrc
  * Added stdin functionality to add artifacts. For example:
    `cat ../script.py | python -m kb add -t mycoolscript`
    `cat path/to/script.py | python -m kb add -t mycoolscript -c python_scripts`
  * Implemented the confirmation mechanism for artifact removal
2022-09-28 18:58:01 +00:00

29 lines
974 B
Makefile

# $NetBSD: Makefile,v 1.5 2022/09/28 18:58:01 leot Exp $
DISTNAME= kb-manager-0.1.7
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.7 would need py-attr that is currently not packaged
PYTHON_VERSIONS_INCOMPATIBLE= 27 37
USE_LANGUAGES= # none
USE_PKG_RESOURCES= yes
.include "../../lang/python/egg.mk"
.include "../../lang/python/application.mk"
.include "../../mk/bsd.pkg.mk"