Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a make target to upload packages to Launchpad
- Loading branch information
Showing
5 changed files
with
171 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,6 @@ | ||
| SUBDIRS = \ | ||
| apt \ | ||
| ubuntu \ | ||
| rpm \ | ||
| yum \ | ||
| source \ | ||
|
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| CODE_NAMES = precise,saucy,trusty | ||
| SOURCE = ../$(PACKAGE)-$(VERSION).tar.gz | ||
|
|
||
| all: | ||
|
|
||
| ensure-launchpad-configuration: | ||
| @if test -z "$(LAUNCHPAD_UPLOADER_PGP_KEY)"; then \ | ||
| echo "--with-launchpad-uploader-pgp-key configure option must be specified."; \ | ||
| false; \ | ||
| fi | ||
|
|
||
| upload: source ensure-launchpad-configuration | ||
| ./upload.rb \ | ||
| --package '$(PACKAGE)' \ | ||
| --version '$(VERSION)' \ | ||
| --source-archive '$(SOURCE)' \ | ||
| --code-names '$(CODE_NAMES)' \ | ||
| --debian-directory '$(srcdir)/../debian/' \ | ||
| --pgp-sign-key '$(LAUNCHPAD_UPLOADER_PGP_KEY)' | ||
|
|
||
| source: $(SOURCE) | ||
|
|
||
| $(SOURCE): | ||
| ln -s $(abs_top_builddir)/$(PACKAGE)-$(VERSION).tar.gz $(SOURCE) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,135 @@ | ||
| #!/usr/bin/env ruby | ||
| # | ||
| # Copyright(C) 2014 Kouhei Sutou <kou@clear-code.com> | ||
| # | ||
| # This library is free software; you can redistribute it and/or | ||
| # modify it under the terms of the GNU Lesser General Public | ||
| # License version 2.1 as published by the Free Software Foundation. | ||
| # | ||
| # This library is distributed in the hope that it will be useful, | ||
| # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
| # Lesser General Public License for more details. | ||
| # | ||
| # You should have received a copy of the GNU Lesser General Public | ||
| # License along with this library; if not, write to the Free Software | ||
| # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||
|
|
||
| require "optparse" | ||
| require "fileutils" | ||
| require "pathname" | ||
|
|
||
| class Uploader | ||
| def initialize | ||
| @dput_configuration_name = "groonga-ppa" | ||
| end | ||
|
|
||
| def run | ||
| ensure_dput_configuration | ||
|
|
||
| parse_command_line! | ||
|
|
||
| @code_names.each do |code_name| | ||
| upload(code_name) | ||
| end | ||
| end | ||
|
|
||
| private | ||
| def ensure_dput_configuration | ||
| dput_cf_path = Pathname.new("~/.dput.cf").expand_path | ||
| if dput_cf_path.exist? | ||
| dput_cf_content = dput_cf_path.read | ||
| else | ||
| dput_cf_content = "" | ||
| end | ||
| dput_cf_content.each_line do |line| | ||
| return if line.chomp == "[#{@dput_configuration_name}]" | ||
| end | ||
|
|
||
| dput_cf_path.open("w") do |dput_cf| | ||
| dput_cf.puts(dput_cf_content) | ||
| dput_cf.puts(<<-CONFIGURATION) | ||
| [#{@dput_configuration_name}] | ||
| fqdn = ppa.launchpad.net | ||
| method = ftp | ||
| incoming = ~groonga/ppa/ubuntu/ | ||
| login = anonymous | ||
| allow_unsigned_uploads = 0 | ||
| CONFIGURATION | ||
| end | ||
| end | ||
|
|
||
| def parse_command_line! | ||
|
|
||
| parser = OptionParser.new | ||
| parser.on("--package=NAME", | ||
| "The package name") do |name| | ||
| @package = name | ||
| end | ||
| parser.on("--version=VERSION", | ||
| "The version") do |version| | ||
| @version = version | ||
| end | ||
| parser.on("--source-archive=ARCHIVE", | ||
| "The source archive") do |source_archive| | ||
| @source_archive = Pathname.new(source_archive).expand_path | ||
| end | ||
| parser.on("--code-names=CODE_NAME1,CODE_NAME2,CODE_NAME3,...", Array, | ||
| "The target code names") do |code_names| | ||
| @code_names = code_names | ||
| end | ||
| parser.on("--debian-directory=DIRECTORY", | ||
| "The debian/ directory") do |debian_directory| | ||
| @debian_directory = Pathname.new(debian_directory).expand_path | ||
| end | ||
| parser.on("--pgp-sign-key=KEY", | ||
| "The PGP key to sign .changes and .dsc") do |pgp_sign_key| | ||
| @pgp_sign_key = pgp_sign_key | ||
| end | ||
|
|
||
| parser.parse! | ||
| end | ||
|
|
||
| def upload(code_name) | ||
| in_temporary_directory do | ||
| FileUtils.cp(@source_archive.to_s, | ||
| "#{@package}_#{@version}.orig.tar.gz") | ||
| run_command("tar", "xf", @source_archive.to_s) | ||
| directory_name = "#{@package}-#{@version}" | ||
| Dir.chdir(directory_name) do | ||
| FileUtils.cp_r(@debian_directory.to_s, "debian") | ||
| deb_version = "#{current_deb_version.succ}~#{code_name}1" | ||
| run_command("dch", | ||
| "--distribution", code_name, | ||
| "--newversion", deb_version, | ||
| "Build for #{code_name}.") | ||
| run_command("debuild", "-S", "-pgpg2", "-k#{@pgp_sign_key}") | ||
| run_command("dput", @dput_configuration_name, | ||
| "../#{@package}_#{deb_version}_source.changes") | ||
| end | ||
| end | ||
| end | ||
|
|
||
| def current_deb_version | ||
| /\((.+)\)/ =~ File.read("debian/changelog").lines.first | ||
| $1 | ||
| end | ||
|
|
||
| def in_temporary_directory | ||
| name = "tmp" | ||
| FileUtils.rm_rf(name) | ||
| FileUtils.mkdir_p(name) | ||
| Dir.chdir(name) do | ||
| yield | ||
| end | ||
| end | ||
|
|
||
| def run_command(*command_line) | ||
| unless system(*command_line) | ||
| raise "failed to run command: #{command_line.join(' ')}" | ||
| end | ||
| end | ||
| end | ||
|
|
||
| uploader = Uploader.new | ||
| uploader.run |