mpagano 14/10/17 13:15:09
Modified: ChangeLog
Added: linux-docs-3.12.30.ebuild linux-docs-3.10.58.ebuild
linux-docs-3.4.104.ebuild linux-docs-3.17.1.ebuild
linux-docs-3.14.22.ebuild linux-docs-3.16.6.ebuild
Removed: linux-docs-3.13.9.ebuild linux-docs-3.10.32.ebuild
linux-docs-3.2.55.ebuild linux-docs-3.12.16.ebuild
linux-docs-3.4.82.ebuild
Log:
Version bumps. Remove old and fix bug in install for USE=html. Thanks to Ted
Marston. See bug #515520
(Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key
B576E4E3)
Revision Changes Path
1.49 sys-kernel/linux-docs/ChangeLog
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/linux-docs/ChangeLog?rev=1.49&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/linux-docs/ChangeLog?rev=1.49&content-type=text/plain
diff :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/linux-docs/ChangeLog?r1=1.48&r2=1.49
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-kernel/linux-docs/ChangeLog,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- ChangeLog 14 Apr 2014 14:39:00 -0000 1.48
+++ ChangeLog 17 Oct 2014 13:15:09 -0000 1.49
@@ -1,6 +1,22 @@
# ChangeLog for sys-kernel/linux-docs
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/linux-docs/ChangeLog,v 1.48
2014/04/14 14:39:00 mpagano Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/linux-docs/ChangeLog,v 1.49
2014/10/17 13:15:09 mpagano Exp $
+
+*linux-docs-3.17.1 (17 Oct 2014)
+*linux-docs-3.16.6 (17 Oct 2014)
+*linux-docs-3.14.22 (17 Oct 2014)
+*linux-docs-3.12.30 (17 Oct 2014)
+*linux-docs-3.10.58 (17 Oct 2014)
+*linux-docs-3.4.104 (17 Oct 2014)
+
+ 17 Oct 2014; Mike Pagano <[email protected]> -linux-docs-3.2.55.ebuild,
+ -linux-docs-3.4.82.ebuild, +linux-docs-3.4.104.ebuild,
+ -linux-docs-3.10.32.ebuild, +linux-docs-3.10.58.ebuild,
+ -linux-docs-3.12.16.ebuild, +linux-docs-3.12.30.ebuild,
+ -linux-docs-3.13.9.ebuild, +linux-docs-3.14.22.ebuild,
+ +linux-docs-3.16.6.ebuild, +linux-docs-3.17.1.ebuild:
+ Version bumps. Remove old and fix bug in install for USE=html. Thanks to Ted
+ Marston. See bug #515520
*linux-docs-3.13.9 (14 Apr 2014)
1.1 sys-kernel/linux-docs/linux-docs-3.12.30.ebuild
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/linux-docs/linux-docs-3.12.30.ebuild?rev=1.1&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/linux-docs/linux-docs-3.12.30.ebuild?rev=1.1&content-type=text/plain
Index: linux-docs-3.12.30.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header:
/var/cvsroot/gentoo-x86/sys-kernel/linux-docs/linux-docs-3.12.30.ebuild,v 1.1
2014/10/17 13:15:09 mpagano Exp $
EAPI=5
inherit toolchain-funcs
MY_P=linux-${PV}
S=${WORKDIR}/${MY_P}
DESCRIPTION="Developer documentation generated from the Linux kernel"
HOMEPAGE="http://www.kernel.org/"
SRC_URI="mirror://kernel/linux/kernel/v3.x/${MY_P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh
~sparc ~x86"
IUSE="html"
DEPEND="app-text/docbook-sgml-utils
app-text/xmlto
sys-apps/sed
~app-text/docbook-xml-dtd-4.1.2"
RDEPEND=""
src_prepare() {
sed -i \
-e "s:db2:docbook2:g" \
-e "s:/usr/local/man:${D}/usr/share/man:g" \
"${S}"/Documentation/DocBook/Makefile
# fix for parallel build as per bug #248337
sed -i \
-e "s:\$(Q)\$(MAKE) \$(build)=Documentation\/DocBook
\$@:+\$(Q)\$(MAKE) \$(build)=Documentation\/DocBook \$@:" \
"${S}"/Makefile
}
src_compile() {
local ARCH=$(tc-arch-kernel)
unset KBUILD_OUTPUT
emake mandocs || die "make mandocs failed"
if use html; then
emake htmldocs || die "make htmldocs failed"
fi
}
src_install() {
local file
local ARCH=$(tc-arch-kernel)
unset KBUILD_OUTPUT
make installmandocs || die "make installmandocs failed"
if use html; then
# There is no subdirectory named "index"
dohtml Documentation/DocBook/index.html
rm Documentation/DocBook/index.html
for file in Documentation/DocBook/*.html; do
dohtml -r ${file/\.html/}
done
fi
}
1.1 sys-kernel/linux-docs/linux-docs-3.10.58.ebuild
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/linux-docs/linux-docs-3.10.58.ebuild?rev=1.1&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/linux-docs/linux-docs-3.10.58.ebuild?rev=1.1&content-type=text/plain
Index: linux-docs-3.10.58.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header:
/var/cvsroot/gentoo-x86/sys-kernel/linux-docs/linux-docs-3.10.58.ebuild,v 1.1
2014/10/17 13:15:09 mpagano Exp $
EAPI=5
inherit toolchain-funcs
MY_P=linux-${PV}
S=${WORKDIR}/${MY_P}
DESCRIPTION="Developer documentation generated from the Linux kernel"
HOMEPAGE="http://www.kernel.org/"
SRC_URI="mirror://kernel/linux/kernel/v3.x/${MY_P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh
~sparc ~x86"
IUSE="html"
DEPEND="app-text/docbook-sgml-utils
app-text/xmlto
sys-apps/sed
~app-text/docbook-xml-dtd-4.1.2"
RDEPEND=""
src_prepare() {
sed -i \
-e "s:db2:docbook2:g" \
-e "s:/usr/local/man:${D}/usr/share/man:g" \
"${S}"/Documentation/DocBook/Makefile
# fix for parallel build as per bug #248337
sed -i \
-e "s:\$(Q)\$(MAKE) \$(build)=Documentation\/DocBook
\$@:+\$(Q)\$(MAKE) \$(build)=Documentation\/DocBook \$@:" \
"${S}"/Makefile
}
src_compile() {
local ARCH=$(tc-arch-kernel)
unset KBUILD_OUTPUT
emake mandocs || die "make mandocs failed"
if use html; then
emake htmldocs || die "make htmldocs failed"
fi
}
src_install() {
local file
local ARCH=$(tc-arch-kernel)
unset KBUILD_OUTPUT
make installmandocs || die "make installmandocs failed"
if use html; then
# There is no subdirectory named "index"
dohtml Documentation/DocBook/index.html
rm Documentation/DocBook/index.html
for file in Documentation/DocBook/*.html; do
dohtml -r ${file/\.html/}
done
fi
}
1.1 sys-kernel/linux-docs/linux-docs-3.4.104.ebuild
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/linux-docs/linux-docs-3.4.104.ebuild?rev=1.1&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/linux-docs/linux-docs-3.4.104.ebuild?rev=1.1&content-type=text/plain
Index: linux-docs-3.4.104.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header:
/var/cvsroot/gentoo-x86/sys-kernel/linux-docs/linux-docs-3.4.104.ebuild,v 1.1
2014/10/17 13:15:09 mpagano Exp $
EAPI=5
inherit toolchain-funcs
MY_P=linux-${PV}
S=${WORKDIR}/${MY_P}
DESCRIPTION="Developer documentation generated from the Linux kernel"
HOMEPAGE="http://www.kernel.org/"
SRC_URI="mirror://kernel/linux/kernel/v3.x/${MY_P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh
~sparc ~x86"
IUSE="html"
DEPEND="app-text/docbook-sgml-utils
app-text/xmlto
sys-apps/sed
~app-text/docbook-xml-dtd-4.1.2"
RDEPEND=""
src_prepare() {
sed -i \
-e "s:db2:docbook2:g" \
-e "s:/usr/local/man:${D}/usr/share/man:g" \
"${S}"/Documentation/DocBook/Makefile
# fix for parallel build as per bug #248337
sed -i \
-e "s:\$(Q)\$(MAKE) \$(build)=Documentation\/DocBook
\$@:+\$(Q)\$(MAKE) \$(build)=Documentation\/DocBook \$@:" \
"${S}"/Makefile
}
src_compile() {
local ARCH=$(tc-arch-kernel)
unset KBUILD_OUTPUT
emake mandocs || die "make mandocs failed"
if use html; then
emake htmldocs || die "make htmldocs failed"
fi
}
src_install() {
local file
local ARCH=$(tc-arch-kernel)
unset KBUILD_OUTPUT
make installmandocs || die "make installmandocs failed"
if use html; then
# There is no subdirectory named "index"
dohtml Documentation/DocBook/index.html
rm Documentation/DocBook/index.html
for file in Documentation/DocBook/*.html; do
dohtml -r ${file/\.html/}
done
fi
}
1.1 sys-kernel/linux-docs/linux-docs-3.17.1.ebuild
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/linux-docs/linux-docs-3.17.1.ebuild?rev=1.1&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/linux-docs/linux-docs-3.17.1.ebuild?rev=1.1&content-type=text/plain
Index: linux-docs-3.17.1.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header:
/var/cvsroot/gentoo-x86/sys-kernel/linux-docs/linux-docs-3.17.1.ebuild,v 1.1
2014/10/17 13:15:09 mpagano Exp $
EAPI=5
inherit toolchain-funcs
MY_P=linux-${PV}
S=${WORKDIR}/${MY_P}
DESCRIPTION="Developer documentation generated from the Linux kernel"
HOMEPAGE="http://www.kernel.org/"
SRC_URI="mirror://kernel/linux/kernel/v3.x/${MY_P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh
~sparc ~x86"
IUSE="html"
DEPEND="app-text/docbook-sgml-utils
app-text/xmlto
sys-apps/sed
~app-text/docbook-xml-dtd-4.1.2"
RDEPEND=""
src_prepare() {
sed -i \
-e "s:db2:docbook2:g" \
-e "s:/usr/local/man:${D}/usr/share/man:g" \
"${S}"/Documentation/DocBook/Makefile
# fix for parallel build as per bug #248337
sed -i \
-e "s:\$(Q)\$(MAKE) \$(build)=Documentation\/DocBook
\$@:+\$(Q)\$(MAKE) \$(build)=Documentation\/DocBook \$@:" \
"${S}"/Makefile
}
src_compile() {
local ARCH=$(tc-arch-kernel)
unset KBUILD_OUTPUT
emake mandocs || die "make mandocs failed"
if use html; then
emake htmldocs || die "make htmldocs failed"
fi
}
src_install() {
local file
local ARCH=$(tc-arch-kernel)
unset KBUILD_OUTPUT
make installmandocs || die "make installmandocs failed"
if use html; then
# There is no subdirectory named "index"
dohtml Documentation/DocBook/index.html
rm Documentation/DocBook/index.html
for file in Documentation/DocBook/*.html; do
dohtml -r ${file/\.html/}
done
fi
}
1.1 sys-kernel/linux-docs/linux-docs-3.14.22.ebuild
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/linux-docs/linux-docs-3.14.22.ebuild?rev=1.1&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/linux-docs/linux-docs-3.14.22.ebuild?rev=1.1&content-type=text/plain
Index: linux-docs-3.14.22.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header:
/var/cvsroot/gentoo-x86/sys-kernel/linux-docs/linux-docs-3.14.22.ebuild,v 1.1
2014/10/17 13:15:09 mpagano Exp $
EAPI=5
inherit toolchain-funcs
MY_P=linux-${PV}
S=${WORKDIR}/${MY_P}
DESCRIPTION="Developer documentation generated from the Linux kernel"
HOMEPAGE="http://www.kernel.org/"
SRC_URI="mirror://kernel/linux/kernel/v3.x/${MY_P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh
~sparc ~x86"
IUSE="html"
DEPEND="app-text/docbook-sgml-utils
app-text/xmlto
sys-apps/sed
~app-text/docbook-xml-dtd-4.1.2"
RDEPEND=""
src_prepare() {
sed -i \
-e "s:db2:docbook2:g" \
-e "s:/usr/local/man:${D}/usr/share/man:g" \
"${S}"/Documentation/DocBook/Makefile
# fix for parallel build as per bug #248337
sed -i \
-e "s:\$(Q)\$(MAKE) \$(build)=Documentation\/DocBook
\$@:+\$(Q)\$(MAKE) \$(build)=Documentation\/DocBook \$@:" \
"${S}"/Makefile
}
src_compile() {
local ARCH=$(tc-arch-kernel)
unset KBUILD_OUTPUT
emake mandocs || die "make mandocs failed"
if use html; then
emake htmldocs || die "make htmldocs failed"
fi
}
src_install() {
local file
local ARCH=$(tc-arch-kernel)
unset KBUILD_OUTPUT
make installmandocs || die "make installmandocs failed"
if use html; then
# There is no subdirectory named "index"
dohtml Documentation/DocBook/index.html
rm Documentation/DocBook/index.html
for file in Documentation/DocBook/*.html; do
dohtml -r ${file/\.html/}
done
fi
}
1.1 sys-kernel/linux-docs/linux-docs-3.16.6.ebuild
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/linux-docs/linux-docs-3.16.6.ebuild?rev=1.1&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-kernel/linux-docs/linux-docs-3.16.6.ebuild?rev=1.1&content-type=text/plain
Index: linux-docs-3.16.6.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header:
/var/cvsroot/gentoo-x86/sys-kernel/linux-docs/linux-docs-3.16.6.ebuild,v 1.1
2014/10/17 13:15:09 mpagano Exp $
EAPI=5
inherit toolchain-funcs
MY_P=linux-${PV}
S=${WORKDIR}/${MY_P}
DESCRIPTION="Developer documentation generated from the Linux kernel"
HOMEPAGE="http://www.kernel.org/"
SRC_URI="mirror://kernel/linux/kernel/v3.x/${MY_P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh
~sparc ~x86"
IUSE="html"
DEPEND="app-text/docbook-sgml-utils
app-text/xmlto
sys-apps/sed
~app-text/docbook-xml-dtd-4.1.2"
RDEPEND=""
src_prepare() {
sed -i \
-e "s:db2:docbook2:g" \
-e "s:/usr/local/man:${D}/usr/share/man:g" \
"${S}"/Documentation/DocBook/Makefile
# fix for parallel build as per bug #248337
sed -i \
-e "s:\$(Q)\$(MAKE) \$(build)=Documentation\/DocBook
\$@:+\$(Q)\$(MAKE) \$(build)=Documentation\/DocBook \$@:" \
"${S}"/Makefile
}
src_compile() {
local ARCH=$(tc-arch-kernel)
unset KBUILD_OUTPUT
emake mandocs || die "make mandocs failed"
if use html; then
emake htmldocs || die "make htmldocs failed"
fi
}
src_install() {
local file
local ARCH=$(tc-arch-kernel)
unset KBUILD_OUTPUT
make installmandocs || die "make installmandocs failed"
if use html; then
# There is no subdirectory named "index"
dohtml Documentation/DocBook/index.html
rm Documentation/DocBook/index.html
for file in Documentation/DocBook/*.html; do
dohtml -r ${file/\.html/}
done
fi
}