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: app-mobilephone/cobex/files/, profiles/, app-mobilephone/cobex/
Date: Tue, 05 Nov 2019 22:33:58
Message-Id: 1572993197.dd949e7a8a88ffc39862d1507c03e78d6cfc3217.mgorny@gentoo
1 commit: dd949e7a8a88ffc39862d1507c03e78d6cfc3217
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 5 22:33:17 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 5 22:33:17 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd949e7a
7
8 app-mobilephone/cobex: Remove last-rited pkg
9
10 Bug: https://bugs.gentoo.org/696252
11 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
12
13 app-mobilephone/cobex/Manifest | 1 -
14 app-mobilephone/cobex/cobex-0.2.13.ebuild | 31 ------
15 .../cobex/files/cobex-0.2.13-build.patch | 108 ---------------------
16 app-mobilephone/cobex/metadata.xml | 8 --
17 profiles/package.mask | 1 -
18 5 files changed, 149 deletions(-)
19
20 diff --git a/app-mobilephone/cobex/Manifest b/app-mobilephone/cobex/Manifest
21 deleted file mode 100644
22 index be633ffb2ad..00000000000
23 --- a/app-mobilephone/cobex/Manifest
24 +++ /dev/null
25 @@ -1 +0,0 @@
26 -DIST cobex-0.2.13.tar.gz 27020 BLAKE2B cb5dc2a52f8e94bb3d59d64e15f730f04a8315b9ff668314795621fb0b90fd2293d343b6210a21df9c3c284ae698deba6cd6973b19d439447edaa7077d32fa8a SHA512 f05293d9d9f9fdf04809f2a5395bf8be3dd8bfbc592a9ca93b3b2e9b2a78157291b6d38e53b9c7f86e0e32567ee6d4028a9c48062eab4640c9cd85894e7e6a84
27
28 diff --git a/app-mobilephone/cobex/cobex-0.2.13.ebuild b/app-mobilephone/cobex/cobex-0.2.13.ebuild
29 deleted file mode 100644
30 index 060d72031b5..00000000000
31 --- a/app-mobilephone/cobex/cobex-0.2.13.ebuild
32 +++ /dev/null
33 @@ -1,31 +0,0 @@
34 -# Copyright 1999-2018 Gentoo Foundation
35 -# Distributed under the terms of the GNU General Public License v2
36 -
37 -EAPI=0
38 -
39 -inherit eutils
40 -
41 -DESCRIPTION="small implementation of Obex for phones using the DCU-11 USB-to-serial adapter"
42 -HOMEPAGE="http://cobex.sourceforge.net/"
43 -SRC_URI="mirror://sourceforge/cobex/${P}.tar.gz"
44 -
45 -LICENSE="GPL-2"
46 -SLOT="0"
47 -KEYWORDS="amd64 ppc x86"
48 -IUSE=""
49 -
50 -DEPEND="dev-libs/libezV24
51 - dev-libs/expat"
52 -
53 -src_unpack() {
54 - unpack ${A}
55 - cd "${S}"
56 - epatch "${FILESDIR}"/${P}-build.patch
57 - local f
58 - for f in get ls mkdir put rm ; do mv ${f}.c cobex_${f}.c || die ; done
59 -}
60 -
61 -src_install() {
62 - dobin cobex_{ls,mkdir,put,rm} || die
63 - dodoc Changelog README Things_to_know_T310.txt
64 -}
65
66 diff --git a/app-mobilephone/cobex/files/cobex-0.2.13-build.patch b/app-mobilephone/cobex/files/cobex-0.2.13-build.patch
67 deleted file mode 100644
68 index 32ac20deb67..00000000000
69 --- a/app-mobilephone/cobex/files/cobex-0.2.13-build.patch
70 +++ /dev/null
71 @@ -1,108 +0,0 @@
72 ---- Makefile
73 -+++ Makefile
74 -@@ -1,75 +1,37 @@
75 --CC=gcc
76 --CCFLAGS=-O2 -Wall
77 --EXTRACCFLAGS=-s -lezV24
78 --EXPATCCFLAGS=-lexpat
79 --CFILES=put.c get.c cobex_core.c ls.c cobex_tools.c cobex_serial.c rm.c mkdir.c
80 --HFILES=cobex_defs.h cobex_core.h capabilities.h cobex_tools.h cobex_serial.h
81 --O2FILES=cobex_core.o cobex_tools.o cobex_serial.o
82 --PUTO=put.o
83 --GETO=get.o
84 --LSO=ls.o
85 --RMO=rm.o
86 --MKDIRO=mkdir.o
87 --CAPAO=capability.o
88 --COBEXPUT=cobex_put
89 --COBEXGET=cobex_get
90 --COBEXLS=cobex_ls
91 --COBEXRM=cobex_rm
92 --COBEXCAPA=cobex_capa
93 --COBEXMKDIR=cobex_mkdir
94 -+CC ?= gcc
95 -+CFLAGS ?= -O2
96 -+CFLAGS += -Wall
97 -+LDLIBS += -lezV24
98 -+
99 -+PROGS = cobex_put cobex_get cobex_ls cobex_rm cobex_mkdir
100 -+CFILES = $(wildcard *.c)
101 -+HFILES = $(wildcard *.h)
102 -+O2FILES = cobex_core.o cobex_tools.o cobex_serial.o
103 -+
104 - EXTRAFILES = README Changelog COPYING Makefile cobex_put.pl Things_to_know_T310.txt Hacking_pl2303_driver.txt
105 - VERSION = 0.2.13
106 - PROJNAME = cobex-$(VERSION)
107 -
108 --all: $(COBEXPUT) $(COBEXGET) $(COBEXLS) $(COBEXRM) $(COBEXMKDIR)
109 -+all: $(PROGS)
110 -
111 - model:
112 - cd modeldb && make all
113 -
114 --$(COBEXPUT): $(O2FILES) $(PUTO)
115 -- $(CC) $(CCFLAGS) $(EXTRACCFLAGS) -o $(COBEXPUT) $(PUTO) $(O2FILES)
116 --
117 --$(COBEXGET): $(O2FILES) $(GETO)
118 -- $(CC) $(CCFLAGS) $(EXTRACCFLAGS) -o $(COBEXGET) $(GETO) $(O2FILES)
119 --
120 --$(COBEXRM): $(O2FILES) $(RMO)
121 -- $(CC) $(CCFLAGS) $(EXTRACCFLAGS) -o $(COBEXRM) $(RMO) $(O2FILES)
122 --
123 --$(COBEXLS): $(O2FILES) $(LSO)
124 -- $(CC) $(CCFLAGS) $(EXTRACCFLAGS) $(EXPATCCFLAGS) -o $(COBEXLS) $(LSO) $(O2FILES)
125 --
126 --$(COBEXCAPA): $(O2FILES) $(CAPAO)
127 -- $(CC) $(CCFLAGS) $(EXTRACCFLAGS) -o $(COBEXCAPA) $(CAPAO) $(O2FILES)
128 --
129 --$(COBEXMKDIR): $(O2FILES) $(MKDIRO)
130 -- $(CC) $(CCFLAGS) $(EXTRACCFLAGS) -o $(COBEXMKDIR) $(MKDIRO) $(O2FILES)
131 --
132 --
133 --test2: $(O2FILES) test2.o
134 -- $(CC) $(CCFLAGS) $(EXTRACCFLAGS) $(EXPATCCFLAGS) -o test2 test2.o $(O2FILES)
135 --
136 --.c.o:
137 -- $(CC) $(CCFLAGS) $(LOCKSERIAL) -c $<
138 --
139 --$(PUTO): put.c $(O2FILES)
140 --
141 --$(GETO): get.c $(O2FILES)
142 --
143 --$(LSO): ls.c $(O2FILES)
144 --
145 --$(RMO): rm.c $(O2FILES)
146 --
147 --test2.o: test2.c $(O2FILES)
148 --
149 --cobex_core.o: cobex_core.c cobex_core.h cobex_defs.h
150 --
151 --cobex_tools.o: cobex_tools.c cobex_tools.h cobex_defs.h cobex_core.c cobex_core.h
152 --
153 --cobex_serial.o: cobex_serial.c cobex_serial.h cobex_core.c cobex_core.h
154 -+cobex_put: $(O2FILES)
155 -+cobex_get: $(O2FILES)
156 -+cobex_ls: $(O2FILES)
157 -+cobex_rm: $(O2FILES)
158 -+cobex_mkdir: $(O2FILES)
159 -+cobex_capa: $(O2FILES)
160 -+
161 -+cobex_ls: LDLIBS += -lexpat
162 -+
163 -+-include .depend
164 -+.depend: $(CFILES) $(HFILES)
165 -+ $(CC) -MM $^ > .depend
166 -
167 - clean:
168 -- rm -f *.o
169 -- cd modeldb && make clean
170 -+ rm -f *.o $(PROGS)
171 -
172 - printfiles: $(CFILES) $(HFILES)
173 - @echo $?
174 -@@ -88,3 +50,5 @@
175 -
176 - dist-contrib :
177 - cd contrib && make dist VERSION=$(VERSION)
178 -+
179 -+.PHONY: all clean dist dist2 dist-modeldb dist-contrib model printfiles
180
181 diff --git a/app-mobilephone/cobex/metadata.xml b/app-mobilephone/cobex/metadata.xml
182 deleted file mode 100644
183 index f39727f3d84..00000000000
184 --- a/app-mobilephone/cobex/metadata.xml
185 +++ /dev/null
186 @@ -1,8 +0,0 @@
187 -<?xml version="1.0" encoding="UTF-8"?>
188 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
189 -<pkgmetadata>
190 - <!-- maintainer-needed -->
191 - <upstream>
192 - <remote-id type="sourceforge">cobex</remote-id>
193 - </upstream>
194 -</pkgmetadata>
195
196 diff --git a/profiles/package.mask b/profiles/package.mask
197 index 444532a74dd..d6b3d716515 100644
198 --- a/profiles/package.mask
199 +++ b/profiles/package.mask
200 @@ -381,7 +381,6 @@ net-libs/openslp
201 app-benchmarks/volanomark
202 app-cdr/mode2cdmaker
203 app-cdr/xdvdfs-tools
204 -app-mobilephone/cobex
205 mail-filter/clamsmtp
206 sys-auth/pam_require