osc copypac from project:home:dmacvicar package:gimp-plugin-resynthesizer revision:5

OBS-URL: https://build.opensuse.org/package/show/graphics/gimp-plugin-resynthesizer?expand=0&rev=1
This commit is contained in:
Pavol Rusnak 2013-05-16 11:15:40 +00:00 committed by Git OBS Bridge
commit 017c6ba4ae
5 changed files with 138 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

21
automake12.diff Normal file
View File

@ -0,0 +1,21 @@
--- bootchk-resynthesizer-e637010/autogen.sh.orig 2012-03-11 14:27:53.000000000 +0100
+++ bootchk-resynthesizer-e637010/autogen.sh 2012-07-09 01:09:50.807630753 +0200
@@ -68,6 +68,18 @@ elif (automake-1.10 --version) < /dev/nu
elif (automake-1.11 --version) < /dev/null > /dev/null 2>&1; then
AUTOMAKE=automake-1.11
ACLOCAL=aclocal-1.11
+elif (automake-1.12 --version) < /dev/null > /dev/null 2>&1; then
+ AUTOMAKE=automake-1.12
+ ACLOCAL=aclocal-1.12
+ echo "yes (1.12)"
+elif (automake-1.13 --version) < /dev/null > /dev/null 2>&1; then
+ AUTOMAKE=automake-1.13
+ ACLOCAL=aclocal-1.13
+ echo "yes (1.13)"
+elif (automake-1.14 --version) < /dev/null > /dev/null 2>&1; then
+ AUTOMAKE=automake-1.14
+ ACLOCAL=aclocal-1.14
+ echo "yes (1.14)"
elif (automake-1.6 --version) < /dev/null > /dev/null 2>&1; then
AUTOMAKE=automake-1.6
ACLOCAL=aclocal-1.6

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:df9758e7c444d367d6fb5d0c816fd2c479dd8cd9e2aa5c9a82bdf4c898e1d983
size 11168623

View File

@ -0,0 +1,16 @@
-------------------------------------------------------------------
Sun Jul 8 23:29:59 UTC 2012 - jw@suse.com
- upgrade to 2.0, added autoconf/automake support
- linking with gthread-2.0
-------------------------------------------------------------------
Sun Jul 8 21:25:02 UTC 2012 - jw@suse.com
- fixed missing intltool and SUSE_ASNEEDED.
-------------------------------------------------------------------
Wed Oct 12 20:43:26 UTC 2011 - dmacvicar@suse.de
- initial package

View File

@ -0,0 +1,75 @@
#
# spec file for package
#
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
# norootforbuild
# bootchk-resynthesizer-v2.0-1-ge637010.tar.gz
Name: gimp-plugin-resynthesizer
#global gitrev 72f3655
#global revdate 20110906
#global basever 1.0.1
%global gitrev e637010
%global revdate 20120708
%global basever 2.0
Version: %{basever}_%{revdate}_%{gitrev}
Release: 0
License: GPL-3.0+
Summary: Suite of gimp plugins for texture synthesis
Url: https://github.com/bootchk/resynthesizer
Group: Productivity/Graphics/Bitmap Editors
Source0: bootchk-resynthesizer-v%{basever}-1-g%{gitrev}.tar.gz
Patch1: automake12.diff
BuildRequires: gimp-devel gcc gimp
BuildRequires: intltool autoconf automake glib2-devel
#PreReq:
#Provides:
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
This package is a set of plugins for use with the Gimp program.
The package includes:
- resynthesizer plugin engine (without a GUI)
- resynthesizer-gui plugin control panel for the engine
- various plugins (in Python language) that call the resynthesizer engine
%prep
%setup -n bootchk-resynthesizer-%{gitrev}
# automake12.diff
%patch1 -p1
%build
./autogen.sh
%configure
env SUSE_ASNEEDED=0 make %{?_smp_mflags} CFLAGS="-lm -lgthread-2.0 $CFLAGS"
%install
%make_install
%find_lang resynthesizer
%clean
%{?buildroot:%__rm -rf "%{buildroot}"}
%files -f resynthesizer.lang
%defattr(-,root,root)
%doc ChangeLog README COPYING
%{_libdir}/gimp/2.0/plug-ins/*
%dir %{_datadir}/resynthesizer
%{_datadir}/resynthesizer/*
%changelog