Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/libint/, sci-libs/libint/files/
Date: Wed, 26 May 2021 12:37:32
Message-Id: 1622032521.6af502b3423abbb11926b78daa7ad157b8a59e80.sam@gentoo
1 commit: 6af502b3423abbb11926b78daa7ad157b8a59e80
2 Author: Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
3 AuthorDate: Tue May 25 16:57:08 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Wed May 26 12:35:21 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6af502b3
7
8 sci-libs/libint: Drop unused USE=static-libs in 1.1.6, cleanup patch
9
10 Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 sci-libs/libint/files/libint-1.1.6-as-needed.patch | 17 -----------------
14 sci-libs/libint/libint-1.1.6.ebuild | 7 +++----
15 2 files changed, 3 insertions(+), 21 deletions(-)
16
17 diff --git a/sci-libs/libint/files/libint-1.1.6-as-needed.patch b/sci-libs/libint/files/libint-1.1.6-as-needed.patch
18 index c48505314b3..d9f6e449ba0 100644
19 --- a/sci-libs/libint/files/libint-1.1.6-as-needed.patch
20 +++ b/sci-libs/libint/files/libint-1.1.6-as-needed.patch
21 @@ -1,12 +1,3 @@
22 - configure.ac | 3 +--
23 - src/bin/MakeRules.in | 2 +-
24 - src/lib/libderiv/Makefile.library | 2 +-
25 - src/lib/libint/Makefile.library | 2 +-
26 - src/lib/libr12/Makefile.library | 2 +-
27 - 5 files changed, 5 insertions(+), 6 deletions(-)
28 -
29 -diff --git a/configure.ac b/configure.ac
30 -index dc86e88..8cc3aac 100644
31 --- a/configure.ac
32 +++ b/configure.ac
33 @@ -317,12 +317,11 @@ LIBS=$withval
34 @@ -23,8 +14,6 @@ index dc86e88..8cc3aac 100644
35 echo Using extra library directories: $withval
36 )
37
38 -diff --git a/src/bin/MakeRules.in b/src/bin/MakeRules.in
39 -index 5b90607..8ea5005 100644
40 --- a/src/bin/MakeRules.in
41 +++ b/src/bin/MakeRules.in
42 @@ -3,7 +3,7 @@ HAVE_MAKERULES = yes
43 @@ -36,8 +25,6 @@ index 5b90607..8ea5005 100644
44
45 .PHONY: install install_inc install_target uninstall clean oclean distclean targetclean realclean
46 install::
47 -diff --git a/src/lib/libderiv/Makefile.library b/src/lib/libderiv/Makefile.library
48 -index ee152ef..8debfe8 100644
49 --- a/src/lib/libderiv/Makefile.library
50 +++ b/src/lib/libderiv/Makefile.library
51 @@ -23,7 +23,7 @@ $(TOPDIR)/lib/$(NAME).a: $(LIBOBJ)
52 @@ -49,8 +36,6 @@ index ee152ef..8debfe8 100644
53
54 $(TOPDIR)/include/$(NAME)/$(NAME).h: $(NAME).h
55 $(INSTALL) $(INSTALLDIROPT) $(TOPDIR)/include/$(NAME)
56 -diff --git a/src/lib/libint/Makefile.library b/src/lib/libint/Makefile.library
57 -index 23e2918..01c4225 100644
58 --- a/src/lib/libint/Makefile.library
59 +++ b/src/lib/libint/Makefile.library
60 @@ -41,7 +41,7 @@ $(TOPDIR)/lib/$(NAME).a: $(LIBOBJ)
61 @@ -62,8 +47,6 @@ index 23e2918..01c4225 100644
62
63 $(TOPDIR)/include/$(NAME)/$(NAME).h: $(NAME).h
64 $(INSTALL) $(INSTALLDIROPT) $(TOPDIR)/include/$(NAME)
65 -diff --git a/src/lib/libr12/Makefile.library b/src/lib/libr12/Makefile.library
66 -index 1510807..26d47a4 100644
67 --- a/src/lib/libr12/Makefile.library
68 +++ b/src/lib/libr12/Makefile.library
69 @@ -47,7 +47,7 @@ $(TOPDIR)/lib/$(NAME).a: $(LIBOBJ)
70
71 diff --git a/sci-libs/libint/libint-1.1.6.ebuild b/sci-libs/libint/libint-1.1.6.ebuild
72 index f3a93eaaacd..1abdfd1fd79 100644
73 --- a/sci-libs/libint/libint-1.1.6.ebuild
74 +++ b/sci-libs/libint/libint-1.1.6.ebuild
75 @@ -3,19 +3,18 @@
76
77 EAPI=7
78
79 -MY_PV="$(ver_rs 0- -)"
80 inherit autotools fortran-2 toolchain-funcs
81
82 +MY_PV="$(ver_rs 0- -)"
83 +
84 DESCRIPTION="Matrix elements (integrals) evaluation over Cartesian Gaussian functions"
85 HOMEPAGE="https://github.com/evaleev/libint"
86 SRC_URI="https://github.com/evaleev/libint/archive/release-${MY_PV}.tar.gz -> ${P}.tar.gz"
87 +S="${WORKDIR}/${PN}-release-${MY_PV}"
88
89 LICENSE="GPL-2"
90 SLOT="1"
91 KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
92 -IUSE="static-libs"
93 -
94 -S="${WORKDIR}/${PN}-release-${MY_PV}"
95
96 PATCHES=( "${FILESDIR}"/${P}-as-needed.patch )