Gentoo Archives: gentoo-commits

From: Sebastian Pipping <sping@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/uriparser/
Date: Fri, 25 Jun 2021 14:08:12
Message-Id: 1624629989.6216e4f1a631c85ad45c3378f660bc0ca3eda44a.sping@gentoo
1 commit: 6216e4f1a631c85ad45c3378f660bc0ca3eda44a
2 Author: Sebastian Pipping <sping <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jun 25 14:06:29 2021 +0000
4 Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 25 14:06:29 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6216e4f1
7
8 dev-libs/uriparser: Drop old
9
10 Signed-off-by: Sebastian Pipping <sping <AT> gentoo.org>
11 Package-Manager: Portage-3.0.19, Repoman-3.0.3
12
13 dev-libs/uriparser/Manifest | 1 -
14 dev-libs/uriparser/uriparser-0.9.4.ebuild | 51 -------------------------------
15 2 files changed, 52 deletions(-)
16
17 diff --git a/dev-libs/uriparser/Manifest b/dev-libs/uriparser/Manifest
18 index 6451abdb82d..20959f1b111 100644
19 --- a/dev-libs/uriparser/Manifest
20 +++ b/dev-libs/uriparser/Manifest
21 @@ -1,2 +1 @@
22 -DIST uriparser-0.9.4.tar.bz2 174551 BLAKE2B b95f270685757052fca02fae0a029f08de8bc14bea733bd56e62f0bcdc6592f015453ed38c87171cea9054618328dc94a512ff816519f70594653451f751c4f8 SHA512 c5e671ce2589aacd2c562e66facbee9e1cad3101e840f40b7ebdb917fa669e0c3ae7ed75623692f601655c0b82c10bcfe3086ad628beac8f965e613228e67ecd
23 DIST uriparser-0.9.5.tar.bz2 176501 BLAKE2B 5ec3d993e60c62f2478e4012354cf82f2e4155ea1a69e9a3d6611d1765fe0f3b8ba5382c928852a5fd215f51ebb0688c9d713e9f1208f18f5ce2d8b8f0fb1dca SHA512 44d36a33565b7724d721e2b5e689530227bc87e609ee78f1d23e7353480191313b1b91039c7a046566d14b83eb320c97d75e74c8ef4841e1b9c8559c3feddb34
24
25 diff --git a/dev-libs/uriparser/uriparser-0.9.4.ebuild b/dev-libs/uriparser/uriparser-0.9.4.ebuild
26 deleted file mode 100644
27 index 5eefe6b42f0..00000000000
28 --- a/dev-libs/uriparser/uriparser-0.9.4.ebuild
29 +++ /dev/null
30 @@ -1,51 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -inherit cmake
37 -
38 -DESCRIPTION="Strictly RFC 3986 compliant URI parsing library in C"
39 -HOMEPAGE="https://uriparser.github.io/"
40 -SRC_URI="https://github.com/${PN}/${PN}/releases/download/${P}/${P}.tar.bz2"
41 -
42 -LICENSE="BSD"
43 -SLOT="0"
44 -KEYWORDS="amd64 ~arm ~arm64 ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
45 -IUSE="doc qt5 test unicode"
46 -
47 -REQUIRED_USE="test? ( unicode )"
48 -RESTRICT="!test? ( test )"
49 -
50 -DEPEND="
51 - test? ( >=dev-cpp/gtest-1.8.1 )
52 -"
53 -BDEPEND="
54 - virtual/pkgconfig
55 - doc? (
56 - >=app-doc/doxygen-1.5.8
57 - qt5? ( dev-qt/qthelp:5 )
58 - )
59 -"
60 -
61 -DOCS=( AUTHORS ChangeLog THANKS )
62 -
63 -src_configure() {
64 - local mycmakeargs=(
65 - -DURIPARSER_BUILD_CHAR=ON
66 - -DURIPARSER_BUILD_DOCS=$(usex doc ON OFF)
67 - -DURIPARSER_BUILD_TESTS=$(usex test ON OFF)
68 - -DURIPARSER_BUILD_TOOLS=ON
69 - -DURIPARSER_BUILD_WCHAR_T=$(usex unicode ON OFF)
70 - )
71 - cmake_src_configure
72 -}
73 -
74 -src_install() {
75 - cmake_src_install
76 -
77 - if use doc && use qt5; then
78 - dodoc "${BUILD_DIR}"/doc/*.qch
79 - docompress -x /usr/share/doc/${PF}/${P}.qch
80 - fi
81 -}