/usr/bin/dh-make-ruby is in gem2deb 0.2.13.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 | #!/usr/bin/ruby1.8
#
# Copyright © 2011, Lucas Nussbaum <lucas@debian.org>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
require 'gem2deb'
require 'gem2deb/dh_make_ruby'
require 'optparse'
options = {}
optparse = OptionParser.new do |opts|
opts.on('-h', '--help', 'show help') do
puts opts
exit
end
opts.on('-v', '--version', 'show version') do
puts "dh-make-ruby version #{Gem2Deb::VERSION}"
exit
end
opts.on('-p', '--package PACKAGE', 'specify package name (default: ruby-*)') do |package_name|
options[:source_package_name] = package_name
end
opts.on('', '--ruby-versions VERSIONS', 'ruby versions to use (default: all)') do |versions|
options[:ruby_versions] = versions
end
end
optparse.parse!
if ARGV.length != 1
puts optparse
exit(1)
end
input = ARGV[0]
dmr = Gem2Deb::DhMakeRuby::new(input, options)
dmr.build
__END__
=head1 NAME
dh-make-ruby - build Debian source package from Ruby library
=head1 USAGE
B<dh-make-ruby> [I<OPTIONS>] I<TARBALL>|I<DIRECTORY>
=head1 DESCRIPTION
B<dh-make-ruby> will create a basic Debian source package from a tarball named
I<TARBALL> generated with B<gem2tgz>, or from a I<DIRECTORY> containing Ruby
code and metadata in a .gemspec file.
=head1 OPTIONS
=over
=item B<-p PACKAGE>, B<--package PACKAGE>
Uses PACKAGE as package name. By default, new packages will be named as
ruby-$gem, where $gem is the upstream name. If the package is mainly used as a
library, then it should use the default. On the other hand, if the packages is
mainly used as an application, then you should drop the ruby- prefix by using
this option an explicit package u.
=item B<--ruby-versions VERSIONS>
Ruby versions to build the package for. This is used to generate the
X-Ruby-Versions: field in the source package, that can later be used to tune
this value. By default, gem2deb generates a package that works on all known
Ruby versions, but it might be necessary to only build the package for Ruby
1.8, for example (using B<--ruby-versions "ruby1.8">).
=item B<-h>, B<--help>
Displays the help
=item B<-v>, B<--version>
Displays version information and exits.
=back
=head1 SEE ALSO
L<B<gem2deb>>(1), L<B<dh_ruby>>(1)
=head1 COPYRIGHT AND AUTHORS
Copyright (c) 2011, Lucas Nussbaum <lucas@debian.org>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
|