forked from pool/perl-PostScript-Simple
Compare commits
11 Commits
da349b05f5
...
7cc66a5d13
Author | SHA256 | Date | |
---|---|---|---|
7cc66a5d13 | |||
|
792831866b | ||
|
6564816464 | ||
|
aea7db6d0b | ||
|
911957b5a2 | ||
|
ac81f74d71 | ||
|
0c8a9be722 | ||
|
da7bb073b1 | ||
|
11d8153a26 | ||
|
c68b7d9505 | ||
|
e5bd143590 |
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:69cb6cf22c8ea87d8504b04166c71b73aa736ba76075964842102496c59c33f5
|
||||
size 41874
|
3
PostScript-Simple-0.09.tar.gz
Normal file
3
PostScript-Simple-0.09.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cf5bbe06e4c097ad7fe085b237831b43f5edde7ddb1cd21fc997c42756ab1856
|
||||
size 35450
|
20
cpanspec.yml
Normal file
20
cpanspec.yml
Normal file
@@ -0,0 +1,20 @@
|
||||
---
|
||||
#description_paragraphs: 3
|
||||
#no_testing: broken upstream
|
||||
#sources:
|
||||
# - source1
|
||||
# - source2
|
||||
#patches:
|
||||
# foo.patch: -p1
|
||||
# bar.patch:
|
||||
#preamble: |-
|
||||
# BuildRequires: gcc-c++
|
||||
#post_prep: |-
|
||||
# hunspell=`pkg-config --libs hunspell | sed -e 's,-l,,; s, *,,g'`
|
||||
# sed -i -e "s,hunspell-X,$hunspell," t/00-prereq.t Makefile.PL
|
||||
#post_install: |-
|
||||
# sed on %{name}.files
|
||||
license: GPL-2.0+
|
||||
#skip_noarch: 1
|
||||
#custom_build: -
|
||||
#./Build build flags=%{?_smp_mflags} --myflag
|
@@ -1,3 +1,36 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 17 09:10:42 UTC 2015 - coolo@suse.com
|
||||
|
||||
- updated to 0.09
|
||||
see /usr/share/doc/packages/perl-PostScript-Simple/Changes
|
||||
|
||||
0.09 - 23 September 2014
|
||||
Matthew Newton:
|
||||
- add setcmykcolour method
|
||||
- add err method to find last error
|
||||
- internal data structure updates
|
||||
|
||||
0.08 - 20 June 2014
|
||||
Satoshi Azuma:
|
||||
- remove Test::More module and make it a build dependency
|
||||
|
||||
Matthew Newton:
|
||||
- fix test result failures on -Duselongdouble
|
||||
- allow units to be specified for any distance
|
||||
- add X-Windows colours, supplied by Steve Baldwin
|
||||
- change all space-separated lists to arrays
|
||||
- fix Begin/EndDocument handling in EPS file insertion
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 1 13:34:39 UTC 2010 - coolo@novell.com
|
||||
|
||||
- switch to perl_requires macro
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 29 18:30:55 UTC 2010 - coolo@novell.com
|
||||
|
||||
- remove /var/adm/perl-modules
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 19 08:39:01 UTC 2010 - coolo@novell.com
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package perl-PostScript-Simple (Version 0.07)
|
||||
# spec file for package perl-PostScript-Simple
|
||||
#
|
||||
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -15,59 +15,54 @@
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
# norootforbuild
|
||||
|
||||
|
||||
Name: perl-PostScript-Simple
|
||||
Url: http://search.cpan.org/~mcnewton/PostScript-Simple
|
||||
License: GPLv2+
|
||||
Version: 0.09
|
||||
Release: 0
|
||||
#Upstream: CHECK(GPL-1.0+ or Artistic-1.0)
|
||||
%define cpan_name PostScript-Simple
|
||||
Summary: Produce PostScript files from Perl
|
||||
License: GPL-2.0+
|
||||
Group: Development/Libraries/Perl
|
||||
Provides: PostScript-Simple
|
||||
Requires: perl = %{perl_version}
|
||||
AutoReqProv: on
|
||||
Version: 0.07
|
||||
Release: 134
|
||||
Source: PostScript-Simple-%{version}.tar.gz
|
||||
Summary: a simple method of writing PostScript files from Perl
|
||||
Url: http://search.cpan.org/dist/PostScript-Simple/
|
||||
Source0: http://www.cpan.org/authors/id/M/MC/MCNEWTON/%{cpan_name}-%{version}.tar.gz
|
||||
Source1: cpanspec.yml
|
||||
BuildArch: noarch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildRequires: perl
|
||||
BuildRequires: perl-macros
|
||||
%{perl_requires}
|
||||
|
||||
%description
|
||||
PostScript::Simple allows you to have a simple method of writing
|
||||
PostScript files from Perl. It has several graphics primitives that
|
||||
allow lines, circles, polygons and boxes to be drawn. Text can be added
|
||||
to the page using standard PostScript fonts.
|
||||
PostScript::Simple allows you to have a simple method of writing PostScript
|
||||
files from Perl. It has graphics primitives that allow lines, curves,
|
||||
circles, polygons and boxes to be drawn. Text can be added to the page
|
||||
using standard PostScript fonts.
|
||||
|
||||
|
||||
|
||||
Authors:
|
||||
--------
|
||||
Matthew Newton <mcnewton@cpan.org>
|
||||
The images can be single page EPS files, or multipage PostScript files. The
|
||||
image size can be set by using a recognised paper size ("'A4'", for
|
||||
example) or by giving dimensions. The units used can be specified ("'mm'"
|
||||
or "'in'", etc) and are the same as those used in TeX. The default unit is
|
||||
a bp, or a PostScript point, unlike TeX.
|
||||
|
||||
%prep
|
||||
%setup -n PostScript-Simple-%{version}
|
||||
%setup -q -n %{cpan_name}-%{version}
|
||||
find . -type f -print0 | xargs -0 chmod 644
|
||||
|
||||
%build
|
||||
perl Makefile.PL
|
||||
make %{?_smp_mflags}
|
||||
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
||||
%{__make} %{?_smp_mflags}
|
||||
|
||||
%check
|
||||
%{__make} test
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
make DESTDIR=$RPM_BUILD_ROOT install_vendor
|
||||
%perl_make_install
|
||||
%perl_process_packlist
|
||||
%perl_gen_filelist
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%files
|
||||
%defattr(-, root, root)
|
||||
%doc %{_mandir}/man3/*
|
||||
%doc MANIFEST README Changes
|
||||
%{perl_vendorarch}/auto/PostScript
|
||||
%dir %{perl_vendorlib}/PostScript
|
||||
%dir %{perl_vendorlib}/PostScript/Simple
|
||||
%{perl_vendorlib}/PostScript/Simple.pm
|
||||
%{perl_vendorlib}/PostScript/Simple/EPS.pm
|
||||
/var/adm/perl-modules/%{name}
|
||||
%files -f %{name}.files
|
||||
%defattr(-,root,root,755)
|
||||
%doc Changes examples README TODO
|
||||
|
||||
%changelog
|
||||
|
Reference in New Issue
Block a user