[gentoo-commits] repo/gentoo:master commit in: sci-libs/bliss/, sci-libs/bliss/files/

2024-01-22 Thread Michael Orlitzky
commit: 66f19e13ac53efa018d12a375912e6c4789b7e51
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Mon Jan 22 12:05:38 2024 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Mon Jan 22 12:06:29 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66f19e13

sci-libs/bliss: fix libbliss underlinking in a new revision

Closes: https://bugs.gentoo.org/922651
Signed-off-by: Michael Orlitzky  gentoo.org>

 sci-libs/bliss/bliss-0.77-r1.ebuild| 31 ++
 .../files/bliss-0.77-libbliss-underlinking.patch   | 16 +++
 2 files changed, 47 insertions(+)

diff --git a/sci-libs/bliss/bliss-0.77-r1.ebuild 
b/sci-libs/bliss/bliss-0.77-r1.ebuild
new file mode 100644
index ..af5467295b07
--- /dev/null
+++ b/sci-libs/bliss/bliss-0.77-r1.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+SRC_URI="https://users.aalto.fi/~tjunttil/${PN}/downloads/${P}.zip;
+DESCRIPTION="Compute Automorphism Groups and Canonical Labelings of Graphs"
+HOMEPAGE="https://users.aalto.fi/~tjunttil/bliss/index.html;
+
+LICENSE="LGPL-3"
+SLOT="0/1"
+KEYWORDS="~amd64 ~riscv ~x86 ~amd64-linux ~x86-linux"
+IUSE="gmp"
+
+RDEPEND="gmp? ( dev-libs/gmp:0= )"
+DEPEND="${RDEPEND}"
+BDEPEND="app-arch/unzip"
+PATCHES=(
+   "${FILESDIR}/${PN}-0.77-install.patch"
+   "${FILESDIR}/${PN}-0.77-libbliss-underlinking.patch"
+)
+
+src_configure() {
+   local mycmakeargs=(
+   -DUSE_GMP="$(usex gmp)"
+   )
+
+   cmake_src_configure
+}

diff --git a/sci-libs/bliss/files/bliss-0.77-libbliss-underlinking.patch 
b/sci-libs/bliss/files/bliss-0.77-libbliss-underlinking.patch
new file mode 100644
index ..faf04d7ae6e3
--- /dev/null
+++ b/sci-libs/bliss/files/bliss-0.77-libbliss-underlinking.patch
@@ -0,0 +1,16 @@
+https://bugs.gentoo.org/922651
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index cfdb0a6..e0fd51a 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -51,6 +51,9 @@ endif(MSVC)
+ # Add the shared library
+ add_library(bliss SHARED ${BLISS_SOURCE_FILES})
+ set_property(TARGET bliss PROPERTY POSITION_INDEPENDENT_CODE 1)
++if(USE_GMP)
++  target_link_libraries(bliss ${GMP_LIBRARIES})
++endif(USE_GMP)
+ 
+ # Add the static library
+ add_library(bliss_static STATIC ${BLISS_SOURCE_FILES})



[gentoo-commits] repo/gentoo:master commit in: sci-libs/bliss/files/

2023-06-26 Thread Andrew Ammerlaan
commit: a4761d8f3d0b358edace17dd81cd01d213049e7e
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Mon Jun 26 17:17:20 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Mon Jun 26 17:58:39 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4761d8f

sci-libs/bliss: remove unused patches

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/31627
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 sci-libs/bliss/files/bliss-0.73-autotools.patch |  99 -
 sci-libs/bliss/files/bliss-0.73-clang.patch |  11 -
 sci-libs/bliss/files/bliss-0.73-error.patch | 471 
 sci-libs/bliss/files/bliss-0.73-rehn.patch  |  74 
 sci-libs/bliss/files/bliss-0.73.1.in|  55 ---
 5 files changed, 710 deletions(-)

diff --git a/sci-libs/bliss/files/bliss-0.73-autotools.patch 
b/sci-libs/bliss/files/bliss-0.73-autotools.patch
deleted file mode 100644
index efdbcb81b42a..
--- a/sci-libs/bliss/files/bliss-0.73-autotools.patch
+++ /dev/null
@@ -1,99 +0,0 @@
-Replace simple Makefile by autotools
-- allow shared library
-- parallel build
-- added pkg-config support
-
-Author: Christoph Junghans 
-
-diff -Naur bliss-0.72-fedora/config/.dummy bliss-0.72/config/.dummy
 bliss-0.72-fedora/config/.dummy1969-12-31 17:00:00.0 -0700
-+++ bliss-0.72/config/.dummy   2013-04-28 14:43:06.143760368 -0600
-@@ -0,0 +1 @@
-+Dummy file to make patch create config dir, which is needed for autotools
-diff -Naur bliss-0.72-fedora/configure.ac bliss-0.72/configure.ac
 bliss-0.72-fedora/configure.ac 1969-12-31 17:00:00.0 -0700
-+++ bliss-0.72/configure.ac2013-04-28 14:40:42.283242722 -0600
-@@ -0,0 +1,32 @@
-+AC_PREREQ([2.65])
-+AC_INIT([bliss], [0.73], [tommi.junt...@kk.fi])
-+
-+AC_CONFIG_AUX_DIR(config)
-+AC_CONFIG_MACRO_DIR(config)
-+
-+AM_INIT_AUTOMAKE([1.8 foreign])
-+
-+SHARED_VERSION_INFO="1:0:0"
-+AC_SUBST(SHARED_VERSION_INFO)
-+
-+# Checks for programs.
-+AC_PROG_CXX
-+
-+LT_INIT
-+# Checks for libraries.
-+AC_ARG_WITH([gmp],
-+  [AS_HELP_STRING([--with-gmp], [enable support for GNU Multiple Precision 
Arithmetic Library @<:@default=check@:>@])],
-+  [], [with_gmp=no])
-+AS_IF([test "x$with_gmp" != xno],
-+  [AC_CHECK_HEADERS([gmp.h],,AC_MSG_ERROR([Cannot find gmp.h header]))
-+AC_CHECK_LIB([gmp],_init,,AC_MSG_ERROR([Cannot find gmp library]))
-+AC_SUBST([GMP],[-lgmp])
-+[CPPFLAGS="$CPPFLAGS -DBLISS_USE_GMP"]])
-+
-+AC_CHECK_PROG(DOXYGEN,doxygen,doxygen,no)
-+AM_CONDITIONAL(HAVE_DOXYGEN,[test .$DOXYGEN != .no])
-+
-+AC_CONFIG_FILES([Makefile])
-+AC_CONFIG_FILES([bliss.pc])
-+AC_CONFIG_FILES([bliss.1])
-+AC_OUTPUT
-diff -Naur bliss-0.72-fedora/bliss.pc.in bliss-0.72/bliss.pc.in
 bliss-0.72-fedora/bliss.pc.in  1969-12-31 17:00:00.0 -0700
-+++ bliss-0.72/bliss.pc.in 2013-04-28 14:40:54.223285686 -0600
-@@ -0,0 +1,13 @@
-+prefix=@prefix@
-+exec_prefix=@exec_prefix@
-+libdir=@libdir@
-+includedir=@includedir@
-+
-+Name: bliss
-+Description: Library for Computing Automorphism Groups and Canonical 
Labelings of Graphs 
-+URL: http://www.tcs.hut.fi/Software/bliss/index.shtml
-+Version: @VERSION@
-+Requires: 
-+Libs: -L${libdir} -lbliss @GMP@
-+Libs.private: -lm
-+Cflags: -I${includedir}
-diff -Naur bliss-0.72-fedora/Makefile.am bliss-0.72/Makefile.am
 bliss-0.72-fedora/Makefile.am  1969-12-31 17:00:00.0 -0700
-+++ bliss-0.72/Makefile.am 2013-04-28 14:47:26.944698789 -0600
-@@ -0,0 +1,30 @@
-+ACLOCAL_AMFLAGS = -I config
-+
-+lib_LTLIBRARIES = libbliss.la
-+
-+libbliss_la_LDFLAGS = -no-undefined -version-info @SHARED_VERSION_INFO@
-+libbliss_la_SOURCES = \
-+  defs.cc graph.cc partition.cc orbit.cc uintseqhash.cc heap.cc \
-+  timer.cc utils.cc bliss_C.cc
-+
-+pkginclude_HEADERS = \
-+  bignum.hh bliss_C.h defs.hh graph.hh heap.hh kqueue.hh kstack.hh \
-+  orbit.hh partition.hh timer.hh uintseqhash.hh utils.hh
-+
-+bin_PROGRAMS = bliss
-+bliss_SOURCES = bliss.cc
-+bliss_LDADD = libbliss.la
-+dist_man1_MANS = bliss.1
-+
-+pkgconfigdir = $(libdir)/pkgconfig
-+pkgconfig_DATA = bliss.pc
-+
-+html-local: Doxyfile
-+if HAVE_DOXYGEN
-+  $(DOXYGEN) $(srcdir)/Doxyfile
-+else
-+  @echo "doxygen was not found, please re-run configure"
-+endif
-+
-+clean-local:
-+  -rm -rf html

diff --git a/sci-libs/bliss/files/bliss-0.73-clang.patch 
b/sci-libs/bliss/files/bliss-0.73-clang.patch
deleted file mode 100644
index 8a2e4bb6ca47..
--- a/sci-libs/bliss/files/bliss-0.73-clang.patch
+++ /dev/null
@@ -1,11 +0,0 @@
 ./bliss.cc.orig2020-07-10 10:34:44.94600 -0600
-+++ ./bliss.cc 2020-07-10 10:35:36.07600 -0600
-@@ -59,7 +59,7 @@
-   else program_name = argv0;  
-   if(!program_name or *program_name == 0) program_name = "bliss";
- 
--  fprintf(fp, "bliss version %s (compiled "__DATE__")\n", bliss::version);
-+  fprintf(fp, "bliss version %s (compiled %s)\n", bliss::version, 

[gentoo-commits] repo/gentoo:master commit in: sci-libs/bliss/

2023-06-25 Thread Michael Orlitzky
commit: ae8d6fb1e716cb7499418af4ea0177a564610a00
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Sun Jun 25 12:48:07 2023 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Sun Jun 25 12:48:23 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae8d6fb1

sci-libs/bliss: drop 0.73-r2

Signed-off-by: Michael Orlitzky  gentoo.org>

 sci-libs/bliss/Manifest |  1 -
 sci-libs/bliss/bliss-0.73-r2.ebuild | 49 -
 2 files changed, 50 deletions(-)

diff --git a/sci-libs/bliss/Manifest b/sci-libs/bliss/Manifest
index 69758a8152ae..6a7b83ca6e7d 100644
--- a/sci-libs/bliss/Manifest
+++ b/sci-libs/bliss/Manifest
@@ -1,2 +1 @@
-DIST bliss-0.73.zip 94108 BLAKE2B 
836184b31fa28db3328c21e7563366a93cf1645b02b96e185838e3c2513393b1d0a54783ca14c6d7f1a1d5055800bc3d7acde3c584e61e66c9ab93936824353b
 SHA512 
30f505945c577d8bcb265a349f5bc9d4dcd96555fa3add285199cdd95ea2710f04409008ff06432daffab62c132e884845eae7f823191407906202862509e05d
 DIST bliss-0.77.zip 117888 BLAKE2B 
ce4b2fa568c5520fe41748bf59a493af1c33ec9cc0732aca5e5ba657ca726e118e26763355778e3def5716d62e7d3aceceb592ef67e5e148c250d3ab67d7
 SHA512 
d210f137e614bca7cf0d88851d0c62292bf479b687bca6a25d9e42661825f882a4ff8c74c96a965bd9d4f246a1bda6b90cef64894914e6f7b17db6bf4a8f4b17

diff --git a/sci-libs/bliss/bliss-0.73-r2.ebuild 
b/sci-libs/bliss/bliss-0.73-r2.ebuild
deleted file mode 100644
index 9293ac0a67aa..
--- a/sci-libs/bliss/bliss-0.73-r2.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools
-
-SRC_URI="http://www.tcs.hut.fi/Software/${PN}/${P}.zip;
-DESCRIPTION="Compute Automorphism Groups and Canonical Labelings of Graphs"
-HOMEPAGE="http://www.tcs.hut.fi/Software/bliss/;
-
-LICENSE="LGPL-3"
-SLOT="0/1"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="doc gmp static-libs"
-
-RDEPEND="gmp? ( dev-libs/gmp:0= )"
-DEPEND="${RDEPEND}
-   app-arch/unzip
-   doc? ( app-doc/doxygen )"
-
-#patches from http://pkgs.fedoraproject.org/cgit/rpms/bliss.git/tree/
-PATCHES=(
-   "${FILESDIR}"/${P}-error.patch
-   "${FILESDIR}"/${P}-rehn.patch
-   "${FILESDIR}"/${P}-clang.patch
-   "${FILESDIR}"/${P}-autotools.patch
-)
-
-src_prepare() {
-   default
-   cp "${FILESDIR}/${P}.1.in" "${PN}.1.in" || die
-   rm Makefile || die
-   eautoreconf
-}
-
-src_configure() {
-   econf $(use_with gmp) $(use_enable static-libs static)
-}
-
-src_compile() {
-   emake all $(usex doc html "")
-}
-
-src_install() {
-   default
-   use static-libs || find "${ED}" -name '*.la' -delete
-   use doc && dodoc -r html
-}



[gentoo-commits] repo/gentoo:master commit in: sci-libs/bliss/

2022-12-23 Thread Arthur Zamarin
commit: 6739d11254826f56d30e56a8221e4e7123eb8946
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Dec 23 20:49:22 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Dec 23 20:49:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6739d112

sci-libs/bliss: Stabilize 0.77 x86, #832376

Signed-off-by: Arthur Zamarin  gentoo.org>

 sci-libs/bliss/bliss-0.77.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/bliss/bliss-0.77.ebuild b/sci-libs/bliss/bliss-0.77.ebuild
index 3221b851a42f..cd1ab52001da 100644
--- a/sci-libs/bliss/bliss-0.77.ebuild
+++ b/sci-libs/bliss/bliss-0.77.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://users.aalto.fi/~tjunttil/bliss/index.html;
 
 LICENSE="LGPL-3"
 SLOT="0/1"
-KEYWORDS="amd64 ~riscv ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~riscv x86 ~amd64-linux ~x86-linux"
 IUSE="gmp"
 
 RDEPEND="gmp? ( dev-libs/gmp:0= )"



[gentoo-commits] repo/gentoo:master commit in: sci-libs/bliss/

2022-02-07 Thread Jakov Smolić
commit: faaeb5eb58c43de07623faef355d12d75c59470f
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Feb  7 10:25:57 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Mon Feb  7 10:25:57 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=faaeb5eb

sci-libs/bliss: Stabilize 0.77 amd64, #832376

Signed-off-by: Jakov Smolić  gentoo.org>

 sci-libs/bliss/bliss-0.77.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-libs/bliss/bliss-0.77.ebuild b/sci-libs/bliss/bliss-0.77.ebuild
index cfd896bcc16d..3221b851a42f 100644
--- a/sci-libs/bliss/bliss-0.77.ebuild
+++ b/sci-libs/bliss/bliss-0.77.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -11,7 +11,7 @@ HOMEPAGE="https://users.aalto.fi/~tjunttil/bliss/index.html;
 
 LICENSE="LGPL-3"
 SLOT="0/1"
-KEYWORDS="~amd64 ~riscv ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~riscv ~x86 ~amd64-linux ~x86-linux"
 IUSE="gmp"
 
 RDEPEND="gmp? ( dev-libs/gmp:0= )"



[gentoo-commits] repo/gentoo:master commit in: sci-libs/bliss/

2021-12-29 Thread Yixun Lan
commit: a8aa1c4dec75d7ed6968ffcb5e7a0d30963facd0
Author: Alex Fan  gmail  com>
AuthorDate: Tue Dec 28 10:17:39 2021 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Wed Dec 29 13:39:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8aa1c4d

sci-libs/bliss: keyword 0.77 for ~riscv

Signed-off-by: Alex Fan  gmail.com>
Signed-off-by: Yixun Lan  gentoo.org>

 sci-libs/bliss/bliss-0.77.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/bliss/bliss-0.77.ebuild b/sci-libs/bliss/bliss-0.77.ebuild
index 88a4d042c220..cfd896bcc16d 100644
--- a/sci-libs/bliss/bliss-0.77.ebuild
+++ b/sci-libs/bliss/bliss-0.77.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://users.aalto.fi/~tjunttil/bliss/index.html;
 
 LICENSE="LGPL-3"
 SLOT="0/1"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~riscv ~x86 ~amd64-linux ~x86-linux"
 IUSE="gmp"
 
 RDEPEND="gmp? ( dev-libs/gmp:0= )"



[gentoo-commits] repo/gentoo:master commit in: sci-libs/bliss/files/, sci-libs/bliss/

2021-12-15 Thread Andrew Ammerlaan
commit: 62c564e6679094847603f21ffc1fd63a5345511c
Author: François Bissey  gmail  com>
AuthorDate: Mon Dec 13 03:35:11 2021 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Wed Dec 15 11:40:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62c564e6

sci-libs/bliss: New upstream release

Closes: https://bugs.gentoo.org/829119
Closes: https://github.com/gentoo/gentoo/pull/23284
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: François René Pierre Bissey  gmail.com>
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 sci-libs/bliss/Manifest   |  1 +
 sci-libs/bliss/bliss-0.77.ebuild  | 28 +++
 sci-libs/bliss/files/bliss-0.77-install.patch | 32 +++
 3 files changed, 61 insertions(+)

diff --git a/sci-libs/bliss/Manifest b/sci-libs/bliss/Manifest
index 827342cdd284..69758a8152ae 100644
--- a/sci-libs/bliss/Manifest
+++ b/sci-libs/bliss/Manifest
@@ -1 +1,2 @@
 DIST bliss-0.73.zip 94108 BLAKE2B 
836184b31fa28db3328c21e7563366a93cf1645b02b96e185838e3c2513393b1d0a54783ca14c6d7f1a1d5055800bc3d7acde3c584e61e66c9ab93936824353b
 SHA512 
30f505945c577d8bcb265a349f5bc9d4dcd96555fa3add285199cdd95ea2710f04409008ff06432daffab62c132e884845eae7f823191407906202862509e05d
+DIST bliss-0.77.zip 117888 BLAKE2B 
ce4b2fa568c5520fe41748bf59a493af1c33ec9cc0732aca5e5ba657ca726e118e26763355778e3def5716d62e7d3aceceb592ef67e5e148c250d3ab67d7
 SHA512 
d210f137e614bca7cf0d88851d0c62292bf479b687bca6a25d9e42661825f882a4ff8c74c96a965bd9d4f246a1bda6b90cef64894914e6f7b17db6bf4a8f4b17

diff --git a/sci-libs/bliss/bliss-0.77.ebuild b/sci-libs/bliss/bliss-0.77.ebuild
new file mode 100644
index ..88a4d042c220
--- /dev/null
+++ b/sci-libs/bliss/bliss-0.77.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+SRC_URI="https://users.aalto.fi/~tjunttil/${PN}/downloads/${P}.zip;
+DESCRIPTION="Compute Automorphism Groups and Canonical Labelings of Graphs"
+HOMEPAGE="https://users.aalto.fi/~tjunttil/bliss/index.html;
+
+LICENSE="LGPL-3"
+SLOT="0/1"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="gmp"
+
+RDEPEND="gmp? ( dev-libs/gmp:0= )"
+DEPEND="${RDEPEND}"
+BDEPEND="app-arch/unzip"
+PATCHES=( "${FILESDIR}/${PN}-0.77-install.patch" )
+
+src_configure() {
+   local mycmakeargs=(
+   -DUSE_GMP="$(usex gmp)"
+   )
+
+   cmake_src_configure
+}

diff --git a/sci-libs/bliss/files/bliss-0.77-install.patch 
b/sci-libs/bliss/files/bliss-0.77-install.patch
new file mode 100644
index ..caab14aa40f6
--- /dev/null
+++ b/sci-libs/bliss/files/bliss-0.77-install.patch
@@ -0,0 +1,32 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 01ed093..cfdb0a6 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -62,3 +62,27 @@ if(USE_GMP)
+   target_link_libraries(bliss-executable ${GMP_LIBRARIES})
+ endif(USE_GMP)
+ set_target_properties(bliss-executable PROPERTIES OUTPUT_NAME bliss)
++
++include(GNUInstallDirs)
++
++set(
++  BLISS_HEADERS
++  src/bliss_C.h
++  src/uintseqhash.hh
++  src/abstractgraph.hh
++  src/stats.hh
++  src/digraph.hh
++  src/defs.hh
++  src/heap.hh
++  src/graph.hh
++  src/partition.hh
++  src/kqueue.hh
++  src/utils.hh
++  src/orbit.hh
++  src/timer.hh
++  src/bignum.hh
++)
++
++install(TARGETS bliss-executable RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
++install(TARGETS bliss LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR})
++install(FILES ${BLISS_HEADERS} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/bliss)



[gentoo-commits] repo/gentoo:master commit in: sci-libs/bliss/

2021-02-18 Thread David Seifert
commit: 0276a93d551fce39081c5da14e6b3255949a6c3f
Author: Jakov Smolic  sartura  hr>
AuthorDate: Thu Feb 18 18:55:30 2021 +
Commit: David Seifert  gentoo  org>
CommitDate: Thu Feb 18 18:55:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0276a93d

sci-libs/bliss: Remove old

Signed-off-by: Jakov Smolic  sartura.hr>
Signed-off-by: David Seifert  gentoo.org>

 sci-libs/bliss/bliss-0.73-r1.ebuild | 48 -
 1 file changed, 48 deletions(-)

diff --git a/sci-libs/bliss/bliss-0.73-r1.ebuild 
b/sci-libs/bliss/bliss-0.73-r1.ebuild
deleted file mode 100644
index de9e1f38527..000
--- a/sci-libs/bliss/bliss-0.73-r1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools
-
-SRC_URI="http://www.tcs.hut.fi/Software/${PN}/${P}.zip;
-DESCRIPTION="Compute Automorphism Groups and Canonical Labelings of Graphs"
-HOMEPAGE="http://www.tcs.hut.fi/Software/bliss/;
-
-LICENSE="LGPL-3"
-SLOT="0/1"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="doc gmp static-libs"
-
-RDEPEND="gmp? ( dev-libs/gmp:0= )"
-DEPEND="${RDEPEND}
-   app-arch/unzip
-   doc? ( app-doc/doxygen )"
-
-#patches from http://pkgs.fedoraproject.org/cgit/rpms/bliss.git/tree/
-PATCHES=(
-   "${FILESDIR}"/${P}-error.patch
-   "${FILESDIR}"/${P}-rehn.patch
-   "${FILESDIR}"/${P}-autotools.patch
-)
-
-src_prepare() {
-   default
-   cp "${FILESDIR}/${P}.1.in" "${PN}.1.in" || die
-   rm Makefile || die
-   eautoreconf
-}
-
-src_configure() {
-   econf $(use_with gmp) $(use_enable static-libs static)
-}
-
-src_compile() {
-   emake all $(usex doc html "")
-}
-
-src_install() {
-   default
-   use static-libs || find "${ED}" -name '*.la' -delete
-   use doc && dodoc -r html
-}



[gentoo-commits] repo/gentoo:master commit in: sci-libs/bliss/files/, sci-libs/bliss/

2020-07-10 Thread Christoph Junghans
commit: 0ba92a30fc30e69af6567c45be5ef43c9382a951
Author: Christoph Junghans  gentoo  org>
AuthorDate: Fri Jul 10 16:42:25 2020 +
Commit: Christoph Junghans  gentoo  org>
CommitDate: Fri Jul 10 16:43:22 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ba92a30

sci-libs/bliss: fix clang build (bug #731930)

Closes: https://bugs.gentoo.org/731930
Package-Manager: Portage-2.3.99, Repoman-2.3.23
Signed-off-by: Christoph Junghans  gentoo.org>

 sci-libs/bliss/bliss-0.73-r2.ebuild | 49 +
 sci-libs/bliss/files/bliss-0.73-clang.patch | 11 +++
 sci-libs/bliss/metadata.xml |  4 ---
 3 files changed, 60 insertions(+), 4 deletions(-)

diff --git a/sci-libs/bliss/bliss-0.73-r2.ebuild 
b/sci-libs/bliss/bliss-0.73-r2.ebuild
new file mode 100644
index 000..9293ac0a67a
--- /dev/null
+++ b/sci-libs/bliss/bliss-0.73-r2.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+SRC_URI="http://www.tcs.hut.fi/Software/${PN}/${P}.zip;
+DESCRIPTION="Compute Automorphism Groups and Canonical Labelings of Graphs"
+HOMEPAGE="http://www.tcs.hut.fi/Software/bliss/;
+
+LICENSE="LGPL-3"
+SLOT="0/1"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc gmp static-libs"
+
+RDEPEND="gmp? ( dev-libs/gmp:0= )"
+DEPEND="${RDEPEND}
+   app-arch/unzip
+   doc? ( app-doc/doxygen )"
+
+#patches from http://pkgs.fedoraproject.org/cgit/rpms/bliss.git/tree/
+PATCHES=(
+   "${FILESDIR}"/${P}-error.patch
+   "${FILESDIR}"/${P}-rehn.patch
+   "${FILESDIR}"/${P}-clang.patch
+   "${FILESDIR}"/${P}-autotools.patch
+)
+
+src_prepare() {
+   default
+   cp "${FILESDIR}/${P}.1.in" "${PN}.1.in" || die
+   rm Makefile || die
+   eautoreconf
+}
+
+src_configure() {
+   econf $(use_with gmp) $(use_enable static-libs static)
+}
+
+src_compile() {
+   emake all $(usex doc html "")
+}
+
+src_install() {
+   default
+   use static-libs || find "${ED}" -name '*.la' -delete
+   use doc && dodoc -r html
+}

diff --git a/sci-libs/bliss/files/bliss-0.73-clang.patch 
b/sci-libs/bliss/files/bliss-0.73-clang.patch
new file mode 100644
index 000..8a2e4bb6ca4
--- /dev/null
+++ b/sci-libs/bliss/files/bliss-0.73-clang.patch
@@ -0,0 +1,11 @@
+--- ./bliss.cc.orig2020-07-10 10:34:44.94600 -0600
 ./bliss.cc 2020-07-10 10:35:36.07600 -0600
+@@ -59,7 +59,7 @@
+   else program_name = argv0;  
+   if(!program_name or *program_name == 0) program_name = "bliss";
+ 
+-  fprintf(fp, "bliss version %s (compiled "__DATE__")\n", bliss::version);
++  fprintf(fp, "bliss version %s (compiled %s)\n", bliss::version, __DATE__);
+   fprintf(fp, "Copyright 2003-2015 Tommi Junttila\n");
+   fprintf(fp,
+ "\n"

diff --git a/sci-libs/bliss/metadata.xml b/sci-libs/bliss/metadata.xml
index 0668c1ada0d..9b3cd6685a1 100644
--- a/sci-libs/bliss/metadata.xml
+++ b/sci-libs/bliss/metadata.xml
@@ -1,10 +1,6 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  
-jungh...@gentoo.org
-Christoph Junghans
-  
 
 s...@gentoo.org
 Gentoo Science Project



[gentoo-commits] repo/gentoo:master commit in: sci-libs/bliss/files/, sci-libs/bliss/, sci-libs/lrslib/

2017-07-31 Thread Sebastien Fabbro
commit: 31ded7e602d4797cdd012e18bfeca3751ee5b875
Author: Sébastien Fabbro  gentoo  org>
AuthorDate: Sun Jul 30 00:53:46 2017 +
Commit: Sebastien Fabbro  gentoo  org>
CommitDate: Mon Jul 31 18:12:24 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31ded7e6

sci-libs/bliss: fix gmp automagic, add prefix, minor cosmetic fixes

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 .../{bliss-0.73.ebuild => bliss-0.73-r1.ebuild}| 26 ++
 sci-libs/bliss/files/bliss-0.73-autotools.patch|  4 ++--
 sci-libs/lrslib/lrslib-062.ebuild  |  1 -
 3 files changed, 14 insertions(+), 17 deletions(-)

diff --git a/sci-libs/bliss/bliss-0.73.ebuild 
b/sci-libs/bliss/bliss-0.73-r1.ebuild
similarity index 61%
rename from sci-libs/bliss/bliss-0.73.ebuild
rename to sci-libs/bliss/bliss-0.73-r1.ebuild
index 7995a4055cb..de9e1f38527 100644
--- a/sci-libs/bliss/bliss-0.73.ebuild
+++ b/sci-libs/bliss/bliss-0.73-r1.ebuild
@@ -6,30 +6,30 @@ EAPI=6
 inherit autotools
 
 SRC_URI="http://www.tcs.hut.fi/Software/${PN}/${P}.zip;
-DESCRIPTION="A Tool for Computing Automorphism Groups and Canonical Labelings 
of Graphs"
-HOMEPAGE="http://www.tcs.hut.fi/Software/bliss/index.shtml;
+DESCRIPTION="Compute Automorphism Groups and Canonical Labelings of Graphs"
+HOMEPAGE="http://www.tcs.hut.fi/Software/bliss/;
 
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
+LICENSE="LGPL-3"
+SLOT="0/1"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="doc gmp static-libs"
 
 RDEPEND="gmp? ( dev-libs/gmp:0= )"
-
 DEPEND="${RDEPEND}
+   app-arch/unzip
doc? ( app-doc/doxygen )"
 
 #patches from http://pkgs.fedoraproject.org/cgit/rpms/bliss.git/tree/
 PATCHES=(
-   "${FILESDIR}/${P}-error.patch"
-   "${FILESDIR}/${P}-rehn.patch"
-   "${FILESDIR}/${P}-autotools.patch"
+   "${FILESDIR}"/${P}-error.patch
+   "${FILESDIR}"/${P}-rehn.patch
+   "${FILESDIR}"/${P}-autotools.patch
 )
 
 src_prepare() {
+   default
cp "${FILESDIR}/${P}.1.in" "${PN}.1.in" || die
rm Makefile || die
-   default
eautoreconf
 }
 
@@ -42,9 +42,7 @@ src_compile() {
 }
 
 src_install() {
-   use doc && HTML_DOCS=( "${S}"/html/. )
default
-
-   #comes with pkg-config file
-   find "${ED}" -name '*.la' -delete || die
+   use static-libs || find "${ED}" -name '*.la' -delete
+   use doc && dodoc -r html
 }

diff --git a/sci-libs/bliss/files/bliss-0.73-autotools.patch 
b/sci-libs/bliss/files/bliss-0.73-autotools.patch
index 1fe209efd02..efdbcb81b42 100644
--- a/sci-libs/bliss/files/bliss-0.73-autotools.patch
+++ b/sci-libs/bliss/files/bliss-0.73-autotools.patch
@@ -32,8 +32,8 @@ diff -Naur bliss-0.72-fedora/configure.ac 
bliss-0.72/configure.ac
 +# Checks for libraries.
 +AC_ARG_WITH([gmp],
 +  [AS_HELP_STRING([--with-gmp], [enable support for GNU Multiple Precision 
Arithmetic Library @<:@default=check@:>@])],
-+  [], [with_readline=no])
-+AS_IF([test "x$with_readline" != xno],
++  [], [with_gmp=no])
++AS_IF([test "x$with_gmp" != xno],
 +  [AC_CHECK_HEADERS([gmp.h],,AC_MSG_ERROR([Cannot find gmp.h header]))
 +AC_CHECK_LIB([gmp],_init,,AC_MSG_ERROR([Cannot find gmp library]))
 +AC_SUBST([GMP],[-lgmp])

diff --git a/sci-libs/lrslib/lrslib-062.ebuild 
b/sci-libs/lrslib/lrslib-062.ebuild
index 05e16755b17..3c9f0061690 100644
--- a/sci-libs/lrslib/lrslib-062.ebuild
+++ b/sci-libs/lrslib/lrslib-062.ebuild
@@ -18,7 +18,6 @@ RDEPEND="gmp? ( dev-libs/gmp:0=
  mpi? ( virtual/mpi ) )"
 DEPEND="${RDEPEND}"
 
-
 src_prepare(){
default
tc-export CC



[gentoo-commits] repo/gentoo:master commit in: sci-libs/bliss/files/, sci-libs/bliss/

2017-01-01 Thread Christoph Junghans
commit: 561d59645a2e23179b1c1c13e9a262908a1157f1
Author: Christoph Junghans  gentoo  org>
AuthorDate: Sun Jan  1 18:14:44 2017 +
Commit: Christoph Junghans  gentoo  org>
CommitDate: Sun Jan  1 18:17:10 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=561d5964

sci-libs/bliss: version bump

Package-Manager: portage-2.3.0

 sci-libs/bliss/Manifest |   1 +
 sci-libs/bliss/bliss-0.73.ebuild|  51 +++
 sci-libs/bliss/files/bliss-0.73-autotools.patch |  99 +
 sci-libs/bliss/files/bliss-0.73-error.patch | 471 
 sci-libs/bliss/files/bliss-0.73-rehn.patch  |  74 
 sci-libs/bliss/files/bliss-0.73.1.in|  55 +++
 6 files changed, 751 insertions(+)

diff --git a/sci-libs/bliss/Manifest b/sci-libs/bliss/Manifest
index be3eecb..9cd37a6 100644
--- a/sci-libs/bliss/Manifest
+++ b/sci-libs/bliss/Manifest
@@ -1 +1,2 @@
 DIST bliss-0.72.zip 90970 SHA256 
528d192b1e30722fc60f5f12c9d6c12b374d838198ae7f18fb41bedabf735ed3 SHA512 
a09b3cea26e3ff5f5733f10bfaadaf6fb5a3f443e1cc306fad16af2f7b4cd97c90652315f911a324d6d71426a3d098cd5c7e5721f69c599fe2e0d6d34caa0ef5
 WHIRLPOOL 
afbc41c04e843d383a2da8d5e26ec2882c847e8e5f1e71c05f884396fcc79eab764df628523336b88e0c6ef4fbf073a52870e2c68ded428002d9391894cb53d6
+DIST bliss-0.73.zip 94108 SHA256 
f57bf32804140cad58b1240b804e0dbd68f7e6bf67eba8e0c0fa3a62fd7f0f84 SHA512 
30f505945c577d8bcb265a349f5bc9d4dcd96555fa3add285199cdd95ea2710f04409008ff06432daffab62c132e884845eae7f823191407906202862509e05d
 WHIRLPOOL 
08402453515e092604105f17f5889d252c0207fa31a1125e87e04c4792cbeb77b7a585a134fd2b3108e8620bbd643cd8b7826dee8a56cf47908a922298b70ad1

diff --git a/sci-libs/bliss/bliss-0.73.ebuild b/sci-libs/bliss/bliss-0.73.ebuild
new file mode 100644
index ..cf5e839
--- /dev/null
+++ b/sci-libs/bliss/bliss-0.73.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit autotools
+
+SRC_URI="http://www.tcs.hut.fi/Software/${PN}/${P}.zip;
+DESCRIPTION="A Tool for Computing Automorphism Groups and Canonical Labelings 
of Graphs"
+HOMEPAGE="http://www.tcs.hut.fi/Software/bliss/index.shtml;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc gmp static-libs"
+
+RDEPEND="gmp? ( dev-libs/gmp:0= )"
+
+DEPEND="${RDEPEND}
+   doc? ( app-doc/doxygen )"
+
+#patches from http://pkgs.fedoraproject.org/cgit/rpms/bliss.git/tree/
+PATCHES=(
+   "${FILESDIR}/${P}-error.patch"
+   "${FILESDIR}/${P}-rehn.patch"
+   "${FILESDIR}/${P}-autotools.patch"
+)
+
+src_prepare() {
+   cp "${FILESDIR}/${P}.1.in" "${PN}.1.in" || die
+   rm Makefile || die
+   default
+   eautoreconf
+}
+
+src_configure() {
+   econf $(use_with gmp) $(use_enable static-libs static)
+}
+
+src_compile() {
+   emake all $(usex doc html "")
+}
+
+src_install() {
+   use doc && HTML_DOCS=( "${S}"/html/. )
+   default
+
+   #comes with pkg-config file
+   find "${ED}" -name '*.la' -delete || die
+}

diff --git a/sci-libs/bliss/files/bliss-0.73-autotools.patch 
b/sci-libs/bliss/files/bliss-0.73-autotools.patch
new file mode 100644
index ..1fe209e
--- /dev/null
+++ b/sci-libs/bliss/files/bliss-0.73-autotools.patch
@@ -0,0 +1,99 @@
+Replace simple Makefile by autotools
+- allow shared library
+- parallel build
+- added pkg-config support
+
+Author: Christoph Junghans 
+
+diff -Naur bliss-0.72-fedora/config/.dummy bliss-0.72/config/.dummy
+--- bliss-0.72-fedora/config/.dummy1969-12-31 17:00:00.0 -0700
 bliss-0.72/config/.dummy   2013-04-28 14:43:06.143760368 -0600
+@@ -0,0 +1 @@
++Dummy file to make patch create config dir, which is needed for autotools
+diff -Naur bliss-0.72-fedora/configure.ac bliss-0.72/configure.ac
+--- bliss-0.72-fedora/configure.ac 1969-12-31 17:00:00.0 -0700
 bliss-0.72/configure.ac2013-04-28 14:40:42.283242722 -0600
+@@ -0,0 +1,32 @@
++AC_PREREQ([2.65])
++AC_INIT([bliss], [0.73], [tommi.junt...@kk.fi])
++
++AC_CONFIG_AUX_DIR(config)
++AC_CONFIG_MACRO_DIR(config)
++
++AM_INIT_AUTOMAKE([1.8 foreign])
++
++SHARED_VERSION_INFO="1:0:0"
++AC_SUBST(SHARED_VERSION_INFO)
++
++# Checks for programs.
++AC_PROG_CXX
++
++LT_INIT
++# Checks for libraries.
++AC_ARG_WITH([gmp],
++  [AS_HELP_STRING([--with-gmp], [enable support for GNU Multiple Precision 
Arithmetic Library @<:@default=check@:>@])],
++  [], [with_readline=no])
++AS_IF([test "x$with_readline" != xno],
++  [AC_CHECK_HEADERS([gmp.h],,AC_MSG_ERROR([Cannot find gmp.h header]))
++AC_CHECK_LIB([gmp],_init,,AC_MSG_ERROR([Cannot find gmp library]))
++AC_SUBST([GMP],[-lgmp])
++[CPPFLAGS="$CPPFLAGS -DBLISS_USE_GMP"]])
++
++AC_CHECK_PROG(DOXYGEN,doxygen,doxygen,no)
++AM_CONDITIONAL(HAVE_DOXYGEN,[test .$DOXYGEN != .no])
++
++AC_CONFIG_FILES([Makefile])
++AC_CONFIG_FILES([bliss.pc])
++AC_CONFIG_FILES([bliss.1])
++AC_OUTPUT
+diff 

[gentoo-commits] repo/gentoo:master commit in: sci-libs/bliss/files/, sci-libs/bliss/

2017-01-01 Thread Christoph Junghans
commit: c9e7aeca7d21e133bb1eea3132997c851ef1d069
Author: Christoph Junghans  gentoo  org>
AuthorDate: Sun Jan  1 18:16:50 2017 +
Commit: Christoph Junghans  gentoo  org>
CommitDate: Sun Jan  1 18:17:10 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9e7aeca

sci-libs/bliss: remove old

Package-Manager: portage-2.3.0

 sci-libs/bliss/Manifest |   1 -
 sci-libs/bliss/bliss-0.72.ebuild|  44 --
 sci-libs/bliss/files/bliss-0.72-autotools.patch | 159 --
 sci-libs/bliss/files/bliss-0.72-fedora.patch| 648 
 4 files changed, 852 deletions(-)

diff --git a/sci-libs/bliss/Manifest b/sci-libs/bliss/Manifest
index 9cd37a6..cb6cbc2 100644
--- a/sci-libs/bliss/Manifest
+++ b/sci-libs/bliss/Manifest
@@ -1,2 +1 @@
-DIST bliss-0.72.zip 90970 SHA256 
528d192b1e30722fc60f5f12c9d6c12b374d838198ae7f18fb41bedabf735ed3 SHA512 
a09b3cea26e3ff5f5733f10bfaadaf6fb5a3f443e1cc306fad16af2f7b4cd97c90652315f911a324d6d71426a3d098cd5c7e5721f69c599fe2e0d6d34caa0ef5
 WHIRLPOOL 
afbc41c04e843d383a2da8d5e26ec2882c847e8e5f1e71c05f884396fcc79eab764df628523336b88e0c6ef4fbf073a52870e2c68ded428002d9391894cb53d6
 DIST bliss-0.73.zip 94108 SHA256 
f57bf32804140cad58b1240b804e0dbd68f7e6bf67eba8e0c0fa3a62fd7f0f84 SHA512 
30f505945c577d8bcb265a349f5bc9d4dcd96555fa3add285199cdd95ea2710f04409008ff06432daffab62c132e884845eae7f823191407906202862509e05d
 WHIRLPOOL 
08402453515e092604105f17f5889d252c0207fa31a1125e87e04c4792cbeb77b7a585a134fd2b3108e8620bbd643cd8b7826dee8a56cf47908a922298b70ad1

diff --git a/sci-libs/bliss/bliss-0.72.ebuild b/sci-libs/bliss/bliss-0.72.ebuild
deleted file mode 100644
index dea3e3c..
--- a/sci-libs/bliss/bliss-0.72.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-AUTOTOOLS_AUTORECONF=1
-
-inherit autotools-utils
-
-SRC_URI="http://www.tcs.hut.fi/Software/${PN}/${P}.zip;
-DESCRIPTION="A Tool for Computing Automorphism Groups and Canonical Labelings 
of Graphs"
-HOMEPAGE="http://www.tcs.hut.fi/Software/bliss/index.shtml;
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc gmp static-libs"
-
-RDEPEND="gmp? ( dev-libs/gmp:0= )"
-
-DEPEND="${RDEPEND}
-   doc? ( app-doc/doxygen )"
-
-AUTOTOOLS_PRUNE_LIBTOOL_FILES="all" #comes with pkg-config file
-
-PATCHES=(
-   "${FILESDIR}/${P}-fedora.patch"
-   "${FILESDIR}/${P}-autotools.patch"
-)
-
-src_configure() {
-   local myeconfargs=( $(use_with gmp) )
-   autotools-utils_src_configure
-}
-
-src_compile() {
-   autotools-utils_src_compile all $(usex doc html "")
-}
-
-src_install() {
-   use doc && HTML_DOCS=( "${BUILD_DIR}"/html/. )
-   autotools-utils_src_install
-}

diff --git a/sci-libs/bliss/files/bliss-0.72-autotools.patch 
b/sci-libs/bliss/files/bliss-0.72-autotools.patch
deleted file mode 100644
index 30006b9..
--- a/sci-libs/bliss/files/bliss-0.72-autotools.patch
+++ /dev/null
@@ -1,159 +0,0 @@
-Replace simple Makefile by autotools
-- allow shared library
-- parallel build
-- added pkg-config support
-
-Author: Christoph Junghans 
-
-diff -Naur bliss-0.72-fedora/config/.dummy bliss-0.72/config/.dummy
 bliss-0.72-fedora/config/.dummy1969-12-31 17:00:00.0 -0700
-+++ bliss-0.72/config/.dummy   2013-04-28 14:43:06.143760368 -0600
-@@ -0,0 +1 @@
-+Dummy file to make patch create config dir, which is needed for autotools
-diff -Naur bliss-0.72-fedora/configure.ac bliss-0.72/configure.ac
 bliss-0.72-fedora/configure.ac 1969-12-31 17:00:00.0 -0700
-+++ bliss-0.72/configure.ac2013-04-28 14:40:42.283242722 -0600
-@@ -0,0 +1,31 @@
-+AC_PREREQ([2.65])
-+AC_INIT([bliss], [0.72], [tommi.junt...@kk.fi])
-+
-+AC_CONFIG_AUX_DIR(config)
-+AC_CONFIG_MACRO_DIR(config)
-+
-+AM_INIT_AUTOMAKE([1.8 foreign])
-+
-+SHARED_VERSION_INFO="1:0:0"
-+AC_SUBST(SHARED_VERSION_INFO)
-+
-+# Checks for programs.
-+AC_PROG_CXX
-+
-+LT_INIT
-+# Checks for libraries.
-+AC_ARG_WITH([gmp],
-+  [AS_HELP_STRING([--with-gmp], [enable support for GNU Multiple Precision 
Arithmetic Library @<:@default=check@:>@])],
-+  [], [with_readline=no])
-+AS_IF([test "x$with_readline" != xno],
-+  [AC_CHECK_HEADERS([gmp.h],,AC_MSG_ERROR([Cannot find gmp.h header]))
-+AC_CHECK_LIB([gmp],_init,,AC_MSG_ERROR([Cannot find gmp library]))
-+AC_SUBST([GMP],[-lgmp])
-+[CPPFLAGS="$CPPFLAGS -DBLISS_USE_GMP"]])
-+
-+AC_CHECK_PROG(DOXYGEN,doxygen,doxygen,no)
-+AM_CONDITIONAL(HAVE_DOXYGEN,[test .$DOXYGEN != .no])
-+
-+AC_CONFIG_FILES([Makefile])
-+AC_CONFIG_FILES([bliss.pc])
-+AC_OUTPUT
-diff -Naur bliss-0.72-fedora/bliss.pc.in bliss-0.72/bliss.pc.in
 bliss-0.72-fedora/bliss.pc.in  1969-12-31 17:00:00.0 -0700
-+++ bliss-0.72/bliss.pc.in 2013-04-28 14:40:54.223285686 -0600
-@@ -0,0 +1,13 @@
-+prefix=@prefix@
-+exec_prefix=@exec_prefix@
-+libdir=@libdir@

[gentoo-commits] repo/gentoo:master commit in: sci-libs/bliss/files/

2016-11-14 Thread Christoph Junghans
commit: 0a136a10cb9eb7b4ebb155019e1538b077c6cc06
Author: Christoph Junghans  gentoo  org>
AuthorDate: Tue Nov 15 00:45:24 2016 +
Commit: Christoph Junghans  gentoo  org>
CommitDate: Tue Nov 15 00:45:43 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a136a10

sci-libs/bliss: update patch

Package-Manager: portage-2.3.0

 sci-libs/bliss/files/bliss-0.72-autotools.patch | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/bliss/files/bliss-0.72-autotools.patch 
b/sci-libs/bliss/files/bliss-0.72-autotools.patch
index d30c516..30006b9 100644
--- a/sci-libs/bliss/files/bliss-0.72-autotools.patch
+++ b/sci-libs/bliss/files/bliss-0.72-autotools.patch
@@ -3,7 +3,7 @@ Replace simple Makefile by autotools
 - parallel build
 - added pkg-config support
 
-Author: Christoph Junghans 
+Author: Christoph Junghans 
 
 diff -Naur bliss-0.72-fedora/config/.dummy bliss-0.72/config/.dummy
 --- bliss-0.72-fedora/config/.dummy1969-12-31 17:00:00.0 -0700



[gentoo-commits] repo/gentoo:master commit in: sci-libs/bliss/

2016-11-13 Thread Christoph Junghans
commit: 7ff96f626832e20d8eb471aa4b9eb755ba65ec93
Author: Christoph Junghans  gentoo  org>
AuthorDate: Mon Nov 14 01:56:02 2016 +
Commit: Christoph Junghans  gentoo  org>
CommitDate: Mon Nov 14 01:56:02 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ff96f62

sci-libs/bliss: update metadata

Package-Manager: portage-2.3.0

 sci-libs/bliss/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/bliss/metadata.xml b/sci-libs/bliss/metadata.xml
index da47688..5261e07 100644
--- a/sci-libs/bliss/metadata.xml
+++ b/sci-libs/bliss/metadata.xml
@@ -2,7 +2,7 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 
   
-ott...@gentoo.org
+jungh...@gentoo.org
 Christoph Junghans