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-libs/ntdb/, profiles/
Date: Tue, 28 May 2019 13:30:52
Message-Id: 1559050199.4a06eeaded4265920d8ecf96728a2ae5f570a44a.mgorny@gentoo
1 commit: 4a06eeaded4265920d8ecf96728a2ae5f570a44a
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 28 13:29:59 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue May 28 13:29:59 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a06eead
7
8 sys-libs/ntdb: Remove last-rited pkg
9
10 Closes: https://bugs.gentoo.org/683926
11 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
12
13 profiles/package.mask | 4 ----
14 sys-libs/ntdb/Manifest | 1 -
15 sys-libs/ntdb/metadata.xml | 12 ----------
16 sys-libs/ntdb/ntdb-1.0-r1.ebuild | 52 ----------------------------------------
17 4 files changed, 69 deletions(-)
18
19 diff --git a/profiles/package.mask b/profiles/package.mask
20 index 80a2f39888e..6c0aa37330a 100644
21 --- a/profiles/package.mask
22 +++ b/profiles/package.mask
23 @@ -393,10 +393,6 @@ mail-filter/zdkimfilter
24 =net-libs/nodejs-11.15.0
25 =net-libs/nodejs-12*
26
27 -# Lars Wendler <polynomial-c@g.o> (21 Apr 2019)
28 -# Masked for removal (bug #683926)
29 -sys-libs/ntdb
30 -
31 # Miroslav Šulc <fordfrog@g.o> (19 Apr 2019)
32 # Depends on >=virtual/{jdk,jre}-11 which is masked
33 =www-servers/tomcat-9.0.19
34
35 diff --git a/sys-libs/ntdb/Manifest b/sys-libs/ntdb/Manifest
36 deleted file mode 100644
37 index 9653d9280d5..00000000000
38 --- a/sys-libs/ntdb/Manifest
39 +++ /dev/null
40 @@ -1 +0,0 @@
41 -DIST ntdb-1.0.tar.gz 794585 BLAKE2B 80c8673238850f164b7190ef56e40f29da58378512172b272038864901d53b0b33f0843d78d47bdee4e420beafd07cbb72a16df1bbb8639641a9db45c3eb51e2 SHA512 27f550f85a7bfd105d4115b55f9919f1871964f576a8470688fe8040fb9e2be209246a291d78f55c61cf0920238d7f41917ad7e2d44b202382b3ea47c8c97100
42
43 diff --git a/sys-libs/ntdb/metadata.xml b/sys-libs/ntdb/metadata.xml
44 deleted file mode 100644
45 index f05d1f26683..00000000000
46 --- a/sys-libs/ntdb/metadata.xml
47 +++ /dev/null
48 @@ -1,12 +0,0 @@
49 -<?xml version="1.0" encoding="UTF-8"?>
50 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
51 -<pkgmetadata>
52 - <maintainer type="person">
53 - <email>polynomial-c@g.o</email>
54 - <name>Lars Wendler</name>
55 - </maintainer>
56 -<maintainer type="project">
57 - <email>samba@g.o</email>
58 - <name>Samba</name>
59 - </maintainer>
60 -</pkgmetadata>
61
62 diff --git a/sys-libs/ntdb/ntdb-1.0-r1.ebuild b/sys-libs/ntdb/ntdb-1.0-r1.ebuild
63 deleted file mode 100644
64 index 56c66267cf5..00000000000
65 --- a/sys-libs/ntdb/ntdb-1.0-r1.ebuild
66 +++ /dev/null
67 @@ -1,52 +0,0 @@
68 -# Copyright 1999-2017 Gentoo Foundation
69 -# Distributed under the terms of the GNU General Public License v2
70 -
71 -EAPI=5
72 -
73 -PYTHON_COMPAT=( python2_7 )
74 -PYTHON_REQ_USE="threads(+)"
75 -
76 -inherit waf-utils multilib-minimal python-single-r1
77 -
78 -DESCRIPTION="A not-so trivial keyword/data database system"
79 -HOMEPAGE="https://tdb.samba.org/"
80 -SRC_URI="https://www.samba.org/ftp/tdb/${P}.tar.gz"
81 -
82 -LICENSE="GPL-3"
83 -SLOT="0"
84 -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86"
85 -IUSE="python"
86 -
87 -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
88 -
89 -RDEPEND="python? ( ${PYTHON_DEPS} )"
90 -DEPEND="!<net-fs/samba-4.1.7
91 - ${RDEPEND}
92 - ${PYTHON_DEPS}
93 - app-text/docbook-xml-dtd:4.2"
94 -
95 -WAF_BINARY="${S}/buildtools/bin/waf"
96 -
97 -src_prepare() {
98 - multilib_copy_sources
99 -}
100 -
101 -multilib_src_configure() {
102 - local extra_opts=()
103 - if ! multilib_is_native_abi || ! use python; then
104 - extra_opts+=( --disable-python )
105 - fi
106 -
107 - waf-utils_src_configure \
108 - "${extra_opts[@]}"
109 -}
110 -
111 -multilib_src_test() {
112 - # the default src_test runs 'make test' and 'make check', letting
113 - # the tests fail occasionally (reason: unknown)
114 - emake check
115 -}
116 -
117 -multilib_src_install() {
118 - waf-utils_src_install
119 -}