From 5bcbc99d9c059d9edd656bf7cf875580d03bf2da Mon Sep 17 00:00:00 2001 From: mrceresa Date: Sat, 6 Mar 2010 12:09:00 +0000 Subject: [PATCH 01/46] - Initial import --- .cvsignore | 1 + import.log | 1 + rply.spec | 82 +++++++++++++++++++++++++++++++++++++++++++++ rply_CMakeLists.txt | 30 +++++++++++++++++ sources | 1 + 5 files changed, 115 insertions(+) create mode 100644 import.log create mode 100644 rply.spec create mode 100644 rply_CMakeLists.txt diff --git a/.cvsignore b/.cvsignore index e69de29..ed18902 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +rply-1.01.tar.gz diff --git a/import.log b/import.log new file mode 100644 index 0000000..562b319 --- /dev/null +++ b/import.log @@ -0,0 +1 @@ +rply-1_01-2_fc12:HEAD:rply-1.01-2.fc12.src.rpm:1267876689 diff --git a/rply.spec b/rply.spec new file mode 100644 index 0000000..e362e72 --- /dev/null +++ b/rply.spec @@ -0,0 +1,82 @@ +Name: rply +Version: 1.01 +Release: 2%{?dist} +Summary: A library to read and write PLY files +Group: Development/Libraries +License: MIT +URL: http://www.tecgraf.puc-rio.br/~diego/professional/rply/ +Source0: http://www.tecgraf.puc-rio.br/~diego/professional/rply/rply-1.01.tar.gz +Source1: rply_CMakeLists.txt +Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildRequires: cmake >= 2.6.0 + + +%description +RPly is a library that lets applications read and write PLY files. +The PLY file format is widely used to store geometric information, such as 3D +models, but is general enough to be useful for other purposes. + +RPly is easy to use, well documented, small, free, open-source, ANSI C, +efficient, and well tested. The highlights are: + +* A callback mechanism that makes PLY file input straightforward; +* Support for the full range of numeric formats; +* Binary (big and little endian) and text modes are fully supported; +* Input and output are buffered for efficiency; +* Available under the MIT license for added freedom. + +%prep +%setup -q + +# Add CMakeLists.txt file +cp %{SOURCE1} CMakeLists.txt + +%build +%cmake -DCMAKE_BUILD_TYPE:STRING="Release"\ + -DCMAKE_VERBOSE_MAKEFILE=ON . + +make %{?_smp_mflags} + +%install +rm -rf $RPM_BUILD_ROOT +make install DESTDIR=$RPM_BUILD_ROOT + + +%clean +rm -rf $RPM_BUILD_ROOT + +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + + +%files +%defattr(-,root,root,-) +%doc LICENSE +%doc manual/* +%{_libdir}/*.so.* +%{_bindir}/* + + +%package devel +Summary: Libraries and headers for rply +Group: Development/Libraries +Requires: %{name} = %{version}-%{release} + +%description devel + +Rply Library Header Files and Link Libraries + +%files devel +%defattr(-,root,root) +%dir %{_includedir}/%{name}/ +%{_includedir}/%{name}/* +%{_libdir}/*.so + +%changelog +* Thu Mar 04 2010 Mario Ceresa mrceresa@gmail.com rply 1.01-2 +- Fixed problems detected in https://bugzilla.redhat.com/show_bug.cgi?id=570258#c2 + +* Wed Mar 03 2010 Mario Ceresa mrceresa@gmail.com rply 1.01-1 +- Initial RPM Release diff --git a/rply_CMakeLists.txt b/rply_CMakeLists.txt new file mode 100644 index 0000000..fa2fcd8 --- /dev/null +++ b/rply_CMakeLists.txt @@ -0,0 +1,30 @@ +PROJECT(rply) +cmake_minimum_required(VERSION 2.6) + +SET(RPLY_LIB_MAJOR_VERSION 1) +SET(RPLY_LIB_MINOR_VERSION 01) + +add_library(rply SHARED rply.c ) +set_target_properties( rply PROPERTIES + VERSION ${RPLY_LIB_MAJOR_VERSION}.${RPLY_LIB_MINOR_VERSION} + SOVERSION ${RPLY_LIB_MAJOR_VERSION} + ) + +include_directories( ${CMAKE_SOURCE_DIR} ) +add_executable(rply_convert etc/convert.c ) +add_executable(rply_dump etc/dump.c ) +add_executable(rply_sconvert etc/sconvert.c ) +target_link_libraries (rply_convert rply) +target_link_libraries (rply_dump rply) +target_link_libraries (rply_sconvert rply) + +# Installs the header files +install(FILES rply.h DESTINATION include/rply) + +# Installs the target file +install(TARGETS rply LIBRARY DESTINATION lib${LIB_SUFFIX}) +install(TARGETS rply_convert RUNTIME DESTINATION bin) +install(TARGETS rply_dump RUNTIME DESTINATION bin) +install(TARGETS rply_sconvert RUNTIME DESTINATION bin) + + diff --git a/sources b/sources index e69de29..0a7ebb8 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +694dca3449a3f5cefd4144137dfae332 rply-1.01.tar.gz From 5c7ccd86ab8ebcd345d50a352314f93418fdbd66 Mon Sep 17 00:00:00 2001 From: mrceresa Date: Mon, 22 Mar 2010 09:15:28 +0000 Subject: [PATCH 02/46] Adds CMake configuration export commands to fix bug 575606 --- RPLYConfig.cmake.in | 8 ++++++++ import.log | 1 + rply.spec | 15 ++++++++++++++- rply_CMakeLists.txt | 7 +++++++ rply_cmake_export_cmakelists.txt | 26 ++++++++++++++++++++++++++ 5 files changed, 56 insertions(+), 1 deletion(-) create mode 100644 RPLYConfig.cmake.in create mode 100644 rply_cmake_export_cmakelists.txt diff --git a/RPLYConfig.cmake.in b/RPLYConfig.cmake.in new file mode 100644 index 0000000..aad66da --- /dev/null +++ b/RPLYConfig.cmake.in @@ -0,0 +1,8 @@ +# The RPLY library directory. +SET(RPLY_LIBRARY_DIR "@LIB_INSTALL_DIR@") +SET(RPLY_INCLUDE_DIR "@INCLUDE_INSTALL_DIR@") +SET(RPLY_LIBRARY "@RPLY_LIBRARY@") + + + + diff --git a/import.log b/import.log index 562b319..c9e5b67 100644 --- a/import.log +++ b/import.log @@ -1 +1,2 @@ rply-1_01-2_fc12:HEAD:rply-1.01-2.fc12.src.rpm:1267876689 +rply-1_01-3_fc12:HEAD:rply-1.01-3.fc12.src.rpm:1269249281 diff --git a/rply.spec b/rply.spec index e362e72..777ccb5 100644 --- a/rply.spec +++ b/rply.spec @@ -1,12 +1,14 @@ Name: rply Version: 1.01 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A library to read and write PLY files Group: Development/Libraries License: MIT URL: http://www.tecgraf.puc-rio.br/~diego/professional/rply/ Source0: http://www.tecgraf.puc-rio.br/~diego/professional/rply/rply-1.01.tar.gz Source1: rply_CMakeLists.txt +Source2: RPLYConfig.cmake.in +Source3: rply_cmake_export_cmakelists.txt Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: cmake >= 2.6.0 @@ -32,6 +34,12 @@ efficient, and well tested. The highlights are: # Add CMakeLists.txt file cp %{SOURCE1} CMakeLists.txt +# Add CMake detection modules +mkdir -p CMake/export +mkdir -p CMake/Modules +cp %{SOURCE2} CMake/Modules/ +cp %{SOURCE3} CMake/export/CMakeLists.txt + %build %cmake -DCMAKE_BUILD_TYPE:STRING="Release"\ -DCMAKE_VERBOSE_MAKEFILE=ON . @@ -73,8 +81,13 @@ Rply Library Header Files and Link Libraries %dir %{_includedir}/%{name}/ %{_includedir}/%{name}/* %{_libdir}/*.so +%dir %{_datadir}/%{name}/ +%{_datadir}/%{name}/rplyConfig.cmake %changelog +* Sun Mar 21 2010 Mario Ceresa mrceresa@gmail.com rply 1.01-3 +- Added CMake modules to detect the package + * Thu Mar 04 2010 Mario Ceresa mrceresa@gmail.com rply 1.01-2 - Fixed problems detected in https://bugzilla.redhat.com/show_bug.cgi?id=570258#c2 diff --git a/rply_CMakeLists.txt b/rply_CMakeLists.txt index fa2fcd8..a5a36d8 100644 --- a/rply_CMakeLists.txt +++ b/rply_CMakeLists.txt @@ -4,6 +4,9 @@ cmake_minimum_required(VERSION 2.6) SET(RPLY_LIB_MAJOR_VERSION 1) SET(RPLY_LIB_MINOR_VERSION 01) +SET(RPLY_CMAKE_DIR ${CMAKE_SOURCE_DIR}/CMake/ ) +SET(RPLY_LIBRARY librply.so ) + add_library(rply SHARED rply.c ) set_target_properties( rply PROPERTIES VERSION ${RPLY_LIB_MAJOR_VERSION}.${RPLY_LIB_MINOR_VERSION} @@ -27,4 +30,8 @@ install(TARGETS rply_convert RUNTIME DESTINATION bin) install(TARGETS rply_dump RUNTIME DESTINATION bin) install(TARGETS rply_sconvert RUNTIME DESTINATION bin) +#This should be the last line of the project +SUBDIRS( CMake/export ) + + diff --git a/rply_cmake_export_cmakelists.txt b/rply_cmake_export_cmakelists.txt new file mode 100644 index 0000000..896696e --- /dev/null +++ b/rply_cmake_export_cmakelists.txt @@ -0,0 +1,26 @@ +# This CMakeLists.txt file handles the creation of files needed by +# other client projects that use RPLY. Nothing is built by this +# CMakeLists.txt file. This CMakeLists.txt file must be processed by +# CMake after all the other CMakeLists.txt files in the RPLY tree, +# which is why the SUBDIRS(CMake/export) command is at the end +# of the top level CMakeLists.txt file. + +# Save the compiler settings so another project can import them. +INCLUDE(${CMAKE_ROOT}/Modules/CMakeExportBuildSettings.cmake) +SET(RPLY_BUILD_SETTINGS_FILE ${rply_BINARY_DIR}/RPLYBuildSettings.cmake) +SET(RPLY_EXPORT_BUILD_SETTINGS_FILE + ${CMAKE_INSTALL_PREFIX}/share/rply/cmake/RPLYBuildSettings.cmake +) +CMAKE_EXPORT_BUILD_SETTINGS(${RPLY_BUILD_SETTINGS_FILE}) + +# Create the VXLConfig.cmake file for the build tree. +CONFIGURE_FILE(${RPLY_CMAKE_DIR}Modules/RPLYConfig.cmake.in + ${CMAKE_BINARY_DIR}/rplyConfig.cmake @ONLY IMMEDIATE) + +INSTALL_FILES(/share/rply FILES + ${CMAKE_BINARY_DIR}/rplyConfig.cmake +# ${RPLY_BINARY_DIR}/RPLYBuildSettings.cmake +# ${RPLY_BINARY_DIR}/RPLYLibraryDepends.cmake +# ${RPLY_CMAKE_DIR}/RPLYStandardOptions.cmake +# ${RPLY_CMAKE_DIR}/UseRPLY.cmake +) From 0e3ace9c311fcd3bfd4968a5022eefa354d5bac2 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 11:35:48 +0000 Subject: [PATCH 03/46] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- import.log | 2 -- 3 files changed, 23 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 import.log diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 758cb8f..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: rply -# $Id$ -NAME := rply -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/import.log b/import.log deleted file mode 100644 index c9e5b67..0000000 --- a/import.log +++ /dev/null @@ -1,2 +0,0 @@ -rply-1_01-2_fc12:HEAD:rply-1.01-2.fc12.src.rpm:1267876689 -rply-1_01-3_fc12:HEAD:rply-1.01-3.fc12.src.rpm:1269249281 From 33f1fb6587ad0822ef591b7214172c0c57b9a1dd Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 9 Feb 2011 02:40:01 -0600 Subject: [PATCH 04/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- rply.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rply.spec b/rply.spec index 777ccb5..1193651 100644 --- a/rply.spec +++ b/rply.spec @@ -1,6 +1,6 @@ Name: rply Version: 1.01 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A library to read and write PLY files Group: Development/Libraries License: MIT @@ -85,6 +85,9 @@ Rply Library Header Files and Link Libraries %{_datadir}/%{name}/rplyConfig.cmake %changelog +* Wed Feb 09 2011 Fedora Release Engineering - 1.01-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Sun Mar 21 2010 Mario Ceresa mrceresa@gmail.com rply 1.01-3 - Added CMake modules to detect the package From 1468a62e791efa5b89d77de4dfd269b98f7ef81d Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 13 Jan 2012 20:55:53 -0600 Subject: [PATCH 05/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild --- rply.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rply.spec b/rply.spec index 1193651..cac5a49 100644 --- a/rply.spec +++ b/rply.spec @@ -1,6 +1,6 @@ Name: rply Version: 1.01 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A library to read and write PLY files Group: Development/Libraries License: MIT @@ -85,6 +85,9 @@ Rply Library Header Files and Link Libraries %{_datadir}/%{name}/rplyConfig.cmake %changelog +* Sat Jan 14 2012 Fedora Release Engineering - 1.01-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + * Wed Feb 09 2011 Fedora Release Engineering - 1.01-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild From 1a9bbd45b3153aca4b566f2a8116ce93e584baf1 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 21 Jul 2012 12:00:53 -0500 Subject: [PATCH 06/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- rply.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rply.spec b/rply.spec index cac5a49..a7d240f 100644 --- a/rply.spec +++ b/rply.spec @@ -1,6 +1,6 @@ Name: rply Version: 1.01 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A library to read and write PLY files Group: Development/Libraries License: MIT @@ -85,6 +85,9 @@ Rply Library Header Files and Link Libraries %{_datadir}/%{name}/rplyConfig.cmake %changelog +* Sat Jul 21 2012 Fedora Release Engineering - 1.01-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Sat Jan 14 2012 Fedora Release Engineering - 1.01-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild From f9bbbe8d6ce02b3fe203a6f8d0fdcdc2fb7ed6ab Mon Sep 17 00:00:00 2001 From: Richard Hughes Date: Tue, 27 Nov 2012 10:05:55 +0000 Subject: [PATCH 07/46] Update to latest upstream version. --- .gitignore | 1 + rply.spec | 13 +++++++++---- sources | 2 +- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index ed18902..d36a57f 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ rply-1.01.tar.gz +/rply-1.1.1.tar.gz diff --git a/rply.spec b/rply.spec index a7d240f..2694c71 100644 --- a/rply.spec +++ b/rply.spec @@ -1,15 +1,14 @@ Name: rply -Version: 1.01 -Release: 6%{?dist} +Version: 1.1.1 +Release: 1%{?dist} Summary: A library to read and write PLY files Group: Development/Libraries License: MIT URL: http://www.tecgraf.puc-rio.br/~diego/professional/rply/ -Source0: http://www.tecgraf.puc-rio.br/~diego/professional/rply/rply-1.01.tar.gz +Source0: http://www.tecgraf.puc-rio.br/~diego/professional/rply/%{name}-%{version}.tar.gz Source1: rply_CMakeLists.txt Source2: RPLYConfig.cmake.in Source3: rply_cmake_export_cmakelists.txt -Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: cmake >= 2.6.0 @@ -46,6 +45,8 @@ cp %{SOURCE3} CMake/export/CMakeLists.txt make %{?_smp_mflags} +iconv -f iso8859-1 -t utf-8 LICENSE > LICENSE.conv && mv -f LICENSE.conv LICENSE + %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT @@ -78,6 +79,7 @@ Rply Library Header Files and Link Libraries %files devel %defattr(-,root,root) +%doc LICENSE %dir %{_includedir}/%{name}/ %{_includedir}/%{name}/* %{_libdir}/*.so @@ -85,6 +87,9 @@ Rply Library Header Files and Link Libraries %{_datadir}/%{name}/rplyConfig.cmake %changelog +* Tue Nov 27 2012 Richard Hughes - 1.1.1-1 +- Update to latest upstream version. + * Sat Jul 21 2012 Fedora Release Engineering - 1.01-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild diff --git a/sources b/sources index 0a7ebb8..3c85b95 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -694dca3449a3f5cefd4144137dfae332 rply-1.01.tar.gz +96946d0c7b86d20612d3b57f29b5afb9 rply-1.1.1.tar.gz From 90333b3d7575544d3f84a834952776f886e71f20 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 14 Feb 2013 15:52:29 -0600 Subject: [PATCH 08/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild --- rply.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rply.spec b/rply.spec index 2694c71..12e8b28 100644 --- a/rply.spec +++ b/rply.spec @@ -1,6 +1,6 @@ Name: rply Version: 1.1.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A library to read and write PLY files Group: Development/Libraries License: MIT @@ -87,6 +87,9 @@ Rply Library Header Files and Link Libraries %{_datadir}/%{name}/rplyConfig.cmake %changelog +* Thu Feb 14 2013 Fedora Release Engineering - 1.1.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + * Tue Nov 27 2012 Richard Hughes - 1.1.1-1 - Update to latest upstream version. From 9d136a53260efa1c1cd84a686c776c7a1923194c Mon Sep 17 00:00:00 2001 From: Mario Ceresa Date: Mon, 4 Mar 2013 18:02:23 +0100 Subject: [PATCH 09/46] Updated to latest upstream version --- .gitignore | 1 + rply.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index d36a57f..1a59924 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ rply-1.01.tar.gz /rply-1.1.1.tar.gz +/rply-1.1.2.tar.gz diff --git a/rply.spec b/rply.spec index 12e8b28..aa5fca7 100644 --- a/rply.spec +++ b/rply.spec @@ -1,6 +1,6 @@ Name: rply -Version: 1.1.1 -Release: 2%{?dist} +Version: 1.1.2 +Release: 1%{?dist} Summary: A library to read and write PLY files Group: Development/Libraries License: MIT @@ -87,6 +87,9 @@ Rply Library Header Files and Link Libraries %{_datadir}/%{name}/rplyConfig.cmake %changelog +* Mon Mar 04 2013 Mario Ceresa mrceresa@gmail.com rply 1.1.2-1 +- Update to latest upsteam version + * Thu Feb 14 2013 Fedora Release Engineering - 1.1.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild diff --git a/sources b/sources index 3c85b95..7092ab6 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -96946d0c7b86d20612d3b57f29b5afb9 rply-1.1.1.tar.gz +708a308377f67824d0722203beed0013 rply-1.1.2.tar.gz From aebbb568cccc3b324a4613a8909547fbefe51c17 Mon Sep 17 00:00:00 2001 From: Richard Hughes Date: Thu, 25 Jul 2013 12:28:35 +0100 Subject: [PATCH 10/46] Do not install rplyConfig.cmake as it's not multilib clean The three varibles set in the file are not useful anyway, so just delete it rather than shipping an empty file. This fixes the critical warnings emitted from RPMdiff. --- rply.spec | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/rply.spec b/rply.spec index aa5fca7..c85cf2a 100644 --- a/rply.spec +++ b/rply.spec @@ -50,7 +50,7 @@ iconv -f iso8859-1 -t utf-8 LICENSE > LICENSE.conv && mv -f LICENSE.conv LICENSE %install rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT - +rm $RPM_BUILD_ROOT%{_datadir}/%{name}/rplyConfig.cmake %clean rm -rf $RPM_BUILD_ROOT @@ -84,7 +84,6 @@ Rply Library Header Files and Link Libraries %{_includedir}/%{name}/* %{_libdir}/*.so %dir %{_datadir}/%{name}/ -%{_datadir}/%{name}/rplyConfig.cmake %changelog * Mon Mar 04 2013 Mario Ceresa mrceresa@gmail.com rply 1.1.2-1 From a3e386bb132ac90bea7dd10cc280cab7a51a46b8 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sun, 4 Aug 2013 07:58:01 -0500 Subject: [PATCH 11/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- rply.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rply.spec b/rply.spec index c85cf2a..93e690f 100644 --- a/rply.spec +++ b/rply.spec @@ -1,6 +1,6 @@ Name: rply Version: 1.1.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A library to read and write PLY files Group: Development/Libraries License: MIT @@ -86,6 +86,9 @@ Rply Library Header Files and Link Libraries %dir %{_datadir}/%{name}/ %changelog +* Sun Aug 04 2013 Fedora Release Engineering - 1.1.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Mon Mar 04 2013 Mario Ceresa mrceresa@gmail.com rply 1.1.2-1 - Update to latest upsteam version From 9722cd4d34efa0967afff03601ea8be4f0996370 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 7 Jun 2014 21:53:32 -0500 Subject: [PATCH 12/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- rply.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rply.spec b/rply.spec index 93e690f..8641259 100644 --- a/rply.spec +++ b/rply.spec @@ -1,6 +1,6 @@ Name: rply Version: 1.1.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A library to read and write PLY files Group: Development/Libraries License: MIT @@ -86,6 +86,9 @@ Rply Library Header Files and Link Libraries %dir %{_datadir}/%{name}/ %changelog +* Sun Jun 08 2014 Fedora Release Engineering - 1.1.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Sun Aug 04 2013 Fedora Release Engineering - 1.1.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild From cb168a42db92dd06aac5d0a1ef965b0d63d048dc Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Mon, 18 Aug 2014 00:17:08 +0000 Subject: [PATCH 13/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- rply.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rply.spec b/rply.spec index 8641259..32a1189 100644 --- a/rply.spec +++ b/rply.spec @@ -1,6 +1,6 @@ Name: rply Version: 1.1.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A library to read and write PLY files Group: Development/Libraries License: MIT @@ -86,6 +86,9 @@ Rply Library Header Files and Link Libraries %dir %{_datadir}/%{name}/ %changelog +* Mon Aug 18 2014 Fedora Release Engineering - 1.1.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + * Sun Jun 08 2014 Fedora Release Engineering - 1.1.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From dade95ca426857f7f4a5cfab17a9ebc64fcc2d93 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 18 Jun 2015 22:32:04 +0000 Subject: [PATCH 14/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- rply.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rply.spec b/rply.spec index 32a1189..df1c23a 100644 --- a/rply.spec +++ b/rply.spec @@ -1,6 +1,6 @@ Name: rply Version: 1.1.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A library to read and write PLY files Group: Development/Libraries License: MIT @@ -86,6 +86,9 @@ Rply Library Header Files and Link Libraries %dir %{_datadir}/%{name}/ %changelog +* Thu Jun 18 2015 Fedora Release Engineering - 1.1.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Mon Aug 18 2014 Fedora Release Engineering - 1.1.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild From 89dd6190a785ade23ea562ea4f2922fe6ef2ea3d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 4 Feb 2016 22:17:51 +0000 Subject: [PATCH 15/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- rply.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rply.spec b/rply.spec index df1c23a..4d43285 100644 --- a/rply.spec +++ b/rply.spec @@ -1,6 +1,6 @@ Name: rply Version: 1.1.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A library to read and write PLY files Group: Development/Libraries License: MIT @@ -86,6 +86,9 @@ Rply Library Header Files and Link Libraries %dir %{_datadir}/%{name}/ %changelog +* Thu Feb 04 2016 Fedora Release Engineering - 1.1.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Thu Jun 18 2015 Fedora Release Engineering - 1.1.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From 7f14869391fcf40ee3ab49e0cfe4cc2ce09d8eee Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 11 Feb 2017 11:50:27 +0000 Subject: [PATCH 16/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- rply.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rply.spec b/rply.spec index 4d43285..4e21063 100644 --- a/rply.spec +++ b/rply.spec @@ -1,6 +1,6 @@ Name: rply Version: 1.1.2 -Release: 6%{?dist} +Release: 7%{?dist} Summary: A library to read and write PLY files Group: Development/Libraries License: MIT @@ -86,6 +86,9 @@ Rply Library Header Files and Link Libraries %dir %{_datadir}/%{name}/ %changelog +* Sat Feb 11 2017 Fedora Release Engineering - 1.1.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Thu Feb 04 2016 Fedora Release Engineering - 1.1.2-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild From e9e6038254eea2039e552c53dc375e3ad5f93d46 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 27 Jul 2017 13:16:09 +0000 Subject: [PATCH 17/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- rply.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rply.spec b/rply.spec index 4e21063..ca9d3c9 100644 --- a/rply.spec +++ b/rply.spec @@ -1,6 +1,6 @@ Name: rply Version: 1.1.2 -Release: 7%{?dist} +Release: 8%{?dist} Summary: A library to read and write PLY files Group: Development/Libraries License: MIT @@ -86,6 +86,9 @@ Rply Library Header Files and Link Libraries %dir %{_datadir}/%{name}/ %changelog +* Thu Jul 27 2017 Fedora Release Engineering - 1.1.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Sat Feb 11 2017 Fedora Release Engineering - 1.1.2-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From afeb3c00fe41bd57a27e515040d040e9eb24f1aa Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 3 Aug 2017 07:47:23 +0000 Subject: [PATCH 18/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- rply.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rply.spec b/rply.spec index ca9d3c9..e0ac6e6 100644 --- a/rply.spec +++ b/rply.spec @@ -1,6 +1,6 @@ Name: rply Version: 1.1.2 -Release: 8%{?dist} +Release: 9%{?dist} Summary: A library to read and write PLY files Group: Development/Libraries License: MIT @@ -86,6 +86,9 @@ Rply Library Header Files and Link Libraries %dir %{_datadir}/%{name}/ %changelog +* Thu Aug 03 2017 Fedora Release Engineering - 1.1.2-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + * Thu Jul 27 2017 Fedora Release Engineering - 1.1.2-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From 0c4ddce9013138f54f8521683927b52124a456ea Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 9 Feb 2018 13:18:03 +0000 Subject: [PATCH 19/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- rply.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rply.spec b/rply.spec index e0ac6e6..7841f98 100644 --- a/rply.spec +++ b/rply.spec @@ -1,6 +1,6 @@ Name: rply Version: 1.1.2 -Release: 9%{?dist} +Release: 10%{?dist} Summary: A library to read and write PLY files Group: Development/Libraries License: MIT @@ -86,6 +86,9 @@ Rply Library Header Files and Link Libraries %dir %{_datadir}/%{name}/ %changelog +* Fri Feb 09 2018 Fedora Release Engineering - 1.1.2-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Thu Aug 03 2017 Fedora Release Engineering - 1.1.2-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild From 9cf917cd4fb178f61ff2207330171e87b057d3e8 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Wed, 14 Feb 2018 08:47:39 +0100 Subject: [PATCH 20/46] Remove %clean section None of currently supported distributions need that. Last one was EL5 which is EOL for a while. Signed-off-by: Igor Gnatenko --- rply.spec | 3 --- 1 file changed, 3 deletions(-) diff --git a/rply.spec b/rply.spec index 7841f98..ac5a9dd 100644 --- a/rply.spec +++ b/rply.spec @@ -52,9 +52,6 @@ rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT rm $RPM_BUILD_ROOT%{_datadir}/%{name}/rplyConfig.cmake -%clean -rm -rf $RPM_BUILD_ROOT - %post -p /sbin/ldconfig %postun -p /sbin/ldconfig From 690011f11086f64fcbd2606132c54968a9e29e40 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 9 Jul 2018 19:06:51 +0200 Subject: [PATCH 21/46] add BuildRequires: gcc-c++,gcc Reference: https://fedoraproject.org/wiki/Changes/Remove_GCC_from_BuildRoot --- rply.spec | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rply.spec b/rply.spec index ac5a9dd..70b5448 100644 --- a/rply.spec +++ b/rply.spec @@ -10,6 +10,8 @@ Source1: rply_CMakeLists.txt Source2: RPLYConfig.cmake.in Source3: rply_cmake_export_cmakelists.txt +BuildRequires: gcc +BuildRequires: gcc-c++ BuildRequires: cmake >= 2.6.0 From 4924fa08ba4034ba6d83fe9c66a53c409f58a2b1 Mon Sep 17 00:00:00 2001 From: Jason Tibbitts Date: Tue, 10 Jul 2018 01:34:56 -0500 Subject: [PATCH 22/46] Remove needless use of %defattr --- rply.spec | 2 -- 1 file changed, 2 deletions(-) diff --git a/rply.spec b/rply.spec index 70b5448..3b04ea0 100644 --- a/rply.spec +++ b/rply.spec @@ -60,7 +60,6 @@ rm $RPM_BUILD_ROOT%{_datadir}/%{name}/rplyConfig.cmake %files -%defattr(-,root,root,-) %doc LICENSE %doc manual/* %{_libdir}/*.so.* @@ -77,7 +76,6 @@ Requires: %{name} = %{version}-%{release} Rply Library Header Files and Link Libraries %files devel -%defattr(-,root,root) %doc LICENSE %dir %{_includedir}/%{name}/ %{_includedir}/%{name}/* From 7166f06102705991b17fc048d2466af290155fc7 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 14 Jul 2018 03:43:15 +0000 Subject: [PATCH 23/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- rply.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rply.spec b/rply.spec index 3b04ea0..4c1e7cc 100644 --- a/rply.spec +++ b/rply.spec @@ -1,6 +1,6 @@ Name: rply Version: 1.1.2 -Release: 10%{?dist} +Release: 11%{?dist} Summary: A library to read and write PLY files Group: Development/Libraries License: MIT @@ -83,6 +83,9 @@ Rply Library Header Files and Link Libraries %dir %{_datadir}/%{name}/ %changelog +* Sat Jul 14 2018 Fedora Release Engineering - 1.1.2-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Fri Feb 09 2018 Fedora Release Engineering - 1.1.2-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From edb0d45f9b99bec4f505d76f891adb638cdf6209 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Tue, 22 Jan 2019 18:40:52 +0100 Subject: [PATCH 24/46] Remove obsolete ldconfig scriptlets References: https://fedoraproject.org/wiki/Changes/RemoveObsoleteScriptlets Signed-off-by: Igor Gnatenko --- rply.spec | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/rply.spec b/rply.spec index 4c1e7cc..c66022a 100644 --- a/rply.spec +++ b/rply.spec @@ -54,9 +54,7 @@ rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT rm $RPM_BUILD_ROOT%{_datadir}/%{name}/rplyConfig.cmake -%post -p /sbin/ldconfig - -%postun -p /sbin/ldconfig +%ldconfig_scriptlets %files From e5cc3365edcb2ace26d7feb99da26cbc20eec468 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 28 Jan 2019 20:18:21 +0100 Subject: [PATCH 25/46] Remove obsolete Group tag References: https://fedoraproject.org/wiki/Changes/Remove_Group_Tag --- rply.spec | 2 -- 1 file changed, 2 deletions(-) diff --git a/rply.spec b/rply.spec index c66022a..8d8fd58 100644 --- a/rply.spec +++ b/rply.spec @@ -2,7 +2,6 @@ Name: rply Version: 1.1.2 Release: 11%{?dist} Summary: A library to read and write PLY files -Group: Development/Libraries License: MIT URL: http://www.tecgraf.puc-rio.br/~diego/professional/rply/ Source0: http://www.tecgraf.puc-rio.br/~diego/professional/rply/%{name}-%{version}.tar.gz @@ -66,7 +65,6 @@ rm $RPM_BUILD_ROOT%{_datadir}/%{name}/rplyConfig.cmake %package devel Summary: Libraries and headers for rply -Group: Development/Libraries Requires: %{name} = %{version}-%{release} %description devel From 30515377ca393ea7268d6ba8bc7967500cda7c89 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 2 Feb 2019 11:34:31 +0000 Subject: [PATCH 26/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- rply.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rply.spec b/rply.spec index 8d8fd58..3622ab8 100644 --- a/rply.spec +++ b/rply.spec @@ -1,6 +1,6 @@ Name: rply Version: 1.1.2 -Release: 11%{?dist} +Release: 12%{?dist} Summary: A library to read and write PLY files License: MIT URL: http://www.tecgraf.puc-rio.br/~diego/professional/rply/ @@ -79,6 +79,9 @@ Rply Library Header Files and Link Libraries %dir %{_datadir}/%{name}/ %changelog +* Sat Feb 02 2019 Fedora Release Engineering - 1.1.2-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Sat Jul 14 2018 Fedora Release Engineering - 1.1.2-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From a8b431c72334cfff01ad7496548ede3f7451e40c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 26 Jul 2019 18:45:24 +0000 Subject: [PATCH 27/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- rply.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rply.spec b/rply.spec index 3622ab8..af40415 100644 --- a/rply.spec +++ b/rply.spec @@ -1,6 +1,6 @@ Name: rply Version: 1.1.2 -Release: 12%{?dist} +Release: 13%{?dist} Summary: A library to read and write PLY files License: MIT URL: http://www.tecgraf.puc-rio.br/~diego/professional/rply/ @@ -79,6 +79,9 @@ Rply Library Header Files and Link Libraries %dir %{_datadir}/%{name}/ %changelog +* Fri Jul 26 2019 Fedora Release Engineering - 1.1.2-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Sat Feb 02 2019 Fedora Release Engineering - 1.1.2-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From 27fb3c854380e831b909d8c51ae0801479241abe Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 30 Jan 2020 17:51:19 +0000 Subject: [PATCH 28/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- rply.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rply.spec b/rply.spec index af40415..6b1c462 100644 --- a/rply.spec +++ b/rply.spec @@ -1,6 +1,6 @@ Name: rply Version: 1.1.2 -Release: 13%{?dist} +Release: 14%{?dist} Summary: A library to read and write PLY files License: MIT URL: http://www.tecgraf.puc-rio.br/~diego/professional/rply/ @@ -79,6 +79,9 @@ Rply Library Header Files and Link Libraries %dir %{_datadir}/%{name}/ %changelog +* Thu Jan 30 2020 Fedora Release Engineering - 1.1.2-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Fri Jul 26 2019 Fedora Release Engineering - 1.1.2-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From 85309a30df3b03c3645315081faa4d1d77349b15 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jul 2020 05:54:47 +0000 Subject: [PATCH 29/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- rply.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rply.spec b/rply.spec index 6b1c462..85e4443 100644 --- a/rply.spec +++ b/rply.spec @@ -1,6 +1,6 @@ Name: rply Version: 1.1.2 -Release: 14%{?dist} +Release: 15%{?dist} Summary: A library to read and write PLY files License: MIT URL: http://www.tecgraf.puc-rio.br/~diego/professional/rply/ @@ -79,6 +79,9 @@ Rply Library Header Files and Link Libraries %dir %{_datadir}/%{name}/ %changelog +* Wed Jul 29 2020 Fedora Release Engineering - 1.1.2-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Thu Jan 30 2020 Fedora Release Engineering - 1.1.2-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From 074b8b3a16c9b2763efa8ab8d9d19d2211e39948 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 1 Aug 2020 07:56:24 +0000 Subject: [PATCH 30/46] - Second attempt - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- rply.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/rply.spec b/rply.spec index 85e4443..f5b67d2 100644 --- a/rply.spec +++ b/rply.spec @@ -1,6 +1,6 @@ Name: rply Version: 1.1.2 -Release: 15%{?dist} +Release: 16%{?dist} Summary: A library to read and write PLY files License: MIT URL: http://www.tecgraf.puc-rio.br/~diego/professional/rply/ @@ -79,6 +79,10 @@ Rply Library Header Files and Link Libraries %dir %{_datadir}/%{name}/ %changelog +* Sat Aug 01 2020 Fedora Release Engineering - 1.1.2-16 +- Second attempt - Rebuilt for + https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Wed Jul 29 2020 Fedora Release Engineering - 1.1.2-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From 61e6e619683187b3eaec74687764f31743d9371c Mon Sep 17 00:00:00 2001 From: Than Ngo Date: Tue, 1 Sep 2020 14:09:31 +0200 Subject: [PATCH 31/46] Fixed FTBFS --- rply.spec | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/rply.spec b/rply.spec index f5b67d2..0c98e4b 100644 --- a/rply.spec +++ b/rply.spec @@ -1,6 +1,6 @@ Name: rply Version: 1.1.2 -Release: 16%{?dist} +Release: 17%{?dist} Summary: A library to read and write PLY files License: MIT URL: http://www.tecgraf.puc-rio.br/~diego/professional/rply/ @@ -41,16 +41,16 @@ cp %{SOURCE2} CMake/Modules/ cp %{SOURCE3} CMake/export/CMakeLists.txt %build -%cmake -DCMAKE_BUILD_TYPE:STRING="Release"\ - -DCMAKE_VERBOSE_MAKEFILE=ON . +%cmake -DCMAKE_BUILD_TYPE:STRING="Release" \ + -DCMAKE_VERBOSE_MAKEFILE=ON -make %{?_smp_mflags} +%cmake_build iconv -f iso8859-1 -t utf-8 LICENSE > LICENSE.conv && mv -f LICENSE.conv LICENSE %install -rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT +%cmake_install + rm $RPM_BUILD_ROOT%{_datadir}/%{name}/rplyConfig.cmake %ldconfig_scriptlets @@ -79,6 +79,9 @@ Rply Library Header Files and Link Libraries %dir %{_datadir}/%{name}/ %changelog +* Tue Sep 01 2020 Than Ngo - 1.1.2-17 +- Fixed FTBFS + * Sat Aug 01 2020 Fedora Release Engineering - 1.1.2-16 - Second attempt - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From e13a6cc18b303df6a99645658b802f6894ede5c4 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 27 Jan 2021 15:26:41 +0000 Subject: [PATCH 32/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- rply.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rply.spec b/rply.spec index 0c98e4b..05a8ea1 100644 --- a/rply.spec +++ b/rply.spec @@ -1,6 +1,6 @@ Name: rply Version: 1.1.2 -Release: 17%{?dist} +Release: 18%{?dist} Summary: A library to read and write PLY files License: MIT URL: http://www.tecgraf.puc-rio.br/~diego/professional/rply/ @@ -79,6 +79,9 @@ Rply Library Header Files and Link Libraries %dir %{_datadir}/%{name}/ %changelog +* Wed Jan 27 2021 Fedora Release Engineering - 1.1.2-18 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Tue Sep 01 2020 Than Ngo - 1.1.2-17 - Fixed FTBFS From babff7eb04a1196ded0d2536a172e936bbe7de9a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 23 Jul 2021 11:35:21 +0000 Subject: [PATCH 33/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- rply.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rply.spec b/rply.spec index 05a8ea1..e8042c7 100644 --- a/rply.spec +++ b/rply.spec @@ -1,6 +1,6 @@ Name: rply Version: 1.1.2 -Release: 18%{?dist} +Release: 19%{?dist} Summary: A library to read and write PLY files License: MIT URL: http://www.tecgraf.puc-rio.br/~diego/professional/rply/ @@ -79,6 +79,9 @@ Rply Library Header Files and Link Libraries %dir %{_datadir}/%{name}/ %changelog +* Fri Jul 23 2021 Fedora Release Engineering - 1.1.2-19 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Wed Jan 27 2021 Fedora Release Engineering - 1.1.2-18 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From 71c0ec096ca8ecda7cc7b5b7a7c64f95acd2cca6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 21 Jan 2022 18:01:17 +0000 Subject: [PATCH 34/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- rply.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rply.spec b/rply.spec index e8042c7..d7b62e6 100644 --- a/rply.spec +++ b/rply.spec @@ -1,6 +1,6 @@ Name: rply Version: 1.1.2 -Release: 19%{?dist} +Release: 20%{?dist} Summary: A library to read and write PLY files License: MIT URL: http://www.tecgraf.puc-rio.br/~diego/professional/rply/ @@ -79,6 +79,9 @@ Rply Library Header Files and Link Libraries %dir %{_datadir}/%{name}/ %changelog +* Fri Jan 21 2022 Fedora Release Engineering - 1.1.2-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Fri Jul 23 2021 Fedora Release Engineering - 1.1.2-19 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From e9c154a50fca37c8d450a096902676d895b93468 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 23 Jul 2022 01:01:08 +0000 Subject: [PATCH 35/46] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- rply.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rply.spec b/rply.spec index d7b62e6..2ccc1b0 100644 --- a/rply.spec +++ b/rply.spec @@ -1,6 +1,6 @@ Name: rply Version: 1.1.2 -Release: 20%{?dist} +Release: 21%{?dist} Summary: A library to read and write PLY files License: MIT URL: http://www.tecgraf.puc-rio.br/~diego/professional/rply/ @@ -79,6 +79,9 @@ Rply Library Header Files and Link Libraries %dir %{_datadir}/%{name}/ %changelog +* Sat Jul 23 2022 Fedora Release Engineering - 1.1.2-21 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Fri Jan 21 2022 Fedora Release Engineering - 1.1.2-20 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From 68e0d50b909d6f610085a25c7d06bcc4c55a5122 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 20 Jan 2023 19:56:33 +0000 Subject: [PATCH 36/46] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- rply.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rply.spec b/rply.spec index 2ccc1b0..eb5943c 100644 --- a/rply.spec +++ b/rply.spec @@ -1,6 +1,6 @@ Name: rply Version: 1.1.2 -Release: 21%{?dist} +Release: 22%{?dist} Summary: A library to read and write PLY files License: MIT URL: http://www.tecgraf.puc-rio.br/~diego/professional/rply/ @@ -79,6 +79,9 @@ Rply Library Header Files and Link Libraries %dir %{_datadir}/%{name}/ %changelog +* Fri Jan 20 2023 Fedora Release Engineering - 1.1.2-22 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Sat Jul 23 2022 Fedora Release Engineering - 1.1.2-21 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild From 8374e45f06f48f23cf6254759e272f5e6fff8d8f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 21 Jul 2023 17:04:12 +0000 Subject: [PATCH 37/46] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- rply.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rply.spec b/rply.spec index eb5943c..f6a2c71 100644 --- a/rply.spec +++ b/rply.spec @@ -1,6 +1,6 @@ Name: rply Version: 1.1.2 -Release: 22%{?dist} +Release: 23%{?dist} Summary: A library to read and write PLY files License: MIT URL: http://www.tecgraf.puc-rio.br/~diego/professional/rply/ @@ -79,6 +79,9 @@ Rply Library Header Files and Link Libraries %dir %{_datadir}/%{name}/ %changelog +* Fri Jul 21 2023 Fedora Release Engineering - 1.1.2-23 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Fri Jan 20 2023 Fedora Release Engineering - 1.1.2-22 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From 4acf50f74f98e8c411fd6a7e9881c0b6f6011039 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Mon, 22 Jan 2024 11:57:56 +0000 Subject: [PATCH 38/46] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- rply.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rply.spec b/rply.spec index f6a2c71..35c476f 100644 --- a/rply.spec +++ b/rply.spec @@ -1,6 +1,6 @@ Name: rply Version: 1.1.2 -Release: 23%{?dist} +Release: 24%{?dist} Summary: A library to read and write PLY files License: MIT URL: http://www.tecgraf.puc-rio.br/~diego/professional/rply/ @@ -79,6 +79,9 @@ Rply Library Header Files and Link Libraries %dir %{_datadir}/%{name}/ %changelog +* Mon Jan 22 2024 Fedora Release Engineering - 1.1.2-24 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Fri Jul 21 2023 Fedora Release Engineering - 1.1.2-23 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild From 615c712c1fa59ea667456a09b499ee8eed2ecad0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 26 Jan 2024 16:20:11 +0000 Subject: [PATCH 39/46] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- rply.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rply.spec b/rply.spec index 35c476f..03def28 100644 --- a/rply.spec +++ b/rply.spec @@ -1,6 +1,6 @@ Name: rply Version: 1.1.2 -Release: 24%{?dist} +Release: 25%{?dist} Summary: A library to read and write PLY files License: MIT URL: http://www.tecgraf.puc-rio.br/~diego/professional/rply/ @@ -79,6 +79,9 @@ Rply Library Header Files and Link Libraries %dir %{_datadir}/%{name}/ %changelog +* Fri Jan 26 2024 Fedora Release Engineering - 1.1.2-25 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Mon Jan 22 2024 Fedora Release Engineering - 1.1.2-24 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From f6b51202d67a9e274ad3a250424a00bb9fc10416 Mon Sep 17 00:00:00 2001 From: Peter Lemenkov Date: Thu, 6 Jun 2024 20:35:40 +0200 Subject: [PATCH 40/46] Convert to %autorelease and %autochangelog [skip changelog] --- changelog | 99 ++++++++++++++++++++++++++++++++++++++++++++++++++++ rply.spec | 102 ++---------------------------------------------------- 2 files changed, 101 insertions(+), 100 deletions(-) create mode 100644 changelog diff --git a/changelog b/changelog new file mode 100644 index 0000000..664b9a8 --- /dev/null +++ b/changelog @@ -0,0 +1,99 @@ +* Fri Jan 26 2024 Fedora Release Engineering - 1.1.2-25 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Mon Jan 22 2024 Fedora Release Engineering - 1.1.2-24 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Fri Jul 21 2023 Fedora Release Engineering - 1.1.2-23 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Fri Jan 20 2023 Fedora Release Engineering - 1.1.2-22 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + +* Sat Jul 23 2022 Fedora Release Engineering - 1.1.2-21 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Fri Jan 21 2022 Fedora Release Engineering - 1.1.2-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Fri Jul 23 2021 Fedora Release Engineering - 1.1.2-19 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Wed Jan 27 2021 Fedora Release Engineering - 1.1.2-18 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Tue Sep 01 2020 Than Ngo - 1.1.2-17 +- Fixed FTBFS + +* Sat Aug 01 2020 Fedora Release Engineering - 1.1.2-16 +- Second attempt - Rebuilt for + https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Wed Jul 29 2020 Fedora Release Engineering - 1.1.2-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Thu Jan 30 2020 Fedora Release Engineering - 1.1.2-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Fri Jul 26 2019 Fedora Release Engineering - 1.1.2-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Sat Feb 02 2019 Fedora Release Engineering - 1.1.2-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Sat Jul 14 2018 Fedora Release Engineering - 1.1.2-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Fri Feb 09 2018 Fedora Release Engineering - 1.1.2-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Thu Aug 03 2017 Fedora Release Engineering - 1.1.2-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Thu Jul 27 2017 Fedora Release Engineering - 1.1.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Sat Feb 11 2017 Fedora Release Engineering - 1.1.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Thu Feb 04 2016 Fedora Release Engineering - 1.1.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Thu Jun 18 2015 Fedora Release Engineering - 1.1.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Mon Aug 18 2014 Fedora Release Engineering - 1.1.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Sun Jun 08 2014 Fedora Release Engineering - 1.1.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Sun Aug 04 2013 Fedora Release Engineering - 1.1.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Mon Mar 04 2013 Mario Ceresa mrceresa@gmail.com rply 1.1.2-1 +- Update to latest upsteam version + +* Thu Feb 14 2013 Fedora Release Engineering - 1.1.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Tue Nov 27 2012 Richard Hughes - 1.1.1-1 +- Update to latest upstream version. + +* Sat Jul 21 2012 Fedora Release Engineering - 1.01-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Sat Jan 14 2012 Fedora Release Engineering - 1.01-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Wed Feb 09 2011 Fedora Release Engineering - 1.01-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Sun Mar 21 2010 Mario Ceresa mrceresa@gmail.com rply 1.01-3 +- Added CMake modules to detect the package + +* Thu Mar 04 2010 Mario Ceresa mrceresa@gmail.com rply 1.01-2 +- Fixed problems detected in https://bugzilla.redhat.com/show_bug.cgi?id=570258#c2 + +* Wed Mar 03 2010 Mario Ceresa mrceresa@gmail.com rply 1.01-1 +- Initial RPM Release diff --git a/rply.spec b/rply.spec index 03def28..373d3c7 100644 --- a/rply.spec +++ b/rply.spec @@ -1,6 +1,6 @@ Name: rply Version: 1.1.2 -Release: 25%{?dist} +Release: %autorelease Summary: A library to read and write PLY files License: MIT URL: http://www.tecgraf.puc-rio.br/~diego/professional/rply/ @@ -79,102 +79,4 @@ Rply Library Header Files and Link Libraries %dir %{_datadir}/%{name}/ %changelog -* Fri Jan 26 2024 Fedora Release Engineering - 1.1.2-25 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild - -* Mon Jan 22 2024 Fedora Release Engineering - 1.1.2-24 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild - -* Fri Jul 21 2023 Fedora Release Engineering - 1.1.2-23 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild - -* Fri Jan 20 2023 Fedora Release Engineering - 1.1.2-22 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild - -* Sat Jul 23 2022 Fedora Release Engineering - 1.1.2-21 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild - -* Fri Jan 21 2022 Fedora Release Engineering - 1.1.2-20 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild - -* Fri Jul 23 2021 Fedora Release Engineering - 1.1.2-19 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild - -* Wed Jan 27 2021 Fedora Release Engineering - 1.1.2-18 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild - -* Tue Sep 01 2020 Than Ngo - 1.1.2-17 -- Fixed FTBFS - -* Sat Aug 01 2020 Fedora Release Engineering - 1.1.2-16 -- Second attempt - Rebuilt for - https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Wed Jul 29 2020 Fedora Release Engineering - 1.1.2-15 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Thu Jan 30 2020 Fedora Release Engineering - 1.1.2-14 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild - -* Fri Jul 26 2019 Fedora Release Engineering - 1.1.2-13 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild - -* Sat Feb 02 2019 Fedora Release Engineering - 1.1.2-12 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Sat Jul 14 2018 Fedora Release Engineering - 1.1.2-11 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - -* Fri Feb 09 2018 Fedora Release Engineering - 1.1.2-10 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild - -* Thu Aug 03 2017 Fedora Release Engineering - 1.1.2-9 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild - -* Thu Jul 27 2017 Fedora Release Engineering - 1.1.2-8 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - -* Sat Feb 11 2017 Fedora Release Engineering - 1.1.2-7 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - -* Thu Feb 04 2016 Fedora Release Engineering - 1.1.2-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild - -* Thu Jun 18 2015 Fedora Release Engineering - 1.1.2-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild - -* Mon Aug 18 2014 Fedora Release Engineering - 1.1.2-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild - -* Sun Jun 08 2014 Fedora Release Engineering - 1.1.2-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Sun Aug 04 2013 Fedora Release Engineering - 1.1.2-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild - -* Mon Mar 04 2013 Mario Ceresa mrceresa@gmail.com rply 1.1.2-1 -- Update to latest upsteam version - -* Thu Feb 14 2013 Fedora Release Engineering - 1.1.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild - -* Tue Nov 27 2012 Richard Hughes - 1.1.1-1 -- Update to latest upstream version. - -* Sat Jul 21 2012 Fedora Release Engineering - 1.01-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild - -* Sat Jan 14 2012 Fedora Release Engineering - 1.01-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild - -* Wed Feb 09 2011 Fedora Release Engineering - 1.01-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - -* Sun Mar 21 2010 Mario Ceresa mrceresa@gmail.com rply 1.01-3 -- Added CMake modules to detect the package - -* Thu Mar 04 2010 Mario Ceresa mrceresa@gmail.com rply 1.01-2 -- Fixed problems detected in https://bugzilla.redhat.com/show_bug.cgi?id=570258#c2 - -* Wed Mar 03 2010 Mario Ceresa mrceresa@gmail.com rply 1.01-1 -- Initial RPM Release +%autochangelog From 4c05d02805cca14d2827b8a7524dba7a3a659038 Mon Sep 17 00:00:00 2001 From: Peter Lemenkov Date: Thu, 6 Jun 2024 21:20:47 +0200 Subject: [PATCH 41/46] rply ver. 1.1.4 Signed-off-by: Peter Lemenkov --- .gitignore | 1 + rply.spec | 17 +++++++---------- sources | 2 +- 3 files changed, 9 insertions(+), 11 deletions(-) diff --git a/.gitignore b/.gitignore index 1a59924..1deec5b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ rply-1.01.tar.gz /rply-1.1.1.tar.gz /rply-1.1.2.tar.gz +/rply-1.1.4.tar.gz diff --git a/rply.spec b/rply.spec index 373d3c7..e49fc68 100644 --- a/rply.spec +++ b/rply.spec @@ -1,17 +1,16 @@ Name: rply -Version: 1.1.2 +Version: 1.1.4 Release: %autorelease Summary: A library to read and write PLY files License: MIT -URL: http://www.tecgraf.puc-rio.br/~diego/professional/rply/ -Source0: http://www.tecgraf.puc-rio.br/~diego/professional/rply/%{name}-%{version}.tar.gz +URL: https://www.tecgraf.puc-rio.br/~diego/professional/rply/ +Source0: https://www.tecgraf.puc-rio.br/~diego/professional/rply/%{name}-%{version}.tar.gz Source1: rply_CMakeLists.txt Source2: RPLYConfig.cmake.in Source3: rply_cmake_export_cmakelists.txt - +BuildRequires: cmake >= 2.6.0 BuildRequires: gcc BuildRequires: gcc-c++ -BuildRequires: cmake >= 2.6.0 %description @@ -19,17 +18,17 @@ RPly is a library that lets applications read and write PLY files. The PLY file format is widely used to store geometric information, such as 3D models, but is general enough to be useful for other purposes. -RPly is easy to use, well documented, small, free, open-source, ANSI C, +RPly is easy to use, well documented, small, free, open-source, ANSI C, efficient, and well tested. The highlights are: * A callback mechanism that makes PLY file input straightforward; * Support for the full range of numeric formats; * Binary (big and little endian) and text modes are fully supported; * Input and output are buffered for efficiency; -* Available under the MIT license for added freedom. +* Available under the MIT license for added freedom. %prep -%setup -q +%autosetup -p1 # Add CMakeLists.txt file cp %{SOURCE1} CMakeLists.txt @@ -53,8 +52,6 @@ iconv -f iso8859-1 -t utf-8 LICENSE > LICENSE.conv && mv -f LICENSE.conv LICENSE rm $RPM_BUILD_ROOT%{_datadir}/%{name}/rplyConfig.cmake -%ldconfig_scriptlets - %files %doc LICENSE diff --git a/sources b/sources index 7092ab6..3503fbb 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -708a308377f67824d0722203beed0013 rply-1.1.2.tar.gz +SHA512 (rply-1.1.4.tar.gz) = be389780b8ca74658433f271682d91e89709ced588c4012c152ccf4014557692a1afd37b1bd5e567cedf9c412d42721eb0412ff3331f38717e527bd5d29c27a7 From f83e6bae9e2e2f00c127b5d03baee1793778f1a0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 19 Jul 2024 18:48:05 +0000 Subject: [PATCH 42/46] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From 363d1dc3c37485d90f08a27e121682d613809d2f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 18 Jan 2025 22:41:29 +0000 Subject: [PATCH 43/46] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild From 4da6f1eba13c0265f65c4c22171f15a7bb42509a Mon Sep 17 00:00:00 2001 From: Peter Lemenkov Date: Fri, 18 Jul 2025 19:46:24 +0200 Subject: [PATCH 44/46] cosmetic changes Signed-off-by: Peter Lemenkov --- .gitignore | 5 +---- rply.spec | 22 +++++++++------------- rply_CMakeLists.txt | 2 +- rply_cmake_export_cmakelists.txt | 4 ++-- 4 files changed, 13 insertions(+), 20 deletions(-) diff --git a/.gitignore b/.gitignore index 1deec5b..a7aff32 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1 @@ -rply-1.01.tar.gz -/rply-1.1.1.tar.gz -/rply-1.1.2.tar.gz -/rply-1.1.4.tar.gz +/rply-*.tar.gz diff --git a/rply.spec b/rply.spec index e49fc68..3ab52e9 100644 --- a/rply.spec +++ b/rply.spec @@ -12,7 +12,6 @@ BuildRequires: cmake >= 2.6.0 BuildRequires: gcc BuildRequires: gcc-c++ - %description RPly is a library that lets applications read and write PLY files. The PLY file format is widely used to store geometric information, such as 3D @@ -27,6 +26,13 @@ efficient, and well tested. The highlights are: * Input and output are buffered for efficiency; * Available under the MIT license for added freedom. +%package devel +Summary: Libraries and headers for rply +Requires: %{name}%{?_isa} = %{version}-%{release} + +%description devel +Rply Library Header Files and Link Libraries + %prep %autosetup -p1 @@ -52,24 +58,14 @@ iconv -f iso8859-1 -t utf-8 LICENSE > LICENSE.conv && mv -f LICENSE.conv LICENSE rm $RPM_BUILD_ROOT%{_datadir}/%{name}/rplyConfig.cmake - %files -%doc LICENSE +%license LICENSE %doc manual/* %{_libdir}/*.so.* %{_bindir}/* - -%package devel -Summary: Libraries and headers for rply -Requires: %{name} = %{version}-%{release} - -%description devel - -Rply Library Header Files and Link Libraries - %files devel -%doc LICENSE +%license LICENSE %dir %{_includedir}/%{name}/ %{_includedir}/%{name}/* %{_libdir}/*.so diff --git a/rply_CMakeLists.txt b/rply_CMakeLists.txt index a5a36d8..b4086e6 100644 --- a/rply_CMakeLists.txt +++ b/rply_CMakeLists.txt @@ -11,7 +11,7 @@ add_library(rply SHARED rply.c ) set_target_properties( rply PROPERTIES VERSION ${RPLY_LIB_MAJOR_VERSION}.${RPLY_LIB_MINOR_VERSION} SOVERSION ${RPLY_LIB_MAJOR_VERSION} - ) + ) include_directories( ${CMAKE_SOURCE_DIR} ) add_executable(rply_convert etc/convert.c ) diff --git a/rply_cmake_export_cmakelists.txt b/rply_cmake_export_cmakelists.txt index 896696e..1ac475f 100644 --- a/rply_cmake_export_cmakelists.txt +++ b/rply_cmake_export_cmakelists.txt @@ -8,7 +8,7 @@ # Save the compiler settings so another project can import them. INCLUDE(${CMAKE_ROOT}/Modules/CMakeExportBuildSettings.cmake) SET(RPLY_BUILD_SETTINGS_FILE ${rply_BINARY_DIR}/RPLYBuildSettings.cmake) -SET(RPLY_EXPORT_BUILD_SETTINGS_FILE +SET(RPLY_EXPORT_BUILD_SETTINGS_FILE ${CMAKE_INSTALL_PREFIX}/share/rply/cmake/RPLYBuildSettings.cmake ) CMAKE_EXPORT_BUILD_SETTINGS(${RPLY_BUILD_SETTINGS_FILE}) @@ -17,7 +17,7 @@ CMAKE_EXPORT_BUILD_SETTINGS(${RPLY_BUILD_SETTINGS_FILE}) CONFIGURE_FILE(${RPLY_CMAKE_DIR}Modules/RPLYConfig.cmake.in ${CMAKE_BINARY_DIR}/rplyConfig.cmake @ONLY IMMEDIATE) -INSTALL_FILES(/share/rply FILES +INSTALL_FILES(/share/rply FILES ${CMAKE_BINARY_DIR}/rplyConfig.cmake # ${RPLY_BINARY_DIR}/RPLYBuildSettings.cmake # ${RPLY_BINARY_DIR}/RPLYLibraryDepends.cmake From 9b9c5c6b7b2772eeaf6e1f124c8c18d287d2fecb Mon Sep 17 00:00:00 2001 From: Peter Lemenkov Date: Fri, 18 Jul 2025 19:59:28 +0200 Subject: [PATCH 45/46] Use standard CMake macros Signed-off-by: Peter Lemenkov --- RPLYConfig.cmake.in | 4 ++-- rply_CMakeLists.txt | 7 +++---- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/RPLYConfig.cmake.in b/RPLYConfig.cmake.in index aad66da..5c4ec64 100644 --- a/RPLYConfig.cmake.in +++ b/RPLYConfig.cmake.in @@ -1,6 +1,6 @@ # The RPLY library directory. -SET(RPLY_LIBRARY_DIR "@LIB_INSTALL_DIR@") -SET(RPLY_INCLUDE_DIR "@INCLUDE_INSTALL_DIR@") +SET(RPLY_LIBRARY_DIR "@CMAKE_INSTALL_LIBDIR@") +SET(RPLY_INCLUDE_DIR "@CMAKE_INSTALL_INCLUDEDIR@") SET(RPLY_LIBRARY "@RPLY_LIBRARY@") diff --git a/rply_CMakeLists.txt b/rply_CMakeLists.txt index b4086e6..d6d177b 100644 --- a/rply_CMakeLists.txt +++ b/rply_CMakeLists.txt @@ -1,6 +1,8 @@ PROJECT(rply) cmake_minimum_required(VERSION 2.6) +include(GNUInstallDirs) + SET(RPLY_LIB_MAJOR_VERSION 1) SET(RPLY_LIB_MINOR_VERSION 01) @@ -25,13 +27,10 @@ target_link_libraries (rply_sconvert rply) install(FILES rply.h DESTINATION include/rply) # Installs the target file -install(TARGETS rply LIBRARY DESTINATION lib${LIB_SUFFIX}) +install(TARGETS rply LIBRARY DESTINATION ${LIBDIR}) install(TARGETS rply_convert RUNTIME DESTINATION bin) install(TARGETS rply_dump RUNTIME DESTINATION bin) install(TARGETS rply_sconvert RUNTIME DESTINATION bin) #This should be the last line of the project SUBDIRS( CMake/export ) - - - From 1ad1f090692d61aa4a645df523019f9bd703ce70 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 25 Jul 2025 12:06:07 +0000 Subject: [PATCH 46/46] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild