This repository has been archived by the owner on Oct 19, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove old references to easysw.com domain and copyright. Point to me…
… and Github...
- Loading branch information
1 parent
d9cde9a
commit 428565f
Showing
8 changed files
with
29 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -652,7 +652,8 @@ info(void) | |
puts(""); | ||
puts("EPM is free software and comes with ABSOLUTELY NO WARRANTY; for details"); | ||
puts("see the GNU General Public License in the file COPYING or at"); | ||
puts("\"http://www.fsf.org/gpl.html\". Report all problems to \"[email protected]\"."); | ||
puts("\"http://www.fsf.org/gpl.html\". Report all problems to"); | ||
puts("\"https://github.com/michaelrsweet/epm/issues\"."); | ||
puts(""); | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -369,11 +369,12 @@ static void | |
info(void) | ||
{ | ||
puts(EPM_VERSION); | ||
puts("Copyright 1999-2005 by Easy Software Products."); | ||
puts("Copyright 1999-2017 by Michael R Sweet."); | ||
puts(""); | ||
puts("EPM is free software and comes with ABSOLUTELY NO WARRANTY; for details"); | ||
puts("see the GNU General Public License in the file COPYING or at"); | ||
puts("\"http://www.fsf.org/gpl.html\". Report all problems to \"[email protected]\"."); | ||
puts("\"http://www.fsf.org/gpl.html\". Report all problems to"); | ||
puts("\"https://github.com/michaelrsweet/epm/issues\"."); | ||
puts(""); | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -424,11 +424,12 @@ void | |
info(void) | ||
{ | ||
puts(EPM_VERSION); | ||
puts("Copyright 1999-2005 by Easy Software Products."); | ||
puts("Copyright 1999-2017 by Michael R Sweet."); | ||
puts(""); | ||
puts("EPM is free software and comes with ABSOLUTELY NO WARRANTY; for details"); | ||
puts("see the GNU General Public License in the file COPYING or at"); | ||
puts("\"http://www.fsf.org/gpl.html\". Report all problems to \"[email protected]\"."); | ||
puts("\"http://www.fsf.org/gpl.html\". Report all problems to"); | ||
puts("\"https://github.com/michaelrsweet/epm/issues\"."); | ||
puts(""); | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -905,8 +905,7 @@ write_common(dist_t *dist, /* I - Distribution */ | |
fputs("#!/bin/sh\n", fp); | ||
fprintf(fp, "# %s script for %s version %s.\n", title, | ||
dist->product, dist->version); | ||
fputs("# Produced using " EPM_VERSION "; report problems to [email protected].\n", | ||
fp); | ||
fputs("# Produced using " EPM_VERSION " (https://michaelrsweet.github.io/epm).\n", fp); | ||
fprintf(fp, "#%%product %s", dist->product); | ||
if (subpackage) | ||
{ | ||
|