- Update to 0.7.2
PR: 122739 Submitted by: Zhen REN <bg1tpt@gmail.com> (maintainer)
This commit is contained in:
parent
5020e40b99
commit
8078859d20
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=212043
4 changed files with 21 additions and 18 deletions
|
@ -1015,6 +1015,7 @@
|
|||
SUBDIR += pear-HTTP_Request
|
||||
SUBDIR += pear-HTTP_Server
|
||||
SUBDIR += pear-HTTP_Session
|
||||
SUBDIR += pear-HTTP_Session2
|
||||
SUBDIR += pear-HTTP_Upload
|
||||
SUBDIR += pear-Services_Compete
|
||||
SUBDIR += pear-Services_Delicious
|
||||
|
|
|
@ -5,25 +5,29 @@
|
|||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= HTTP_Session
|
||||
PORTVERSION= 0.5.6
|
||||
PORTNAME= HTTP_Session2
|
||||
PORTVERSION= 0.7.2
|
||||
CATEGORIES= www devel pear
|
||||
|
||||
MAINTAINER= bg1tpt@gmail.com
|
||||
COMMENT= PEAR Object-oriented interface to the session_* family functions
|
||||
COMMENT= PHP5 Session Handler
|
||||
|
||||
BUILD_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear
|
||||
RUN_DEPENDS= ${BUILD_DEPENDS}
|
||||
|
||||
USE_DOS2UNIX= yes
|
||||
|
||||
FILES= Session.php Session/Container.php Session/Container/DB.php \
|
||||
Session/Container/MDB.php Session/Container/MDB2.php \
|
||||
Session/Container/Memcache.php
|
||||
EXAMPLES= HTTP_Session_Example.php Container_Example.php sessiondata.sql
|
||||
CATEGORY= HTTP
|
||||
FILES= HTTP/Session2.php \
|
||||
HTTP/Session2/Container.php \
|
||||
HTTP/Session2/Exception.php \
|
||||
HTTP/Session2/Container/DB.php \
|
||||
HTTP/Session2/Container/Interface.php \
|
||||
HTTP/Session2/Container/MDB2.php \
|
||||
HTTP/Session2/Container/Memcache.php
|
||||
EXAMPLES= HTTP_Session2_Example.php sessiondata.sql
|
||||
_EXAMPLESDIR= docs
|
||||
TESTS= AllTests.bat AllTests.php HTTP_SessionTest.php \
|
||||
HTTP_Session_ContainerTest.php
|
||||
TESTS= AllTests.php Session2Test.php
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
.include "${PORTSDIR}/devel/pear/bsd.pear.mk"
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
MD5 (PEAR/HTTP_Session-0.5.6.tgz) = 96a45274b2164f13c3b73e274453787d
|
||||
SHA256 (PEAR/HTTP_Session-0.5.6.tgz) = 2aabce7400ad8f0deedd08f873f098e5ca76f2c4c56a2eac0abe69d251258b18
|
||||
SIZE (PEAR/HTTP_Session-0.5.6.tgz) = 15343
|
||||
MD5 (PEAR/HTTP_Session2-0.7.2.tgz) = 3cce2f2c35fc36f726e01df10e006a48
|
||||
SHA256 (PEAR/HTTP_Session2-0.7.2.tgz) = 716c8745c09090981c4544d6361018c86d2491ade66e8c0779579365c866de73
|
||||
SIZE (PEAR/HTTP_Session2-0.7.2.tgz) = 13636
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
Object-oriented interface to the session_* family functions
|
||||
it provides extra features such as database storage for
|
||||
session data using DB package. It introduces new methods
|
||||
like isNew(), useCookies(), setExpire(), setIdle(),
|
||||
isExpired(), isIdled() and others.
|
||||
PHP5 Object-oriented interface to the session_* family functions
|
||||
it provides extra features such as database storage for session
|
||||
data using DB/MDB2 packages.
|
||||
|
||||
WWW: http://pear.php.net/package/HTTP_Session/
|
||||
WWW: http://pear.php.net/package/HTTP_Session2/
|
||||
|
|
Loading…
Reference in a new issue