From d87d355a32dad02e2551c24a6e399f17e5f58be6 Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Mon, 11 Jan 2021 17:25:05 +0200 Subject: python3-pychromecast: Upgrade 7.7.1 -> 7.7.2 Upgrade to release 7.7.2: - Use urllib.request instead of requests - docs: fix simple typo, neeeded -> needed Signed-off-by: Leon Anavi Acked-by: Trevor Gamblin Signed-off-by: Khem Raj --- .../recipes-devtools/python/python3-pychromecast_7.7.1.bb | 10 ---------- .../recipes-devtools/python/python3-pychromecast_7.7.2.bb | 10 ++++++++++ 2 files changed, 10 insertions(+), 10 deletions(-) delete mode 100644 meta-python/recipes-devtools/python/python3-pychromecast_7.7.1.bb create mode 100644 meta-python/recipes-devtools/python/python3-pychromecast_7.7.2.bb diff --git a/meta-python/recipes-devtools/python/python3-pychromecast_7.7.1.bb b/meta-python/recipes-devtools/python/python3-pychromecast_7.7.1.bb deleted file mode 100644 index ca55740ba7..0000000000 --- a/meta-python/recipes-devtools/python/python3-pychromecast_7.7.1.bb +++ /dev/null @@ -1,10 +0,0 @@ -SUMMARY = "Library for Python 3.6+ to communicate with the Google Chromecast." -HOMEPAGE = "https://github.com/balloob/pychromecast" -LICENSE = "MIT" -LIC_FILES_CHKSUM = "file://LICENSE;md5=b1dbd4e85f47b389bdadee9c694669f5" - -SRC_URI[sha256sum] = "d6fd0382395303b3260ea7a89a850c8c9e5c83e7ce71a5fbd793bb157cf8ad26" - -PYPI_PACKAGE = "PyChromecast" - -inherit pypi setuptools3 diff --git a/meta-python/recipes-devtools/python/python3-pychromecast_7.7.2.bb b/meta-python/recipes-devtools/python/python3-pychromecast_7.7.2.bb new file mode 100644 index 0000000000..c0ff58cfd7 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-pychromecast_7.7.2.bb @@ -0,0 +1,10 @@ +SUMMARY = "Library for Python 3.6+ to communicate with the Google Chromecast." +HOMEPAGE = "https://github.com/balloob/pychromecast" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://LICENSE;md5=b1dbd4e85f47b389bdadee9c694669f5" + +SRC_URI[sha256sum] = "aad4b145cb8c76b629c700877e49c418810aaabb26ace5035c49940f9657f2f0" + +PYPI_PACKAGE = "PyChromecast" + +inherit pypi setuptools3 -- cgit 1.2.3-korg '>jan/master Classic OpenEmbedded Development TreeGrokmirror user
aboutsummaryrefslogtreecommitdiffstats
blob: e88cee5cb2c7ed0ed39612c470b949897bd77d4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87