From 1fafca1dd82b03c3019f589e2d2374595b7054f8 Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Tue, 7 May 2019 07:43:52 -0400 Subject: [PATCH] import gflags-2.1.2-6.el8 --- .gflags.metadata | 1 + .gitignore | 1 + ...property-of-library-targets-to-major.patch | 18 ++ SPECS/gflags.spec | 178 ++++++++++++++++++ 4 files changed, 198 insertions(+) create mode 100644 .gflags.metadata create mode 100644 .gitignore create mode 100644 SOURCES/gflags-0001-Set-VERSION-property-of-library-targets-to-major.patch create mode 100644 SPECS/gflags.spec diff --git a/.gflags.metadata b/.gflags.metadata new file mode 100644 index 0000000..7458cd9 --- /dev/null +++ b/.gflags.metadata @@ -0,0 +1 @@ +8bdbade9d041339dc14b4ab426e2354a5af38478 SOURCES/gflags-2.1.2.tar.gz diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bf1e683 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/gflags-2.1.2.tar.gz diff --git a/SOURCES/gflags-0001-Set-VERSION-property-of-library-targets-to-major.patch b/SOURCES/gflags-0001-Set-VERSION-property-of-library-targets-to-major.patch new file mode 100644 index 0000000..5f72183 --- /dev/null +++ b/SOURCES/gflags-0001-Set-VERSION-property-of-library-targets-to-major.patch @@ -0,0 +1,18 @@ +From: Andreas Schuh +Date: Thu, 1 May 2014 20:16:16 +0100 +Subject: [PATCH] Set VERSION property of library targets to .. + + +diff --git a/CMakeLists.txt b/CMakeLists.txt +index 54b5c35..756ddba 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -34,7 +34,7 @@ version_numbers ( + PACKAGE_VERSION_PATCH + ) + +-set (PACKAGE_SOVERSION "${PACKAGE_VERSION_MAJOR}") ++set (PACKAGE_SOVERSION "${PACKAGE_VERSION_MAJOR}.${PACKAGE_VERSION_MINOR}") + + # ---------------------------------------------------------------------------- + # options diff --git a/SPECS/gflags.spec b/SPECS/gflags.spec new file mode 100644 index 0000000..6445c18 --- /dev/null +++ b/SPECS/gflags.spec @@ -0,0 +1,178 @@ +Name: gflags +Version: 2.1.2 +Release: 6%{?dist} +Summary: Library for commandline flag processing + +Group: Development/Tools +License: BSD +URL: https://gflags.github.io/gflags/ +Source0: https://github.com/%{name}/%{name}/archive/v%{version}/%{name}-%{version}.tar.gz +Patch1: gflags-0001-Set-VERSION-property-of-library-targets-to-major.patch +BuildRequires: python-setuptools +BuildRequires: cmake + +%description +The gflags package contains a library that implements commandline +flags processing. As such it's a replacement for getopt(). It has +increased flexibility, including built-in support for C++ types like +string, and the ability to define flags in the source file in which +they're used. + +%package devel +Summary: Development files for %{name} +Group: Development/Libraries + +Requires: %{name}%{?_isa} = %{version}-%{release} + +%description devel +This package contains development files for %{name}. + +%prep +%setup -q +%patch1 -p1 -b .lib_version + +%build +%cmake -DBUILD_TESTING:BOOL=ON . +make %{?_smp_mflags} + +%install +make install DESTDIR=%{buildroot} INSTALL="install -p" + +%check +ctest + +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + +%files +%license COPYING.txt +%doc AUTHORS.txt ChangeLog.txt README.md +%{_bindir}/gflags_completions.sh +%{_libdir}/libgflags.so.* +%{_libdir}/libgflags_nothreads.so.* + +%files devel +%doc doc/designstyle.css doc/index.html +%dir %{_includedir}/%{name} +%{_includedir}/%{name}/*.h +%{_libdir}/libgflags.so +%{_libdir}/libgflags_nothreads.so +%{_libdir}/cmake/%{name} + +%changelog +* Wed Feb 07 2018 Fedora Release Engineering - 2.1.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Mon Aug 07 2017 Björn Esser - 2.1.2-5 +- Rebuilt for AutoReq cmake-filesystem + +* Wed Aug 02 2017 Fedora Release Engineering - 2.1.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Wed Jul 26 2017 Fedora Release Engineering - 2.1.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Fri Feb 10 2017 Fedora Release Engineering - 2.1.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Sat Feb 27 2016 Evan Klitzke - 2.1.2-1 +- Upgrade to the latest upstream release, 2.1.2 + +* Wed Feb 03 2016 Fedora Release Engineering - 2.1.1-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Wed Jun 17 2015 Fedora Release Engineering - 2.1.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Sat May 02 2015 Kalev Lember - 2.1.1-7 +- Rebuilt for GCC 5 C++11 ABI change + +* Sat Aug 16 2014 Fedora Release Engineering - 2.1.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Mon Jun 30 2014 Toshio Kuratomi - 2.1.1-5 +- Replace python-setuptools-devel BR with python-setuptools + +* Sat Jun 07 2014 Fedora Release Engineering - 2.1.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Thu May 01 2014 John Khvatov - 2.1.1-3 +- Add patch (from upstream) for shared library versining. + +* Wed Apr 30 2014 John Khvatov - 2.1.1-2 +- Enable test suite +- Update SourceURL (upstream moved to github) +- Add patch to use LIB_SUFFIX in cmake configs +- Spec cleanup + +* Wed Apr 23 2014 Dan Fuhry - 2.1.1-1 +- Updated to 2.1.1 + +* Sat Aug 31 2013 Peter Lemenkov - 1.3-8 +- Use system-wide libtool +- Autoregen everything + +* Tue Aug 06 2013 Peter Lemenkov - 1.3-7 +- Cleanup spec-file (removed EL6/FC6 stuff) +- Fix doc-files installation + +* Sat Aug 03 2013 Fedora Release Engineering - 1.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Wed Feb 13 2013 Fedora Release Engineering - 1.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Thu Jul 19 2012 Fedora Release Engineering - 1.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Fri Jan 13 2012 Fedora Release Engineering - 1.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Tue Feb 08 2011 Fedora Release Engineering - 1.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Sat Jan 30 2010 Rakesh Pandit - 1.3-1 +- Updated to 1.3 +- Removed python bindings (they are separate project now) + +* Fri Dec 04 2009 Rakesh Pandit - 1.2-1 +- Updated to 1.2 + +* Wed Aug 05 2009 Rakesh Pandit - 1.1-1 +- removed extra files included in %%files section and updated to 1.1 + +* Fri Jul 24 2009 Fedora Release Engineering - 1.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Fri Feb 27 2009 Debarshi Ray - 1.0-3 +- Fixed build failure with gcc-4.4. + +* Tue Feb 24 2009 Fedora Release Engineering - 1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Fri Jan 16 2009 Rakesh Pandit - 1.0-1 +- Updated to 1.0. + +* Sat Nov 29 2008 Ignacio Vazquez-Abrams - 0.9-7 +- Rebuild for Python 2.6 + +* Thu Sep 04 2008 Rakesh Pandit 0.9-6 +- fixed for F-8 provide eggs for non setuptools package + +* Thu Sep 04 2008 Rakesh Pandit 0.9-5 +- disable test suite because it failed on x86_64 (2/17) + +* Tue Aug 26 2008 Rakesh Pandit 0.9-4 +- fixed %%{includedir} + +* Thu Aug 14 2008 Rakesh Pandit 0.9-3 +- fixed documentation, timestamp saving +- removed chrpath & cleaned some unwanted commands +- included python module + +* Sat Aug 09 2008 Rakesh Pandit 0.9-2 +- remove automake and corrected configure option + +* Thu Aug 07 2008 Rakesh Pandit 0.9-1 +- Initial build