dm6: finish WIP
[dupemerge] / dm6
1 #!/usr/bin/perl
2 use warnings;
3 use strict;
4 use Digest::SHA1 qw(sha1 sha1_hex sha1_base64);
5 use Fcntl qw(:DEFAULT :flock);
6 use File::Compare;
7 use File::Path;
8 use File::Temp;
9 use File::stat;
10
11 # Copyright (C) 2010 Zygo Blaxell <dm5@mailtoo.hungrycats.org>
12
13 # This program is free software; you can redistribute it and/or modify
14 # it under the terms of the GNU General Public License as published by
15 # the Free Software Foundation; either version 2 of the License, or
16 # (at your option) any later version.
17
18 # This program is distributed in the hope that it will be useful,
19 # but WITHOUT ANY WARRANTY; without even the implied warranty of
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21 # GNU General Public License for more details.
22
23 # You should have received a copy of the GNU General Public License
24 # along with this program; if not, write to the Free Software
25 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
26
27 sub digest {
28         my ($filename) = (@_);
29         die "'$filename' is not a plain file" if (-l $filename) || ! (-f _);
30         my $ctx = Digest::SHA1->new;
31         sysopen(FILE, $filename, O_RDONLY|O_NONBLOCK) or die "open: $filename: $!";
32         binmode(FILE);          # FIXME:  Necessary?  Probably harmless...
33         $ctx->addfile(\*FILE);
34         close(FILE) or die "close: $filename: $!";
35         return $ctx->b64digest;
36 }
37
38 sub usage {
39         die <<USAGE;
40 Usage: $0 link-dir
41 Hashes a NUL-separated list of files on stdin into link-dir.
42 USAGE
43 }
44
45 # Link files
46 sub link_files {
47         my ($from, $to) = (@_);
48
49         print STDERR "link '$from' '$to' ...";
50         my $inode_dir = $to;
51         my $inode_base = $to;
52         $inode_dir =~ s:[^/]*$::o;
53         $inode_base =~ s:^.*/::os;
54         my $tmp_to = File::Temp::tempnam($inode_dir, ".$inode_base.");
55         link($from, $tmp_to) or die "link: $from -> $tmp_to: $!";
56         unless (rename($tmp_to, $to)) {
57                 my $saved_bang = $!;
58                 unlink($tmp_to) or warn "unlink: $tmp_to: $!";  # Try, possibly in vain, to clean up
59                 die "rename: $tmp_to -> $from: $saved_bang";
60         }
61         print STDERR "\n";
62 }
63
64 my $link_dir = shift @ARGV;
65 (-d $link_dir) or usage;
66
67 sub slash_prefix {
68         my ($file) = @_;
69         my $prefix = substr($file, 0, 3);
70         my $suffix = substr($file, 3);
71         $prefix =~ s:(.):$1/:osg;
72         chop($prefix);
73         return ($prefix, $suffix);
74 }
75
76 sub prepare_parents {
77         my ($link_dir, $file) = @_;
78         my ($prefix, $suffix) = slash_prefix($file);
79         my $parent = "$link_dir/$prefix";
80         mkpath($parent, { verbose => 1 });
81         die "mkpath: $parent: $!" unless -d $parent;
82         return "$parent/$prefix/$suffix";
83 }
84
85 # ext3 cannot handle more than 32000 links to a file.  Leave some headroom.
86 my $link_count_max = 31990;
87
88 $/ = "\0";
89 while (<STDIN>) {
90         my $file = $_;
91         eval {
92                 for (1) {
93                         chomp $file;
94
95                         # Get file stat data
96                         my $st = lstat($file);
97                         die "lstat: $file: $!" unless $st;
98
99                         # Oops?
100                         next unless -f _;
101
102                         # Skip the file if it has far too many links already
103                         next if ($st->nlink > $link_count_max);
104
105                         # Check link to inode
106                         my $inode_link = prepare_parents("$link_dir/inode", $st->ino);
107                         my $inode_st = lstat($inode_link);
108                         my $update_links;
109                         if ($inode_st) {
110                                 my $inode_dev = $inode_st->dev;
111                                 my $inode_ino = $inode_st->ino;
112                                 my $file_dev = $st->dev;
113                                 my $file_ino = $st->ino;
114                                 if ($inode_ino != $file_ino || $inode_dev != $file_dev) {
115                                         warn "inode link '$inode_link' is wrong (inode $inode_ino should be $file_ino)" if $inode_ino != $file_ino;
116                                         warn "inode link '$inode_link' is wrong (dev $inode_dev should be $file_dev)" if $inode_dev != $file_dev;
117                                         $update_links = 1;
118                                 }
119                         } else {
120                                 $update_links = 1;
121                         }
122
123                         # If neither criteria for updating link is met, leave it as-is
124                         next unless $update_links;
125
126                         # Compute digest
127                         print STDERR "digest($file) = ";
128                         my $digest = digest($file);
129
130                         # Base64 uses /, we prefer _
131                         $digest =~ y:/:_:;
132
133                         print STDERR "$digest\n";
134
135                         # Check link to digest
136                         my $digest_link = prepare_parents("$link_dir/digest", $digest);
137                         my $digest_st = lstat($digest_link);
138                         if ($digest_st) {
139                                 my $digest_nlink = $digest_st->nlink;
140                                 if ($digest_nlink > 31990) {
141                                         print STDERR "Removing '$digest_link' with $digest_nlink links\n";
142                                         unlink($digest_link) or die "unlink: $digest_link: $!";
143                                         undef $digest_st;
144                                 }
145                         }
146
147                         # If digest link exists, link it to file
148                         if ($digest_st) {
149                                 print STDERR "cmp '$digest_link' '$file' ...";
150                                 die "NOT identical!" if compare($digest_link, $file);
151                                 print STDERR "\n";
152                                 link_files($digest_link, $file);
153                         } else {
154                                 link_files($file, $digest_link);
155                         }
156
157                         # A link to the inode indicates we are done, so do it last
158                         link_files($file, $inode_link);
159
160                 }
161         };
162         warn "$file: $@" if $@;
163 }
164
165 exit(0);
166
167 __END__
168
169 #################################################################################
170 #                     GNU GENERAL PUBLIC LICENSE                                #
171 #                        Version 2, June 1991                                   #
172 #                                                                               #
173 #  Copyright (C) 1989, 1991 Free Software Foundation, Inc.                      #
174 #      59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                  #
175 #  Everyone is permitted to copy and distribute verbatim copies                 #
176 #  of this license document, but changing it is not allowed.                    #
177 #                                                                               #
178 #                             Preamble                                          #
179 #                                                                               #
180 #   The licenses for most software are designed to take away your               #
181 # freedom to share and change it.  By contrast, the GNU General Public          #
182 # License is intended to guarantee your freedom to share and change free        #
183 # software--to make sure the software is free for all its users.  This          #
184 # General Public License applies to most of the Free Software                   #
185 # Foundation's software and to any other program whose authors commit to        #
186 # using it.  (Some other Free Software Foundation software is covered by        #
187 # the GNU Library General Public License instead.)  You can apply it to         #
188 # your programs, too.                                                           #
189 #                                                                               #
190 #   When we speak of free software, we are referring to freedom, not            #
191 # price.  Our General Public Licenses are designed to make sure that you        #
192 # have the freedom to distribute copies of free software (and charge for        #
193 # this service if you wish), that you receive source code or can get it         #
194 # if you want it, that you can change the software or use pieces of it          #
195 # in new free programs; and that you know you can do these things.              #
196 #                                                                               #
197 #   To protect your rights, we need to make restrictions that forbid            #
198 # anyone to deny you these rights or to ask you to surrender the rights.        #
199 # These restrictions translate to certain responsibilities for you if you       #
200 # distribute copies of the software, or if you modify it.                       #
201 #                                                                               #
202 #   For example, if you distribute copies of such a program, whether            #
203 # gratis or for a fee, you must give the recipients all the rights that         #
204 # you have.  You must make sure that they, too, receive or can get the          #
205 # source code.  And you must show them these terms so they know their           #
206 # rights.                                                                       #
207 #                                                                               #
208 #   We protect your rights with two steps: (1) copyright the software, and      #
209 # (2) offer you this license which gives you legal permission to copy,          #
210 # distribute and/or modify the software.                                        #
211 #                                                                               #
212 #   Also, for each author's protection and ours, we want to make certain        #
213 # that everyone understands that there is no warranty for this free             #
214 # software.  If the software is modified by someone else and passed on, we      #
215 # want its recipients to know that what they have is not the original, so       #
216 # that any problems introduced by others will not reflect on the original       #
217 # authors' reputations.                                                         #
218 #                                                                               #
219 #   Finally, any free program is threatened constantly by software              #
220 # patents.  We wish to avoid the danger that redistributors of a free           #
221 # program will individually obtain patent licenses, in effect making the        #
222 # program proprietary.  To prevent this, we have made it clear that any         #
223 # patent must be licensed for everyone's free use or not licensed at all.       #
224 #                                                                               #
225 #   The precise terms and conditions for copying, distribution and              #
226 # modification follow.                                                          #
227 #                                                                               #
228 #                     GNU GENERAL PUBLIC LICENSE                                #
229 #    TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION            #
230 #                                                                               #
231 #   0. This License applies to any program or other work which contains         #
232 # a notice placed by the copyright holder saying it may be distributed          #
233 # under the terms of this General Public License.  The "Program", below,        #
234 # refers to any such program or work, and a "work based on the Program"         #
235 # means either the Program or any derivative work under copyright law:          #
236 # that is to say, a work containing the Program or a portion of it,             #
237 # either verbatim or with modifications and/or translated into another          #
238 # language.  (Hereinafter, translation is included without limitation in        #
239 # the term "modification".)  Each licensee is addressed as "you".               #
240 #                                                                               #
241 # Activities other than copying, distribution and modification are not          #
242 # covered by this License; they are outside its scope.  The act of              #
243 # running the Program is not restricted, and the output from the Program        #
244 # is covered only if its contents constitute a work based on the                #
245 # Program (independent of having been made by running the Program).             #
246 # Whether that is true depends on what the Program does.                        #
247 #                                                                               #
248 #   1. You may copy and distribute verbatim copies of the Program's             #
249 # source code as you receive it, in any medium, provided that you               #
250 # conspicuously and appropriately publish on each copy an appropriate           #
251 # copyright notice and disclaimer of warranty; keep intact all the              #
252 # notices that refer to this License and to the absence of any warranty;        #
253 # and give any other recipients of the Program a copy of this License           #
254 # along with the Program.                                                       #
255 #                                                                               #
256 # You may charge a fee for the physical act of transferring a copy, and         #
257 # you may at your option offer warranty protection in exchange for a fee.       #
258 #                                                                               #
259 #   2. You may modify your copy or copies of the Program or any portion         #
260 # of it, thus forming a work based on the Program, and copy and                 #
261 # distribute such modifications or work under the terms of Section 1            #
262 # above, provided that you also meet all of these conditions:                   #
263 #                                                                               #
264 #     a) You must cause the modified files to carry prominent notices           #
265 #     stating that you changed the files and the date of any change.            #
266 #                                                                               #
267 #     b) You must cause any work that you distribute or publish, that in        #
268 #     whole or in part contains or is derived from the Program or any           #
269 #     part thereof, to be licensed as a whole at no charge to all third         #
270 #     parties under the terms of this License.                                  #
271 #                                                                               #
272 #     c) If the modified program normally reads commands interactively          #
273 #     when run, you must cause it, when started running for such                #
274 #     interactive use in the most ordinary way, to print or display an          #
275 #     announcement including an appropriate copyright notice and a              #
276 #     notice that there is no warranty (or else, saying that you provide        #
277 #     a warranty) and that users may redistribute the program under             #
278 #     these conditions, and telling the user how to view a copy of this         #
279 #     License.  (Exception: if the Program itself is interactive but            #
280 #     does not normally print such an announcement, your work based on          #
281 #     the Program is not required to print an announcement.)                    #
282 #                                                                               #
283 # These requirements apply to the modified work as a whole.  If                 #
284 # identifiable sections of that work are not derived from the Program,          #
285 # and can be reasonably considered independent and separate works in            #
286 # themselves, then this License, and its terms, do not apply to those           #
287 # sections when you distribute them as separate works.  But when you            #
288 # distribute the same sections as part of a whole which is a work based         #
289 # on the Program, the distribution of the whole must be on the terms of         #
290 # this License, whose permissions for other licensees extend to the             #
291 # entire whole, and thus to each and every part regardless of who wrote it.     #
292 #                                                                               #
293 # Thus, it is not the intent of this section to claim rights or contest         #
294 # your rights to work written entirely by you; rather, the intent is to         #
295 # exercise the right to control the distribution of derivative or               #
296 # collective works based on the Program.                                        #
297 #                                                                               #
298 # In addition, mere aggregation of another work not based on the Program        #
299 # with the Program (or with a work based on the Program) on a volume of         #
300 # a storage or distribution medium does not bring the other work under          #
301 # the scope of this License.                                                    #
302 #                                                                               #
303 #   3. You may copy and distribute the Program (or a work based on it,          #
304 # under Section 2) in object code or executable form under the terms of         #
305 # Sections 1 and 2 above provided that you also do one of the following:        #
306 #                                                                               #
307 #     a) Accompany it with the complete corresponding machine-readable          #
308 #     source code, which must be distributed under the terms of Sections        #
309 #     1 and 2 above on a medium customarily used for software interchange; or,  #
310 #                                                                               #
311 #     b) Accompany it with a written offer, valid for at least three            #
312 #     years, to give any third party, for a charge no more than your            #
313 #     cost of physically performing source distribution, a complete             #
314 #     machine-readable copy of the corresponding source code, to be             #
315 #     distributed under the terms of Sections 1 and 2 above on a medium         #
316 #     customarily used for software interchange; or,                            #
317 #                                                                               #
318 #     c) Accompany it with the information you received as to the offer         #
319 #     to distribute corresponding source code.  (This alternative is            #
320 #     allowed only for noncommercial distribution and only if you               #
321 #     received the program in object code or executable form with such          #
322 #     an offer, in accord with Subsection b above.)                             #
323 #                                                                               #
324 # The source code for a work means the preferred form of the work for           #
325 # making modifications to it.  For an executable work, complete source          #
326 # code means all the source code for all modules it contains, plus any          #
327 # associated interface definition files, plus the scripts used to               #
328 # control compilation and installation of the executable.  However, as a        #
329 # special exception, the source code distributed need not include               #
330 # anything that is normally distributed (in either source or binary             #
331 # form) with the major components (compiler, kernel, and so on) of the          #
332 # operating system on which the executable runs, unless that component          #
333 # itself accompanies the executable.                                            #
334 #                                                                               #
335 # If distribution of executable or object code is made by offering              #
336 # access to copy from a designated place, then offering equivalent              #
337 # access to copy the source code from the same place counts as                  #
338 # distribution of the source code, even though third parties are not            #
339 # compelled to copy the source along with the object code.                      #
340 #                                                                               #
341 #   4. You may not copy, modify, sublicense, or distribute the Program          #
342 # except as expressly provided under this License.  Any attempt                 #
343 # otherwise to copy, modify, sublicense or distribute the Program is            #
344 # void, and will automatically terminate your rights under this License.        #
345 # However, parties who have received copies, or rights, from you under          #
346 # this License will not have their licenses terminated so long as such          #
347 # parties remain in full compliance.                                            #
348 #                                                                               #
349 #   5. You are not required to accept this License, since you have not          #
350 # signed it.  However, nothing else grants you permission to modify or          #
351 # distribute the Program or its derivative works.  These actions are            #
352 # prohibited by law if you do not accept this License.  Therefore, by           #
353 # modifying or distributing the Program (or any work based on the               #
354 # Program), you indicate your acceptance of this License to do so, and          #
355 # all its terms and conditions for copying, distributing or modifying           #
356 # the Program or works based on it.                                             #
357 #                                                                               #
358 #   6. Each time you redistribute the Program (or any work based on the         #
359 # Program), the recipient automatically receives a license from the             #
360 # original licensor to copy, distribute or modify the Program subject to        #
361 # these terms and conditions.  You may not impose any further                   #
362 # restrictions on the recipients' exercise of the rights granted herein.        #
363 # You are not responsible for enforcing compliance by third parties to          #
364 # this License.                                                                 #
365 #                                                                               #
366 #   7. If, as a consequence of a court judgment or allegation of patent         #
367 # infringement or for any other reason (not limited to patent issues),          #
368 # conditions are imposed on you (whether by court order, agreement or           #
369 # otherwise) that contradict the conditions of this License, they do not        #
370 # excuse you from the conditions of this License.  If you cannot                #
371 # distribute so as to satisfy simultaneously your obligations under this        #
372 # License and any other pertinent obligations, then as a consequence you        #
373 # may not distribute the Program at all.  For example, if a patent              #
374 # license would not permit royalty-free redistribution of the Program by        #
375 # all those who receive copies directly or indirectly through you, then         #
376 # the only way you could satisfy both it and this License would be to           #
377 # refrain entirely from distribution of the Program.                            #
378 #                                                                               #
379 # If any portion of this section is held invalid or unenforceable under         #
380 # any particular circumstance, the balance of the section is intended to        #
381 # apply and the section as a whole is intended to apply in other                #
382 # circumstances.                                                                #
383 #                                                                               #
384 # It is not the purpose of this section to induce you to infringe any           #
385 # patents or other property right claims or to contest validity of any          #
386 # such claims; this section has the sole purpose of protecting the              #
387 # integrity of the free software distribution system, which is                  #
388 # implemented by public license practices.  Many people have made               #
389 # generous contributions to the wide range of software distributed              #
390 # through that system in reliance on consistent application of that             #
391 # system; it is up to the author/donor to decide if he or she is willing        #
392 # to distribute software through any other system and a licensee cannot         #
393 # impose that choice.                                                           #
394 #                                                                               #
395 # This section is intended to make thoroughly clear what is believed to         #
396 # be a consequence of the rest of this License.                                 #
397 #                                                                               #
398 #   8. If the distribution and/or use of the Program is restricted in           #
399 # certain countries either by patents or by copyrighted interfaces, the         #
400 # original copyright holder who places the Program under this License           #
401 # may add an explicit geographical distribution limitation excluding            #
402 # those countries, so that distribution is permitted only in or among           #
403 # countries not thus excluded.  In such case, this License incorporates         #
404 # the limitation as if written in the body of this License.                     #
405 #                                                                               #
406 #   9. The Free Software Foundation may publish revised and/or new versions     #
407 # of the General Public License from time to time.  Such new versions will      #
408 # be similar in spirit to the present version, but may differ in detail to      #
409 # address new problems or concerns.                                             #
410 #                                                                               #
411 # Each version is given a distinguishing version number.  If the Program        #
412 # specifies a version number of this License which applies to it and "any       #
413 # later version", you have the option of following the terms and conditions     #
414 # either of that version or of any later version published by the Free          #
415 # Software Foundation.  If the Program does not specify a version number of     #
416 # this License, you may choose any version ever published by the Free Software  #
417 # Foundation.                                                                   #
418 #                                                                               #
419 #   10. If you wish to incorporate parts of the Program into other free         #
420 # programs whose distribution conditions are different, write to the author     #
421 # to ask for permission.  For software which is copyrighted by the Free         #
422 # Software Foundation, write to the Free Software Foundation; we sometimes      #
423 # make exceptions for this.  Our decision will be guided by the two goals       #
424 # of preserving the free status of all derivatives of our free software and     #
425 # of promoting the sharing and reuse of software generally.                     #
426 #                                                                               #
427 #                             NO WARRANTY                                       #
428 #                                                                               #
429 #   11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY    #
430 # FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN      #
431 # OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES        #
432 # PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED    #
433 # OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF          #
434 # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS     #
435 # TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE        #
436 # PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,      #
437 # REPAIR OR CORRECTION.                                                         #
438 #                                                                               #
439 #   12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING   #
440 # WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR           #
441 # REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,    #
442 # INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING   #
443 # OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED     #
444 # TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY      #
445 # YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER    #
446 # PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE         #
447 # POSSIBILITY OF SUCH DAMAGES.                                                  #
448 #                                                                               #
449 #                      END OF TERMS AND CONDITIONS                              #
450 #                                                                               #
451 #             How to Apply These Terms to Your New Programs                     #
452 #                                                                               #
453 #   If you develop a new program, and you want it to be of the greatest         #
454 # possible use to the public, the best way to achieve this is to make it        #
455 # free software which everyone can redistribute and change under these terms.   #
456 #                                                                               #
457 #   To do so, attach the following notices to the program.  It is safest        #
458 # to attach them to the start of each source file to most effectively           #
459 # convey the exclusion of warranty; and each file should have at least          #
460 # the "copyright" line and a pointer to where the full notice is found.         #
461 #                                                                               #
462 #     <one line to give the program's name and a brief idea of what it does.>   #
463 #     Copyright (C) <year>  <name of author>                                    #
464 #                                                                               #
465 #     This program is free software; you can redistribute it and/or modify      #
466 #     it under the terms of the GNU General Public License as published by      #
467 #     the Free Software Foundation; either version 2 of the License, or         #
468 #     (at your option) any later version.                                       #
469 #                                                                               #
470 #     This program is distributed in the hope that it will be useful,           #
471 #     but WITHOUT ANY WARRANTY; without even the implied warranty of            #
472 #     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the             #
473 #     GNU General Public License for more details.                              #
474 #                                                                               #
475 #     You should have received a copy of the GNU General Public License         #
476 #     along with this program; if not, write to the Free Software               #
477 #     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA #
478 #                                                                               #
479 #                                                                               #
480 # Also add information on how to contact you by electronic and paper mail.      #
481 #                                                                               #
482 # If the program is interactive, make it output a short notice like this        #
483 # when it starts in an interactive mode:                                        #
484 #                                                                               #
485 #     Gnomovision version 69, Copyright (C) year  name of author                #
486 #     Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. #
487 #     This is free software, and you are welcome to redistribute it             #
488 #     under certain conditions; type `show c' for details.                      #
489 #                                                                               #
490 # The hypothetical commands `show w' and `show c' should show the appropriate   #
491 # parts of the General Public License.  Of course, the commands you use may     #
492 # be called something other than `show w' and `show c'; they could even be      #
493 # mouse-clicks or menu items--whatever suits your program.                      #
494 #                                                                               #
495 # You should also get your employer (if you work as a programmer) or your       #
496 # school, if any, to sign a "copyright disclaimer" for the program, if          #
497 # necessary.  Here is a sample; alter the names:                                #
498 #                                                                               #
499 #   Yoyodyne, Inc., hereby disclaims all copyright interest in the program      #
500 #   `Gnomovision' (which makes passes at compilers) written by James Hacker.    #
501 #                                                                               #
502 #   <signature of Ty Coon>, 1 April 1989                                        #
503 #   Ty Coon, President of Vice                                                  #
504 #                                                                               #
505 # This General Public License does not permit incorporating your program into   #
506 # proprietary programs.  If your program is a subroutine library, you may       #
507 # consider it more useful to permit linking proprietary applications with the   #
508 # library.  If this is what you want to do, use the GNU Library General         #
509 # Public License instead of this License.                                       #
510 #################################################################################