Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/gtksourceviewmm/
Date: Sun, 30 May 2021 21:11:08
Message-Id: 1622408974.4dff2259b65d50438416e51b50b5117a20916f60.asturm@gentoo
1 commit: 4dff2259b65d50438416e51b50b5117a20916f60
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 15 15:46:26 2021 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun May 30 21:09:34 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4dff2259
7
8 dev-cpp/gtksourceviewmm: Drop 2.10.3-r2 (SLOT 2.0)
9
10 Bug: https://bugs.gentoo.org/770898
11 Package-Manager: Portage-3.0.18, Repoman-3.0.3
12 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
13
14 dev-cpp/gtksourceviewmm/Manifest | 1 -
15 .../gtksourceviewmm-2.10.3-r2.ebuild | 48 ----------------------
16 2 files changed, 49 deletions(-)
17
18 diff --git a/dev-cpp/gtksourceviewmm/Manifest b/dev-cpp/gtksourceviewmm/Manifest
19 index 03c7cb13684..6c54f767117 100644
20 --- a/dev-cpp/gtksourceviewmm/Manifest
21 +++ b/dev-cpp/gtksourceviewmm/Manifest
22 @@ -1,2 +1 @@
23 -DIST gtksourceviewmm-2.10.3.tar.xz 742184 BLAKE2B bfd61f3ca29afa4b01fef651849189983fbc64c95c0258c19812b6fddfb2f9e793a1a684e44e88384dcb24632a2c247f4b6ec400f2ef3d19f878064e017d986b SHA512 e6ddc4f585251f68e48cf0ea2c33bce02a90031efcd885105a82837715d659a317ee0845b476fc54c1c4c71b518df41ce494505af1524db6acb733e51f44e6ca
24 DIST gtksourceviewmm-3.18.0.tar.xz 1079780 BLAKE2B 973f06a3baed8d5ab541b2f179f773391fe562cab2fceffd0366748acafc4bfc1d4717d969bdd5a5716f892ff497b89338f8b3cd085aebb9c033a40b29d3c0b4 SHA512 143de4a650f2a6090efeba359e78d1f4982519a9e7a2be838f9888732c57dcc42db8b6ab45bd23ccd261d8f17bc743846a3bb572566f233cee9b4238c017c64c
25
26 diff --git a/dev-cpp/gtksourceviewmm/gtksourceviewmm-2.10.3-r2.ebuild b/dev-cpp/gtksourceviewmm/gtksourceviewmm-2.10.3-r2.ebuild
27 deleted file mode 100644
28 index 9df83973b55..00000000000
29 --- a/dev-cpp/gtksourceviewmm/gtksourceviewmm-2.10.3-r2.ebuild
30 +++ /dev/null
31 @@ -1,48 +0,0 @@
32 -# Copyright 1999-2021 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI="5"
36 -GCONF_DEBUG="no"
37 -GNOME2_LA_PUNT="yes"
38 -
39 -inherit flag-o-matic gnome2
40 -
41 -DESCRIPTION="C++ bindings for gtksourceview"
42 -HOMEPAGE="https://wiki.gnome.org/Projects/GtkSourceView"
43 -
44 -KEYWORDS="amd64 ppc x86"
45 -IUSE="doc"
46 -SLOT="2.0"
47 -LICENSE="LGPL-2.1"
48 -
49 -RDEPEND="
50 - >=dev-cpp/gtkmm-2.12:2.4
51 - dev-cpp/atkmm:0
52 - >=x11-libs/gtksourceview-2.10.0:2.0
53 - !>=dev-cpp/libgtksourceviewmm-1
54 -"
55 -DEPEND="${RDEPEND}
56 - virtual/pkgconfig
57 - doc? ( app-doc/doxygen )
58 -"
59 -
60 -src_prepare() {
61 - gnome2_src_prepare
62 -
63 - # Remove docs from SUBDIRS so that docs are not installed, as
64 - # we handle it in src_install.
65 - sed -i -e 's|^\(SUBDIRS =.*\)$(doc_subdirs)\(.*\)|\1\2|' Makefile.in || \
66 - die "sed Makefile.in failed"
67 -}
68 -
69 -src_configure() {
70 - append-cxxflags -std=c++11
71 - gnome2_src_configure \
72 - $(use_enable doc documentation) \
73 - --disable-static
74 -}
75 -
76 -src_install() {
77 - gnome2_src_install
78 - use doc && dohtml -r docs/reference/html/*
79 -}