From 15e0eaf73a2ac91f1f6138d6088c80146de0ecce982b26596c66a7e1fc6dff2d Mon Sep 17 00:00:00 2001 From: Petr Gajdos Date: Mon, 31 Mar 2014 06:35:30 +0000 Subject: [PATCH 1/2] - updated to 4.54 * see NEWS for changes OBS-URL: https://build.opensuse.org/package/show/science/glpk?expand=0&rev=22 --- glpk-4.52.1.tar.gz | 3 --- glpk-4.52.1.tar.gz.sig | Bin 65 -> 0 bytes glpk-4.54.tar.gz | 3 +++ glpk-4.54.tar.gz.sig | Bin 0 -> 65 bytes glpk.changes | 6 ++++++ glpk.spec | 6 +++--- 6 files changed, 12 insertions(+), 6 deletions(-) delete mode 100644 glpk-4.52.1.tar.gz delete mode 100644 glpk-4.52.1.tar.gz.sig create mode 100644 glpk-4.54.tar.gz create mode 100644 glpk-4.54.tar.gz.sig diff --git a/glpk-4.52.1.tar.gz b/glpk-4.52.1.tar.gz deleted file mode 100644 index 32f7257..0000000 --- a/glpk-4.52.1.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3231685b9ff92d30ccbb5c21ba7815b25ba59c7d1e5194e57a880dd1ebb3e95b -size 2812957 diff --git a/glpk-4.52.1.tar.gz.sig b/glpk-4.52.1.tar.gz.sig deleted file mode 100644 index 74bf5685aa623787f780c664a365bc2810724c6a51b004101a14277cfcb2c654..0000000000000000000000000000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 65 zcmV-H0KWf-KLZ5-QS|eV(R=bRS%K&n5dt3~0H0xCaSJ>8z`dnFm|JetPzi6l^|b(< X8fnA`hA2b=%6t^o;3V!6`Kme+hDRI= diff --git a/glpk-4.54.tar.gz b/glpk-4.54.tar.gz new file mode 100644 index 0000000..e0305c4 --- /dev/null +++ b/glpk-4.54.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab72c8078402d34d176eda18c3f9a6ef006e223d530897a4d1d73fb4ad12f9a1 +size 3098202 diff --git a/glpk-4.54.tar.gz.sig b/glpk-4.54.tar.gz.sig new file mode 100644 index 0000000000000000000000000000000000000000000000000000000000000000..268fa2c763e53ebd1987d51d960ac15616fb396ec56375883bc8880d505c6df8 GIT binary patch literal 65 zcmV-H0KWf-KLZ5-Q#FHO(R=bRS%K&n5dvzu0HB#*V!)-|D-Jv7|AN0pIlUT&oK*my XdXw6P=?np6q1!3R5|k{Esc5H7dvqL| literal 0 HcmV?d00001 diff --git a/glpk.changes b/glpk.changes index 8ed2c55..a0c1b8a 100644 --- a/glpk.changes +++ b/glpk.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Mon Mar 31 06:34:30 UTC 2014 - pgajdos@suse.com + +- updated to 4.54 + * see NEWS for changes + ------------------------------------------------------------------- Tue Dec 10 15:24:32 UTC 2013 - sweet_f_a@gmx.de diff --git a/glpk.spec b/glpk.spec index c77bce0..8438b70 100644 --- a/glpk.spec +++ b/glpk.spec @@ -1,7 +1,7 @@ # # spec file for package glpk # -# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -18,7 +18,7 @@ Name: glpk %define lname libglpk36 -Version: 4.52.1 +Version: 4.54 Release: 0 Summary: GNU Linear Programming Kit License: GPL-3.0 @@ -27,7 +27,7 @@ Url: http://www.gnu.org/software/glpk/glpk.html #DL-URL: http://ftp.gnu.org/gnu/glpk/ Source: http://ftp.gnu.org/gnu/glpk/%name-%version.tar.gz -Source2: http://ftp.gnu.org/gnu/glpk/%name-%version.tar.gz +Source2: http://ftp.gnu.org/gnu/glpk/%name-%version.tar.gz.sig Source3: %name.keyring BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: ghostscript From 80f926b344d6e23e564aeea1a0068f7a9f5d1f16283c87a2b168689d1d1c8c3e Mon Sep 17 00:00:00 2001 From: Petr Gajdos Date: Mon, 31 Mar 2014 06:37:22 +0000 Subject: [PATCH 2/2] * Block-triangular LU-factorization was implemented to be used on computing an initial factorization of the basis matrix. * A new version of the Schur-complement-based factorization module was included in the package. Now it can be used along with plain as well as with block-triangular LU-factorization. * The API routine glp_read_mps was changed to remove free rows. * etc. see NEWS for details OBS-URL: https://build.opensuse.org/package/show/science/glpk?expand=0&rev=23 --- glpk.changes | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/glpk.changes b/glpk.changes index a0c1b8a..851ae27 100644 --- a/glpk.changes +++ b/glpk.changes @@ -2,7 +2,13 @@ Mon Mar 31 06:34:30 UTC 2014 - pgajdos@suse.com - updated to 4.54 - * see NEWS for changes + * Block-triangular LU-factorization was implemented to be used + on computing an initial factorization of the basis matrix. + * A new version of the Schur-complement-based factorization + module was included in the package. Now it can be used along + with plain as well as with block-triangular LU-factorization. + * The API routine glp_read_mps was changed to remove free rows. + * etc. see NEWS for details ------------------------------------------------------------------- Tue Dec 10 15:24:32 UTC 2013 - sweet_f_a@gmx.de