-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
package/filetype: add python-filetype package for system-server (#232)
- Loading branch information
Showing
4 changed files
with
26 additions
and
0 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,6 @@ | ||
config BR2_PACKAGE_PYTHON_FILETYPE | ||
bool "python-filetype" | ||
help | ||
Small and dependency free Python package to infer file type. | ||
|
||
https://github.com/h2non/filetype.py |
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,5 @@ | ||
# md5, sha256 from https://pypi.org/project/filetype/ | ||
md5 915c437718ad93c2cd347eb5aa465af1 filetype-1.2.0.tar.gz | ||
sha256 66b56cd6474bf41d8c54660347d37afcc3f7d1970648de365c102ef77548aadb filetype-1.2.0.tar.gz | ||
# Locally computed sha256 checksums | ||
sha256 8e44e2aa35b371bdcc856bcf0d2442a410dd55fde66b0dfc2fcdf076d97946ac LICENSE |
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,14 @@ | ||
################################################################################ | ||
# | ||
# python-filetype | ||
# | ||
################################################################################ | ||
|
||
PYTHON_FILETYPE_VERSION = 1.2.0 | ||
PYTHON_FILETYPE_SOURCE = filetype-$(PYTHON_FILETYPE_VERSION).tar.gz | ||
PYTHON_FILETYPE_SITE = https://files.pythonhosted.org/packages/bb/29/745f7d30d47fe0f251d3ad3dc2978a23141917661998763bebb6da007eb1 | ||
PYTHON_FILETYPE_SETUP_TYPE = pep517 | ||
PYTHON_FILETYPE_LICENSE = Public Domain | ||
PYTHON_FILETYPE_LICENSE_FILES = LICENSE | ||
|
||
$(eval $(python-package)) |