source: trunk/debbuild@ 113

Last change on this file since 113 was 113, checked in by kdeugau, 17 years ago

/trunk

Add some %{perl_*} macro expansions

  • Property svn:executable set to *
  • Property svn:keywords set to Date Rev Author
File size: 54.9 KB
Line 
1#!/usr/bin/perl -w
2# debbuild script
3# Shamelessly steals interface from rpm's "rpmbuild" to create
4# Debian packages. Please note that such packages are highly
5# unlikely to conform to "Debian Policy".
6###
7# SVN revision info
8# $Date: 2007-07-13 20:24:33 +0000 (Fri, 13 Jul 2007) $
9# SVN revision $Rev: 113 $
10# Last update by $Author: kdeugau $
11###
12# Copyright 2005-2007 Kris Deugau <kdeugau@deepnet.cx>
13#
14# This program is free software; you can redistribute it and/or modify
15# it under the terms of the GNU General Public License as published by
16# the Free Software Foundation; either version 2 of the License, or
17# (at your option) any later version.
18#
19# This program is distributed in the hope that it will be useful,
20# but WITHOUT ANY WARRANTY; without even the implied warranty of
21# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22# GNU General Public License for more details.
23#
24# You should have received a copy of the GNU General Public License
25# along with this program; if not, write to the Free Software
26# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
27
28use strict;
29use warnings;
30use Fcntl; # for sysopen flags
31use Cwd 'abs_path'; # for finding where files really are
32use Config;
33
34# regex debugger
35#use re "debug";
36
37# Program flow:
38# -> Parse/execute "system" config/macros (if any - should be rare)
39# -> Parse/execute "user" config/macros (if any - *my* requirement is %_topdir)
40# -> Parse command line for options, spec file/tarball/.src.deb (NB - also accept .src.rpm)
41
42sub expandmacros;
43
44# User's prefs for dirs, environment, etc,etc,etc.
45# config file ~/.debmacros
46# Default ordered search paths for config/macros:
47# /usr/lib/rpm/rpmrc /usr/lib/rpm/redhat/rpmrc /etc/rpmrc ~/.rpmrc
48# /usr/lib/rpm/macros /usr/lib/rpm/redhat/macros /etc/rpm/macros ~/.rpmmacros
49# **NOTE: May be possible to (ab)use bits of debhelper
50
51# Build tree
52# default is /usr/src/debian/{BUILD,SOURCES,SPECS,DEBS,SDEBS}
53
54# Globals
55my $finalmessages = ''; # A place to stuff messages that I want printed at the *very* end of any processing.
56my $specfile;
57my $tarball;
58my $srcpkg;
59my $cmdbuildroot;
60my $tarballdir = '%{name}-%{version}'; # We do this in case of a spec file not using %setup...
61my %specglobals; # For %define's in specfile, among other things.
62
63$specglobals{'_vendor'} = 'debbuild';
64
65# Initialized globals
66my $verbosity = 0;
67my $NoAutoReq = 0;
68my %cmdopts = (type => '',
69 stage => 'a',
70 short => 'n'
71 );
72my $topdir = "/usr/src/debian";
73my $buildroot = "%{_tmppath}/%{name}-%{version}-%{release}.root".int(rand(99998)+1);
74
75# "Constants"
76my %targets = ('p' => 'Prep',
77 'c' => 'Compile',
78 'i' => 'Install',
79 'l' => 'Verify %files',
80 'a' => 'Build binary and source',
81 'b' => 'Build binary',
82 's' => 'Build source'
83 );
84# Ah, the joys of multiple architectures. :( Feh.
85# As copied from rpm
86my %optflags = ( 'i386' => '-O2 -g -march=i386 -mcpu=i686',
87 'amd64' => '-O2 -g'
88 );
89my $hostarch; # we set this later...
90my $scriptletbase =
91q(#!/bin/sh
92
93 RPM_SOURCE_DIR="%{_topdir}/SOURCES"
94 RPM_BUILD_DIR="%{_topdir}/BUILD"
95 RPM_OPT_FLAGS="%{optflags}"
96 RPM_ARCH="%{_arch}"
97 RPM_OS="linux"
98 export RPM_SOURCE_DIR RPM_BUILD_DIR RPM_OPT_FLAGS RPM_ARCH RPM_OS
99 RPM_DOC_DIR="/usr/share/doc"
100 export RPM_DOC_DIR
101 RPM_PACKAGE_NAME="%{name}"
102 RPM_PACKAGE_VERSION="%{version}"
103 RPM_PACKAGE_RELEASE="%{release}"
104 export RPM_PACKAGE_NAME RPM_PACKAGE_VERSION RPM_PACKAGE_RELEASE
105 RPM_BUILD_ROOT="%{buildroot}"
106 export RPM_BUILD_ROOT
107);
108foreach (`dpkg-architecture`) {
109 s/=(.+)/="$1"/;
110 $scriptletbase .= " $_";
111 ($hostarch) = (/^DEB_HOST_ARCH="(.+)"$/) if /DEB_HOST_ARCH=/;
112}
113$scriptletbase .=
114q(
115 set -x
116 umask 022
117 cd %{_topdir}/BUILD
118);
119
120# Hackery to try to bring some semblance of sanity to packages built for more
121# than one Debian version at the same time. Whee.
122# /etc/debian-version
123my %distmap = (
124 "3.1.9ubuntu7.1" => "dapper",
125 "4ubuntu2" => "feisty",
126 "3.0" => "woody",
127 "3.1" => "sarge",
128 "4" => "etch",
129 "4.0" => "lenny",
130 "4.0.0" => "sid");
131# Enh. There doesn't seem to be any better way to do this... :(
132{
133 my $basever = qx { dpkg-query --showformat '\${version}' -W base-files };
134 if ($basever =~ /^\d\.\d\.(\d)$/) {
135 $basever =~ s/\.\d$// if $1 ne '0';
136 }
137# want to do something with this... erm, what was I going to do? O_o
138 my $releasever = qx { cat /etc/debian_version };
139 chomp $releasever;
140
141 $specglobals{"debdist"} = $distmap{$basever};
142 $specglobals{"debver"} = $basever; # this may have trouble with Ubuntu versions?
143}
144
145# Package data
146# This is the form of $pkgdata{pkgname}{meta}
147# meta includes Summary, Name, Version, Release, Group, Copyright,
148# Source, URL, Packager, BuildRoot, Description, BuildReq(uires),
149# Requires, Provides
150# 10/31/2005 Maybe this should be flatter? -kgd
151my %pkgdata;
152my @pkglist = ('main'); #sigh
153# Files listing. Embedding this in %pkgdata would be, um, messy.
154my %filelist;
155my %doclist;
156my $buildreq = '';
157
158# Scriptlets
159my $prepscript = '';
160my $buildscript = '';
161# %install doesn't need the full treatment from %clean; just an empty place to install to.
162# NB - rpm doesn't do this; is it really necessary?
163my $installscript = '[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT'."\n";
164my $cleanscript = '';
165
166die "Not enough arguments\n" if #$argv == 0;
167
168# Snag some environment data
169my $tmpdir;
170if (defined $ENV{TMP} && $ENV{TMP} =~ /^(\/var)?\/tmp$/) {
171 $tmpdir = $ENV{TMP};
172} else {
173 $tmpdir = "/var/tmp";
174}
175
176##main
177
178load_userconfig();
179parse_cmd();
180
181if ($cmdopts{install}) {
182 install_sdeb();
183 exit 0;
184}
185
186# output stage of --showpkgs
187if ($cmdopts{type} eq 'd') {
188 parse_spec();
189 foreach my $pkg (@pkglist) {
190 $pkgdata{$pkg}{name} =~ tr/_/-/;
191
192 my $pkgfullname = "$pkgdata{$pkg}{name}_".
193 (defined($pkgdata{main}{epoch}) ? "$pkgdata{main}{epoch}:" : '').
194 "$pkgdata{$pkg}{version}-$pkgdata{main}{release}_$pkgdata{$pkg}{arch}.deb";
195
196 print "$pkgfullname\n" if $filelist{$pkg};
197
198 }
199 # Source package
200 print "$pkgdata{main}{name}-".
201 (defined($pkgdata{main}{epoch}) ? "$pkgdata{main}{epoch}:" : '').
202 "$pkgdata{main}{version}-$pkgdata{main}{release}.sdeb\n";
203 exit 0;
204}
205
206# Stick --rebuild handling in here - basically install_sdeb()
207# followed by tweaking options to run with -ba
208if ($cmdopts{type} eq 's') {
209 if ($srcpkg =~ /\.src\.rpm$/) {
210 my @srclist = qx { rpm -qlp $srcpkg };
211 foreach (@srclist) {
212 chomp;
213 $specfile = "$topdir/SPECS/$_" if /\.spec$/;
214 }
215 qx { rpm -i $srcpkg };
216 } else {
217 install_sdeb();
218 my @srclist = qx { pax < $srcpkg };
219 foreach (@srclist) {
220 chomp;
221 $specfile = "$topdir/$_" if /SPECS/;
222 }
223 }
224 $cmdopts{type} = 'b';
225 $cmdopts{stage} = 'a';
226}
227
228if ($cmdopts{type} eq 'b') {
229 # Need to read the spec file to find the tarball. Note that
230 # this also generates most of the shell script required.
231 parse_spec();
232 die "Can't build $pkgdata{main}{name}: build requirements not met.\n"
233 if !checkbuildreq();
234}
235
236if ($cmdopts{type} eq 't') {
237 # Need to unpack the tarball to find the spec file. Sort of the inverse of -b above.
238 # zcat $tarball |tar -t |grep .spec
239 # collect some info about the tarball
240 $specfile = "$topdir/BUILD/". qx { zcat $tarball |tar -t |grep -e '[\.]spec\$' };
241 chomp $specfile;
242 my ($fileonly, $dirname) = ($tarball =~ /(([a-zA-Z0-9._-]+)\.tar\.(?:gz|bz2))$/);
243
244 $tarball = abs_path($tarball);
245 my $unpackcmd = "cd $topdir/BUILD; tar -".
246 ( $tarball =~ /\.tar\.gz$/ ? "z" : "" ).
247 ( $tarball =~ /\.tar\.bz2$/ ? "j" : "" ). "xf $tarball";
248 system "$unpackcmd";
249 system "cp $tarball $topdir/SOURCES/$fileonly";
250 system "cp $specfile $topdir/SPECS/";
251 parse_spec();
252 die "Can't build $pkgdata{main}{name}: build requirements not met.\n"
253 if !checkbuildreq();
254}
255
256# -> srcpkg if -.s
257if ($cmdopts{stage} eq 's') {
258 srcpackage();
259 exit 0;
260}
261
262# Hokay. Need to:
263# -> prep if -.p OR (-.[cilabs] AND !--short-circuit)
264if ($cmdopts{stage} eq 'p' || ($cmdopts{stage} =~ /[cilabs]/ && $cmdopts{short} ne 'y')) {
265 prep();
266}
267# -> build if -.c OR (-.[ilabs] AND !--short-circuit)
268if ($cmdopts{stage} eq 'c' || ($cmdopts{stage} =~ /[ilabs]/ && $cmdopts{short} ne 'y')) {
269 build();
270}
271# -> install if -.[ilabs]
272#if ($cmdopts{stage} eq 'i' || ($cmdopts{stage} =~ /[labs]/ && $cmdopts{short} ne 'y')) {
273if ($cmdopts{stage} =~ /[ilabs]/) {
274 install();
275#foreach my $pkg (@pkglist) {
276# print "files in $pkg:\n ".$filelist{$pkg}."\n";
277#}
278
279}
280# -> binpkg and srcpkg if -.a
281if ($cmdopts{stage} eq 'a') {
282 binpackage();
283 srcpackage();
284 clean();
285}
286# -> binpkg if -.b
287if ($cmdopts{stage} eq 'b') {
288 binpackage();
289 clean();
290}
291
292# Spit out any closing remarks
293print $finalmessages;
294
295# Just in case.
296exit 0;
297
298
299## load_userconfig()
300# Loads user configuration (if any)
301# Currently only handles .debmacros
302# Needs to handle "other files"
303sub load_userconfig {
304 my $homedir = (getpwuid($<))[7];
305 if (-e "$homedir/.debmacros") {
306 open USERMACROS,"<$homedir/.debmacros";
307 while (<USERMACROS>) {
308 # And we also only handle a few macros at the moment.
309 if (/^\%_topdir/) {
310 my (undef,$tmp) = split /\s+/, $_;
311 $topdir = $tmp;
312 }
313 next if /^\%_/;
314 # Allow arbitrary definitions. Note that we're only doing simple defs here for now.
315 if (/^\%([a-z0-9]+)\s+(.+)$/) {
316 $specglobals{$1} = $2;
317 }
318 }
319 }
320} # end load_userconfig()
321
322
323## parse_cmd()
324# Parses command line into global hash %cmdopts, other globals
325# Options based on rpmbuild's options
326sub parse_cmd {
327 # Don't feel like coding my own option parser...
328 #use Getopt::Long;
329 # ... but I may have to: (OTOH, rpm uses popt, so maybe we can too.)
330 #use Getopt::Popt qw(:all);
331 # Or not. >:( Stupid Debian lack of findable Perl module names in packages.
332
333 # Stuff it.
334 my $prevopt = '';
335 foreach (@ARGV) {
336 chomp;
337
338 # Is it an option?
339 if (/^-/) {
340
341 # Is it a long option?
342 if (/^--/) {
343 if (/^--short-circuit/) {
344 $cmdopts{short} = 'y';
345 } elsif (/^--rebuild/) {
346 $cmdopts{type} = 's';
347 } elsif (/^--showpkgs/) {
348 $cmdopts{type} = 'd'; # d for 'diagnostic' or 'debug' or 'dump'
349 } elsif (/^--define/) {
350 # nothing to do? Can't see anything needed, we handle the actual definition later.
351 } else {
352 print "Long option $_ not handled\n";
353 }
354 } else {
355 # Not a long option
356 if (/^-[bt]/) {
357 if ($cmdopts{stage} eq 's') {
358 # Mutually exclusive options.
359 die "Can't use $_ with --rebuild\n";
360 } else {
361 # Capture the type (from "bare" files or tarball) and the stage (prep, build, etc)
362 ($cmdopts{stage}) = (/^-[bt]([pcilabs])/);
363 ($cmdopts{type}) = (/^-([bt])[pcilabs]/);
364 }
365 } elsif (/^-v/) {
366 # bump verbosity. Not sure what I'll actually do here...
367 } elsif (/^-i/) {
368 $cmdopts{install} = 1;
369 $prevopt = '-i';
370 } else {
371 die "Bad option $_\n";
372 }
373 }
374
375 } else { # Not an option argument
376
377 # --buildroot is the only option that takes an argument
378 # Therefore, any *other* bare arguments are the spec file,
379 # tarball, or source package we're operating on - depending
380 # on which one we meet.
381 if ($prevopt eq '--buildroot') {
382 $cmdbuildroot = $_;
383 } elsif ($prevopt eq '--define') {
384 my ($macro,$value) = (/([a-z0-9_.-]+)(?:\s+(.+))?/);
385 if ($value) {
386 $specglobals{$macro} = $value;
387 } else {
388 warn "WARNING: missing value for macro $macro in --define! Ignoring.\n";
389 }
390 } elsif ($prevopt eq '-i') {
391 $srcpkg = $_;
392 } else {
393 if ($cmdopts{type} eq 's') {
394 # Source package
395 if (!/(sdeb|\.src\.rpm)$/) {
396 die "Can't --rebuild with $_\n";
397 }
398 $srcpkg = $_;
399 } elsif ($cmdopts{type} eq 'b' || $cmdopts{type} eq 'd') {
400 # Spec file
401 $specfile = $_;
402 } else {
403 # Tarball build. Need to extract tarball to find spec file. Whee.
404 $tarball = $_;
405 }
406 }
407 }
408 $prevopt = $_;
409 } # foreach @ARGV
410
411 # Some cross-checks. rpmbuild limits --short-circuit to just
412 # the "compile" and "install" targets - with good reason IMO.
413 # Note that --short-circuit with -.p is not really an error, just redundant.
414 # NB - this is NOT fatal, just ignored!
415 if ($cmdopts{short} eq 'y' && $cmdopts{stage} =~ /[labs]/) {
416 warn "Can't use --short-circuit for $targets{$cmdopts{stage}} stage. Ignoring.\n";
417 $cmdopts{short} = 'n';
418 }
419
420 # Valid options, with example arguments (if any):
421# Build from .spec file; mutually exclusive:
422 # -bp
423 # -bc
424 # -bi
425 # -bl
426 # -ba
427 # -bb
428 # -bs
429# Build from tarball; mutually exclusive:
430 # -tp
431 # -tc
432 # -ti
433 # -ta
434 # -tb
435 # -ts
436# Build from .src.(deb|rpm)
437 # --rebuild
438 # --recompile
439
440# General options
441 # --buildroot=DIRECTORY
442 # --clean
443 # --nobuild
444 # --nodeps
445 # --nodirtokens
446 # --rmsource
447 # --rmspec
448 # --short-circuit
449 # --target=CPU-VENDOR-OS
450
451 #my $popt = new Getopt::Popt(argv => \@ARGV, options => \@optionsTable);
452
453} # end parse_cmd()
454
455
456## parse_spec()
457# Parse the .spec file.
458sub parse_spec {
459 open SPECFILE,"<$specfile" or die "specfile ($specfile) barfed: $!";
460
461 my $iflevel = 0;
462 my $buildarch = $hostarch;
463 $pkgdata{main}{arch} = $hostarch;
464
465 my $stage = 'preamble';
466 my $subname = 'main';
467 my $scriptlet;
468
469# Basic algorithm:
470# For each line
471# if it's a member of an %if construct, branch and see which segment of the
472# spec file we need to parse and which one gets discarded, then
473# short-circuit back to the top of the loop.
474# if it's a %section, bump the stage. Preparse addons to the %section line
475# (eg subpackage) and stuff them in suitable loop-global variables, then
476# short-circuit back to the top of the loop.
477# Otherwise, parse the line according to which section we're supposedly
478# parsing right now
479
480LINE: while (<SPECFILE>) {
481 next if /^#/ && $stage eq 'preamble'; # Ignore comments...
482 next if /^\s*$/ && $stage eq 'preamble'; # ... and blank lines.
483
484# preprocess %define's
485 if (my ($key, $def) = (/^\%define\s+([^\s]+)\s+(.+)$/) ) {
486 $specglobals{$key} = expandmacros($def,'g');
487 }
488
489 if (/^\%if/) {
490 s/^\%if//;
491 chomp;
492 my $expr = expandmacros($_, 'g');
493 $iflevel++;
494
495 if ($expr !~ /^\s*\d+\s*$/) {
496 # gots a logic statement we want to turn into a 1 or a 0. most likely by eval'ing it.
497
498 $expr =~ s/\s+//g;
499
500# For Great w00tness! New and Improved multilayered logic handling.
501
502 my @bits = split /\b/, $expr;
503 $expr = '';
504 foreach my $bit (@bits) {
505 next if $bit eq '"';
506 $bit =~ s/"//g;
507 $expr .= qq("$bit") if $bit =~ /^\w+$/;
508 $expr .= $bit if $bit !~ /^\w+$/;
509 }
510
511 # Done in this order so we don't cascade incorrectly. Yes, those spaces ARE correct in the replacements!
512 $expr =~ s/==/ eq /g;
513 $expr =~ s/!=/ ne /g;
514 $expr =~ s/<=>/ cmp /g;
515 $expr =~ s/<=/ le /g;
516 $expr =~ s/>=/ ge /g;
517 $expr =~ s/</ lt /g;
518 $expr =~ s/>/ gt /g;
519
520 # Turn it into something that eval's to a number. Maybe not needed? O_o
521 #$expr = "( $expr ? 1 : 0 )";
522
523 $expr = eval $expr;
524 }
525
526 next LINE if $expr != 0; # This appears to be the only case we call false.
527 while (<SPECFILE>) {
528 if (/^\%endif/) {
529 $iflevel--;
530 next LINE;
531 } elsif (/^\%else/) {
532 next LINE;
533 }
534 }
535 }
536 if (/^\%else/) {
537 while (<SPECFILE>) {
538 if (/^\%endif/) {
539 $iflevel--;
540 next LINE;
541 }
542 }
543 }
544 if (/^\%endif/) {
545 $iflevel--;
546 next LINE;
547 } # %if/%else/%endif
548
549# now we pick out the sections and set "state" to parse that section. Fugly but I can't see a better way. >:(
550
551 if (/^\%description(?:\s+(?:-n\s+)?(.+))?/) {
552 $stage = 'desc';
553 $subname = "main";
554 if ($1) { # Magic to add entries to the right package
555 my $tmp = expandmacros("$1", 'g');
556 if (/-n/) { $subname = $tmp; } else { $subname = "$pkgdata{main}{name}-$tmp"; }
557 }
558 next LINE;
559 } # %description
560
561 if (/^\%package\s+(?:-n\s+)?(.+)/) {
562 $stage = 'package';
563 if ($1) { # Magic to add entries to the right package
564 my $tmp = expandmacros("$1", 'g');
565 if (/-n/) { $subname = $tmp; } else { $subname = "$pkgdata{main}{name}-$tmp"; }
566 }
567 push @pkglist, $subname;
568 $pkgdata{$subname}{name} = $subname;
569 $pkgdata{$subname}{version} = $pkgdata{main}{version};
570 # Build "same arch as previous package found" by default. Where rpm just picks the
571 # *very* last one, we want to allow arch<native>+arch-all
572 # (eg, Apache is i386, but apache-manual is all)
573 $pkgdata{$subname}{arch} = $buildarch; # Since it's likely subpackages will NOT have a BuildArch line...
574 next LINE;
575 } # %package
576
577 if (/^\%prep/) {
578 $stage = 'prep';
579 # This really should be local-ish, but we need just the filename for the source
580 $pkgdata{main}{source} =~ s|.+/([^/]+)$|$1|;
581 # Replace some core macros
582 $pkgdata{main}{source} = expandmacros($pkgdata{main}{source},'gp');
583 next LINE;
584 } # %prep
585
586 if (/^\%build/) {
587 $stage = 'build';
588 $buildscript .= "cd $tarballdir\n";
589 next LINE;
590 } # %build
591
592 if (/^\%install/) {
593 $stage = 'install';
594 $installscript .= "cd $tarballdir\n";
595 next LINE;
596 } # %install
597
598 if (/^\%clean/) {
599 $stage = 'clean';
600 $cleanscript .= "cd $tarballdir\n";
601 next LINE;
602 } # %clean
603
604 if (/^\%(pre|post|preun|postun)\b(?:\s+(?:-n\s+)?(.+))?/i) {
605 $stage = 'prepost';
606 $scriptlet = lc $1;
607 $subname = 'main';
608 if ($2) { # Magic to add entries to the right package
609 my $tmp = expandmacros("$2", 'g');
610 if (/-n/) { $subname = $tmp; } else { $subname = "$pkgdata{main}{name}-$tmp"; }
611 }
612 next LINE;
613 } # %pre/%post/%preun/%postun
614
615 if (/^\%files(?:\s+(?:-n\s+)?(.+))?/) {
616 $stage = 'files';
617 $subname = 'main';
618 if ($1) { # Magic to add entries to the right list of files
619 my $tmp = expandmacros("$1", 'g');
620 if (/-n/) { $subname = $tmp; } else { $subname = "$pkgdata{main}{name}-$tmp"; }
621 }
622 next LINE;
623 } # %files
624
625 if (/^\%changelog/) {
626 $stage = 'changelog';
627 $pkgdata{main}{changelog} = '';
628 next LINE;
629 }
630
631# now we handle individual lines from the various sections
632
633 if ($stage eq 'desc') {
634 $pkgdata{$subname}{desc} .= " $_";
635 } # description
636
637 if ($stage eq 'package') {
638 # gotta expand %defines here. Whee.
639 if (my ($dname,$dvalue) = (/^(Summary|Group|Version|Requires|Provides|BuildArch(?:itecture)?):\s+(.+)$/i)) {
640 $dname =~ tr/[A-Z]/[a-z]/;
641 if ($dname =~ /^BuildArch/i) {
642 $dvalue =~ s/^noarch/all/ig;
643 $buildarch = $dvalue; # Emulate rpm's behaviour to a degree
644 $dname = 'arch';
645 }
646 $pkgdata{$subname}{$dname} = expandmacros($dvalue, 'gp');
647 }
648 } # package
649
650 if ($stage eq 'prep') {
651 # Actual handling for %prep section. May have %setup macro; may
652 # include %patch tags, may be just a bare shell script.
653 if (/^\%setup/) {
654 # Parse out the %setup macro. Note that we aren't supporting
655 # many of RPM's %setup features.
656 $prepscript .= "cd $topdir/BUILD\n";
657 if ( /\s+-n\s+([^\s]+)\s+/ ) {
658 $tarballdir = $1;
659 }
660 $tarballdir = expandmacros($tarballdir,'gp');
661 $prepscript .= "rm -rf $tarballdir\n";
662 if (/\s+-c\s+/) {
663 $prepscript .= "mkdir $tarballdir\ncd $tarballdir\n";
664 }
665 $prepscript .= "tar -".
666 ( $pkgdata{main}{source} =~ /\.tar\.gz$/ ? "z" : "" ).
667 ( $pkgdata{main}{source} =~ /\.tar\.bz2$/ ? "j" : "" ).
668 ( /\s+-q\s+/ ? '' : 'vv' )."xf ".
669 "$topdir/SOURCES/$pkgdata{main}{source}\n".
670 qq(STATUS=\$?\nif [ \$STATUS -ne 0 ]; then\n exit \$STATUS\nfi\n).
671 "cd $topdir/BUILD/$tarballdir\n".
672 qq([ `/usr/bin/id -u` = '0' ] && /bin/chown -Rhf root .\n).
673 qq([ `/usr/bin/id -u` = '0' ] && /bin/chgrp -Rhf root .\n).
674 qq(/bin/chmod -Rf a+rX,g-w,o-w .\n);
675 } elsif ( my ($patchnum,$patchopts) = (/^\%patch([^\s]+)(\s+.+)?$/) ) {
676 chomp $patchnum;
677 $prepscript .= qq(echo "Patch #$patchnum ($pkgdata{main}{"patch$patchnum"}):"\n).
678 "patch ";
679 # If there are options passed, use'em.
680 # Otherwise, catch a bare %patch and ASS-U-ME it's '-p0'-able.
681 # Will break on options that don't provide -pnn, but what the hell.
682 $prepscript .= $patchopts if $patchopts;
683 $prepscript .= "-p0" if !$patchopts;
684 $prepscript .= " -s <$topdir/SOURCES/".$pkgdata{main}{"patch$patchnum"}."\n";
685 } else {
686 $prepscript .= expandmacros($_,'gp');
687 }
688 next LINE;
689 } # prep
690
691 if ($stage eq 'build') {
692 # %build. This is pretty much just a shell script. There
693 # aren't many local macros to deal with.
694 if (/^\%configure/) {
695 $buildscript .= expandmacros($_,'cgbp');
696 } elsif (/^\%\{__make\}/) {
697 $buildscript .= expandmacros($_,'mgbp');
698 } else {
699 $buildscript .= expandmacros($_,'gp');
700 }
701 next LINE;
702 } # build
703
704 if ($stage eq 'install') {
705 if (/^\%makeinstall/) {
706 $installscript .= expandmacros($_,'igbp');
707 } else {
708 $installscript .= expandmacros($_,'gp');
709 }
710 next LINE;
711 } # install
712
713 if ($stage eq 'clean') {
714 $cleanscript .= expandmacros($_,'gp');
715 next LINE;
716 } # clean
717
718 if ($stage eq 'prepost') {
719 $pkgdata{$subname}{$scriptlet} .= expandmacros($_,'gp');
720 next LINE;
721 } # prepost
722
723 if ($stage eq 'files') {
724 # need to update this to deal (properly) with %dir, %attr, etc
725 next LINE if /^\%dir/;
726 next LINE if /^\%defattr/;
727 # Debian dpkg doesn't speak "%docdir". Meh.
728 next LINE if /^\%docdir/;
729##fixme
730# Note that big chunks of this section don't match rpm's behaviour; among other things,
731# rpm accepts more than one %-directive on one line for a file or set of files.
732 # make sure files get suitable permissions and so on
733 if (/^\%attr/) {
734 # We're going to collapse whitespace before processing. PTHBT.
735 # While this breaks pathnames with spaces, anyone expecting command-line
736 # tools with spaces to work (never mind work *properly* or *well*) under
737 # any *nix has their head so far up their ass they can see out their mouth.
738 my ($args,$filelist) = split /\)/;
739 $filelist{$subname} .= " $filelist";
740 $args =~ s/\s+//g;
741 $args =~ s/"//g; # don't think quotes are ever necessary, but they're *allowed*
742 my ($perms,$owner,$group) = ($args =~ /\(([\d-]+),([a-zA-Z0-9-]+),([a-zA-Z0-9-]+)/);
743# due to Debian's total lack of real permissions-processing in its actual package
744# handling component (dpkg-deb), this can't really be done "properly". We'll have
745# to add chown/chmod commands to the postinst instead. Feh.
746 $pkgdata{$subname}{'post'} .= "chown $owner $filelist\n" if $owner ne '-';
747 $pkgdata{$subname}{'post'} .= "chgrp $group $filelist\n" if $group ne '-';
748 $pkgdata{$subname}{'post'} .= "chmod $perms $filelist\n" if $perms ne '-';
749 next LINE;
750 }
751 # %doc needs extra processing, because it can be a space-separated list, and may
752 # include both full and partial pathnames. The partial pathnames must be fiddled
753 # into place in the %install script, because Debian doesn't really have the concept
754 # of "documentation file" that rpm does. (Debian "documentation files" are files
755 # in /usr/share/doc/<packagename>.)
756 if (/^\%doc/) {
757 s/^\%doc\s+//;
758 foreach (split()) {
759 if (m|^/|) {
760 $filelist{$subname} .= " $_"; # and we process this in the processing of the install script
761 } else {
762 my $pkgname = $pkgdata{$subname}{name};
763 $pkgname =~ tr/_/-/;
764
765 $doclist{$subname} .= " $_";
766 s|^[^/]+/||g; # Gotta strip leading blah/ bits. Won't handle * (well) yet... (glob()?)
767 $filelist{$subname} .= " \%{_docdir}/$pkgname/$_";
768 }
769 }
770 next LINE;
771 }
772 # Conffiles. Note that Debian and RH have similar, but not
773 # *quite* identical ideas of what constitutes a conffile. Nrgh.
774 if (/^\%config\s+(.+)$/) {
775 $pkgdata{$subname}{conffiles} = 1; # Flag it for later
776 my $tmp = $1; # Now we can mangleificationate it. And we probably need to. :/
777 $tmp = expandmacros($tmp, 'gp'); # Expand common macros
778 if ($tmp !~ /\s+/) {
779 # Simplest case, just a file. Whew.
780 push @{$pkgdata{$subname}{conflist}}, $tmp;
781 $filelist{$subname} .= " $tmp";
782 } else {
783 # Wot? Spaces? That means extra %-macros. Which, for the most part, can be ignored.
784 ($tmp) = ($tmp =~ /.+\s([^\s]+)/); # Strip everything before the last space
785 push @{$pkgdata{$subname}{conflist}}, $tmp;
786 $filelist{$subname} .= " $tmp";
787 }
788 next LINE;
789 }
790 # ... and finally everything else
791 $filelist{$subname} .= " $_";
792 next LINE;
793 } # files
794
795 if ($stage eq 'changelog') {
796 # this is one of the few places we do NOT generally want to replace macros...
797 $pkgdata{main}{changelog} .= $_;
798 }
799
800 if ($stage eq 'preamble') {
801 if (/^summary:\s+(.+)/i) {
802 $pkgdata{main}{summary} = $1;
803 } elsif (/^name:\s+(.+)/i) {
804 $pkgdata{main}{name} = expandmacros($1,'g');
805 } elsif (/^epoch:\s+(.+)/i) {
806 $pkgdata{main}{epoch} = expandmacros($1,'g');
807 } elsif (/^version:\s+(.+)/i) {
808 $pkgdata{main}{version} = expandmacros($1,'g');
809 } elsif (/^release:\s+(.+)/i) {
810 $pkgdata{main}{release} = expandmacros($1,'g');
811 } elsif (/^group:\s+(.+)/i) {
812 $pkgdata{main}{group} = $1;
813 } elsif (/^copyright:\s+(.+)/i) {
814 $pkgdata{main}{copyright} = $1;
815 } elsif (/^url:\s+(.+)/i) {
816 $pkgdata{main}{url} = $1;
817 } elsif (/^packager:\s+(.+)/i) {
818 $pkgdata{main}{packager} = $1;
819 } elsif (/^buildroot:\s+(.+)/i) {
820 $buildroot = $1;
821 } elsif (/^source0?:\s+(.+)/i) {
822 $pkgdata{main}{source} = $1;
823 die "Unknown tarball format $1\n" if $1 !~ /\.tar\.(?:gz|bz2)$/;
824 } elsif (/^source([0-9]+):\s+(.+)/i) {
825 $pkgdata{sources}{$1} = $2;
826 } elsif (/^patch([^:]+):\s+(.+)$/i) {
827 my $patchname = "patch$1";
828 $pkgdata{main}{$patchname} = $2;
829 if ($pkgdata{main}{$patchname} =~ /\//) {
830 # URL-style patch. Rare but not unheard-of.
831 my @patchbits = split '/', $pkgdata{main}{$patchname};
832 $pkgdata{main}{$patchname} = $patchbits[$#patchbits];
833 }
834 chomp $pkgdata{main}{$patchname};
835 } elsif (/^buildarch(?:itecture)?:\s+(.+)/i) {
836 $pkgdata{main}{arch} = $1;
837 $pkgdata{main}{arch} =~ s/^noarch$/all/;
838 $buildarch = $pkgdata{main}{arch};
839 } elsif (/^buildreq(?:uires)?:\s+(.+)/i) {
840 $buildreq .= ", $1";
841 } elsif (/^requires:\s+(.+)/i) {
842 $pkgdata{main}{requires} .= ", ".expandmacros("$1", 'gp');
843 } elsif (/^provides:\s+(.+)/i) {
844 $pkgdata{main}{provides} .= ", $1";
845 } elsif (/^conflicts:\s+(.+)/i) {
846 $pkgdata{main}{conflicts} .= ", $1";
847 } elsif (/^autoreq(?:prov)?:\s+(.+)/i) {
848 # we don't handle auto-provides (yet)
849 $NoAutoReq = 1 if $1 =~ /(?:no|0)/i;
850 }
851 next LINE;
852 } # preamble
853
854 } # while <SPEC>
855
856 # Parse and replace some more macros. More will be replaced even later.
857
858 # Expand macros as necessary.
859 $scriptletbase = expandmacros($scriptletbase,'gp');
860
861 $cleanscript = expandmacros($cleanscript,'gp');
862
863 $buildroot = $cmdbuildroot if $cmdbuildroot;
864 $buildroot = expandmacros($buildroot,'gp');
865
866 close SPECFILE;
867} # end parse_spec()
868
869
870## prep()
871# Writes and executes the %prep script (mostly) built while reading the spec file.
872sub prep {
873 # Replace some things here just to make sure.
874 $prepscript = expandmacros($prepscript,'gp');
875
876 # create script filename
877 my $prepscriptfile = "$tmpdir/deb-tmp.prep.".int(rand(99998)+1);
878 sysopen(PREPSCRIPT, $prepscriptfile, O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW)
879 or die $!;
880 print PREPSCRIPT $scriptletbase;
881 print PREPSCRIPT $prepscript;
882 close PREPSCRIPT;
883
884 # execute
885 print "Calling \%prep script $prepscriptfile...\n";
886 system("/bin/sh -e $prepscriptfile") == 0
887 or die "Can't exec: $!\n";
888
889 # and clean up
890 unlink $prepscriptfile;
891} # end prep()
892
893
894## build()
895# Writes and executes the %build script (mostly) built while reading the spec file.
896sub build {
897 # Expand the macros
898 $buildscript = expandmacros($buildscript,'cgbp');
899
900 # create script filename
901 my $buildscriptfile = "$tmpdir/deb-tmp.build.".int(rand(99998)+1);
902 sysopen(BUILDSCRIPT, $buildscriptfile, O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW)
903 or die $!;
904 print BUILDSCRIPT $scriptletbase;
905 print BUILDSCRIPT $buildscript;
906 close BUILDSCRIPT;
907
908 # execute
909 print "Calling \%build script $buildscriptfile...\n";
910 system("/bin/sh -e $buildscriptfile") == 0
911 or die "Can't exec: $!\n";
912
913 # and clean up
914 unlink $buildscriptfile;
915} # end build()
916
917
918## install()
919# Writes and executes the %install script (mostly) built while reading the spec file.
920sub install {
921
922 # munge %doc entries into place
923 # rpm handles this with a separate executed %doc script, we're not going to bother.
924 foreach my $docpkg (keys %doclist) {
925 my $pkgname = $pkgdata{$docpkg}{name};
926 $pkgname =~ s/_/-/g;
927
928 $installscript .= "DOCDIR=\$RPM_BUILD_ROOT\%{_docdir}/$pkgname\nexport DOCDIR\n";
929 $installscript .= "mkdir -p \$DOCDIR\n";
930 $doclist{$docpkg} =~ s/^\s*//;
931 foreach (split(' ',$doclist{$docpkg})) {
932 $installscript .= "cp -pr $_ \$DOCDIR/\n";
933 }
934 }
935
936 # Expand the macros
937 $installscript = expandmacros($installscript,'igbp');
938
939 # create script filename
940 my $installscriptfile = "$tmpdir/deb-tmp.inst.".int(rand(99998)+1);
941 sysopen(INSTSCRIPT, $installscriptfile, O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW)
942 or die $!;
943 print INSTSCRIPT $scriptletbase;
944 print INSTSCRIPT $installscript;
945 close INSTSCRIPT;
946
947 # execute
948 print "Calling \%install script $installscriptfile...\n";
949 system("/bin/sh -e $installscriptfile") == 0
950 or die "Can't exec: $!\n";
951
952 # and clean up
953 unlink $installscriptfile;
954} # end install()
955
956
957## binpackage()
958# Creates the binary .deb package from the installed tree in $buildroot.
959# Writes and executes a shell script to do so.
960# Creates miscellaneous files required by dpkg-deb to actually build the package file.
961# Should handle simple subpackages
962sub binpackage {
963
964 foreach my $pkg (@pkglist) {
965
966 $pkgdata{$pkg}{arch} = $hostarch if !$pkgdata{$pkg}{arch}; # Just In Case.
967
968 # Make sure we have somewhere to write the .deb file
969 if (!-e "$topdir/DEBS/$pkgdata{$pkg}{arch}") {
970 mkdir "$topdir/DEBS/$pkgdata{$pkg}{arch}";
971 }
972
973 # Skip building a package if it doesn't actually have any files. NB: This
974 # differs slightly from rpm's behaviour where a package *will* be built -
975 # even without any files - if %files is specified anywhere. I can think
976 # of odd corner cases where that *may* be desireable.
977 next if (!$filelist{$pkg} or $filelist{$pkg} =~ /^\s*$/);
978
979 # Gotta do this first, otherwise we don't have a place to move files from %files
980 mkdir "$buildroot/$pkg";
981
982 # Eliminate any lingering % macros
983 $filelist{$pkg} = expandmacros $filelist{$pkg}, 'g';
984
985 my @pkgfilelist = split ' ', $filelist{$pkg};
986 foreach my $pkgfile (@pkgfilelist) {
987 $pkgfile = expandmacros($pkgfile, 'gp');
988 my ($fpath,$fname) = ($pkgfile =~ m|(.+?/?)?([^/]+)$|); # We don't need $fname now, but we might.
989 qx { mkdir -p $buildroot/$pkg$fpath }
990 if $fpath && $fpath ne '';
991 qx { mv $buildroot$pkgfile $buildroot/$pkg$fpath };
992 }
993
994 # Get the "Depends" (Requires) a la RPM. Ish. We strip the leading
995 # comma and space here (if needed) in case there were "Requires" specified
996 # in the spec file - those would precede these.
997 $pkgdata{$pkg}{requires} .= getreqs("$buildroot/$pkg") if ! $NoAutoReq;
998
999 # magic needed to properly version dependencies...
1000 # only provided deps will really be included
1001 $pkgdata{$pkg}{requires} =~ s/^, //; # Still have to do this here.
1002 $pkgdata{$pkg}{requires} =~ s/\s+//g;
1003 my @deps = split /,/, $pkgdata{$pkg}{requires};
1004 my $tmp = '';
1005 foreach my $dep (@deps) {
1006 # Hack up the perl(Class::SubClass) deps into something dpkg can understand.
1007 # May or may not be versioned.
1008 # We do this first so the version rewriter can do its magic next.
1009 if (my ($mod,$ver) = ($dep =~ /^perl\(([A-Za-z0-9\:\-]+)\)([><=]+.+)?/) ) {
1010 $mod =~ s/^perl\(//;
1011 $mod =~ s/\)$//;
1012 $mod =~ s/::/-/g;
1013 $mod =~ tr/A-Z/a-z/;
1014 $mod = "lib$mod-perl";
1015 $mod .= $ver if $ver;
1016 $dep = $mod;
1017 }
1018 if (my ($name,$rel,$value) = ($dep =~ /^([a-zA-Z0-9._-]+)([><=]+)([a-zA-Z0-9._-]+)$/)) {
1019 $tmp .= ", $name ($rel $value)";
1020 } else {
1021 $tmp .= ", $dep";
1022 }
1023 }
1024 ($pkgdata{$pkg}{requires} = $tmp) =~ s/^, //;
1025
1026 # Do this here since we're doing {depends}...
1027 if (defined($pkgdata{$pkg}{provides})) {
1028 $pkgdata{$pkg}{provides} =~ s/^, //;
1029 $pkgdata{$pkg}{provides} = expandmacros($pkgdata{$pkg}{provides},'gp');
1030 }
1031 if (defined($pkgdata{$pkg}{conflicts})) {
1032 $pkgdata{$pkg}{conflicts} =~ s/^, //;
1033 $pkgdata{$pkg}{conflicts} = expandmacros($pkgdata{$pkg}{conflicts},'gp');
1034 }
1035
1036 # Gotta do this next, otherwise the control file has nowhere to go. >:(
1037 mkdir "$buildroot/$pkg/DEBIAN";
1038
1039 # Hack the filename for the package into a Debian-tool-compatible format. GRRRRRR!!!!!
1040 # Have I mentioned I hate Debian Policy?
1041 $pkgdata{$pkg}{name} =~ tr/_/-/;
1042
1043 # create script filename
1044 my $debscriptfile = "$tmpdir/deb-tmp.pkg.".int(rand(99998)+1);
1045 sysopen(DEBSCRIPT, $debscriptfile, O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW)
1046 or die $!;
1047 print DEBSCRIPT $scriptletbase;
1048 print DEBSCRIPT "fakeroot dpkg-deb -b $buildroot/$pkg $topdir/DEBS/$pkgdata{$pkg}{arch}/".
1049 "$pkgdata{$pkg}{name}_".
1050 (defined($pkgdata{main}{epoch}) ? "$pkgdata{main}{epoch}:" : '').
1051 "$pkgdata{$pkg}{version}-$pkgdata{main}{release}_$pkgdata{$pkg}{arch}.deb\n";
1052 # %$&$%@#@@#%@@@ Debian and their horrible ugly package names. >:(
1053 close DEBSCRIPT;
1054
1055 my $control = "Package: $pkgdata{$pkg}{name}\n".
1056 "Version: ".
1057 (defined($pkgdata{main}{epoch}) ? "$pkgdata{main}{epoch}:" : '').
1058 "$pkgdata{$pkg}{version}-$pkgdata{main}{release}\n".
1059 "Section: $pkgdata{$pkg}{group}\n".
1060 "Priority: optional\n".
1061 "Architecture: $pkgdata{$pkg}{arch}\n".
1062 "Maintainer: $pkgdata{main}{packager}\n".
1063 ( $pkgdata{$pkg}{requires} ne '' ? "Depends: $pkgdata{$pkg}{requires}\n" : '' ).
1064 ( defined($pkgdata{$pkg}{provides}) ? "Provides: $pkgdata{$pkg}{provides}\n" : '' ).
1065 ( defined($pkgdata{$pkg}{conflicts}) ? "Conflicts: $pkgdata{$pkg}{conflicts}\n" : '' ).
1066 "Description: $pkgdata{$pkg}{summary}\n";
1067 $control .= "$pkgdata{$pkg}{desc}\n";
1068
1069 open CONTROL, ">$buildroot/$pkg/DEBIAN/control";
1070 print CONTROL $control;
1071 close CONTROL;
1072
1073 # Iff there are conffiles (as specified in the %files list(s), add'em
1074 # in so dpkg-deb can tag them.
1075 if ($pkgdata{$pkg}{conffiles}) {
1076 open CONFLIST, ">$buildroot/$pkg/DEBIAN/conffiles";
1077 foreach my $conffile (@{$pkgdata{$pkg}{conflist}}) {
1078 my @tmp = glob "$buildroot/$pkg/$conffile";
1079 foreach (@tmp) {
1080 s|$buildroot/$pkg/||g; # nrgl. gotta be a better way to do this...
1081 s/\s+/\n/g; # Not gonna support spaces in filenames. Ewww.
1082 print CONFLIST "$_\n";
1083 }
1084 }
1085 close CONFLIST;
1086 }
1087
1088 # found the point of scripts on subpackages.
1089 if ($pkgdata{$pkg}{'pre'}) {
1090 $pkgdata{$pkg}{'pre'} = expandmacros($pkgdata{$pkg}{'pre'},'gp');
1091 open PREINST, ">$buildroot/$pkg/DEBIAN/preinst";
1092 print PREINST "#!/bin/sh\nset -e\n\n";
1093 print PREINST $pkgdata{$pkg}{'pre'};
1094 close PREINST;
1095 `chmod 0755 $buildroot/$pkg/DEBIAN/preinst`;
1096 }
1097 if ($pkgdata{$pkg}{'post'}) {
1098 $pkgdata{$pkg}{'post'} = expandmacros($pkgdata{$pkg}{'post'},'gp');
1099 open PREINST, ">$buildroot/$pkg/DEBIAN/postinst";
1100 print PREINST "#!/bin/sh\nset -e\n\n";
1101 print PREINST $pkgdata{$pkg}{'post'};
1102 close PREINST;
1103 `chmod 0755 $buildroot/$pkg/DEBIAN/postinst`;
1104 }
1105 if ($pkgdata{$pkg}{'preun'}) {
1106 $pkgdata{$pkg}{'pre'} = expandmacros($pkgdata{$pkg}{'preun'},'gp');
1107 open PREINST, ">$buildroot/$pkg/DEBIAN/prerm";
1108 print PREINST "#!/bin/sh\nset -e\n\n";
1109 print PREINST $pkgdata{$pkg}{'preun'};
1110 close PREINST;
1111 `chmod 0755 $buildroot/$pkg/DEBIAN/prerm`;
1112 }
1113 if ($pkgdata{$pkg}{'postun'}) {
1114 $pkgdata{$pkg}{'postun'} = expandmacros($pkgdata{$pkg}{'postun'},'gp');
1115 open PREINST, ">$buildroot/$pkg/DEBIAN/postrm";
1116 print PREINST "#!/bin/sh\nset -e\n\n";
1117 print PREINST $pkgdata{$pkg}{'postun'};
1118 close PREINST;
1119 `chmod 0755 $buildroot/$pkg/DEBIAN/postrm`;
1120 }
1121
1122 # execute
1123 print "Calling package creation script $debscriptfile for $pkgdata{$pkg}{name}...\n";
1124 system("/bin/sh -e $debscriptfile") == 0
1125 or die "Can't exec: $!\n";
1126
1127 $finalmessages .= "Wrote binary package ".
1128 "$pkgdata{$pkg}{name}_".
1129 (defined($pkgdata{main}{epoch}) ? "$pkgdata{main}{epoch}:" : '').
1130 "$pkgdata{$pkg}{version}-$pkgdata{main}{release}_$pkgdata{$pkg}{arch}.deb".
1131 " in $topdir/DEBS/$pkgdata{$pkg}{arch}\n";
1132 # and clean up
1133 unlink $debscriptfile;
1134
1135 } # subpackage loop
1136
1137} # end binpackage()
1138
1139
1140## srcpackage()
1141# Builds a .src.deb source package. Note that Debian's idea of
1142# a "source package" is seriously flawed IMO, because you can't
1143# easily copy it as-is.
1144# Not quite identical to RPM, but Good Enough (TM).
1145sub srcpackage {
1146 # In case we were called with -bs.
1147 $pkgdata{main}{name} =~ tr/_/-/;
1148 my $pkgsrcname = "$pkgdata{main}{name}-".
1149 (defined($pkgdata{main}{epoch}) ? "$pkgdata{main}{epoch}:" : '').
1150 "$pkgdata{main}{version}-$pkgdata{main}{release}.sdeb";
1151
1152 my $paxcmd;
1153
1154 # We'll definitely need this later, and *may* need it sooner.
1155 (my $barespec = $specfile) =~ s|.+/([^/]+)$|$1|;
1156
1157 # Copy the specfile to the build tree, but only if it's not there already.
1158##buglet: need to deal with silly case where silly user has put the spec
1159# file in a subdir of %{_topdir}/SPECS. Ewww. Silly user!
1160 if (abs_path($specfile) !~ /^$topdir\/SPECS/) {
1161 $paxcmd .= "cp $specfile %{_topdir}/SPECS/; \n"
1162 }
1163
1164 # use pax -w [file] [file] ... >outfile.sdeb
1165 $paxcmd = "cd $topdir; pax -w ";
1166
1167# tweak source entry into usable form. Need it locally somewhere along the line.
1168 (my $pkgsrc = $pkgdata{main}{source}) =~ s|.+/([^/]+)$|$1|;
1169 $paxcmd .= "SOURCES/$pkgsrc ";
1170
1171 # create file list: Source[nn], Patch[nn]
1172 foreach my $specbit (keys %{$pkgdata{main}} ) {
1173 next if $specbit eq 'source';
1174 $paxcmd .= "SOURCES/$pkgdata{main}{$specbit} " if $specbit =~ /^patch/;
1175##buglet: need to deal with case where patches are listed as URLs?
1176# or other extended pathnames? Silly !@$%^&!%%!%!! user!
1177 }
1178
1179 foreach my $source (keys %{$pkgdata{sources}}) {
1180 $paxcmd .= "SOURCES/$pkgdata{sources}{$source} ";
1181 }
1182
1183 # add the spec file, source package destination, and cd back where we came from.
1184 $paxcmd .= "SPECS/$barespec > $topdir/SDEBS/$pkgsrcname; cd -";
1185
1186 # In case of %-macros...
1187 $paxcmd = expandmacros($paxcmd,'gp');
1188
1189 system "$paxcmd";
1190 $finalmessages .= "Wrote source package $pkgsrcname in $topdir/SDEBS.\n";
1191} # end srcpackage()
1192
1193
1194## clean()
1195# Writes and executes the %clean script (mostly) built while reading the spec file.
1196sub clean {
1197 # Replace some things here just to make sure.
1198 $cleanscript = expandmacros($cleanscript,'gp');
1199
1200 # create script filename
1201 my $cleanscriptfile = "$tmpdir/deb-tmp.clean.".int(rand(99998)+1);
1202 sysopen(CLEANSCRIPT, $cleanscriptfile, O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW)
1203 or die $!;
1204 print CLEANSCRIPT $scriptletbase;
1205 print CLEANSCRIPT $cleanscript;
1206 close CLEANSCRIPT;
1207
1208 # execute
1209 print "Calling \%clean script $cleanscriptfile...\n";
1210 system("/bin/sh -e $cleanscriptfile") == 0
1211 or die "Can't exec: $!\n";
1212
1213 # and clean up
1214 unlink $cleanscriptfile;
1215} # end clean()
1216
1217
1218## checkbuildreq()
1219# Checks the build requirements (if any)
1220# Spits out a rude warning and returns a true-false error if any
1221# requirements are not met.
1222sub checkbuildreq {
1223 return 1 if $buildreq eq ''; # No use doing extra work.
1224
1225 if ( ! -e "/usr/bin/dpkg-query" ) {
1226 print "**WARNING** dpkg-query not found. Can't check build-deps.\n".
1227 " Required for sucessful build:\n".$buildreq."\n".
1228 " Continuing anyway.\n";
1229 return 1;
1230 }
1231
1232 my $reqflag = 1; # unset iff a buildreq is missing
1233
1234 $buildreq =~ s/^, //; # Strip the leading comma and space
1235 my @reqlist = split /,\s+/, $buildreq;
1236
1237 foreach my $req (@reqlist) {
1238 my ($pkg,$rel,$ver);
1239
1240 # We have two classes of requirements - versioned and unversioned.
1241 if ($req =~ /[><=]/) {
1242 # Pick up the details of versioned buildreqs
1243 ($pkg,$rel,$ver) = ($req =~ /([a-z0-9._-]+)\s+([><=]+)\s+([a-z0-9._-]+)/);
1244 } else {
1245 # And the unversioned ones.
1246 $pkg = $req;
1247 $rel = '>=';
1248 $ver = 0;
1249 }
1250
1251 my @pkglist = qx { dpkg-query --showformat '\${status}\t\${version}\n' -W $pkg };
1252# need to check if no lines returned - means a bad buildreq
1253 my ($reqstat,undef,undef,$reqver) = split /\s+/, $pkglist[0];
1254 if ($reqstat !~ /install/) {
1255 print " * Missing build-dependency $pkg!\n";
1256 $reqflag = 0;
1257 } else {
1258# gotta be a better way to do this... :/
1259 if ($rel eq '>=' && !($reqver ge $ver)) {
1260 print " * Buildreq $pkg is installed, but wrong version ($reqver): Need $ver\n";
1261 $reqflag = 0;
1262 }
1263 if ($rel eq '>' && !($reqver gt $ver)) {
1264 print " * Buildreq $pkg is installed, but wrong version ($reqver): Need $ver\n";
1265 $reqflag = 0;
1266 }
1267 if ($rel eq '<=' && !($reqver le $ver)) {
1268 print " * Buildreq $pkg is installed, but wrong version ($reqver): Need $ver\n";
1269 $reqflag = 0;
1270 }
1271 if ($rel eq '<' && !($reqver lt $ver)) {
1272 print " * Buildreq $pkg is installed, but wrong version ($reqver): Need $ver\n";
1273 $reqflag = 0;
1274 }
1275 if ($rel eq '=' && !($reqver eq $ver)) {
1276 print " * Buildreq $pkg is installed, but wrong version ($reqver): Need $ver\n";
1277 $reqflag = 0;
1278 }
1279 } # end not installed/installed check
1280 } # end req loop
1281
1282 return $reqflag;
1283} # end checkbuildreq()
1284
1285
1286## getreqs()
1287# Find out which libraries/packages are required for any
1288# executables and libs in a given file tree.
1289# (Debian doesn't have soname-level deps; just package-level)
1290# Returns an empty string if the tree contains no binaries.
1291# Doesn't work well on shell scripts. but those *should* be
1292# fine anyway. (Yeah, right...)
1293sub getreqs() {
1294 my $pkgtree = $_[0];
1295
1296 print "Checking library requirements...\n";
1297 my @binlist = qx { find $pkgtree -type f -perm 755 };
1298
1299 if (scalar(@binlist) == 0) {
1300 return '';
1301 }
1302
1303 my @reqlist;
1304 foreach (@binlist) {
1305 push @reqlist, qx { ldd $_ };
1306 }
1307
1308 # Get the list of libs provided by this package. Still doesn't
1309 # handle the case where the lib gets stuffed into a subpackage. :/
1310 my @intprovlist = qx { find $pkgtree -type f -name "*.so*" };
1311 my $provlist = '';
1312 foreach (@intprovlist) {
1313 s/$pkgtree//;
1314 $provlist .= "$_";
1315 }
1316
1317 my %reqs;
1318 my $reqlibs = '';
1319
1320 foreach (@reqlist) {
1321 next if /^$pkgtree/;
1322 next if /not a dynamic executable/;
1323 next if m|/lib/ld-linux.so|; # Hack! Hack! PTHBTT! (libc suxx0rz)
1324 next if /linux-gate.so/; # Kernel hackery for teh W1n!!1!1eleventy-one!1 (Don't ask. Feh.)
1325
1326 my ($req) = (/^\s+([a-z0-9._-]+)/); # dig out the actual library (so)name
1327
1328 # Ignore libs provided by this package. Note that we don't match
1329 # on word-boundary at the *end* of the lib we're looking for, as the
1330 # looked-for lib may not have the full soname version. (ie, it may
1331 # "just" point to one of the symlinks that get created somewhere.)
1332 next if $provlist =~ /\b$req/;
1333
1334 $reqlibs .= " $req";
1335 }
1336
1337 if ($reqlibs ne '') {
1338 foreach (qx { dpkg -S $reqlibs }) {
1339 my ($libpkg,undef) = split /:\s+/;
1340 $reqs{$libpkg} = 1;
1341 }
1342 }
1343
1344 my $deplist = '';
1345 foreach (keys %reqs) {
1346 $deplist .= ", $_";
1347 }
1348
1349# For now, we're done. We're not going to meddle with versions yet.
1350# Among other things, it's messier than handling "simple" yes/no "do
1351# we have this lib?" deps. >:(
1352
1353 return $deplist;
1354} # end getreqs()
1355
1356
1357## install_sdeb()
1358# Extracts .sdeb contents to %_topdir as appropriate
1359sub install_sdeb {
1360 $srcpkg = abs_path($srcpkg);
1361
1362 my $paxcmd = "cd $topdir; pax -r <$srcpkg; cd -";
1363
1364 # In case of %-macros...
1365 $paxcmd = expandmacros($paxcmd,'gp');
1366
1367 system "$paxcmd";
1368 print "Extracted source package $srcpkg to $topdir.\n";
1369} # end install_sdeb()
1370
1371
1372## expandmacros()
1373# Expands all %{blah} macros in the passed string
1374# Split up a bit with some sections so we don't spend time trying to
1375# expand macros that are only used in a few specific places.
1376sub expandmacros {
1377 my $macrostring = shift;
1378 my $section = shift;
1379
1380 # To allow the FHS-ish %configure and %makeinstall to work The Right Way.
1381 # (Without clobbering the global $buildroot.)
1382 my $prefix = '';
1383
1384 if ($section =~ /c/) {
1385 # %configure macro
1386# Don't know what it's for, don't have a useful default replacement
1387# --program-prefix=%{_program_prefix} \
1388 $macrostring =~ s'%configure'./configure --host=$DEB_HOST_GNU_TYPE \
1389 --build=$DEB_BUILD_GNU_TYPE \
1390 --prefix=%{_prefix} \
1391 --exec-prefix=%{_exec_prefix} \
1392 --bindir=%{_bindir} \
1393 --sbindir=%{_sbindir} \
1394 --sysconfdir=%{_sysconfdir} \
1395 --datadir=%{_datadir} \
1396 --includedir=%{_includedir} \
1397 --libdir=%{_libdir} \
1398 --libexecdir=%{_libexecdir} \
1399 --localstatedir=%{_localstatedir} \
1400 --sharedstatedir=%{_sharedstatedir} \
1401 --mandir=%{_mandir} \
1402 --infodir=%{_infodir} ';
1403 } # done %configure
1404
1405 if ($section =~ /m/) {
1406 $macrostring =~ s'%{__make}'make ';
1407 } # done make
1408
1409 if ($section =~ /i/) {
1410 # This is where we need to mangle $prefix.
1411 $macrostring =~ s'%makeinstall'make %{fhs} install';
1412 $prefix = $buildroot;
1413 } # done %install and/or %makeinstall
1414
1415 # Build data
1416 # Note that these are processed in reverse order to get the substitution order right
1417 if ($section =~ /b/) {
1418# $macrostring =~ s'%{fhs}'host=$DEB_HOST_GNU_TYPE \
1419# build=$DEB_BUILD_GNU_TYPE \
1420 $macrostring =~ s'%{fhs}'prefix=%{_prefix} \
1421 exec-prefix=%{_exec_prefix} \
1422 bindir=%{_bindir} \
1423 sbindir=%{_sbindir} \
1424 sysconfdir=%{_sysconfdir} \
1425 datadir=%{_datadir} \
1426 includedir=%{_includedir} \
1427 libdir=%{_libdir} \
1428 libexecdir=%{_libexecdir} \
1429 localstatedir=%{_localstatedir} \
1430 sharedstatedir=%{_sharedstatedir} \
1431 mandir=%{_mandir} \
1432 infodir=%{_infodir} \
1433';
1434
1435 # Note that the above regex terminates with the extra space
1436 # "Just In Case" of user additions, which will then get neatly
1437 # tagged on the end where they take precedence (supposedly)
1438 # over the "default" ones.
1439
1440 # Now we cascade the macros introduced above. >_<
1441 # Wot ot to go theah:
1442 $macrostring =~ s|%{_mandir}|%{_datadir}/man|g; #/usr/share/man
1443 $macrostring =~ s|%{_infodir}|%{_datadir}/info|g; #/usr/share/info
1444 $macrostring =~ s|%{_oldincludedir}|/usr/include|g; #/usr/include
1445 $macrostring =~ s|%{_includedir}|%{_prefix}/include|g; #/usr/include
1446 $macrostring =~ s|%{_libdir}|%{_exec_prefix}/%{_lib}|g; #/usr/lib
1447 $macrostring =~ s|%{_lib}|lib|g; #?
1448 $macrostring =~ s|%{_localstatedir}|/var|g; #/var
1449 $macrostring =~ s|%{_sharedstatedir}|%{_prefix}/com|g; #/usr/com WTF?
1450 $macrostring =~ s|%{_sysconfdir}|/etc|g; #/etc
1451 $macrostring =~ s|%{_datadir}|%{_prefix}/share|g; #/usr/share
1452 $macrostring =~ s|%{_libexecdir}|%{_exec_prefix}/libexec|g; #/usr/libexec
1453 $macrostring =~ s|%{_sbindir}|%{_exec_prefix}/sbin|g; #/usr/sbin
1454 $macrostring =~ s|%{_bindir}|%{_exec_prefix}/bin|g; #/usr/bin
1455 $macrostring =~ s|%{_exec_prefix}|%{_prefix}|g; #/usr
1456 $macrostring =~ s|%{_prefix}|/usr|g; #/usr
1457 } # done with config section
1458
1459 # Package data
1460 if ($section =~ /p/) {
1461 $macrostring =~ s/\%\{buildroot\}/$buildroot/gi;
1462 foreach my $source (keys %{$pkgdata{sources}}) {
1463 $macrostring =~ s/\%\{source$source\}/$topdir\/SOURCES\/$pkgdata{sources}{$source}/gi;
1464 }
1465 $macrostring =~ s/\%\{name\}/$pkgdata{main}{name}/gi;
1466 $macrostring =~ s/\%\{version\}/$pkgdata{main}{version}/gi;
1467 $macrostring =~ s/\%\{release\}/$pkgdata{main}{release}/gi;
1468 }
1469
1470 # Globals, and not-so-globals
1471 if ($section =~ /g/) {
1472
1473 $macrostring =~ s|%{_builddir}|%{_topdir}/BUILD|g;
1474 $macrostring =~ s|%{_topdir}|$topdir|g;
1475 $macrostring =~ s|%{_tmppath}|$tmpdir|g;
1476 $macrostring =~ s'%{_docdir}'%{_datadir}/doc'g;
1477
1478 # Standard FHS locations. More or less.
1479 $macrostring =~ s'%{_bindir}'/usr/bin'g;
1480 $macrostring =~ s'%{_sbindir}'/usr/sbin'g;
1481 $macrostring =~ s'%{_mandir}'%{_datadir}/man'g;
1482 $macrostring =~ s'%{_includedir}'/usr/include'g;
1483 $macrostring =~ s'%{_libdir}'/usr/lib'g;
1484 $macrostring =~ s'%{_sysconfdir}'/etc'g;
1485 $macrostring =~ s'%{_localstatedir}'/var'g;
1486
1487 # FHS-ish locations that aren't quite actually FHS-specified.
1488 $macrostring =~ s'%{_datadir}'/usr/share'g;
1489
1490 # %define's
1491 foreach my $key (keys %specglobals) {
1492 $macrostring =~ s|%{$key}|$specglobals{$key}|g;
1493 }
1494
1495 # special %define's. Handle the general case where we eval anything.
1496 # Even more general: %(...) is a spec-parse-time shell code wrapper.
1497 # Prime example:
1498 #%define perl_vendorlib %(eval "`perl -V:installvendorlib`"; echo $installvendorlib)
1499 if ($macrostring =~ /\%\((.+)\)/) {
1500 my $shellstr = $1;
1501 # Oy vey this gets silly for the perl bits. Executing a shell to
1502 # call Perl to get the vendorlib/sitelib/whatever "core" globals.
1503 # This can do more, but... eww.
1504 $shellstr = qx { /bin/sh -c '$shellstr' }; # Yay! ' characters apparently get properly exscapededed.
1505 $macrostring =~ s/\%\(.+\)/$shellstr/;
1506 }
1507
1508 # support for **some** %if constructs. Note that this breaks somewhat if
1509 # there's no value specified... but so does rpm.
1510 while ($macrostring =~ /\%\{\?(\!)?([a-z0-9_.-]+)(?:\:([a-z0-9_.-]+))?\}/) { #Whew....
1511 my $neg = $1;
1512 my $macro = $2;
1513 my $value = $3;
1514 if ($specglobals{$macro}) {
1515 $value = '' if $neg;
1516 } else {
1517 $value = '' if !$neg;
1518 }
1519 $macrostring =~ s/\%\{\?\!?[a-z0-9_.-]+(?:\:[a-z0-9_.-]+)?\}/$value/;
1520 }
1521
1522 # system programs. RPM uses a global config file for these; we'll just
1523 # ASS-U-ME and make life a little simpler.
1524 if ($macrostring =~ /\%\{\_\_([a-z0-9_-]+)\}/) {
1525 $macrostring =~ s|%{__([a-z0-9_-]+)}|$1|g;
1526 }
1527
1528 # Misc expansions
1529 $macrostring =~ s|%{_arch}|$hostarch|g;
1530 $macrostring =~ s|%{optflags}|$optflags{$hostarch}|g;
1531
1532 # Perl @INC/...lib locations, and other related bits.
1533 $macrostring =~ s|%{perl_archlib}|$Config{installarchlib}|g;
1534 $macrostring =~ s|%{perl_sitelib}|$Config{installsitelib}|g;
1535 $macrostring =~ s|%{perl_sitearch}|$Config{installsitearch}|g;
1536 $macrostring =~ s|%{perl_vendorlib}|$Config{installvendorlib}|g;
1537 $macrostring =~ s|%{perl_vendorarch}|$Config{installvendorarch}|g;
1538
1539 } # done with globals section
1540
1541 return $macrostring;
1542} # end expandmacros()
1543
1544
1545
1546__END__
1547
1548
1549
1550=head1 NAME
1551
1552debbuild - Build Debian-compatible packages from RPM spec files
1553
1554=head1 SYNOPSIS
1555
1556 debbuild {-ba|-bb|-bp|-bc|-bi|-bl|-bs} [build-options] file.spec
1557
1558 debbuild {-ta|-tb|-tp|-tc|-ti|-tl|-ts} [build-options] file.tar.{gz|bz2}
1559
1560 debbuild --rebuild file.{src.rpm|sdeb}
1561
1562 debbuild --showpkgs
1563
1564=head1 DESCRIPTION
1565
1566This script attempts to build Debian-friendly semi-native packages from RPM spec files,
1567RPM-friendly tarballs, and RPM source packages (.src.rpm files). It accepts I<most> of the
1568options rpmbuild does, and should be able to interpret most spec files usefully. Perl
1569modules should be handled via CPAN+dh-make-perl instead; Debian's conventions for such
1570things do not lend themselves to automated conversion.
1571
1572As far as possible, the command-line options are identical to those from rpmbuild, although
1573several rpmbuild options are not supported:
1574
1575 --recompile
1576 --showrc
1577 --buildroot
1578 --clean
1579 --nobuild
1580 --rmsource
1581 --rmspec
1582 --sign
1583 --target
1584
1585Some of these could probably be trivially added. Feel free to send me a patch. ;)
1586
1587Complex spec files will most likely not work well, if at all. Rewrite them from scratch -
1588you'll have to make heavy modifications anyway.
1589
1590If you see something you don't like, mail me. Send a patch if you feel inspired. I don't
1591promise I'll do anything other than say "Yup, that's broken" or "Got your message".
1592
1593=head1 ASSUMPTIONS
1594
1595As with rpmbuild, debbuild makes some assumptions about your system.
1596
1597=over 4
1598
1599=item *
1600
1601Either you have rights to do as you please under /usr/src/debian, or you have created a file
1602~/.debmacros containing a suitable %_topdir definition.
1603
1604Both rpmbuild and debbuild require the directories %_topdir/{BUILD,SOURCES,SPECS}. However,
1605where rpmbuild requires the %_topdir/{RPMS,SRPMS} directories, debbuild
1606requires %_topdir/{DEBS,SDEBS} instead. Create them in advance;
1607some subdirectories are created automatically as needed, but most are not.
1608
1609=item *
1610
1611/var/tmp must allow script execution - rpmbuild and debbuild both rely on creating and
1612executing shell scripts for much of their functionality. By default, debbuild also creates
1613install trees under /var/tmp - however this is (almost) entirely under the control of the
1614package's .spec file.
1615
1616=item *
1617
1618If you wish to --rebuild a .src.rpm, your %_topdir for both debbuild and rpmbuild must either
1619match, or be suitably symlinked one direction or another so that both programs are effectively
1620working in the same tree. (Or you could just manually wrestle files around your system.)
1621
1622You could symlink ~/.rpmmacros to ~/.debmacros (or vice versa) and save yourself some hassle
1623if you need to rebuild .src.rpm packages on a regular basis. Currently debbuild only uses the
1624%_topdir macro definition, although there are many more things that rpmbuild can use from
1625~/.rpmmacros.
1626
1627=back
1628
1629=head1 ERRATA
1630
1631debbuild deliberately does a few things differently from rpm.
1632
1633=head2 BuildArch or BuildArchitecture
1634
1635rpm takes the last BuildArch entry it finds in the .spec file, whatever it is, and runs with
1636that for all packages. Debian's repository system is fairly heavily designed around the
1637assumption that a single source package may generate small binary (executable) packages
1638for each arch, and large binary arch-all packages containing shared data.
1639
1640debbuild allows this by using the architecture specified by (in order of preference):
1641
1642=over 4
1643
1644=item * Host architecture
1645
1646=item * BuildArch specified in .spec file preamble
1647
1648=item * "Last specified" BuildArch for packages with several subpackages
1649
1650=item * BuildArch specified in the %package section for that subpackage
1651
1652=back
1653
1654=head2 Finding out what packages should be built (--showpkgs)
1655
1656rpmbuild does not include any convenient method I know of to list the packages a spec file
1657will produce. Since I needed this ability for another tool, I added it.
1658
1659It requires the .spec file for the package, and produces a list of full package filenames
1660(without path data) that would be generated by one of --rebuild, -ta, -tb, -ba, or -bb.
1661This includes the .sdeb source package.
1662
1663=head1 AUTHOR
1664
1665debbuild was written by Kris Deugau <kdeugau@deepnet.cx>. A version that approximates
1666current is available at http://www.deepnet.cx/debbuild/.
1667
1668=head1 BUGS
1669
1670Funky Things Happen if you forget a command-line option or two. I've been too lazy to bother
1671fixing this.
1672
1673Many macro expansions are unsupported or incompletely supported.
1674
1675The generated scriptlets don't quite match those from rpmbuild exactly. There are extra
1676environment variables and preprocessing that I haven't needed (yet).
1677
1678Dcumentation, such as it is, will likely remain perpetually out of date.
1679
1680%_topdir and the five "working" directories under %_topdir could arguably be created by
1681debbuild. However, rpmbuild doesn't create these directories either.
1682
1683=head1 SEE ALSO
1684
1685rpm(8), rpmbuild(8), and pretty much any document describing how to write a .spec file.
1686
1687=cut
Note: See TracBrowser for help on using the repository browser.