diff --git a/programming/library/double-conversion/actions.py b/programming/library/double-conversion/actions.py index 3a9d9ada59..20ebed99ee 100644 --- a/programming/library/double-conversion/actions.py +++ b/programming/library/double-conversion/actions.py @@ -1,33 +1,28 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- -# -# Licensed under the GNU General Public License, version 3. -# See the file http://www.gnu.org/copyleft/gpl.txt. - - -from pisi.actionsapi import get -from pisi.actionsapi import pisitools -from pisi.actionsapi import cmaketools -from pisi.actionsapi import shelltools - -i = "-DBUILD_SHARED_LIBS=ON \ - -DCMAKE_BUILD_TYPE=Release \ - -DCMAKE_INSTALL_LIBDIR=lib \ - -DCMAKE_INSTALL_PREFIX=/usr \ - " - -def setup(): - shelltools.makedirs("build") - shelltools.cd("build") - cmaketools.configure(i, sourceDir = '..') - -def build(): - shelltools.cd("build") - cmaketools.make() - -def install(): - shelltools.cd("build") - cmaketools.rawInstall("DESTDIR=%s" % get.installDIR()) - - shelltools.cd("..") - pisitools.dodoc("COPYING", "LICENSE", "README.md") \ No newline at end of file +#!/usr/bin/python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file https://www.gnu.org/licenses/gpl-3.0.txt + +from pisi.actionsapi import shelltools +from pisi.actionsapi import cmaketools +from pisi.actionsapi import pisitools +from pisi.actionsapi import get + +i = ''.join([ + ' -DCMAKE_BUILD_TYPE=Release', + ' -DBUILD_SHARED_LIBS=ON ' + ]) + +def setup(): + cmaketools.configure("-Bbuild %s" % i) + +def build(): + shelltools.cd("build") + cmaketools.make() + +def install(): + shelltools.cd("build") + cmaketools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("../AUTHORS", "../Changelog") diff --git a/programming/library/double-conversion/pspec.xml b/programming/library/double-conversion/pspec.xml index 137fb9483a..212a6dd762 100644 --- a/programming/library/double-conversion/pspec.xml +++ b/programming/library/double-conversion/pspec.xml @@ -13,8 +13,8 @@ library Efficient binary-decimal and decimal-binary conversion routines for IEEE doubles. double-conversion provides binary-decimal and decimal-binary routines for IEEE doubles. - - https://github.com/google/double-conversion/archive/v3.1.5.tar.gz + + https://github.com/google/double-conversion/archive/refs/tags/v3.1.6.tar.gz cmake @@ -23,7 +23,6 @@ double-conversion - Efficient binary-decimal and decimal-binary conversion routines for IEEE doubles. libgcc @@ -35,17 +34,24 @@ double-conversion-devel - Development files for double-conversion double-conversion /usr/include /usr/lib/cmake + /usr/lib/pkgconfig + + 2021-12-20 + 3.1.6 + Version bump. + fury + uglyside@yandex.ru + 2020-04-30 3.1.5 @@ -54,4 +60,4 @@ uglyside@yandex.ru - \ No newline at end of file + diff --git a/programming/library/double-conversion/translations.xml b/programming/library/double-conversion/translations.xml deleted file mode 100644 index 3d024bd040..0000000000 --- a/programming/library/double-conversion/translations.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - double-conversion - IEEE çiftleri için ikilik-onluk ve onluk-ikilik sayı tabanları arasında verimli dönüşüm yordamları. - double-conversion, IEEE çiftleri için ikilik-onluk ve onluk-ikilik sayı tabanları arasında verimli dönüşüm yordamları sunar. - - - - double-conversion-devel - double-conversion için geliştirme dosyaları - double-conversion-devel, double-conversion için geliştirme dosyalarını içerir. - - \ No newline at end of file