mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-24 06:48:18 -07:00
dev-util/usb-robot: treeclean
Closes: https://bugs.gentoo.org/874645 (pkgremoved) Signed-off-by: Florian Schmaus <flow@gentoo.org>
This commit is contained in:
@@ -1 +0,0 @@
|
||||
DIST usb-robot-0.2.0.tar.gz 43682 BLAKE2B 10deb05b78781dd9d004b357af359de6713c0394dae741b544c501e32675b01719792b4e7ee787f7efe4dfdb255c0660f848a59ec9f35d88a59b3d1b6da5b518 SHA512 45d7332a10ba881ade03e1f927a6f36e13d31661ac85950c2f31534b313db4bb354e75404b98bdbe522ab22a08a18592a8ab3b4c73bd6cd902e97285b505e37b
|
||||
@@ -1,14 +0,0 @@
|
||||
diff '--color=auto' -NuarwbB usb-robot-0.2.0.orig/control.c usb-robot-0.2.0/control.c
|
||||
--- usb-robot-0.2.0.orig/control.c 2001-02-22 21:18:14.000000000 -0800
|
||||
+++ usb-robot-0.2.0/control.c 2024-11-17 14:53:27.633932807 -0800
|
||||
@@ -457,8 +457,8 @@
|
||||
|
||||
switch(dir)
|
||||
{
|
||||
- case dir_in: assert( data = malloc( size ) );break;
|
||||
- case dir_out: data = context->read( context, size );break;
|
||||
+ case dir_in: data = malloc( size ); assert(data) ;break;
|
||||
+ case dir_out: data = context->read( context, size ); assert(data) ;break;
|
||||
default: cant_get_here();
|
||||
}
|
||||
|
||||
@@ -1,15 +0,0 @@
|
||||
--- usb-robot-0.2.0.orig/configure.in 2001-02-22 21:02:39.000000000 -0800
|
||||
+++ usb-robot-0.2.0/configure.in 2024-11-17 14:39:08.090396454 -0800
|
||||
@@ -19,11 +19,7 @@
|
||||
|
||||
dnl Check for libraries
|
||||
|
||||
-AC_CHECK_LIB(ncurses,tgetent,,
|
||||
-AC_CHECK_LIB(termcap,tgetent,,
|
||||
-AC_CHECK_LIB(curses,tgetent,,
|
||||
- AC_MSG_WARN([could not find a curses library - readline might not work]))))
|
||||
-
|
||||
+AC_CHECK_LIB(ncurses,tgetent)
|
||||
AC_CHECK_LIB(readline,readline)
|
||||
AC_CHECK_LIB(history,add_history)
|
||||
|
||||
@@ -1,10 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>robbat2@gentoo.org</email>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="sourceforge">usb-robot</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
@@ -1,31 +0,0 @@
|
||||
# Copyright 1999-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit toolchain-funcs autotools
|
||||
|
||||
DESCRIPTION="USB Reverse engineering tools"
|
||||
HOMEPAGE="https://usb-robot.sourceforge.net/"
|
||||
SRC_URI="https://downloads.sourceforge.net/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 ppc x86"
|
||||
|
||||
DEPEND="virtual/libusb:0
|
||||
sys-libs/readline:="
|
||||
RDEPEND="${DEPEND}"
|
||||
PATCHES=(
|
||||
"${FILESDIR}/usb-robot-0.2.0-configure.patch"
|
||||
"${FILESDIR}/usb-robot-0.2.0-clang-warn.patch"
|
||||
)
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
eautoreconf
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake CC="$(tc-getCC)"
|
||||
}
|
||||
@@ -193,12 +193,6 @@ dev-libs/libg15render
|
||||
# Removal on 2024-12-17.
|
||||
dev-ml/odoc-parser
|
||||
|
||||
# Andreas K. Hüttel <dilfridge@gentoo.org> (2024-11-17)
|
||||
# Needs a header from libusb that doesnt exist anymore. Will never build.
|
||||
# Furthermore, modern C problems. Bug 874645. No maintainer.
|
||||
# Removal in 30 days.
|
||||
dev-util/usb-robot
|
||||
|
||||
# Michael Orlitzky <mjo@gentoo.org> (2024-11-13)
|
||||
# PHP 8.1.x no longer receives bug fixes unless they address security
|
||||
# issues. That means no build fixes, no updates for modern compilers,
|
||||
|
||||
Reference in New Issue
Block a user