-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from atsign-foundation/cpswan-sshnpdpy
feat: Add sshnpdpy Makefile
- Loading branch information
Showing
2 changed files
with
60 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# | ||
# This is free software, licensed under the GNU General Public License v2. | ||
# See /LICENSE for more information. | ||
# | ||
|
||
include $(TOPDIR)/rules.mk | ||
|
||
PKG_NAME:=sshnpdpy | ||
PKG_VERSION:=0.3.0 | ||
PKG_RELEASE:=1 | ||
|
||
PKG_SOURCE_PROTO:=git | ||
PKG_SOURCE_URL:=https://github.com/atsign-foundation/sshnoports | ||
PKG_SOURCE_VERSION:=074699a29e31688dcba8b79fd55433e25c68355e | ||
|
||
PKG_BUILD_DEPENDS:=python-poetry-core/host | ||
|
||
PYTHON3_PKG_SETUP_DIR=packages/sshnpdpy | ||
|
||
PKG_LICENSE:=BSD-3-Clause | ||
PKG_LICENSE_FILES:=LICENSE | ||
PKG_MAINTAINER:=Chris Swan <@cpswan> | ||
|
||
include $(INCLUDE_DIR)/package.mk | ||
include $(TOPDIR)/feeds/packages/lang/python/python3-package.mk | ||
|
||
define Package/python3-sshnpdpy | ||
SECTION:=lang | ||
CATEGORY:=Languages | ||
SUBMENU:=Python | ||
TITLE:=Python SDK for the atPlatform | ||
URL:=https://github.com/atsign-foundation/at_python | ||
DEPENDS:=\ | ||
+python3-light \ | ||
+python3-atpython \ | ||
+python3-bcrypt \ | ||
+python3-cffi \ | ||
+python3-cryptography \ | ||
+python3-paramiko \ | ||
+python3-pycparser \ | ||
+python3-pynacl | ||
endef | ||
|
||
define Package/python3-sshnpdpy/description | ||
Atsign SSH No Ports daemon in Python | ||
endef | ||
|
||
$(eval $(call Py3Package,python3-sshnpdpy)) | ||
$(eval $(call BuildPackage,python3-sshnpdpy)) | ||
$(eval $(call BuildPackage,python3-sshnpdpy-src)) |