Commit Graph

98 Commits

Author SHA1 Message Date
neutric 59ad899bca Update calibre to 2.82.0 (#31064) 2017-03-18 12:16:02 +00:00
neutric 794439d21b Update calibre to 2.81.0 (#30793) 2017-03-10 13:20:31 +02:00
neutric 43364573cd Update calibre to 2.80.0 (#30354) 2017-02-24 20:57:20 +00:00
neutric 548c0eb616 Update calibre to 2.79.1 (#30036) 2017-02-12 15:41:19 +08:00
Ting-Yu Lin d5e4f69ae1 Update calibre to 2.79.0 (#29996) 2017-02-10 15:55:48 +08:00
neutric 32ed6c49a0 Update calibre to 2.78.0 (#29478) 2017-01-27 17:17:46 +08:00
Aditya Dalal 411a04dbf8
Update calibre to 2.77.0 (#28978) 2017-01-13 00:24:37 -05:00
Stephen Wade 8e4944e2d4 Update calibre to 2.76.0 (#28375) 2016-12-30 12:50:29 +08:00
neutric ac718e5884 Update calibre to 2.75.1 (#28235) 2016-12-25 03:39:54 -05:00
neutric 645a9a4961 Update calibre to 2.75.0 (#28202) 2016-12-23 13:47:27 +08:00
Till Kothe 4f075cdcc6 Update calibre to 2.74.0 (#27543) 2016-12-09 14:13:13 +00:00
Aditya Dalal 3bdfd6962a Update calibre to 2.73.0 (#27157) 2016-11-26 07:59:50 +02:00
Basil Shubin 82b3280b0a Update calibre to 2.72 (#26889) 2016-11-18 18:12:18 +08:00
Victor Popkov 171d8da72f Update calibre to 2.71.0 (#26270) 2016-10-31 22:50:23 +01:00
Vítor Galvão e9b053469d Update calibre to 2.70.0 (#25493) 2016-10-14 18:39:04 +01:00
Markus Reiter 3dc55ec21f Update calibre to v2.70.0 (#25491) 2016-10-14 18:30:04 +01:00
Vítor Galvão 60531a2812 remove license from all casks (#25368) 2016-10-10 17:45:23 +01:00
Victor Popkov f6aee24718 Update calibre to 2.69.0 (#25065) 2016-09-30 21:33:53 +02:00
Victor Popkov 4f1f9a23d6 Update calibre to 2.68.0 (#24556) 2016-09-16 21:45:09 +03:00
Mohammed Tangestani f93c949d22 Update calibre to 2.67.0 (#24354) 2016-09-09 07:08:01 +02:00
Mohammed Tangestani 3f17484cd8 Update calibre to 2.66.0 (#24309) 2016-09-07 13:30:05 +01:00
Victor Popkov 95ff33226f updated calibre (2.65.1) (#24088) 2016-08-27 22:38:28 +03:00
Markus Reiter eddcf74bdf updated calibre (2.64.0) (#23739) 2016-08-12 11:20:02 +02:00
Anastasia Sulyagina ef5681a221 deleted cask's macos (#23505) 2016-08-07 15:12:48 -04:00
shonjir 362f29c829 updated calibre (2.63.0) (#23022) 2016-07-23 21:52:23 +03:00
Victor Popkov 9a19e964ba updated calibre (2.62.0) (#22685) 2016-07-09 22:42:27 +03:00
Victor Popkov 1c32988ee0 updated calibre (2.61.0) (#22529) 2016-07-02 00:00:26 +03:00
Victor Popkov 0026cacc9c updated calibre (2.60.0) (#22390) 2016-06-25 21:33:56 +03:00
Pieter Nicolai 190014d421 updated calibre (2.59.0) (#22052) 2016-06-17 12:53:33 +01:00
Roman 63811d2503 updated calibre (2.58.0) (#21677) 2016-06-04 16:15:02 +01:00
Matt Wean 47383169de [WIP] Change artifact behavior to moving instead of symlinking (#13966)
* Change app artifact to move instead of link

First step towards change in installation behavior mentioned in [13201]

* Fix handling of binaries linked from inside of app bundles

Also adds `appdir` method for interpolation in stanzas

* Change appdir to root Applications directory

* Update 2-app tests

* Refactor: add options, ivars to `Installer`, `Download`

In preparation for upcoming changes, this commit cleans up some code. The commit includes:

- In order to reduce unnecessary object passing, make both the `force` and `skip_cask_deps` option into instance variables of the `Installer` class

- Introduce options hashes to initializers of both the `Installer` and `Download` class

- When the `install --force` command enters the fetch phase, make it explicit in the code that fetching is never enforced in that case.

- Update tests

* Force overwrite artifacts on `--force` reinstall

This commit changes the behavior of a `Moved` artifact such that if the target already exists, `brew cask install --force` will remove the existing target before moving the staged artifact.

In that case, the warning message will say *overwriting* instead of *not moving*.

The behavior of plain `brew cask install` remains unchanged; the same goes for the warning message for that case.

* Change remaining artifacts to move instead of symlink

* Update casks to use appdir in binary paths

* Forcibly overwrite artifacts, modifying flags and using `sudo` if needed

- This commit implements [the proposed behavior for `install --force`](https://github.com/caskroom/homebrew-cask/pull/13966#issuecomment-220830387) when a target already exists and has either permission problems or is not owned by the user.

- The changes apply only when the `force` option is given.

- Reused the existing safeguard from the `.pkg` artifact to prevent deleting important directories by bug or mistake

- The two existing blacklists `SYSTEM_DIRS` and `UNDELETABLE_DIRS` have been consolidated into the `Hbc::MacOS` module.

- `UNDELETABLE_DIRS` now also contains all the entries from `SYSTEM_DIRS` which was a to-do anyway.

- The two blacklists are now also frozen for good measure.

- The utility method `permissions_rmtree` was moved to `Hbc::Utils`.

- The `tried_permissions` part in `Utils` now falls back correctly when there are also ownership issues at the same time.

- Introduced a separate `current_user` method for mocking.

- Added an optional feature to `FakeSystemCommand` so it can now act as a proxy to `SystemCommand`.

- Added tests for various `permissions_rmtree` cases.
2016-05-31 15:23:21 -04:00
Victor Popkov 46ec913aa8 updated calibre (2.57.1) (#21330) 2016-05-20 22:23:40 +03:00
Christian Inzinger d41dbf6b83 updated calibre (2.56.0) (#20868) 2016-04-29 12:14:06 +03:00
Vítor Galvão ac1a8e2381 updated calibre (2.55.0) (#20688) 2016-04-21 17:44:40 -04:00
Vítor Galvão 4372f55460 calibre.rb: fix conditional 2016-04-07 16:50:02 -04:00
Andrew King d270f59e59 updated calibre (2.54.0) 2016-04-02 13:44:56 -04:00
Jeffrey C 0121992db9 updated calibre (2.53.0) 2016-03-11 20:02:34 -05:00
adidalal e44c05cf5a updated calibre (2.52.0) 2016-02-26 18:26:55 +02:00
Victor Popkov fceead4b6e calibre.rb: upgrade to v2.51.0 2016-02-13 21:58:11 +02:00
Vítor Galvão b76c8ab954 updated calibre (2.50.1) 2016-01-30 00:06:07 +00:00
Victor Popkov 7fe0c0b366 calibre.rb: upgrade to v2.50.0 2016-01-29 18:24:55 +02:00
Josh Hagins 312ae841f1 Use Ruby 1.9 hash syntax in casks where possible 2016-01-17 21:57:28 -05:00
Lenucksi f99225e6b6 updated calibre (2.49.0) 2016-01-16 12:27:43 +00:00
Jeffrey C d8cf21d745 Update Calibre (2.49.0) 2016-01-15 18:56:24 -06:00
Vítor Galvão bbc9cc0138 change all appcast casks to use :checkpoint 2016-01-13 19:27:34 +00:00
Tommy Sparber 2ba5e93608 Updated calibre to use HTTPS 2016-01-12 13:14:51 +00:00
Josh Hagins 19fa4d1605 calibre.rb: RuboCop (master), RuboCop-cask (master) auto-correct 2016-01-03 15:28:49 -05:00
Victor Popkov 19e24eca9e calibre.rb: upgrade to v2.48.0 2016-01-02 23:33:26 +02:00
Vítor Galvão 77455c4749 added sha256 to appcast 2015-12-25 22:46:44 +00:00
Alex Balgavy c64c67ee5d Upgrade Calibre.app to v2.47.0
Changed formula to match latest Calibre release, 2.47.0.
2015-12-21 11:29:29 +00:00