diff options
author | Amadeusz Żołnowski <aidecoe@gentoo.org> | 2017-01-25 22:46:06 +0000 |
---|---|---|
committer | Amadeusz Żołnowski <aidecoe@gentoo.org> | 2017-01-25 22:46:18 +0000 |
commit | 8520993f20691cb7a548f0af6ce5f5619471c141 (patch) | |
tree | 1cd055ff3869b2bd9a364da912c529240924e744 /net-mail/notmuch/files | |
parent | app-text/tesseract: fix DOCS typo (diff) | |
download | gentoo-8520993f20691cb7a548f0af6ce5f5619471c141.tar.gz gentoo-8520993f20691cb7a548f0af6ce5f5619471c141.tar.bz2 gentoo-8520993f20691cb7a548f0af6ce5f5619471c141.zip |
net-mail/notmuch: Remove oldest versions
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'net-mail/notmuch/files')
3 files changed, 0 insertions, 113 deletions
diff --git a/net-mail/notmuch/files/0.19-0001-doc-gzipped-notmuch.3-before-trying-to.patch b/net-mail/notmuch/files/0.19-0001-doc-gzipped-notmuch.3-before-trying-to.patch deleted file mode 100644 index 3890328f75ac..000000000000 --- a/net-mail/notmuch/files/0.19-0001-doc-gzipped-notmuch.3-before-trying-to.patch +++ /dev/null @@ -1,28 +0,0 @@ -From a95173249ae8811241da7640814934837abce53b Mon Sep 17 00:00:00 2001 -From: David Bremner <david@tethera.net> -Date: Sun, 25 Jan 2015 15:04:51 +0100 -Subject: [PATCH] doc: gzipped notmuch.3 before trying to install notmuch.3.gz - -If HAVE_SPHINX=0 but HAVE_DOXYGEN=1, then the previous version was -trying to install notmuch.3.gz but only got as far as creating -notmuch.3 ---- - doc/Makefile.local | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/doc/Makefile.local b/doc/Makefile.local -index e7d0bac..a719d8b 100644 ---- a/doc/Makefile.local -+++ b/doc/Makefile.local -@@ -63,7 +63,7 @@ install-man: install-apidocs - ifeq ($(HAVE_DOXYGEN),1) - MAN_GZIP_FILES += ${APIMAN}.gz - apidocs: $(APIMAN) --install-apidocs: apidocs -+install-apidocs: ${APIMAN}.gz - mkdir -p "$(DESTDIR)$(mandir)/man3" - install -m0644 $(DOCBUILDDIR)/man/man3/*.3.gz $(DESTDIR)/$(mandir)/man3 - --- -2.2.2 - diff --git a/net-mail/notmuch/files/0.19-0002-Rename-rst2man-to-rst2man.py-for-Gento.patch b/net-mail/notmuch/files/0.19-0002-Rename-rst2man-to-rst2man.py-for-Gento.patch deleted file mode 100644 index beda83ddff3f..000000000000 --- a/net-mail/notmuch/files/0.19-0002-Rename-rst2man-to-rst2man.py-for-Gento.patch +++ /dev/null @@ -1,38 +0,0 @@ -From dcae4803d006af1a7b961a492d65c28a3cffbc3c Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Amadeusz=20=C5=BBo=C5=82nowski?= <aidecoe@aidecoe.name> -Date: Thu, 29 Jan 2015 14:17:01 +0100 -Subject: [PATCH 2/2] Rename rst2man to rst2man.py for Gentoo - -Gentoo doesn't provide symlink rst2man.py -> rst2man. ---- - configure | 2 +- - doc/prerst2man.py | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -diff --git a/configure b/configure -index d14e7d1..bf78066 100755 ---- a/configure -+++ b/configure -@@ -436,7 +436,7 @@ else - have_sphinx=0 - - printf "Checking if rst2man is available... " -- if rst2man -V > /dev/null 2>&1; then -+ if rst2man.py -V > /dev/null 2>&1; then - printf "Yes.\n" - have_rst2man=1 - else -diff --git a/doc/prerst2man.py b/doc/prerst2man.py -index 437dea9..22b8258 100644 ---- a/doc/prerst2man.py -+++ b/doc/prerst2man.py -@@ -59,5 +59,5 @@ for page in man_pages: - outfile.write("".join(lines)) - outfile.close() - -- system('set -x; rst2man {0} {1}/{2}.{3}' -+ system('set -x; rst2man.py {0} {1}/{2}.{3}' - .format(filename, outdir, page[0], page[4])) --- -2.2.2 - diff --git a/net-mail/notmuch/files/0.19-0003-build-eliminate-use-of-python-execfile.patch b/net-mail/notmuch/files/0.19-0003-build-eliminate-use-of-python-execfile.patch deleted file mode 100644 index 2eff9d63612d..000000000000 --- a/net-mail/notmuch/files/0.19-0003-build-eliminate-use-of-python-execfile.patch +++ /dev/null @@ -1,47 +0,0 @@ -From 381385ccb7581bb16b72c23fd804c40b0330fe71 Mon Sep 17 00:00:00 2001 -From: David Bremner <david@tethera.net> -Date: Sat, 3 Jan 2015 14:14:03 +0100 -Subject: [PATCH 3/3] build: eliminate use of python execfile command - -As discussed in -id:8cc9dd580ad672527e12f43706f9803b2c8e99d8.1405220724.git.wking@tremily.us, -execfile is unavailable in python3. - -The approach of this commit avoids modifying the python module path, -which is arguably preferable since it avoids potentially accidentally -importing a module from the wrong place. ---- - devel/release-checks.sh | 2 +- - doc/prerst2man.py | 3 ++- - 2 files changed, 3 insertions(+), 2 deletions(-) - -diff --git a/devel/release-checks.sh b/devel/release-checks.sh -index 797d62a..ae02f55 100755 ---- a/devel/release-checks.sh -+++ b/devel/release-checks.sh -@@ -130,7 +130,7 @@ else - fi - - echo -n "Checking that python bindings version is $VERSION... " --py_version=`python -c "execfile('$PV_FILE'); print __VERSION__"` -+py_version=`python -c "with open('$PV_FILE') as vf: exec(vf.read()); print __VERSION__"` - if [ "$py_version" = "$VERSION" ] - then - echo Yes. -diff --git a/doc/prerst2man.py b/doc/prerst2man.py -index 22b8258..45dddca 100644 ---- a/doc/prerst2man.py -+++ b/doc/prerst2man.py -@@ -10,7 +10,8 @@ outdir = argv[2] - if not isdir(outdir): - makedirs(outdir, 0o755) - --execfile(sourcedir + "/conf.py") -+with open(sourcedir + "/conf.py") as cf: -+ exec(cf.read()) - - - def header(file, startdocname, command, description, authors, section): --- -2.2.2 - |