|
@@ -8,7 +8,7 @@ Summary: An interpreted, interactive, object-oriented programming language.
|
|
Summary(ja): オブジェクト指向 Python3 インタプリタ
|
|
Summary(ja): オブジェクト指向 Python3 インタプリタ
|
|
Name: python3
|
|
Name: python3
|
|
Version: 3.5.6
|
|
Version: 3.5.6
|
|
-Release: 2%{?_dist_release}
|
|
+Release: 3%{?_dist_release}
|
|
License: PSF
|
|
License: PSF
|
|
Group: Development/Languages
|
|
Group: Development/Languages
|
|
URL: http://www.python.org/download/releases/%{version}
|
|
URL: http://www.python.org/download/releases/%{version}
|
|
@@ -25,6 +25,9 @@ BuildRequires: gdbm-devel
|
|
BuildRequires: glibc-devel
|
|
BuildRequires: glibc-devel
|
|
BuildRequires: libdb-devel
|
|
BuildRequires: libdb-devel
|
|
BuildRequires: libffi-devel
|
|
BuildRequires: libffi-devel
|
|
|
|
+BuildRequires: libnsl2-devel
|
|
|
|
+BuildRequires: libtirpc-devel
|
|
|
|
+BuildRequires: libxcrypt-devel
|
|
BuildRequires: ncurses-devel
|
|
BuildRequires: ncurses-devel
|
|
BuildRequires: openssl-devel
|
|
BuildRequires: openssl-devel
|
|
BuildRequires: readline-devel
|
|
BuildRequires: readline-devel
|
|
@@ -118,6 +121,12 @@ for the Python language.
|
|
|
|
|
|
|
|
|
|
%build
|
|
%build
|
|
|
|
+if pkg-config libtirpc ; then
|
|
|
|
+ export CFLAGS="$CFLAGS $(pkg-config --cflags libtirpc)"
|
|
|
|
+ export CXXFLAGS="$CXXFLAGS $(pkg-config --cflags libtirpc)"
|
|
|
|
+ export LDFLAGS="$LDFLAGS $(pkg-config --libs-only-L libtirpc)"
|
|
|
|
+ export LIBS="$LIBS $(pkg-config --libs-only-l libtirpc)"
|
|
|
|
+fi
|
|
./configure \
|
|
./configure \
|
|
--prefix=%{_prefix} \
|
|
--prefix=%{_prefix} \
|
|
--libdir=%{_libdir} \
|
|
--libdir=%{_libdir} \
|
|
@@ -282,6 +291,11 @@ rm -fr $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
%changelog
|
|
|
|
+* Thu Feb 14 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.5.6-3
|
|
|
|
+- added BR:libxcrypt-devel.
|
|
|
|
+- added BR:libtirpc-devel.
|
|
|
|
+- added BR:libnsl2-devel.
|
|
|
|
+
|
|
* Sat Jan 26 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.5.6-2
|
|
* Sat Jan 26 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.5.6-2
|
|
- rebuilt with new toolchain.
|
|
- rebuilt with new toolchain.
|
|
|
|
|