public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/isl/files/
@ 2020-05-21  8:22 Sergei Trofimovich
  0 siblings, 0 replies; 2+ messages in thread
From: Sergei Trofimovich @ 2020-05-21  8:22 UTC (permalink / raw
  To: gentoo-commits

commit:     3933fab363f87b3a69bc2a59c9d3abe8ed094788
Author:     Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Wed May 20 15:30:45 2020 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Thu May 21 08:22:43 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3933fab3

dev-libs/isl: remove unused patch

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 dev-libs/isl/files/isl-0.22-bmap-nullderef.patch | 34 ------------------------
 1 file changed, 34 deletions(-)

diff --git a/dev-libs/isl/files/isl-0.22-bmap-nullderef.patch b/dev-libs/isl/files/isl-0.22-bmap-nullderef.patch
deleted file mode 100644
index 00104f1f432..00000000000
--- a/dev-libs/isl/files/isl-0.22-bmap-nullderef.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-https://groups.google.com/forum/#!original/isl-development/Otz1QKZDpzA/71GkTvqkCAAJ
-https://bugs.gentoo.org/702968
-
-Subject: [MAINT PATCH] isl_basic_map_underlying_set: fix error handling
-Date: Tue,  7 Jan 2020 23:02:42 +0100
-Message-Id: <20200107220242...@kotnet.org>
-X-Mailer: git-send-email 2.24.1.591.g12029dc57d
-MIME-Version: 1.0
-Content-Transfer-Encoding: 8bit
-From: Sven Verdoolaege <sven.ve...@gmail.com>
-
-The check for a valid bmap before accessing its n_div field
-was inadvertently removed in isl-0.21-230-g6a4c4bbf31 (isl_map.c:
-extract out shared isl_basic_map_{take,restore}_space,
-Thu Aug 11 10:27:49 2016 +0200).
-
-Reported-by: Richard Biener <rgue...@suse.de>
-Signed-off-by: Sven Verdoolaege <sven.ve...@gmail.com>
----
- isl_map.c | 2 ++
- 1 file changed, 2 insertions(+)
---- a/isl_map.c
-+++ b/isl_map.c
-@@ -5511,6 +5511,8 @@ __isl_give isl_basic_set *isl_basic_map_underlying_set(
- 	    !isl_space_is_named_or_nested(bmap->dim, isl_dim_out))
- 		return bset_from_bmap(bmap);
- 	bmap = isl_basic_map_cow(bmap);
-+	if (!bmap)
-+		return NULL;
- 	space = isl_basic_map_take_space(bmap);
- 	space = isl_space_underlying(space, bmap->n_div);
- 	bmap = isl_basic_map_restore_space(bmap, space);
--- 
-2.24.1.591.g12029dc57d


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/isl/files/
@ 2020-07-06 18:40 Sergei Trofimovich
  0 siblings, 0 replies; 2+ messages in thread
From: Sergei Trofimovich @ 2020-07-06 18:40 UTC (permalink / raw
  To: gentoo-commits

commit:     75b8162fe5349d5ef73954b9332c0889ca894360
Author:     Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Mon Jul  6 17:23:30 2020 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Mon Jul  6 18:40:28 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75b8162f

dev-libs/isl: remove unused patch

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/16613
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 dev-libs/isl/files/isl-0.07-gdb-autoload-dir.patch | 17 -----------------
 1 file changed, 17 deletions(-)

diff --git a/dev-libs/isl/files/isl-0.07-gdb-autoload-dir.patch b/dev-libs/isl/files/isl-0.07-gdb-autoload-dir.patch
deleted file mode 100644
index 58e80b29687..00000000000
--- a/dev-libs/isl/files/isl-0.07-gdb-autoload-dir.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-Install python module into gdb auto-load directory.
-
---- a/Makefile.in
-+++ b/Makefile.in
-@@ -2189,9 +2189,9 @@ install-data-local: $(srcdir)/isl.py
- 	case $$libisl in \
- 	'') echo Cannot find isl library name. GDB bindings not installed.;; \
- 	*) echo $(INSTALL_DATA) $(srcdir)/isl.py \
--		$(DESTDIR)$(libdir)/$$libisl-gdb.py; \
--	test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)"; \
--	$(INSTALL_DATA) $(srcdir)/isl.py $(DESTDIR)$(libdir)/$$libisl-gdb.py; esac
-+		$(DESTDIR)$(prefix)/share/gdb/auto-load$(libdir)/$$libisl-gdb.py; \
-+	test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(prefix)/share/gdb/auto-load$(libdir)"; \
-+	$(INSTALL_DATA) $(srcdir)/isl.py $(DESTDIR)$(prefix)/share/gdb/auto-load$(libdir)/$$libisl-gdb.py; esac
- 
- # Tell versions [3.59,3.63) of GNU make to not export all variables.
- # Otherwise a system limit (for SysV at least) may be exceeded.


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-07-06 18:40 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-07-06 18:40 [gentoo-commits] repo/gentoo:master commit in: dev-libs/isl/files/ Sergei Trofimovich
  -- strict thread matches above, loose matches on Subject: below --
2020-05-21  8:22 Sergei Trofimovich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox