Import Subversion 1.1.1
Subversion is a free/open-source version control system. That is, Subversion manages files and directories over time. A tree of files is placed into a central repository. The repository is much like an ordinary file server, except that it remembers every change ever made to your files and directories. This allows you to recover older versions of your data, or examine the history of how your data changed. In this regard, many people think of a version control system as a sort of time machine. Joint work with msf@, Sigfred H?versen, Alex Holst and Steven Mestdagh ok naddy@, go ahead msf@
This commit is contained in:
parent
17b2278065
commit
a524b91b3c
91
devel/subversion/Makefile
Normal file
91
devel/subversion/Makefile
Normal file
@ -0,0 +1,91 @@
|
|||||||
|
# $OpenBSD: Makefile,v 1.1.1.1 2004/12/01 16:47:54 alek Exp $
|
||||||
|
|
||||||
|
COMMENT= "subversion revision control system"
|
||||||
|
COMMENT-perl= "perl interface to subversion"
|
||||||
|
COMMENT-python= "python interface to subversion"
|
||||||
|
|
||||||
|
VERSION= 1.1.1
|
||||||
|
DISTNAME= subversion-${VERSION}
|
||||||
|
PKGNAME-perl= p5-SVN-${VERSION}
|
||||||
|
PKGNAME-python= py-subversion-${VERSION}
|
||||||
|
CATEGORIES= devel
|
||||||
|
|
||||||
|
HOMEPAGE= http://subversion.tigris.org/
|
||||||
|
|
||||||
|
MAINTAINER= Aleksander Piotrowski <alek@openbsd.org>
|
||||||
|
|
||||||
|
# BSD alike + Apache License 2.0
|
||||||
|
PERMIT_PACKAGE_CDROM= Yes
|
||||||
|
PERMIT_PACKAGE_FTP= Yes
|
||||||
|
PERMIT_DISTFILES_CDROM= Yes
|
||||||
|
PERMIT_DISTFILES_FTP= Yes
|
||||||
|
WANTLIB= apr-1 c crypto db expat m pthread ssl xml2 z
|
||||||
|
|
||||||
|
MASTER_SITES= ${HOMEPAGE}/tarballs/
|
||||||
|
|
||||||
|
PSEUDO_FLAVORS= no_bindings
|
||||||
|
FLAVOR?=
|
||||||
|
|
||||||
|
PYTHON_VER= 2.3
|
||||||
|
SUBST_VARS= PYTHON_VER
|
||||||
|
|
||||||
|
MODULES= devel/gettext
|
||||||
|
|
||||||
|
LIB_DEPENDS= neon.24:neon->=0.24.7:net/neon \
|
||||||
|
aprutil-1.0::devel/apr-util \
|
||||||
|
|
||||||
|
.if !${FLAVOR:L:Mno_bindings}
|
||||||
|
LIB_DEPENDS+= swigpy.0,swigpl.0::devel/swig
|
||||||
|
BUILD_DEPENDS= ::lang/python/${PYTHON_VER}
|
||||||
|
|
||||||
|
MULTI_PACKAGES= -perl -python
|
||||||
|
SUBPACKAGE?=
|
||||||
|
|
||||||
|
. if defined(PACKAGING) && !empty(SUBPACKAGE)
|
||||||
|
SHARED_ONLY= Yes
|
||||||
|
RUN_DEPENDS= ::devel/subversion
|
||||||
|
LIB_DEPENDS=
|
||||||
|
MODULES=
|
||||||
|
|
||||||
|
. if ${SUBPACKAGE} == "-python"
|
||||||
|
RUN_DEPENDS+= :python-${PYTHON_VER}*:lang/python/${PYTHON_VER}
|
||||||
|
. endif
|
||||||
|
. endif
|
||||||
|
.endif
|
||||||
|
|
||||||
|
SEPARATE_BUILD= simple
|
||||||
|
CONFIGURE_STYLE=gnu
|
||||||
|
CONFIGURE_ENV= PYTHON2=${LOCALBASE}/bin/python${PYTHON_VER}
|
||||||
|
CONFIGURE_ARGS= ${CONFIGURE_SHARED} \
|
||||||
|
--with-neon=${LOCALBASE} \
|
||||||
|
--with-apr=${LOCALBASE} \
|
||||||
|
--with-apr-util=${LOCALBASE} \
|
||||||
|
--with-zlib \
|
||||||
|
--without-apache \
|
||||||
|
--without-apxs \
|
||||||
|
--without-jdk
|
||||||
|
.if !${FLAVOR:L:Mno_bindings}
|
||||||
|
CONFIGURE_ARGS+=--enable-swig-bindings=perl,python \
|
||||||
|
--with-swig=${LOCALBASE}
|
||||||
|
.else
|
||||||
|
CONFIGURE_ARGS+=--disable-swig-bindings \
|
||||||
|
--without-swig
|
||||||
|
.endif
|
||||||
|
|
||||||
|
REGRESS_DEPENDS=::lang/python/${PYTHON_VER}
|
||||||
|
REGRESS_FLAGS= LD_LIBRARY_PATH=`find ${WRKBUILD} -name .libs | tr '\012' :`
|
||||||
|
|
||||||
|
pre-build:
|
||||||
|
@perl -pi -e "s,!!PYTHON_VER!!,${PYTHON_VER}," ${WRKBUILD}/Makefile
|
||||||
|
|
||||||
|
.if !${FLAVOR:L:Mno_bindings}
|
||||||
|
post-build:
|
||||||
|
@cd ${WRKBUILD} && ${MAKE_PROGRAM} swig-py
|
||||||
|
@cd ${WRKBUILD} && ${MAKE_PROGRAM} swig-pl
|
||||||
|
|
||||||
|
post-install:
|
||||||
|
@cd ${WRKBUILD} && ${MAKE_PROGRAM} install-swig-py
|
||||||
|
@cd ${WRKBUILD} && ${MAKE_PROGRAM} install-swig-pl
|
||||||
|
.endif
|
||||||
|
|
||||||
|
.include <bsd.port.mk>
|
3
devel/subversion/distinfo
Normal file
3
devel/subversion/distinfo
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
MD5 (subversion-1.1.1.tar.gz) = 30c9c93fb3abda4aada393f2c68a406b
|
||||||
|
RMD160 (subversion-1.1.1.tar.gz) = 0b3ace959c4d21b0927e3497d4390963ccf0830a
|
||||||
|
SHA1 (subversion-1.1.1.tar.gz) = b9afbcc211673ce2a1bf9778b6fa519f740e7ebd
|
23
devel/subversion/patches/patch-Makefile_in
Normal file
23
devel/subversion/patches/patch-Makefile_in
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
$OpenBSD: patch-Makefile_in,v 1.1.1.1 2004/12/01 16:47:54 alek Exp $
|
||||||
|
--- Makefile.in.orig Sat Sep 11 17:45:29 2004
|
||||||
|
+++ Makefile.in Wed Nov 3 00:53:40 2004
|
||||||
|
@@ -68,8 +68,8 @@ swig_java_libdir = @libdir@
|
||||||
|
swig_pl_libdir = @libdir@
|
||||||
|
|
||||||
|
### these possibly need further discussion
|
||||||
|
-swig_pydir = @libdir@/svn-python/libsvn
|
||||||
|
-swig_pydir_extra = @libdir@/svn-python/svn
|
||||||
|
+swig_pydir = @libdir@/python!!PYTHON_VER!!/site-packages/libsvn
|
||||||
|
+swig_pydir_extra = @libdir@/python!!PYTHON_VER!!/site-packages/svn
|
||||||
|
swig_javadir = @libdir@/svn-java
|
||||||
|
swig_pldir = @libdir@/svn-perl
|
||||||
|
|
||||||
|
@@ -311,7 +311,7 @@ local-install: @INSTALL_RULES@
|
||||||
|
|
||||||
|
### HACK!! Find a better way to do this
|
||||||
|
revision-install:
|
||||||
|
- subversion/svnversion/svnversion $(top_srcdir) /repos/svn/trunk > $(DESTDIR)$(includedir)/subversion-1/svn-revision.txt
|
||||||
|
+ env LD_LIBRARY_PATH=${PREFIX}/lib subversion/svnversion/svnversion $(top_srcdir) /repos/svn/trunk > $(DESTDIR)$(includedir)/subversion-1/svn-revision.txt
|
||||||
|
|
||||||
|
install-static: @INSTALL_STATIC_RULES@
|
||||||
|
|
12
devel/subversion/patches/patch-ac-helpers_ltmain_sh
Normal file
12
devel/subversion/patches/patch-ac-helpers_ltmain_sh
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
$OpenBSD: patch-ac-helpers_ltmain_sh,v 1.1.1.1 2004/12/01 16:47:54 alek Exp $
|
||||||
|
--- ac-helpers/ltmain.sh.orig Sat Oct 23 23:59:20 2004
|
||||||
|
+++ ac-helpers/ltmain.sh Sat Oct 23 23:59:54 2004
|
||||||
|
@@ -1758,7 +1758,7 @@ compiler."
|
||||||
|
|
||||||
|
if test "$installed" = no; then
|
||||||
|
notinst_deplibs="$notinst_deplibs $lib"
|
||||||
|
- need_relink=yes
|
||||||
|
+ need_relink=no
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test -n "$old_archive_from_expsyms_cmds"; then
|
21
devel/subversion/patches/patch-configure
Normal file
21
devel/subversion/patches/patch-configure
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
$OpenBSD: patch-configure,v 1.1.1.1 2004/12/01 16:47:54 alek Exp $
|
||||||
|
--- configure.orig Fri Oct 22 20:13:20 2004
|
||||||
|
+++ configure Sat Oct 23 19:35:43 2004
|
||||||
|
@@ -9560,7 +9560,7 @@ fi
|
||||||
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
||||||
|
if test "$ac_cv_search_bindtextdomain" = no; then
|
||||||
|
for ac_lib in intl; do
|
||||||
|
- LIBS="-l$ac_lib $ac_func_search_save_LIBS"
|
||||||
|
+ LIBS="-l$ac_lib -liconv $ac_func_search_save_LIBS"
|
||||||
|
cat >conftest.$ac_ext <<_ACEOF
|
||||||
|
#line $LINENO "configure"
|
||||||
|
/* confdefs.h. */
|
||||||
|
@@ -9596,7 +9596,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_l
|
||||||
|
ac_status=$?
|
||||||
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
||||||
|
(exit $ac_status); }; }; then
|
||||||
|
- ac_cv_search_bindtextdomain="-l$ac_lib"
|
||||||
|
+ ac_cv_search_bindtextdomain="-l$ac_lib -liconv"
|
||||||
|
break
|
||||||
|
else
|
||||||
|
echo "$as_me: failed program was:" >&5
|
@ -0,0 +1,65 @@
|
|||||||
|
$OpenBSD: patch-subversion_libsvn_fs_fs_fs_fs_c,v 1.1.1.1 2004/12/01 16:47:54 alek Exp $
|
||||||
|
--- subversion/libsvn_fs_fs/fs_fs.c.orig Tue Oct 19 22:37:15 2004
|
||||||
|
+++ subversion/libsvn_fs_fs/fs_fs.c Sun Nov 28 23:33:44 2004
|
||||||
|
@@ -2042,7 +2042,7 @@ fetch_all_changes (apr_hash_t *changed_p
|
||||||
|
/* Read in the changes one by one, folding them into our local hash
|
||||||
|
as necessary. */
|
||||||
|
|
||||||
|
- SVN_ERR (read_change (&change, file, pool));
|
||||||
|
+ SVN_ERR (read_change (&change, file, iterpool));
|
||||||
|
|
||||||
|
while (change)
|
||||||
|
{
|
||||||
|
@@ -2081,10 +2081,10 @@ fetch_all_changes (apr_hash_t *changed_p
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
- SVN_ERR (read_change (&change, file, pool));
|
||||||
|
-
|
||||||
|
/* Clear the per-iteration subpool. */
|
||||||
|
svn_pool_clear (iterpool);
|
||||||
|
+
|
||||||
|
+ SVN_ERR (read_change (&change, file, iterpool));
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Destroy the per-iteration subpool. */
|
||||||
|
@@ -3272,7 +3272,8 @@ write_final_changed_path_info (apr_off_t
|
||||||
|
apr_hash_t *changed_paths, *copyfrom_cache = apr_hash_make (pool);
|
||||||
|
apr_off_t offset;
|
||||||
|
apr_hash_index_t *hi;
|
||||||
|
-
|
||||||
|
+ apr_pool_t *iterpool = svn_pool_create (pool);
|
||||||
|
+
|
||||||
|
SVN_ERR (get_file_offset (&offset, file, pool));
|
||||||
|
|
||||||
|
SVN_ERR (svn_fs_fs__txn_changes_fetch (&changed_paths, fs, txn_id,
|
||||||
|
@@ -3289,6 +3290,8 @@ write_final_changed_path_info (apr_off_t
|
||||||
|
void *val;
|
||||||
|
apr_ssize_t keylen;
|
||||||
|
|
||||||
|
+ svn_pool_clear (iterpool);
|
||||||
|
+
|
||||||
|
apr_hash_this (hi, &key, &keylen, &val);
|
||||||
|
change = val;
|
||||||
|
|
||||||
|
@@ -3300,7 +3303,7 @@ write_final_changed_path_info (apr_off_t
|
||||||
|
if ((change->change_kind != svn_fs_path_change_delete) &&
|
||||||
|
(! svn_fs_fs__id_txn_id (id)))
|
||||||
|
{
|
||||||
|
- SVN_ERR (svn_fs_fs__get_node_revision (&noderev, fs, id, pool));
|
||||||
|
+ SVN_ERR (svn_fs_fs__get_node_revision (&noderev, fs, id, iterpool));
|
||||||
|
|
||||||
|
/* noderev has the permanent node-id at this point, so we just
|
||||||
|
substitute it for the temporary one. */
|
||||||
|
@@ -3311,8 +3314,10 @@ write_final_changed_path_info (apr_off_t
|
||||||
|
copyfrom = apr_hash_get (copyfrom_cache, key, APR_HASH_KEY_STRING);
|
||||||
|
|
||||||
|
/* Write out the new entry into the final rev-file. */
|
||||||
|
- SVN_ERR (write_change_entry (file, key, change, copyfrom, pool));
|
||||||
|
+ SVN_ERR (write_change_entry (file, key, change, copyfrom, iterpool));
|
||||||
|
}
|
||||||
|
+
|
||||||
|
+ svn_pool_destroy (iterpool);
|
||||||
|
|
||||||
|
*offset_p = offset;
|
||||||
|
|
91
devel/subversion/patches/patch-subversion_libsvn_subr_io_c
Normal file
91
devel/subversion/patches/patch-subversion_libsvn_subr_io_c
Normal file
@ -0,0 +1,91 @@
|
|||||||
|
$OpenBSD: patch-subversion_libsvn_subr_io_c,v 1.1.1.1 2004/12/01 16:47:54 alek Exp $
|
||||||
|
--- subversion/libsvn_subr/io.c.orig Sat Sep 11 15:27:20 2004
|
||||||
|
+++ subversion/libsvn_subr/io.c Mon Nov 29 00:34:51 2004
|
||||||
|
@@ -1412,7 +1412,7 @@ svn_io_remove_dir (const char *path, apr
|
||||||
|
apr_status_t status;
|
||||||
|
apr_dir_t *this_dir;
|
||||||
|
apr_finfo_t this_entry;
|
||||||
|
- apr_pool_t *subpool = svn_pool_create (pool);
|
||||||
|
+ apr_pool_t *subpool;
|
||||||
|
apr_int32_t flags = APR_FINFO_TYPE | APR_FINFO_NAME;
|
||||||
|
const char *path_apr;
|
||||||
|
|
||||||
|
@@ -1424,16 +1424,18 @@ svn_io_remove_dir (const char *path, apr
|
||||||
|
instead of just using svn_io_dir_open, because we're going to
|
||||||
|
need path_apr later anyway when we remove the dir itself. */
|
||||||
|
|
||||||
|
- SVN_ERR (svn_path_cstring_from_utf8 (&path_apr, path, subpool));
|
||||||
|
+ SVN_ERR (svn_path_cstring_from_utf8 (&path_apr, path, pool));
|
||||||
|
|
||||||
|
- status = apr_dir_open (&this_dir, path_apr, subpool);
|
||||||
|
+ status = apr_dir_open (&this_dir, path_apr, pool);
|
||||||
|
if (status)
|
||||||
|
return svn_error_wrap_apr (status, "Can't open directory '%s'", path);
|
||||||
|
|
||||||
|
+ subpool = svn_pool_create (pool);
|
||||||
|
for (status = apr_dir_read (&this_entry, flags, this_dir);
|
||||||
|
status == APR_SUCCESS;
|
||||||
|
status = apr_dir_read (&this_entry, flags, this_dir))
|
||||||
|
{
|
||||||
|
+ svn_pool_clear (subpool);
|
||||||
|
if ((this_entry.filetype == APR_DIR)
|
||||||
|
&& ((this_entry.name[0] == '.')
|
||||||
|
&& ((this_entry.name[1] == '\0')
|
||||||
|
@@ -1449,7 +1451,7 @@ svn_io_remove_dir (const char *path, apr
|
||||||
|
SVN_ERR (svn_path_cstring_to_utf8 (&entry_utf8, this_entry.name,
|
||||||
|
subpool));
|
||||||
|
|
||||||
|
- fullpath = svn_path_join (path, entry_utf8, pool);
|
||||||
|
+ fullpath = svn_path_join (path, entry_utf8, subpool);
|
||||||
|
|
||||||
|
if (this_entry.filetype == APR_DIR)
|
||||||
|
{
|
||||||
|
@@ -1471,6 +1473,8 @@ svn_io_remove_dir (const char *path, apr
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
+ apr_pool_destroy (subpool);
|
||||||
|
+
|
||||||
|
if (!APR_STATUS_IS_ENOENT (status))
|
||||||
|
return svn_error_wrap_apr (status, "Can't read directory '%s'", path);
|
||||||
|
|
||||||
|
@@ -1478,13 +1482,11 @@ svn_io_remove_dir (const char *path, apr
|
||||||
|
if (status)
|
||||||
|
return svn_error_wrap_apr (status, "Error closing directory '%s'", path);
|
||||||
|
|
||||||
|
- status = apr_dir_remove (path_apr, subpool);
|
||||||
|
- WIN32_RETRY_LOOP (status, apr_dir_remove (path_apr, subpool));
|
||||||
|
+ status = apr_dir_remove (path_apr, pool);
|
||||||
|
+ WIN32_RETRY_LOOP (status, apr_dir_remove (path_apr, pool));
|
||||||
|
if (status)
|
||||||
|
return svn_error_wrap_apr (status, "Can't remove '%s'", path);
|
||||||
|
|
||||||
|
- apr_pool_destroy (subpool);
|
||||||
|
-
|
||||||
|
return APR_SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
|
@@ -1731,8 +1733,8 @@ svn_io_run_diff (const char *dir,
|
||||||
|
args[i++] = label2;
|
||||||
|
}
|
||||||
|
|
||||||
|
- args[i++] = from;
|
||||||
|
- args[i++] = to;
|
||||||
|
+ args[i++] = svn_path_local_style (from, subpool);
|
||||||
|
+ args[i++] = svn_path_local_style (to, subpool);
|
||||||
|
args[i++] = NULL;
|
||||||
|
|
||||||
|
assert (i == nargs);
|
||||||
|
@@ -1835,9 +1837,9 @@ svn_io_run_diff3 (const char *dir,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
- args[i++] = mine;
|
||||||
|
- args[i++] = older;
|
||||||
|
- args[i++] = yours;
|
||||||
|
+ args[i++] = svn_path_local_style (mine, pool);
|
||||||
|
+ args[i++] = svn_path_local_style (older, pool);
|
||||||
|
+ args[i++] = svn_path_local_style (yours, pool);
|
||||||
|
args[i++] = NULL;
|
||||||
|
assert (i == nargs);
|
||||||
|
|
17
devel/subversion/pkg/DESCR
Normal file
17
devel/subversion/pkg/DESCR
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
Subversion is a free/open-source version control system. That is,
|
||||||
|
Subversion manages files and directories over time. A tree of files
|
||||||
|
is placed into a central repository. The repository is much like an
|
||||||
|
ordinary file server, except that it remembers every change ever made
|
||||||
|
to your files and directories. This allows you to recover older versions
|
||||||
|
of your data, or examine the history of how your data changed.
|
||||||
|
In this regard, many people think of a version control system as a
|
||||||
|
sort of time machine.
|
||||||
|
|
||||||
|
Due to known problems with Berkeley db on macppc you can only create
|
||||||
|
filesystem (fsfs) based repositories. No problems exist when subversion
|
||||||
|
is only used as a client, however.
|
||||||
|
|
||||||
|
Note that you need to install the following subpackages to gain
|
||||||
|
the appropriate functionality:
|
||||||
|
-perl Python bindings to Subversion
|
||||||
|
-python Perl bindings to Subversion
|
2
devel/subversion/pkg/DESCR-perl
Normal file
2
devel/subversion/pkg/DESCR-perl
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
This package contains a set of bindings for the perl scripting language to
|
||||||
|
Subversion.
|
2
devel/subversion/pkg/DESCR-python
Normal file
2
devel/subversion/pkg/DESCR-python
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
This package contains a set of bindings for the Python scripting language to
|
||||||
|
Subversion.
|
14
devel/subversion/pkg/PFRAG.shared
Normal file
14
devel/subversion/pkg/PFRAG.shared
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
@comment $OpenBSD: PFRAG.shared,v 1.1.1.1 2004/12/01 16:47:54 alek Exp $
|
||||||
|
@lib lib/libsvn_client-1.so.0.0
|
||||||
|
@lib lib/libsvn_delta-1.so.0.0
|
||||||
|
@lib lib/libsvn_diff-1.so.0.0
|
||||||
|
@lib lib/libsvn_fs-1.so.0.0
|
||||||
|
@lib lib/libsvn_fs_base-1.so.0.0
|
||||||
|
@lib lib/libsvn_fs_fs-1.so.0.0
|
||||||
|
@lib lib/libsvn_ra-1.so.0.0
|
||||||
|
@lib lib/libsvn_ra_dav-1.so.0.0
|
||||||
|
@lib lib/libsvn_ra_local-1.so.0.0
|
||||||
|
@lib lib/libsvn_ra_svn-1.so.0.0
|
||||||
|
@lib lib/libsvn_repos-1.so.0.0
|
||||||
|
@lib lib/libsvn_subr-1.so.0.0
|
||||||
|
@lib lib/libsvn_wc-1.so.0.0
|
9
devel/subversion/pkg/PFRAG.shared-perl
Normal file
9
devel/subversion/pkg/PFRAG.shared-perl
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
@comment $OpenBSD: PFRAG.shared-perl,v 1.1.1.1 2004/12/01 16:47:54 alek Exp $
|
||||||
|
@lib lib/libsvn_swig_perl-1.so.0.0
|
||||||
|
libdata/perl5/site_perl/${MACHINE_ARCH}-openbsd/auto/SVN/_Client/_Client.so
|
||||||
|
libdata/perl5/site_perl/${MACHINE_ARCH}-openbsd/auto/SVN/_Core/_Core.so
|
||||||
|
libdata/perl5/site_perl/${MACHINE_ARCH}-openbsd/auto/SVN/_Delta/_Delta.so
|
||||||
|
libdata/perl5/site_perl/${MACHINE_ARCH}-openbsd/auto/SVN/_Fs/_Fs.so
|
||||||
|
libdata/perl5/site_perl/${MACHINE_ARCH}-openbsd/auto/SVN/_Ra/_Ra.so
|
||||||
|
libdata/perl5/site_perl/${MACHINE_ARCH}-openbsd/auto/SVN/_Repos/_Repos.so
|
||||||
|
libdata/perl5/site_perl/${MACHINE_ARCH}-openbsd/auto/SVN/_Wc/_Wc.so
|
9
devel/subversion/pkg/PFRAG.shared-python
Normal file
9
devel/subversion/pkg/PFRAG.shared-python
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
@comment $OpenBSD: PFRAG.shared-python,v 1.1.1.1 2004/12/01 16:47:54 alek Exp $
|
||||||
|
@lib lib/libsvn_swig_py-1.so.0.0
|
||||||
|
lib/python${PYTHON_VER}/site-packages/libsvn/_client.so
|
||||||
|
lib/python${PYTHON_VER}/site-packages/libsvn/_core.so
|
||||||
|
lib/python${PYTHON_VER}/site-packages/libsvn/_delta.so
|
||||||
|
lib/python${PYTHON_VER}/site-packages/libsvn/_fs.so
|
||||||
|
lib/python${PYTHON_VER}/site-packages/libsvn/_ra.so
|
||||||
|
lib/python${PYTHON_VER}/site-packages/libsvn/_repos.so
|
||||||
|
lib/python${PYTHON_VER}/site-packages/libsvn/_wc.so
|
85
devel/subversion/pkg/PLIST
Normal file
85
devel/subversion/pkg/PLIST
Normal file
@ -0,0 +1,85 @@
|
|||||||
|
@comment $OpenBSD: PLIST,v 1.1.1.1 2004/12/01 16:47:54 alek Exp $
|
||||||
|
%%SHARED%%
|
||||||
|
bin/svn
|
||||||
|
bin/svnadmin
|
||||||
|
bin/svndumpfilter
|
||||||
|
bin/svnlook
|
||||||
|
bin/svnserve
|
||||||
|
bin/svnversion
|
||||||
|
include/subversion-1/
|
||||||
|
include/subversion-1/mod_dav_svn.h
|
||||||
|
include/subversion-1/svn-revision.txt
|
||||||
|
include/subversion-1/svn_auth.h
|
||||||
|
include/subversion-1/svn_base64.h
|
||||||
|
include/subversion-1/svn_client.h
|
||||||
|
include/subversion-1/svn_cmdline.h
|
||||||
|
include/subversion-1/svn_config.h
|
||||||
|
include/subversion-1/svn_dav.h
|
||||||
|
include/subversion-1/svn_delta.h
|
||||||
|
include/subversion-1/svn_diff.h
|
||||||
|
include/subversion-1/svn_error.h
|
||||||
|
include/subversion-1/svn_error_codes.h
|
||||||
|
include/subversion-1/svn_fs.h
|
||||||
|
include/subversion-1/svn_hash.h
|
||||||
|
include/subversion-1/svn_io.h
|
||||||
|
include/subversion-1/svn_md5.h
|
||||||
|
include/subversion-1/svn_opt.h
|
||||||
|
include/subversion-1/svn_path.h
|
||||||
|
include/subversion-1/svn_pools.h
|
||||||
|
include/subversion-1/svn_props.h
|
||||||
|
include/subversion-1/svn_quoprint.h
|
||||||
|
include/subversion-1/svn_ra.h
|
||||||
|
include/subversion-1/svn_ra_svn.h
|
||||||
|
include/subversion-1/svn_repos.h
|
||||||
|
include/subversion-1/svn_sorts.h
|
||||||
|
include/subversion-1/svn_string.h
|
||||||
|
include/subversion-1/svn_subst.h
|
||||||
|
include/subversion-1/svn_test.h
|
||||||
|
include/subversion-1/svn_time.h
|
||||||
|
include/subversion-1/svn_types.h
|
||||||
|
include/subversion-1/svn_utf.h
|
||||||
|
include/subversion-1/svn_version.h
|
||||||
|
include/subversion-1/svn_wc.h
|
||||||
|
include/subversion-1/svn_xml.h
|
||||||
|
lib/libsvn_client-1.a
|
||||||
|
lib/libsvn_client-1.la
|
||||||
|
lib/libsvn_delta-1.a
|
||||||
|
lib/libsvn_delta-1.la
|
||||||
|
lib/libsvn_diff-1.a
|
||||||
|
lib/libsvn_diff-1.la
|
||||||
|
lib/libsvn_fs-1.a
|
||||||
|
lib/libsvn_fs-1.la
|
||||||
|
lib/libsvn_fs_base-1.a
|
||||||
|
lib/libsvn_fs_base-1.la
|
||||||
|
lib/libsvn_fs_fs-1.a
|
||||||
|
lib/libsvn_fs_fs-1.la
|
||||||
|
lib/libsvn_ra-1.a
|
||||||
|
lib/libsvn_ra-1.la
|
||||||
|
lib/libsvn_ra_dav-1.a
|
||||||
|
lib/libsvn_ra_dav-1.la
|
||||||
|
lib/libsvn_ra_local-1.a
|
||||||
|
lib/libsvn_ra_local-1.la
|
||||||
|
lib/libsvn_ra_svn-1.a
|
||||||
|
lib/libsvn_ra_svn-1.la
|
||||||
|
lib/libsvn_repos-1.a
|
||||||
|
lib/libsvn_repos-1.la
|
||||||
|
lib/libsvn_subr-1.a
|
||||||
|
lib/libsvn_subr-1.la
|
||||||
|
lib/libsvn_wc-1.a
|
||||||
|
lib/libsvn_wc-1.la
|
||||||
|
@man man/man1/svn.1
|
||||||
|
@man man/man1/svnadmin.1
|
||||||
|
@man man/man1/svndumpfilter.1
|
||||||
|
@man man/man1/svnlook.1
|
||||||
|
@man man/man1/svnversion.1
|
||||||
|
@man man/man5/svnserve.conf.5
|
||||||
|
@man man/man8/svnserve.8
|
||||||
|
share/locale/de/LC_MESSAGES/subversion.mo
|
||||||
|
share/locale/es/LC_MESSAGES/subversion.mo
|
||||||
|
share/locale/ja/LC_MESSAGES/subversion.mo
|
||||||
|
share/locale/nb/LC_MESSAGES/subversion.mo
|
||||||
|
share/locale/pl/LC_MESSAGES/subversion.mo
|
||||||
|
share/locale/pt_BR/LC_MESSAGES/subversion.mo
|
||||||
|
share/locale/sv/LC_MESSAGES/subversion.mo
|
||||||
|
share/locale/zh_CN/LC_MESSAGES/subversion.mo
|
||||||
|
share/locale/zh_TW/LC_MESSAGES/subversion.mo
|
38
devel/subversion/pkg/PLIST-perl
Normal file
38
devel/subversion/pkg/PLIST-perl
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
@comment $OpenBSD: PLIST-perl,v 1.1.1.1 2004/12/01 16:47:54 alek Exp $
|
||||||
|
%%SHARED%%
|
||||||
|
lib/libsvn_swig_perl-1.a
|
||||||
|
lib/libsvn_swig_perl-1.la
|
||||||
|
libdata/perl5/site_perl/${MACHINE_ARCH}-openbsd/
|
||||||
|
libdata/perl5/site_perl/${MACHINE_ARCH}-openbsd/SVN/
|
||||||
|
libdata/perl5/site_perl/${MACHINE_ARCH}-openbsd/SVN/Base.pm
|
||||||
|
libdata/perl5/site_perl/${MACHINE_ARCH}-openbsd/SVN/Client.pm
|
||||||
|
libdata/perl5/site_perl/${MACHINE_ARCH}-openbsd/SVN/Core.pm
|
||||||
|
libdata/perl5/site_perl/${MACHINE_ARCH}-openbsd/SVN/Delta.pm
|
||||||
|
libdata/perl5/site_perl/${MACHINE_ARCH}-openbsd/SVN/Fs.pm
|
||||||
|
libdata/perl5/site_perl/${MACHINE_ARCH}-openbsd/SVN/Ra.pm
|
||||||
|
libdata/perl5/site_perl/${MACHINE_ARCH}-openbsd/SVN/Repos.pm
|
||||||
|
libdata/perl5/site_perl/${MACHINE_ARCH}-openbsd/SVN/Wc.pm
|
||||||
|
libdata/perl5/site_perl/${MACHINE_ARCH}-openbsd/auto/
|
||||||
|
libdata/perl5/site_perl/${MACHINE_ARCH}-openbsd/auto/SVN/
|
||||||
|
libdata/perl5/site_perl/${MACHINE_ARCH}-openbsd/auto/SVN/_Client/
|
||||||
|
libdata/perl5/site_perl/${MACHINE_ARCH}-openbsd/auto/SVN/_Client/_Client.bs
|
||||||
|
libdata/perl5/site_perl/${MACHINE_ARCH}-openbsd/auto/SVN/_Core/
|
||||||
|
libdata/perl5/site_perl/${MACHINE_ARCH}-openbsd/auto/SVN/_Core/_Core.bs
|
||||||
|
libdata/perl5/site_perl/${MACHINE_ARCH}-openbsd/auto/SVN/_Delta/
|
||||||
|
libdata/perl5/site_perl/${MACHINE_ARCH}-openbsd/auto/SVN/_Delta/_Delta.bs
|
||||||
|
libdata/perl5/site_perl/${MACHINE_ARCH}-openbsd/auto/SVN/_Fs/
|
||||||
|
libdata/perl5/site_perl/${MACHINE_ARCH}-openbsd/auto/SVN/_Fs/_Fs.bs
|
||||||
|
libdata/perl5/site_perl/${MACHINE_ARCH}-openbsd/auto/SVN/_Ra/
|
||||||
|
libdata/perl5/site_perl/${MACHINE_ARCH}-openbsd/auto/SVN/_Ra/_Ra.bs
|
||||||
|
libdata/perl5/site_perl/${MACHINE_ARCH}-openbsd/auto/SVN/_Repos/
|
||||||
|
libdata/perl5/site_perl/${MACHINE_ARCH}-openbsd/auto/SVN/_Repos/_Repos.bs
|
||||||
|
libdata/perl5/site_perl/${MACHINE_ARCH}-openbsd/auto/SVN/_Wc/
|
||||||
|
libdata/perl5/site_perl/${MACHINE_ARCH}-openbsd/auto/SVN/_Wc/_Wc.bs
|
||||||
|
@man man/man3p/SVN::Base.3p
|
||||||
|
@man man/man3p/SVN::Client.3p
|
||||||
|
@man man/man3p/SVN::Core.3p
|
||||||
|
@man man/man3p/SVN::Delta.3p
|
||||||
|
@comment man man/man3p/SVN::Fs.3p
|
||||||
|
@man man/man3p/SVN::Ra.3p
|
||||||
|
@man man/man3p/SVN::Repos.3p
|
||||||
|
@man man/man3p/SVN::Wc.3p
|
56
devel/subversion/pkg/PLIST-python
Normal file
56
devel/subversion/pkg/PLIST-python
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
@comment $OpenBSD: PLIST-python,v 1.1.1.1 2004/12/01 16:47:54 alek Exp $
|
||||||
|
%%SHARED%%
|
||||||
|
lib/libsvn_swig_py-1.a
|
||||||
|
lib/libsvn_swig_py-1.la
|
||||||
|
lib/python${PYTHON_VER}/
|
||||||
|
lib/python${PYTHON_VER}/site-packages/
|
||||||
|
lib/python${PYTHON_VER}/site-packages/libsvn/
|
||||||
|
lib/python${PYTHON_VER}/site-packages/libsvn/__init__.py
|
||||||
|
lib/python${PYTHON_VER}/site-packages/libsvn/__init__.pyc
|
||||||
|
@comment lib/python${PYTHON_VER}/site-packages/libsvn/_client.a
|
||||||
|
@comment lib/python${PYTHON_VER}/site-packages/libsvn/_client.la
|
||||||
|
@comment lib/python${PYTHON_VER}/site-packages/libsvn/_core.a
|
||||||
|
@comment lib/python${PYTHON_VER}/site-packages/libsvn/_core.la
|
||||||
|
@comment lib/python${PYTHON_VER}/site-packages/libsvn/_delta.a
|
||||||
|
@comment lib/python${PYTHON_VER}/site-packages/libsvn/_delta.la
|
||||||
|
@comment lib/python${PYTHON_VER}/site-packages/libsvn/_fs.a
|
||||||
|
@comment lib/python${PYTHON_VER}/site-packages/libsvn/_fs.la
|
||||||
|
@comment lib/python${PYTHON_VER}/site-packages/libsvn/_ra.a
|
||||||
|
@comment lib/python${PYTHON_VER}/site-packages/libsvn/_ra.la
|
||||||
|
@comment lib/python${PYTHON_VER}/site-packages/libsvn/_repos.a
|
||||||
|
@comment lib/python${PYTHON_VER}/site-packages/libsvn/_repos.la
|
||||||
|
@comment lib/python${PYTHON_VER}/site-packages/libsvn/_wc.a
|
||||||
|
@comment lib/python${PYTHON_VER}/site-packages/libsvn/_wc.la
|
||||||
|
lib/python${PYTHON_VER}/site-packages/libsvn/client.py
|
||||||
|
lib/python${PYTHON_VER}/site-packages/libsvn/client.pyc
|
||||||
|
lib/python${PYTHON_VER}/site-packages/libsvn/core.py
|
||||||
|
lib/python${PYTHON_VER}/site-packages/libsvn/core.pyc
|
||||||
|
lib/python${PYTHON_VER}/site-packages/libsvn/delta.py
|
||||||
|
lib/python${PYTHON_VER}/site-packages/libsvn/delta.pyc
|
||||||
|
lib/python${PYTHON_VER}/site-packages/libsvn/fs.py
|
||||||
|
lib/python${PYTHON_VER}/site-packages/libsvn/fs.pyc
|
||||||
|
lib/python${PYTHON_VER}/site-packages/libsvn/ra.py
|
||||||
|
lib/python${PYTHON_VER}/site-packages/libsvn/ra.pyc
|
||||||
|
lib/python${PYTHON_VER}/site-packages/libsvn/repos.py
|
||||||
|
lib/python${PYTHON_VER}/site-packages/libsvn/repos.pyc
|
||||||
|
lib/python${PYTHON_VER}/site-packages/libsvn/wc.py
|
||||||
|
lib/python${PYTHON_VER}/site-packages/libsvn/wc.pyc
|
||||||
|
lib/python${PYTHON_VER}/site-packages/svn/
|
||||||
|
lib/python${PYTHON_VER}/site-packages/svn/__init__.py
|
||||||
|
lib/python${PYTHON_VER}/site-packages/svn/__init__.pyc
|
||||||
|
lib/python${PYTHON_VER}/site-packages/svn/client.py
|
||||||
|
lib/python${PYTHON_VER}/site-packages/svn/client.pyc
|
||||||
|
lib/python${PYTHON_VER}/site-packages/svn/core.py
|
||||||
|
lib/python${PYTHON_VER}/site-packages/svn/core.pyc
|
||||||
|
lib/python${PYTHON_VER}/site-packages/svn/delta.py
|
||||||
|
lib/python${PYTHON_VER}/site-packages/svn/delta.pyc
|
||||||
|
lib/python${PYTHON_VER}/site-packages/svn/fs.py
|
||||||
|
lib/python${PYTHON_VER}/site-packages/svn/fs.pyc
|
||||||
|
lib/python${PYTHON_VER}/site-packages/svn/ra.py
|
||||||
|
lib/python${PYTHON_VER}/site-packages/svn/ra.pyc
|
||||||
|
lib/python${PYTHON_VER}/site-packages/svn/repos.py
|
||||||
|
lib/python${PYTHON_VER}/site-packages/svn/repos.pyc
|
||||||
|
lib/python${PYTHON_VER}/site-packages/svn/util.py
|
||||||
|
lib/python${PYTHON_VER}/site-packages/svn/util.pyc
|
||||||
|
lib/python${PYTHON_VER}/site-packages/svn/wc.py
|
||||||
|
lib/python${PYTHON_VER}/site-packages/svn/wc.pyc
|
Loading…
Reference in New Issue
Block a user