Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/openais/, profiles/
Date: Sun, 31 May 2020 10:30:42
Message-Id: 1590920994.ab48cfb785a05bb74c75214b8964b30ec59a7dab.mgorny@gentoo
1 commit: ab48cfb785a05bb74c75214b8964b30ec59a7dab
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 31 10:27:23 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun May 31 10:29:54 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab48cfb7
7
8 sys-cluster/openais: Remove last-rited pkg
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 profiles/package.mask | 4 ---
13 sys-cluster/openais/Manifest | 1 -
14 sys-cluster/openais/metadata.xml | 17 ----------
15 sys-cluster/openais/openais-1.1.4-r1.ebuild | 50 -----------------------------
16 4 files changed, 72 deletions(-)
17
18 diff --git a/profiles/package.mask b/profiles/package.mask
19 index 6b71fb77872..b264bec5770 100644
20 --- a/profiles/package.mask
21 +++ b/profiles/package.mask
22 @@ -222,10 +222,6 @@ x11-misc/wmakerconf
23 # Masked for testing
24 >=dev-libs/gjs-1.64
25
26 -# Mikle Kolyada <zlogene@g.o> (2020-04-28)
27 -# Dead upstream. Removal in 30 days
28 -sys-cluster/openais
29 -
30 # Michał Górny <mgorny@g.o> (2020-04-26)
31 # Unmaintained. Stuck on Python 3.6. No revdeps.
32 # Removal in 30 days. Bug #719604.
33
34 diff --git a/sys-cluster/openais/Manifest b/sys-cluster/openais/Manifest
35 deleted file mode 100644
36 index 13e2ed4be5a..00000000000
37 --- a/sys-cluster/openais/Manifest
38 +++ /dev/null
39 @@ -1 +0,0 @@
40 -DIST openais-1.1.4.tar.gz 566559 BLAKE2B 47857bd4257a12af612311d422c861f6ce97988c06fbe7aa677f91342be3d4e27cd584fe8947eccc0559e07f6a09f9db8e270194b809d68495735abfa9b5a14f SHA512 9dab2d0c3ac1996fd76385cc89071dc84268065e6992642fefe005962e8367170681fed626c5bd863a8ea24abe57e2b8b3eddc20bc38b14104c729c599f3c79e
41
42 diff --git a/sys-cluster/openais/metadata.xml b/sys-cluster/openais/metadata.xml
43 deleted file mode 100644
44 index c08a18d0927..00000000000
45 --- a/sys-cluster/openais/metadata.xml
46 +++ /dev/null
47 @@ -1,17 +0,0 @@
48 -<?xml version="1.0" encoding="UTF-8"?>
49 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
50 -<pkgmetadata>
51 - <maintainer type="project">
52 - <email>cluster@g.o</email>
53 - <name>Gentoo Cluster Project</name>
54 - </maintainer>
55 - <longdescription>
56 - The OpenAIS Standards Based Cluster Framework is an OSI Certified implementation of
57 - the Service Availability Forum Application Interface Specification (AIS).
58 - The Application Interface Specification is a software API and policies which are
59 - used to develop applications that maintain service during faults.
60 - Restarting and failover of applications is also provided for those
61 - deploying applications which may not be modified. The OpenAIS software is built
62 - to operate as plugins to the Corosync Cluster Engine.
63 - </longdescription>
64 -</pkgmetadata>
65
66 diff --git a/sys-cluster/openais/openais-1.1.4-r1.ebuild b/sys-cluster/openais/openais-1.1.4-r1.ebuild
67 deleted file mode 100644
68 index 891ec6e819d..00000000000
69 --- a/sys-cluster/openais/openais-1.1.4-r1.ebuild
70 +++ /dev/null
71 @@ -1,50 +0,0 @@
72 -# Copyright 1999-2018 Gentoo Foundation
73 -# Distributed under the terms of the GNU General Public License v2
74 -
75 -EAPI=6
76 -
77 -inherit autotools
78 -
79 -DESCRIPTION="Open Application Interface Specification cluster framework"
80 -HOMEPAGE="http://www.openais.org/"
81 -SRC_URI="ftp://ftp:${PN}.org@${PN}.org/downloads/${P}/${P}.tar.gz"
82 -
83 -LICENSE="BSD public-domain"
84 -SLOT="0"
85 -KEYWORDS="amd64 ~arm64 hppa x86"
86 -IUSE="static-libs"
87 -
88 -RDEPEND="<sys-cluster/corosync-2.0.0"
89 -DEPEND="${RDEPEND}
90 - virtual/pkgconfig"
91 -
92 -DOCS=( "${S}/AUTHORS" "${S}/README.amf" )
93 -
94 -src_prepare() {
95 - default
96 -
97 - # respect CFLAGS
98 - sed -i -e "s/\$OPT_CFLAGS \$GDB_FLAGS//" configure.ac || die
99 - # respect LDFLAGS
100 - sed -i -e "s/\$(CFLAGS) -shared/\$(CFLAGS) \$(LDFLAGS) -shared/" \
101 - services/Makefile.am || die
102 - # don't install docs
103 - sed -i -e "/^dist_doc/d" Makefile.am || die
104 -
105 - eautoreconf
106 -}
107 -
108 -src_configure() {
109 - econf \
110 - --localstatedir="${EPREFIX}"/var
111 -}
112 -
113 -src_install() {
114 - default
115 -
116 - rm -rf "${D}"/etc/init.d/openais || die
117 -
118 - if ! use static-libs; then
119 - find "${D}" -name '*.la' -delete || die "Pruning failed"
120 - fi
121 -}