-
-
Notifications
You must be signed in to change notification settings - Fork 76
/
mysql.nuspec
86 lines (74 loc) · 5.72 KB
/
mysql.nuspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?xml version="1.0" encoding="utf-8"?>
<!-- Read this before creating packages: https://chocolatey.org/docs/create-packages -->
<!-- It is especially important to read the above link to understand additional requirements when publishing packages to the community feed aka dot org (https://community.chocolatey.org/packages). -->
<!-- Test your packages in a test environment: https://github.com/chocolatey/chocolatey-test-environment -->
<!--
This is a nuspec. It mostly adheres to https://docs.nuget.org/create/Nuspec-Reference. Chocolatey uses a special version of NuGet.Core that allows us to do more than was initially possible. As such there are certain things to be aware of:
* the package xmlns schema url may cause issues with nuget.exe
* Any of the following elements can ONLY be used by choco tools - projectSourceUrl, docsUrl, mailingListUrl, bugTrackerUrl, packageSourceUrl, provides, conflicts, replaces
* nuget.exe can still install packages with those elements but they are ignored. Any authoring tools or commands will error on those elements
-->
<!-- You can embed software files directly into packages, as long as you are not bound by distribution rights. -->
<!-- * If you are an organization making private packages, you probably have no issues here -->
<!-- * If you are releasing to the community feed, you need to consider distribution rights. -->
<!-- Do not remove this test for UTF-8: if “Ω” doesn’t appear as greek uppercase omega letter enclosed in quotation marks, you should use an editor that supports UTF-8, not this one. -->
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<!-- == PACKAGE SPECIFIC SECTION == -->
<!-- This section is about this package, although id and version have ties back to the software -->
<!-- id is lowercase and if you want a good separator for words, use '-', not '.'. Dots are only acceptable as suffixes for certain types of packages, e.g. .install, .portable, .extension, .template -->
<!-- If the software is cross-platform, attempt to use the same id as the debian/rpm package(s) if possible. -->
<id>mysql</id>
<!-- version should MATCH as closely as possible with the underlying software -->
<!-- Is the version a prerelease of a version? https://docs.nuget.org/create/versioning#creating-prerelease-packages -->
<!-- Note that unstable versions like 0.0.1 can be considered a released version, but it's possible that one can release a 0.0.1-beta before you release a 0.0.1 version. If the version number is final, that is considered a released version and not a prerelease. -->
<version>8.0.31</version>
<!-- owners is a poor name for maintainers of the package. It sticks around by this name for compatibility reasons. It basically means you. -->
<owners>Maurice Kevenaar; Rob Reynolds</owners>
<!-- ============================== -->
<!-- == SOFTWARE SPECIFIC SECTION == -->
<!-- This section is about the software itself -->
<title>MySQL (Community Server)</title>
<authors>Oracle Corporation and/or its affiliates</authors>
<!-- projectUrl is required for the community feed -->
<projectUrl>http://mysql.com/</projectUrl>
<iconUrl>https://cdn.jsdelivr.net/gh/mkevenaar/chocolatey-packages@f8a062579b8201cc49022144e353496dd6bd03b0/icons/mysql.png</iconUrl>
<!-- copyright is usually years and software vendor, but not required for internal feeds -->
<copyright>Oracle Corporation and/or its affiliates</copyright>
<tags>mysql database admin</tags>
<releaseNotes>https://dev.mysql.com/doc/relnotes/mysql/en/</releaseNotes>
<licenseUrl>http://www.gnu.org/licenses/old-licenses/gpl-2.0.html</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<packageSourceUrl>https://github.com/mkevenaar/chocolatey-packages/tree/master/automatic/mysql</packageSourceUrl>
<docsUrl>https://dev.mysql.com/doc/refman/en/</docsUrl>
<projectSourceUrl>https://github.com/mysql/mysql-server</projectSourceUrl>
<bugTrackerUrl>https://bugs.mysql.com/</bugTrackerUrl>
<mailingListUrl>https://lists.mysql.com/</mailingListUrl>
<summary>MySQL Community Server - The world's most popular open source database</summary>
<description><![CDATA[MySQL Community Edition is the freely downloadable version of the world's most popular open source database. It is available under the GPL license and is supported by a huge and active community of open source developers.
**Please Note**: This is an automatically updated package. If you find it is
out of date by more than a day or two, please contact the maintainer(s) and
let them know [here](https://github.com/mkevenaar/chocolatey-packages/issues) that the package is no longer updating correctly.
### Package Parameters
The package accepts the following optional parameters:
* `/installLocation` - filesystem location for mysql binaries
* `/dataLocation` - filesystem location for mysql data
* `/port` - numberic TCP listening port
* `/serviceName` - custom name for the Windows services entry
Example: `choco install mysql --params "/port:3307 /serviceName:AltSQL"`
]]></description>
<!-- =============================== -->
<!-- Specifying dependencies and version ranges? https://docs.nuget.org/create/versioning#specifying-version-ranges-in-.nuspec-files -->
<dependencies>
<dependency id="vcredist2015" version="14.0.24215.20170201" />
</dependencies>
<!--<provides>NOT YET IMPLEMENTED</provides>-->
<!--<conflicts>NOT YET IMPLEMENTED</conflicts>-->
<!--<replaces>NOT YET IMPLEMENTED</replaces>-->
</metadata>
<!-- this section controls what actually gets packaged into the Chocolatey package -->
<!-- Uncomment to limit what is packed in -->
<files>
<file src="tools\**" target="tools" />
</files>
</package>