Accepting request 789151 from home:scarabeus_iv:branches:graphics

- Add also configure option to not build py2 if the python2
  build is disabled

- Auto-identify the correct ruby-version using pkg-config.

- Add also configure option to not build py2 if the python2
  build is disabled

- Add python2/python3 split subpkgs in order to allow building
  without python2 available

OBS-URL: https://build.opensuse.org/request/show/789151
OBS-URL: https://build.opensuse.org/package/show/graphics/graphviz?expand=0&rev=149
This commit is contained in:
Dirk Stoecker 2020-03-30 15:31:14 +00:00 committed by Git OBS Bridge
parent df3d780804
commit a8735bcf38
3 changed files with 29 additions and 0 deletions

View File

@ -1,9 +1,20 @@
-------------------------------------------------------------------
Fri Mar 27 20:28:30 UTC 2020 - Tomáš Chvátal <tchvatal@suse.com>
- Add also configure option to not build py2 if the python2
build is disabled
-------------------------------------------------------------------
Thu Mar 12 09:07:17 UTC 2020 - Tomáš Chvátal <tchvatal@suse.com>
- Add python2/python3 split subpkgs in order to allow building
without python2 available
-------------------------------------------------------------------
Thu Mar 5 12:03:06 UTC 2020 - Dominique Leuenberger <dimstar@opensuse.org>
- Auto-identify the correct ruby-version using pkg-config.
-------------------------------------------------------------------
Mon Jan 13 11:59:55 UTC 2020 - Christian Vögl <cvoegl@suse.de>

View File

@ -369,6 +369,12 @@ export LDFLAGS="-pie"
--disable-io \
--without-visio \
%if %{with extras}
%if %{with python2}
--enable-python2 \
%else
--disable-python \
--disable-python2 \
%endif
--with-x \
--with-qt \
--with-smyrna \

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Fri Mar 27 20:28:30 UTC 2020 - Tomáš Chvátal <tchvatal@suse.com>
- Add also configure option to not build py2 if the python2
build is disabled
-------------------------------------------------------------------
Thu Mar 12 09:07:17 UTC 2020 - Tomáš Chvátal <tchvatal@suse.com>
- Add python2/python3 split subpkgs in order to allow building
without python2 available
-------------------------------------------------------------------
Thu Mar 5 12:03:06 UTC 2020 - Dominique Leuenberger <dimstar@opensuse.org>