Parent Directory | Revision Log | Revision Graph
Initial import
1 | jpp | 1.1 | #global prerel rc |
2 | |||
3 | Name: pugixml | ||
4 | Version: 1.11.4 | ||
5 | Release: 1%{?dist} | ||
6 | Summary: A light-weight C++ XML processing library | ||
7 | License: MIT | ||
8 | URL: http://pugixml.org | ||
9 | |||
10 | Source0: https://github.com/zeux/%{name}/releases/download/v%{version}/%{name}-%{version}.tar.gz | ||
11 | |||
12 | BuildRequires: cmake gcc-c++ | ||
13 | |||
14 | %description | ||
15 | pugixml is a light-weight C++ XML processing library. | ||
16 | It features: | ||
17 | - DOM-like interface with rich traversal/modification capabilities | ||
18 | - Extremely fast non-validating XML parser which constructs the DOM tree from | ||
19 | an XML file/buffer | ||
20 | - XPath 1.0 implementation for complex data-driven tree queries | ||
21 | - Full Unicode support with Unicode interface variants and automatic encoding | ||
22 | conversions | ||
23 | |||
24 | |||
25 | %package devel | ||
26 | Summary: Development files for %{name} | ||
27 | Requires: %{name}%{?_isa} = %{version}-%{release} | ||
28 | |||
29 | %description devel | ||
30 | Development files for package %{name} | ||
31 | |||
32 | %package doc | ||
33 | Summary: Documentation for %{name} | ||
34 | Requires: %{name} = %{version}-%{release} | ||
35 | |||
36 | %description doc | ||
37 | Documentation for %{name} | ||
38 | |||
39 | |||
40 | %prep | ||
41 | %setup -q -n %{name}-%{version}%{?prerel:%{prerel}} | ||
42 | |||
43 | |||
44 | %build | ||
45 | %cmake | ||
46 | %cmake_build | ||
47 | |||
48 | |||
49 | %install | ||
50 | %cmake_install | ||
51 | |||
52 | |||
53 | %ldconfig_scriptlets | ||
54 | |||
55 | |||
56 | %files | ||
57 | %doc readme.txt | ||
58 | %license LICENSE.md | ||
59 | %{_libdir}/*.so.* | ||
60 | |||
61 | %files devel | ||
62 | %{_libdir}/*.so | ||
63 | %{_libdir}/cmake/pugixml/ | ||
64 | %{_libdir}/pkgconfig/pugixml.pc | ||
65 | %{_includedir}/*.hpp | ||
66 | |||
67 | %files doc | ||
68 | %doc docs/* | ||
69 | |||
70 | |||
71 | %changelog | ||
72 | * Thu Dec 24 2020 Richard Shaw <hobbes1069@gmail.com> - 1.11.4-1 | ||
73 | - Update to 1.11.4. | ||
74 | |||
75 | * Sat Dec 19 2020 Richard Shaw <hobbes1069@gmail.com> - 1.11.3-1 | ||
76 | - Update to 1.11.3. | ||
77 | |||
78 | * Thu Nov 26 2020 Richard Shaw <hobbes1069@gmail.com> - 1.11-1 | ||
79 | - Update to 1.11. | ||
80 | |||
81 | * Wed Aug 26 2020 Jeff Law <lwa@redhat.com> - 1.10-5 | ||
82 | - No longer force C++11 mode | ||
83 | |||
84 | * Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.10-4 | ||
85 | - Second attempt - Rebuilt for | ||
86 | https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild | ||
87 | |||
88 | * Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.10-3 | ||
89 | - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild | ||
90 | |||
91 | * Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.10-2 | ||
92 | - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild | ||
93 | |||
94 | * Sun Sep 15 2019 Richard Shaw <hobbes1069@gmail.com> - 1.10-1 | ||
95 | - Update to 1.10. | ||
96 | |||
97 | * Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.9-4 | ||
98 | - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild | ||
99 | |||
100 | * Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.9-3 | ||
101 | - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild | ||
102 | |||
103 | * Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.9-2 | ||
104 | - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild | ||
105 | |||
106 | * Fri Apr 06 2018 Richard Shaw <hobbes1069@gmail.com> - 1.9-1 | ||
107 | - Update to 1.9. | ||
108 | |||
109 | * Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.8-4 | ||
110 | - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild | ||
111 | |||
112 | * Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.8-3 | ||
113 | - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild | ||
114 | |||
115 | * Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.8-2 | ||
116 | - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild | ||
117 | |||
118 | * Thu Nov 24 2016 Richard Shaw <hobbes1069@gmail.com> - 1.8-1 | ||
119 | - Update to latest upstream release. | ||
120 | |||
121 | * Tue Sep 27 2016 Richard Shaw <hobbes1069@gmail.com> - 1.7-3 | ||
122 | - Add build flags for c++11 for mkvtoolnix. | ||
123 | |||
124 | * Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.7-2 | ||
125 | - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild | ||
126 | |||
127 | * Mon Oct 19 2015 Richard Shaw <hobbes1069@gmail.com> - 1.7-1 | ||
128 | - Update to latest upstream release. | ||
129 | |||
130 | * Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6-2 | ||
131 | - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild | ||
132 | |||
133 | * Sat Apr 11 2015 Richard Shaw <hobbes1069@gmail.com> - 1.6-1 | ||
134 | - Update to latest upstream release. | ||
135 | |||
136 | * Tue Feb 3 2015 Richard Shaw <hobbes1069@gmail.com> - 1.5-1 | ||
137 | - Update to latest upstream release. | ||
138 | |||
139 | * Wed Sep 03 2014 Orion Poplawski <orion@cora.nwra.com> - 1.4-1 | ||
140 | - Update to 1.4 | ||
141 | - Split documentation out into -doc sub-package | ||
142 | - Add cmake export information | ||
143 | |||
144 | * Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> | ||
145 | - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild | ||
146 | |||
147 | * Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> | ||
148 | - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild | ||
149 | |||
150 | * Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> | ||
151 | - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild | ||
152 | |||
153 | * Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> | ||
154 | - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild | ||
155 | |||
156 | * Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> | ||
157 | - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild | ||
158 | |||
159 | * Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> | ||
160 | - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild | ||
161 | |||
162 | * Thu Jan 05 2012 Richard Shaw <hobbes1069@gmail.com> - 1.0-2 | ||
163 | - Rebuild for GCC 4.7.0. | ||
164 | |||
165 | * Fri Jul 08 2011 Richard Shaw <hobbes1069@gmail.com> - 1.0-1 | ||
166 | - Initial Release |
admin@koozali.org | ViewVC Help |
Powered by ViewVC 1.2.1 |