mirror of
https://github.com/Project-OSS-Revival/alien.git
synced 2026-04-24 14:00:17 +00:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2ea474e531 | ||
|
|
f81986d554 | ||
|
|
0f3f0ab92c | ||
|
|
a712ba401f |
@@ -446,7 +446,8 @@ sub do {
|
|||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
# parent
|
# parent
|
||||||
return (waitpid($pid, 0) > 0);
|
my $ret=(waitpid($pid, 0) > 0);
|
||||||
|
return ! $ret || ! $?;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -646,10 +646,10 @@ Returns the date, in rfc822 format.
|
|||||||
sub date {
|
sub date {
|
||||||
my $this=shift;
|
my $this=shift;
|
||||||
|
|
||||||
my $date=$this->runpipe(1, "822-date");
|
my $date=$this->runpipe(1, "date -R");
|
||||||
chomp $date;
|
chomp $date;
|
||||||
if (!$date) {
|
if (!$date) {
|
||||||
die "822-date did not return a valid result. You probably need to install the dpkg-dev debian package";
|
die "date -R did not return a valid result.";
|
||||||
}
|
}
|
||||||
|
|
||||||
return $date;
|
return $date;
|
||||||
|
|||||||
16
README
16
README
@@ -3,14 +3,7 @@ Please read alien's man page for general documentation.
|
|||||||
Getting alien:
|
Getting alien:
|
||||||
|
|
||||||
The newest versions of alien are available at the alien home page; drop by
|
The newest versions of alien are available at the alien home page; drop by
|
||||||
http://kitenet.net/programs/alien/
|
http://kitenet.net/~joey/code/alien/
|
||||||
|
|
||||||
On metalab and its mirrors, alien is located in the
|
|
||||||
pub/Linux/utils/scripts/ directory.
|
|
||||||
|
|
||||||
You can also get rpm or deb packages of alien:
|
|
||||||
deb: ftp://ftp.debian.org/debian/unstable/binary-all/admin/alien_*.deb
|
|
||||||
rpm: ftp://ftp.redhat.com/pub/contrib/noarch/alien-*.rpm
|
|
||||||
|
|
||||||
Other things you'll need:
|
Other things you'll need:
|
||||||
|
|
||||||
@@ -27,8 +20,7 @@ Other things you'll need:
|
|||||||
dpkg, dpkg-dev, and debhelper (version 3 or above) packages, which are
|
dpkg, dpkg-dev, and debhelper (version 3 or above) packages, which are
|
||||||
available on http://packages.debian.org
|
available on http://packages.debian.org
|
||||||
|
|
||||||
To convert to/from stampede packages, you will need bzip2, get it from
|
To convert to/from stampede packages, you will need bzip2.
|
||||||
http://sourceware.cygnus.com/bzip2/index.html
|
|
||||||
|
|
||||||
Attention, Slackware, Red Hat, and Stampede users: Bruce S. Babcock
|
Attention, Slackware, Red Hat, and Stampede users: Bruce S. Babcock
|
||||||
<babcock@math.psu.edu> has put together an "alien-extra"
|
<babcock@math.psu.edu> has put together an "alien-extra"
|
||||||
@@ -43,10 +35,6 @@ Other things you'll need:
|
|||||||
The Stampede version is at
|
The Stampede version is at
|
||||||
ftp://ykbsb2.yk.psu.edu/pub/alien/alien-extra.slp
|
ftp://ykbsb2.yk.psu.edu/pub/alien/alien-extra.slp
|
||||||
|
|
||||||
Solaris users can find pkg's of much of the above software,
|
|
||||||
at http://mah.everybody.org/hacks/os/solaris/ , thanks to Mark
|
|
||||||
A. Hershberger <mah@everybody.org>.
|
|
||||||
|
|
||||||
Note:
|
Note:
|
||||||
|
|
||||||
Alien is really designed to be used to convert from alien file formats to
|
Alien is really designed to be used to convert from alien file formats to
|
||||||
|
|||||||
14
debian/changelog
vendored
14
debian/changelog
vendored
@@ -1,3 +1,17 @@
|
|||||||
|
alien (8.67) unstable; urgency=low
|
||||||
|
|
||||||
|
* Update the url to the web page, and remove several other broken urls from
|
||||||
|
the README.
|
||||||
|
* Correct a bug that caused alien to ignore failing commands. Closes: #424858
|
||||||
|
|
||||||
|
-- Joey Hess <joeyh@debian.org> Thu, 17 May 2007 13:34:36 -0400
|
||||||
|
|
||||||
|
alien (8.66) unstable; urgency=low
|
||||||
|
|
||||||
|
* Use date -R as 822-date will soon be deprecated.
|
||||||
|
|
||||||
|
-- Joey Hess <joeyh@debian.org> Thu, 22 Mar 2007 17:45:24 -0400
|
||||||
|
|
||||||
alien (8.65) unstable; urgency=low
|
alien (8.65) unstable; urgency=low
|
||||||
|
|
||||||
* Fix alien's own spec file, s/Copyright/License/.
|
* Fix alien's own spec file, s/Copyright/License/.
|
||||||
|
|||||||
2
debian/copyright
vendored
2
debian/copyright
vendored
@@ -12,7 +12,7 @@ This program is now maintained by Joey Hess <joeyh@debian.org>.
|
|||||||
Copyright 1996, 1997 Christoph Lameter
|
Copyright 1996, 1997 Christoph Lameter
|
||||||
Portions copyright 1997 Randolph Chung
|
Portions copyright 1997 Randolph Chung
|
||||||
Portions copyright 2001 Mark A. Hershberger
|
Portions copyright 2001 Mark A. Hershberger
|
||||||
Copyright 1997-2005 Joey Hess
|
Copyright 1997-2007 Joey Hess
|
||||||
|
|
||||||
License:
|
License:
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user