-
-
Notifications
You must be signed in to change notification settings - Fork 10.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Copy applications #3888
Comments
Some clarifications on your points on HackerNews (some might’ve been true then, since it was over 3 months ago, and I’m not sure of the timeline without checking), that are (to some extent) inaccurate with how it currently works.
True to some degree. If the formula (called a cask, here) points to a url that always downloads the latest version, then this is the case. However, if the url is versioned, you can still make a tap via homebrew with the specific versions you want.
True that it not interacts with preference files (although there as been some talk of it), but uninstalling is not necessarily the same as moving to the trash. It is in the case of
True, but also being being worked on. All that being said, even after becoming a collaborator I have for some time employed a script with a technique similar to yours (getting the symlinks to move the applications), but eventually started using this as it was designed. I’d welcome the possibility to do it natively, though, and as it was stated in HackerNews, it is a possibility to consider, if it garners enough interest. |
Definitely. Nice call. I only mentioned that because of someone arguing for cask
Also good point. Everything I said was in terms of
Cool idea. I still think it would be nice to use cask just as an installer.
I have no problem doing the legwork here with a little guidance on how to |
Let’s ping homebrew-cask’s creator, and a few collaborators and contributors on this one. @phinze @rolandwalker @nanoxd @fanquake @alebcay What do you say? Here’s someone with a feature request that is also interested in doing the work to make it a reality. Could we have a brief discussion to see if this is something desirable for the future of homebrew-cask? It’s not the first time this has been talked about, so there is a some demand for it. We’re talking in the context of an additional way of working (as opposed to changing the way the project works, as that would go against its philosophy). It seems to me that under these conditions we can pretty much close the case on this question (in a general sense), giving a definite yes or no. |
Is there a function in Cask right now for specifying whether to copy or to symlink, maybe an environment variable or something, e.g. |
+1, though it would have to be done with @phinze expressed approval of this idea as an optional behavior in #2312 (comment), and we noted this as a todo item in HACKING.md. @Keithbsmiley I'd be glad to assist you with anything. One reason I did not tackle this one yet myself is that I figure it would work best as something users could set in a (Environment variables as we use now are the wrong approach for configuration, according to the following logic: the configuration should be equally as persistent as the target.) |
Also pinging in @voanhduy1512 just in case he is interested. |
The idea of a configuration file sounds great to me especially for this. I also agree that the current environment variables aren't ideal for this. |
For config, my idea was to find a license-compatible parser for git-style config files, and to drop it in I wasn't too happy with the alternatives that came up, and lost momentum. |
Since you found the nice little plist parser, have you considered making the config file with a plist instead of a git-style config file? |
👍 I find myself need this feature a lot of times. |
I've been running into the problems with symlinks, and I think copying might be a good solution. At least for some packages --- we might want to include command-line switches in addition to config settings, to allow choosing linking or copying. I'd like to suggest that we keep track of what we've installed though. It shouldn't be too much trouble to keep something in |
To determine the version from the command line you would have to parse it out of the plist in the app bundle I believe. |
@rolandwalker Perhaps a devscript to read the version number from plist file inside apps? (It might be overkill though; just open the app bundle contents and find out) |
@alebcay as we are people of the command-line, a script is a good thing. However, preferring the app-bundle version (as policy) should need to be discussed more among the maintainers. |
A script to read the version could provide us with something else. With #1021 in mind, think of the idea of tweaking @alebcay’s cask-tasting and my cask-repair script to auto-update casks that currently have |
@vitorgalvao the script could certainly be retrofitted to have that functionality, but I would probably place it in another script for organizational purposes and have it called by the
Regardless, this idea is off-topic for this issue - perhaps this discussion could continue in one of the issues dedicated to a |
Regarding point 4, with some simple changes, cask-repair (I’ve edited the previous comment to include it after posting, so you might’ve missed it while typing the reply) could already get your CaskNoSum.txt file and perform the updates (it’d be a matter of running it automatically as well). As stated, these casks would need some new meta-information (changing point 1), as versions would no longer be latest. I agree this is off-topic here, I’ve already submitted the idea to the aforementioned #1021. |
Just remembered something that has to be taken into consideration for copying applications. Some apps, like gridwars, actually require the directory they come in to be present, to function properly. Currently we only link the |
In the finicky usage case mentioned by @vitorgalvao, it may then make sense to have both |
Is it possible to copy and still have cask manage your apps by writing a symlink in the opposite direction? |
That doesn’t sound like a very robust solution, but sure, if we store some metadata on install, why not keep management options? |
@vitorgalvao Why reproduce metatdata that the system already stores for you? The To retrieve data needed for managing a given app, I use: |
@username724 The command is missing an s in |
@username724 There's a much easier way to get the path to an app, using
(See function By the way, we should be identifying apps by, well, their identifier and not their name, since people might rename apps. (For example, I might want to rename "Google Chrome.app" to just "Chrome.app", which would break both commands above.) Also don't forget that there are some completely different apps that have the same name. Here's how to find the path to apps using their id:
AppleScript would probably be less preferred because it tends to open apps it's inspecting. How did I know to use btw, I would encourage you to upgrade to ST3 :) |
@nanoxd : Fixed. Thanks. @szhu : I am reluctant to rely on To be clear, I was proposing using data already stored on the system for the purpose of management options. There are many ways to retrieve data already on the system, and all of them should be on the table, as long as they conform to the guidelines. What I really want, is the ability to install directly to Keep up the great work homebrew-cask team!! |
So for clarity, is the current thinking around copying or moving apps to /Applications dir? |
@wamatt copying would be more straightforward. I want to make it configurable, so that the user can choose copying, symlinking, or hardlinking against the staged copy under |
Cool. hardlinking is actually interesting since it saves space compared with copying. |
It depends. Fonts have used hardlinks for a long time now (#2258). It works perfectly, unless you have set up However, for app bundles we would use an exotic creature: the directory hardlink (see #2312). Since directory-hardlinks are unusual, there might be some issues in practice (like certain utilities being unable to understand them). Thus #2312 is unmerged, because it needs to start out as an option chosen by the user. However, it might solve oddities that crop up with certain apps due to symlinking. |
Ok interesting. TIL there is a difference between dir hardlink and a file hardlink. :) Hope you will seriously consider having a user option for "move" instead of copy. Actually though, in that case, it may as well just install to appdir=/Applications, without moving or copying. That to me is the cleanest from an end user perspective. |
Many Casks contain materials inside the downloaded package that should not belong in |
Ok. Maybe I'm missing something, but why not keep the other stuff you've mentioned in opt, then leave a single copy of the actual application in /Applications? Maybe I'm misunderstanding copying. But if a user installs a 500mb app, it's going to take 1gb of their HD space, using the copy method. That would be an unexpected consideration for most users. |
👍 Would love to use Cask for simply copying a downloaded app in to /Applications -- set by an ENV variable for now would make me happy with Ansible :) |
I've created a homebrew formula with a patch that just switches |
@keith can you give an example of how to install and use this formula? Thanks! |
Use at your own risk! |
Thanks! btw it seems to not work with casks that install command-line tools. Is it because the source is being deleted too early?
|
Ah interesting. I didn't test with GitHub for mac. Looks like some things are suppose to get copied after I removed the source. In theory I don't have to remove the source, it's just unnecessary cruft. An immediate fix to this would be to remove the one you just installed and install my previous revision.
This one should solve that problem but the source will sit around in |
Thanks for being on top of this! I think I'll stick with standard brew-cask for now. Would it be possible to change the patch so that it removes everything only after everything else is applied? |
Possibly. |
+1 for this, except I think move rather than copy since we don't want 2 of everything taking up unnecessary space. At the moment I have a Hazel rule watching app=$(readlink "$1")
rm "$1" && mv "$app" /App*s && ln -s /App*s/"${app##*/}" "${app%/*}" |
Closing in favour of these news: #13201. |
In the mean time, if any other Hazel users (@BrianRoach) want to use my rule to do this, I've uploaded it here. Just import the rules and apply them to The main chunk of [bash] code is just; version() { mdls -name kMDItemVersion "$1"| egrep -o [0-9.]+ ;}
App=(/App*s/"${1##*/}")
[[ ! -a $App || -L $App || $(version $1) > $(version $App) ]] &&
{ mv "$App" ~/.Trash
mv "$1" "${App%/*}"
ln -s "$App" "${1%/*}"/
} |
Thanks @danielbayley for posting this. For whatever reason using |
Based on a conversation on HackerNews a while back I was looking into the codebase to see about implementing the ability to copy applications rather than symlinking them. As I argued then, since externally installed applications often have their own upgrade mechanisms I believe it would make sense for cask to provide users with the ability to download, unpack and copy applications to the target directory. This would mean that cask would have no knowledge of the application after it was installed and it would not show up in the
list
. For all intensive purposes to cask it would be uninstalled. Yet this way the application would live on in the installed location updating itself internally as needed. While this may seemingly not entirely utilize cask's feature set I still think the download and unpacking process would be extremely useful regardless of what happens to the application after that.I would love to hear thoughts about adding this feature. As for how that would be done, while briefly looking through the codebase I think I traced the installation process to the artifact installers depending on the source's type. It seems to me that this would present a problem. In the example of an application, since the app artifact inherits directly from the symlink installer, it would take some other changes to make copying work cleanly. Although another, much less clean option, would be to provide an option that changes the symlink command since simply changing it to a
cp
with the correct arguments nearly accomplishes what I'm suggesting (although it obviously wouldn't remove the original application probably in/opt/...
).The text was updated successfully, but these errors were encountered: