Rev 1047: Remove leftover pyrex files. in file:///data/jelmer/bzr-svn/cext/

Jelmer Vernooij jelmer at samba.org
Mon Jun 2 18:12:43 BST 2008


At file:///data/jelmer/bzr-svn/cext/

------------------------------------------------------------
revno: 1047
revision-id: jelmer at samba.org-20080602171243-cfyorph2jrpr8rwq
parent: jelmer at samba.org-20080602171225-fqf92uwqvsk3yf3h
committer: Jelmer Vernooij <jelmer at samba.org>
branch nick: cext
timestamp: Mon 2008-06-02 19:12:43 +0200
message:
  Remove leftover pyrex files.
removed:
  core.pxd                       core.pxd-20080314004625-ng663dn07ewpc26a-1
  ra.pxd                         ra.pxd-20080316145122-rpus5mpg799ld67s-1
=== removed file 'core.pxd'
--- a/core.pxd	2008-03-21 15:32:57 +0000
+++ b/core.pxd	1970-01-01 00:00:00 +0000
@@ -1,30 +0,0 @@
-# Copyright (C) 2008 Jelmer Vernooij <jelmer at samba.org>
-# vim: ft=pyrex
-
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
-
-from apr cimport apr_pool_t, apr_array_header_t, apr_hash_t
-from types cimport svn_error_t, svn_lock_t, svn_stream_t
-cdef apr_pool_t *Pool(apr_pool_t *parent)
-cdef check_error(svn_error_t *error)
-cdef svn_error_t *py_cancel_func(cancel_baton)
-cdef wrap_lock(svn_lock_t *)
-cdef apr_array_header_t *string_list_to_apr_array(apr_pool_t *pool, object l)
-cdef apr_array_header_t *revnum_list_to_apr_array(apr_pool_t *pool, object l)
-cdef svn_error_t *py_svn_log_wrapper(baton, apr_hash_t *changed_paths, long revision, char *author, char *date, char *message, apr_pool_t *pool) except *
-cdef svn_stream_t *new_py_stream(apr_pool_t *pool, object py)
-cdef svn_stream_t *string_stream(apr_pool_t *pool, text)
-cdef prop_hash_to_dict(apr_hash_t *)
-cdef svn_error_t *py_svn_error(exc)

=== removed file 'ra.pxd'
--- a/ra.pxd	2008-03-18 23:27:43 +0000
+++ b/ra.pxd	1970-01-01 00:00:00 +0000
@@ -1,140 +0,0 @@
-# Copyright (C) 2008 Jelmer Vernooij <jelmer at samba.org>
-# vim: ft=pyrex
-
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
-
-from types cimport svn_error_t, svn_filesize_t, svn_string_t, svn_revnum_t, svn_stream_t
-from apr cimport apr_pool_t, apr_size_t
-
-cdef extern from "svn_ra.h":
-    ctypedef struct svn_ra_reporter2_t:
-        svn_error_t *(*set_path)(void *report_baton,
-                           char *path,
-                           long revision,
-                           int start_empty,
-                           char *lock_token,
-                           apr_pool_t *pool) except *
-
-        svn_error_t *(*delete_path)(void *report_baton, 
-                char *path, apr_pool_t *pool) except *
-
-        svn_error_t *(*link_path)(void *report_baton,
-                                char *path,
-                                char *url,
-                                long revision,
-                                int start_empty,
-                                char *lock_token,
-                                apr_pool_t *pool) except *
-
-        svn_error_t *(*finish_report)(void *report_baton, apr_pool_t *pool) except *
-
-        svn_error_t *(*abort_report)(void *report_baton, apr_pool_t *pool) except *
-
-cdef extern from "svn_delta.h":
-    ctypedef enum svn_delta_action:
-        svn_txdelta_source
-        svn_txdelta_target
-        svn_txdelta_new
-
-    ctypedef struct svn_txdelta_op_t:
-        svn_delta_action action_code
-        apr_size_t offset
-        apr_size_t length
-
-    ctypedef struct svn_txdelta_window_t:
-        svn_filesize_t sview_offset
-        apr_size_t sview_len
-        apr_size_t tview_len
-        int num_ops
-        int src_ops
-        svn_txdelta_op_t *ops
-        svn_string_t *new_data
-
-    ctypedef svn_error_t *(*svn_txdelta_window_handler_t) (svn_txdelta_window_t *window, void *baton)
-
-    ctypedef struct svn_delta_editor_t:
-        svn_error_t *(*set_target_revision)(void *edit_baton, 
-                svn_revnum_t target_revision, apr_pool_t *pool) except * 
-        svn_error_t *(*open_root)(void *edit_baton, svn_revnum_t base_revision, 
-                                  apr_pool_t *dir_pool, void **root_baton)
-
-        svn_error_t *(*delete_entry)(char *path, long revision, 
-                                     void *parent_baton, apr_pool_t *pool)
-
-        svn_error_t *(*add_directory)(char *path,
-                                void *parent_baton,
-                                char *copyfrom_path,
-                                long copyfrom_revision,
-                                apr_pool_t *dir_pool,
-                                void **child_baton)
-
-        svn_error_t *(*open_directory)(char *path, void *parent_baton,
-                                 long base_revision,
-                                 apr_pool_t *dir_pool,
-                                 void **child_baton)
-
-        svn_error_t *(*change_dir_prop)(void *dir_baton,
-                                  char *name,
-                                  svn_string_t *value,
-                                  apr_pool_t *pool)
-
-        svn_error_t *(*close_directory)(void *dir_baton,
-                                  apr_pool_t *pool)
-
-        svn_error_t *(*absent_directory)(char *path, void *parent_baton, 
-                                     apr_pool_t *pool)
-
-        svn_error_t *(*add_file)(char *path,
-                           void *parent_baton,
-                           char *copy_path,
-                           long copy_revision,
-                           apr_pool_t *file_pool,
-                           void **file_baton)
-
-        svn_error_t *(*open_file)(char *path,
-                            void *parent_baton,
-                            long base_revision,
-                            apr_pool_t *file_pool,
-                            void **file_baton)
-
-        svn_error_t *(*apply_textdelta)(void *file_baton,
-                                  char *base_checksum,
-                                  apr_pool_t *pool,
-                                  svn_txdelta_window_handler_t *handler,
-                                  void **handler_baton)
-        svn_error_t *(*change_file_prop)(void *file_baton,
-                                   char *name,
-                                   svn_string_t *value,
-                                   apr_pool_t *pool)
-
-        svn_error_t *(*close_file)(void *file_baton,
-                             char *text_checksum,
-                             apr_pool_t *pool)
-
-        svn_error_t *(*absent_file)(char *path,
-                              void *parent_baton,
-                              apr_pool_t *pool)
-
-        svn_error_t *(*close_edit)(void *edit_baton, apr_pool_t *pool)
-
-        svn_error_t *(*abort_edit)(void *edit_baton, apr_pool_t *pool)
-
-    svn_error_t *svn_txdelta_send_stream(svn_stream_t *stream,
-                                     svn_txdelta_window_handler_t handler,
-                                     void *handler_baton,
-                                     unsigned char *digest,
-                                     apr_pool_t *pool)
-
-cdef new_editor(svn_delta_editor_t *editor, void *edit_baton, apr_pool_t *pool)




More information about the bazaar-commits mailing list