Compare commits
No commits in common. "c8s" and "c9s" have entirely different histories.
7
.gitignore
vendored
7
.gitignore
vendored
@ -1,2 +1,5 @@
|
||||
SOURCES/paps-0.6.8.tar.gz
|
||||
/paps-0.6.8.tar.gz
|
||||
*rpm
|
||||
*gz
|
||||
*bz2
|
||||
paps-0.6.6.tar.gz
|
||||
paps-0.6.8.tar.gz
|
||||
|
@ -1,6 +1,6 @@
|
||||
--- !Policy
|
||||
product_versions:
|
||||
- rhel-8
|
||||
- rhel-9
|
||||
decision_context: osci_compose_gate
|
||||
rules:
|
||||
- !PassingTestCaseRule {test_case_name: desktop-qe.desktop-ci.tier1-gating.functional}
|
||||
|
98
paps.spec
98
paps.spec
@ -1,13 +1,15 @@
|
||||
Name: paps
|
||||
Version: 0.6.8
|
||||
Release: 41%{?dist}
|
||||
Version: 0.7.1
|
||||
Release: 4%{?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
|
||||
BuildRequires: pango-devel automake autoconf libtool doxygen cups-devel
|
||||
Source3: http://downloads.sourceforge.net/%{name}/%{name}-0.6.8.tar.gz
|
||||
BuildRequires: make
|
||||
BuildRequires: pango-devel automake autoconf libtool doxygen cups-devel intltool
|
||||
## 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
|
||||
@ -42,32 +44,24 @@ 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 libs
|
||||
Summary: Libraries for paps
|
||||
Group: Development/Libraries
|
||||
%description libs
|
||||
%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
|
||||
|
||||
paps is a PostScript converter from plain text file using Pango.
|
||||
|
||||
This package contains the library for paps.
|
||||
This package contains a CUPS filter based on 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
|
||||
%setup -q -a 3
|
||||
pushd %{name}-0.6.8
|
||||
%patch0 -p1 -b .shared
|
||||
%patch1 -p1 -b .wordwrap
|
||||
%patch2 -p1 -b .langinfo
|
||||
@ -88,14 +82,20 @@ applications using paps API.
|
||||
%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,7 +103,8 @@ rm $RPM_BUILD_ROOT%{_libdir}/libpaps.la
|
||||
|
||||
# make a symlink for CUPS filter
|
||||
install -d $RPM_BUILD_ROOT%{_cups_serverbin}/filter # Not libdir
|
||||
ln -s %{_bindir}/paps $RPM_BUILD_ROOT%{_cups_serverbin}/filter/texttopaps
|
||||
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
|
||||
|
||||
install -d $RPM_BUILD_ROOT%{_datadir}/cups/mime
|
||||
install -p -m0644 %{SOURCE1} $RPM_BUILD_ROOT%{_datadir}/cups/mime/
|
||||
@ -111,28 +112,59 @@ 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
|
||||
|
||||
%post libs -p /sbin/ldconfig
|
||||
%postun libs -p /sbin/ldconfig
|
||||
make install DESTDIR=$RPM_BUILD_ROOT INSTALL="/usr/bin/install -p"
|
||||
|
||||
%ldconfig_scriptlets libs
|
||||
|
||||
%files
|
||||
%doc AUTHORS COPYING.LIB README TODO
|
||||
%doc AUTHORS COPYING.LIB README
|
||||
%{_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
|
||||
|
||||
|
1
sources
1
sources
@ -1 +1,2 @@
|
||||
SHA512 (paps-0.6.8.tar.gz) = db657d90179e11fe42bbcdbebe09a84f1927c99d0b539c9e29b66b3cb8ffcf33ff500c9d81835ae5a0880382bf8f24801f04742517b76b8e005b125a139d8bba
|
||||
SHA512 (paps-0.7.1.tar.gz) = a77ed7b5529a7d94fd3c63b272c30e5b5f8af143850ea1ba176e776ad5cc11c27f8b605b95e73cc1ba7c4a1957a444e73c2c9282aa244685f777d1675056d997
|
||||
|
Loading…
Reference in New Issue
Block a user