Accepting request 19150 from Publishing
Copy from Publishing/a2ps based on submit request 19150 from user WernerFink OBS-URL: https://build.opensuse.org/request/show/19150 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/a2ps?expand=0&rev=10
This commit is contained in:
parent
f3febb5dc1
commit
9d45ad509c
11
a2ps-4.13-psgen.patch
Normal file
11
a2ps-4.13-psgen.patch
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
--- src/main.c
|
||||||
|
+++ src/main.c 2009-08-28 16:24:47.430026397 +0200
|
||||||
|
@@ -578,7 +578,7 @@ spy_user (struct a2ps_job *a_job, FILE *
|
||||||
|
/* Yes, I know, there are certainly better means. Just teach them
|
||||||
|
to me... */
|
||||||
|
fclose (spy);
|
||||||
|
- fopen (spyname, "r");
|
||||||
|
+ spy = fopen (spyname, "r");
|
||||||
|
if (!spy)
|
||||||
|
error (1, errno, _("cannot open file `%s'"), quotearg (spyname));
|
||||||
|
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Aug 28 16:27:05 CEST 2009 - werner@suse.de
|
||||||
|
|
||||||
|
- Use return value from fopen (bnc#533398)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jan 16 22:01:58 CET 2009 - crrodriguez@suse.de
|
Fri Jan 16 22:01:58 CET 2009 - crrodriguez@suse.de
|
||||||
|
|
||||||
|
148
a2ps.spec
148
a2ps.spec
@ -27,7 +27,7 @@ Requires: /bin/sed /usr/bin/iconv /usr/bin/file /usr/bin/wdiff /usr/bin/w3
|
|||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
PreReq: %{install_info_prereq}
|
PreReq: %{install_info_prereq}
|
||||||
Version: 4.13
|
Version: 4.13
|
||||||
Release: 1327
|
Release: 1328
|
||||||
Summary: Converts ASCII Text into PostScript
|
Summary: Converts ASCII Text into PostScript
|
||||||
Source: a2ps-4.13b.tar.bz2
|
Source: a2ps-4.13b.tar.bz2
|
||||||
Source1: a2ps-ko.po
|
Source1: a2ps-ko.po
|
||||||
@ -42,6 +42,7 @@ Patch7: a2ps-4.13-acroread.patch
|
|||||||
Patch8: a2ps-4.13-base.patch
|
Patch8: a2ps-4.13-base.patch
|
||||||
Patch9: a2ps-4.13-utf8.patch
|
Patch9: a2ps-4.13-utf8.patch
|
||||||
Patch10: a2ps-4.13-types.patch
|
Patch10: a2ps-4.13-types.patch
|
||||||
|
Patch11: a2ps-4.13-psgen.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%global _sysconfdir /etc
|
%global _sysconfdir /etc
|
||||||
|
|
||||||
@ -62,7 +63,8 @@ Authors:
|
|||||||
%package -n a2ps-devel
|
%package -n a2ps-devel
|
||||||
License: GPL v2 or later
|
License: GPL v2 or later
|
||||||
Summary: Library and header file for the interface of a2ps
|
Summary: Library and header file for the interface of a2ps
|
||||||
Group: Productivity/Publishing/PS
|
Group: Development/Libraries/Other
|
||||||
|
Provides: a2ps:%{_libdir}/liba2ps.a
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Requires: %{name} = %{version} glibc-devel
|
Requires: %{name} = %{version} glibc-devel
|
||||||
|
|
||||||
@ -95,6 +97,7 @@ touch -r configure.in .ref
|
|||||||
%patch -P 8 -p 0 -b .base
|
%patch -P 8 -p 0 -b .base
|
||||||
%patch -P 9 -p 0 -b .utf8
|
%patch -P 9 -p 0 -b .utf8
|
||||||
%patch -P 10 -p 0 -b .types
|
%patch -P 10 -p 0 -b .types
|
||||||
|
%patch -P 11 -p 0 -b .psgen
|
||||||
%patch
|
%patch
|
||||||
cp -f %SOURCE1 po/ko.po
|
cp -f %SOURCE1 po/ko.po
|
||||||
rename no nb po/no.*
|
rename no nb po/no.*
|
||||||
@ -170,144 +173,3 @@ rename no nb po/no.*
|
|||||||
%{_libdir}/liba2ps.so
|
%{_libdir}/liba2ps.so
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Fri Jan 16 2009 crrodriguez@suse.de
|
|
||||||
- use --enable-shared and disable static libraries
|
|
||||||
* Mon Oct 27 2008 werner@suse.de
|
|
||||||
- Make liba2ps.h includable without any further includes also split
|
|
||||||
off a devel package as suggested by Thorsten (bnc#438889)
|
|
||||||
* Tue Jul 15 2008 werner@suse.de
|
|
||||||
- Better workaround for UTF-8 files
|
|
||||||
* Tue Mar 04 2008 werner@suse.de
|
|
||||||
- Work around reencoded fonts from ogonkify in wdiff screen mode
|
|
||||||
* Fri Apr 20 2007 aj@suse.de
|
|
||||||
- Use texlive for building.
|
|
||||||
* Fri Mar 30 2007 ssommer@suse.de
|
|
||||||
- add flex to BuildRequires
|
|
||||||
* Mon Feb 19 2007 werner@suse.de
|
|
||||||
- Removed the test file Convert.java and its resulting ps files
|
|
||||||
from source tar ball due license problems.
|
|
||||||
* Thu Feb 08 2007 ro@suse.de
|
|
||||||
- added defattr
|
|
||||||
* Fri May 19 2006 werner@suse.de
|
|
||||||
- Fix reencode_font macro in base.ps (bug #176360)
|
|
||||||
* Thu Apr 27 2006 cthiel@suse.de
|
|
||||||
- removed acroread from BuildRequires
|
|
||||||
- added patch to fake acoread on ix86 and x86_64
|
|
||||||
* Thu Feb 23 2006 werner@suse.de
|
|
||||||
- Use w3m to get ascii from html and the use a2ps its self to
|
|
||||||
get PostScript out of ASCII. (bug #152470)
|
|
||||||
* Wed Jan 25 2006 mls@suse.de
|
|
||||||
- converted neededforbuild to BuildRequires
|
|
||||||
* Sat Jan 14 2006 schwab@suse.de
|
|
||||||
- Don't strip binaries.
|
|
||||||
* Thu Jan 12 2006 werner@suse.de
|
|
||||||
- Use the gcc stack protector
|
|
||||||
* Fri Dec 02 2005 werner@suse.de
|
|
||||||
- Fix handling of long options without arguments in a2ps script
|
|
||||||
* Tue Sep 20 2005 yxu@suse.de
|
|
||||||
- Add prototypes for functions
|
|
||||||
* Fri Jun 17 2005 werner@suse.de
|
|
||||||
- The pdiff requires wdiff (bug #91335)
|
|
||||||
* Fri May 13 2005 werner@suse.de
|
|
||||||
- Allow spaces in file names
|
|
||||||
* Fri May 13 2005 werner@suse.de
|
|
||||||
- Add a wrapper script for converting UTF-8 text _partly_ into the
|
|
||||||
natural latin encoding of the given language enviroment (#43348)
|
|
||||||
* Sat Apr 02 2005 coolo@suse.de
|
|
||||||
- remove conflicting prototype
|
|
||||||
* Mon Oct 25 2004 ro@suse.de
|
|
||||||
- locale rename: no -> nb
|
|
||||||
* Wed Aug 25 2004 werner@suse.de
|
|
||||||
- Escapes file names so that the shell groks it in single quotes
|
|
||||||
* Thu Mar 18 2004 werner@suse.de
|
|
||||||
- More temporary file security issues (bug #36368)
|
|
||||||
* Wed Aug 06 2003 werner@suse.de
|
|
||||||
- Partly workaround for ASCII and UTF-8 (mapp them to ISO 8859-15,
|
|
||||||
bug #28348)
|
|
||||||
* Mon Jul 28 2003 werner@suse.de
|
|
||||||
- Fix keyword Lette(r) (bug #27411)
|
|
||||||
* Wed Jun 11 2003 kukuk@suse.de
|
|
||||||
- Use %%find_lang macro
|
|
||||||
- Fix filelist
|
|
||||||
- Fix neededforbuild for emacs
|
|
||||||
* Thu Apr 24 2003 ro@suse.de
|
|
||||||
- fix install_info --delete call and move from preun to postun
|
|
||||||
* Tue Feb 11 2003 kukuk@suse.de
|
|
||||||
- Add install-info macros [Bug #23390]
|
|
||||||
* Mon Nov 11 2002 ro@suse.de
|
|
||||||
- changed neededforbuild <xshared> to <x-devel-packages>
|
|
||||||
* Wed Sep 18 2002 ro@suse.de
|
|
||||||
- removed bogus self-provides
|
|
||||||
* Sun Jul 28 2002 kukuk@suse.de
|
|
||||||
- remove bzip from neededforbuild
|
|
||||||
* Thu Jul 04 2002 werner@suse.de
|
|
||||||
- Add README's and a2ps.html to package doc dir (bug # 16229)
|
|
||||||
* Thu May 23 2002 ro@suse.de
|
|
||||||
- use libdir
|
|
||||||
* Mon Feb 25 2002 pblahos@suse.cz
|
|
||||||
- filtering mozilla output in iso-8859-2 removed, mozilla does it
|
|
||||||
correctly now, only stripping Title.
|
|
||||||
* Wed Jan 23 2002 okir@suse.de
|
|
||||||
- Fixed tempfile problem in fixnt
|
|
||||||
* Fri Dec 07 2001 werner@suse.de
|
|
||||||
- Enable automagic LC_PAPER and LC_CTYPE detection within
|
|
||||||
a2ps-site.cfg
|
|
||||||
* Fri Aug 31 2001 pblahos@suse.cz
|
|
||||||
- implemented filtering of mozilla output in iso-8859-2
|
|
||||||
* Fri Jul 20 2001 kukuk@suse.de
|
|
||||||
- changed neededforbuild <gs_lib> to <ghostscript-library>
|
|
||||||
* Mon May 07 2001 mfabian@suse.de
|
|
||||||
- bzip2 sources
|
|
||||||
* Thu Apr 26 2001 werner@suse.de
|
|
||||||
- We've to use dots within floats (#7284)
|
|
||||||
- Fix manual page (#7192)
|
|
||||||
* Tue Apr 24 2001 werner@suse.de
|
|
||||||
- Add Euro symbol to afm of ogonkify fonts
|
|
||||||
- Implement code to be able to use LC_PAPER and LC_CTYPE for
|
|
||||||
paper size and default encoding.
|
|
||||||
* Thu Apr 19 2001 werner@suse.de
|
|
||||||
- Use newest ogonkify to get eurifyFont working
|
|
||||||
- Include dummy metric for Euro sign to get it work with
|
|
||||||
ghostscript and real PostScript printers (ogonkify -e L9 -E)
|
|
||||||
* Wed Mar 14 2001 ro@suse.de
|
|
||||||
- use emacs-x11 for now
|
|
||||||
* Tue Mar 13 2001 ro@suse.de
|
|
||||||
- added emacs-nox to neededforbuild
|
|
||||||
* Fri Jan 26 2001 violiet@suse.de
|
|
||||||
- remove Korean filter file = a2ps-h
|
|
||||||
* Tue Jan 23 2001 violiet@suse.de
|
|
||||||
- added Korean filter file = a2ps-h
|
|
||||||
- improvement Korean message file.
|
|
||||||
* Mon Jan 15 2001 werner@suse.de
|
|
||||||
- Fix the temporary file patch.
|
|
||||||
* Wed Jan 10 2001 werner@suse.de
|
|
||||||
- Add temporary file patch
|
|
||||||
* Fri Nov 17 2000 werner@suse.de
|
|
||||||
- Update to version 4.13(b)
|
|
||||||
- Include some package to use automatic configuration for
|
|
||||||
- Set PSFONT_PATH to /usr/share/ghostscript/fonts
|
|
||||||
* Fri Nov 17 2000 ro@suse.de
|
|
||||||
- ge_exec -> emacs
|
|
||||||
* Thu Jul 06 2000 ro@suse.de
|
|
||||||
- merged patches
|
|
||||||
* Thu Jul 06 2000 werner@suse.de
|
|
||||||
- Add `,' to atan2 in for77kwds.ssh to distinguish atan2 from cabs.
|
|
||||||
* Fri Apr 07 2000 bk@suse.de
|
|
||||||
- added suse update config macro
|
|
||||||
* Fri Feb 25 2000 kukuk@suse.de
|
|
||||||
- Fill out copyright and group tag
|
|
||||||
- Move /usr/{info,man} -> /usr/share/{info,man}
|
|
||||||
* Thu Jan 13 2000 werner@suse.de
|
|
||||||
- Fix a2ps path in a2ps.el
|
|
||||||
- Add all page names and their sizes known by ghostscript
|
|
||||||
* Thu Dec 16 1999 werner@suse.de
|
|
||||||
- Fix Bug (NULL pointer if --title="" is used)
|
|
||||||
- Remove Makefile.Linux
|
|
||||||
* Mon Sep 13 1999 bs@suse.de
|
|
||||||
- ran old prepare_spec on spec file to switch to new prepare_spec.
|
|
||||||
* Mon Jul 19 1999 florian@suse.de
|
|
||||||
- update to a2ps 4.12
|
|
||||||
* Wed Oct 29 1997 florian@suse.de
|
|
||||||
- add missing patch detectet by Werner Fink
|
|
||||||
Added the changes from Andreas Klemm for apsfilter into /usr/bin/a2ps.
|
|
||||||
aps could use standard /usr/bin/a2ps now.
|
|
||||||
|
Loading…
Reference in New Issue
Block a user