Gentoo Archives: gentoo-commits

From: Chris Reffett <creffett@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/xiphos/
Date: Sat, 30 Dec 2017 02:26:15
Message-Id: 1514600657.c50cd1c2ce55512a78aa4122de4cf3e34cb60a9d.creffett@gentoo
1 commit: c50cd1c2ce55512a78aa4122de4cf3e34cb60a9d
2 Author: Chris Reffett <creffett <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 30 02:24:17 2017 +0000
4 Commit: Chris Reffett <creffett <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 30 02:24:17 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c50cd1c2
7
8 app-text/xiphos: Remove old
9
10 Closes: https://bugs.gentoo.org/639638
11 Package-Manager: Portage-2.3.19, Repoman-2.3.6
12
13 app-text/xiphos/Manifest | 1 -
14 app-text/xiphos/xiphos-4.0.4-r1.ebuild | 89 ----------------------------------
15 app-text/xiphos/xiphos-4.0.4.ebuild | 88 ---------------------------------
16 3 files changed, 178 deletions(-)
17
18 diff --git a/app-text/xiphos/Manifest b/app-text/xiphos/Manifest
19 index 35841fce143..8399d748651 100644
20 --- a/app-text/xiphos/Manifest
21 +++ b/app-text/xiphos/Manifest
22 @@ -1,2 +1 @@
23 -DIST xiphos-4.0.4-20150830.tar.gz 8040173 BLAKE2B d70641d1ead8bde745fe64a758df2f441bf38e1c1b55ea78eecfb60cbb9d7e41c120c87fb4cade81ed17e2f3530b9dcc04ebe7150aca5faea5bf5a47b991a6c9 SHA512 337503ee4cc6139ec8724266f3c9c0ce5d17518c48f7aab03ea8213165054854c8dd7317ff9e1b9097ece12292b52f1c8002684c00c5a7b43c5b4810edd6ecda
24 DIST xiphos-4.0.6a-20170820.tar.gz 30584893 BLAKE2B a3b76543c8d1c0d03fcc2f567751df49230ef1d35019bec98ef726edb6a519424d0c773d4ff6f7eb3ad714f56af6dac19fc1ac2dc29560b03e3ec3ea9a46ccfd SHA512 a0577521c6b9033b74b3b0a0fd7a88222de00dc2e9db100d66e1bb60bc117173badd26c47d2e896ffa167c52a263c9bf9046d650a9b4ae497bec6164bfb0a29b
25
26 diff --git a/app-text/xiphos/xiphos-4.0.4-r1.ebuild b/app-text/xiphos/xiphos-4.0.4-r1.ebuild
27 deleted file mode 100644
28 index a68d218a8e3..00000000000
29 --- a/app-text/xiphos/xiphos-4.0.4-r1.ebuild
30 +++ /dev/null
31 @@ -1,89 +0,0 @@
32 -# Copyright 1999-2016 Gentoo Foundation
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=5
36 -PYTHON_COMPAT=( python2_7 )
37 -inherit flag-o-matic gnome2-utils python-single-r1 toolchain-funcs
38 -
39 -MY_PV="${PV}-20150830"
40 -MY_P="${PN}-${MY_PV}"
41 -DESCRIPTION="A bible study frontend for Sword (formerly known as GnomeSword)"
42 -HOMEPAGE="http://xiphos.org/"
43 -SRC_URI="mirror://sourceforge/gnomesword/${MY_P}.tar.gz"
44 -
45 -LICENSE="GPL-2 FDL-1.1 LGPL-2 MIT MPL-1.1"
46 -SLOT="0"
47 -KEYWORDS="~amd64"
48 -IUSE="dbus debug"
49 -
50 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
51 -
52 -RDEPEND="${PYTHON_DEPS}
53 - >=app-text/sword-1.7.4
54 - >=dev-libs/glib-2[${PYTHON_USEDEP}]
55 - dev-libs/libxml2[${PYTHON_USEDEP}]
56 - gnome-base/gconf[${PYTHON_USEDEP}]
57 - gnome-extra/gtkhtml:4.0
58 - >=gnome-extra/libgsf-1.14
59 - net-libs/webkit-gtk:4
60 - x11-libs/gtk+:3
61 - dbus? ( dev-libs/dbus-glib )
62 -"
63 -DEPEND="${RDEPEND}
64 - app-text/docbook2X
65 - app-text/gnome-doc-utils[${PYTHON_USEDEP}]
66 - app-text/rarian
67 - dev-libs/libxslt[${PYTHON_USEDEP}]
68 - dev-util/intltool
69 - net-libs/biblesync
70 - virtual/pkgconfig
71 - sys-devel/gettext
72 -"
73 -
74 -pkg_setup() {
75 - python-single-r1_pkg_setup
76 -}
77 -
78 -src_prepare() {
79 - sed -i \
80 - -e '/FLAGS_DEBUG/s:-g:-Wall:' \
81 - -e '/FLAGS_RELEASE/s:-O2:-Wall:' \
82 - wscript || die
83 -}
84 -
85 -src_configure() {
86 - append-cppflags -DNO_SWORD_SET_RENDER_NOTE_NUMBERS=1
87 -
88 - tc-export AR CC CPP CXX RANLIB
89 -
90 - CCFLAGS="${CFLAGS}" \
91 - LINKFLAGS="${LDFLAGS}" \
92 - SGML2MAN="$(type -P docbook2man.pl)" \
93 - ./waf -v \
94 - --prefix=/usr \
95 - --gtk=3 \
96 - --enable-webkit2 \
97 - --debug-level=$(use debug && echo debug || echo release) \
98 - $(use dbus || echo --disable-dbus) \
99 - configure || die
100 -}
101 -
102 -src_compile() {
103 - ./waf -v build || die
104 -}
105 -
106 -src_install() {
107 - ./waf -v --destdir="${D}" install || die
108 -
109 - doman ${PN}.1
110 - dodoc AUTHORS ChangeLog README RELEASE-NOTES TODO
111 -
112 - dodoc Xiphos.ogg
113 - docompress -x /usr/share/doc/${PF}/Xiphos.ogg
114 -
115 - rm -rf "${ED}"/usr/share/doc/${PN}
116 -}
117 -
118 -pkg_preinst() { gnome2_icon_savelist; }
119 -pkg_postinst() { gnome2_icon_cache_update; }
120 -pkg_postrm() { gnome2_icon_cache_update; }
121
122 diff --git a/app-text/xiphos/xiphos-4.0.4.ebuild b/app-text/xiphos/xiphos-4.0.4.ebuild
123 deleted file mode 100644
124 index 12931a93f01..00000000000
125 --- a/app-text/xiphos/xiphos-4.0.4.ebuild
126 +++ /dev/null
127 @@ -1,88 +0,0 @@
128 -# Copyright 1999-2017 Gentoo Foundation
129 -# Distributed under the terms of the GNU General Public License v2
130 -
131 -EAPI=5
132 -PYTHON_COMPAT=( python2_7 )
133 -inherit flag-o-matic gnome2-utils python-single-r1 toolchain-funcs
134 -
135 -MY_PV="${PV}-20150830"
136 -MY_P="${PN}-${MY_PV}"
137 -DESCRIPTION="A bible study frontend for Sword (formerly known as GnomeSword)"
138 -HOMEPAGE="http://xiphos.org/"
139 -SRC_URI="mirror://sourceforge/gnomesword/${MY_P}.tar.gz"
140 -
141 -LICENSE="GPL-2 FDL-1.1 LGPL-2 MIT MPL-1.1"
142 -SLOT="0"
143 -KEYWORDS="amd64"
144 -IUSE="dbus debug"
145 -
146 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
147 -
148 -RDEPEND="${PYTHON_DEPS}
149 - >=app-text/sword-1.7.4
150 - >=dev-libs/glib-2[${PYTHON_USEDEP}]
151 - dev-libs/libxml2[${PYTHON_USEDEP}]
152 - gnome-base/gconf[${PYTHON_USEDEP}]
153 - gnome-extra/gtkhtml:4.0
154 - >=gnome-extra/libgsf-1.14
155 - net-libs/webkit-gtk:3
156 - x11-libs/gtk+:3
157 - dbus? ( dev-libs/dbus-glib )
158 -"
159 -DEPEND="${RDEPEND}
160 - app-text/docbook2X
161 - app-text/gnome-doc-utils[${PYTHON_USEDEP}]
162 - app-text/rarian
163 - dev-libs/libxslt[${PYTHON_USEDEP}]
164 - dev-util/intltool
165 - net-libs/biblesync
166 - virtual/pkgconfig
167 - sys-devel/gettext
168 -"
169 -
170 -pkg_setup() {
171 - python-single-r1_pkg_setup
172 -}
173 -
174 -src_prepare() {
175 - sed -i \
176 - -e '/FLAGS_DEBUG/s:-g:-Wall:' \
177 - -e '/FLAGS_RELEASE/s:-O2:-Wall:' \
178 - wscript || die
179 -}
180 -
181 -src_configure() {
182 - append-cppflags -DNO_SWORD_SET_RENDER_NOTE_NUMBERS=1
183 -
184 - tc-export AR CC CPP CXX RANLIB
185 -
186 - CCFLAGS="${CFLAGS}" \
187 - LINKFLAGS="${LDFLAGS}" \
188 - SGML2MAN="$(type -P docbook2man.pl)" \
189 - ./waf -v \
190 - --prefix=/usr \
191 - --gtk=3 \
192 - --debug-level=$(use debug && echo debug || echo release) \
193 - $(use dbus || echo --disable-dbus) \
194 - configure || die
195 -}
196 -
197 -src_compile() {
198 - ./waf -v build || die
199 -}
200 -
201 -src_install() {
202 - ./waf -v --destdir="${D}" install || die
203 -
204 - doman ${PN}.1
205 - dodoc AUTHORS ChangeLog README RELEASE-NOTES TODO
206 -
207 - dodoc Xiphos.ogg
208 - docompress -x /usr/share/doc/${PF}/Xiphos.ogg
209 -
210 - rm -rf "${ED}"/usr/share/doc/${PN}
211 -}
212 -
213 -pkg_preinst() { gnome2_icon_savelist; }
214 -pkg_postinst() { gnome2_icon_cache_update; }
215 -pkg_postrm() { gnome2_icon_cache_update; }