source: projects/specs/trunk/lib/liba/libarchive/libarchive-vl.spec @ 12531

Revision 12531, 3.6 KB checked in by tomop, 3 years ago (diff)

updated 10 packages

file-5.39-1

jansson-2.13.1-1

lz4-1.9.3-1

libarchive-3.5.1-1

libcap-ng-0.8.2-1

libevent-2.1.12-1

libnet-1.2-1

nss-3.61-1

openssl-1.1.1j-1

zstd-1.4.8-1

Line 
1Name:          libarchive
2Summary:       A library for handling streaming archive formats
3Version:       3.5.1
4Release:       1%{?_dist_release}
5Group:         system
6Vendor:        Project Vine
7Distribution:  Vine Linux
8
9License:       BSD
10URL:           https://www.libarchive.org/
11Source0:       https://www.libarchive.org/downloads/%{name}-%{version}.tar.gz
12
13BuildRoot:     %{_tmppath}/%{name}-%{version}-root
14BuildRequires: bzip2-devel
15BuildRequires: libacl-devel
16BuildRequires: libattr-devel
17BuildRequires: libxml2-devel
18BuildRequires: libzstd-devel
19BuildRequires: lz4-devel
20BuildRequires: openssl-devel
21BuildRequires: xz-devel
22BuildRequires: zlib-devel
23
24%description
25Libarchive is a programming library that can create and read several different
26streaming archive formats, including most popular tar variants, several cpio
27formats, and both BSD and GNU ar variants. It can also write shar archives and
28read ISO9660 CDROM images and ZIP archives.
29
30%package       devel
31Summary:       Development files for %{name}
32Group:         programming
33Requires:      %{name} = %{version}-%{release}
34
35%description   devel
36The %{name}-devel package contains libraries and header files for
37developing applications that use %{name}.
38
39
40%debug_package
41
42
43%prep
44%setup -q
45
46
47%build
48%configure \
49    --disable-static \
50    --disable-bsdtar --disable-bsdcpio --disable-bsdcat
51make %{?_smp_mflags}
52
53
54%install
55rm -rf $RPM_BUILD_ROOT
56make install DESTDIR=$RPM_BUILD_ROOT
57#iconv -f latin1 -t utf-8 < NEWS > NEWS.utf8; cp NEWS.utf8 NEWS
58find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
59find $RPM_BUILD_ROOT -name cpio.5 -exec rm -f {} ';'
60find $RPM_BUILD_ROOT -name mtree.5 -exec rm -f {} ';'
61find $RPM_BUILD_ROOT -name tar.5 -exec rm -f {} ';'
62
63
64%clean
65rm -rf $RPM_BUILD_ROOT
66
67
68%post -p /sbin/ldconfig
69%postun -p /sbin/ldconfig
70
71
72%files
73%defattr(-,root,root,-)
74%license COPYING
75%doc README* NEWS
76%{_libdir}/*.so.*
77
78%files devel
79%defattr(-,root,root,-)
80%doc
81%{_includedir}/*
82%{_mandir}/*/*
83%{_libdir}/*.so
84%{_libdir}/pkgconfig/*.pc
85
86
87%changelog
88* Wed Feb 17 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.5.1-1
89- new upstream release.
90
91* Thu Jul 16 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.4.3-1
92- new upstream release.
93- added BR:lz4-devel.
94- added BR:libzstd-devel.
95
96* Sun Feb 16 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.4.2-1
97- new upstream release.
98
99* Sat Oct 26 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.4.0-1
100- new upstream release.
101
102* Fri Nov 30 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.3.3-1
103- new upstream release.
104
105* Tue Dec 19 2017 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.3.2-1
106- new upstream release.
107
108* Sun May 15 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.2.0-1
109- new upstream release
110
111* Sun Jul 06 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.1.2-1
112- update to 3.1.2
113
114* Sun Jun 10 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.0.4-1
115- new upstream release
116
117* Thu May 19 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.8.4-4
118- add BuildRequires: openssl-devel, libxml2-devel
119
120* Thu May 19 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.4-3
121- rebuild against liblzma.so.5
122
123* Sun Sep 26 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.8.4-2
124- rebuild with rpm-4.8.1 for pkg-config file
125
126* Sun Sep  5 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.8.4-1
127- new upstream release
128
129* Wed Apr 14 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.8.3-1
130- new upstream release
131- built with new toolchain
132
133* Tue Apr  8 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.6.0-1
134- new upstream release
135
136* Wed Apr  2 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.4.14-1vl5
137- Build for Vine Linux
138
139* Tue Mar 18 2008 Tomas Bzatek <tbzatek@redhat.com> 2.4.14-1
140- Initial packaging
Note: See TracBrowser for help on using the repository browser.