Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-08-11 | feat(google-cloud-sdk): new upstream release: 305.0.0 | Benjamin Denhartog | |
2020-08-04 | feaet(google-cloud-sdk): new upstream release: 304.0.0 | Benjamin Denhartog | |
2020-07-28 | feat(google-cloud-sdk): new upstream release: 303.0.0 | Benjamin Denhartog | |
2020-07-22 | feat(google-cloud-sdk): new upstream release: 302.0.0 | Benjamin Denhartog | |
2020-07-22 | feat(google-cloud-sdk): new upstream release: 301.0.0 | Benjamin Denhartog | |
2020-07-08 | feat(google-cloud-sdk): new upstream release: 300.0.0 | Benjamin Denhartog | |
2020-07-01 | feat(google-cloud-sdk): new upstream release: 299.0.0 | Benjamin Denhartog | |
2020-06-23 | feat(google-cloud-sdk): new upstream release: 298.0.0 | Benjamin Denhartog | |
2020-06-18 | feat(google-cloud-sdk): new upstream release: 297.0.1 | Benjamin Denhartog | |
2020-06-16 | feat(google-cloud-sdk): new upstream release: 297.0.0 | Benjamin Denhartog | |
2020-06-10 | feat(google-cloud-sdk): new upstream release: 296.0.1 | Benjamin Denhartog | |
2020-06-09 | feat(google-cloud-sdk): new upstream release: 296.0.0 | Benjamin Denhartog | |
2020-06-03 | feat(google-cloud-sdk): new upstream release: 295.0.0 | Benjamin Denhartog | |
2020-05-28 | feat(google-cloud-sdk): new upstream release: 294.0.0 | Benjamin Denhartog | |
2020-05-22 | feat(google-cloud-sdk): new upstream release: 293.0.0.0 | Benjamin Denhartog | |
2020-05-13 | feat(google-cloud-sdk): new upstream release: 292.0.0 | Benjamin Denhartog | |
2020-05-05 | feat(google-cloud-sdk): new upstream release: 291.0.0 | Benjamin Denhartog | |
2020-05-04 | feat(google-cloud-sdk): install zsh completion | Ali Kaafarani | |
2020-04-27 | feat(google-cloud-sdk): new upstream release: 290.0.1 | Benjamin Denhartog | |
2020-04-23 | feat(google-cloud-sdk): new upstream release: 290.0.0 | Benjamin Denhartog | |
2020-04-23 | fix(google-cloud-sdk): change mode of bash completion from 0755 to 0644 | Benjamin Denhartog | |
2020-04-23 | style(google-cloud-sdk): use consistent format for specifying `install` options | Benjamin Denhartog | |
2020-04-15 | feat(google-cloud-sdk): new upstream release: 289.0.0 | Benjamin Denhartog | |
2020-04-07 | feat(google-cloud-sdk): new upstream release: 288.0.0 | Benjamin Denhartog | |
2020-04-01 | feat(google-cloud-sdk): new upstream release: 287.0.0 | Benjamin Denhartog | |
2020-03-24 | feat(google-cloud-sdk): new upstream release: 286.0.0 | Benjamin Denhartog | |
2020-03-24 | feat(google-cloud-sdk): only apply patches which are present in $source | Benjamin Denhartog | |
This patch refactors the block within the prepare() function which handles applying patches to explicitly use the patch files present in the source array. Previously, the iteratable list was generated using a shell glob -- doing this allows for a potential issue. The particular issue comes into play when a user has built a version of the package which contains, for example, three patch files named 0{1-A,2-B,3-C}.patch -- when building manually with `makepkg`, their local `src/` directory will contain all three patch files. If a future version of this package removed the need for 03-C.patch, and the user built the package via `makepkg` again _without passing the `--cleanbuild` flag__, the 03-C.patch file would not be removed, and the shell globbing would detect and attempt to apply that file, causing an error (assuming the patch failed to apply). What we're doing now is much more sane, without introducing additional overhead: iterating over each entry in $source and pattern-matching the end of the string to ensure it ends with `\.patch` before applying it allows us to add and remove patch files from $source as needed without having to update prepare(), with the added benefit of bypassing the issue referenced above. closes #20 | |||
2020-03-22 | feat(google-cloud-sdk): move python2 to optdeps | Benjamin Denhartog | |
2020-03-18 | feat(google-cloud-sdk): new upstream release: 285.0.1 | Benjamin Denhartog | |
2020-03-18 | feat(google-cloud-sdk): new upstream release: 285.0.0 | Benjamin Denhartog | |
2020-03-10 | feat(google-cloud-sdk): new upstream release: 284.0.0 | Benjamin Denhartog | |
2020-03-03 | feat(google-cloud-sdk): new upstream release: 283.0.0 | Benjamin Denhartog | |
For information about the changes contained in this release, view the [release notes][0]. [0]: https://cloud.google.com/sdk/docs/release-notes#28300_2020-03-03 | |||
2020-02-25 | feat(google-cloud-sdk): new upstream release: 282.0.0 | Benjamin Denhartog | |
This patch upgrades google-cloud-sdk to version 282.0.0. As of this release, the patch to the internal third_party dependency (lib/third_party/ipaddress) is no longer necessary, as the dependency appears to be have been updated. For additional background information, refer to commit f1756a58dd64ac710a3d3e70e1d9812e5e460a8a in this repository. | |||
2020-02-18 | feat(google-cloud-sdk): new upstream release: 281.0.0 | Benjamin Denhartog | |
2020-02-11 | feat(google-cloud-sdk): new upstream release: 280.0.0 | Benjamin Denhartog | |
2020-02-07 | feat(google-cloud-sdk): new upstream release: 279.0.0 | Benjamin Denhartog | |
2020-02-03 | fix(google-cloud-sdk): add patch file for SyntaxWarning in ipaddress | Benjamin Denhartog | |
Internally, `google-cloud-sdk` depends on a third party library called `ipaddress`. The version of `ipaddress` that is bundled with `google-cloud-sdk` is outdated, and is missing a modulus (%) when formatting a string. The upstream project accepted a patch for this in October 2019 [0], so it appears that the version bundled within `google-cloud-sdk` needs to be updated. To that effect, an issue has been reported [1]; the patch file added by this commit can be removed when it has been resolved. closes sudoforge/pkgbuilds#15 [0]: https://github.com/phihag/ipaddress/pull/48 [1]: https://issuetracker.google.com/issues/148752648 | |||
2020-01-28 | feat(google-cloud-sdk): new upstream release: 278.0.0 | Benjamin Denhartog | |
2020-01-23 | chore: remove echo statements from PKGBUILD | Benjamin Denhartog | |
2020-01-23 | feat(google-cloud-sdk): new upstream release: 277.0.0 | Benjamin Denhartog | |
2020-01-23 | chore(google-cloud-sdk): remove __pycache__ directories containing ↵ | Benjamin Denhartog | |
interpreter-compiled bytecode These directories are created as a result of executing the bootstrap script and should not be included in the package. | |||
2020-01-23 | fix(google-cloud-sdk): add patch file to force endpointscfg.py to python2 | Benjamin Denhartog | |
endpointscfg.py does not currently support Python3. See `gcloud topic startup` [0] for more information. [0]: https://cloud.google.com/sdk/gcloud/reference/topic/startup | |||
2020-01-23 | fix(google-cloud-sdk): add patch file to force dev_appserver.py to python2 | Benjamin Denhartog | |
dev_appserver.py does not currently support Python3. See `gcloud topic startup` [0] for more information. [0]: https://cloud.google.com/sdk/gcloud/reference/topic/startup | |||
2020-01-23 | fix: add patch file to avoid SyntaxWarning when executing console_io.py | Benjamin Denhartog | |
This patch adds a patch file to the package that fixes an erroneous usage of the 'is' operator with a literal (string) in lib/googlecloudsdk/core/console/console_io.py. This has been reported upstream. refs https://issuetracker.google.com/issues/147702239 | |||
2020-01-16 | new release: google-cloud-sdk 276.0.0-2 | Benjamin Denhartog | |
- fix: remove package from optdepends: python - feat: change CLOUDSDK_PYTHON from python2 to python | |||
2020-01-15 | new release: google-cloud-sdk 276.0.0-1 | Benjamin Denhartog | |
upstream release | |||
2020-01-08 | new release: google-cloud-sdk 275.0.0-1 | Benjamin Denhartog | |
upstream release | |||
2020-01-08 | new release: google-cloud-sdk 274.0.0-1 | Benjamin Denhartog | |
2020-01-08 | new release: google-cloud-sdk 274.0.0-0 | Benjamin Denhartog | |
2019-12-10 | rollback: google-cloud-sdk 272.0.0-3 | Benjamin Denhartog | |