summaryrefslogtreecommitdiff
path: root/editors/openoffice-3/files/patch-python-2.6.2-svnversion
diff options
context:
space:
mode:
authorMaho Nakata <maho@FreeBSD.org>2012-05-09 03:48:16 +0000
committerMaho Nakata <maho@FreeBSD.org>2012-05-09 03:48:16 +0000
commit269adbc59185605252893f1dfb81da755aa91cf8 (patch)
tree1683b31d480403bd9c0151e7fd04a5d5909de84a /editors/openoffice-3/files/patch-python-2.6.2-svnversion
parentThe project has been renamed and we renamed (diff)
The Apache OpenOffice Project Announces Apache OpenOffice™ 3
in Tue, 08 May 2012 13:04:48 GMT. * http://mail-archives.apache.org/mod_mbox/incubator-ooo-announce/201205.mbox/%3CCAP-ksohGnmq8bmo50Db5fhZW3NysNdg41RR7Rg2f8F00ueHHww%40mail.gmail.com%3E * http://www.openoffice.org/news/aoo34.html * http://www.youtube.com/watch?v=QQaZwDwf6tc
Notes
Notes: svn path=/head/; revision=296269
Diffstat (limited to 'editors/openoffice-3/files/patch-python-2.6.2-svnversion')
-rw-r--r--editors/openoffice-3/files/patch-python-2.6.2-svnversion53
1 files changed, 0 insertions, 53 deletions
diff --git a/editors/openoffice-3/files/patch-python-2.6.2-svnversion b/editors/openoffice-3/files/patch-python-2.6.2-svnversion
deleted file mode 100644
index 5006464fe0f3..000000000000
--- a/editors/openoffice-3/files/patch-python-2.6.2-svnversion
+++ /dev/null
@@ -1,53 +0,0 @@
-http://bugs.python.org/file14047
-
---- python/Python-2.6.1.patch~ 2011-11-06 00:03:55.000000000 +0900
-+++ python/Python-2.6.1.patch 2011-11-06 07:51:41.000000000 +0900
-@@ -1,3 +1,48 @@
-+--- misc/Python-2.6.1/configure.in Wed Jun 11 09:41:16 2008
-++++ misc/build/Python-2.6.1/configure.in Fri Apr 17 09:02:52 2009
-+@@ -767,7 +767,7 @@
-+ then
-+ SVNVERSION="svnversion \$(srcdir)"
-+ else
-+- SVNVERSION="echo exported"
-++ SVNVERSION="echo Unversioned directory"
-+ fi
-+
-+ case $MACHDEP in
-+--- misc/Python-2.6.1/Makefile.pre.in Wed Jun 11 09:41:16 2008
-++++ misc/build/Python-2.6.1/Makefile.pre.in Fri Apr 17 09:02:52 2009
-+@@ -501,7 +501,7 @@
-+ $(SIGNAL_OBJS) \
-+ $(MODOBJS) \
-+ $(srcdir)/Modules/getbuildinfo.c
-+- $(CC) -c $(PY_CFLAGS) -DSVNVERSION=\"`LC_ALL=C $(SVNVERSION)`\" -o $@ $(srcdir)/Modules/getbuildinfo.c
-++ $(CC) -c $(PY_CFLAGS) -DSVNVERSION="\"`LC_ALL=C $(SVNVERSION)`\"" -o $@ $(srcdir)/Modules/getbuildinfo.c
-+
-+ Modules/getpath.o: $(srcdir)/Modules/getpath.c Makefile
-+ $(CC) -c $(PY_CFLAGS) -DPYTHONPATH='"$(PYTHONPATH)"' \
-+--- misc/Python-2.6.1/Modules/getbuildinfo.c Wed Jun 11 09:41:16 2008
-++++ misc/build/Python-2.6.1/Modules/getbuildinfo.c Fri Apr 17 09:02:52 2009
-+@@ -48,5 +48,5 @@
-+ static const char svnversion[] = SVNVERSION;
-+ if (svnversion[0] != '$')
-+ return svnversion; /* it was interpolated, or passed on command line */
-+- return "exported";
-++ return "Unversioned directory";
-+ }
-+--- misc/Python-2.6.1/Python/sysmodule.c Wed Jun 11 09:41:16 2008
-++++ misc/build/Python-2.6.1/Python/sysmodule.c Fri Apr 17 09:02:52 2009
-+@@ -1161,7 +1161,7 @@
-+
-+
-+ svnversion = _Py_svnversion();
-+- if (strcmp(svnversion, "exported") != 0)
-++ if (strcmp(svnversion, "Unversioned directory") != 0 && strcmp(svnversion, "exported") != 0)
-+ svn_revision = svnversion;
-+ else if (istag) {
-+ len = strlen(_patchlevel_revision);
-+
-+
-+
- --- misc/Python-2.6.1/Include/pyport.h Wed Jun 11 09:41:16 2008
- +++ misc/build/Python-2.6.1/Include/pyport.h Fri Apr 17 09:02:52 2009
- @@ -449,11 +449,6 @@