diff options
Diffstat (limited to 'devel/ros-documentation/files')
-rw-r--r-- | devel/ros-documentation/files/patch-3083 | 39 | ||||
-rw-r--r-- | devel/ros-documentation/files/patch-3085 | 24 |
2 files changed, 0 insertions, 63 deletions
diff --git a/devel/ros-documentation/files/patch-3083 b/devel/ros-documentation/files/patch-3083 deleted file mode 100644 index fa3e2a4e77ae..000000000000 --- a/devel/ros-documentation/files/patch-3083 +++ /dev/null @@ -1,39 +0,0 @@ -Index: rosdep.yaml -=================================================================== ---- rosdep.yaml (revision 11635) -+++ rosdep.yaml (working copy) -@@ -14,7 +14,7 @@ - macports: apr apr-util - gentoo: dev-libs/apr dev-libs/apr-util - cygwin: libapr1 libaprutil1 -- freebsd: apr-ipv6-gdbm-db42 -+ freebsd: builtin # i.e. ignore, only needed to manually build log4cxx on other OSes - python: - ubuntu: python-dev - debian: python-dev -@@ -161,7 +161,6 @@ - gentoo: dev-libs/boost - cygwin: libboost-devel libboost1.40 - freebsd: boost-python-libs -- # freebsd: boost-pyste is more complete - zlib: - ubuntu: zlib1g-dev - debian: zlib1g-dev -@@ -351,7 +350,7 @@ - arch: autoconf - macports: autoconf - gentoo: sys-devel/autoconf -- freebsd: autoconf213 autoconf262 -+ freebsd: autoconf213 autoconf268 - automake: - ubuntu: automake - debian: automake -@@ -360,7 +359,7 @@ - arch: automake - macports: automake - gentoo: sys-devel/automake -- freebsd: automake14 automake15 automake16 automake17 automake18 automake19 automake110 -+ freebsd: automake14 automake111 - libtool: - ubuntu: - '10.04': libtool libltdl-dev diff --git a/devel/ros-documentation/files/patch-3085 b/devel/ros-documentation/files/patch-3085 deleted file mode 100644 index 6e12ca575fe3..000000000000 --- a/devel/ros-documentation/files/patch-3085 +++ /dev/null @@ -1,24 +0,0 @@ -Index: core/roslib/src/roslib/packages.py -=================================================================== ---- core/roslib/src/roslib/packages.py (revision 11635) -+++ core/roslib/src/roslib/packages.py (working copy) -@@ -502,7 +502,8 @@ - if m in files: - test_path = os.path.join(p, node_type) - s = os.stat(test_path) -- if (s.st_mode & stat.S_IRWXU == stat.S_IRWXU): -+ if (s.st_mode & (stat.S_IRUSR | stat.S_IXUSR) == -+ (stat.S_IRUSR | stat.S_IXUSR)): - return test_path - if '.svn' in dirs: - dirs.remove('.svn') -@@ -514,7 +515,8 @@ - if node_type in files: - test_path = os.path.join(p, node_type) - s = os.stat(test_path) -- if (s.st_mode & stat.S_IRWXU == stat.S_IRWXU): -+ if (s.st_mode & (stat.S_IRUSR | stat.S_IXUSR) == -+ (stat.S_IRUSR | stat.S_IXUSR)): - return test_path - if '.svn' in dirs: - dirs.remove('.svn') |