Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/appstream/
Date: Mon, 01 Apr 2019 10:21:58
Message-Id: 1554114100.9fabed5cc059b2556ec35786393ec204b1cce6d3.kensington@gentoo
1 commit: 9fabed5cc059b2556ec35786393ec204b1cce6d3
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Mon Apr 1 10:21:30 2019 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Mon Apr 1 10:21:40 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fabed5c
7
8 dev-libs/appstream: remove 0.12.3 and 0.12.4
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Signed-off-by: Michael Palimaka <kensington <AT> gentoo.org>
12
13 dev-libs/appstream/Manifest | 2 -
14 dev-libs/appstream/appstream-0.12.3.ebuild | 66 ----------------------------
15 dev-libs/appstream/appstream-0.12.4.ebuild | 70 ------------------------------
16 3 files changed, 138 deletions(-)
17
18 diff --git a/dev-libs/appstream/Manifest b/dev-libs/appstream/Manifest
19 index 4a56dad69c7..bc0b7d0a17e 100644
20 --- a/dev-libs/appstream/Manifest
21 +++ b/dev-libs/appstream/Manifest
22 @@ -1,3 +1 @@
23 -DIST AppStream-0.12.3.tar.xz 1940064 BLAKE2B a0160c4a922abfe315bdbfe6b7b32fea8d5eda5631347be4a39dcf102660ad26a3f40c5fed9dd0bdfb1b91956780ff7cf58e61d7f38b03d2f48a5bf67f2871f6 SHA512 3d54bb499e4056d341ffde2878549011708e6699b3ec58756ef2e4080864279ff5e5003224fcbad601007fd9296bb9ed062da7843e3e02272837ecc5d4c802f9
24 -DIST AppStream-0.12.4.tar.xz 1944416 BLAKE2B 3a315b167084f9f6d8f50a86fa2853444a12beb63e3c7e77bf97c861e1a31dd7fd5ff9c4406d0da1b551b1fbb366531740cd4efdde354b857613507c06eabe62 SHA512 8a7a10b0c577a22b89e0b5505415d5b799f3316b4c87b0a2a9281e7b2672e041225896ac847781504b2828c5ed8a250e3a0558355df838d58e174a984b04e3d0
25 DIST AppStream-0.12.6.tar.xz 1953604 BLAKE2B 28b03a935b8c203f2ac2c52c1de8317cc899f2b81b00e83e2eb858dbd185a985ce608ba3f6b1c35f084b4ee91946a4870c89d6b0c0a4c6fd32a938558e3997f1 SHA512 c19cd89ba39aff5afa2ff6d5fca72581a8624463c33011b11036526db98392ff5aa6c0f599682e90fdee29b8732538cf96c20b66965016b96f60b3f899d722bb
26
27 diff --git a/dev-libs/appstream/appstream-0.12.3.ebuild b/dev-libs/appstream/appstream-0.12.3.ebuild
28 deleted file mode 100644
29 index 71095f75c02..00000000000
30 --- a/dev-libs/appstream/appstream-0.12.3.ebuild
31 +++ /dev/null
32 @@ -1,66 +0,0 @@
33 -# Copyright 1999-2018 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=6
37 -
38 -inherit meson xdg-utils
39 -
40 -if [[ ${PV} = 9999 ]]; then
41 - inherit git-r3
42 - EGIT_REPO_URI="https://github.com/ximion/${PN}"
43 -else
44 - MY_PN="AppStream"
45 - SRC_URI="https://www.freedesktop.org/software/appstream/releases/${MY_PN}-${PV}.tar.xz"
46 - KEYWORDS="amd64 ~arm ~arm64 x86"
47 - S="${WORKDIR}/${MY_PN}-${PV}"
48 -fi
49 -
50 -DESCRIPTION="Cross-distro effort for providing metadata for software in the Linux ecosystem"
51 -HOMEPAGE="https://www.freedesktop.org/wiki/Distributions/AppStream/"
52 -
53 -LICENSE="LGPL-2.1+ GPL-2+"
54 -# check as_api_level
55 -SLOT="0/4"
56 -IUSE="apt +introspection qt5 test"
57 -
58 -RDEPEND="
59 - dev-libs/glib:2
60 - dev-libs/libxml2:2
61 - dev-libs/libyaml
62 - dev-libs/snowball-stemmer
63 - introspection? ( >=dev-libs/gobject-introspection-1.56:= )
64 - qt5? ( dev-qt/qtcore:5 )
65 -"
66 -DEPEND="${RDEPEND}
67 - app-text/docbook-xml-dtd:4.5
68 - dev-libs/appstream-glib
69 - dev-util/itstool
70 - >=dev-util/meson-0.42.0
71 - >=sys-devel/gettext-0.19.8
72 - qt5? (
73 - dev-qt/linguist-tools:5
74 - test? ( dev-qt/qttest:5 )
75 - )
76 -"
77 -
78 -src_prepare() {
79 - default
80 - sed -e "/^as_doc_target_dir/s/appstream/${PF}/" -i docs/meson.build || die
81 -}
82 -
83 -src_configure() {
84 - xdg_environment_reset
85 -
86 - local emesonargs=(
87 - -Dapidocs=false
88 - -Ddocs=false
89 - -Dmaintainer=false
90 - -Dstemming=true
91 - -Dvapi=false
92 - -Dapt-support=$(usex apt true false)
93 - -Dgir=$(usex introspection true false)
94 - -Dqt=$(usex qt5 true false)
95 - )
96 -
97 - meson_src_configure
98 -}
99
100 diff --git a/dev-libs/appstream/appstream-0.12.4.ebuild b/dev-libs/appstream/appstream-0.12.4.ebuild
101 deleted file mode 100644
102 index b64ac55e048..00000000000
103 --- a/dev-libs/appstream/appstream-0.12.4.ebuild
104 +++ /dev/null
105 @@ -1,70 +0,0 @@
106 -# Copyright 1999-2019 Gentoo Authors
107 -# Distributed under the terms of the GNU General Public License v2
108 -
109 -EAPI=7
110 -
111 -inherit meson xdg-utils
112 -
113 -if [[ ${PV} = 9999 ]]; then
114 - inherit git-r3
115 - EGIT_REPO_URI="https://github.com/ximion/${PN}"
116 -else
117 - MY_PN="AppStream"
118 - SRC_URI="https://www.freedesktop.org/software/appstream/releases/${MY_PN}-${PV}.tar.xz"
119 - KEYWORDS="~amd64 ~arm ~arm64 ~x86"
120 - S="${WORKDIR}/${MY_PN}-${PV}"
121 -fi
122 -
123 -DESCRIPTION="Cross-distro effort for providing metadata for software in the Linux ecosystem"
124 -HOMEPAGE="https://www.freedesktop.org/wiki/Distributions/AppStream/"
125 -
126 -LICENSE="LGPL-2.1+ GPL-2+"
127 -# check as_api_level
128 -SLOT="0/4"
129 -IUSE="apt +introspection qt5 test"
130 -
131 -BDEPEND="
132 - app-text/docbook-xml-dtd:4.5
133 - dev-libs/appstream-glib
134 - dev-util/itstool
135 - >=dev-util/meson-0.42.0
136 - >=sys-devel/gettext-0.19.8
137 - test? (
138 - dev-qt/linguist-tools:5
139 - qt5? ( dev-qt/qttest:5 )
140 - )
141 -"
142 -DEPEND="
143 - dev-libs/glib:2
144 - dev-libs/libxml2:2
145 - dev-libs/libyaml
146 - dev-libs/snowball-stemmer
147 - introspection? ( >=dev-libs/gobject-introspection-1.56:= )
148 - qt5? ( dev-qt/qtcore:5 )
149 -"
150 -RDEPEND="${DEPEND}"
151 -
152 -src_prepare() {
153 - default
154 - sed -e "/^as_doc_target_dir/s/appstream/${PF}/" -i docs/meson.build || die
155 - if ! use test; then
156 - sed -e "/^subdir.*tests/s/^/#DONT /" -i {,qt/}meson.build || die # bug 675944
157 - fi
158 -}
159 -
160 -src_configure() {
161 - xdg_environment_reset
162 -
163 - local emesonargs=(
164 - -Dapidocs=false
165 - -Ddocs=false
166 - -Dmaintainer=false
167 - -Dstemming=true
168 - -Dvapi=false
169 - -Dapt-support=$(usex apt true false)
170 - -Dgir=$(usex introspection true false)
171 - -Dqt=$(usex qt5 true false)
172 - )
173 -
174 - meson_src_configure
175 -}