diff --git a/lib/perl/MANIFEST b/lib/perl/MANIFEST deleted file mode 100644 index 51aeb642d7a..00000000000 --- a/lib/perl/MANIFEST +++ /dev/null @@ -1,9 +0,0 @@ -Makefile.PL -README -examples/forw_proxy_conf.pl -MANIFEST -t/Apache-TS-AdminClient.t -lib/Apache/TS.pm -lib/Apache/TS/Config/Records.pm -lib/Apache/TS/AdminClient.pm -lib/Apache/TS/Config.pm diff --git a/lib/perl/Makefile.PL b/lib/perl/Makefile.PL deleted file mode 100644 index eda04154fd2..00000000000 --- a/lib/perl/Makefile.PL +++ /dev/null @@ -1,29 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you under the Apache License, Version 2.0 (the -# "License"); you may not use this file except in compliance -# with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -require 5.006; -use ExtUtils::MakeMaker; -# See lib/ExtUtils/MakeMaker.pm for details of how to influence -# the contents of the Makefile that is written. -WriteMakefile( - NAME => 'Apache::TS', - VERSION_FROM => 'lib/Apache/TS.pm', # finds $VERSION - PREREQ_PM => {}, # e.g., Module::Name => 1.1 - FIRST_MAKEFILE => 'Makefile-pl', - ($] >= 5.005 ? ## Add these new keywords supported since 5.005 - (ABSTRACT_FROM => 'lib/Apache/TS.pm', # retrieve abstract from module - AUTHOR => 'Traffic Server Dev Team ') : ()), -); diff --git a/lib/perl/README b/lib/perl/README deleted file mode 100644 index 88b029ccc9e..00000000000 --- a/lib/perl/README +++ /dev/null @@ -1,51 +0,0 @@ -Apache-TS version 3.4.0 -================================== - -Apache::TS - a set of perl interfaces to manage an Apache Traffic Server - instance. This includes the following sub-modules - - Apache::TS::AdminClient - access the statistics and configuration - settings stored within Apache Traffic Server - - Apache::TS::Config - Manage Apache Traffic Server configs - - Apache::TS::Config::Records - Manage records.config settings. - - -INSTALLATION -================================== - -To install this module type the following: - - perl Makefile.PL - make - make test - make install - - -DEPENDENCIES -================================== -IO::Socket::UNIX -IO::Select -Carp; - -Additionally this module requires that Apache Traffic Server is -running on localhost so it has something to talk to. - -COPYRIGHT AND LICENSE -================================== - -Licensed to the Apache Software Foundation (ASF) under one or more -contributor license agreements. See the NOTICE file distributed with -this work for additional information regarding copyright ownership. -The ASF licenses this file to You under the Apache License, Version 2.0 -(the "License"); you may not use this file except in compliance with -the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. diff --git a/lib/perl/lib/Apache/TS.pm b/lib/perl/lib/Apache/TS.pm index 8084daeed02..a03f27a422b 100644 --- a/lib/perl/lib/Apache/TS.pm +++ b/lib/perl/lib/Apache/TS.pm @@ -21,9 +21,7 @@ use strict; require 5.006; -# ToDo: This should be auto-generated by the build process. -our $VERSION = "3.4.0"; - +# VERSION 1; __END__ diff --git a/lib/perl/lib/Apache/TS/AdminClient.pm.in b/lib/perl/lib/Apache/TS/AdminClient.pm similarity index 99% rename from lib/perl/lib/Apache/TS/AdminClient.pm.in rename to lib/perl/lib/Apache/TS/AdminClient.pm index 30d58508f59..4588ab7e665 100644 --- a/lib/perl/lib/Apache/TS/AdminClient.pm.in +++ b/lib/perl/lib/Apache/TS/AdminClient.pm @@ -25,7 +25,7 @@ require 5.006; use Carp; use IO::Socket::UNIX; use IO::Select; -our $VERSION = "0.01"; +# VERSION use constant { TS_FILE_READ => 0, diff --git a/lib/perl/lib/Apache/TS/Config.pm b/lib/perl/lib/Apache/TS/Config.pm index 4e9e7aa6289..7d181fa50be 100644 --- a/lib/perl/lib/Apache/TS/Config.pm +++ b/lib/perl/lib/Apache/TS/Config.pm @@ -27,7 +27,7 @@ require Exporter; our @ISA = qw( Exporter ); our @EXPORT = qw(TS_CONF_UNMODIFIED TS_CONF_MODIFIED TS_CONF_REMOVED); -our $VERSION = "1.0"; +# VERSION # Constants use constant { diff --git a/lib/perl/lib/Apache/TS/Config/Records.pm b/lib/perl/lib/Apache/TS/Config/Records.pm index 8c49af8ca3e..26a341cd1a4 100644 --- a/lib/perl/lib/Apache/TS/Config/Records.pm +++ b/lib/perl/lib/Apache/TS/Config/Records.pm @@ -36,7 +36,7 @@ require 5.006; use Carp; -our $VERSION = "1.0"; +# VERSION #