libspotify 12.1.51.2-i686-linux → 12.1.51.3-i686-linux
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Rakefile +6 -2
- data/lib/libspotify.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 627d4b2a625b820aa3465468d80b057690a36e9b
|
4
|
+
data.tar.gz: fcb36d0088e9f24429374935baee460c5237db16
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 41a555a56b7087a0d014de57a42769b54567866cf359f5eaf5365ad98d2c7cc77d9415f562638109d6af3a27b9212e0351ff61e0696b2a8d513bd24b9827d408
|
7
|
+
data.tar.gz: d338feb14bae01c0fa2f2c78a99c1ece686854db73a1fbac0a472e2453dd0cf15e4b46c72cdd0694cadad40bf1fde4f479dd03128bdaa332c9c8c747abc52495
|
data/Rakefile
CHANGED
@@ -48,7 +48,11 @@ task :build do
|
|
48
48
|
|
49
49
|
if source_binaries.empty?
|
50
50
|
puts "Pure ruby build."
|
51
|
-
spec.post_install_message =
|
51
|
+
spec.post_install_message = <<-MSG.gsub(/ {2,}/, " ")
|
52
|
+
Binary libspotify gem could not be installed. You will need to install libspotify separately.
|
53
|
+
If you are on ARM (e.g. Raspberry PI), you might want to install the gem with explicit --platform:
|
54
|
+
$> gem install libspotify --platform arm-linux
|
55
|
+
MSG
|
52
56
|
else
|
53
57
|
source_binaries.each do |binary|
|
54
58
|
src_name = "bin/#{binaries[binary]}"
|
@@ -72,7 +76,7 @@ task :build do
|
|
72
76
|
end
|
73
77
|
|
74
78
|
puts
|
75
|
-
puts "Do not forget to push to GitHub as well."
|
79
|
+
puts "Do not forget to tag and push to GitHub as well."
|
76
80
|
end
|
77
81
|
|
78
82
|
desc "Launch an IRB console with the gem loaded."
|
data/lib/libspotify.rb
CHANGED