Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/orc/
Date: Sun, 15 Jul 2018 23:13:22
Message-Id: 1531696103.d42ab7c34254cfe17f0613a1d6bd42d17aa935e1.leio@gentoo
1 commit: d42ab7c34254cfe17f0613a1d6bd42d17aa935e1
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 15 23:08:23 2018 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 15 23:08:23 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d42ab7c3
7
8 dev-lang/orc: remove old
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 dev-lang/orc/Manifest | 1 -
13 dev-lang/orc/orc-0.4.27.ebuild | 70 ------------------------------------------
14 2 files changed, 71 deletions(-)
15
16 diff --git a/dev-lang/orc/Manifest b/dev-lang/orc/Manifest
17 index fbfa36563fb..f2dacd4a135 100644
18 --- a/dev-lang/orc/Manifest
19 +++ b/dev-lang/orc/Manifest
20 @@ -1,2 +1 @@
21 -DIST orc-0.4.27.tar.xz 465116 BLAKE2B 1289867c84371797350847e1ae71a002ec250abc56611fe6ec8d263ff64e17ed8d990f45adfbf6d1a0c7e98c2e6ec30c3135e433f00e9fa53cecce359f5b2d72 SHA512 5ca0b4553e370ea7c95acfc8248d9d568dafc9577041d47f52c7d0945456c534e18e0e80d28df9301d6deac1ea4f8ea6a51ca373b32927c8724846d8ec1f73e8
22 DIST orc-0.4.28.tar.xz 469460 BLAKE2B 86fa2d10a33fbffbb2b96827adbddaa81d0baa8135fe21fba338cbcd25a1c1e853873ec1c4ef5c0a32d66ba95f855f1f16ddbc32f68a89e5a98c75b9b0261aa7 SHA512 2ae3100e7d0c03eba9a8a10a8924da4d729e1967b63e5dfdf88c4aee907d7ece82c782d74f4cb7e28a366dd74ce5e1ddc6e2b971e5a2f879b0501cc313b93410
23
24 diff --git a/dev-lang/orc/orc-0.4.27.ebuild b/dev-lang/orc/orc-0.4.27.ebuild
25 deleted file mode 100644
26 index abf52976ec5..00000000000
27 --- a/dev-lang/orc/orc-0.4.27.ebuild
28 +++ /dev/null
29 @@ -1,70 +0,0 @@
30 -# Copyright 1999-2017 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -inherit eutils flag-o-matic multilib-minimal pax-utils
36 -
37 -DESCRIPTION="The Oil Runtime Compiler, a just-in-time compiler for array operations"
38 -HOMEPAGE="https://gstreamer.freedesktop.org/"
39 -SRC_URI="https://gstreamer.freedesktop.org/src/${PN}/${P}.tar.xz"
40 -
41 -LICENSE="BSD BSD-2"
42 -SLOT="0"
43 -KEYWORDS="amd64 arm ~arm64 hppa ppc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
44 -IUSE="examples pax_kernel static-libs"
45 -
46 -RDEPEND=""
47 -DEPEND="${RDEPEND}
48 - app-arch/xz-utils
49 - >=dev-util/gtk-doc-am-1.12
50 -"
51 -
52 -src_prepare() {
53 - default
54 -
55 - # Do not build examples
56 - sed -e '/SUBDIRS/ s:examples::' \
57 - -i Makefile.am Makefile.in || die
58 -}
59 -
60 -multilib_src_configure() {
61 - # any optimisation on PPC/Darwin yields in a complaint from the assembler
62 - # Parameter error: r0 not allowed for parameter %lu (code as 0 not r0)
63 - # the same for Intel/Darwin, although the error message there is different
64 - # but along the same lines
65 - [[ ${CHOST} == *-darwin* ]] && filter-flags -O*
66 -
67 - # FIXME: handle backends per arch ?
68 - ECONF_SOURCE="${S}" econf \
69 - --disable-gtk-doc \
70 - --enable-backend=all \
71 - $(use_enable static-libs static)
72 -}
73 -
74 -multilib_src_install() {
75 - emake DESTDIR="${D}" install
76 - prune_libtool_files --all
77 -
78 - if use pax_kernel; then
79 - pax-mark m "${ED}"usr/bin/orc-bugreport
80 - pax-mark m "${ED}"usr/bin/orcc
81 - pax-mark m "${ED}"usr/$(get_libdir)/liborc*.so*
82 - fi
83 -}
84 -
85 -multilib_src_install_all() {
86 - einstalldocs
87 -
88 - if use examples; then
89 - insinto /usr/share/doc/${PF}/examples
90 - doins examples/{*.c,*.orc}
91 - fi
92 -}
93 -
94 -pkg_postinst() {
95 - if use pax_kernel; then
96 - ewarn "Please run \"revdep-pax\" after installation".
97 - ewarn "It's provided by sys-apps/elfix."
98 - fi
99 -}