summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authortsarna <tsarna>1998-08-26 16:50:48 +0000
committertsarna <tsarna>1998-08-26 16:50:48 +0000
commit14d8606f3f1abf64d87cf7427d4d9bd50c659258 (patch)
tree5092d7557b175153b49374dbff6ec2e97fa94698 /misc
parentbf6c5b739e90691a75b928e8717aee8144fe7f90 (diff)
downloadpkgsrc-14d8606f3f1abf64d87cf7427d4d9bd50c659258.tar.gz
Automatically append HOMEPAge to DESCR files, and remove homepage URLs
from individual DESCR files that had them.
Diffstat (limited to 'misc')
-rw-r--r--misc/dotfile/pkg/DESCR4
-rw-r--r--misc/figlet/pkg/DESCR3
-rw-r--r--misc/most/pkg/DESCR4
-rw-r--r--misc/p5-Business-CreditCard/pkg/DESCR49
4 files changed, 22 insertions, 38 deletions
diff --git a/misc/dotfile/pkg/DESCR b/misc/dotfile/pkg/DESCR
index d5cd756a9bc..c0101b2d484 100644
--- a/misc/dotfile/pkg/DESCR
+++ b/misc/dotfile/pkg/DESCR
@@ -8,7 +8,3 @@ provided to aid in creating new modules.
- Oly
oly@world.std.com
-
-
-Check out dotfile's useful homepage:
-http://www.imada.ou.dk/~blackie/dotfile/
diff --git a/misc/figlet/pkg/DESCR b/misc/figlet/pkg/DESCR
index ae0fd7cedad..be63d5dcb13 100644
--- a/misc/figlet/pkg/DESCR
+++ b/misc/figlet/pkg/DESCR
@@ -12,7 +12,4 @@ Figlet can print in a variety of fonts, both left-to-right and right-to-left.
Figlet comes with several fonts. Also, many other fonts are avaiable,
including Hebrew, Cyrillic (Russian), and Greek.
-There is also a "Figlet Home Page" on the Worldwide Web. The URL is
-http://www.math.uiuc.edu/~chappell/figlet
-
-- David (obrien@cs.ucdavis.edu)
diff --git a/misc/most/pkg/DESCR b/misc/most/pkg/DESCR
index bb4cbc93acb..90ea523a77d 100644
--- a/misc/most/pkg/DESCR
+++ b/misc/most/pkg/DESCR
@@ -9,7 +9,3 @@ binary files as well as files with arbitrary ascii characters. As an
option, autosensing of binary files can be disabled (via the -k
option), thereby allowing one to browse files encoded in a different
language (Japanese, Korean, Chinese, etc).
-
- web site: http://space.mit.edu/%7Edavis/most.html
- ftp site: ftp://space.mit.edu/pub/davis/most
-maintainer: Richard Hwang <rhwang@bigpanda.com>
diff --git a/misc/p5-Business-CreditCard/pkg/DESCR b/misc/p5-Business-CreditCard/pkg/DESCR
index dfcea144d3d..3b37a222d18 100644
--- a/misc/p5-Business-CreditCard/pkg/DESCR
+++ b/misc/p5-Business-CreditCard/pkg/DESCR
@@ -1,32 +1,27 @@
- These subroutines tell you whether a credit card number is
- self-consistent -- whether the last digit of the number is
- a valid checksum for the preceding digits.
+These subroutines tell you whether a credit card number is
+self-consistent -- whether the last digit of the number is a valid
+checksum for the preceding digits.
- The validate() subroutine returns 1 if the card number
- provided passes the checksum test, and 0 otherwise.
+The validate() subroutine returns 1 if the card number provided passes
+the checksum test, and 0 otherwise.
- The cardtype() subroutine returns a string containing the
- type of card: "MasterCard", "VISA", and so on. My list is
- not complete; I welcome additions.
+The cardtype() subroutine returns a string containing the type of card:
+"MasterCard", "VISA", and so on. My list is not complete; I welcome
+additions.
- The generate_last_digit() subroutine computes and returns
- the last digit of the card given the preceding digits.
- With a 16-digit card, you provide the first 15 digits; the
- subroutine returns the sixteenth.
+The generate_last_digit() subroutine computes and returns the last digit
+of the card given the preceding digits. With a 16-digit card, you
+provide the first 15 digits; the subroutine returns the sixteenth.
- This module does not tell you whether the number is on an
- actual card, only whether it might conceivably be on a
- real card. To verify whether a card is real, or whether
- it's been stolen, or what its balance is, you need a
- Merchant ID, which gives you access to credit card
- databases. The Perl Journal
- (http://work.media.mit.edu/tpj) has a Merchant ID so that
- I can accept MasterCard and VISA payments; it comes with
- the little pushbutton/slide-your-card-through device
- you've seen in restaurants and stores. That device
- calculates the checksum for you, so I don't actually use
- this module.
+This module does not tell you whether the number is on an actual card,
+only whether it might conceivably be on a real card. To verify whether
+a card is real, or whether it's been stolen, or what its balance is, you
+need a Merchant ID, which gives you access to credit card databases.
+The Perl Journal (http://work.media.mit.edu/tpj) has a Merchant ID so
+that I can accept MasterCard and VISA payments; it comes with the little
+pushbutton/slide-your-card-through device you've seen in restaurants and
+stores. That device calculates the checksum for you, so I don't
+actually use this module.
- These subroutines will also work if you provide the
- arguments as numbers instead of strings, e.g.
- validate(5276440065421319).
+These subroutines will also work if you provide the arguments as numbers
+instead of strings, e.g. validate(5276440065421319).