Gentoo Archives: gentoo-commits

From: "Anthony G. Basile (blueness)" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/man-pages: man-pages-4.01.ebuild ChangeLog
Date: Thu, 23 Jul 2015 22:31:18
Message-Id: 20150723223108.705ABBE@oystercatcher.gentoo.org
1 blueness 15/07/23 22:31:08
2
3 Modified: ChangeLog
4 Added: man-pages-4.01.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
9
10 Revision Changes Path
11 1.248 sys-apps/man-pages/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/man-pages/ChangeLog?rev=1.248&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/man-pages/ChangeLog?rev=1.248&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/man-pages/ChangeLog?r1=1.247&r2=1.248
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-apps/man-pages/ChangeLog,v
20 retrieving revision 1.247
21 retrieving revision 1.248
22 diff -u -r1.247 -r1.248
23 --- ChangeLog 10 May 2015 16:32:21 -0000 1.247
24 +++ ChangeLog 23 Jul 2015 22:31:08 -0000 1.248
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-apps/man-pages
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/man-pages/ChangeLog,v 1.247 2015/05/10 16:32:21 vapier Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/man-pages/ChangeLog,v 1.248 2015/07/23 22:31:08 blueness Exp $
30 +
31 +*man-pages-4.01 (23 Jul 2015)
32 +
33 + 23 Jul 2015; Anthony G. Basile <blueness@g.o> +man-pages-4.01.ebuild:
34 + Version bump.
35
36 10 May 2015; Mike Frysinger <vapier@g.o> man-pages-4.00.ebuild:
37 Block older attr that installed attr(5) man page #548900 by Albert W. Hopkins.
38
39
40
41 1.1 sys-apps/man-pages/man-pages-4.01.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/man-pages/man-pages-4.01.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/man-pages/man-pages-4.01.ebuild?rev=1.1&content-type=text/plain
45
46 Index: man-pages-4.01.ebuild
47 ===================================================================
48 # Copyright 1999-2015 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-apps/man-pages/man-pages-4.01.ebuild,v 1.1 2015/07/23 22:31:08 blueness Exp $
51
52 EAPI=4
53
54 GENTOO_PATCH=2
55
56 DESCRIPTION="A somewhat comprehensive collection of Linux man pages"
57 HOMEPAGE="http://www.kernel.org/doc/man-pages/"
58 SRC_URI="mirror://kernel/linux/docs/man-pages/Archive/${P}.tar.xz
59 mirror://kernel/linux/docs/man-pages/${P}.tar.xz
60 http://man7.org/linux/man-pages/download/${P}.tar.xz
61 mirror://gentoo/man-pages-gentoo-${GENTOO_PATCH}.tar.bz2
62 http://dev.gentoo.org/~cardoe/files/man-pages-gentoo-${GENTOO_PATCH}.tar.bz2"
63
64 LICENSE="man-pages GPL-2+ BSD"
65 SLOT="0"
66 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux"
67 IUSE_LINGUAS=" da de fr it ja nl pl ro ru zh_CN"
68 IUSE="nls ${IUSE_LINGUAS// / linguas_}"
69 RESTRICT="binchecks"
70
71 # Block packages that used to install colliding man pages #341953 #548900
72 RDEPEND="virtual/man
73 !<sys-apps/attr-2.4.47-r2
74 !<dev-libs/libaio-0.3.109-r2"
75 PDEPEND="nls? (
76 linguas_da? ( app-i18n/man-pages-da )
77 linguas_de? ( app-i18n/man-pages-de )
78 linguas_fr? ( app-i18n/man-pages-fr )
79 linguas_it? ( app-i18n/man-pages-it )
80 linguas_ja? ( app-i18n/man-pages-ja )
81 linguas_nl? ( app-i18n/man-pages-nl )
82 linguas_pl? ( app-i18n/man-pages-pl )
83 linguas_ro? ( app-i18n/man-pages-ro )
84 linguas_ru? ( app-i18n/man-pages-ru )
85 linguas_zh_CN? ( app-i18n/man-pages-zh_CN )
86 )
87 sys-apps/man-pages-posix"
88
89 src_configure() { :; }
90
91 src_compile() { :; }
92
93 src_install() {
94 emake install prefix="${EPREFIX}/usr" DESTDIR="${D}"
95 dodoc man-pages-*.Announce README Changes*
96
97 # Override with Gentoo specific or additional Gentoo pages
98 cd "${WORKDIR}"/man-pages-gentoo
99 doman */*
100 dodoc README.Gentoo
101 }