network/ipscan: Removed (no maintainer)

This commit is contained in:
Robby Workman 2021-04-21 22:09:30 -05:00
parent 3230c51ab9
commit 8c5a1e98a3
9 changed files with 0 additions and 200 deletions

View File

@ -1,26 +0,0 @@
ipscan (fast and friendly network scanner)
Angry IP Scanner (or simply ipscan) is an open-source and
cross-platform network scanner designed to be fast and simple to use.
It scans IP addresses and ports as well as has many other features.
It is widely used by network administrators and just curious users
around the world including large and small enterprises, banks, and
government agencies.
It runs on Linux, Windows, and Mac OS X, possibly supporting other
platforms as well.
Angry IP scanner simply pings each IP address to check if it's alive,
then optionally it is resolving its hostname, determines the MAC
address, scans ports, etc. The amount of gathered data about each host
can be extended with plugins.
It also has additional features, like NetBIOS information (computer
name, workgroup name, and currently logged in Windows user), favorite
IP address ranges, web server detection, customizable openers, etc.
Scanning results can be saved to CSV, TXT, XML or IP-Port list files.
With help of plugins, Angry IP Scanner can gather any information
about scanned IPs. Anybody who can write Java code is able to write
plugins and extend functionality of Angry IP Scanner.

View File

@ -1,22 +0,0 @@
Angry IP Scanner is copyright 2004-2011 Anton Keks and others.
Development is hosted on http://ipscan.sourceforge.net
License: GPLv2+
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
See /usr/share/common-licenses/GPL-2, or
<http://www.gnu.org/copyleft/gpl.txt> for the terms of the latest version
of the GNU General Public License.

View File

@ -1,13 +0,0 @@
if [ -x /usr/bin/update-desktop-database ]; then
/usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
fi
if [ -x /usr/bin/update-mime-database ]; then
/usr/bin/update-mime-database usr/share/mime >/dev/null 2>&1
fi
if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then
if [ -x /usr/bin/gtk-update-icon-cache ]; then
/usr/bin/gtk-update-icon-cache -f usr/share/icons/hicolor >/dev/null 2>&1
fi
fi

View File

@ -1,2 +0,0 @@
#!/bin/sh
java -jar /usr/share/ipscan/ipscan*.jar "$@"

View File

@ -1,98 +0,0 @@
#!/bin/sh
#
# Slackware build script for ipscan.
#
# Copyright 2015-2020 Edinaldo P. Silva, Rio de Janeiro, Brazil.
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
# permitted provided that the following conditions are met:
#
# 1. Redistributions of this script must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=ipscan
VERSION=${VERSION:-3.6.2}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i586 ;;
arm*) ARCH=arm ;;
*) ARCH=$( uname -m ) ;;
esac
fi
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i586" ]; then
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
else
SLKCFLAGS="-O2"
LIBDIRSUFFIX=""
fi
set -e
SRCNAM="ipscan-linux"
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
rm -rf $TMP/$PRGNAM-$VERSION
cd $TMP
mkdir $PRGNAM-$VERSION
cd $PRGNAM-$VERSION
chown -R root:root .
find -L . \
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
-o -perm 511 \) -exec chmod 755 {} \; -o \
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
install -Dm755 $CWD/$PRGNAM $PKG/usr/bin/$PRGNAM
install -Dm644 $CWD/ipscan.desktop $PKG/usr/share/applications/ipscan.desktop
install -Dm644 $CWD/ipscan.png $PKG/usr/share/pixmaps/ipscan.png
install -d $PKG/usr/share/$PRGNAM
if [ "$ARCH" = "i586" ]; then
cp $CWD/$SRCNAM-$VERSION.jar $PKG/usr/share/$PRGNAM
elif [ "$ARCH" = "x86_64" ]; then
cp $CWD/$SRCNAM$LIBDIRSUFFIX-$VERSION.jar $PKG/usr/share/$PRGNAM
fi
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp $CWD/copyright $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM-SlackBuild
mkdir -p $PKG/install
cat $CWD/doinst.sh > $PKG/install/doinst.sh
cat $CWD/slack-desc > $PKG/install/slack-desc
cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}

View File

@ -1,10 +0,0 @@
[Desktop Entry]
Name=Angry IP Scanner
GenericName=Fast and friendly network scanner
Exec=/usr/bin/ipscan
Terminal=false
Type=Application
Icon=ipscan
Categories=Network;
StartupWMClass=Angry IP Scanner
StartupNotify=true

View File

@ -1,10 +0,0 @@
PRGNAM="ipscan"
VERSION="3.6.2"
HOMEPAGE="https://github.com/angryziber/ipscan/"
DOWNLOAD="https://github.com/angryip/ipscan/releases/download/3.6.2/ipscan-linux-3.6.2.jar"
MD5SUM="d2610e9d01615e1eb86cd5df8895732f"
DOWNLOAD_x86_64="https://github.com/angryip/ipscan/releases/download/3.6.2/ipscan-linux64-3.6.2.jar"
MD5SUM_x86_64="35259a87425d5a11bd587f799031aace"
REQUIRES="jdk"
MAINTAINER="orphaned - no maintainer"
EMAIL="nobody@nowhere"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

View File

@ -1,19 +0,0 @@
# HOW TO EDIT THIS FILE:
# The "handy ruler" below makes it easier to edit a package description.
# Line up the first '|' above the ':' following the base package name, and
# the '|' on the right side marks the last column you can put a character in.
# You must make exactly 11 lines for the formatting to be correct. It's also
# customary to leave one space after the ':' except on otherwise blank lines.
|-----handy-ruler------------------------------------------------------|
ipscan: ipscan (fast and friendly network scanner)
ipscan:
ipscan: Angry IP Scanner (or simply ipscan) is an open-source and
ipscan: cross-platform network scanner designed to be fast and simple to use.
ipscan: It scans IP addresses and ports as well as has many other features.
ipscan:
ipscan: Home page: https://github.com/angryziber/ipscan/
ipscan:
ipscan:
ipscan:
ipscan: