diff --git a/Berksfile b/Berksfile index f795efe..f59fa9c 100644 --- a/Berksfile +++ b/Berksfile @@ -1,4 +1,4 @@ -site :opscode +site 'https://supermarket.chef.io' metadata diff --git a/CHANGELOG.md b/CHANGELOG.md index 83d283c..a6df03d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,23 +22,23 @@ v1.4.4 v1.4.2 ------ ### Bug -- **[COOK-3796](https://tickets.opscode.com/browse/COOK-3796)** - Virtualenv can fail +- **[COOK-3796](https://tickets.chef.io/browse/COOK-3796)** - Virtualenv can fail ### Improvement -- **[COOK-3719](https://tickets.opscode.com/browse/COOK-3719)** - Allow alternative install python, update pip location -- **[COOK-3703](https://tickets.opscode.com/browse/COOK-3703)** - Create symlink for source built python [python3 support] +- **[COOK-3719](https://tickets.chef.io/browse/COOK-3719)** - Allow alternative install python, update pip location +- **[COOK-3703](https://tickets.chef.io/browse/COOK-3703)** - Create symlink for source built python [python3 support] v1.4.0 ------ ### New Feature -- **[COOK-3248](https://tickets.opscode.com/browse/COOK-3248)** - Improve testing suite +- **[COOK-3248](https://tickets.chef.io/browse/COOK-3248)** - Improve testing suite ### Improvement -- **[COOK-3125](https://tickets.opscode.com/browse/COOK-3125)** - Don't use `normal` attributes +- **[COOK-3125](https://tickets.chef.io/browse/COOK-3125)** - Don't use `normal` attributes ### Bug -- **[COOK-3084](https://tickets.opscode.com/browse/COOK-3084)** - Fix `python_virtualenv` on EL 5 +- **[COOK-3084](https://tickets.chef.io/browse/COOK-3084)** - Fix `python_virtualenv` on EL 5 v1.3.6 ------ diff --git a/README.md b/README.md index ee71683..9087145 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,14 @@ python Cookbook Installs and configures Python. Also includes LWRPs for managing python packages with `pip` and `virtualenv` isolated Python environments. +## **THIS COOKBOOK IS DEPRECATED** + +[Poise-python](https://github.com/poise/poise-python) is a vastly better cookbook +for managing Python-related things. This cookbook will remain for compatibility +but any future release will only be to gut it and turn it into a wrapper for +`poise-python`. + +## **I REPEAT, THIS COOKBOOK IS DEPRECATED** Requirements ------------ @@ -144,10 +152,10 @@ Installs virtualenv using the `python_pip` resource. License & Authors ----------------- -- Author:: Seth Chisamore () +- Author:: Seth Chisamore () ```text -Copyright:: 2011, Opscode, Inc +Copyright:: 2011, Chef Software, Inc Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/attributes/default.rb b/attributes/default.rb index 39bf96c..699df21 100644 --- a/attributes/default.rb +++ b/attributes/default.rb @@ -1,9 +1,9 @@ # -# Author:: Seth Chisamore () +# Author:: Seth Chisamore () # Cookbook Name:: python # Attribute:: default # -# Copyright 2011, Opscode, Inc. +# Copyright 2011, Chef Software, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/providers/pip.rb b/providers/pip.rb index bdd8142..bc0d559 100644 --- a/providers/pip.rb +++ b/providers/pip.rb @@ -1,9 +1,9 @@ # -# Author:: Seth Chisamore +# Author:: Seth Chisamore # Cookbook Name:: python # Provider:: pip # -# Copyright:: 2011, Opscode, Inc +# Copyright:: 2011, Chef Software, Inc # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/providers/virtualenv.rb b/providers/virtualenv.rb index 904c1b4..a04147b 100644 --- a/providers/virtualenv.rb +++ b/providers/virtualenv.rb @@ -1,9 +1,9 @@ # -# Author:: Seth Chisamore +# Author:: Seth Chisamore # Cookbook Name:: python # Provider:: virtualenv # -# Copyright:: 2011, Opscode, Inc +# Copyright:: 2011, Chef Software, Inc # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/recipes/default.rb b/recipes/default.rb index ee9afe8..725b6cb 100644 --- a/recipes/default.rb +++ b/recipes/default.rb @@ -1,9 +1,9 @@ # -# Author:: Seth Chisamore +# Author:: Seth Chisamore # Cookbook Name:: python # Recipe:: default # -# Copyright 2011, Opscode, Inc. +# Copyright 2011, Chef Software, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/recipes/package.rb b/recipes/package.rb index 115b53b..38ea3b3 100644 --- a/recipes/package.rb +++ b/recipes/package.rb @@ -1,9 +1,9 @@ # -# Author:: Seth Chisamore +# Author:: Seth Chisamore # Cookbook Name:: python # Recipe:: package # -# Copyright 2011, Opscode, Inc. +# Copyright 2011, Chef Software, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/recipes/pip.rb b/recipes/pip.rb index 17110fa..ad02ab7 100644 --- a/recipes/pip.rb +++ b/recipes/pip.rb @@ -1,9 +1,9 @@ # -# Author:: Seth Chisamore +# Author:: Seth Chisamore # Cookbook Name:: python # Recipe:: pip # -# Copyright 2011, Opscode, Inc. +# Copyright 2011, Chef Software, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/recipes/source.rb b/recipes/source.rb index ac8ed86..c6256f7 100644 --- a/recipes/source.rb +++ b/recipes/source.rb @@ -1,9 +1,9 @@ # -# Author:: Seth Chisamore +# Author:: Seth Chisamore # Cookbook Name:: python # Recipe:: source # -# Copyright 2011, Opscode, Inc. +# Copyright 2011, Chef Software, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/recipes/virtualenv.rb b/recipes/virtualenv.rb index 8098492..e0626a4 100644 --- a/recipes/virtualenv.rb +++ b/recipes/virtualenv.rb @@ -1,9 +1,9 @@ # -# Author:: Seth Chisamore +# Author:: Seth Chisamore # Cookbook Name:: python # Recipe:: virtualenv # -# Copyright 2011, Opscode, Inc. +# Copyright 2011, Chef Software, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/resources/pip.rb b/resources/pip.rb index 1475b3a..2b9f13e 100644 --- a/resources/pip.rb +++ b/resources/pip.rb @@ -1,9 +1,9 @@ # -# Author:: Seth Chisamore +# Author:: Seth Chisamore # Cookbook Name:: python # Resource:: pip # -# Copyright:: 2011, Opscode, Inc +# Copyright:: 2011, Chef Software, Inc # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/resources/virtualenv.rb b/resources/virtualenv.rb index e9f7327..8de75be 100644 --- a/resources/virtualenv.rb +++ b/resources/virtualenv.rb @@ -1,9 +1,9 @@ # -# Author:: Seth Chisamore +# Author:: Seth Chisamore # Cookbook Name:: python # Resource:: virtualenv # -# Copyright:: 2011, Opscode, Inc +# Copyright:: 2011, Chef Software, Inc # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License.