From 572e9d333584d321bf4f00b8325ce2394d29a411 Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: May 07 2019 12:54:21 +0000 Subject: import bibutils-6.5-1.el8 --- diff --git a/.bibutils.metadata b/.bibutils.metadata new file mode 100644 index 0000000..1da05b7 --- /dev/null +++ b/.bibutils.metadata @@ -0,0 +1 @@ +d9a5b6bb93033f7cf8101430262ad694de6f8abd SOURCES/bibutils_6.5_src.tgz diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a5a32c5 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/bibutils_6.5_src.tgz diff --git a/SOURCES/bibutils-LDFLAGS.patch b/SOURCES/bibutils-LDFLAGS.patch new file mode 100644 index 0000000..ea77fa4 --- /dev/null +++ b/SOURCES/bibutils-LDFLAGS.patch @@ -0,0 +1,48 @@ +diff -up bibutils_6.5/bin/Makefile~ bibutils_6.5/bin/Makefile +--- bibutils_6.5/bin/Makefile.dynamic~ 2018-06-29 17:42:26.485528548 +0900 ++++ bibutils_6.5/bin/Makefile.dynamic 2018-06-29 18:02:55.305754734 +0900 +@@ -5,7 +5,7 @@ + # + + CFLAGS = -I ../lib $(CFLAGSIN) +-LDFLAGS = -L ../lib ++LDFLAGS = -L ../lib $(LDFLAGSIN) + LDLIBS = -lbibutils + + TOMODS = bibprog.o tomods.o args.o +diff -up bibutils_6.5/lib/Makefile~ bibutils_6.5/lib/Makefile +--- bibutils_6.5/lib/Makefile.dynamic~ 2018-06-29 17:42:26.484528544 +0900 ++++ bibutils_6.5/lib/Makefile.dynamic 2018-06-29 18:01:03.557281315 +0900 +@@ -1,4 +1,5 @@ + CFLAGS = $(CFLAGSIN) ++LDFLAGS = $(LDFLAGSIN) + LIBTARGET = $(LIBTARGETIN) + + SIMPLE_OBJS = charsets.o \ +@@ -75,12 +76,12 @@ all: $(LIBTARGET) + $(CC) $(CFLAGS) -c -o $@ $< + + libbibutils.so: $(BIBCORE_OBJS) $(BIBUTILS_OBJS) +- $(CC) -shared -Wl,-soname,$(SONAME) -o $(SOFULL) $^ ++ $(CC) $(LDFLAGS) -shared -Wl,-soname,$(SONAME) -o $(SOFULL) $^ + ln -sf $(SOFULL) $(SONAME) + ln -sf $(SOFULL) libbibutils.so + + bibutils.dll: $(BIBCORE_OBJS) $(BIBUTILS_OBJS) +- $(CC) -shared -Wl,-soname,$(SONAME) -o $@ $^ ++ $(CC) $(LDFLAGS) -shared -Wl,-soname,$(SONAME) -o $@ $^ + cp $@ ../bin + cp $@ ../test + +diff -up bibutils_6.5/test/Makefile~ bibutils_6.5/test/Makefile +--- bibutils_6.5/test/Makefile.dynamic~ 2018-06-29 17:42:26.486528552 +0900 ++++ bibutils_6.5/test/Makefile.dynamic 2018-06-29 18:01:21.021355301 +0900 +@@ -3,7 +3,7 @@ + # + + CFLAGS = -I ../lib $(CFLAGSIN) +-LDFLAGS = -L ../lib ++LDFLAGS = -L ../lib $(LDFLAGSIN) + LDLIBS = -lbibutils + + PROGS = doi_test \ diff --git a/SPECS/bibutils.spec b/SPECS/bibutils.spec new file mode 100644 index 0000000..ec766c3 --- /dev/null +++ b/SPECS/bibutils.spec @@ -0,0 +1,162 @@ +Name: bibutils +Version: 6.5 +Release: 1%{?dist} +Summary: Bibliography conversion tools +License: GPLv2 +URL: http://sourceforge.net/p/bibutils/home/Bibutils/ +Source0: http://downloads.sourceforge.net/%{name}/%{name}_%{version}_src.tgz +Patch0: bibutils-LDFLAGS.patch + +BuildRequires: libxslt +BuildRequires: docbook-style-xsl +BuildRequires: gcc + +%description +The bibutils package converts between various bibliography +formats using a common MODS-format XML intermediate. + + +%package libs +Summary: Bibutils library +License: GPL+ + +%description libs +Bibutils library. + + +%package devel +Summary: Development files for bibutils +Requires: %{name}-libs%{?_isa} = %{version}-%{release} +License: GPL+ + +%description devel +Bibutils development files. + + +%prep +%setup -q -n %{name}_%{version} +%patch0 -p1 -b .orig + + +%build +./configure --install-dir %{buildroot}%{_bindir} --install-lib %{buildroot}%{_libdir} --dynamic +make DISTRO_CFLAGS="%optflags" LDFLAGSIN="%{?__global_ldflags}" + +xsltproc -o bibutils.1 --nonet %{_datadir}/sgml/docbook/xsl-stylesheets/manpages/docbook.xsl bibutils.dbk + + +%install +mkdir -p %{buildroot}%{_bindir} %{buildroot}%{_libdir} +make install + +mkdir -p %{buildroot}%{_includedir}/%{name} +cp -p lib/*.h %{buildroot}%{_includedir}/%{name} +mkdir -p %{buildroot}%{_libdir}/pkgconfig +cp -p lib/%{name}.pc %{buildroot}%{_libdir}/pkgconfig +sed -i -e 's!\\!!g' -e 's!libdir=${prefix}/lib!libdir=%{_libdir}!' -e 's!${includedir}!${includedir}/%{name}!' %{buildroot}%{_libdir}/pkgconfig/%{name}.pc +mkdir -p %{buildroot}%{_mandir}/man1 +cp -p %{name}.1 %{buildroot}%{_mandir}/man1 + +for i in $(cd %{buildroot}%{_bindir}; ls *); do + ln -s bibutils.1 %{buildroot}%{_mandir}/man1/$i.1 +done + + +%post libs -p /sbin/ldconfig + +%postun libs -p /sbin/ldconfig + + +%files +%doc Copying ChangeLog +%{_bindir}/* +%{_mandir}/man1/*.1* + + +%files libs +%{_libdir}/libbibutils.so.* + + +%files devel +%{_includedir}/%{name} +%{_libdir}/libbibutils.so +%{_libdir}/pkgconfig/%{name}.pc + + +%changelog +* Fri Jun 29 2018 Jens Petersen - 6.5-1 +- update to version 6.5 +- build with LDFLAGS (#1541039) + +* Wed Jun 6 2018 Jens Petersen - 6.3-1 +- update to 6.3 which addresses CVE-2018-10773 CVE-2018-10774 CVE-2018-10775 + (#1577259) + +* Mon Feb 19 2018 Jens Petersen - 6.2-4 +- BR gcc + +* Wed Feb 14 2018 Jens Petersen - 6.2-3 +- fix the build with CFLAGS and LDFLAGS + +* Wed Feb 07 2018 Fedora Release Engineering +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Fri Feb 2 2018 Jens Petersen - 6.2-2 +- using distro LDFLAGS (#1541039) + +* Sat Jan 13 2018 Jens Petersen - 6.2-1 +- update to 6.2 + +* Wed Aug 02 2017 Fedora Release Engineering - 5.5-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Wed Jul 26 2017 Fedora Release Engineering - 5.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Fri Feb 10 2017 Fedora Release Engineering - 5.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Wed Feb 03 2016 Fedora Release Engineering - 5.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Wed Jun 17 2015 Fedora Release Engineering - 5.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Mon Jan 19 2015 Jens Petersen - 5.5-1 +- update to 5.5 + +* Fri Aug 15 2014 Fedora Release Engineering - 5.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Sat Jun 07 2014 Fedora Release Engineering - 5.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Sat Aug 03 2013 Fedora Release Engineering - 5.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Wed Jun 5 2013 Jens Petersen - 5.0-1 +- update to 5.0 + +* Mon Jan 28 2013 Jens Petersen - 4.17-1 +- update to 4.17 +- patch and use upstream's Makefile + +* Thu Jan 10 2013 Jens Petersen - 4.16-1 +- update to 4.16 +- update License to only GPLv2 +- no longer needs csh to build + +* Thu Oct 4 2012 Jens Petersen - 4.15-4 +- tcsh provides csh so no need to patch configure for tcsh +- change license to GPL+ for the code and GPLv2 for the manpage + +* Tue Oct 2 2012 Jens Petersen - 4.15-3 +- improve summary and description (#861922) +- build and install docbook manpage which is GPLv2+ (#861922) +- use _isa (#861922) + +* Tue Oct 2 2012 Jens Petersen - 4.15-2 +- BR tcsh + +* Mon Oct 1 2012 Jens Petersen - 4.15-1 +- initial packaging