Browse code

Corrected the filename to libgssglue.spec

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

Ajay Kaher authored on 2018/10/26 01:47:33
Showing 2 changed files
1 1
deleted file mode 100644
... ...
@@ -1,49 +0,0 @@
1
-Summary:        This library exports a gssapi interface
2
-Name:           libgssglue
3
-Version:        0.4
4
-Release:        2%{?dist}
5
-License:        BSD
6
-URL:            http://www.citi.umich.edu/projects/nfsv4/linux/
7
-Group:          System Environment/Libraries
8
-Vendor:         VMware, Inc.
9
-Distribution:   Photon
10
-Source0:        http://www.citi.umich.edu/projects/nfsv4/linux/libgssglue/%{name}-%{version}.tar.gz
11
-%define sha1    libgssglue=a8edc4f6a1d4dcd80ad52d18226fc65fa8850af1
12
-
13
-%description
14
-This library exports a gssapi interface, but doesn't implement any gssapi mechanisms itself; instead it calls gssapi routines in other libraries, depending on the mechanism.
15
-
16
-%package        devel
17
-Summary:        Header and development files
18
-Requires:       %{name} = %{version}
19
-%description    devel
20
-It contains the libraries and header files to create applications 
21
-
22
-%prep
23
-%setup -q
24
-%build
25
-%configure --prefix=/usr --disable-static
26
-
27
-make %{?_smp_mflags}
28
-
29
-%install
30
-make DESTDIR=%{buildroot} install
31
-find %{buildroot}/%{_libdir} -name '*.la' -delete
32
-
33
-%post
34
-
35
-%files
36
-%defattr(-,root,root)
37
-%{_libdir}/libgssglue.so.*
38
-
39
-%files  devel
40
-%defattr(-,root,root)
41
-%{_includedir}/*
42
-%{_libdir}/libgssglue.so
43
-%{_libdir}/pkgconfig/*.pc
44
-
45
-%changelog
46
-*   Thu Jul 26 2018 Ajay Kaher <akaher@vmware.com> 0.4-2
47
--   Resolved compilation error for aarch64
48
-*   Mon Jan 22 2018 Xiaolin Li <xiaolinl@vmware.com> 0.4-1
49
--   Initial build. First version
50 1
new file mode 100644
... ...
@@ -0,0 +1,51 @@
0
+Summary:        This library exports a gssapi interface
1
+Name:           libgssglue
2
+Version:        0.4
3
+Release:        3%{?dist}
4
+License:        BSD
5
+URL:            http://www.citi.umich.edu/projects/nfsv4/linux/
6
+Group:          System Environment/Libraries
7
+Vendor:         VMware, Inc.
8
+Distribution:   Photon
9
+Source0:        http://www.citi.umich.edu/projects/nfsv4/linux/libgssglue/%{name}-%{version}.tar.gz
10
+%define sha1    libgssglue=a8edc4f6a1d4dcd80ad52d18226fc65fa8850af1
11
+
12
+%description
13
+This library exports a gssapi interface, but doesn't implement any gssapi mechanisms itself; instead it calls gssapi routines in other libraries, depending on the mechanism.
14
+
15
+%package        devel
16
+Summary:        Header and development files
17
+Requires:       %{name} = %{version}
18
+%description    devel
19
+It contains the libraries and header files to create applications
20
+
21
+%prep
22
+%setup -q
23
+%build
24
+%configure --prefix=/usr --disable-static
25
+
26
+make %{?_smp_mflags}
27
+
28
+%install
29
+make DESTDIR=%{buildroot} install
30
+find %{buildroot}/%{_libdir} -name '*.la' -delete
31
+
32
+%post
33
+
34
+%files
35
+%defattr(-,root,root)
36
+%{_libdir}/libgssglue.so.*
37
+
38
+%files  devel
39
+%defattr(-,root,root)
40
+%{_includedir}/*
41
+%{_libdir}/libgssglue.so
42
+%{_libdir}/pkgconfig/*.pc
43
+
44
+%changelog
45
+*   Thu Oct 25 2018 Ajay Kaher <akaher@vmware.com> 0.4-3
46
+-   Corrected spec file name
47
+*   Thu Jul 26 2018 Ajay Kaher <akaher@vmware.com> 0.4-2
48
+-   Resolved compilation error for aarch64
49
+*   Mon Jan 22 2018 Xiaolin Li <xiaolinl@vmware.com> 0.4-1
50
+-   Initial build. First version