1999-11-26 20:31:58 +00:00
|
|
|
#! /usr/bin/perl
|
|
|
|
#
|
|
|
|
# Copyright 1998 Bruce A. Mah
|
|
|
|
#
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions
|
|
|
|
# are met:
|
|
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in the
|
|
|
|
# documentation and/or other materials provided with the distribution.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
# IN NO EVENT SHALL THE DEVELOPERS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
#
|
|
|
|
# pkg_version.pl
|
|
|
|
#
|
|
|
|
# A package version-checking utility for FreeBSD.
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
2000-10-25 17:10:20 +00:00
|
|
|
use Cwd;
|
1999-11-26 20:31:58 +00:00
|
|
|
use Getopt::Std;
|
|
|
|
|
|
|
|
#
|
|
|
|
# Configuration global variables
|
|
|
|
#
|
|
|
|
$Version = '0.1';
|
|
|
|
$CurrentPackagesCommand = '/usr/sbin/pkg_info -aI';
|
|
|
|
$CatProgram = "cat ";
|
|
|
|
$FetchProgram = "fetch -o - ";
|
2000-10-25 17:10:20 +00:00
|
|
|
$OriginCommand = '/usr/sbin/pkg_info -qo';
|
2000-10-26 21:38:44 +00:00
|
|
|
$GetPkgNameCommand = 'make -V PKGNAME';
|
1999-11-26 20:31:58 +00:00
|
|
|
|
2000-09-11 18:25:12 +00:00
|
|
|
#$IndexFile = "ftp://ftp.freebsd.org/pub/FreeBSD/branches/-current/ports/INDEX";
|
2000-10-25 17:10:20 +00:00
|
|
|
$PortsDirectory = '/usr/ports';
|
2000-09-11 18:25:12 +00:00
|
|
|
$IndexFile = '/usr/ports/INDEX';
|
1999-11-26 20:31:58 +00:00
|
|
|
$ShowCommandsFlag = 0;
|
|
|
|
$DebugFlag = 0;
|
|
|
|
$VerboseFlag = 0;
|
|
|
|
$CommentChar = "#";
|
1999-12-03 06:08:11 +00:00
|
|
|
$LimitFlag = "";
|
2000-10-20 06:16:18 +00:00
|
|
|
$PreventFlag = "";
|
1999-11-26 20:31:58 +00:00
|
|
|
|
|
|
|
#
|
2000-09-09 21:28:06 +00:00
|
|
|
# CompareNumbers
|
1999-11-26 20:31:58 +00:00
|
|
|
#
|
|
|
|
# Try to figure out the relationship between two program version numbers.
|
|
|
|
# Detecting equality is easy, but determining order is a little difficult.
|
|
|
|
# This function returns -1, 0, or 1, in the same manner as <=> or cmp.
|
|
|
|
#
|
2000-09-09 21:28:06 +00:00
|
|
|
sub CompareNumbers {
|
1999-11-26 20:31:58 +00:00
|
|
|
local($v1, $v2);
|
|
|
|
$v1 = $_[0];
|
|
|
|
$v2 = $_[1];
|
|
|
|
|
|
|
|
# Short-cut in case of equality
|
|
|
|
if ($v1 eq $v2) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
# Loop over different components (the parts separated by dots).
|
|
|
|
# If any component differs, we have the basis for an inequality.
|
|
|
|
while (1) {
|
|
|
|
($p1, $v1) = split(/\./, $v1, 2);
|
|
|
|
($p2, $v2) = split(/\./, $v2, 2);
|
|
|
|
|
|
|
|
# If we\'re out of components, they\'re equal (this probably won\'t
|
|
|
|
# happen, since the short-cut case above should get this).
|
|
|
|
if (($p1 eq "") && ($p2 eq "")) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
# Check for numeric inequality. We assume here that (for example)
|
|
|
|
# 3.09 < 3.10.
|
|
|
|
elsif ($p1 != $p2) {
|
|
|
|
return $p1 <=> $p2;
|
|
|
|
}
|
|
|
|
# Check for string inequality, given numeric equality. This
|
|
|
|
# handles version numbers of the form 3.4j < 3.4k.
|
|
|
|
elsif ($p1 ne $p2) {
|
|
|
|
return $p1 cmp $p2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2000-09-09 21:28:06 +00:00
|
|
|
#
|
|
|
|
# CompareVersions
|
|
|
|
#
|
|
|
|
# Try to figure out the relationship between two program "full
|
|
|
|
# versions", which is defined as the
|
|
|
|
# ${PORTVERSION}[_${PORTREVISION}][,${PORTEPOCH}]
|
|
|
|
# part of a package's name.
|
|
|
|
#
|
|
|
|
# Key points: ${PORTEPOCH} supercedes ${PORTVERSION}
|
|
|
|
# supercedes ${PORTREVISION}. See the commit log for revision
|
|
|
|
# 1.349 of ports/Mk/bsd.port.mk for more information.
|
|
|
|
#
|
|
|
|
sub CompareVersions {
|
2000-10-26 21:38:44 +00:00
|
|
|
local($fv1, $fv2, $v1, $v2, $r1, $r2, $e1, $e2, $rc);
|
2000-09-09 21:28:06 +00:00
|
|
|
|
|
|
|
$fv1 = $_[0];
|
|
|
|
$fv2 = $_[1];
|
|
|
|
|
|
|
|
# Shortcut check for equality before invoking the parsing
|
|
|
|
# routines.
|
|
|
|
if ($fv1 eq $fv2) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
($v1, $r1, $e1) = &GetVersionComponents($fv1);
|
|
|
|
($v2, $r2, $e2) = &GetVersionComponents($fv2);
|
|
|
|
|
|
|
|
# Check epoch, port version, and port revision, in that
|
|
|
|
# order.
|
|
|
|
$rc = &CompareNumbers($e1, $e2);
|
|
|
|
if ($rc == 0) {
|
|
|
|
$rc = &CompareNumbers($v1, $v2);
|
|
|
|
if ($rc == 0) {
|
|
|
|
$rc = &CompareNumbers($r1, $r2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $rc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# GetVersionComponents
|
|
|
|
#
|
|
|
|
# Parse out the version number, revision number, and epoch number
|
|
|
|
# of a port's version string and return them as a three-element array.
|
|
|
|
#
|
|
|
|
# Syntax is: ${PORTVERSION}[_${PORTREVISION}][,${PORTEPOCH}]
|
|
|
|
#
|
|
|
|
sub GetVersionComponents {
|
|
|
|
local ($fullversion, $version, $revision, $epoch);
|
|
|
|
|
|
|
|
$fullversion = $_[0];
|
|
|
|
|
|
|
|
$fullversion =~ /([^_,]+)/;
|
|
|
|
$version = $1;
|
|
|
|
|
|
|
|
if ($fullversion =~ /_([^_,]+)/) {
|
|
|
|
$revision = $1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($fullversion =~ /,([^_,]+)/) {
|
|
|
|
$epoch = $1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return($version, $revision, $epoch);
|
|
|
|
}
|
|
|
|
|
1999-11-26 20:31:58 +00:00
|
|
|
#
|
|
|
|
# GetNameAndVersion
|
|
|
|
#
|
|
|
|
# Get the name and version number of a package. Returns a two element
|
2000-09-09 21:28:06 +00:00
|
|
|
# array, first element is name, second element is full version string.,
|
1999-11-26 20:31:58 +00:00
|
|
|
#
|
|
|
|
sub GetNameAndVersion {
|
2000-09-09 21:28:06 +00:00
|
|
|
local($fullname, $name, $fullversion);
|
|
|
|
$fullname = $_[0];
|
1999-11-26 20:31:58 +00:00
|
|
|
|
2000-09-09 21:28:06 +00:00
|
|
|
# If no hyphens then no version numbers
|
|
|
|
return ($fullname, "", "", "", "") if $fullname !~ /-/;
|
1999-11-26 20:31:58 +00:00
|
|
|
|
2000-09-09 21:28:06 +00:00
|
|
|
# Match (and group) everything after hyphen(s). Because the
|
1999-11-26 20:31:58 +00:00
|
|
|
# regexp is 'greedy', the first .* will try and match everything up
|
|
|
|
# to (but not including) the last hyphen
|
2000-09-09 21:28:06 +00:00
|
|
|
$fullname =~ /(.+)-(.+)/;
|
|
|
|
$name = $1;
|
|
|
|
$fullversion = $2;
|
|
|
|
|
|
|
|
return ($name, $fullversion);
|
1999-11-26 20:31:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# PrintHelp
|
|
|
|
#
|
|
|
|
# Print usage information
|
|
|
|
#
|
|
|
|
sub PrintHelp {
|
|
|
|
print <<"EOF"
|
|
|
|
pkg_version $Version
|
2000-08-23 17:10:34 +00:00
|
|
|
Bruce A. Mah <bmah\@freebsd.org>
|
1999-11-26 20:31:58 +00:00
|
|
|
|
|
|
|
Usage: pkg_version [-c] [-d debug] [-h] [-v] [index]
|
|
|
|
-c Show commands to update installed packages
|
|
|
|
-d debug Debugging output (debug controls level of output)
|
|
|
|
-h Help (this message)
|
2000-10-20 06:16:18 +00:00
|
|
|
-l limchar Limit output to status flags that match
|
2000-10-25 17:10:20 +00:00
|
|
|
-L limchar Limit output to status flags that DON\'T match
|
1999-11-26 20:31:58 +00:00
|
|
|
-v Verbose output
|
|
|
|
index URL or filename of index file
|
|
|
|
(Default is $IndexFile)
|
|
|
|
EOF
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Parse command-line arguments, deal with them
|
|
|
|
#
|
2000-10-20 06:16:18 +00:00
|
|
|
if (!getopts('cdhl:L:v') || ($opt_h)) {
|
1999-11-26 20:31:58 +00:00
|
|
|
&PrintHelp();
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
if ($opt_c) {
|
|
|
|
$ShowCommandsFlag = $opt_c;
|
2000-10-20 06:00:28 +00:00
|
|
|
$LimitFlag = "<?"; # note that if the user specifies -l, we
|
|
|
|
# deal with this *after* setting a default
|
|
|
|
# for $LimitFlag
|
1999-11-26 20:31:58 +00:00
|
|
|
}
|
|
|
|
if ($opt_d) {
|
|
|
|
$DebugFlag = $opt_d;
|
|
|
|
}
|
1999-12-03 06:08:11 +00:00
|
|
|
if ($opt_l) {
|
|
|
|
$LimitFlag = $opt_l;
|
|
|
|
}
|
2000-10-20 06:16:18 +00:00
|
|
|
if ($opt_L) {
|
|
|
|
$PreventFlag = $opt_L;
|
|
|
|
}
|
1999-11-26 20:31:58 +00:00
|
|
|
if ($opt_v) {
|
|
|
|
$VerboseFlag = 1;
|
|
|
|
}
|
|
|
|
if ($#ARGV >= 0) {
|
|
|
|
$IndexFile = $ARGV[0];
|
|
|
|
}
|
|
|
|
|
2000-09-09 21:45:19 +00:00
|
|
|
# Determine what command to use to retrieve the index file.
|
|
|
|
if ($IndexFile =~ m-^((http|ftp)://|file:/)-) {
|
1999-11-26 20:31:58 +00:00
|
|
|
$IndexPackagesCommand = $FetchProgram . $IndexFile;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$IndexPackagesCommand = $CatProgram . $IndexFile;
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
2000-10-25 17:10:20 +00:00
|
|
|
# Get the current list of installed packages
|
1999-11-26 20:31:58 +00:00
|
|
|
#
|
|
|
|
if ($DebugFlag) {
|
|
|
|
print STDERR "$CurrentPackagesCommand\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
open CURRENT, "$CurrentPackagesCommand|";
|
|
|
|
while (<CURRENT>) {
|
|
|
|
($packageString, $rest) = split;
|
2000-09-09 21:28:06 +00:00
|
|
|
|
|
|
|
($packageName, $packageFullversion) = &GetNameAndVersion($packageString);
|
2000-10-25 17:10:20 +00:00
|
|
|
$currentPackages{$packageString}{'name'} = $packageName;
|
|
|
|
$currentPackages{$packageString}{'fullversion'} = $packageFullversion;
|
1999-11-26 20:31:58 +00:00
|
|
|
}
|
|
|
|
close CURRENT;
|
|
|
|
|
2000-10-25 17:10:20 +00:00
|
|
|
#
|
|
|
|
# Iterate over installed packages, get origin directory (if it
|
|
|
|
# exists) and PORTVERSION
|
|
|
|
#
|
|
|
|
$dir = cwd();
|
|
|
|
foreach $packageString (sort keys %currentPackages) {
|
|
|
|
|
|
|
|
open ORIGIN, "$OriginCommand $packageString|";
|
|
|
|
$origin = <ORIGIN>;
|
|
|
|
close ORIGIN;
|
|
|
|
|
|
|
|
# If there is an origin variable for this package, then store it.
|
|
|
|
if ($origin ne "") {
|
|
|
|
chomp $origin;
|
|
|
|
|
|
|
|
# Try to get the version out of the makefile.
|
|
|
|
# The chdir needs to be successful or our make -V invocation
|
|
|
|
# will fail.
|
|
|
|
chdir "$PortsDirectory/$origin" or next;
|
|
|
|
|
2000-10-26 21:38:44 +00:00
|
|
|
open PKGNAME, "$GetPkgNameCommand|";
|
2000-10-26 21:50:41 +00:00
|
|
|
$pkgname = <PKGNAME>;
|
2000-10-26 21:38:44 +00:00
|
|
|
close PKGNAME;
|
|
|
|
|
2000-10-26 21:50:41 +00:00
|
|
|
if ($pkgname ne "") {
|
|
|
|
chomp $pkgname;
|
2000-10-25 17:10:20 +00:00
|
|
|
|
2000-10-26 21:50:41 +00:00
|
|
|
$pkgname =~ /(.+)-(.+)/;
|
|
|
|
$portversion = $2;
|
|
|
|
|
2000-10-25 17:10:20 +00:00
|
|
|
$currentPackages{$packageString}{'origin'} = $origin;
|
|
|
|
$currentPackages{$packageString}{'portversion'} = $portversion;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
chdir "$dir";
|
|
|
|
|
|
|
|
#
|
|
|
|
# Slurp in the index file
|
|
|
|
#
|
1999-11-26 20:31:58 +00:00
|
|
|
if ($DebugFlag) {
|
|
|
|
print STDERR "$IndexPackagesCommand\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
open INDEX, "$IndexPackagesCommand|";
|
|
|
|
while (<INDEX>) {
|
|
|
|
($packageString, $packagePath, $rest) = split(/\|/);
|
2000-09-09 21:28:06 +00:00
|
|
|
|
|
|
|
($packageName, $packageFullversion) = &GetNameAndVersion($packageString);
|
1999-11-26 20:31:58 +00:00
|
|
|
$indexPackages{$packageName}{'name'} = $packageName;
|
|
|
|
$indexPackages{$packageName}{'path'} = $packagePath;
|
2000-09-09 21:28:06 +00:00
|
|
|
if (defined $indexPackages{$packageName}{'fullversion'}) {
|
|
|
|
$indexPackages{$packageName}{'fullversion'} .= "|" . $packageFullversion;
|
1999-11-26 20:31:58 +00:00
|
|
|
}
|
|
|
|
else {
|
2000-09-09 21:28:06 +00:00
|
|
|
$indexPackages{$packageName}{'fullversion'} = $packageFullversion;
|
1999-11-26 20:31:58 +00:00
|
|
|
}
|
|
|
|
$indexPackages{$packageName}{'refcount'}++;
|
|
|
|
}
|
|
|
|
close INDEX;
|
|
|
|
|
|
|
|
#
|
|
|
|
# Produce reports
|
|
|
|
#
|
2000-09-09 21:28:06 +00:00
|
|
|
# Prior versions of pkg_version used commas (",") as delimiters
|
|
|
|
# when there were multiple versions of a package installed.
|
|
|
|
# The new package version number syntax uses commas as well,
|
|
|
|
# so we've used vertical bars ("|") internally, and convert them
|
|
|
|
# to commas before we output anything so the reports look the
|
|
|
|
# same as they did before.
|
|
|
|
#
|
2000-10-25 17:10:20 +00:00
|
|
|
foreach $packageString (sort keys %currentPackages) {
|
1999-11-26 20:31:58 +00:00
|
|
|
$~ = "STDOUT_VERBOSE" if $VerboseFlag;
|
|
|
|
$~ = "STDOUT_COMMANDS" if $ShowCommandsFlag;
|
|
|
|
|
2000-10-25 17:10:20 +00:00
|
|
|
$packageNameVer = $packageString;
|
|
|
|
$packageName = $currentPackages{$packageString}{'name'};
|
1999-11-26 20:31:58 +00:00
|
|
|
|
2000-10-25 17:10:20 +00:00
|
|
|
$currentVersion = $currentPackages{$packageString}{'fullversion'};
|
1999-11-26 20:31:58 +00:00
|
|
|
|
2000-10-25 17:10:20 +00:00
|
|
|
if (defined $currentPackages{$packageString}{'portversion'}) {
|
|
|
|
$portVersion = $currentPackages{$packageString}{'portversion'};
|
|
|
|
|
|
|
|
$portPath = "$PortsDirectory/$currentPackages{$packageString}{'origin'}";
|
|
|
|
|
|
|
|
# Do the comparison
|
|
|
|
$rc = &CompareVersions($currentVersion, $portVersion);
|
|
|
|
|
|
|
|
if ($rc == 0) {
|
|
|
|
$versionCode = "=";
|
|
|
|
$Comment = "up-to-date with port";
|
|
|
|
}
|
|
|
|
elsif ($rc < 0) {
|
|
|
|
$versionCode = "<";
|
|
|
|
$Comment = "needs updating (port has $portVersion)";
|
|
|
|
}
|
|
|
|
elsif ($rc > 0) {
|
|
|
|
$versionCode = ">";
|
|
|
|
$Comment = "succeeds port (port has $portVersion)";
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$versionCode = "!";
|
|
|
|
$Comment = "Comparison failed";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
elsif (defined $indexPackages{$packageName}{'fullversion'}) {
|
1999-11-26 20:31:58 +00:00
|
|
|
|
2000-10-25 17:10:20 +00:00
|
|
|
$indexVersion = $indexPackages{$packageName}{'fullversion'};
|
1999-11-26 20:31:58 +00:00
|
|
|
$indexRefcount = $indexPackages{$packageName}{'refcount'};
|
|
|
|
|
2000-10-25 17:10:20 +00:00
|
|
|
$portPath = $indexPackages{$packageName}{'path'};
|
|
|
|
|
|
|
|
if ($indexRefcount > 1) {
|
2000-09-15 04:16:20 +00:00
|
|
|
$versionCode = "*";
|
1999-11-26 20:31:58 +00:00
|
|
|
$Comment = "multiple versions (index has $indexVersion)";
|
2000-09-09 21:28:06 +00:00
|
|
|
$Comment =~ s/\|/,/g;
|
1999-11-26 20:31:58 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
|
2000-09-09 21:28:06 +00:00
|
|
|
# Do the comparison
|
|
|
|
$rc =
|
2000-10-25 17:10:20 +00:00
|
|
|
&CompareVersions($currentVersion, $indexVersion);
|
1999-11-26 20:31:58 +00:00
|
|
|
|
|
|
|
if ($rc == 0) {
|
|
|
|
$versionCode = "=";
|
2000-10-25 17:10:20 +00:00
|
|
|
$Comment = "up-to-date with index";
|
1999-11-26 20:31:58 +00:00
|
|
|
}
|
|
|
|
elsif ($rc < 0) {
|
|
|
|
$versionCode = "<";
|
|
|
|
$Comment = "needs updating (index has $indexVersion)"
|
|
|
|
}
|
|
|
|
elsif ($rc > 0) {
|
|
|
|
$versionCode = ">";
|
|
|
|
$Comment = "succeeds index (index has $indexVersion)";
|
|
|
|
}
|
|
|
|
else {
|
2000-09-15 04:16:20 +00:00
|
|
|
$versionCode = "!";
|
1999-11-26 20:31:58 +00:00
|
|
|
$Comment = "Comparison failed";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2000-08-07 22:47:46 +00:00
|
|
|
next if $ShowCommandsFlag;
|
1999-11-26 20:31:58 +00:00
|
|
|
$versionCode = "?";
|
|
|
|
$Comment = "unknown in index";
|
|
|
|
}
|
|
|
|
|
2000-10-20 06:16:18 +00:00
|
|
|
# Having figured out what to print, now determine, based on the
|
|
|
|
# $LimitFlag and $PreventFlag variables, if we should print or not.
|
|
|
|
if ((not $LimitFlag) and (not $PreventFlag)) {
|
1999-12-03 06:08:11 +00:00
|
|
|
write;
|
2000-10-20 06:16:18 +00:00
|
|
|
} elsif ($PreventFlag) {
|
|
|
|
if ($versionCode !~ m/[$PreventFlag]/o) {
|
|
|
|
if (not $LimitFlag) {
|
|
|
|
write;
|
|
|
|
} else {
|
|
|
|
write if $versionCode =~ m/[$LimitFlag]/o;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
# Must mean that there is a LimitFlag
|
|
|
|
write if $versionCode =~ m/[$LimitFlag]/o;
|
1999-12-03 06:08:11 +00:00
|
|
|
}
|
1999-11-26 20:31:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
exit 0;
|
|
|
|
|
|
|
|
#
|
|
|
|
# Formats
|
|
|
|
#
|
|
|
|
# $CommentChar is in the formats because you can't put a literal '#' in
|
|
|
|
# a format specification
|
|
|
|
|
|
|
|
# General report (no output flags)
|
|
|
|
format STDOUT =
|
|
|
|
@<<<<<<<<<<<<<<<<<<<<<<<<< @<
|
|
|
|
$packageName, $versionCode
|
|
|
|
.
|
|
|
|
;
|
|
|
|
|
|
|
|
# Verbose report (-v flag)
|
|
|
|
format STDOUT_VERBOSE =
|
2000-09-09 21:28:06 +00:00
|
|
|
@<<<<<<<<<<<<<<<<<<<<<<<<< @< @<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
|
1999-11-26 20:31:58 +00:00
|
|
|
$packageNameVer, $versionCode, $Comment
|
|
|
|
.
|
|
|
|
;
|
|
|
|
|
|
|
|
# Report that includes commands to update program (-c flag)
|
|
|
|
format STDOUT_COMMANDS =
|
|
|
|
@<
|
|
|
|
$CommentChar
|
|
|
|
@< @<<<<<<<<<<<<<<<<<<<<<<<<
|
|
|
|
$CommentChar, $packageName
|
|
|
|
@< @<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
|
|
|
|
$CommentChar, $Comment
|
|
|
|
@<
|
|
|
|
$CommentChar
|
|
|
|
cd @<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
|
2000-10-25 17:10:20 +00:00
|
|
|
$portPath
|
1999-12-06 03:19:16 +00:00
|
|
|
make && pkg_delete -f @<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
|
1999-11-26 20:31:58 +00:00
|
|
|
$packageNameVer
|
|
|
|
make install
|
|
|
|
|
|
|
|
.
|
|
|
|
;
|