diff options
author | Alex Legler <a3li@gentoo.org> | 2010-01-08 17:51:43 +0000 |
---|---|---|
committer | Alex Legler <a3li@gentoo.org> | 2010-01-08 17:51:43 +0000 |
commit | 340acb0a032cebd52e1c6504c6910de44608d2e7 (patch) | |
tree | 4532e4f11cf69eca9c48095bb39fbb3af5733013 /app-admin | |
parent | Non-maintainer commit: Removing vulnerable ebuild, bug 300208. (diff) | |
download | historical-340acb0a032cebd52e1c6504c6910de44608d2e7.tar.gz historical-340acb0a032cebd52e1c6504c6910de44608d2e7.tar.bz2 historical-340acb0a032cebd52e1c6504c6910de44608d2e7.zip |
Non-maintainer commit: Removing vulnerable ebuilds, bug 300208.
Package-Manager: portage-2.2_rc59/cvs/Linux x86_64
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/usermin/ChangeLog | 8 | ||||
-rw-r--r-- | app-admin/usermin/usermin-1.330.ebuild | 85 | ||||
-rw-r--r-- | app-admin/usermin/usermin-1.400.ebuild | 85 | ||||
-rw-r--r-- | app-admin/usermin/usermin-1.420.ebuild | 85 |
4 files changed, 6 insertions, 257 deletions
diff --git a/app-admin/usermin/ChangeLog b/app-admin/usermin/ChangeLog index 49473363fe0a..12ed21c0874d 100644 --- a/app-admin/usermin/ChangeLog +++ b/app-admin/usermin/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-admin/usermin -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/usermin/ChangeLog,v 1.150 2009/12/09 14:55:25 patrick Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/usermin/ChangeLog,v 1.151 2010/01/08 17:51:43 a3li Exp $ + + 08 Jan 2010; Alex Legler <a3li@gentoo.org> -usermin-1.330.ebuild, + -usermin-1.400.ebuild, -usermin-1.420.ebuild: + Non-maintainer commit: Removing vulnerable ebuilds, bug 300208. *usermin-1.430 (09 Dec 2009) diff --git a/app-admin/usermin/usermin-1.330.ebuild b/app-admin/usermin/usermin-1.330.ebuild deleted file mode 100644 index 6a340869834a..000000000000 --- a/app-admin/usermin/usermin-1.330.ebuild +++ /dev/null @@ -1,85 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/usermin/usermin-1.330.ebuild,v 1.11 2008/04/15 01:37:59 beandog Exp $ - -IUSE="ssl" - -inherit eutils pam - -DESCRIPTION="a web-based user administration interface" -HOMEPAGE="http://www.webmin.com/index6.html" -SRC_URI="mirror://sourceforge/webadmin/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" - -DEPEND="dev-lang/perl" - -RDEPEND="${DEPEND} - sys-process/lsof - ssl? ( dev-perl/Net-SSLeay )" - -# pam? ( dev-perl/Authen-PAM ) - -src_unpack() { - unpack ${A} - - cd "${S}" - - # Point to the correct mysql location - sed -i -e "s:/usr/local/mysql:/usr:g" mysql/config - - epatch "${FILESDIR}"/${PN}-1.080-safestop.patch - epatch "${FILESDIR}"/${PN}-1.150-setup-nocheck.patch -} - -src_install() { - # Change /usr/local/bin/perl references - find . -type f | xargs sed -i -e 's:^#!.*/usr/local/bin/perl:#!/usr/bin/perl:' - - dodir /usr/libexec/usermin - cp -pR * "${D}"/usr/libexec/usermin - - newinitd "${FILESDIR}"/init.d.usermin usermin - - newpamd "${FILESDIR}"/${PN}.pam-include.1 ${PN} - - # Fix ownership - chown -R root:0 "${D}" - - dodir /etc/usermin - dodir /var/log/usermin - - config_dir=${D}/etc/usermin - var_dir=${D}/var/log/usermin - perl=/usr/bin/perl - autoos=1 - port=20000 - login=root - crypt="XXX" - host=`hostname` - use ssl && ssl=1 || ssl=0 - atboot=0 - nostart=1 - nochown=1 - autothird=1 - nouninstall=1 - noperlpath=1 - tempdir="${T}" - export config_dir var_dir perl autoos port login crypt host ssl atboot nostart nochown autothird nouninstall noperlpath tempdir - "${D}"/usr/libexec/usermin/setup.sh > "${T}"/usermin-setup.out 2>&1 || die "Failed to create initial usermin configuration." - - # Fixup the config files to use their real locations - sed -i -e "s:^pidfile=.*$:pidfile=/var/run/usermin.pid:" "${D}"/etc/usermin/miniserv.conf - find "${D}"/etc/usermin -type f | xargs sed -i -e "s:${D}:/:g" - - # Cleanup from the config script - rm -rf "${D}"/var/log/usermin - keepdir /var/log/usermin/ -} - -pkg_postinst() { - elog "To make usermin start at boot time, run: 'rc-update add usermin default'." - elog "Point your web browser to https://localhost:20000 to use usermin." -} diff --git a/app-admin/usermin/usermin-1.400.ebuild b/app-admin/usermin/usermin-1.400.ebuild deleted file mode 100644 index b0fd4859bba9..000000000000 --- a/app-admin/usermin/usermin-1.400.ebuild +++ /dev/null @@ -1,85 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/usermin/usermin-1.400.ebuild,v 1.1 2009/04/23 16:57:34 patrick Exp $ - -IUSE="ssl" - -inherit eutils pam - -DESCRIPTION="a web-based user administration interface" -HOMEPAGE="http://www.webmin.com/index6.html" -SRC_URI="mirror://sourceforge/webadmin/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" - -DEPEND="dev-lang/perl" - -RDEPEND="${DEPEND} - sys-process/lsof - ssl? ( dev-perl/Net-SSLeay )" - -# pam? ( dev-perl/Authen-PAM ) - -src_unpack() { - unpack ${A} - - cd "${S}" - - # Point to the correct mysql location - sed -i -e "s:/usr/local/mysql:/usr:g" mysql/config - - epatch "${FILESDIR}"/${PN}-1.080-safestop.patch - epatch "${FILESDIR}"/${PN}-1.150-setup-nocheck.patch -} - -src_install() { - # Change /usr/local/bin/perl references - find . -type f | xargs sed -i -e 's:^#!.*/usr/local/bin/perl:#!/usr/bin/perl:' - - dodir /usr/libexec/usermin - cp -pR * "${D}"/usr/libexec/usermin - - newinitd "${FILESDIR}"/init.d.usermin usermin - - newpamd "${FILESDIR}"/${PN}.pam-include.1 ${PN} - - # Fix ownership - chown -R root:0 "${D}" - - dodir /etc/usermin - dodir /var/log/usermin - - config_dir=${D}/etc/usermin - var_dir=${D}/var/log/usermin - perl=/usr/bin/perl - autoos=1 - port=20000 - login=root - crypt="XXX" - host=`hostname` - use ssl && ssl=1 || ssl=0 - atboot=0 - nostart=1 - nochown=1 - autothird=1 - nouninstall=1 - noperlpath=1 - tempdir="${T}" - export config_dir var_dir perl autoos port login crypt host ssl atboot nostart nochown autothird nouninstall noperlpath tempdir - "${D}"/usr/libexec/usermin/setup.sh > "${T}"/usermin-setup.out 2>&1 || die "Failed to create initial usermin configuration." - - # Fixup the config files to use their real locations - sed -i -e "s:^pidfile=.*$:pidfile=/var/run/usermin.pid:" "${D}"/etc/usermin/miniserv.conf - find "${D}"/etc/usermin -type f | xargs sed -i -e "s:${D}:/:g" - - # Cleanup from the config script - rm -rf "${D}"/var/log/usermin - keepdir /var/log/usermin/ -} - -pkg_postinst() { - elog "To make usermin start at boot time, run: 'rc-update add usermin default'." - elog "Point your web browser to https://localhost:20000 to use usermin." -} diff --git a/app-admin/usermin/usermin-1.420.ebuild b/app-admin/usermin/usermin-1.420.ebuild deleted file mode 100644 index cf82b76f721f..000000000000 --- a/app-admin/usermin/usermin-1.420.ebuild +++ /dev/null @@ -1,85 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/usermin/usermin-1.420.ebuild,v 1.1 2009/09/24 20:41:36 patrick Exp $ - -IUSE="ssl" - -inherit eutils pam - -DESCRIPTION="a web-based user administration interface" -HOMEPAGE="http://www.webmin.com/index6.html" -SRC_URI="mirror://sourceforge/webadmin/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" - -DEPEND="dev-lang/perl" - -RDEPEND="${DEPEND} - sys-process/lsof - ssl? ( dev-perl/Net-SSLeay )" - -# pam? ( dev-perl/Authen-PAM ) - -src_unpack() { - unpack ${A} - - cd "${S}" - - # Point to the correct mysql location - sed -i -e "s:/usr/local/mysql:/usr:g" mysql/config - - epatch "${FILESDIR}"/${PN}-1.080-safestop.patch - epatch "${FILESDIR}"/${PN}-1.150-setup-nocheck.patch -} - -src_install() { - # Change /usr/local/bin/perl references - find . -type f | xargs sed -i -e 's:^#!.*/usr/local/bin/perl:#!/usr/bin/perl:' - - dodir /usr/libexec/usermin - cp -pR * "${D}"/usr/libexec/usermin - - newinitd "${FILESDIR}"/init.d.usermin usermin - - newpamd "${FILESDIR}"/${PN}.pam-include.1 ${PN} - - # Fix ownership - chown -R root:0 "${D}" - - dodir /etc/usermin - dodir /var/log/usermin - - config_dir=${D}/etc/usermin - var_dir=${D}/var/log/usermin - perl=/usr/bin/perl - autoos=1 - port=20000 - login=root - crypt="XXX" - host=`hostname` - use ssl && ssl=1 || ssl=0 - atboot=0 - nostart=1 - nochown=1 - autothird=1 - nouninstall=1 - noperlpath=1 - tempdir="${T}" - export config_dir var_dir perl autoos port login crypt host ssl atboot nostart nochown autothird nouninstall noperlpath tempdir - "${D}"/usr/libexec/usermin/setup.sh > "${T}"/usermin-setup.out 2>&1 || die "Failed to create initial usermin configuration." - - # Fixup the config files to use their real locations - sed -i -e "s:^pidfile=.*$:pidfile=/var/run/usermin.pid:" "${D}"/etc/usermin/miniserv.conf - find "${D}"/etc/usermin -type f | xargs sed -i -e "s:${D}:/:g" - - # Cleanup from the config script - rm -rf "${D}"/var/log/usermin - keepdir /var/log/usermin/ -} - -pkg_postinst() { - elog "To make usermin start at boot time, run: 'rc-update add usermin default'." - elog "Point your web browser to https://localhost:20000 to use usermin." -} |