* [gentoo-commits] gentoo-x86 commit in sys-apps/paludis: paludis-1.4.0.ebuild ChangeLog
@ 2013-05-17 4:39 Jeff Horelick (jdhore)
0 siblings, 0 replies; 2+ messages in thread
From: Jeff Horelick (jdhore) @ 2013-05-17 4:39 UTC (permalink / raw
To: gentoo-commits
jdhore 13/05/17 04:39:35
Modified: ChangeLog
Added: paludis-1.4.0.ebuild
Log:
Version bump
(Portage version: 2.2.0_alpha175/cvs/Linux i686, signed Manifest commit with key 23E9E900)
Revision Changes Path
1.234 sys-apps/paludis/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/paludis/ChangeLog?rev=1.234&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/paludis/ChangeLog?rev=1.234&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/paludis/ChangeLog?r1=1.233&r2=1.234
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/paludis/ChangeLog,v
retrieving revision 1.233
retrieving revision 1.234
diff -u -r1.233 -r1.234
--- ChangeLog 27 Mar 2013 00:52:45 -0000 1.233
+++ ChangeLog 17 May 2013 04:39:35 -0000 1.234
@@ -1,6 +1,11 @@
# ChangeLog for sys-apps/paludis
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/paludis/ChangeLog,v 1.233 2013/03/27 00:52:45 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/paludis/ChangeLog,v 1.234 2013/05/17 04:39:35 jdhore Exp $
+
+*paludis-1.4.0 (17 May 2013)
+
+ 17 May 2013; Jeff Horelick <jdhore@gentoo.org> +paludis-1.4.0.ebuild:
+ Version bump
27 Mar 2013; Jeff Horelick <jdhore@gentoo.org> -paludis-0.82.0.ebuild,
-paludis-1.0.0.ebuild:
1.1 sys-apps/paludis/paludis-1.4.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/paludis/paludis-1.4.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/paludis/paludis-1.4.0.ebuild?rev=1.1&content-type=text/plain
Index: paludis-1.4.0.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/paludis/paludis-1.4.0.ebuild,v 1.1 2013/05/17 04:39:35 jdhore Exp $
inherit bash-completion-r1 eutils user
DESCRIPTION="paludis, the other package mangler"
HOMEPAGE="http://paludis.exherbo.org/"
SRC_URI="http://paludis.exherbo.org/download/${P}.tar.bz2"
IUSE="doc pbins portage pink prebuilt-documentation python-bindings ruby-bindings search-index test vim-syntax visibility xml zsh-completion"
LICENSE="GPL-2 vim-syntax? ( vim )"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
COMMON_DEPEND="
>=app-admin/eselect-1.2.13
>=app-shells/bash-3.2
>=sys-devel/gcc-4.4
dev-libs/libpcre
sys-apps/file
pbins? ( >=app-arch/libarchive-3.0.4 )
python-bindings? ( >=dev-lang/python-2.6 >=dev-libs/boost-1.41.0 )
ruby-bindings? ( >=dev-lang/ruby-1.8 )
xml? ( >=dev-libs/libxml2-2.6 )
search-index? ( >=dev-db/sqlite-3 )"
DEPEND="${COMMON_DEPEND}
!prebuilt-documentation? (
>=app-text/asciidoc-8.6.3
app-text/xmlto
)
doc? (
|| ( >=app-doc/doxygen-1.5.3 <=app-doc/doxygen-1.5.1 )
media-gfx/imagemagick
python-bindings? ( dev-python/epydoc dev-python/pygments )
ruby-bindings? ( dev-ruby/syntax )
)
virtual/pkgconfig
test? ( >=dev-cpp/gtest-1.6.0-r1 )"
RDEPEND="${COMMON_DEPEND}
sys-apps/sandbox"
# Keep syntax as a PDEPEND. It avoids issues when Paludis is used as the
# default virtual/portage provider.
PDEPEND="
vim-syntax? ( >=app-editors/vim-core-7 )
app-admin/eselect-package-manager"
create-paludis-user() {
enewgroup "paludisbuild"
enewuser "paludisbuild" -1 -1 "/var/tmp/paludis" "paludisbuild,tty"
}
pkg_setup() {
if ! built_with_use dev-libs/libpcre cxx ; then
eerror "Paludis needs dev-libs/libpcre built with C++ support"
eerror "Please build dev-libs/libpcre with USE=cxx support"
die "Rebuild dev-libs/libpcre with USE=cxx"
fi
if use python-bindings && \
! built_with_use --missing true dev-libs/boost python; then
eerror "With USE python-bindings you need boost build with the python"
eerror "use flag."
die "Rebuild dev-libs/boost with USE python"
fi
if use pbins && \
built_with_use app-arch/libarchive xattr; then
eerror "With USE pbins you need libarchive build without the xattr"
eerror "use flag."
die "Rebuild app-arch/libarchive without USE xattr"
fi
if id paludisbuild >/dev/null 2>/dev/null ; then
if ! groups paludisbuild | grep --quiet '\<tty\>' ; then
eerror "The 'paludisbuild' user is now expected to be a member of the"
eerror "'tty' group. You should add the user to this group before"
eerror "upgrading Paludis."
die "Please add paludisbuild to tty group"
fi
fi
create-paludis-user
# 'paludis' tries to exec() itself after an upgrade
if [[ "${PKGMANAGER}" == paludis-0.[012345]* ]] && [[ -z "${CAVE}" ]] ; then
eerror "The 'paludis' client has been removed in Paludis 0.60. You must use"
eerror "'cave' to upgrade."
die "Can't use 'paludis' to upgrade Paludis"
fi
}
src_compile() {
local repositories=`echo default unavailable unpackaged | tr -s \ ,`
local environments=`echo default $(usev portage ) | tr -s \ ,`
econf \
$(use_enable doc doxygen ) \
$(use_enable pbins ) \
$(use_enable pink ) \
$(use_enable ruby-bindings ruby ) \
$(use ruby-bindings && use doc && echo --enable-ruby-doc ) \
$(use_enable prebuilt-documentation ) \
$(use_enable python-bindings python ) \
$(use python-bindings && use doc && echo --enable-python-doc ) \
$(use_enable vim-syntax vim ) \
$(use_enable visibility ) \
$(use_enable xml ) \
$(use_enable search-index ) \
$(use_enable test gtest ) \
--with-vim-install-dir=/usr/share/vim/vimfiles \
--with-repositories=${repositories} \
--with-environments=${environments} \
|| die "econf failed"
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "install failed"
dodoc AUTHORS README NEWS
BASHCOMPLETION_NAME="cave" dobashcomp bash-completion/cave
if use zsh-completion ; then
insinto /usr/share/zsh/site-functions
doins zsh-completion/_cave
fi
}
src_test() {
# Work around Portage bugs
export PALUDIS_DO_NOTHING_SANDBOXY="portage sucks"
export BASH_ENV=/dev/null
if [[ `id -u` == 0 ]] ; then
# hate
export PALUDIS_REDUCED_UID=0
export PALUDIS_REDUCED_GID=0
fi
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() {
pm_is_paludis=false
if [[ -f ${ROOT}/etc/env.d/50package-manager ]] ; then
pm_is_paludis=$( source ${ROOT}/etc/env.d/50package-manager ; [[ ${PACKAGE_MANAGER} == paludis ]] && echo true || echo false )
fi
if ! $pm_is_paludis ; then
elog "If you are using paludis or cave as your primary package manager,"
elog "you should consider running:"
elog " eselect package-manager set paludis"
fi
}
^ permalink raw reply [flat|nested] 2+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-apps/paludis: paludis-1.4.0.ebuild ChangeLog
@ 2013-05-19 18:33 Jeff Horelick (jdhore)
0 siblings, 0 replies; 2+ messages in thread
From: Jeff Horelick (jdhore) @ 2013-05-19 18:33 UTC (permalink / raw
To: gentoo-commits
jdhore 13/05/19 18:33:14
Modified: paludis-1.4.0.ebuild ChangeLog
Log:
Require >=app-arch/libarchive-3.1.2 as it's the only version currently in the tree and 3.0.4 is untested
(Portage version: 2.2.0_alpha175/cvs/Linux i686, signed Manifest commit with key 23E9E900)
Revision Changes Path
1.2 sys-apps/paludis/paludis-1.4.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/paludis/paludis-1.4.0.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/paludis/paludis-1.4.0.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/paludis/paludis-1.4.0.ebuild?r1=1.1&r2=1.2
Index: paludis-1.4.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/paludis/paludis-1.4.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- paludis-1.4.0.ebuild 17 May 2013 04:39:35 -0000 1.1
+++ paludis-1.4.0.ebuild 19 May 2013 18:33:14 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/paludis/paludis-1.4.0.ebuild,v 1.1 2013/05/17 04:39:35 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/paludis/paludis-1.4.0.ebuild,v 1.2 2013/05/19 18:33:14 jdhore Exp $
inherit bash-completion-r1 eutils user
@@ -19,7 +19,7 @@
>=sys-devel/gcc-4.4
dev-libs/libpcre
sys-apps/file
- pbins? ( >=app-arch/libarchive-3.0.4 )
+ pbins? ( >=app-arch/libarchive-3.1.2 )
python-bindings? ( >=dev-lang/python-2.6 >=dev-libs/boost-1.41.0 )
ruby-bindings? ( >=dev-lang/ruby-1.8 )
xml? ( >=dev-libs/libxml2-2.6 )
1.235 sys-apps/paludis/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/paludis/ChangeLog?rev=1.235&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/paludis/ChangeLog?rev=1.235&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/paludis/ChangeLog?r1=1.234&r2=1.235
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/paludis/ChangeLog,v
retrieving revision 1.234
retrieving revision 1.235
diff -u -r1.234 -r1.235
--- ChangeLog 17 May 2013 04:39:35 -0000 1.234
+++ ChangeLog 19 May 2013 18:33:14 -0000 1.235
@@ -1,6 +1,10 @@
# ChangeLog for sys-apps/paludis
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/paludis/ChangeLog,v 1.234 2013/05/17 04:39:35 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/paludis/ChangeLog,v 1.235 2013/05/19 18:33:14 jdhore Exp $
+
+ 19 May 2013; Jeff Horelick <jdhore@gentoo.org> paludis-1.4.0.ebuild:
+ Require >=app-arch/libarchive-3.1.2 as it's the only version currently in the
+ tree and 3.0.4 is untested
*paludis-1.4.0 (17 May 2013)
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-05-19 18:33 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-19 18:33 [gentoo-commits] gentoo-x86 commit in sys-apps/paludis: paludis-1.4.0.ebuild ChangeLog Jeff Horelick (jdhore)
-- strict thread matches above, loose matches on Subject: below --
2013-05-17 4:39 Jeff Horelick (jdhore)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox