about summary refs log tree commit
diff options
context:
space:
mode:
authorSteve Hay <steve.m.hay@googlemail.com>2014-06-04 09:06:52 +0100
committerSteve Hay <steve.m.hay@googlemail.com>2014-06-04 09:06:52 +0100
commitfe3b81dc474261917155df74de25747fd593faf8 (patch)
tree57b8dd8cd01d5509dbc32683786128abed845bb1
parent01218af804b04dce53fe240c9218ceea0fee58e4 (diff)
downloadperl-libnet-fe3b81dc474261917155df74de25747fd593faf8.tar.gz
Remove two unnecessary files
-rw-r--r--Hostname.pm.eg14
-rw-r--r--MANIFEST6
-rwxr-xr-xinstall-nomake37
3 files changed, 2 insertions, 55 deletions
diff --git a/Hostname.pm.eg b/Hostname.pm.eg
deleted file mode 100644
index 4736c1a..0000000
--- a/Hostname.pm.eg
+++ /dev/null
@@ -1,14 +0,0 @@
-#
-
-package Sys::Hostname;
-
-use Net::Domain qw(hostname);
-use Carp;
-
-require Exporter;
-@ISA = qw(Exporter);
-@EXPORT = qw(hostname);
-
-carp "deprecated package 'Sys::Hostname', use Net::Domain" if $^W;
-
-1;
diff --git a/MANIFEST b/MANIFEST
index ae87491..5e45dbf 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -1,7 +1,6 @@
 Changes
 Config.eg
 Configure
-Hostname.pm.eg                           Example replacement for Hostname.pm
 MANIFEST
 MANIFEST.SKIP
 Makefile.PL
@@ -13,7 +12,6 @@ demos/nntp.mirror
 demos/pop3
 demos/smtp.self
 demos/time
-install-nomake
 lib/Net/Cmd.pm
 lib/Net/Config.pm
 lib/Net/Domain.pm                        DNS Domain name lookup
@@ -31,6 +29,8 @@ lib/Net/Time.pm                          time & nettime protocols
 lib/Net/libnetFAQ.pod
 t/config.t
 t/datasend.t
+t/external/smtp-ssl.t
+t/external/pop3-ssl.t
 t/ftp.t
 t/hostname.t
 t/libnet_t.pl
@@ -43,5 +43,3 @@ t/smtp_ipv6.t
 t/pop3_ssl.t
 t/pop3_ipv6.t
 t/time.t
-t/external/smtp-ssl.t
-t/external/pop3-ssl.t
diff --git a/install-nomake b/install-nomake
deleted file mode 100755
index f5e8c21..0000000
--- a/install-nomake
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/bin/sh
-#
-# This script is included in this distribution for the benefit
-# of those users who cannot use MakeMaker and make to install.
-# Run this script with
-#
-#   perl install-nomake [-s <directory>]
-#
-#   -s Install into this directory instead of the system site_lib
-#      (This directory must already exist)
-#
-
-eval 'exec perl -x -S $0 ${1+"$@"}'
-  if $running_under_some_shell;
-
-#! -*- perl -*-
-
-use Config;
-use File::Spec;
-use Getopt::Long;
-use ExtUtils::Install qw(install);
-
-my $sitelib = $Config{'sitelibexp'};
-
-GetOptions(
-  'sitelib=s' => \$sitelib
-);
-
-die "$sitelib is not a directory: $!"
-  unless -d $sitelib;
-
-my $src = File::Spec->curdir;
-
-die "This script must be run from the libnet distribution directory: $!\n"
-  unless -f File::Spec->catfile($src, qw(Net FTP.pm));
-
-install( { $src => $sitelib }, 1,0,0);