1password.nuspec 4.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!-- Read this before creating packages: https://chocolatey.org/docs/create-packages -->
  3. <!-- It is especially important to read the above link to understand additional requirements when publishing packages to the community feed aka dot org (https://chocolatey.org/packages). -->
  4. <!-- Test your packages in a test environment: https://github.com/chocolatey/chocolatey-test-environment -->
  5. <!--
  6. 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:
  7. * the package xmlns schema url may cause issues with nuget.exe
  8. * Any of the following elements can ONLY be used by choco tools - projectSourceUrl, docsUrl, mailingListUrl, bugTrackerUrl, packageSourceUrl, provides, conflicts, replaces
  9. * nuget.exe can still install packages with those elements but they are ignored. Any authoring tools or commands will error on those elements
  10. -->
  11. <!-- You can embed software files directly into packages, as long as you are not bound by distribution rights. -->
  12. <!-- * If you are an organization making private packages, you probably have no issues here -->
  13. <!-- * If you are releasing to the community feed, you need to consider distribution rights. -->
  14. <!-- 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. -->
  15. <package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
  16. <metadata>
  17. <!-- == PACKAGE SPECIFIC SECTION == -->
  18. <!-- This section is about this package, although id and version have ties back to the software -->
  19. <!-- 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 -->
  20. <!-- If the software is cross-platform, attempt to use the same id as the debian/rpm package(s) if possible. -->
  21. <id>1password</id>
  22. <!-- version should MATCH as closely as possible with the underlying software -->
  23. <!-- Is the version a prerelease of a version? https://docs.nuget.org/create/versioning#creating-prerelease-packages -->
  24. <!-- 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. -->
  25. <version>4.6.0.604</version>
  26. <packageSourceUrl>https://github.com/ferventcoder/chocolatey-packages</packageSourceUrl>
  27. <!-- owners is a poor name for maintainers of the package. It sticks around by this name for compatibility reasons. It basically means you. -->
  28. <owners>Rob Reynolds</owners>
  29. <!-- ============================== -->
  30. <!-- == SOFTWARE SPECIFIC SECTION == -->
  31. <!-- This section is about the software itself -->
  32. <title>1Password (Install)</title>
  33. <authors>AgileBits</authors>
  34. <!-- projectUrl is required for the community feed -->
  35. <projectUrl>https://1password.com/</projectUrl>
  36. <iconUrl>https://cdn.rawgit.com/ferventcoder/chocolatey-packages/02c21bebe5abb495a56747cbb9b4b5415c933fc0/icons/1password.png</iconUrl>
  37. <copyright>AgileBits</copyright>
  38. <!-- If there is a license Url available, it is is required for the community feed -->
  39. <licenseUrl>https://support.1password.com/legal/</licenseUrl>
  40. <requireLicenseAcceptance>true</requireLicenseAcceptance>
  41. <!--<docsUrl>At what url are the software docs located?</docsUrl>-->
  42. <!--<mailingListUrl></mailingListUrl>-->
  43. <!--<bugTrackerUrl></bugTrackerUrl>-->
  44. <tags>1password password keystore keys saver admin</tags>
  45. <summary>1Password - Have you ever forgotten a password?</summary>
  46. <description>1Password – Too many passwords to remember?
  47. 1Password can create strong, unique passwords for you, remember them, and restore them, all directly in your web browser.
  48. **Please Note**: This is an automatically updated package. If you find it is
  49. out of date by more than a day or two, please contact the maintainer(s) and
  50. let them know the package is no longer updating correctly.
  51. </description>
  52. <!-- <releaseNotes>__REPLACE_OR_REMOVE__MarkDown_Okay</releaseNotes> -->
  53. <!-- =============================== -->
  54. </metadata>
  55. <files>
  56. <!-- this section controls what actually gets packaged into the Chocolatey package -->
  57. <file src="tools\**" target="tools" />
  58. <!--Building from Linux? You may need this instead: <file src="tools/**" target="tools" />-->
  59. </files>
  60. </package>