Accepting request 297563 from devel:languages:perl:autoupdate
automatic update OBS-URL: https://build.opensuse.org/request/show/297563 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Image-Base?expand=0&rev=3
This commit is contained in:
committed by
Git OBS Bridge
parent
d0de739104
commit
c25ccc5161
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:70f1135161d283cd0cab000194edb91fa5e24fe77513d8e4a66feb1c916f595a
|
||||
size 16091
|
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a3f24153b51dbcf61cbd7ad00d871be3dfcbefb77a5ff6255dc9c9eedf8a0647
|
||||
size 17267
|
3
Image-Base-1.17.tar.gz
Normal file
3
Image-Base-1.17.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f6d0d4d03026ba6a19d2ac3495171fc123522345630cadc7f43b53a667b95f81
|
||||
size 31195
|
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: SUSE-NonFree
|
||||
#skip_noarch: 1
|
||||
#custom_build: -
|
||||
#./Build build flags=%{?_smp_mflags} --myflag
|
@@ -1,3 +1,19 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 17 07:58:58 UTC 2015 - coolo@suse.com
|
||||
|
||||
- updated to 1.17
|
||||
see /usr/share/doc/packages/perl-Image-Base/Changes
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 17 07:58:57 UTC 2015 - coolo@suse.com
|
||||
|
||||
- updated to 1.16
|
||||
see /usr/share/doc/packages/perl-Image-Base/Changes
|
||||
|
||||
2010/07/10 version 1.16
|
||||
|
||||
New diamond() method.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun May 1 10:30:04 UTC 2011 - coolo@opensuse.org
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package perl-Image-Base (Version 1.15)
|
||||
# spec file for package perl-Image-Base
|
||||
#
|
||||
# Copyright (c) 2011 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,15 +15,17 @@
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
Name: perl-Image-Base
|
||||
Version: 1.15
|
||||
Release: 1
|
||||
License: This module may be used/distributed/modified under the LGPL.
|
||||
Version: 1.17
|
||||
Release: 0
|
||||
%define cpan_name Image-Base
|
||||
Summary: base class for loading, manipulating and saving images.
|
||||
Url: http://search.cpan.org/dist/Image-Base/
|
||||
Summary: Base Class for Loading, Manipulating and Saving Images
|
||||
License: This module may be used/distributed/modified under the LGPL.
|
||||
Group: Development/Libraries/Perl
|
||||
Source: http://www.cpan.org/authors/id/K/KR/KRYDE/%{cpan_name}-%{version}.tar.gz
|
||||
Url: http://search.cpan.org/dist/Image-Base/
|
||||
Source0: http://www.cpan.org/authors/id/K/KR/KRYDE/%{cpan_name}-%{version}.tar.gz
|
||||
Source1: cpanspec.yml
|
||||
BuildArch: noarch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildRequires: perl
|
||||
@@ -31,8 +33,9 @@ BuildRequires: perl-macros
|
||||
%{perl_requires}
|
||||
|
||||
%description
|
||||
This class should not be used directly. Known inheritors are Image::Xbm and
|
||||
Image::Xpm and in see the /SEE ALSO manpage below.
|
||||
This is a base class for image. It shouldn't be used directly. Known
|
||||
inheritors are 'Image::Xbm' and 'Image::Xpm' and in see the /SEE ALSO
|
||||
manpage below.
|
||||
|
||||
use Image::Xpm ;
|
||||
|
||||
@@ -47,7 +50,7 @@ manipulating image files with a modest amount of code and dependencies.
|
||||
|
||||
Other inheritors like 'Image::Base::GD' are front-ends to big image
|
||||
libraries. They can be handy for pointing generic 'Image::Base' style code
|
||||
at a choice of modules and their various file formats. Some like
|
||||
at a choice of modules and supported file formats. Some inheritors like
|
||||
'Image::Base::X11::Protocol::Drawable' even go to a window etc for direct
|
||||
display.
|
||||
|
||||
@@ -67,11 +70,8 @@ find . -type f -print0 | xargs -0 chmod 644
|
||||
%perl_process_packlist
|
||||
%perl_gen_filelist
|
||||
|
||||
%clean
|
||||
%{__rm} -rf %{buildroot}
|
||||
|
||||
%files -f %{name}.files
|
||||
%defattr(-,root,root,755)
|
||||
%doc Changes LGPL-3 README
|
||||
%doc Changes GPL-3 LGPL-3 README
|
||||
|
||||
%changelog
|
||||
|
Reference in New Issue
Block a user