commit 9ed6d214e043ad6d279f16d5f7c25863701c869e Author: jolheiser Date: Thu Jul 21 23:41:44 2022 -0500 Initial commit Signed-off-by: jolheiser diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..0cbee30 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2022 John Olheiser + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..7781d41 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# webman-pkgs + +jolheiser webman packages diff --git a/pkgs/tmpl.webman-pkg.yml b/pkgs/tmpl.webman-pkg.yml new file mode 100644 index 0000000..da3406c --- /dev/null +++ b/pkgs/tmpl.webman-pkg.yml @@ -0,0 +1,33 @@ +tagline: Template automation for the less exciting parts of setting up new projects or re-typing the same thing over and over. +about: | + tmpl is heavily inspired by projects like boilr. It uses template automation for scaffolding parts (or all) of new projects. + +git_user: jolheiser +git_repo: tmpl +gitea_url: https://git.jojodev.com +info_url: https://git.jojodev.com/[GIT_USER]/[GIT_REPO] +releases_url: https://git.jojodev.com/[GIT_USER]/[GIT_REPO]/releases/ +source_url: https://git.jojodev.com/[GIT_USER]/[GIT_REPO]/ + +base_download_url: https://git.jojodev.com/[GIT_USER]/[GIT_REPO]/releases/download/v[VER]/ +filename_format: tmpl_[VER]_[OS]_[ARCH].[EXT] +version_format: v[VER] +latest_strategy: gitea-release + +os_map: + linux: + name: linux + ext: tar.gz + macos: + name: darwin + ext: tar.gz + win: + name: windows + ext: zip +arch_map: + amd64: x86_64 + "386": i386 + arm64: arm64 +ignore: + - os: macos + arch: "386"