Gentoo Archives: gentoo-commits

From: William Hubbs <williamh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblouis/
Date: Sat, 31 Aug 2019 18:15:10
Message-Id: 1567275276.3eb861b01356813e65b4e39f22e7a23c4029ac68.williamh@gentoo
1 commit: 3eb861b01356813e65b4e39f22e7a23c4029ac68
2 Author: William Hubbs <williamh <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 31 18:12:57 2019 +0000
4 Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 31 18:14:36 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3eb861b0
7
8 dev-libs/liblouis: remove old version
9
10 Bug: https://bugs.gentoo.org/661150
11 Package-Manager: Portage-2.3.69, Repoman-2.3.16
12 Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
13
14 dev-libs/liblouis/Manifest | 1 -
15 dev-libs/liblouis/liblouis-2.5.3.ebuild | 64 ---------------------------------
16 2 files changed, 65 deletions(-)
17
18 diff --git a/dev-libs/liblouis/Manifest b/dev-libs/liblouis/Manifest
19 index 3ffb22baa60..3bfe01c31b4 100644
20 --- a/dev-libs/liblouis/Manifest
21 +++ b/dev-libs/liblouis/Manifest
22 @@ -1,2 +1 @@
23 -DIST liblouis-2.5.3.tar.gz 3785311 BLAKE2B 15130dfa6c32b9c12b6ffccf4a8b2185bcc8fe483e8822d4fdd9f1c1cd0c3e8f33325419f75a9eb23e1414743fe01b44041c836a06e4ff040708b95998251854 SHA512 5aa65f3a0b7cef37fe7cd8ccf09df8c40f38d183a88d1be9f1251b40406204e57a8d95716bf1de3569b09b640be613cc3e0bd0e05dc4d544face00bfc8d75ac7
24 DIST liblouis-3.10.0.tar.gz 13335626 BLAKE2B a4c7f81f15c202c0e1030119f805e218dd51852af57065c441241f4e182828036372750231726802adbb835a7af05ccbf029316da376f3f89dd62ae9d833f838 SHA512 e05d42ba352b1336b10ecd3d320c2bed33250cd636767ecd77837530577c537de4f4e806ddaf1ed7e8b9ec766c84adf6ab045595235c1020f2bb31ba791f3833
25
26 diff --git a/dev-libs/liblouis/liblouis-2.5.3.ebuild b/dev-libs/liblouis/liblouis-2.5.3.ebuild
27 deleted file mode 100644
28 index d1c9eb1331e..00000000000
29 --- a/dev-libs/liblouis/liblouis-2.5.3.ebuild
30 +++ /dev/null
31 @@ -1,64 +0,0 @@
32 -# Copyright 1999-2019 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI="5"
36 -
37 -PYTHON_COMPAT=( python{2_7,3_5,3_6} )
38 -PYTHON_REQ_USE='wide-unicode(+)'
39 -DISTUTILS_OPTIONAL=1
40 -inherit distutils-r1
41 -
42 -DESCRIPTION="An open-source braille translator and back-translator"
43 -HOMEPAGE="https://github.com/liblouis/liblouis"
44 -SRC_URI="https://liblouis.googlecode.com/files/${P}.tar.gz"
45 -
46 -LICENSE="LGPL-3"
47 -SLOT="0"
48 -KEYWORDS="alpha amd64 ~arm ~arm64 ia64 ppc ppc64 sparc x86"
49 -IUSE="python"
50 -RDEPEND="python? ( ${PYTHON_DEPS} )"
51 -DEPEND="${RDEPEND}"
52 -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
53 -
54 -src_prepare() {
55 - default
56 -
57 - if use python; then
58 - pushd python > /dev/null
59 - distutils-r1_src_prepare
60 - popd > /dev/null
61 - fi
62 -}
63 -
64 -src_configure() {
65 - econf --enable-ucs4
66 -}
67 -
68 -src_compile() {
69 - default
70 -
71 - if use python; then
72 - pushd python > /dev/null
73 - # setup.py imports liblouis to get the version number,
74 - # and this causes the shared library to be dlopened
75 - # at build-time. Hack around it with LD_PRELOAD.
76 - # Thanks ArchLinux.
77 - LD_PRELOAD+=':../liblouis/.libs/liblouis.so'
78 - distutils-r1_src_compile
79 - popd > /dev/null
80 - fi
81 -}
82 -
83 -src_install() {
84 - emake install DESTDIR="${D}" || die
85 -
86 - if use python; then
87 - pushd python > /dev/null
88 - LD_PRELOAD+=':../liblouis/.libs/liblouis.so' \
89 - distutils-r1_src_install
90 - popd > /dev/null
91 - fi
92 -
93 - dodoc README AUTHORS NEWS ChangeLog || die
94 - dohtml doc/liblouis.html
95 -}