Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

7
databases/mytop/DESCR Normal file
View File

@@ -0,0 +1,7 @@
mytop was inspired by the system monitoring tool top. I routinely use top on
Linux, FreeBSD, and Solaris. You are likely to notice features from each of
them here.
mytop will connect to a MySQL server and periodically run the SHOW PROCESSLIST
and SHOW STATUS commands and attempt to summarize the information from them
in a useful format.

24
databases/mytop/Makefile Normal file
View File

@@ -0,0 +1,24 @@
# $NetBSD: Makefile,v 1.22 2013/05/31 12:39:48 wiz Exp $
#
DISTNAME= mytop-1.6
PKGREVISION= 5
CATEGORIES= databases
MASTER_SITES= http://jeremy.zawodny.com/mysql/mytop/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://jeremy.zawodny.com/mysql/mytop/
COMMENT= Console-based tool for monitoring the threads and performance of MySQL
LICENSE= gnu-gpl-v2
DEPENDS+= p5-DBI-[0-9]*:../../databases/p5-DBI
DEPENDS+= p5-Term-ANSIColor-[0-9]*:../../devel/p5-Term-ANSIColor
DEPENDS+= p5-Term-ReadKey-[0-9]*:../../devel/p5-Term-ReadKey
DEPENDS+= p5-DBD-mysql-[0-9]*:../../databases/p5-DBD-mysql
PERL5_PACKLIST= auto/mytop/.packlist
REPLACE_PERL= mytop
NO_BUILD= YES
.include "../../lang/perl5/module.mk"
.include "../../mk/bsd.pkg.mk"

6
databases/mytop/distinfo Normal file
View File

@@ -0,0 +1,6 @@
$NetBSD: distinfo,v 1.7 2010/05/14 12:12:22 fhajny Exp $
SHA1 (mytop-1.6.tar.gz) = e1485115ca3a15e79f7811bdc1cfe692aa95833f
RMD160 (mytop-1.6.tar.gz) = d2ff40b75c33d09d7cd14602fc78952ca52f8dab
Size (mytop-1.6.tar.gz) = 19720 bytes
SHA1 (patch-aa) = e221d9e02bcb1c11fa909a943a4ec3e0fbdaff93

View File

@@ -0,0 +1,15 @@
$NetBSD: patch-aa,v 1.1 2010/05/14 12:12:22 fhajny Exp $
Fix options parsing problem on Perl 5.10.
--- mytop.orig 2007-02-17 04:57:46.000000000 +0000
+++ mytop
@@ -153,7 +153,7 @@ GetOptions(
"idle|i" => \$config{idle},
"resolve|r" => \$config{resolve},
"prompt!" => \$config{prompt},
- "long|!" => \$config{long_nums},
+ "long!" => \$config{long_nums},
"mode|m=s" => \$config{mode},
"sort=s" => \$config{sort},
);