From e2ae8a52717aa71a31555c2be7098bd0a997ab55 Mon Sep 17 00:00:00 2001 From: Panagiotis Panagiotopoulos Date: Fri, 26 Jun 2020 18:06:19 +0300 Subject: [PATCH] Rename pymusiccast to musiccast_yamaha --- README.md | 2 +- custom_components/{pymusiccast => musiccast_yamaha}/__init__.py | 0 custom_components/{pymusiccast => musiccast_yamaha}/const.py | 0 custom_components/{pymusiccast => musiccast_yamaha}/helpers.py | 0 .../{pymusiccast => musiccast_yamaha}/manifest.json | 2 +- .../{pymusiccast => musiccast_yamaha}/media_player.py | 2 +- .../{pymusiccast => musiccast_yamaha}/pymusiccast.py | 0 .../{pymusiccast => musiccast_yamaha}/services.yaml | 0 8 files changed, 3 insertions(+), 3 deletions(-) rename custom_components/{pymusiccast => musiccast_yamaha}/__init__.py (100%) rename custom_components/{pymusiccast => musiccast_yamaha}/const.py (100%) rename custom_components/{pymusiccast => musiccast_yamaha}/helpers.py (100%) rename custom_components/{pymusiccast => musiccast_yamaha}/manifest.json (83%) rename custom_components/{pymusiccast => musiccast_yamaha}/media_player.py (99%) rename custom_components/{pymusiccast => musiccast_yamaha}/pymusiccast.py (100%) rename custom_components/{pymusiccast => musiccast_yamaha}/services.yaml (100%) diff --git a/README.md b/README.md index eb6afac..0f5b8c8 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ After waiting a year for [pymusiccast](https://github.com/jalmeroth/pymusiccast/ TODO ### Manual install -- Copy entire `pymusiccast/custom_components/pymusiccast` folder under `$HOMEASSISTANT_CONFIG/custom_components/`. +- Copy entire `pymusiccast/custom_components/musiccast_yamaha` folder under `$HOMEASSISTANT_CONFIG/custom_components/`. ## Setup diff --git a/custom_components/pymusiccast/__init__.py b/custom_components/musiccast_yamaha/__init__.py similarity index 100% rename from custom_components/pymusiccast/__init__.py rename to custom_components/musiccast_yamaha/__init__.py diff --git a/custom_components/pymusiccast/const.py b/custom_components/musiccast_yamaha/const.py similarity index 100% rename from custom_components/pymusiccast/const.py rename to custom_components/musiccast_yamaha/const.py diff --git a/custom_components/pymusiccast/helpers.py b/custom_components/musiccast_yamaha/helpers.py similarity index 100% rename from custom_components/pymusiccast/helpers.py rename to custom_components/musiccast_yamaha/helpers.py diff --git a/custom_components/pymusiccast/manifest.json b/custom_components/musiccast_yamaha/manifest.json similarity index 83% rename from custom_components/pymusiccast/manifest.json rename to custom_components/musiccast_yamaha/manifest.json index 205bbde..6a5d4c8 100644 --- a/custom_components/pymusiccast/manifest.json +++ b/custom_components/musiccast_yamaha/manifest.json @@ -3,7 +3,7 @@ "name": "MusicCast Yamaha", "documentation": "https://github.com/ppanagiotis/pymusiccast", "issue_tracker": "https://github.com/ppanagiotis/pymusiccast/issues", - "manifest": "https://raw.githubusercontent.com/ppanagiotis/pymusiccast/master/custom_components/pymusiccast/manifest.json", + "manifest": "https://raw.githubusercontent.com/ppanagiotis/pymusiccast/master/custom_components/musiccast_yamaha/manifest.json", "requirements": ["pymusiccast==0.1.6"], "codeowners": ["@ppanagiotis"] } diff --git a/custom_components/pymusiccast/media_player.py b/custom_components/musiccast_yamaha/media_player.py similarity index 99% rename from custom_components/pymusiccast/media_player.py rename to custom_components/musiccast_yamaha/media_player.py index b61e547..62c2d27 100644 --- a/custom_components/pymusiccast/media_player.py +++ b/custom_components/musiccast_yamaha/media_player.py @@ -2,7 +2,7 @@ import logging import socket -import custom_components.pymusiccast.pymusiccast as pymusiccast +import custom_components.musiccast_yamaha.pymusiccast as pymusiccast import voluptuous as vol from homeassistant.components.media_player import ( diff --git a/custom_components/pymusiccast/pymusiccast.py b/custom_components/musiccast_yamaha/pymusiccast.py similarity index 100% rename from custom_components/pymusiccast/pymusiccast.py rename to custom_components/musiccast_yamaha/pymusiccast.py diff --git a/custom_components/pymusiccast/services.yaml b/custom_components/musiccast_yamaha/services.yaml similarity index 100% rename from custom_components/pymusiccast/services.yaml rename to custom_components/musiccast_yamaha/services.yaml