source: projects/specs/trunk/lib/libt/libtasn1/libtasn1-vl.spec @ 12322

Revision 12322, 5.5 KB checked in by tomop, 4 years ago (diff)

updated 13 packages

cpio-2.13-1

curl-7.68.0-1

e2fsprogs-1.45.5-1

firefox-68.5.0-1

flex-2.6.4-1

libarchive-3.4.2-1

libogg-1.3.4-1

libssh-0.9.3-1

libtasn1-4.16.0-1

libvorbis-1.3.6-1

nghttp2-1.40.0-1

thunderbird-68.5.0-1

vorbis-tools-1.4.0-5

Line 
1%define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
2
3Summary: This is the ASN.1 library used in GNUTLS
4Name: libtasn1
5Version: 4.16.0
6Release: 1%{?_dist_release}
7License: LGPL
8Group: System Environment/Libraries
9URL: http://www.gnu.org/software/libtasn1/
10Source0: https://ftp.gnu.org/gnu/libtasn1/%{name}-%{version}.tar.gz
11Patch1: libtasn1-3.4-rpath.patch
12BuildRequires: bison, gcc-c++, texinfo
13
14BuildRoot: %{_tmppath}/%{name}-%{version}-root
15Vendor: Project Vine
16Distribution: Vine Linux
17
18%description
19This is the ASN.1 library used in GNUTLS.
20
21%package devel
22Summary: Header files, libraries and development documentation for %{name}
23Group: Development/Libraries
24Requires: %{name} = %{version}-%{release}
25
26%description devel
27This package contains the header files, static libraries and development
28documentation for %{name}. If you like to develop programs using %{name},
29you will need to install %{name}-devel.
30
31%package -n compat32-%{name}
32Summary: This is the ASN.1 library used in GNUTLS
33Group: System Environment/Libraries
34Requires: %{name} = %{version}-%{release}
35
36%description -n compat32-%{name}
37This is the ASN.1 library used in GNUTLS.
38
39%package -n compat32-%{name}-devel
40Summary: Header files, libraries and development documentation for %{name}
41Group: Development/Libraries
42Requires: compat32-%{name} = %{version}-%{release}
43Requires: %{name}-devel = %{version}-%{release}
44
45%description -n compat32-%{name}-devel
46This package contains the header files, static libraries and development
47documentation for %{name}. If you like to develop programs using %{name},
48you will need to install %{name}-devel.
49
50%prep
51%setup -q
52%patch1 -p1 -b .rpath
53
54%build
55%configure --disable-static
56# libtasn1 likes to regenerate docs
57touch doc/stamp_docs
58make %{?_smp_mflags}
59
60%install
61rm -rf %{buildroot}
62make DESTDIR="$RPM_BUILD_ROOT" install
63rm -f %{buildroot}%{_infodir}/dir
64
65### Clean up buildroot
66rm -f %{buildroot}%{_libdir}/*.la
67
68%post -p /sbin/ldconfig
69
70%postun -p /sbin/ldconfig
71
72%post -n compat32-%{name} -p /sbin/ldconfig
73
74%postun -n compat32-%{name} -p /sbin/ldconfig
75
76%clean
77rm -rf %{buildroot}
78
79%files
80%defattr(-, root, root, 0755)
81%license LICENSE
82%doc AUTHORS NEWS README* THANKS
83%doc %{_mandir}/man1/asn1*
84%{_libdir}/*.so.*
85%{_bindir}/asn1Coding
86%{_bindir}/asn1Decoding
87%{_bindir}/asn1Parser
88
89%files devel
90%defattr(-, root, root, 0755)
91%doc doc/*.ps doc/TODO
92%{_includedir}/*.h
93%{_libdir}/*.so
94#%{_bindir}/libtasn1-config
95%{_libdir}/pkgconfig/libtasn1.pc
96#%{_datadir}/aclocal/libtasn1.m4
97%{_infodir}/libtasn1*
98%{_mandir}/man3/*asn1*
99
100# compat32
101%if %{build_compat32}
102%files -n compat32-%{name}
103%defattr(-, root, root, 0755)
104%{_libdir}/*.so.*
105
106%files -n compat32-%{name}-devel
107%defattr(-, root, root, 0755)
108%{_libdir}/*.so
109%{_libdir}/pkgconfig/libtasn1.pc
110%endif
111
112%changelog
113* Tue Feb 18 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.16.0-1
114- new upstream release.
115
116* Thu Nov 08 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.13-1
117- new upstream release.
118
119* Mon May  9 2016 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.8-1
120- new upstream release with security fix
121
122* Mon Dec 28 2015 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.7-1
123- new upstream release   
124
125* Fri Aug 28 2015 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.5-1
126- new upstream release 
127
128* Tue Feb  4 2014 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 3.4-1
129- new upstream release
130- update patches
131- add Vendor/Distri tags
132
133* Thu Sep 27 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> - 2.14-1
134- new upstream release
135
136* Mon Jun 04 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> - 2.13-1
137- new upstream release
138
139* Thu Mar 22 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> - 2.12-1
140- new upstream release
141
142* Fri Nov 25 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> - 2.11-1
143- new upstream release
144
145* Sun Dec 12 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 2.9-1
146- Updated to release 2.9
147
148* Sat Oct 9 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 2.8-1
149- Updated to release 2.8
150
151* Tue Sep 21 2010 IWAI, Masaharu <iwai@alib.jp> - 2.2-3
152- build with rpm-4.8.1-1 for pkg-config file
153
154* Sat Jun 27 2009 NAKAMURA Kenta <kenta@vinelinux.org> - 2.2-2
155- added compat32 package for x86_64 arch support
156- added --disable-static %%configure option
157
158* Sat May 23 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> - 2.2-1vl5
159- Updated to release 2.2
160
161* Sun Apr 26 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> - 2.1-1vl5
162- Updated to release 2.1
163
164* Wed Apr 15 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> - 2.0-1vl5
165- Updated to release 2.0
166- spec in UTF-8
167- fixed %files devel (comment out %{_bindir}/libtasn1-config)
168
169* Wed Jan 21 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.8-1vl5
170- Updated to release 1.8
171- fixed %files devel (comment out %{_datadir}/aclocal/libtasn1.m4)
172
173* Sat Mar 22 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 1.3-1vl5
174- initial build for Vine
175
176* Tue Apr 17 2007 Dries Verachtert <dries@ulyssis.org> - 0.3.9-1
177- Updated to release 0.3.9.
178
179* Sat Nov 18 2006 Dries Verachtert <dries@ulyssis.org> - 0.3.8-1
180- Updated to release 0.3.8.
181
182* Tue Sep 26 2006 Dries Verachtert <dries@ulyssis.org> - 0.3.5-1
183- Updated to release 0.3.5.
184
185* Sat Apr 08 2006 Dries Verachtert <dries@ulyssis.org> - 0.3.0-1.2
186- Rebuild for Fedora Core 5.
187
188* Fri Mar 03 2006 Dries Verachtert <dries@ulyssis.org> - 0.3.0-1
189- Updated to release 0.3.0.
190
191* Sun Feb 12 2006 Dries Verachtert <dries@ulyssis.org> - 0.2.18-1
192- Updated to release 0.2.18.
193
194* Fri Nov 11 2005 Dries Verachtert <dries@ulyssis.org> - 0.2.17-1
195- Updated to release 0.2.17.
196
197* Mon May 17 2004 Dag Wieers <dag@wieers.com> - 0.2.9-1
198- Updated to release 0.2.9.
199
200* Wed Dec 03 2003 Dag Wieers <dag@wieers.com> - 0.2.5-0
201- Initial package. (using DAR)
Note: See TracBrowser for help on using the repository browser.