summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2010-01-29 18:10:30 +0000
committerZac Medico <zmedico@gentoo.org>2010-01-29 18:10:30 +0000
commit7927f4186d64d997387ffb9b43a80b5c11d09c22 (patch)
tree392aceaea2a9f9f72379bf4b41ac53dc565f3dc9
parentShow the path of the lockfile when chown fails. Thanks to Jeremy Olexa (diff)
downloadportage-idfetch-7927f4186d64d997387ffb9b43a80b5c11d09c22.tar.gz
portage-idfetch-7927f4186d64d997387ffb9b43a80b5c11d09c22.tar.bz2
portage-idfetch-7927f4186d64d997387ffb9b43a80b5c11d09c22.zip
Enable EAPI 3 and deprecate EAPI 3_pre2.
svn path=/main/trunk/; revision=15221
-rw-r--r--doc/package/ebuild/eapi/3.docbook20
-rw-r--r--pym/portage/__init__.py4
-rw-r--r--pym/portage/const.py2
3 files changed, 13 insertions, 13 deletions
diff --git a/doc/package/ebuild/eapi/3.docbook b/doc/package/ebuild/eapi/3.docbook
index 4665b095..3e8c85ae 100644
--- a/doc/package/ebuild/eapi/3.docbook
+++ b/doc/package/ebuild/eapi/3.docbook
@@ -1,10 +1,10 @@
-<section id='package-ebuild-eapi-3_pre2'>
-<title>EAPI 3_pre2</title>
-<section id='package-ebuild-eapi-3_pre2-helpers'>
+<section id='package-ebuild-eapi-3'>
+<title>EAPI 3</title>
+<section id='package-ebuild-eapi-3-helpers'>
<title>Helpers</title>
-<section id='package-ebuild-eapi-3_pre2-helpers-unpack'>
+<section id='package-ebuild-eapi-3-helpers-unpack'>
<title>unpack</title>
-<section id='package-ebuild-eapi-3_pre2-helpers-unpack-xz'>
+<section id='package-ebuild-eapi-3-helpers-unpack-xz'>
<title>Support for the xz file extension</title>
<para>
The unpack helper now supports the xz file extension.
@@ -12,15 +12,15 @@ The unpack helper now supports the xz file extension.
</section>
</section>
</section>
-<section id='package-ebuild-eapi-3_pre2-prefix'>
+<section id='package-ebuild-eapi-3-prefix'>
<title>Support for installation prefix</title>
-<section id='package-ebuild-eapi-3_pre2-prefix-helpers'>
+<section id='package-ebuild-eapi-3-prefix-helpers'>
<title>Helpers</title>
<para>
Beginning with EAPI 3, all helpers use ${ED} instead of ${D}
when appropriate. For example, see econf and einstall below.
</para>
-<section id='package-ebuild-eapi-3_pre2-prefix-helpers-econf'>
+<section id='package-ebuild-eapi-3-prefix-helpers-econf'>
<title>econf</title>
<programlisting>
${ECONF_SOURCE:-.}/configure \
@@ -37,7 +37,7 @@ ${ECONF_SOURCE:-.}/configure \
configure options || die "econf failed"
</programlisting>
</section>
-<section id='package-ebuild-eapi-3_pre2-prefix-helpers-einstall'>
+<section id='package-ebuild-eapi-3-prefix-helpers-einstall'>
<title>einstall</title>
<para>
Note that, for make-based packages, 'emake install DESTDIR=${D}' (with
@@ -57,7 +57,7 @@ make \
</programlisting>
</section>
</section>
-<section id='package-ebuild-eapi-3_pre2-prefix-variables'>
+<section id='package-ebuild-eapi-3-prefix-variables'>
<title>Variables</title>
<table><title>Installation Prefix Variables</title>
<tgroup cols='2' align='left' >
diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py
index 0feabf41..c0b1e2e1 100644
--- a/pym/portage/__init__.py
+++ b/pym/portage/__init__.py
@@ -6071,8 +6071,8 @@ def _spawn_misc_sh(mysettings, commands, phase=None, **kwargs):
return rval
-_testing_eapis = frozenset(["3_pre2"])
-_deprecated_eapis = frozenset(["3_pre1", "2_pre3", "2_pre2", "2_pre1"])
+_testing_eapis = frozenset()
+_deprecated_eapis = frozenset(["3_pre2", "3_pre1", "2_pre3", "2_pre2", "2_pre1"])
def _eapi_is_deprecated(eapi):
return eapi in _deprecated_eapis
diff --git a/pym/portage/const.py b/pym/portage/const.py
index 8b36aac1..14596441 100644
--- a/pym/portage/const.py
+++ b/pym/portage/const.py
@@ -82,7 +82,7 @@ EBUILD_PHASES = ["setup", "unpack", "prepare", "configure",
"package", "preinst", "postinst","prerm", "postrm",
"nofetch", "config", "info", "other"]
-EAPI = 2
+EAPI = 3
HASHING_BLOCKSIZE = 32768
MANIFEST1_HASH_FUNCTIONS = ["MD5", "SHA256", "RMD160"]