Compare commits
No commits in common. "c9" and "c8s" have entirely different histories.
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,2 +1,2 @@
|
||||
SOURCES/paps-0.6.8.tar.gz
|
||||
SOURCES/paps-0.7.1.tar.gz
|
||||
/paps-0.6.8.tar.gz
|
||||
|
@ -1,2 +0,0 @@
|
||||
83646b0de89deb8321f260c2c5a665bc7c8f5928 SOURCES/paps-0.6.8.tar.gz
|
||||
2454b902540afe5d653fc5f1eea743d037ce3c98 SOURCES/paps-0.7.1.tar.gz
|
6
gating.yaml
Normal file
6
gating.yaml
Normal file
@ -0,0 +1,6 @@
|
||||
--- !Policy
|
||||
product_versions:
|
||||
- rhel-8
|
||||
decision_context: osci_compose_gate
|
||||
rules:
|
||||
- !PassingTestCaseRule {test_case_name: desktop-qe.desktop-ci.tier1-gating.functional}
|
@ -1,15 +1,13 @@
|
||||
Name: paps
|
||||
Version: 0.7.1
|
||||
Release: 4%{?dist}
|
||||
Version: 0.6.8
|
||||
Release: 41%{?dist}
|
||||
|
||||
License: LGPLv2+
|
||||
URL: http://paps.sourceforge.net/
|
||||
Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz
|
||||
Source1: paps.convs
|
||||
Source2: 29-paps.conf
|
||||
Source3: http://downloads.sourceforge.net/%{name}/%{name}-0.6.8.tar.gz
|
||||
BuildRequires: make
|
||||
BuildRequires: pango-devel automake autoconf libtool doxygen cups-devel intltool
|
||||
BuildRequires: pango-devel automake autoconf libtool doxygen cups-devel
|
||||
## https://sourceforge.net/tracker/index.php?func=detail&aid=1832897&group_id=153049&atid=786241
|
||||
Patch0: paps-0.6.8-shared.patch
|
||||
## https://sourceforge.net/tracker/index.php?func=detail&aid=1832924&group_id=153049&atid=786241
|
||||
@ -44,24 +42,32 @@ Patch60: %{name}-a3.patch
|
||||
Patch61: %{name}-fix-paper-size-truncate.patch
|
||||
|
||||
Summary: Plain Text to PostScript converter
|
||||
Group: Applications/Publishing
|
||||
Requires: %{name}-libs = %{version}-%{release}
|
||||
Requires: cups-filesystem fontpackages-filesystem
|
||||
%description
|
||||
paps is a PostScript converter from plain text file using Pango.
|
||||
|
||||
%package -n texttopaps
|
||||
Summary: CUPS filter based on paps
|
||||
Obsoletes: %{name}-libs < %{version}
|
||||
Obsoletes: %{name}-devel < %{version}
|
||||
Requires: cups-filesystem fontpackages-filesystem
|
||||
%description -n texttopaps
|
||||
|
||||
%package libs
|
||||
Summary: Libraries for paps
|
||||
Group: Development/Libraries
|
||||
%description libs
|
||||
paps is a PostScript converter from plain text file using Pango.
|
||||
|
||||
This package contains a CUPS filter based on paps.
|
||||
This package contains the library for paps.
|
||||
|
||||
%package devel
|
||||
Summary: Development files for paps
|
||||
Group: Development/Libraries
|
||||
Requires: %{name}-libs = %{version}-%{release}
|
||||
%description devel
|
||||
paps is a PostScript converter from plain text file using Pango.
|
||||
|
||||
This package contains the development files that is necessary to develop
|
||||
applications using paps API.
|
||||
|
||||
%prep
|
||||
%setup -q -a 3
|
||||
pushd %{name}-0.6.8
|
||||
%setup -q
|
||||
%patch0 -p1 -b .shared
|
||||
%patch1 -p1 -b .wordwrap
|
||||
%patch2 -p1 -b .langinfo
|
||||
@ -82,20 +88,14 @@ pushd %{name}-0.6.8
|
||||
%patch61 -p1 -b .paper-size
|
||||
libtoolize -f -c
|
||||
autoreconf -f -i
|
||||
popd
|
||||
|
||||
|
||||
%build
|
||||
%configure --disable-static
|
||||
make %{?_smp_mflags}
|
||||
|
||||
pushd %{name}-0.6.8
|
||||
%configure --disable-static
|
||||
make %{?_smp_mflags}
|
||||
popd
|
||||
|
||||
%install
|
||||
pushd %{name}-0.6.8
|
||||
make install DESTDIR=$RPM_BUILD_ROOT INSTALL="/usr/bin/install -p"
|
||||
|
||||
# remove unnecessary files
|
||||
@ -103,8 +103,7 @@ rm $RPM_BUILD_ROOT%{_libdir}/libpaps.la
|
||||
|
||||
# make a symlink for CUPS filter
|
||||
install -d $RPM_BUILD_ROOT%{_cups_serverbin}/filter # Not libdir
|
||||
mv $RPM_BUILD_ROOT%{_bindir}/paps $RPM_BUILD_ROOT%{_cups_serverbin}/filter/texttopaps
|
||||
mv $RPM_BUILD_ROOT%{_mandir}/man1/paps.1 $RPM_BUILD_ROOT%{_mandir}/man1/texttopaps.1
|
||||
ln -s %{_bindir}/paps $RPM_BUILD_ROOT%{_cups_serverbin}/filter/texttopaps
|
||||
|
||||
install -d $RPM_BUILD_ROOT%{_datadir}/cups/mime
|
||||
install -p -m0644 %{SOURCE1} $RPM_BUILD_ROOT%{_datadir}/cups/mime/
|
||||
@ -112,59 +111,28 @@ install -p -m0644 %{SOURCE1} $RPM_BUILD_ROOT%{_datadir}/cups/mime/
|
||||
install -d $RPM_BUILD_ROOT%{_sysconfdir}/fonts/conf.d
|
||||
install -p -m0644 %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/fonts/conf.d/
|
||||
|
||||
rm -rf $RPM_BUILD_ROOT%{_includedir}
|
||||
rm $RPM_BUILD_ROOT%{_libdir}/libpaps.so
|
||||
popd
|
||||
|
||||
make install DESTDIR=$RPM_BUILD_ROOT INSTALL="/usr/bin/install -p"
|
||||
|
||||
%ldconfig_scriptlets libs
|
||||
%post libs -p /sbin/ldconfig
|
||||
%postun libs -p /sbin/ldconfig
|
||||
|
||||
%files
|
||||
%doc AUTHORS COPYING.LIB README
|
||||
%doc AUTHORS COPYING.LIB README TODO
|
||||
%{_bindir}/paps
|
||||
%{_mandir}/man1/paps.1*
|
||||
|
||||
%files -n texttopaps
|
||||
%doc %{name}-0.6.8/COPYING.LIB %{name}-0.6.8/AUTHORS %{name}-0.6.8/README
|
||||
%{_mandir}/man1/texttopaps.1*
|
||||
%{_libdir}/libpaps.so.*
|
||||
%{_cups_serverbin}/filter/texttopaps
|
||||
%{_datadir}/cups/mime/paps.convs
|
||||
%{_sysconfdir}/fonts/conf.d/29-paps.conf
|
||||
|
||||
%files libs
|
||||
%doc COPYING.LIB
|
||||
%{_libdir}/libpaps.so.*
|
||||
|
||||
%files devel
|
||||
%doc COPYING.LIB
|
||||
%{_includedir}/libpaps.h
|
||||
%{_libdir}/libpaps.so
|
||||
|
||||
%changelog
|
||||
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 0.7.1-4
|
||||
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||
Related: rhbz#1991688
|
||||
|
||||
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 0.7.1-3
|
||||
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||
|
||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Thu Oct 8 2020 Akira TAGOH <tagoh@redhat.com> - 0.7.1-1
|
||||
- New upstream release.
|
||||
Resolves: rhbz#1254352
|
||||
- Sub-package texttopaps with old code.
|
||||
|
||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.8-46
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.8-45
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.8-44
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.8-43
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.8-42
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.8-41
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
Loading…
Reference in New Issue
Block a user