Merge branch 'f20' into f21
This commit is contained in:
commit
c46c12a72c
1
.gitignore
vendored
1
.gitignore
vendored
@ -43,3 +43,4 @@ ghostscript-8.71.tar.xz
|
|||||||
/ghostscript-9.10-cleaned.tar.bz2
|
/ghostscript-9.10-cleaned.tar.bz2
|
||||||
/ghostscript-9.12-cleaned.tar.bz2
|
/ghostscript-9.12-cleaned.tar.bz2
|
||||||
/ghostscript-9.14-cleaned.tar.bz2
|
/ghostscript-9.14-cleaned.tar.bz2
|
||||||
|
/ghostscript-9.14-cleaned-1.tar.bz2
|
||||||
|
@ -1,8 +1,26 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
VERSION=$1
|
VERSION="$1"
|
||||||
|
|
||||||
rm -rf ghostscript-$VERSION
|
rm -rf ghostscript-"$VERSION"
|
||||||
tar jxvf ghostscript-$VERSION.tar.bz2
|
tar jxvf ghostscript-"$VERSION".tar.bz2
|
||||||
rm -r ghostscript-$VERSION/jpegxr
|
|
||||||
tar jcvf ghostscript-$VERSION-cleaned.tar.bz2 ghostscript-$VERSION
|
GS=ghostscript-"$VERSION"
|
||||||
|
|
||||||
|
# License unclear (bug #1000387).
|
||||||
|
rm -r "$GS"/jpegxr
|
||||||
|
|
||||||
|
# License unknown (bug #1149617).
|
||||||
|
## Documentation
|
||||||
|
rm -f "$GS"/contrib/japanese/doc/djgpp.txt
|
||||||
|
rm -f "$GS"/contrib/japanese/doc/gdevmag.txt
|
||||||
|
rm -f "$GS"/contrib/japanese/doc/gs261j.*
|
||||||
|
## Example code
|
||||||
|
rm -f "$GS"/examples/chess.ps
|
||||||
|
## %ram% IODevice
|
||||||
|
rm -f "$GS"/base/gsioram.c
|
||||||
|
rm -f "$GS"/base/ramfs.c
|
||||||
|
rm -f "$GS"/base/ramfs.h
|
||||||
|
sed -i -e 's, $(GLD)ramfs.dev,,' "$GS"/Makefile.in "$GS"/psi/msvc.mak
|
||||||
|
|
||||||
|
tar jcvf ghostscript-"$VERSION"-cleaned-1.tar.bz2 "$GS"
|
||||||
|
@ -5,18 +5,19 @@ Summary: A PostScript interpreter and renderer
|
|||||||
Name: ghostscript
|
Name: ghostscript
|
||||||
Version: %{gs_ver}
|
Version: %{gs_ver}
|
||||||
|
|
||||||
Release: 6%{?dist}
|
Release: 7%{?dist}
|
||||||
|
|
||||||
# Included CMap data is Redistributable, no modification permitted,
|
# Included CMap data is Redistributable, no modification permitted,
|
||||||
# see http://bugzilla.redhat.com/487510
|
# see http://bugzilla.redhat.com/487510
|
||||||
License: AGPLv3+ and Redistributable, no modification permitted
|
License: AGPLv3+ and Redistributable, no modification permitted
|
||||||
URL: http://www.ghostscript.com/
|
URL: http://www.ghostscript.com/
|
||||||
Group: Applications/Publishing
|
Group: Applications/Publishing
|
||||||
Source0: ghostscript-%{gs_ver}-cleaned.tar.bz2
|
Source0: ghostscript-%{gs_ver}-cleaned-1.tar.bz2
|
||||||
# ghostscript contains a jpegxr directory containing code we cannot
|
# ghostscript contains code we cannot ship due to licensing concerns.
|
||||||
# ship due to licensing concerns. Therefore we use this script to
|
# Therefore we use this script to remove it before shipping the
|
||||||
# remove that directory before shipping it. Download the upstream
|
# tarball.
|
||||||
# tarball and invoke this script while in the tarball's directory:
|
# Download the upstream tarball and invoke this script while in the
|
||||||
|
# tarball's directory:
|
||||||
Source1: generate-tarball.sh
|
Source1: generate-tarball.sh
|
||||||
Source2: CIDFnmap
|
Source2: CIDFnmap
|
||||||
Source4: cidfmap
|
Source4: cidfmap
|
||||||
@ -337,6 +338,10 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_libdir}/libgs.so
|
%{_libdir}/libgs.so
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Oct 7 2014 Tim Waugh <twaugh@redhat.com> 9.14-7
|
||||||
|
- Avoid shipping ramfs source as its license is unclear. Similarly
|
||||||
|
with some documentation and example code (bug #1149617).
|
||||||
|
|
||||||
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 9.14-6
|
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 9.14-6
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||||
|
|
||||||
|
2
sources
2
sources
@ -1,3 +1,3 @@
|
|||||||
2fbae60417d42779f6488ab897dcaaf6 acro5-cmaps-2001.tar.gz
|
2fbae60417d42779f6488ab897dcaaf6 acro5-cmaps-2001.tar.gz
|
||||||
dfc93dd2aaaf2b86d2fd55f654c13261 adobe-cmaps-200406.tar.gz
|
dfc93dd2aaaf2b86d2fd55f654c13261 adobe-cmaps-200406.tar.gz
|
||||||
20880993fe6f8745ffa029215fb1d474 ghostscript-9.14-cleaned.tar.bz2
|
9f52809b19afa78dd25d6f9378184e69 ghostscript-9.14-cleaned-1.tar.bz2
|
||||||
|
Loading…
Reference in New Issue
Block a user