Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-office/pybliographer/
Date: Wed, 04 Sep 2019 19:47:35
Message-Id: 1567626426.ae3b5ca2f610f901fe076640cafe41d469ff174c.pacho@gentoo
1 commit: ae3b5ca2f610f901fe076640cafe41d469ff174c
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 4 19:47:06 2019 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 4 19:47:06 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae3b5ca2
7
8 app-office/pybliographer: Drop old
9
10 Package-Manager: Portage-2.3.71, Repoman-2.3.17
11 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
12
13 app-office/pybliographer/Manifest | 1 -
14 .../pybliographer/pybliographer-1.2.18.ebuild | 70 ----------------------
15 2 files changed, 71 deletions(-)
16
17 diff --git a/app-office/pybliographer/Manifest b/app-office/pybliographer/Manifest
18 index 2a4a379f6b5..5fb761b3048 100644
19 --- a/app-office/pybliographer/Manifest
20 +++ b/app-office/pybliographer/Manifest
21 @@ -1,2 +1 @@
22 -DIST pybliographer-1.2.18.tar.gz 2174899 BLAKE2B 4723a01d386a1da6f1de6b730e4e38ef1dedfeb7a72310f40fd7475710fd92236bdb484e102bf93340c8b826ddda0353e143cc741cd6b57acbedd82e40e4181b SHA512 b4a97d7e0aec3b4d7c68169d4d8799911b4da0591e819a67429c45d2b451be6be129214631770cf26f2083a935b55575d35c4f3b11ea74a9b39e55feea376204
23 DIST pybliographer-1.4.0.tar.xz 1834356 BLAKE2B ba4892f707c2da3f007cb916b158258a59a41cc631e49deacdd784213d506d8e4286c463afb4148c7cb30ed7084ae1a60eee0e62d1bfe13a26bd9fd70a9e60f8 SHA512 aef50e9815b9ff28618ca72c0b50033a24a1bcaa91c9fdbf3014371bb9b4bcaf8fcdffb0fa38e59d37ccfdb4c1383cd601c73aa2e34f4078c514ae9de7341f2a
24
25 diff --git a/app-office/pybliographer/pybliographer-1.2.18.ebuild b/app-office/pybliographer/pybliographer-1.2.18.ebuild
26 deleted file mode 100644
27 index d70519a480d..00000000000
28 --- a/app-office/pybliographer/pybliographer-1.2.18.ebuild
29 +++ /dev/null
30 @@ -1,70 +0,0 @@
31 -# Copyright 1999-2019 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -GNOME2_EAUTORECONF="yes"
36 -PYTHON_COMPAT=( python2_7 )
37 -
38 -inherit gnome2 python-single-r1
39 -
40 -DESCRIPTION="Pybliographer is a tool for working with bibliographic databases"
41 -HOMEPAGE="https://pybliographer.org"
42 -SRC_URI="mirror://sourceforge/pybliographer/${P}.tar.gz"
43 -
44 -LICENSE="GPL-2"
45 -SLOT="0"
46 -KEYWORDS="amd64 ppc x86"
47 -
48 -IUSE=""
49 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
50 -
51 -RDEPEND="${PYTHON_DEPS}
52 - >=app-text/recode-3.6-r1
53 - app-text/rarian
54 - dev-libs/glib:2
55 - dev-python/gconf-python:2[${PYTHON_USEDEP}]
56 - dev-python/gnome-vfs-python:2[${PYTHON_USEDEP}]
57 - dev-python/libgnome-python:2[${PYTHON_USEDEP}]
58 - dev-python/pygobject:2[${PYTHON_USEDEP}]
59 - dev-python/pygtk:2[${PYTHON_USEDEP}]
60 - >=dev-python/python-bibtex-1.2.5[${PYTHON_USEDEP}]
61 -"
62 -DEPEND="${RDEPEND}
63 - app-text/yelp-tools
64 -"
65 -
66 -# Tests broken for a long time, recheck in 1.4, bug #678444
67 -RESTRICT="test"
68 -
69 -src_prepare() {
70 - # Workaround for bug 487204.
71 - sed -i \
72 - -e 's:\$(srcdir)/::g' \
73 - tests/Makefile.am || die "sed failed"
74 -
75 - # Install Python modules into site-packages directories.
76 - find -name Makefile.am | xargs sed -i \
77 - -e "/^pybdir[[:space:]]*=[[:space:]]*/s:\$(datadir):$(python_get_sitedir):" || die "sed failed"
78 - sed -i \
79 - -e "s:\${datadir}/@PACKAGE@:$(python_get_sitedir)/@PACKAGE@:" \
80 - etc/installer.in || die "sed failed"
81 - sed -i \
82 - -e "s:gladedir = \$(datadir):gladedir = $(python_get_sitedir):" \
83 - Pyblio/GnomeUI/glade/Makefile.am || die "sed failed"
84 -
85 - # Fix shebang manually as otherwise python_fix_shebang gets confused
86 - sed -i -e 's: @python_path@:/usr/bin/python2:' pybliographer.py || die
87 -
88 - gnome2_src_prepare
89 -}
90 -
91 -src_configure() {
92 - gnome2_src_configure \
93 - --disable-depchecks \
94 - --disable-update-desktop-database
95 -}
96 -
97 -src_install() {
98 - gnome2_src_install
99 - python_fix_shebang "${D}"
100 -}