Merge pull request 'Adding META files because they are necessary to add packages, I guess' (#3) from uris into develop

Reviewed-on: #3
This commit is contained in:
peteyboy 2024-07-15 13:50:50 -04:00
commit 6c627e865f
6 changed files with 154 additions and 6 deletions

3
.gitignore vendored
View File

@ -1,9 +1,6 @@
# ---> Perl
!Build/
.last_cover_stats
/META.yml
/META.json
/MYMETA.*
*.o
*.pm.tdy
*.bs

48
META.json Normal file
View File

@ -0,0 +1,48 @@
{
"abstract" : "Curses UI NEX:// browser",
"author" : [
"peteyboy <peteyboy@sdf.org>"
],
"dynamic_config" : 0,
"generated_by" : "App::ModuleBuildTiny version 0.043",
"license" : [
"perl_5"
],
"meta-spec" : {
"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
"version" : "2"
},
"name" : "App-Connex",
"prereqs" : {
"configure" : {
"requires" : {
"Module::Build::Tiny" : "0.039"
}
},
"develop" : {
"requires" : {
"App::ModuleBuildTiny" : "0.043"
}
},
"runtime" : {
"requires" : {
"Curses::UI" : "0",
"Net::Telnet" : "0",
"URI" : "0",
"URI::Split" : "0",
"strict" : "0",
"warnings" : "0"
}
}
},
"provides" : {
"App::Connex" : {
"file" : "lib/App/Connex.pm",
"version" : "0.9"
}
},
"release_status" : "stable",
"version" : "0.9",
"x_serialization_backend" : "JSON::PP version 4.07",
"x_spdx_expression" : "Artistic-1.0-Perl OR GPL-1.0-or-later"
}

28
META.yml Normal file
View File

@ -0,0 +1,28 @@
---
abstract: 'Curses UI NEX:// browser'
author:
- 'peteyboy <peteyboy@sdf.org>'
build_requires: {}
configure_requires:
Module::Build::Tiny: '0.039'
dynamic_config: 0
generated_by: 'App::ModuleBuildTiny version 0.043, CPAN::Meta::Converter version 2.150010'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: '1.4'
name: App-Connex
provides:
App::Connex:
file: lib/App/Connex.pm
version: '0.9'
requires:
Curses::UI: '0'
Net::Telnet: '0'
URI: '0'
URI::Split: '0'
strict: '0'
warnings: '0'
version: '0.9'
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
x_spdx_expression: 'Artistic-1.0-Perl OR GPL-1.0-or-later'

48
MYMETA.json Normal file
View File

@ -0,0 +1,48 @@
{
"abstract" : "Curses UI NEX:// browser",
"author" : [
"peteyboy <peteyboy@sdf.org>"
],
"dynamic_config" : 0,
"generated_by" : "App::ModuleBuildTiny version 0.043, CPAN::Meta::Converter version 2.150010",
"license" : [
"perl_5"
],
"meta-spec" : {
"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
"version" : 2
},
"name" : "App-Connex",
"prereqs" : {
"configure" : {
"requires" : {
"Module::Build::Tiny" : "0.039"
}
},
"develop" : {
"requires" : {
"App::ModuleBuildTiny" : "0.043"
}
},
"runtime" : {
"requires" : {
"Curses::UI" : "0",
"Net::Telnet" : "0",
"URI" : "0",
"URI::Split" : "0",
"strict" : "0",
"warnings" : "0"
}
}
},
"provides" : {
"App::Connex" : {
"file" : "lib/App/Connex.pm",
"version" : "0.9"
}
},
"release_status" : "stable",
"version" : "0.9",
"x_serialization_backend" : "JSON::PP version 4.07",
"x_spdx_expression" : "Artistic-1.0-Perl OR GPL-1.0-or-later"
}

28
MYMETA.yml Normal file
View File

@ -0,0 +1,28 @@
---
abstract: 'Curses UI NEX:// browser'
author:
- 'peteyboy <peteyboy@sdf.org>'
build_requires: {}
configure_requires:
Module::Build::Tiny: '0.039'
dynamic_config: 0
generated_by: 'App::ModuleBuildTiny version 0.043, CPAN::Meta::Converter version 2.150010'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: '1.4'
name: App-Connex
provides:
App::Connex:
file: lib/App/Connex.pm
version: '0.9'
requires:
Curses::UI: '0'
Net::Telnet: '0'
URI: '0'
URI::Split: '0'
strict: '0'
warnings: '0'
version: '0.9'
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
x_spdx_expression: 'Artistic-1.0-Perl OR GPL-1.0-or-later'

View File

@ -3,11 +3,10 @@
# By Pete Dussin, peteyboy@sdf.org 3/2024
# This program uses telnet instead of nc to make nex requests, because I couldn't get the Perl nc module to work right.
#TODO: Some branding (status popup on load?, Connex menu item?), About dialog
#TODO: Fill out help Dialog, mention vi navigatio and search
#TODO: Fill out About Dialog
#TODO:Make status dialog actually useful
#TODO: Make status dialog actually useful
#TODO: bookmarks, maybe a quick mark-and-hold toggle to jump between two pages?
use FindBin qw($Bin);