Compare commits
1 commit
rawhide
...
epel8-play
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
713a759690 |
4 changed files with 1 additions and 279 deletions
7
.gitignore
vendored
7
.gitignore
vendored
|
|
@ -1,7 +0,0 @@
|
|||
shapelib-1.3.0b2.tar.gz
|
||||
/shapelib-1.3.0.tar.gz
|
||||
/shapelib-1.4.0RC1.tar.gz
|
||||
/shapelib-1.4.0.tar.gz
|
||||
/shapelib-1.4.1.tar.gz
|
||||
/shapelib-man.tar.gz
|
||||
/shapelib-1.5.0.tar.gz
|
||||
1
dead.package
Normal file
1
dead.package
Normal file
|
|
@ -0,0 +1 @@
|
|||
epel8-playground decommissioned : https://pagure.io/epel/issue/136
|
||||
270
shapelib.spec
270
shapelib.spec
|
|
@ -1,270 +0,0 @@
|
|||
#global pre RC1
|
||||
|
||||
Name: shapelib
|
||||
Version: 1.5.0
|
||||
Release: 1%{?pre:.%pre}%{?dist}
|
||||
Summary: C library for handling ESRI Shapefiles
|
||||
# The core library is dual-licensed LGPLv2 or MIT.
|
||||
# Some contributed files have different licenses:
|
||||
# - contrib/csv2shp.c: GPLv2+
|
||||
# - contrib/dbfinfo.c: Public domain
|
||||
# - contrib/dbfcat.c: Public domain
|
||||
License: (LGPLv2+ or MIT) and GPLv2+ and Public Domain
|
||||
URL: http://shapelib.maptools.org/
|
||||
Source0: http://download.osgeo.org/shapelib/%{name}-%{version}%{?pre:%pre}.tar.gz
|
||||
# Man pages from debian package
|
||||
# wget https://salsa.debian.org/debian-gis-team/shapelib/-/archive/master/shapelib-master.tar.gz
|
||||
# tar --strip-components=2 -xvf shapelib-master.tar.gz shapelib-master/debian/man
|
||||
# tar -czf shapelib-man.tar.gz man/
|
||||
# rm -r man
|
||||
Source1: %{name}-man.tar.gz
|
||||
|
||||
BuildRequires: automake autoconf libtool
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: make
|
||||
BuildRequires: proj-devel >= 4.4.1
|
||||
# For man pages
|
||||
BuildRequires: rubygem-ronn
|
||||
|
||||
%description
|
||||
The Shapefile C Library provides the ability to write
|
||||
simple C programs for reading, writing and updating (to a
|
||||
limited extent) ESRI Shapefiles, and the associated
|
||||
attribute file (.dbf).
|
||||
|
||||
|
||||
%package devel
|
||||
Summary: Development files for shapelib
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
|
||||
%description devel
|
||||
This package contains libshp and the appropriate header files.
|
||||
|
||||
|
||||
%package tools
|
||||
Summary: shapelib utility programs
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
|
||||
%description tools
|
||||
This package contains various utility programs distributed with shapelib.
|
||||
|
||||
|
||||
%prep
|
||||
%autosetup -a1
|
||||
|
||||
|
||||
%build
|
||||
# Kill rpath
|
||||
autoreconf -ifv
|
||||
|
||||
%configure --disable-static
|
||||
%make_build
|
||||
|
||||
|
||||
%install
|
||||
%make_install
|
||||
|
||||
# Remove static libraries
|
||||
find %{buildroot} -name '*.la' -exec rm -f {} ';'
|
||||
|
||||
# Build man pages
|
||||
ronn -r --date="$(LC_ALL=C date -u "+%Y-%m-%d")" --manual=%{name} man/*.md
|
||||
mkdir -p %{buildroot}%{_mandir}/man1/
|
||||
install -pm 0644 man/*.1 %{buildroot}%{_mandir}/man1/
|
||||
|
||||
%ldconfig_scriptlets
|
||||
|
||||
|
||||
%files
|
||||
%doc README README.tree ChangeLog web/*.html
|
||||
%license COPYING
|
||||
%{_libdir}/libshp.so.2*
|
||||
|
||||
%files devel
|
||||
%{_includedir}/shapefil.h
|
||||
%{_libdir}/libshp.so
|
||||
%{_libdir}/pkgconfig/%{name}.pc
|
||||
|
||||
%files tools
|
||||
%doc contrib/doc/
|
||||
%{_bindir}/*
|
||||
%{_mandir}/man1/*.1*
|
||||
|
||||
|
||||
%changelog
|
||||
* Fri Mar 01 2019 Sandro Mani <manisandro@gmail.com> - 1.5.0-1
|
||||
- Update to 1.5.0
|
||||
|
||||
* Thu Feb 14 2019 Björn Esser <besser82@fedoraproject.org> - 1.4.1-7
|
||||
- rebuilt (proj)
|
||||
|
||||
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.1-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Mon Aug 20 2018 Sandro Mani <manisandro@gmail.com> - 1.4.1-5
|
||||
- Add man pages (#1619071)
|
||||
|
||||
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.1-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Wed Mar 07 2018 Sandro Mani <manisandro@gmail.com> - 1.4.1-3
|
||||
- BR: gcc-c++
|
||||
|
||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Thu Sep 14 2017 Sandro Mani <manisandro@gmail.com> - 1.4.1-1
|
||||
- Update to 1.4.1
|
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.0-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.0-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Wed Jan 25 2017 Sandro Mani <manisandro@gmail.com> - 1.4.0-2
|
||||
- Rebuild (proj)
|
||||
|
||||
* Sun Dec 11 2016 Sandro Mani <manisandro@gmail.com> - 1.4.0-1
|
||||
- Update to 1.4.0
|
||||
|
||||
* Wed Dec 07 2016 Sandro Mani <manisandro@gmail.com> - 1.4.0-0.1.RC1
|
||||
- Update to 1.4.0-RC1
|
||||
|
||||
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.0f-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0f-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 1.3.0f-7
|
||||
- Rebuilt for GCC 5 C++11 ABI change
|
||||
|
||||
* Thu Mar 12 2015 Sandro Mani <manisandro@gmail.com> - 1.3.0f-5
|
||||
- Rebuild (proj)
|
||||
|
||||
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0f-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||
|
||||
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0f-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Sun Apr 06 2014 Sandro Mani <manisandro@gmail.com> - 1.3.0f-3
|
||||
- Backport some fixes from the gdal bundled shapelib
|
||||
|
||||
* Thu Aug 08 2013 Sandro Mani <manisandro@gmail.com> - 1.3.0f-2
|
||||
- Add missing licenses
|
||||
|
||||
* Mon Aug 05 2013 Sandro Mani <manisandro@gmail.com> - 1.3.0f-1
|
||||
- Update to 1.3.0 final
|
||||
|
||||
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0b2-10.1
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||
|
||||
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0b2-9.1
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0b2-8.1
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||
|
||||
* Thu Apr 21 2011 Karsten Hopp <karsten@redhat.com> 1.3.0b2-7.1
|
||||
- remove endian definition from Makefile, leave it to endian.h
|
||||
|
||||
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0b2-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||
|
||||
* Wed May 19 2010 Lucian Langa <cooly@gnome.eu.org> - 1.3.0b2-6
|
||||
- update to latest upstream beta
|
||||
|
||||
* Tue Mar 09 2010 Lucian Langa <cooly@gnome.eu.org> - 1.3.0b1-5
|
||||
- update to latest upstream version
|
||||
|
||||
* Fri Feb 19 2010 Lucian Langa <cooly@gnome.eu.org> - 1.2.10-2.20100216cvs
|
||||
- update patch0-3 fix undefined symbols
|
||||
|
||||
* Tue Feb 16 2010 Lucian Langa <cooly@gnome.eu.org> - 1.2.10-1.20100216cvs
|
||||
- revert to latest cvs snapshot
|
||||
|
||||
* Thu Feb 04 2010 Lucian Langa <cooly@gnome.eu.org> - 1.3.0b1-4
|
||||
- misc cleanups
|
||||
|
||||
* Thu Feb 04 2010 Lucian Langa <cooly@gnome.eu.org> - 1.3.0b1-3
|
||||
- do not package static libfiles (#556094)
|
||||
|
||||
* Thu Jan 07 2010 Lucian Langa <cooly@gnome.eu.org> - 1.3.0b1-2
|
||||
- fix patch2 - no not depend on gdal
|
||||
|
||||
* Thu Jan 07 2010 Lucian Langa <cooly@gnome.eu.org> - 1.3.0b1-1
|
||||
- misc cleanups
|
||||
- update BR
|
||||
- fix source0
|
||||
- update to latest upstream snapshot
|
||||
|
||||
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.10-20.20060304cvs
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||
|
||||
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.10-19.20060304cvs
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||
|
||||
* Thu Sep 4 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.2.10-18.20060304cvs
|
||||
- fix patch application
|
||||
|
||||
* Thu Sep 4 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.2.10-17.20060304cvs
|
||||
- fix license tag
|
||||
|
||||
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.2.10-16.20060304cvs
|
||||
- Autorebuild for GCC 4.3
|
||||
|
||||
* Sun Oct 21 2007 Shawn McCann <mccann0011@hotmail.com> - 1.2.10-15.20060304cvs
|
||||
- Fix for bug 339931
|
||||
|
||||
* Sat Sep 16 2006 Shawn McCann <mccann0011@hotmail.com> - 1.2.10-12.20060304cvs
|
||||
- Rebuild for FC6
|
||||
|
||||
* Sun Mar 5 2006 Shawn McCann <mccann0011@hotmail.com> - 1.2.10-11.20060304cvs
|
||||
- Fixed a makefile bug that messed up parallel builds
|
||||
|
||||
* Sat Mar 4 2006 Shawn McCann <mccann0011@hotmail.com> - 1.2.10-10.20060304cvs
|
||||
- Upgraded to cvs snapshot taken on March 4, 2006
|
||||
|
||||
* Sat Mar 4 2006 Shawn McCann <mccann0011@hotmail.com> - 1.2.10-9
|
||||
- Rebuild for Fedora Extras 5
|
||||
|
||||
* Mon Apr 11 2005 Michael Schwendt <mschwendt[AT]users.sf.net> - 1.2.10-8
|
||||
- Fix "invalid lvalue in assignment" for GCC4.
|
||||
|
||||
* Fri Apr 8 2005 Michael Schwendt <mschwendt[AT]users.sf.net>
|
||||
- rebuilt
|
||||
|
||||
* Sun Feb 13 2005 David Woodhouse <dwmw2@infradead.org> 0:1.2.10-6
|
||||
- Don't hard-code endianness; just use endian.h
|
||||
|
||||
* Wed Dec 15 2004 David M. Kaplan <dmk@erizo.ucdavis.edu> 0:1.2.10-5
|
||||
- Patched patch and spec file according to suggestions of Michael Schwendt
|
||||
- In particular, this separates the building from the installing in the rpm.
|
||||
|
||||
* Thu Aug 12 2004 David M. Kaplan <dmk@erizo.ucdavis.edu> 0:1.2.10-0.fdr.4
|
||||
- Moved RPM_OPT_FLAGS out of make files.
|
||||
- Removed backup files from patch.
|
||||
- Made sure that make was using the appropriate libdir.
|
||||
|
||||
* Mon Dec 22 2003 David M. Kaplan <dmk@erizo.ucdavis.edu> 0:1.2.10-0.fdr.3
|
||||
- Added url tag, changed copyright to license and changed permissions on patch file.
|
||||
|
||||
* Mon Dec 22 2003 David M. Kaplan <dmk@erizo.ucdavis.edu> 0:1.2.10-0.fdr.2
|
||||
- Add source URL
|
||||
- Removed proj requirement as it is automatically detected.
|
||||
- Added epoch to proj-devel requirement
|
||||
- Fixed post and postun
|
||||
- Changed group to Development/Libraries, although this appears to be only
|
||||
somewhat satisfactory.
|
||||
- Removed "which make"
|
||||
|
||||
* Wed Nov 5 2003 David M. Kaplan <dmk@erizo.ucdavis.edu> 0:1.2.10-0.fdr.1
|
||||
- Updated to 1.2.10 release
|
||||
- Major changes to spec for Fedora
|
||||
- Changes to Makefile patch for Fedora
|
||||
- Split off devel package
|
||||
2
sources
2
sources
|
|
@ -1,2 +0,0 @@
|
|||
SHA512 (shapelib-man.tar.gz) = 0625355e51005b032c2ea441d888868fa13bcdee862d9c5bae5aa26cb98e40e7eeb414f52dc63d433692dbe3873d037740e8bf650a30e6e4d56b216d48bda6da
|
||||
SHA512 (shapelib-1.5.0.tar.gz) = 6dbd5fc7929ca403e65017ef58211f351608d9ad08221bf68bde047ceecfd27013ce731f9ae4edcfd040bc3db7fe9054b5d96e46128d2968788bef19532b1721
|
||||
Loading…
Add table
Add a link
Reference in a new issue