Skip to content
This repository was archived by the owner on Nov 30, 2022. It is now read-only.

Commit 215c5ec

Browse files
Merge pull request #68 from codenamephp/markAsDeprecated
Marked everything as deprecated
2 parents 2c75c18 + fd3cf5b commit 215c5ec

File tree

9 files changed

+29
-1
lines changed

9 files changed

+29
-1
lines changed

MIGRATION.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
VSCode recipe and resources were removed. Use the codenamephp_vscode cookbook instead.
44

5+
Also the whole cookbook is now depreacted an will only receive bugfixes. The resources will be moved to dedicated cookbooks. The "single package"
6+
recipes should be implemented within wrapper cookbooks since they don't warrent dedicated cookbooks.
7+
58
# 3.0
69

710
dnsmasq and resolver were removed. If you need them, just recreate the recipes in your wrapper cookoobk.

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33

44
Cookbook that contains recipes for dev tools, like vscode, chrome, openjdk ...
55

6+
## Deprecated
7+
8+
The cookbook is deprecated and will only receive bugfixes. The resources will be moved to dedicated cookbooks. The "single package"
9+
recipes should be implemented within wrapper cookbooks since they don't warrent dedicated cookbooks.
10+
611
## Requirements
712

813
### Supported Platforms

recipes/chrome.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#
77
# Copyright:: 2017, The Authors, All Rights Reserved.
88

9-
log 'This recipe is deprecated. Use the resource instead.' do
9+
log 'This cookbook is deprecated. Use the dedicated cookbooks instead.' do
1010
level :warn
1111
end
1212

recipes/default.rb

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,7 @@
44
# Recipe:: default
55
#
66
# Copyright:: 2017, The Authors, All Rights Reserved.
7+
8+
log 'This cookbook is deprecated. Use the dedicated cookbooks instead.' do
9+
level :warn
10+
end

recipes/gnome_terminal.rb

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,8 @@
88
#
99
# Copyright:: 2017, The Authors, All Rights Reserved.
1010

11+
log 'This cookbook is deprecated. Use the dedicated cookbooks instead.' do
12+
level :warn
13+
end
14+
1115
package 'gnome-terminal'

recipes/jetbrains_toolbox.rb

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
# frozen_string_literal: true
22

3+
log 'This cookbook is deprecated. Use the dedicated cookbooks instead.' do
4+
level :warn
5+
end
6+
37
codenamephp_dev_jetbrains_toolbox 'install jetbrains-toolbox'

recipes/unzip.rb

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,8 @@
66
#
77
# Copyright:: 2018, The Authors, All Rights Reserved.
88

9+
log 'This cookbook is deprecated. Use the dedicated cookbooks instead.' do
10+
level :warn
11+
end
12+
913
package 'unzip'

resources/chrome.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# frozen_string_literal: true
22

3+
deprecated 'This cookbook is depreacted. The resources will be moved to dedicated cookbooks'
4+
35
unified_mode true
46

57
action :install do

resources/jetbrains_toolbox.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# frozen_string_literal: true
22

3+
deprecated 'This cookbook is depreacted. The resources will be moved to dedicated cookbooks'
4+
35
unified_mode true
46

57
property :toolbox_path, String, default: '/usr/share/jetbrains-toolbox', description: 'The path where the files are downloaded to, extracted, ...'

0 commit comments

Comments
 (0)