Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/man-pages-pl/
Date: Wed, 09 May 2018 11:25:24
Message-Id: 1525864807.5d6169cb8776a3fbb2deb08284f44b3adda58f8a.mgorny@gentoo
1 commit: 5d6169cb8776a3fbb2deb08284f44b3adda58f8a
2 Author: Marcin Kowalski <marcin.kowalski <AT> assecobs <DOT> pl>
3 AuthorDate: Wed Apr 18 12:29:41 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed May 9 11:20:07 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d6169cb
7
8 app-i18n/man-pages-pl: bump to 0.7
9
10 Closes: https://bugs.gentoo.org/612048
11 Closes: https://github.com/gentoo/gentoo/pull/8055
12
13 app-i18n/man-pages-pl/Manifest | 1 +
14 app-i18n/man-pages-pl/man-pages-pl-0.7.ebuild | 29 +++++++++++++++++++++++++++
15 2 files changed, 30 insertions(+)
16
17 diff --git a/app-i18n/man-pages-pl/Manifest b/app-i18n/man-pages-pl/Manifest
18 index f648b9e25a6..de4f167c736 100644
19 --- a/app-i18n/man-pages-pl/Manifest
20 +++ b/app-i18n/man-pages-pl/Manifest
21 @@ -1,2 +1,3 @@
22 DIST man-PL28-06-2007.tar.gz 3436680 BLAKE2B 2f86479fa37ddf8653b3b5252485df10384c7204e7c4642ea8cda7f61d203edd5d1a473d183c1e27064ff6cadd314a546b78c63ec9f57d8f5b94875f0e259333 SHA512 cc5de191b5dc7963018db8c2e7094b8e4e6db0dc0afefaa3a36e73a0bc70a3889d68ce78c4a900862dc5590a00bf57a3897050ed25c45d2f6f33765858cc4c8b
23 DIST manpages-pl-0.6.tar.bz2 3513993 BLAKE2B 3447da36b9f49b726286575d858ce74043c6a4d3954ed0329dd06a5ba796c873dc7fcfb6f905998c4b1776eeb5f5f5069236d97b4429a0d75786703857a8f0b5 SHA512 ff1841ae4e1d01af46f6f3e28ad1543d3f46ce9580665a9b4a538e96e87f77ec5b36ad26c7dc38ac816dd3c864643d47e0f809c8382e56d0c1418209849eeffa
24 +DIST manpages-pl-0.7.tar.bz2 3791061 BLAKE2B 81809280c78ecafc67c59a5353a589c119fe6b590c9d655dae4accb5247a178df9f3f186822834f3426b0d41ed9ab83f335204eb654acf2cf5a472dd7ca4cafb SHA512 79293e1bbfbaed5f97e63cb86fc1b445ea960fdee96567899ba9f6836d4188e0d80d4788180c29fdca3d358359b6fd3768c195857657819534942ece2c43694b
25
26 diff --git a/app-i18n/man-pages-pl/man-pages-pl-0.7.ebuild b/app-i18n/man-pages-pl/man-pages-pl-0.7.ebuild
27 new file mode 100644
28 index 00000000000..5e35393fd84
29 --- /dev/null
30 +++ b/app-i18n/man-pages-pl/man-pages-pl-0.7.ebuild
31 @@ -0,0 +1,29 @@
32 +# Copyright 1999-2018 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +
37 +MY_PKG=manpages-pl-${PV}
38 +
39 +DESCRIPTION="A collection of Polish translations of Linux manual pages"
40 +HOMEPAGE="https://sourceforge.net/projects/manpages-pl/"
41 +SRC_URI="mirror://sourceforge/manpages-pl/${MY_PKG}.tar.bz2"
42 +
43 +LICENSE="GPL-2"
44 +SLOT="0"
45 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
46 +
47 +DOCS=( AUTHORS README )
48 +
49 +S="${WORKDIR}/${MY_PKG}"
50 +
51 +src_prepare() {
52 + default
53 +
54 + #mans provided by other packages
55 + rm generated/man1/groups.1 po/man1/groups.1.po || die "Failed to clean up duplicates from build directory!"
56 +}
57 +
58 +src_install() {
59 + emake install DESTDIR="${D}" COMPRESSOR=:
60 +}