This is a generator for some of the github actions in my gentoo overlay's workflow directory. - Which check for updates to various applications then generates ebuilds for them.
To install this application, run the following command:
go install github.com/arran4/arrans_overlay_workflow_builder@latestThis will install the arrans_overlay_workflow_builder binary in your $GOPATH/bin directory.
The purpose of this application is (currently) to quickly generate binary ebuild files for 2 use cases:
- Github repositories with AppImage binary releases
- Github repositories with normal elf binaries releases (such as those generated with
goreleaser)
The general idea is that this is to be used to quickly get specific binary apps.
Some considerations:
- alternative executables (such as with
hugoand it'sextendedversion which comes up as a use flag to switch between them.) - manual pages
- documents
- shell completion scripts (bash, zsh, fish and powershell)
The basic flow of using the app is that:
- Find a list of github URLs for applicable programs that you want to generate ebuilds for in your overlay
- Feed the URL to the appropriate
config generationstep (See the appropriate section below) - Modify the configuration as appropriate
- Run the
generate workflowsstep - Install the
./output/*.yamlfiles in your overlay's github repo's./github/workflowsdirectory - Commit and push. Staggered to 1 at a time with a 1-minute wait between each commit & push.
- Watch the ebuilds (or errors) come through
- Install your tools
The configuration files sections look as follows: (See mine here for more)
For AppImages released on GitHub:
Type Github AppImage Release
GithubProjectUrl https://github.com/anyproto/anytype-ts
Category app-text
EbuildName anytype-ts-appimage
Description Official Anytype client for MacOS, Linux, and Windows
Workaround Semantic Version Prerelease Hack 1
Homepage https://anytype.io
License Other
ProgramName Anytype
DesktopFile anytype.desktop
Icons hicolor-apps root
Dependencies sys-libs/glibc sys-libs/zlib
Binary amd64=>Anytype-${VERSION}.AppImage > Anytype.AppImage
For other binary files being released on GitHub:
Type Github Binary Release
GithubProjectUrl https://github.com/twpayne/chezmoi
EbuildName chezmoi-bin
Category app-admin
Description Manage your dotfiles across multiple diverse machines, securely.
Homepage https://www.chezmoi.io/
License MIT License
Workaround Programs as Alternatives => amd64:glibc amd64:loong64 arm64:android ppc64:le
ProgramName android
Binary arm64=>chezmoi_${VERSION}_android_arm64.tar.gz > chezmoi > chezmoi
ProgramName chezmoi
Dependencies sys-libs/glibc
Binary amd64=>chezmoi_${VERSION}_linux-musl_amd64.tar.gz > chezmoi > chezmoi
Binary arm=>chezmoi_${VERSION}_linux_arm.tar.gz > chezmoi > chezmoi
Binary arm64=>chezmoi_${VERSION}_linux_arm64.tar.gz > chezmoi > chezmoi
Binary ppc64=>chezmoi_${VERSION}_linux_ppc64.tar.gz > chezmoi > chezmoi
Binary riscv=>chezmoi_${VERSION}_linux_riscv64.tar.gz > chezmoi > chezmoi
Binary s390=>chezmoi_${VERSION}_linux_s390x.tar.gz > chezmoi > chezmoi
Binary x86=>chezmoi_${VERSION}_linux_i386.tar.gz > chezmoi > chezmoi
ProgramName glibc
Dependencies sys-libs/glibc
Binary amd64=>chezmoi_${VERSION}_linux-glibc_amd64.tar.gz > chezmoi > chezmoi
ProgramName le
Binary ppc64=>chezmoi_${VERSION}_linux_ppc64le.tar.gz > chezmoi > chezmoi
ProgramName loong64
Binary amd64=>chezmoi_${VERSION}_linux_loong64.tar.gz > chezmoi > chezmoi
Ideally you would have 1 file, with multiple of these entries in it. See mine here
There are 2 commands to generate the AppImage section, one outputs to STDOUT and the other outputs to a specified config file
You need to provide a github URL as such:
go run github.com/arran4/arrans_overlay_workflow_builder@latest config view github-release-appimage -github-url https://github.com/anyproto/anytype-tsYou will need to provide the GitHub URL for the target project, and optionally the input file which defaults to input.config
go run github.com/arran4/arrans_overlay_workflow_builder@latest config add github-release-appimage -github-url https://github.com/anyproto/anytype-ts -to input.configThere are 2 commands to generate the AppImage section, one outputs to STDOUT and the other outputs to a specified config file
You need to provide a github URL as such:
go run github.com/arran4/arrans_overlay_workflow_builder@latest config view github-release-binary -github-url https://github.com/goreleaser/goreleaserYou will need to provide the GitHub URL for the target project, and optionally the input file which defaults to input.config
go run github.com/arran4/arrans_overlay_workflow_builder@latest config add github-release-binary -github-url https://github.com/goreleaser/goreleaser -to input.configTo generate the workflows from an input.config file run:
go run github.com/arran4/arrans_overlay_workflow_builder@latest generate workflows -input-file input.configLook in the output/ directory for the generated file(s) these should be copied to your github overlay's ./.github/workflows
directory after being modified. Remember to add: Category with the appropriate Gentoo ebuild category.
When defining URLs or filenames in directives like Binary, Custom Download URL, or DownloadBaseUrl, you can use the following variables, which the generator will automatically replace with appropriate bash variables during workflow generation:
${TAG}- Replaced by${tag}in the generated bash script. Used to represent the original release tag string.${VERSION}- Replaced by${version}or\${PV}(inSRC_URI), depending on the context. Used to represent the version string (e.g.1.2.3).${GITHUB_OWNER}- Replaced by${{ env.github_owner }}.${GITHUB_REPO}- Replaced by${{ env.github_repo }}.${KEYWORD}- Replaced by\${ARCH}in the ebuildSRC_URI.
There are a couple workarounds. At the moment the application assumes semantic versions, and using GitHub releases. Some will be automatically detected, some won't.
In some cases, multiple workarounds are supported.
The program will automatically detect this.
Add Workaround Semantic Version Without V to the config after License
This mostly impacts projects that have releases like alpha beta etc. The program will automatically detect this.
Add Workaround Semantic Version Prerelease Hack 1 to the config after License
The program will NOT detect this, you will have to craft a config to match this, or attempt to use the appropriate commandline flag.
The work around is:
Workaround Tag Prefix => prefix-
Such as in Ente's Auth:
Type Github AppImage Release
GithubProjectUrl https://github.com/ente-io/ente
EbuildName ente-auth-appimage
Description Ente's 2FA solution
Homepage https://ente.io/blog/auth/
License GNU Affero General Public License v3.0
Workaround Semantic Version Prerelease Hack 1
Workaround Tag Prefix => auth-
ProgramName ente_auth
DesktopFile ente_auth.desktop
Icons hicolor-apps root
Dependencies sys-libs/glibc sys-libs/zlib
Binary amd64=>ente-${TAG}-x86_64.AppImage > ente_auth.AppImage
The flag for this is -tag-prefix used as such:
go run github.com/arran4/arrans_overlay_workflow_builder@latest config view github-release-appimage -github-url https://github.com/anyproto/anytype-ts -tag-prefix auth-Due to assumption in the program you WILL have to modify the EbuildName, Description, Homepage and Category at minimum.
This is not really supported but you can manually specify the tag to base the configuration off with -version-tag this is used in cases such as: https://github.com/probonopd/go-appimage
itself, as currently it uses a snapshot system where the snapshot tag is continuous which is hard to work with.
If it was working this is what it would look like.
Type Github AppImage
GithubProjectUrl https://github.com/probonopd/go-appimage
EbuildName go-appimage
Description Go implementation of AppImage tools
License MIT License
Workaround Nightly Build in 'Continuous' With Build Number as version with offset '646'
ProgramName appimaged-838
DesktopFile appimaged.desktop
InstalledFilename appimaged-838.AppImage
ReleasesFilename amd64=>appimaged-838-x86_64.AppImage
ReleasesFilename arm=>appimaged-838-armhf.AppImage
ReleasesFilename arm64=>appimaged-838-aarch64.AppImage
ReleasesFilename x86=>appimaged-838-i686.AppImage
ProgramName appimagetool-838
DesktopFile appimagetool.desktop
InstalledFilename appimagetool-838.AppImage
ReleasesFilename amd64=>appimagetool-838-x86_64.AppImage
ReleasesFilename arm=>appimagetool-838-armhf.AppImage
ReleasesFilename arm64=>appimagetool-838-aarch64.AppImage
ReleasesFilename x86=>appimagetool-838-i686.AppImage
ProgramName mkappimage-838
DesktopFile mkappimage.desktop
InstalledFilename mkappimage-838.AppImage
ReleasesFilename amd64=>mkappimage-838-x86_64.AppImage
ReleasesFilename arm=>mkappimage-838-armhf.AppImage
ReleasesFilename arm64=>mkappimage-838-aarch64.AppImage
ReleasesFilename x86=>mkappimage-838-i686.AppImage
Please note: 838 should be the ${TAG} and this removed from the program name. '646' is specified as though we could
grab the current build number, which we don't. This will remain unsupported for the mean time.
- The program has been extended without being refactored beyond its original purpose, I am keen to get someone who has a better design to weigh in, create a PR, or a discussion
- this tool is for VERY specific use cases. You will have to be prepared to modify it for yours if not included
- This program is provided under the "good enough for my itch" philosophy. You're welcome to fork, create pull requests and extend as needed.
- I will be concerned mostly with the apps of my interest, the list can be found here: https://github.com/arran4/arrans_overlay/blob/main/current.config
- The entire
main.gois to completely rebuilt with generated code. But until then do what is necessary but in a way which is compatible with that idea - I am considering generating more files such as the metadata.xml file too
For non-GitHub releases, the generator supports the Web AppImage and Web Binary types. By default, these rely on HTML scraping or static URLs, but can be highly customized to extract dynamic versions and downloads from index pages, JSON APIs, or RSS feeds.
Instead of using Bash-dependent tools, you can use the built-in python extraction pipeline. You define pipelines in your configuration for version parsing and download resolution.
VersionPipeline(Web Binary only) - A chained command string used to extract all release versions from the web. Web AppImage derives versions dynamically via AppImage artifact names orCustomVersionSource.DownloadPipeline- A chained command string used to extract the specific binary download URL for a given tag.Download Redirect(AppImages only) - Resolves AppImage URLs by followingHTTP 302redirects natively, bypassing HTML scraping.DownloadRegex(Legacy fallback) - Equivalent toget(URL) | html_links | regex(PATTERN) | last.DownloadXPath(Legacy fallback) - Not recommended, useVersionPipelineandDownloadPipelineinstead.
The extraction pipeline supports piping commands (|) to incrementally parse data (like jq or sed, but using python standard libraries).
Available commands:
get(url)- Fetches data from a URL usingurllib. Note: URL should be plain text, variables like${TAG}are injected.rssoratom- Parses XML and returns a list of items/entries.json(path.to.key)- Parses JSON data and navigates down to the specified key.html_links- Extractshrefattributes from HTML<a>tags and automatically resolves them against the fetching URL usingurljoin.regex(pattern)- Applies a regex pattern to extract a matching group. If applied to a list, it filters the list.link- Extracts the<link>target (from RSS/Atom).url.basename- Extracts the file path basename from a URL string.replace('search', 'replace')- Simple string replacement usingast.literal_evalfor parsing tuple arguments.xml- Parses XML inputs natively for xpath extraction.xpath(query)- Executes standard ElementTree xpath subset queries on parsed XML.first/last- Grabs the first or last element of a list. When an ambiguous count matches, exactly1element is selected depending on orientation.exactly_one/single- Selects exactly one element. Throws a clear fatal error if ambiguous (multiple matches) or missing (zero matches) are found, enforcing a strict cardinality constraint instead of selecting an arbitrary element.
The pipeline supports native templating substitutions during workflow execution for precise resource fetching. Note that substitutions are heavily restricted depending on configuration type to enforce correct lifecycle resolution:
${VERSION}: Supported unconditionally inWeb Binaryto access the current mapped iteration version. InWeb AppImage, it is only supported ifCustomVersionSourceis explicitly specified.${TAG}: Supported natively inWeb Binaryiteration loops. Unsupported inWeb AppImagepipeline generation.${RELEASE_FILENAME}: Replaced with the evaluated architecture-specific resource filename mapping withinExternalResources. Unsupported inWeb AppImagegeneration.
For a project updating its versions via an RSS feed, you can easily extract the version by chaining get, rss, first and regex.
Type Web Binary
EbuildName example-bin
Category app-misc
Description Example using Web Binary and RSS extraction
Homepage https://example.com
License MIT
DownloadBaseUrl https://example.com/downloads/example-${VERSION}.tar.gz
VersionPipeline get(https://example.com/feed.xml) | rss | first | link | url.basename | regex(v(.*))
ProgramName example
Binary amd64=>example-${VERSION}.tar.gz > example > example
For a static site where you are extracting versions from the index path strings, it is highly recommended to use exactly_one to immediately catch regressions instead of quietly returning arbitrary components from upstream HTML changes. If there are no matches, it will fail gracefully with exactly_one/single expected 1 item, got 0. If there are multiple releases published simultaneously, it will fail with exactly_one/single expected 1 item, got X.
Type Web Binary
EbuildName which-browser-bin
Category www-client
Description Example which_browser implementation
Homepage https://which-browser.site
License MIT
DownloadBaseUrl https://which-browser.site/downloads/v${VERSION}/
VersionPipeline get(https://which-browser.site/downloads/) | html_links | regex(which_browser-([^/]+)-linux[.]deb$) | exactly_one
DownloadPipeline get(https://which-browser.site/downloads/) | html_links | regex(.*/downloads/v[^/]+/which_browser-[^/]+-linux[.]deb$) | exactly_one
Workaround Version Replacement => s/\+/_p/g
ProgramName which-browser
Binary amd64=>which_browser-${TAG}-linux.deb > which_browser > which-browser
This repository includes a deterministic, hermetic smoke test suite in smoke_test.go. The test harness renders the actual workflow templates, parses the yaml, substitutes github environment bindings, and executes the generated bash scripts natively within a stubbed shell context ($PATH is overridden). This proves that the templated paths function accurately from ebuild synthesis up through metadata and commit generation. When adding new template workflows or complicated edge conditions, consider adding a new scenario block to the smoke harness.