Replies: 2 comments 4 replies
-
The packages in this repository ( If you want to have a new package added here, then opening a discussion is the correct thing to do. But if you want to have a new package added to the Chocolatey Community Repository ( |
Beta Was this translation helpful? Give feedback.
-
@AdmiringWorm do we need a maintainer to get a package included? but in the Age of AI I was thinking I might be able to create the initial submission files for getting this package included. <?xml version="1.0"?>
<package>
<metadata>
<id>phpmyadmin</id>
<version>5.1.1</version>
<title>PHPMyAdmin</title>
<authors>PHPMyAdmin Team</authors>
<owners>PHPMyAdmin Team</owners>
<summary>PHPMyAdmin is a free software tool written in PHP intended to handle the administration of MySQL over the World Wide Web.</summary>
<description>PHPMyAdmin is a free software tool written in PHP intended to handle the administration of MySQL over the World Wide Web.</description>
<projectUrl>https://www.phpmyadmin.net/</projectUrl>
<licenseUrl>https://www.phpmyadmin.net/license/</licenseUrl>
<tags>mysql php database administration</tags>
</metadata>
<files>
<file src="https://files.phpmyadmin.net/phpMyAdmin/5.1.1/phpMyAdmin-5.1.1-all-languages.zip" target="tools" />
</files>
</package> $toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$zipPath = Join-Path $toolsDir "phpMyAdmin.zip"
(New-Object System.Net.WebClient).DownloadFile('https://files.phpmyadmin.net/phpMyAdmin/5.1.1/phpMyAdmin-5.1.1-all-languages.zip', $zipPath)
Expand-Archive $zipPath $toolsDir
Remove-Item $zipPath
Write-Host "PHPMyAdmin installed to $($toolsDir)phpMyAdmin-5.1.1-all-languages" But I'm also not sure if that's all that's needed. The submission guidelines and instructions are not easy for me to follow. |
Beta Was this translation helpful? Give feedback.
-
Hello chocolatey-community,
Once every few week I stumble upon a windows software which does not yet have a chocolatey package, but do find a stable way to install it - either via a standalone executable, zipped folder, or exe/msi installer present on the original soft website, github repo releases section, etc.
I'd like to know if filling an issue on this chocolatey-packages repo is the correct way to have the community build a package for it - even if I am just a user and not a developper of the aforementioned software. On the issue submission template, I see I can
Open a discussion about moving a package you own, or have permission to move over to this repository.
, but this is slightly different since I'm not the package owner.I do understand having the package built by choco-community is slightly different than having the original project maintainer or team builds the choco package for example using Github Actions or the AU, which would require less manual steps. I've crawled through the docs to see if I could fill an issue or submit a PR but am not 100% confident on the way to do so.
Thanks a lot for your feedback!
Beta Was this translation helpful? Give feedback.
All reactions