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: profiles/, app-misc/ifp-line/, app-misc/ifp-line/files/
Date: Thu, 20 Aug 2020 11:39:59
Message-Id: 1597923583.c7edad733eab524cfc529a54763c281536527bc5.mgorny@gentoo
1 commit: c7edad733eab524cfc529a54763c281536527bc5
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 20 11:33:23 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 20 11:39:43 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7edad73
7
8 app-misc/ifp-line: Remove last-rited pkg
9
10 Closes: https://bugs.gentoo.org/727360
11 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
12
13 app-misc/ifp-line/Manifest | 1 -
14 .../ifp-line/files/ifp-line-0.3-fix-warnings.patch | 30 -----------------
15 app-misc/ifp-line/ifp-line-0.3.ebuild | 39 ----------------------
16 app-misc/ifp-line/metadata.xml | 11 ------
17 profiles/package.mask | 6 ----
18 5 files changed, 87 deletions(-)
19
20 diff --git a/app-misc/ifp-line/Manifest b/app-misc/ifp-line/Manifest
21 deleted file mode 100644
22 index c7958d6b8c5..00000000000
23 --- a/app-misc/ifp-line/Manifest
24 +++ /dev/null
25 @@ -1 +0,0 @@
26 -DIST ifp-line-0.3.tar.gz 138272 BLAKE2B 249476938d111cc7609069f448b248921211cf298415951f4ea5043a8eff0eb80d11aeb1dab3d5d9db1aeed82b0de205d79945d4b0379762b62bc979485eb95e SHA512 516ad85fdaf69111581b013b2517c7083656436d429a86ec5ca4b7dcaf1c841538f98138cce8839d990a34550f11cc6bc9dedc701b0123b9cb73a91a7d78694d
27
28 diff --git a/app-misc/ifp-line/files/ifp-line-0.3-fix-warnings.patch b/app-misc/ifp-line/files/ifp-line-0.3-fix-warnings.patch
29 deleted file mode 100644
30 index a3bf5c24b95..00000000000
31 --- a/app-misc/ifp-line/files/ifp-line-0.3-fix-warnings.patch
32 +++ /dev/null
33 @@ -1,30 +0,0 @@
34 ---- a/unicodehack.c 2006-01-31 20:18:16.000000000 -0500
35 -+++ b/unicodehack.c 2006-01-31 20:18:39.000000000 -0500
36 -@@ -26,7 +26,7 @@
37 - return -1;
38 - }
39 -
40 -- if ( (retval = iconv(cd, (const char **)&src, &srcln, &dst, &dstln)) == -1) {
41 -+ if ( (retval = iconv(cd, (char **)&src, &srcln, &dst, &dstln)) == -1) {
42 - // XXX ignore error message "iconv: Illiegal byte sequence"
43 - // with GNU libiconv. No effect for output in now.
44 - //perror("iconv");
45 -@@ -43,7 +43,7 @@
46 - /**
47 - * @return less then zero: error.
48 - */
49 --int unicode2locale(char *dst, size_t dstln, const char *src, size_t srcln) {
50 -+int unicode2locale(char *dst, size_t dstln, char *src, size_t srcln) {
51 - iconv_t cd;
52 - int retval;
53 -
54 ---- a/unicodehack.h 2006-01-31 20:19:05.000000000 -0500
55 -+++ b/unicodehack.h 2006-01-31 20:19:26.000000000 -0500
56 -@@ -4,6 +4,6 @@
57 - #define IFPLINE_UNICODEHACK_H
58 -
59 - extern int locale2unicode(char*, size_t, const char*, size_t);
60 --extern int unicode2locale(char*, size_t, const char*, size_t);
61 -+extern int unicode2locale(char*, size_t, char*, size_t);
62 -
63 - #endif // IFPLINE_UNICODEHACK_H
64
65 diff --git a/app-misc/ifp-line/ifp-line-0.3.ebuild b/app-misc/ifp-line/ifp-line-0.3.ebuild
66 deleted file mode 100644
67 index c77ec2937f0..00000000000
68 --- a/app-misc/ifp-line/ifp-line-0.3.ebuild
69 +++ /dev/null
70 @@ -1,39 +0,0 @@
71 -# Copyright 1999-2018 Gentoo Foundation
72 -# Distributed under the terms of the GNU General Public License v2
73 -
74 -EAPI=6
75 -
76 -DESCRIPTION="iRiver iFP open-source driver"
77 -HOMEPAGE="http://ifp-driver.sourceforge.net/"
78 -SRC_URI="mirror://sourceforge/ifp-driver/${P}.tar.gz"
79 -
80 -LICENSE="GPL-2"
81 -SLOT="0"
82 -KEYWORDS="amd64 ppc x86"
83 -IUSE=""
84 -
85 -RDEPEND="virtual/libusb:0"
86 -DEPEND="${RDEPEND}"
87 -
88 -PATCHES=( "${FILESDIR}/${P}-fix-warnings.patch" )
89 -
90 -src_install() {
91 - dobin ifp
92 - doman ifp.1
93 -
94 - exeinto /usr/share/${PN}
95 - doexe nonroot.sh
96 - default
97 -}
98 -
99 -pkg_postinst() {
100 - elog
101 - elog "To enable non-root usage of ${PN}, you use any of the following"
102 - elog "methods."
103 - elog
104 - elog " 1. Follow the TIPS file in"
105 - elog " /usr/share/doc/${PF}"
106 - elog
107 - elog " 2. Run /usr/share/${PN}/nonroot.sh"
108 - elog
109 -}
110
111 diff --git a/app-misc/ifp-line/metadata.xml b/app-misc/ifp-line/metadata.xml
112 deleted file mode 100644
113 index 81812cad1e5..00000000000
114 --- a/app-misc/ifp-line/metadata.xml
115 +++ /dev/null
116 @@ -1,11 +0,0 @@
117 -<?xml version="1.0" encoding="UTF-8"?>
118 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
119 -<pkgmetadata>
120 - <maintainer type="project">
121 - <email>sound@g.o</email>
122 - <name>Gentoo Sound project</name>
123 - </maintainer>
124 - <upstream>
125 - <remote-id type="sourceforge">ifp-driver</remote-id>
126 - </upstream>
127 -</pkgmetadata>
128
129 diff --git a/profiles/package.mask b/profiles/package.mask
130 index a1eb40902c6..f9e25a7f4eb 100644
131 --- a/profiles/package.mask
132 +++ b/profiles/package.mask
133 @@ -865,12 +865,6 @@ media-gfx/uniconvertor
134 # and accept a more unstable release.
135 >=www-client/chromium-86
136
137 -# Jonas Stein <jstein@g.o> (2020-06-07)
138 -# Last rite unusable package.
139 -# Removal after 2020-08-01
140 -# Bug 727360
141 -app-misc/ifp-line
142 -
143 # Mart Raudsepp <leio@g.o> (2020-06-06)
144 # Meson port does not handle multilib yet and has issues
145 # regarding runstatedir (not using /run).