diff options
author | Thomas Anderson <gentoofan23@gentoo.org> | 2008-10-10 20:26:28 +0000 |
---|---|---|
committer | Thomas Anderson <gentoofan23@gentoo.org> | 2008-10-10 20:26:28 +0000 |
commit | 6a6c58d31fdc8007e18ab8ca945bd90bd79c6473 (patch) | |
tree | eeac9d78ba32a2be3ad11c1ec6ce8b9eeeeae0b1 /sys-apps/paludis | |
parent | Run java-config --help to see if the user hasn't run python-updater. (diff) | |
download | gentoo-2-6a6c58d31fdc8007e18ab8ca945bd90bd79c6473.tar.gz gentoo-2-6a6c58d31fdc8007e18ab8ca945bd90bd79c6473.tar.bz2 gentoo-2-6a6c58d31fdc8007e18ab8ca945bd90bd79c6473.zip |
Version bump, fixes security bug #240722
(Portage version: 2.2_rc12/cvs/Linux 2.6.25.9 x86_64)
Diffstat (limited to 'sys-apps/paludis')
-rw-r--r-- | sys-apps/paludis/ChangeLog | 8 | ||||
-rw-r--r-- | sys-apps/paludis/paludis-0.30.3.ebuild | 141 |
2 files changed, 148 insertions, 1 deletions
diff --git a/sys-apps/paludis/ChangeLog b/sys-apps/paludis/ChangeLog index a2e6639a16b2..813586774caf 100644 --- a/sys-apps/paludis/ChangeLog +++ b/sys-apps/paludis/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sys-apps/paludis # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/paludis/ChangeLog,v 1.106 2008/09/25 22:13:59 betelgeuse Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/paludis/ChangeLog,v 1.107 2008/10/10 20:26:28 gentoofan23 Exp $ + +*paludis-0.30.3 (10 Oct 2008) + + 10 Oct 2008; Thomas Anderson <gentoofan23@gentoo.org> + +paludis-0.30.3.ebuild: + Version bump, fixes security bug #240722 *paludis-0.30.1 (25 Sep 2008) diff --git a/sys-apps/paludis/paludis-0.30.3.ebuild b/sys-apps/paludis/paludis-0.30.3.ebuild new file mode 100644 index 000000000000..40bb88f812ec --- /dev/null +++ b/sys-apps/paludis/paludis-0.30.3.ebuild @@ -0,0 +1,141 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/paludis/paludis-0.30.3.ebuild,v 1.1 2008/10/10 20:26:28 gentoofan23 Exp $ + +inherit bash-completion eutils flag-o-matic + +DESCRIPTION="paludis, the other package mangler" +HOMEPAGE="http://paludis.pioto.org/" +SRC_URI="http://paludis.pioto.org/download/${P}.tar.bz2" + +IUSE="doc glsa inquisitio portage pink python qa ruby vim-syntax zsh-completion visibility" +LICENSE="GPL-2 vim-syntax? ( vim )" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" + +COMMON_DEPEND=" + >=app-admin/eselect-1.0.2 + >=app-admin/eselect-news-20071201 + >=app-shells/bash-3 + qa? ( dev-libs/pcre++ >=dev-libs/libxml2-2.6 app-crypt/gnupg ) + inquisitio? ( dev-libs/pcre++ ) + glsa? ( >=dev-libs/libxml2-2.6 ) + ruby? ( >=dev-lang/ruby-1.8 ) + python? ( >=dev-lang/python-2.4 >=dev-libs/boost-1.33.1-r1 )" + +DEPEND="${COMMON_DEPEND} + doc? ( + || ( >=app-doc/doxygen-1.5.3 <=app-doc/doxygen-1.5.1 ) + media-gfx/imagemagick + ) + python? ( doc? ( dev-python/epydoc dev-python/pygments ) ) + ruby? ( doc? ( dev-ruby/syntax dev-ruby/allison ) ) + dev-util/pkgconfig" + +RDEPEND="${COMMON_DEPEND} + net-misc/wget + net-misc/rsync + sys-apps/sandbox" + +# Keep this as a PDEPEND. It avoids issues when Paludis is used as the +# default virtual/portage provider. +PDEPEND=" + vim-syntax? ( >=app-editors/vim-core-7 )" + +PROVIDE="virtual/portage" + +pkg_setup() { + replace-flags -Os -O2 + replace-flags -O3 -O2 + + enewgroup "paludisbuild" + enewuser "paludisbuild" "-1" "-1" "/var/tmp/paludis" "paludisbuild" + + FIXED_MAKEOPTS="" + m=$(free -m | sed -n -e '/cache:/s,^[^[:digit:]]\+[[:digit:]]\+[^[:digit:]]\+\([[:digit:]]\+\).*,\1,p') + j=$(echo "$MAKEOPTS" | sed -n -e 's,.*-j\([[:digit:]]\+\).*,\1,p' ) + if [[ -n "${m}" ]] && [[ -n "${j}" ]] && (( ${j} > 1 )); then + if (( m < j * 512 )) ; then + FIXED_MAKEOPTS="-j$(( m / 512 ))" + [[ ${FIXED_MAKEOPTS} == "-j0" ]] && FIXED_MAKEOPTS="-j1" + ewarn "Your MAKEOPTS -j is too high. To stop the kernel from throwing a hissy fit" + ewarn "when g++ eats all your RAM, we'll use ${FIXED_MAKEOPTS} instead." + fi + fi +} + +src_compile() { + local repositories=`echo default unpackaged | tr -s \ ,` + local clients=`echo default accerso adjutrix contrarius importare \ + $(usev inquisitio ) instruo paludis reconcilio | tr -s \ ,` + local environments=`echo default $(usev portage ) | tr -s \ ,` + econf \ + $(use_enable doc doxygen ) \ + $(use_enable pink ) \ + $(use_enable qa ) \ + $(use_enable ruby ) \ + $(useq ruby && useq doc && echo --enable-ruby-doc ) \ + $(use_enable python ) \ + $(useq python && useq doc && echo --enable-python-doc ) \ + $(use_enable glsa ) \ + $(use_enable vim-syntax vim ) \ + $(use_enable visibility ) \ + --with-vim-install-dir=/usr/share/vim/vimfiles \ + --enable-sandbox \ + --with-repositories=${repositories} \ + --with-clients=${clients} \ + --with-environments=${environments} \ + || die "econf failed" + + emake ${FIXED_MAKEOPTS} || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "install failed" + dodoc AUTHORS README ChangeLog NEWS + + BASH_COMPLETION_NAME="adjutrix" dobashcompletion bash-completion/adjutrix + BASH_COMPLETION_NAME="paludis" dobashcompletion bash-completion/paludis + BASH_COMPLETION_NAME="accerso" dobashcompletion bash-completion/accerso + BASH_COMPLETION_NAME="contrarius" dobashcompletion bash-completion/contrarius + BASH_COMPLETION_NAME="importare" dobashcompletion bash-completion/importare + BASH_COMPLETION_NAME="instruo" dobashcompletion bash-completion/instruo + BASH_COMPLETION_NAME="reconcilio" dobashcompletion bash-completion/reconcilio + use qa && \ + BASH_COMPLETION_NAME="qualudis" \ + dobashcompletion bash-completion/qualudis + use inquisitio && \ + BASH_COMPLETION_NAME="inquisitio" \ + dobashcompletion bash-completion/inquisitio + + if use zsh-completion ; then + insinto /usr/share/zsh/site-functions + doins zsh-completion/_paludis + doins zsh-completion/_adjutrix + doins zsh-completion/_importare + doins zsh-completion/_reconcilio + use inquisitio && doins zsh-completion/_inquisitio + doins zsh-completion/_paludis_packages + fi +} + +src_test() { + # Work around Portage bugs + export PALUDIS_DO_NOTHING_SANDBOXY="portage sucks" + export BASH_ENV=/dev/null + + if ! emake check ; then + eerror "Tests failed. Looking for files for you to add to your bug report..." + find "${S}" -type f -name '*.epicfail' -or -name '*.log' | while read a ; do + eerror " $a" + done + die "Make check failed" + fi +} + +pkg_postinst() { + # Remove the symlink created by app-admin/eselect-news + if [[ -L "${ROOT}/var/lib/paludis/news" ]] ; then + rm "${ROOT}/var/lib/paludis/news" + fi +} |