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: Sat, 06 Jan 2018 14:15:56
Message-Id: 1515248124.e144bdbef9bd5b642accfffee6941cb8e1eadda0.leio@gentoo
1 commit: e144bdbef9bd5b642accfffee6941cb8e1eadda0
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 5 19:37:33 2018 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 6 14:15:24 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e144bdbe
7
8 dev-lang/orc: remove old
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 dev-lang/orc/Manifest | 1 -
13 dev-lang/orc/orc-0.4.26-r1.ebuild | 70 ---------------------------------------
14 2 files changed, 71 deletions(-)
15
16 diff --git a/dev-lang/orc/Manifest b/dev-lang/orc/Manifest
17 index 75de708f6cc..54d1a2cacf8 100644
18 --- a/dev-lang/orc/Manifest
19 +++ b/dev-lang/orc/Manifest
20 @@ -1,2 +1 @@
21 -DIST orc-0.4.26.tar.xz 465768 BLAKE2B ad43fb948ccb8e0b3a34a68a14b4baf8541c137643de9f5cf61c2e8e67a1e0cc627f55f00bc7f23c6cb5c8b41fa809aef15ba4a977d4ab29d92549d6c2b8e634 SHA512 c0b02d4f00b7cc45c5952a4db4f63629bbcbc4d338bbe69fd2743198f2b346bf437742a7a8e1d308f765caf1b43f7fab75add7ebf69897bc0e335a169eef7326
22 DIST orc-0.4.27.tar.xz 465116 BLAKE2B 1289867c84371797350847e1ae71a002ec250abc56611fe6ec8d263ff64e17ed8d990f45adfbf6d1a0c7e98c2e6ec30c3135e433f00e9fa53cecce359f5b2d72 SHA512 5ca0b4553e370ea7c95acfc8248d9d568dafc9577041d47f52c7d0945456c534e18e0e80d28df9301d6deac1ea4f8ea6a51ca373b32927c8724846d8ec1f73e8
23
24 diff --git a/dev-lang/orc/orc-0.4.26-r1.ebuild b/dev-lang/orc/orc-0.4.26-r1.ebuild
25 deleted file mode 100644
26 index abf52976ec5..00000000000
27 --- a/dev-lang/orc/orc-0.4.26-r1.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 -}