56 lines
2.1 KiB
Ruby
Executable file
56 lines
2.1 KiB
Ruby
Executable file
#!/usr/bin/env ruby -wKU
|
|
require 'time'
|
|
|
|
def test var, message
|
|
unless var
|
|
puts message
|
|
exit
|
|
end
|
|
end
|
|
|
|
path = File.dirname File.expand_path(__FILE__)
|
|
mac_path = File.expand_path(path + "/..")
|
|
release_path = mac_path + "/build/Release/"
|
|
|
|
version = `defaults read \"#{release_path}/Bungloo.app/Contents/Info\" CFBundleVersion`.gsub(/\n/,'')
|
|
length = `stat -f %z \"#{release_path}/Bungloo.app.zip\"`.gsub(/\n/,'')
|
|
signature = `ruby \"#{mac_path}/../../Sparkle\ 1.5b6/Extras/Signing Tools/sign_update.rb\" \"#{release_path}/Bungloo.app.zip\" \"#{mac_path}/publish/dsa_priv.pem\"`.gsub(/\n/,'')
|
|
|
|
test version, "Couldn't find version"
|
|
test length, "Couldn't find length"
|
|
test signature, "Couldn't find signature"
|
|
|
|
unless File.exists? "#{release_path}/Bungloo.app/Contents/Resources/dsa_pub.pem"
|
|
puts "#{release_path}/Bungloo.app/Contents/dsa_pub.pem"
|
|
exit
|
|
end
|
|
|
|
xml = <<XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<rss version="2.0" xmlns:sparkle="http://www.andymatuschak.org/xml-namespaces/sparkle" xmlns:dc="http://purl.org/dc/elements/1.1/">
|
|
<channel>
|
|
<title>Bungloo's Changelog</title>
|
|
<link>http://jabs.nu/Bungloo/download/Appcast.xml</link>
|
|
<description>Most recent changes with links to updates.</description>
|
|
<language>en</language>
|
|
<item>
|
|
<title>Version #{version}</title>
|
|
<sparkle:minimumSystemVersion>10.5.0</sparkle:minimumSystemVersion>
|
|
<sparkle:releaseNotesLink>http://jabs.nu/bungloo/download/ReleaseNotes.html</sparkle:releaseNotesLink>
|
|
<pubDate>#{Time.now.rfc2822}</pubDate>
|
|
<enclosure url="http://jabs.nu/bungloo/download/Bungloo.app.zip"
|
|
sparkle:version="#{version}"
|
|
length="#{length}"
|
|
type="application/octet-stream"
|
|
sparkle:dsaSignature="#{signature}" />
|
|
</item>
|
|
</channel>
|
|
</rss>
|
|
XML
|
|
|
|
File.open("#{path}/Appcast.xml", 'w') {|f| f.write(xml) }
|
|
system "scp \"#{release_path}/Bungloo.app.zip\" jeena@jeena.net:~/jabs.nu/public/bungloo/download/"
|
|
system "scp \"#{path}/ReleaseNotes.html\" jeena@jeena.net:~/jabs.nu/public/bungloo/download/"
|
|
system "scp \"#{path}/Appcast.xml\" jeena@jeena.net:~/jabs.nu/public/bungloo/download/"
|
|
|
|
puts "Done."
|