-
Notifications
You must be signed in to change notification settings - Fork 212
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7951366
commit b5c22c6
Showing
8 changed files
with
162 additions
and
6 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
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
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 |
---|---|---|
|
@@ -34,6 +34,7 @@ | |
'csv-s', | ||
'date', | ||
'datetime-iso', | ||
'deb-packages-index', | ||
'df', | ||
'dig', | ||
'dir', | ||
|
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,148 @@ | ||
"""jc - JSON Convert Debian Packages Index file parser | ||
Usage (cli): | ||
$ cat Packages | jc --deb-packages-index | ||
Usage (module): | ||
import jc | ||
result = jc.parse('deb_packages_index', deb_package_index_output) | ||
Schema: | ||
[ | ||
{ | ||
"package": string, | ||
"version": string, | ||
"architecture": string, | ||
"section": string, | ||
"priority": string, | ||
"installed_size": integer, | ||
"maintainer": string, | ||
"description": string, | ||
"homepage": string, | ||
"depends": string, | ||
"conflicts": string, | ||
"replaces": string, | ||
"vcs_git": string, | ||
"sha256": string, | ||
"size": integer, | ||
"vcs_git": string, | ||
"filename": string | ||
} | ||
] | ||
Examples: | ||
$ cat Packages | jc --deb-packages-index | ||
[ | ||
{ | ||
"package": "aspnetcore-runtime-2.1", | ||
"version": "2.1.22-1", | ||
"architecture": "amd64", | ||
"section": "devel", | ||
"priority": "standard", | ||
"installed_size": 71081, | ||
"maintainer": "Microsoft <[email protected]>", | ||
"description": "Microsoft ASP.NET Core 2.1.22 Shared Framework", | ||
"homepage": "https://www.asp.net/", | ||
"depends": "libc6 (>= 2.14), dotnet-runtime-2.1 (>= 2.1.22)", | ||
"sha256": "48d4e78a7ceff34105411172f4c3e91a0359b3929d84d26a493...", | ||
"size": 21937036, | ||
"filename": "pool/main/a/aspnetcore-runtime-2.1/aspnetcore-run..." | ||
}, | ||
{ | ||
"package": "azure-functions-core-tools-4", | ||
"version": "4.0.4590-1", | ||
"architecture": "amd64", | ||
"section": "devel", | ||
"priority": "optional", | ||
"maintainer": "Ahmed ElSayed <[email protected]>", | ||
"description": "Azure Function Core Tools v4", | ||
"homepage": "https://docs.microsoft.com/en-us/azure/azure-func...", | ||
"conflicts": "azure-functions-core-tools-2, azure-functions-co...", | ||
"replaces": "azure-functions-core-tools-2, azure-functions-cor...", | ||
"vcs_git": "https://github.com/Azure/azure-functions-core-tool...", | ||
"sha256": "a2a4f99d6d98ba0a46832570285552f2a93bab06cebbda2afc7...", | ||
"size": 124417844, | ||
"filename": "pool/main/a/azure-functions-core-tools-4/azure-fu..." | ||
} | ||
] | ||
$ cat Packages | jc --deb-packages-index -r | ||
[ | ||
{ | ||
"package": "aspnetcore-runtime-2.1", | ||
"version": "2.1.22-1", | ||
"architecture": "amd64", | ||
"section": "devel", | ||
"priority": "standard", | ||
"installed_size": "71081", | ||
"maintainer": "Microsoft <[email protected]>", | ||
"description": "Microsoft ASP.NET Core 2.1.22 Shared Framework", | ||
"homepage": "https://www.asp.net/", | ||
"depends": "libc6 (>= 2.14), dotnet-runtime-2.1 (>= 2.1.22)", | ||
"sha256": "48d4e78a7ceff34105411172f4c3e91a0359b3929d84d26a493...", | ||
"size": "21937036", | ||
"filename": "pool/main/a/aspnetcore-runtime-2.1/aspnetcore-run..." | ||
}, | ||
{ | ||
"package": "azure-functions-core-tools-4", | ||
"version": "4.0.4590-1", | ||
"architecture": "amd64", | ||
"section": "devel", | ||
"priority": "optional", | ||
"maintainer": "Ahmed ElSayed <[email protected]>", | ||
"description": "Azure Function Core Tools v4", | ||
"homepage": "https://docs.microsoft.com/en-us/azure/azure-func...", | ||
"conflicts": "azure-functions-core-tools-2, azure-functions-co...", | ||
"replaces": "azure-functions-core-tools-2, azure-functions-cor...", | ||
"vcs_git": "https://github.com/Azure/azure-functions-core-tool...", | ||
"sha256": "a2a4f99d6d98ba0a46832570285552f2a93bab06cebbda2afc7...", | ||
"size": "124417844", | ||
"filename": "pool/main/a/azure-functions-core-tools-4/azure-fu..." | ||
} | ||
] | ||
""" | ||
from typing import List | ||
from jc.jc_types import JSONDictType | ||
import jc.parsers.rpm_qi as rpm_qi | ||
|
||
|
||
class info(): | ||
"""Provides parser metadata (version, author, etc.)""" | ||
version = '1.0' | ||
description = 'Debian Packages Index file parser' | ||
author = 'Kelly Brazil' | ||
author_email = '[email protected]' | ||
details = 'Using the rpm-qi parser' | ||
compatible = ['linux', 'darwin', 'cygwin', 'win32', 'aix', 'freebsd'] | ||
tags = ['file'] | ||
|
||
|
||
__version__ = info.version | ||
|
||
|
||
def parse( | ||
data: str, | ||
raw: bool = False, | ||
quiet: bool = False | ||
) -> List[JSONDictType]: | ||
""" | ||
Main text parsing function | ||
Parameters: | ||
data: (string) text data to parse | ||
raw: (boolean) unprocessed output if True | ||
quiet: (boolean) suppress warning messages if True | ||
Returns: | ||
List of Dictionaries. Raw or processed structured data. | ||
""" | ||
# This parser is an alias of rpm_qi.py | ||
rpm_qi.info.compatible = ['linux', 'darwin', 'cygwin', 'win32', 'aix', 'freebsd'] | ||
rpm_qi.info.tags = ['file'] | ||
return rpm_qi.parse(data, raw, quiet) |
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