Path to this page:
./
wip/rpm5,
The RPM Package Manager
Branch: CURRENT,
Version: 5.4.14,
Package name: rpm5-5.4.14,
Maintainer: pkgsrc-usersThis is the Red Hat Package Manager. It is used to manipulate Red Hat
packages, much in the same way as the pkg_* tools are used in FreeBSD
and NetBSD. rpm's come in their own format, and are typically used in
the Linux community for binary package administration.
DEINSTALL [+/-]# $NetBSD: DEINSTALL,v 1.1 2014/12/09 22:47:31 krytarowski Exp $
RPMDIR="@RPMDIR@"
case ${STAGE} in
POST-DEINSTALL)
for db in ${RPMDIR}/*.rpm; do
if [ ${RPMDIR}/.pre-timestamp -ot $db ] && \
[ ${RPMDIR}/.post-timestamp -nt $db ]; then
${RM} -f $db
fi
done
${RM} -f ${RPMDIR}/.pre-timestamp
${RM} -f ${RPMDIR}/.post-timestamp
${RMDIR} -p ${RPMDIR} 2>/dev/null || ${TRUE}
if [ -d ${RPMDIR} ]; then
${CAT} << EOF
===========================================================================
If you won't be using ${PKGNAME} any longer, you may want to remove:
${RPMDIR}
where the RPM database is stored.
Caution: you will lose any data ${PKGNAME} has about any installed
packages!
===========================================================================
EOF
fi
;;
esac
Required to run:[
databases/db4] [
lang/perl5] [
shells/bash] [
security/beecrypt] [
devel/nspr] [
devel/gettext-tools] [
devel/popt] [
devel/pcre] [
devel/nss]
Required to build:[
pkgtools/cwrappers]
Master sites:
RMD160: b78030d7bded3f2277db101489c25353d604729f
Filesize: 13646.838 KB
Version history: (Expand)
- (2024-09-19) Package has been reborn
- (2024-09-15) Package deleted from pkgsrc
- (2023-02-13) Package has been reborn
- (2020-09-29) Package has been reborn
- (2020-09-29) Package deleted from pkgsrc
- (2020-01-02) Package has been reborn
CVS history: (Expand)
2014-12-09 23:51:38 by Kamil Rytarowski | Files touched by this commit (1) |
Log message:
Add note as TODO:
This package was started, but never finished.
I'm offering it to pkgsrc-wip as it is,
everybody is free to pick-up it and resume packaging.
|
2014-12-09 23:47:32 by Kamil Rytarowski | Files touched by this commit (11) |
Log message:
RPM is a powerful and mature command-line driven package management system
capable of installing, uninstalling, verifying, querying, and updating Unix
software packages. Each software package consists of an archive of files
along with information about the package like its version, a description,
and the like. There is also a library API, permitting advanced developers
to manage such transactions from programming languages such as C, Perl or
Python.
|