| 1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/sys-apps/portage/portage-2.2.0_alpha116.ebuild,v 1.3 2012/07/07 05:38:27 zmedico Exp $
|
| 4 |
|
| 5 |
# Require EAPI 2 since we now require at least python-2.6 (for python 3
|
| 6 |
# syntax support) which also requires EAPI 2.
|
| 7 |
EAPI=3
|
| 8 |
inherit eutils multilib python
|
| 9 |
|
| 10 |
DESCRIPTION="Portage is the package management and distribution system for Gentoo"
|
| 11 |
HOMEPAGE="http://www.gentoo.org/proj/en/portage/index.xml"
|
| 12 |
LICENSE="GPL-2"
|
| 13 |
KEYWORDS="~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
|
| 14 |
SLOT="0"
|
| 15 |
IUSE="build doc epydoc +ipc linguas_pl pypy1_9 python2 python3 selinux xattr"
|
| 16 |
|
| 17 |
# Import of the io module in python-2.6 raises ImportError for the
|
| 18 |
# thread module if threading is disabled.
|
| 19 |
python_dep_ssl="python3? ( =dev-lang/python-3*[ssl] )
|
| 20 |
!pypy1_9? ( !python2? ( !python3? (
|
| 21 |
|| ( >=dev-lang/python-2.7[ssl] dev-lang/python:2.6[threads,ssl] )
|
| 22 |
) ) )
|
| 23 |
pypy1_9? ( !python2? ( !python3? ( dev-python/pypy:1.9[bzip2,ssl] ) ) )
|
| 24 |
python2? ( !python3? ( || ( dev-lang/python:2.7[ssl] dev-lang/python:2.6[ssl,threads] ) ) )"
|
| 25 |
python_dep="${python_dep_ssl//\[ssl\]}"
|
| 26 |
python_dep="${python_dep//,ssl}"
|
| 27 |
python_dep="${python_dep//ssl,}"
|
| 28 |
|
| 29 |
# The pysqlite blocker is for bug #282760.
|
| 30 |
DEPEND="${python_dep}
|
| 31 |
!build? ( >=sys-apps/sed-4.0.5 )
|
| 32 |
doc? ( app-text/xmlto ~app-text/docbook-xml-dtd-4.4 )
|
| 33 |
epydoc? ( >=dev-python/epydoc-2.0 !<=dev-python/pysqlite-2.4.1 )"
|
| 34 |
# Require sandbox-2.2 for bug #288863.
|
| 35 |
# For xattr, we can spawn getfattr and setfattr from sys-apps/attr, but that's
|
| 36 |
# quite slow, so it's not considered in the dependencies as an alternative to
|
| 37 |
# to python-3.3 / pyxattr. Also, xattr support is only tested with Linux, so
|
| 38 |
# for now, don't pull in xattr deps for other kernels.
|
| 39 |
# For whirlpool hash, require python[ssl] or python-mhash (bug #425046).
|
| 40 |
RDEPEND="${python_dep}
|
| 41 |
!build? ( >=sys-apps/sed-4.0.5
|
| 42 |
>=app-shells/bash-3.2_p17
|
| 43 |
>=app-admin/eselect-1.2
|
| 44 |
|| ( ${python_dep_ssl} dev-python/python-mhash )
|
| 45 |
)
|
| 46 |
elibc_FreeBSD? ( sys-freebsd/freebsd-bin )
|
| 47 |
elibc_glibc? ( >=sys-apps/sandbox-2.2 )
|
| 48 |
elibc_uclibc? ( >=sys-apps/sandbox-2.2 )
|
| 49 |
>=app-misc/pax-utils-0.1.17
|
| 50 |
xattr? ( kernel_linux? ( || ( >=dev-lang/python-3.3_pre20110902 dev-python/pyxattr ) ) )
|
| 51 |
selinux? ( || ( >=sys-libs/libselinux-2.0.94[python] <sys-libs/libselinux-2.0.94 ) )
|
| 52 |
!<app-shells/bash-3.2_p17
|
| 53 |
!<app-admin/logrotate-3.8.0"
|
| 54 |
PDEPEND="
|
| 55 |
!build? (
|
| 56 |
>=net-misc/rsync-2.6.4
|
| 57 |
userland_GNU? ( >=sys-apps/coreutils-6.4 )
|
| 58 |
)"
|
| 59 |
# coreutils-6.4 rdep is for date format in emerge-webrsync #164532
|
| 60 |
# NOTE: FEATURES=install-sources requires debugedit and rsync
|
| 61 |
|
| 62 |
SRC_ARCHIVES="http://dev.gentoo.org/~zmedico/portage/archives"
|
| 63 |
|
| 64 |
prefix_src_archives() {
|
| 65 |
local x y
|
| 66 |
for x in ${@}; do
|
| 67 |
for y in ${SRC_ARCHIVES}; do
|
| 68 |
echo ${y}/${x}
|
| 69 |
done
|
| 70 |
done
|
| 71 |
}
|
| 72 |
|
| 73 |
PV_PL="2.1.2"
|
| 74 |
PATCHVER_PL=""
|
| 75 |
TARBALL_PV=2.2.0_alpha111
|
| 76 |
SRC_URI="mirror://gentoo/${PN}-${TARBALL_PV}.tar.bz2
|
| 77 |
$(prefix_src_archives ${PN}-${TARBALL_PV}.tar.bz2)
|
| 78 |
linguas_pl? ( mirror://gentoo/${PN}-man-pl-${PV_PL}.tar.bz2
|
| 79 |
$(prefix_src_archives ${PN}-man-pl-${PV_PL}.tar.bz2) )"
|
| 80 |
|
| 81 |
PATCHVER=
|
| 82 |
[[ $TARBALL_PV = $PV ]] || PATCHVER=$PV
|
| 83 |
if [ -n "${PATCHVER}" ]; then
|
| 84 |
SRC_URI="${SRC_URI} mirror://gentoo/${PN}-${PATCHVER}.patch.bz2
|
| 85 |
$(prefix_src_archives ${PN}-${PATCHVER}.patch.bz2)"
|
| 86 |
fi
|
| 87 |
|
| 88 |
S="${WORKDIR}"/${PN}-${TARBALL_PV}
|
| 89 |
S_PL="${WORKDIR}"/${PN}-${PV_PL}
|
| 90 |
|
| 91 |
compatible_python_is_selected() {
|
| 92 |
[[ $("${EPREFIX}/usr/bin/python" -c 'import sys ; sys.stdout.write(sys.hexversion >= 0x2060000 and "good" or "bad")') = good ]]
|
| 93 |
}
|
| 94 |
|
| 95 |
current_python_has_xattr() {
|
| 96 |
[[ $("${EPREFIX}/usr/bin/python" -c 'import sys ; sys.stdout.write(sys.hexversion >= 0x3030000 and "yes" or "no")') = yes ]] || \
|
| 97 |
"${EPREFIX}/usr/bin/python" -c 'import xattr' 2>/dev/null
|
| 98 |
}
|
| 99 |
|
| 100 |
pkg_setup() {
|
| 101 |
# Bug #359731 - Die early if get_libdir fails.
|
| 102 |
[[ -z $(get_libdir) ]] && \
|
| 103 |
die "get_libdir returned an empty string"
|
| 104 |
|
| 105 |
if use python2 && use python3 ; then
|
| 106 |
ewarn "Both python2 and python3 USE flags are enabled, but only one"
|
| 107 |
ewarn "can be in the shebangs. Using python3."
|
| 108 |
fi
|
| 109 |
if use pypy1_9 && use python3 ; then
|
| 110 |
ewarn "Both pypy1_9 and python3 USE flags are enabled, but only one"
|
| 111 |
ewarn "can be in the shebangs. Using python3."
|
| 112 |
fi
|
| 113 |
if use pypy1_9 && use python2 ; then
|
| 114 |
ewarn "Both pypy1_9 and python2 USE flags are enabled, but only one"
|
| 115 |
ewarn "can be in the shebangs. Using python2"
|
| 116 |
fi
|
| 117 |
if ! use pypy1_9 && ! use python2 && ! use python3 && \
|
| 118 |
! compatible_python_is_selected ; then
|
| 119 |
ewarn "Attempting to select a compatible default python interpreter"
|
| 120 |
local x success=0
|
| 121 |
for x in /usr/bin/python2.* ; do
|
| 122 |
x=${x#/usr/bin/python2.}
|
| 123 |
if [[ $x -ge 6 ]] 2>/dev/null ; then
|
| 124 |
eselect python set python2.$x
|
| 125 |
if compatible_python_is_selected ; then
|
| 126 |
elog "Default python interpreter is now set to python-2.$x"
|
| 127 |
success=1
|
| 128 |
break
|
| 129 |
fi
|
| 130 |
fi
|
| 131 |
done
|
| 132 |
if [ $success != 1 ] ; then
|
| 133 |
eerror "Unable to select a compatible default python interpreter!"
|
| 134 |
die "This version of portage requires at least python-2.6 to be selected as the default python interpreter (see \`eselect python --help\`)."
|
| 135 |
fi
|
| 136 |
fi
|
| 137 |
|
| 138 |
if use python3; then
|
| 139 |
python_set_active_version 3
|
| 140 |
elif use python2; then
|
| 141 |
python_set_active_version 2
|
| 142 |
elif use pypy1_9; then
|
| 143 |
python_set_active_version 2.7-pypy-1.9
|
| 144 |
fi
|
| 145 |
}
|
| 146 |
|
| 147 |
src_prepare() {
|
| 148 |
if [ -n "${PATCHVER}" ] ; then
|
| 149 |
if [[ -L $S/bin/ebuild-helpers/portageq ]] ; then
|
| 150 |
rm "$S/bin/ebuild-helpers/portageq" \
|
| 151 |
|| die "failed to remove portageq helper symlink"
|
| 152 |
fi
|
| 153 |
epatch "${WORKDIR}/${PN}-${PATCHVER}.patch"
|
| 154 |
fi
|
| 155 |
einfo "Setting portage.VERSION to ${PVR} ..."
|
| 156 |
sed -e "s/^VERSION=.*/VERSION=\"${PVR}\"/" -i pym/portage/__init__.py || \
|
| 157 |
die "Failed to patch portage.VERSION"
|
| 158 |
sed -e "1s/VERSION/${PVR}/" -i doc/fragment/version || \
|
| 159 |
die "Failed to patch VERSION in doc/fragment/version"
|
| 160 |
sed -e "1s/VERSION/${PVR}/" -i man/* || \
|
| 161 |
die "Failed to patch VERSION in man page headers"
|
| 162 |
|
| 163 |
if ! use ipc ; then
|
| 164 |
einfo "Disabling ipc..."
|
| 165 |
sed -e "s:_enable_ipc_daemon = True:_enable_ipc_daemon = False:" \
|
| 166 |
-i pym/_emerge/AbstractEbuildProcess.py || \
|
| 167 |
die "failed to patch AbstractEbuildProcess.py"
|
| 168 |
fi
|
| 169 |
|
| 170 |
if use xattr && use kernel_linux ; then
|
| 171 |
einfo "Adding FEATURES=xattr to make.globals ..."
|
| 172 |
echo -e '\nFEATURES="${FEATURES} xattr"' >> cnf/make.globals \
|
| 173 |
|| die "failed to append to make.globals"
|
| 174 |
fi
|
| 175 |
|
| 176 |
if use python3; then
|
| 177 |
einfo "Converting shebangs for python3..."
|
| 178 |
python_convert_shebangs -r 3 .
|
| 179 |
elif use python2; then
|
| 180 |
einfo "Converting shebangs for python2..."
|
| 181 |
python_convert_shebangs -r 2 .
|
| 182 |
elif use pypy1_9; then
|
| 183 |
einfo "Converting shebangs for pypy-c1.9..."
|
| 184 |
python_convert_shebangs -r 2.7-pypy-1.9 .
|
| 185 |
fi
|
| 186 |
|
| 187 |
if [[ -n ${EPREFIX} ]] ; then
|
| 188 |
einfo "Setting portage.const.EPREFIX ..."
|
| 189 |
sed -e "s|^\(SANDBOX_BINARY[[:space:]]*=[[:space:]]*\"\)\(/usr/bin/sandbox\"\)|\\1${EPREFIX}\\2|" \
|
| 190 |
-e "s|^\(FAKEROOT_BINARY[[:space:]]*=[[:space:]]*\"\)\(/usr/bin/fakeroot\"\)|\\1${EPREFIX}\\2|" \
|
| 191 |
-e "s|^\(BASH_BINARY[[:space:]]*=[[:space:]]*\"\)\(/bin/bash\"\)|\\1${EPREFIX}\\2|" \
|
| 192 |
-e "s|^\(MOVE_BINARY[[:space:]]*=[[:space:]]*\"\)\(/bin/mv\"\)|\\1${EPREFIX}\\2|" \
|
| 193 |
-e "s|^\(PRELINK_BINARY[[:space:]]*=[[:space:]]*\"\)\(/usr/sbin/prelink\"\)|\\1${EPREFIX}\\2|" \
|
| 194 |
-e "s|^\(EPREFIX[[:space:]]*=[[:space:]]*\"\).*|\\1${EPREFIX}\"|" \
|
| 195 |
-i pym/portage/const.py || \
|
| 196 |
die "Failed to patch portage.const.EPREFIX"
|
| 197 |
|
| 198 |
einfo "Prefixing shebangs ..."
|
| 199 |
find . -type f -print0 | \
|
| 200 |
while read -r -d $'\0' ; do
|
| 201 |
local shebang=$(head -n1 "$REPLY")
|
| 202 |
if [[ ${shebang} == "#!"* && ! ${shebang} == "#!${EPREFIX}/"* ]] ; then
|
| 203 |
sed -i -e "1s:.*:#!${EPREFIX}${shebang:2}:" "$REPLY" || \
|
| 204 |
die "sed failed"
|
| 205 |
fi
|
| 206 |
done
|
| 207 |
|
| 208 |
einfo "Adjusting make.globals ..."
|
| 209 |
sed -e 's|^SYNC=.*|SYNC="rsync://rsync.prefix.freens.org/gentoo-portage-prefix"|' \
|
| 210 |
-e "s|^\(PORTDIR=\)\(/usr/portage\)|\\1\"${EPREFIX}\\2\"|" \
|
| 211 |
-e "s|^\(PORTAGE_TMPDIR=\)\(/var/tmp\)|\\1\"${EPREFIX}\\2\"|" \
|
| 212 |
-i cnf/make.globals || die "sed failed"
|
| 213 |
|
| 214 |
einfo "Adding FEATURES=force-prefix to make.globals ..."
|
| 215 |
echo -e '\nFEATURES="${FEATURES} force-prefix"' >> cnf/make.globals \
|
| 216 |
|| die "failed to append to make.globals"
|
| 217 |
fi
|
| 218 |
|
| 219 |
cd "${S}/cnf" || die
|
| 220 |
if [ -f "make.conf.${ARCH}".diff ]; then
|
| 221 |
patch make.conf "make.conf.${ARCH}".diff || \
|
| 222 |
die "Failed to patch make.conf.example"
|
| 223 |
else
|
| 224 |
eerror ""
|
| 225 |
eerror "Portage does not have an arch-specific configuration for this arch."
|
| 226 |
eerror "Please notify the arch maintainer about this issue. Using generic."
|
| 227 |
eerror ""
|
| 228 |
fi
|
| 229 |
|
| 230 |
# BSD and OSX need a sed wrapper so that find/xargs work properly
|
| 231 |
if use userland_GNU; then
|
| 232 |
rm -f "${S}"/bin/ebuild-helpers/sed || \
|
| 233 |
die "Failed to remove sed wrapper"
|
| 234 |
fi
|
| 235 |
}
|
| 236 |
|
| 237 |
src_compile() {
|
| 238 |
if use doc; then
|
| 239 |
emake docbook || die
|
| 240 |
fi
|
| 241 |
|
| 242 |
if use epydoc; then
|
| 243 |
einfo "Generating api docs"
|
| 244 |
emake epydoc || die
|
| 245 |
fi
|
| 246 |
}
|
| 247 |
|
| 248 |
src_test() {
|
| 249 |
# make files executable, in case they were created by patch
|
| 250 |
find bin -type f | xargs chmod +x
|
| 251 |
emake test || die
|
| 252 |
}
|
| 253 |
|
| 254 |
src_install() {
|
| 255 |
emake DESTDIR="${D}" \
|
| 256 |
sysconfdir="${EPREFIX}/etc" \
|
| 257 |
prefix="${EPREFIX}/usr" \
|
| 258 |
libdir="${EPREFIX}/usr/$(get_libdir)" \
|
| 259 |
install || die
|
| 260 |
|
| 261 |
# Use dodoc for compression, since the Makefile doesn't do that.
|
| 262 |
dodoc "${S}"/{ChangeLog,NEWS,RELEASE-NOTES} || die
|
| 263 |
|
| 264 |
if use linguas_pl; then
|
| 265 |
doman -i18n=pl "${S_PL}"/man/pl/*.[0-9] || die
|
| 266 |
doman -i18n=pl_PL.UTF-8 "${S_PL}"/man/pl_PL.UTF-8/*.[0-9] || die
|
| 267 |
fi
|
| 268 |
}
|
| 269 |
|
| 270 |
pkg_preinst() {
|
| 271 |
if [[ $ROOT == / ]] ; then
|
| 272 |
# Run some minimal tests as a sanity check.
|
| 273 |
local test_runner=$(find "$ED" -name runTests)
|
| 274 |
if [[ -n $test_runner && -x $test_runner ]] ; then
|
| 275 |
einfo "Running preinst sanity tests..."
|
| 276 |
"$test_runner" || die "preinst sanity tests failed"
|
| 277 |
fi
|
| 278 |
fi
|
| 279 |
|
| 280 |
if use xattr && ! current_python_has_xattr ; then
|
| 281 |
ewarn "For optimal performance in xattr handling, install"
|
| 282 |
ewarn "dev-python/pyxattr, or install >=dev-lang/python-3.3 and"
|
| 283 |
ewarn "enable USE=python3 for $CATEGORY/$PN."
|
| 284 |
fi
|
| 285 |
|
| 286 |
if ! use build && ! has_version dev-python/pycrypto && \
|
| 287 |
! has_version '>=dev-lang/python-2.6[ssl]' ; then
|
| 288 |
ewarn "If you are an ebuild developer and you plan to commit ebuilds"
|
| 289 |
ewarn "with this system then please install dev-python/pycrypto or"
|
| 290 |
ewarn "enable the ssl USE flag for >=dev-lang/python-2.6 in order"
|
| 291 |
ewarn "to enable RMD160 hash support."
|
| 292 |
ewarn "See bug #198398 for more information."
|
| 293 |
fi
|
| 294 |
if [[ ! -L "${EROOT}/etc/make.globals" &&
|
| 295 |
-f "${EROOT}/etc/make.globals" ]]; then
|
| 296 |
rm "${EROOT}/etc/make.globals"
|
| 297 |
fi
|
| 298 |
|
| 299 |
has_version "<=${CATEGORY}/${PN}-2.2_pre5" \
|
| 300 |
&& WORLD_MIGRATION_UPGRADE=true || WORLD_MIGRATION_UPGRADE=false
|
| 301 |
|
| 302 |
# If portage-2.1.6 is installed and the preserved_libs_registry exists,
|
| 303 |
# assume that the NEEDED.ELF.2 files have already been generated.
|
| 304 |
has_version "<=${CATEGORY}/${PN}-2.2_pre7" && \
|
| 305 |
! ( [ -e "${EROOT}"var/lib/portage/preserved_libs_registry ] && \
|
| 306 |
has_version ">=${CATEGORY}/${PN}-2.1.6_rc" ) \
|
| 307 |
&& NEEDED_REBUILD_UPGRADE=true || NEEDED_REBUILD_UPGRADE=false
|
| 308 |
}
|
| 309 |
|
| 310 |
pkg_postinst() {
|
| 311 |
# Compile all source files recursively. Any orphans
|
| 312 |
# will be identified and removed in postrm.
|
| 313 |
python_mod_optimize /usr/$(get_libdir)/portage/pym
|
| 314 |
|
| 315 |
if $WORLD_MIGRATION_UPGRADE && \
|
| 316 |
grep -q "^@" "${EROOT}/var/lib/portage/world"; then
|
| 317 |
einfo "moving set references from the worldfile into world_sets"
|
| 318 |
cd "${EROOT}/var/lib/portage/"
|
| 319 |
grep "^@" world >> world_sets
|
| 320 |
sed -i -e '/^@/d' world
|
| 321 |
fi
|
| 322 |
|
| 323 |
if $NEEDED_REBUILD_UPGRADE ; then
|
| 324 |
einfo "rebuilding NEEDED.ELF.2 files"
|
| 325 |
for cpv in "${EROOT}/var/db/pkg"/*/*; do
|
| 326 |
if [ -f "${cpv}/NEEDED" ]; then
|
| 327 |
rm -f "${cpv}/NEEDED.ELF.2"
|
| 328 |
while read line; do
|
| 329 |
filename=${line% *}
|
| 330 |
needed=${line#* }
|
| 331 |
needed=${needed//+/++}
|
| 332 |
needed=${needed//#/##}
|
| 333 |
needed=${needed//%/%%}
|
| 334 |
newline=$(scanelf -BF "%a;%F;%S;%r;${needed}" $filename)
|
| 335 |
newline=${newline// - }
|
| 336 |
echo "${newline:3}" >> "${cpv}/NEEDED.ELF.2"
|
| 337 |
done < "${cpv}/NEEDED"
|
| 338 |
fi
|
| 339 |
done
|
| 340 |
fi
|
| 341 |
}
|
| 342 |
|
| 343 |
pkg_postrm() {
|
| 344 |
python_mod_cleanup /usr/$(get_libdir)/portage/pym
|
| 345 |
}
|