Browse code

nfs-utils, nvme-cli, onigurura: Upgrade to latest versions

Change-Id: I7176dd1ffd5998df58d18b772e5dc03aea4466d6
Reviewed-on: http://photon-jenkins.eng.vmware.com:8082/5645
Tested-by: gerrit-photon <photon-checkins@vmware.com>
Reviewed-by: Anish Swaminathan <anishs@vmware.com>

Him Kalyan Bordoloi authored on 2018/09/11 20:59:36
Showing 3 changed files
... ...
@@ -1,12 +1,12 @@
1 1
 Summary:        NFS client utils
2 2
 Name:           nfs-utils
3
-Version:        2.3.1
4
-Release:        2%{?dist}
3
+Version:        2.3.3
4
+Release:        1%{?dist}
5 5
 License:        GPLv2+
6 6
 URL:            http://sourceforge.net/projects/nfs
7 7
 Group:          Applications/Nfs-utils-client
8 8
 Source0:        http://downloads.sourceforge.net/nfs/%{name}-%{version}.tar.xz
9
-%define sha1    nfs-utils=5eac1882041ce3ebbe98e16aeaec77ec7da4d935
9
+%define sha1    nfs-utils=a60aa17b057734c63bf7ce1598898e83f2132644
10 10
 Source1:        nfs-client.service
11 11
 Source2:        nfs-client.target
12 12
 Source3:        rpc-statd.service
... ...
@@ -127,6 +127,8 @@ fi
127 127
 %{_libdir}/libnfsidmap.so
128 128
 %{_libdir}/pkgconfig/libnfsidmap.pc
129 129
 %changelog
130
+*   Mon Sep 10 2018 Him Kalyan Bordoloi <bordoloih@vmware.com> 2.3.3-1
131
+-   Update to 2.3.3
130 132
 *   Thu Jun 07 2018 Anish Swaminathan <anishs@vmware.com> 2.3.1-2
131 133
 -   Add noreplace qualifier to config files
132 134
 *   Fri Jan 26 2018 Xiaolin Li <xiaolinl@vmware.com> 2.3.1-1
... ...
@@ -1,14 +1,14 @@
1 1
 Name:          nvme-cli
2 2
 Summary:       NVM-Express user space tooling for Linux
3
-Version:       1.5
4
-Release:       2%{?dist}
3
+Version:       1.6
4
+Release:       1%{?dist}
5 5
 Group:         Applications/System
6 6
 Vendor:        VMware, Inc.
7 7
 Distribution:  Photon
8 8
 License:       GPLv2
9 9
 URL:           https://github.com/linux-nvme/nvme-cli
10 10
 Source0:       %{name}-%{version}.tar.gz
11
-%define sha1   nvme-cli=16864b2df623e822ba2a69b0d5caa8b3f190acf0
11
+%define sha1   nvme-cli=8e5928da01ad750c02a7c0f08d052bd9c12900b5
12 12
 
13 13
 %description
14 14
 NVM-Express user space tooling for Linux
... ...
@@ -29,6 +29,8 @@ make install PREFIX=%{_prefix} DESTDIR=%{buildroot}
29 29
 %{_mandir}/man1/*
30 30
 
31 31
 %changelog
32
+*  Mon Sep 10 2018 Him Kalyan Bordoloi <bordoloih@vmware.com> 1.6-1
33
+-  Upgrade to 1.6
32 34
 *  Thu Jul 26 2018 Ajay Kaher <akaher@vmware.com> 1.5-2
33 35
 -  Resolved compilation error for aarch64
34 36
 *  Thu Jun 14 2018 Anish Swaminathan <anishs@vmware.com> 1.5-1
... ...
@@ -1,18 +1,26 @@
1 1
 Name:           oniguruma
2
-Version:        6.5.0
2
+Version:        6.9.0
3 3
 Release:        1%{?dist}
4 4
 Summary:        Regular expressions library
5 5
 Group:          System Environment/Libraries
6 6
 License:        BSD
7 7
 URL:            https://github.com/kkos/oniguruma/
8 8
 Source0:        https://github.com/kkos/oniguruma/releases/download/v%{version}/onig-%{version}.tar.gz
9
-%define sha1    onig=1347cc424b8b631b3fe9b7972b27c797a0ffdd3e
9
+%define sha1    onig=8e3e39e8e92f040939922ddc367a56c12bd4c4c3
10 10
 %description
11 11
 Oniguruma is a regular expressions library.
12 12
 The characteristics of this library is that different character encoding
13 13
 for every regular expression object can be specified.
14 14
 (supported APIs: GNU regex, POSIX and Oniguruma native)
15 15
 
16
+%package devel
17
+Summary:        Library providing headers and libraries to libonig
18
+Group:          Development/Libraries
19
+Requires:       oniguruma = %{version}-%{release}
20
+
21
+%description devel
22
+Development files for libonig
23
+
16 24
 %prep
17 25
 %setup -q -n onig-%{version}
18 26
 %build
... ...
@@ -33,20 +41,26 @@ find %{buildroot}/%{_libdir} -name '*.la' -delete
33 33
 make  check
34 34
 %post -p /sbin/ldconfig
35 35
 %postun -p /sbin/ldconfig
36
+
36 37
 %files
38
+%{_libdir}/libonig.so.*
39
+
40
+%files devel
37 41
 %defattr(-,root,root,-)
38 42
 %doc    AUTHORS
39 43
 %license        COPYING
40 44
 %doc    README
41 45
 %doc    index.html
42
-%lang(ja)       %doc    README.ja
46
+%lang(ja)       %doc    README_japanese
43 47
 %lang(ja)       %doc    index_ja.html
44 48
 %{_bindir}/onig-config
45 49
 %{_libdir}/libonig.so
46
-%{_libdir}/libonig.so.4*
47 50
 %{_includedir}/onig*.h
48 51
 %{_libdir}/pkgconfig/%{name}.pc
49 52
 
50 53
 %changelog
54
+* Mon Sep 10 2018 Him Kalyan Bordoloi <bordoloih@vmware.com> 6.9.0-1
55
+- Upgrade to 6.9.0
56
+- Created devel package
51 57
 * Tue Aug 22 2017 Chang Lee <changlee@vmware.com> 6.5.0-1
52 58
 - Initial version