summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>2016-11-14 18:12:57 +0100
committerAmy Winston <amynka@gentoo.org>2016-11-16 19:04:11 +0100
commit857a2b70948aaba3753f559ad9b4bf339241987c (patch)
tree9af5779ebf7bfbbcf5bf1fc961dcec1f7b135293 /dev-vcs/bzr
parentprofiles/package.mask: Mask xorg-drivers too. (diff)
downloadgentoo-857a2b70948aaba3753f559ad9b4bf339241987c.tar.gz
gentoo-857a2b70948aaba3753f559ad9b4bf339241987c.tar.bz2
gentoo-857a2b70948aaba3753f559ad9b4bf339241987c.zip
dev-vcs/bzr: remove unused patch/file
Closes: #2834
Diffstat (limited to 'dev-vcs/bzr')
-rw-r--r--dev-vcs/bzr/files/71bzr-gentoo.el5
-rw-r--r--dev-vcs/bzr/files/bzr-2.4.0-no-pyrex-citon.patch33
2 files changed, 0 insertions, 38 deletions
diff --git a/dev-vcs/bzr/files/71bzr-gentoo.el b/dev-vcs/bzr/files/71bzr-gentoo.el
deleted file mode 100644
index e8af05fb6ed6..000000000000
--- a/dev-vcs/bzr/files/71bzr-gentoo.el
+++ /dev/null
@@ -1,5 +0,0 @@
-
-;;; dev-util/bzr site-lisp configuration
-
-(unless (fboundp 'vc-bzr-registered)
- (add-to-list 'load-path "@SITELISP@"))
diff --git a/dev-vcs/bzr/files/bzr-2.4.0-no-pyrex-citon.patch b/dev-vcs/bzr/files/bzr-2.4.0-no-pyrex-citon.patch
deleted file mode 100644
index da5b3c881076..000000000000
--- a/dev-vcs/bzr/files/bzr-2.4.0-no-pyrex-citon.patch
+++ /dev/null
@@ -1,33 +0,0 @@
---- setup.py.orig 2011-08-16 17:18:11.280853205 +0200
-+++ setup.py 2011-08-16 17:20:12.597637778 +0200
-@@ -178,28 +178,8 @@
- from distutils.errors import CCompilerError, DistutilsPlatformError
- from distutils.extension import Extension
- ext_modules = []
--try:
-- try:
-- from Cython.Distutils import build_ext
-- from Cython.Compiler.Version import version as pyrex_version
-- except ImportError:
-- print("No Cython, trying Pyrex...")
-- from Pyrex.Distutils import build_ext
-- from Pyrex.Compiler.Version import version as pyrex_version
--except ImportError:
-- have_pyrex = False
-- # try to build the extension from the prior generated source.
-- print("")
-- print("The python package 'Pyrex' is not available."
-- " If the .c files are available,")
-- print("they will be built,"
-- " but modifying the .pyx files will not rebuild them.")
-- print("")
-- from distutils.command.build_ext import build_ext
--else:
-- have_pyrex = True
-- pyrex_version_info = tuple(map(int, pyrex_version.split('.')))
--
-+have_pyrex = False
-+from distutils.command.build_ext import build_ext
-
- class build_ext_if_possible(build_ext):
-