You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by GitBox <gi...@apache.org> on 2020/03/23 13:42:26 UTC

[GitHub] [camel-k] edeandrea opened a new issue #1369: Make kamel cli installable via Homebrew

edeandrea opened a new issue #1369: Make kamel cli installable via Homebrew
URL: https://github.com/apache/camel-k/issues/1369
 
 
   It would be a really nice addition to be able to install the `kamel` cli via Homebrew for Macos users.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [camel-k] ipolyzos commented on issue #1369: Make kamel cli installable via Homebrew

Posted by GitBox <gi...@apache.org>.
ipolyzos commented on issue #1369: Make kamel cli installable via Homebrew
URL: https://github.com/apache/camel-k/issues/1369#issuecomment-614192588
 
 
   Could you please advise on a PR should be structured? _(path etc)_

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [camel-k] ipolyzos edited a comment on issue #1369: Make kamel cli installable via Homebrew

Posted by GitBox <gi...@apache.org>.
ipolyzos edited a comment on issue #1369: Make kamel cli installable via Homebrew
URL: https://github.com/apache/camel-k/issues/1369#issuecomment-614192588
 
 
   Could you please advise on how a PR should be structured? _(path etc)_

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [camel-k] edeandrea commented on issue #1369: Make kamel cli installable via Homebrew

Posted by GitBox <gi...@apache.org>.
edeandrea commented on issue #1369: Make kamel cli installable via Homebrew
URL: https://github.com/apache/camel-k/issues/1369#issuecomment-614193471
 
 
   I can't seem to tap it
   
   ```bash
   $ brew tap ipolyzos/kamel-homebrew-tap
   ==> Tapping ipolyzos/kamel-homebrew-tap
   Cloning into '/usr/local/Homebrew/Library/Taps/ipolyzos/homebrew-kamel-homebrew-tap'...
   remote: Repository not found.
   fatal: repository 'https://github.com/ipolyzos/homebrew-kamel-homebrew-tap/' not found
   Error: Failure while executing; `git clone https://github.com/ipolyzos/homebrew-kamel-homebrew-tap /usr/local/Homebrew/Library/Taps/ipolyzos/homebrew-kamel-homebrew-tap` exited with 128.
   ```
   
   According to the [taps guide for repository naming conventions](https://docs.brew.sh/Taps#repository-naming-conventions-and-assumptions) the repository name should start with `homebrew`.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [camel-k] ipolyzos edited a comment on issue #1369: Make kamel cli installable via Homebrew

Posted by GitBox <gi...@apache.org>.
ipolyzos edited a comment on issue #1369: Make kamel cli installable via Homebrew
URL: https://github.com/apache/camel-k/issues/1369#issuecomment-614203738
 
 
   The repo does not compy in the default naming _(user/homebrew-tap)_ thus why it fails[1|[https://docs.brew.sh/Taps]]. If you please try the format : 
   
   > brew tap \<user/repo\> \<URL\>
   
   
   e.g
   
   > brew tap ipolyzos/tap https://github.com/ipolyzos/kamel-homebrew-tap 
   
   Please see below my log:
   
   ```
   $ brew tap ipolyzos/tap https://github.com/ipolyzos/kamel-homebrew-tap                                                                             git:(master|) 
   ==> Tapping ipolyzos/tap
   Cloning into '/home/linuxbrew/.linuxbrew/Homebrew/Library/Taps/ipolyzos/homebrew-tap'...
   ^[[Aremote: Enumerating objects: 6, done.
   remote: Counting objects: 100% (6/6), done.
   remote: Compressing objects: 100% (5/5), done.
   remote: Total 6 (delta 1), reused 6 (delta 1), pack-reused 0
   Unpacking objects: 100% (6/6), 4.67 KiB | 2.33 MiB/s, done.
   Tapped 1 formula (33 files, 133.9KB).
   $ brew install kamel                                                                                                                               git:(master|) 
   ==> Installing kamel from ipolyzos/tap
   ==> Cloning https://github.com/apache/camel-k.git
   Updating /home/ipolyzos/.cache/Homebrew/kamel--git
   ==> Checking out tag 1.0.0-RC2
   HEAD is now at 24ddce5 Release 1.0.0-RC2
   HEAD is now at 24ddce5 Release 1.0.0-RC2
   ==> make
   ==> Caveats
   Bash completion has been installed to:
     /home/linuxbrew/.linuxbrew/etc/bash_completion.d
   
   zsh completions have been installed to:
     /home/linuxbrew/.linuxbrew/share/zsh/site-functions
   ==> Summary
   🍺  /home/linuxbrew/.linuxbrew/Cellar/kamel/1.0.0-RC2: 8 files, 59.7MB, built in 1 minute 4 seconds
   ```
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [camel-k] ipolyzos edited a comment on issue #1369: Make kamel cli installable via Homebrew

Posted by GitBox <gi...@apache.org>.
ipolyzos edited a comment on issue #1369: Make kamel cli installable via Homebrew
URL: https://github.com/apache/camel-k/issues/1369#issuecomment-614203738
 
 
   The repo does not compy in the default naming _(user/homebrew-tap)_ thus why it fails [[1](https://docs.brew.sh/Taps)]. If you please try the format : 
   
   > brew tap \<user/repo\> \<URL\>
   
   
   e.g
   
   > brew tap ipolyzos/tap https://github.com/ipolyzos/kamel-homebrew-tap 
   
   Please see below my log:
   
   ```
   $ brew tap ipolyzos/tap https://github.com/ipolyzos/kamel-homebrew-tap                                                                             git:(master|) 
   ==> Tapping ipolyzos/tap
   Cloning into '/home/linuxbrew/.linuxbrew/Homebrew/Library/Taps/ipolyzos/homebrew-tap'...
   ^[[Aremote: Enumerating objects: 6, done.
   remote: Counting objects: 100% (6/6), done.
   remote: Compressing objects: 100% (5/5), done.
   remote: Total 6 (delta 1), reused 6 (delta 1), pack-reused 0
   Unpacking objects: 100% (6/6), 4.67 KiB | 2.33 MiB/s, done.
   Tapped 1 formula (33 files, 133.9KB).
   $ brew install kamel                                                                                                                               git:(master|) 
   ==> Installing kamel from ipolyzos/tap
   ==> Cloning https://github.com/apache/camel-k.git
   Updating /home/ipolyzos/.cache/Homebrew/kamel--git
   ==> Checking out tag 1.0.0-RC2
   HEAD is now at 24ddce5 Release 1.0.0-RC2
   HEAD is now at 24ddce5 Release 1.0.0-RC2
   ==> make
   ==> Caveats
   Bash completion has been installed to:
     /home/linuxbrew/.linuxbrew/etc/bash_completion.d
   
   zsh completions have been installed to:
     /home/linuxbrew/.linuxbrew/share/zsh/site-functions
   ==> Summary
   🍺  /home/linuxbrew/.linuxbrew/Cellar/kamel/1.0.0-RC2: 8 files, 59.7MB, built in 1 minute 4 seconds
   ```
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [camel-k] ipolyzos commented on issue #1369: Make kamel cli installable via Homebrew

Posted by GitBox <gi...@apache.org>.
ipolyzos commented on issue #1369: Make kamel cli installable via Homebrew
URL: https://github.com/apache/camel-k/issues/1369#issuecomment-614203738
 
 
   The repo does not compy in the default naming _(user/homebrew-tap)_ thus why it fails. If you please try the format : 
   
   > brew tap \<user/repo\> \<URL\>
   
   
   e.g
   
   > brew tap ipolyzos/tap https://github.com/ipolyzos/kamel-homebrew-tap 
   
   Please see below my log:
   
   ```
   $ brew tap ipolyzos/tap https://github.com/ipolyzos/kamel-homebrew-tap                                                                             git:(master|) 
   ==> Tapping ipolyzos/tap
   Cloning into '/home/linuxbrew/.linuxbrew/Homebrew/Library/Taps/ipolyzos/homebrew-tap'...
   ^[[Aremote: Enumerating objects: 6, done.
   remote: Counting objects: 100% (6/6), done.
   remote: Compressing objects: 100% (5/5), done.
   remote: Total 6 (delta 1), reused 6 (delta 1), pack-reused 0
   Unpacking objects: 100% (6/6), 4.67 KiB | 2.33 MiB/s, done.
   Tapped 1 formula (33 files, 133.9KB).
   $ brew install kamel                                                                                                                               git:(master|) 
   ==> Installing kamel from ipolyzos/tap
   ==> Cloning https://github.com/apache/camel-k.git
   Updating /home/ipolyzos/.cache/Homebrew/kamel--git
   ==> Checking out tag 1.0.0-RC2
   HEAD is now at 24ddce5 Release 1.0.0-RC2
   HEAD is now at 24ddce5 Release 1.0.0-RC2
   ==> make
   ==> Caveats
   Bash completion has been installed to:
     /home/linuxbrew/.linuxbrew/etc/bash_completion.d
   
   zsh completions have been installed to:
     /home/linuxbrew/.linuxbrew/share/zsh/site-functions
   ==> Summary
   🍺  /home/linuxbrew/.linuxbrew/Cellar/kamel/1.0.0-RC2: 8 files, 59.7MB, built in 1 minute 4 seconds
   ```
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [camel-k] ipolyzos commented on issue #1369: Make kamel cli installable via Homebrew

Posted by GitBox <gi...@apache.org>.
ipolyzos commented on issue #1369: Make kamel cli installable via Homebrew
URL: https://github.com/apache/camel-k/issues/1369#issuecomment-614181895
 
 
   I would be happy to take over this task.
   
   I have created an initial tap for your feedback at [kamel-homebrew-tap](https://github.com/ipolyzos/kamel-homebrew-tap).

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [camel-k] ipolyzos edited a comment on issue #1369: Make kamel cli installable via Homebrew

Posted by GitBox <gi...@apache.org>.
ipolyzos edited a comment on issue #1369: Make kamel cli installable via Homebrew
URL: https://github.com/apache/camel-k/issues/1369#issuecomment-614203738
 
 
   The repo does not comply the default naming _(user/homebrew-tap)_ thus why it fails [[1](https://docs.brew.sh/Taps)]. If you please try the format : 
   
   > brew tap \<user/repo\> \<URL\>
   
   
   e.g
   
   > brew tap ipolyzos/tap https://github.com/ipolyzos/kamel-homebrew-tap 
   
   Please see below my log:
   
   ```
   $ brew tap ipolyzos/tap https://github.com/ipolyzos/kamel-homebrew-tap                                                                             git:(master|) 
   ==> Tapping ipolyzos/tap
   Cloning into '/home/linuxbrew/.linuxbrew/Homebrew/Library/Taps/ipolyzos/homebrew-tap'...
   ^[[Aremote: Enumerating objects: 6, done.
   remote: Counting objects: 100% (6/6), done.
   remote: Compressing objects: 100% (5/5), done.
   remote: Total 6 (delta 1), reused 6 (delta 1), pack-reused 0
   Unpacking objects: 100% (6/6), 4.67 KiB | 2.33 MiB/s, done.
   Tapped 1 formula (33 files, 133.9KB).
   $ brew install kamel                                                                                                                               git:(master|) 
   ==> Installing kamel from ipolyzos/tap
   ==> Cloning https://github.com/apache/camel-k.git
   Updating /home/ipolyzos/.cache/Homebrew/kamel--git
   ==> Checking out tag 1.0.0-RC2
   HEAD is now at 24ddce5 Release 1.0.0-RC2
   HEAD is now at 24ddce5 Release 1.0.0-RC2
   ==> make
   ==> Caveats
   Bash completion has been installed to:
     /home/linuxbrew/.linuxbrew/etc/bash_completion.d
   
   zsh completions have been installed to:
     /home/linuxbrew/.linuxbrew/share/zsh/site-functions
   ==> Summary
   🍺  /home/linuxbrew/.linuxbrew/Cellar/kamel/1.0.0-RC2: 8 files, 59.7MB, built in 1 minute 4 seconds
   ```
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [camel-k] ipolyzos edited a comment on issue #1369: Make kamel cli installable via Homebrew

Posted by GitBox <gi...@apache.org>.
ipolyzos edited a comment on issue #1369: Make kamel cli installable via Homebrew
URL: https://github.com/apache/camel-k/issues/1369#issuecomment-614203738
 
 
   The repo does not comply the default naming _(user/homebrew-tap)_ thus why it fails [[1](https://docs.brew.sh/Taps)] indeed. If you please try the format : 
   
   > brew tap \<user/repo\> \<URL\>
   
   
   e.g
   
   > brew tap ipolyzos/tap https://github.com/ipolyzos/kamel-homebrew-tap 
   
   Please see below my log:
   
   ```
   $ brew tap ipolyzos/tap https://github.com/ipolyzos/kamel-homebrew-tap                                                                             git:(master|) 
   ==> Tapping ipolyzos/tap
   Cloning into '/home/linuxbrew/.linuxbrew/Homebrew/Library/Taps/ipolyzos/homebrew-tap'...
   ^[[Aremote: Enumerating objects: 6, done.
   remote: Counting objects: 100% (6/6), done.
   remote: Compressing objects: 100% (5/5), done.
   remote: Total 6 (delta 1), reused 6 (delta 1), pack-reused 0
   Unpacking objects: 100% (6/6), 4.67 KiB | 2.33 MiB/s, done.
   Tapped 1 formula (33 files, 133.9KB).
   $ brew install kamel                                                                                                                               git:(master|) 
   ==> Installing kamel from ipolyzos/tap
   ==> Cloning https://github.com/apache/camel-k.git
   Updating /home/ipolyzos/.cache/Homebrew/kamel--git
   ==> Checking out tag 1.0.0-RC2
   HEAD is now at 24ddce5 Release 1.0.0-RC2
   HEAD is now at 24ddce5 Release 1.0.0-RC2
   ==> make
   ==> Caveats
   Bash completion has been installed to:
     /home/linuxbrew/.linuxbrew/etc/bash_completion.d
   
   zsh completions have been installed to:
     /home/linuxbrew/.linuxbrew/share/zsh/site-functions
   ==> Summary
   🍺  /home/linuxbrew/.linuxbrew/Cellar/kamel/1.0.0-RC2: 8 files, 59.7MB, built in 1 minute 4 seconds
   ```
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services