forked from LibreDWG/libredwg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
libredwg.spec
225 lines (175 loc) · 6.42 KB
/
libredwg.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
# -*- sh -*-
Name: libredwg
Version: 0.13.3
Release: 0%{?dist}
Summary: GNU C library and programs to read and write DWG/DXF files
License: GPL-3.0-or-later
URL: https://www.gnu.org/software/libredwg/
#Source0: https://ftp.gnu.org/gnu/libredwg/libredwg-%%{version}.tar.xz
Source0: https://github.com/LibreDWG/libredwg/releases/download/%{version}/libredwg-%{version}.tar.xz
BuildRequires: gcc
BuildRequires: swig
BuildRequires: python3-devel
BuildRequires: perl-devel
BuildRequires: perl-macros
BuildRequires: perl(Convert::Binary::C)
BuildRequires: perl(ExtUtils::Embed)
BuildRequires: pcre2-devel
BuildRequires: pslib-devel
BuildRequires: libasan
BuildRequires: libubsan
BuildRequires: texinfo
BuildRequires: texinfo-tex
# Required for tests.
BuildRequires: libxml2-devel
BuildRequires: python3-libxml2
BuildRequires: pcre2
BuildRequires: pcre2-utf16
# no big-endian write support. TODO --disable-write
ExcludeArch: sparc alpha ppc64 ppc s390
%description
LibreDWG is a free C library to read and write DWG files. At the moment
our decoder (i.e. reader) is done, just some very advanced R2010+ and
preR13 entities fail to read and are skipped over. The writer is good
enough for R2000. As programs we provide a reader, a writer, a
re-writer (i.e. SaveAS), an initial basic SVG and Postscript
conversion, experimental dxf and json converters, dwggrep to search
for text, dwglayer to print the list of layers, and dwgfilter to use
JQ expressions to query or change a DWG.
%package devel
Summary: Development files for %{name}
Requires: %{name}%{?_isa} = %{version}-%{release}
%description devel
The %{name}-devel package contains libraries, perl5 and python bindings
and header files for developing applications that use %{name}.
For more serious development use the git repository, and add parallel,
timeout and potion.
%package -n python3-LibreDWG
Summary: Python bindings for %{name}
Requires: %{name}%{?_isa} = %{version}-%{release}, python
%description -n python3-LibreDWG
The python3-LibreDWG package contains the python bindings for developing
applications that use %{name}.
%package -n perl-LibreDWG
Summary: Perl bindings for %{name}
Requires: %{name}%{?_isa} = %{version}-%{release}, perl
%description -n perl-LibreDWG
The perl-LibreDWG package contains the perl bindings for developing
applications that use %{name}.
%prep
%autosetup
%build
%configure --disable-static --with-perl-install=vendor
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
%make_build PERL=/usr/bin/perl PYTHON=%{python3}
%make_build pdf
%check
# TODO: Figure out how to make tests work inside Mock.
# %%make_build check
%install
%make_install
# Remove static libraries.
find %{buildroot} -name '*.la' -exec rm -f {} ';'
# Remove perllocal.pod and packlist files.
# TODO: Try preventing their generation with something like:
# perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1
# Source: https://fedoraproject.org/wiki/Perl/Tips#Best_practices_for_the_latest_Fedora
rm %{buildroot}/%{perl_archlib}/perllocal.pod
rm %{buildroot}/%{perl_vendorarch}/auto/LibreDWG/.packlist
# Remove Info file.
rm %{buildroot}/%{_infodir}/dir
# Perl EUMM sets it read-only, but objcopy needs write access.
chmod u+w %{buildroot}/%{perl_vendorarch}/auto/LibreDWG/LibreDWG.so
%post
/sbin/ldconfig
/sbin/install-info %{_infodir}/LibreDWG.info %{_infodir}/dir || :
%preun
if [ $1 = 0 ] ; then
/sbin/install-info --delete %{_infodir}/LibreDWG.info %{_infodir}/dir || :
fi
%ldconfig_postun
%files
%license COPYING
%doc README AUTHORS NEWS doc/LibreDWG.pdf
%{_bindir}/dwg2SVG
%{_bindir}/dwg2dxf
%{_bindir}/dwg2ps
%{_bindir}/dwgbmp
%{_bindir}/dwgadd
%{_bindir}/dwgfilter
%{_bindir}/dwggrep
%{_bindir}/dwglayers
%{_bindir}/dwgread
%{_bindir}/dwgrewrite
%{_bindir}/dwgwrite
%{_bindir}/dxf2dwg
%{_bindir}/dxfwrite
%{_libdir}/libredwg.so.0
%{_libdir}/libredwg.so.0.0.13
%{_mandir}/man1/dwg2SVG.1.gz
%{_mandir}/man1/dwg2dxf.1.gz
%{_mandir}/man1/dwg2ps.1.gz
%{_mandir}/man1/dwgadd.1.gz
%{_mandir}/man1/dwgbmp.1.gz
%{_mandir}/man1/dwgfilter.1.gz
%{_mandir}/man1/dwggrep.1.gz
%{_mandir}/man1/dwglayers.1.gz
%{_mandir}/man1/dwgread.1.gz
%{_mandir}/man1/dwgrewrite.1.gz
%{_mandir}/man1/dwgwrite.1.gz
%{_mandir}/man1/dxf2dwg.1.gz
%{_mandir}/man1/dxfwrite.1.gz
%{_mandir}/man5/dwgadd.5.gz
%{_infodir}/LibreDWG.info*
%{_sharedir}/libredwg/dwgadd.example*
%{_sharedir}/libredwg/load_dwg.py
%files devel
%doc TODO
%{_includedir}/dwg.h
%{_includedir}/dwg_api.h
%{_libdir}/libredwg.so
%{_libdir}/pkgconfig/libredwg.pc
%files -n python3-LibreDWG
%{python3_sitelib}/LibreDWG.py
%{python3_sitelib}/__pycache__/LibreDWG.*
%{python3_sitearch}/_LibreDWG.so*
%files -n perl-LibreDWG
%{perl_vendorarch}/LibreDWG.pm
%{perl_vendorarch}/auto/LibreDWG/LibreDWG.so
%changelog
* Mon Feb 26 2024 Reini Urban <reini.urban@gmail.com> 0.13.3-1
- upstream bugfix.
* Mon Feb 12 2024 Reini Urban <reini.urban@gmail.com> 0.13.2-2
- Add libxml2-devel
- Fixed the sonumber back to 0
* Sat Feb 10 2024 Reini Urban <reini.urban@gmail.com> 0.13.2-1
- upstream bugfix.
* Fri Feb 9 2024 Reini Urban <reini.urban@gmail.com> 0.13.1-1
- upstream bugfix.
* Fri Feb 4 2024 Reini Urban <reini.urban@gmail.com> 0.13.0-1
- upstream update.
* Fri Feb 4 2022 Reini Urban <reini.urban@gmail.com> 0.12.5-1
- upstream update.
* Thu Jun 10 2021 Tadej Janež <tadej.j@nez.si> 0.12.4-2
- Refactor the Spec file
* Thu Mar 11 2021 Reini Urban <reini.urban@gmail.com> 0.12.4-1
- upstream update. Minor fixes
* Fri Feb 26 2021 Reini Urban <reini.urban@gmail.com> 0.12.3-1
- upstream update. Minor fixes
* Tue Feb 23 2021 Reini Urban <reini.urban@gmail.com> 0.12.2-1
- upstream update. Minor fixes
* Sat Jan 16 2021 Reini Urban <reini.urban@gmail.com> 0.12.1-1
- upstream update. Security fixes
* Thu Dec 31 2020 Reini Urban <reini.urban@gmail.com> 0.12-1
- upstream update. Add dxfadd
* Mon Nov 16 2020 Reini Urban <reini.urban@gmail.com> 0.11.1-1
- upstream update. Add dxfwrite
* Fri Aug 7 2020 Reini Urban <reini.urban@gmail.com> 0.11-1
- upstream update
* Wed Feb 19 2020 Reini Urban <reini.urban@gmail.com> 0.10.1.2915-1
- with dwgfilter and dwgwrite, from github pre-releases
* Mon Feb 17 2020 Reini Urban <reini.urban@gmail.com> 0.10.1-2
- installvendor patch, added pslib
* Sat Feb 15 2020 Reini Urban <reini.urban@gmail.com> 0.10.1-1
- Initial version tested on fc31