1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-25 04:43:33 +00:00

Usually when you have to store persistent data you don't need a

full-blown database server, just a ASCII database would do the
trick.

AsciiDB::Tag allows you to access a simple ASCII database using a
perl hash variable. The database format is straightforward so you
can edit it by hand if you need so. Each record is stored into a
file, and a record is just a set of values tagged by the field
name.

PR:	ports/26857
This commit is contained in:
Josef Karthauser 2001-04-28 14:55:30 +00:00
parent e1877c8bf7
commit cc7883a640
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=42003
6 changed files with 43 additions and 0 deletions

View File

@ -35,6 +35,7 @@
SUBDIR += mytop
SUBDIR += p5-ApacheDBILogConfig
SUBDIR += p5-ApacheDBILogger
SUBDIR += p5-AsciiDB-TagFile-1.06
SUBDIR += p5-BerkeleyDB
SUBDIR += p5-DBD-CSV
SUBDIR += p5-DBD-Pg

View File

@ -0,0 +1,22 @@
# New ports collection makefile for: databases/p5-AsciiDB-TagFile
# Date created: 25 April 2001
# Whom: Anton Berezin <tobez@tobez.org>
#
# $FreeBSD$
#
PORTNAME= AsciiDB-TagFile
PORTVERSION= 1.06
CATEGORIES= databases perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
MASTER_SITE_SUBDIR= AsciiDB
PKGNAMEPREFIX= p5-
MAINTAINER= tobez@tobez.org
PERL_CONFIGURE= yes
MAN3= AsciiDB::TagFile.3
MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION}
.include <bsd.port.mk>

View File

@ -0,0 +1 @@
MD5 (AsciiDB-TagFile-1.06.tar.gz) = ba1ef6144e2ca462c46a6b4f83df9e7a

View File

@ -0,0 +1 @@
Perl tie class for a simple ASCII database

View File

@ -0,0 +1,12 @@
Usually when you have to store persistent data you don't need a
full-blown database server, just a ASCII database would do the
trick.
AsciiDB::Tag allows you to access a simple ASCII database using a
perl hash variable. The database format is straightforward so you
can edit it by hand if you need so. Each record is stored into a
file, and a record is just a set of values tagged by the field
name.
-Anton
<tobez@tobez.org>

View File

@ -0,0 +1,6 @@
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/AsciiDB/TagFile/.packlist
lib/perl5/site_perl/%%PERL_VER%%/AsciiDB/TagFile.pm
lib/perl5/site_perl/%%PERL_VER%%/AsciiDB/TagRecord.pm
@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/AsciiDB/TagFile
@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/AsciiDB 2>/dev/null || true
@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/AsciiDB 2>/dev/null || true