Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/poedit/
Date: Sun, 27 May 2018 08:44:26
Message-Id: 1527410648.efa46c0b98968d865f43fc94947eb4c8fe2c7524.leio@gentoo
1 commit: efa46c0b98968d865f43fc94947eb4c8fe2c7524
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 27 08:28:09 2018 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Sun May 27 08:44:08 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efa46c0b
7
8 app-i18n/poedit: remove old
9
10 Package-Manager: Portage-2.3.28, Repoman-2.3.9
11
12 app-i18n/poedit/Manifest | 1 -
13 app-i18n/poedit/poedit-1.8.5.ebuild | 72 -------------------------------------
14 2 files changed, 73 deletions(-)
15
16 diff --git a/app-i18n/poedit/Manifest b/app-i18n/poedit/Manifest
17 index 32d3d47c50b..d72703eb266 100644
18 --- a/app-i18n/poedit/Manifest
19 +++ b/app-i18n/poedit/Manifest
20 @@ -1,2 +1 @@
21 -DIST poedit-1.8.5.tar.gz 2404829 BLAKE2B f39a7e2e14dab9c0ed0b761a3feb271c8eb0e3b1fdc09c77c6a3dfaaa499e3419881e0959f5a53b07754810adc1518efd4c56a1bb4fd490c1e2a405a7d44ef1c SHA512 87eae2bcedc07eefb097edf263db10b3947956cfa504eddb259e3c3cfed6215ad0da4517fe5132b61041c39a7fbabd298ca42582570295bacbbd62d5ffc6f6a7
22 DIST poedit-2.0.6.tar.gz 2511777 BLAKE2B f28e8940310e80ee15fc70f10492e061097f88b62938f8a85194170fd107100c739dbfd1c1cf12516e6fe3d2a9b282986a4368615cf8fcb2ac889075fe64cc6b SHA512 e7beceeb4cd9e4e0269666d634e48622f175a7788219288ba6349a5b15f8360a929018480372e3eecb664d7d2e3093d6788640651696323d6dda0f0780aa5cd2
23
24 diff --git a/app-i18n/poedit/poedit-1.8.5.ebuild b/app-i18n/poedit/poedit-1.8.5.ebuild
25 deleted file mode 100644
26 index 7cce16eeb1c..00000000000
27 --- a/app-i18n/poedit/poedit-1.8.5.ebuild
28 +++ /dev/null
29 @@ -1,72 +0,0 @@
30 -# Copyright 1999-2018 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=5
34 -WX_GTK_VER=3.0
35 -
36 -PLOCALES="af am an ar ast az be@latin be bg bn br bs ca ca@valencia ckb co cs da de el en_GB eo es et eu fa fi fr fur fy_NL ga gl he hi hr hu hy id is it ja kab ka kk ko ku ky lt lv mk mn mr ms nb ne nl nn oc pa pl pt_BR pt_PT ro ru sk sl sq sr sv ta tg th tr tt ug uk ur uz vi wa zh_CN zh_TW"
37 -
38 -inherit eutils flag-o-matic gnome2-utils l10n wxwidgets xdg-utils
39 -
40 -DESCRIPTION="GUI editor for gettext translations files"
41 -HOMEPAGE="https://poedit.net"
42 -SRC_URI="https://github.com/vslavik/${PN}/releases/download/v${PV}-oss/${P}.tar.gz"
43 -
44 -LICENSE="MIT"
45 -SLOT="0"
46 -KEYWORDS="amd64 hppa ppc ppc64 sparc x86"
47 -IUSE=""
48 -
49 -# db/expat req for legacytm (backwards support for pre 1.6)
50 -# we currently have 1.5.5 in stable so this is enabled
51 -RDEPEND="
52 - app-text/gtkspell:2
53 - dev-cpp/lucene++
54 - dev-libs/boost:=[nls]
55 - dev-libs/expat
56 - dev-libs/icu:=
57 - || (
58 - =sys-libs/db-5*:*[cxx]
59 - =sys-libs/db-4*:*[cxx]
60 - )
61 - <sys-libs/db-6:=[cxx]
62 - x11-libs/gtk+:2
63 - x11-libs/wxGTK:${WX_GTK_VER}[X]
64 - "
65 -
66 -DEPEND="${RDEPEND}
67 - virtual/pkgconfig"
68 -
69 -src_prepare() {
70 - my_rm_loc() {
71 - sed -i -e "/^POEDIT_LINGUAS = /s: ${1}::" locales/Makefile.in || die
72 - rm "locales/${1}.mo" || die
73 - }
74 - l10n_find_plocales_changes 'locales' '' '.mo'
75 - l10n_for_each_disabled_locale_do my_rm_loc
76 -
77 - append-flags -Wno-deprecated-declarations
78 -}
79 -
80 -src_configure() {
81 - econf --without-cpprest --without-cld2
82 -}
83 -
84 -src_install() {
85 - emake DESTDIR="${D}" install
86 - dodoc AUTHORS NEWS README
87 -}
88 -
89 -pkg_preinst() {
90 - gnome2_icon_savelist
91 -}
92 -
93 -pkg_postinst() {
94 - xdg_desktop_database_update
95 - gnome2_icon_cache_update
96 -}
97 -
98 -pkg_postrm() {
99 - xdg_desktop_database_update
100 - gnome2_icon_cache_update
101 -}