Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-wireless/osmocom-bb/
Date: Thu, 03 Dec 2020 06:34:22
Message-Id: 1606977170.b158e8480bedfaf5e5b9ab59948fad8711a7a88f.juippis@gentoo
1 commit: b158e8480bedfaf5e5b9ab59948fad8711a7a88f
2 Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 3 06:32:50 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 3 06:32:50 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b158e848
7
8 net-wireless/osmocom-bb: remove last-rited package
9
10 Bug: https://bugs.gentoo.org/752462
11 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
12
13 net-wireless/osmocom-bb/metadata.xml | 11 -------
14 net-wireless/osmocom-bb/osmocom-bb-9999.ebuild | 45 --------------------------
15 2 files changed, 56 deletions(-)
16
17 diff --git a/net-wireless/osmocom-bb/metadata.xml b/net-wireless/osmocom-bb/metadata.xml
18 deleted file mode 100644
19 index ca60be1c4b8..00000000000
20 --- a/net-wireless/osmocom-bb/metadata.xml
21 +++ /dev/null
22 @@ -1,11 +0,0 @@
23 -<?xml version="1.0" encoding="UTF-8"?>
24 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
25 -<pkgmetadata>
26 - <maintainer type="project">
27 - <email>radio@g.o</email>
28 - <name>Radio</name>
29 - </maintainer>
30 - <use>
31 - <flag name="transmit">Enable transmission capabilities.</flag>
32 - </use>
33 -</pkgmetadata>
34
35 diff --git a/net-wireless/osmocom-bb/osmocom-bb-9999.ebuild b/net-wireless/osmocom-bb/osmocom-bb-9999.ebuild
36 deleted file mode 100644
37 index be88f95016e..00000000000
38 --- a/net-wireless/osmocom-bb/osmocom-bb-9999.ebuild
39 +++ /dev/null
40 @@ -1,45 +0,0 @@
41 -# Copyright 1999-2018 Gentoo Foundation
42 -# Distributed under the terms of the GNU General Public License v2
43 -
44 -EAPI=5
45 -
46 -inherit autotools flag-o-matic git-r3
47 -
48 -DESCRIPTION="OsmocomBB MS-side GSM Protocol stack (L1, L2, L3) excluding firmware"
49 -HOMEPAGE="http://bb.osmocom.org"
50 -EGIT_REPO_URI="git://git.osmocom.org/osmocom-bb.git"
51 -
52 -LICENSE="GPL-2"
53 -SLOT="0"
54 -KEYWORDS=""
55 -IUSE="+transmit"
56 -
57 -DEPEND="net-libs/libosmocore"
58 -RDEPEND="${DEPEND}"
59 -
60 -src_prepare() {
61 - use transmit && append-cflags "-DCONFIG_TX_ENABLE"
62 -
63 - cd src/host/osmocon && eautoreconf && cd ../../.. || die
64 - cd src/host/gsmmap && eautoreconf && cd ../../.. || die
65 - cd src/host/layer23 && eautoreconf && cd ../../.. || die
66 -}
67 -
68 -src_configure() {
69 - cd src/host/osmocon && econf && cd ../../.. || die
70 - cd src/host/gsmmap && econf && cd ../../.. || die
71 - cd src/host/layer23 && econf && cd ../../.. || die
72 -}
73 -
74 -src_compile() {
75 - cd src/host/osmocon && emake && cd ../../.. || die
76 - cd src/host/gsmmap && emake && cd ../../.. || die
77 - cd src/host/layer23 && emake && cd ../../.. || die
78 -
79 -}
80 -
81 -src_install() {
82 - cd src/host/osmocon && emake install DESTDIR="${D}" && cd ../../.. || die
83 - cd src/host/gsmmap && emake install DESTDIR="${D}" && cd ../../.. || die
84 - cd src/host/layer23 && emake install DESTDIR="${D}" && cd ../../.. || die
85 -}