commit gnome-video-effects for openSUSE:Factory

2019-08-24 Thread root
Hello community,

here is the log from the commit of package gnome-video-effects for 
openSUSE:Factory checked in at 2019-08-24 18:41:03

Comparing /work/SRC/openSUSE:Factory/gnome-video-effects (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-video-effects.new.7948 (New)


Package is "gnome-video-effects"

Sat Aug 24 18:41:03 2019 rev:15 rq:724873 version:0.5.0

Changes:

--- /work/SRC/openSUSE:Factory/gnome-video-effects/gnome-video-effects.changes  
2019-08-16 15:29:26.389982066 +0200
+++ 
/work/SRC/openSUSE:Factory/.gnome-video-effects.new.7948/gnome-video-effects.changes
2019-08-24 18:41:07.313787832 +0200
@@ -1,0 +2,7 @@
+Mon Aug 19 19:56:16 UTC 2019 - Bjørn Lie 
+
+- Add gnome-video-effects-meson-pkgconfig-fix.patch: Various meson
+  improvements and fixes. Fixes a warning and a regression against
+  autotools packaging.
+
+---

New:

  gnome-video-effects-meson-pkgconfig-fix.patch



Other differences:
--
++ gnome-video-effects.spec ++
--- /var/tmp/diff_new_pack.eXXGu9/_old  2019-08-24 18:41:07.761787789 +0200
+++ /var/tmp/diff_new_pack.eXXGu9/_new  2019-08-24 18:41:07.769787788 +0200
@@ -24,6 +24,9 @@
 Group:  Productivity/Multimedia/Other
 URL:https://wiki.gnome.org/Projects/GnomeVideoEffects
 Source0:
https://download.gnome.org/sources/gnome-video-effects/0.5/%{name}-%{version}.tar.xz
+# PATCH-FIX-UPSTREAM gnome-video-effects-meson-pkgconfig-fix.patch -- Various 
meson improvements and fixes
+Patch0: gnome-video-effects-meson-pkgconfig-fix.patch
+
 BuildRequires:  intltool
 BuildRequires:  meson
 BuildRequires:  pkgconfig

++ gnome-video-effects-meson-pkgconfig-fix.patch ++
>From 81160d605423ab2d5b3f7e672f6f46feee80cc4b Mon Sep 17 00:00:00 2001
From: Jan Tojnar 
Date: Mon, 19 Aug 2019 19:12:01 +0200
Subject: [PATCH] build: Fix meson version warning

The following warning is produced when configuring:

WARNING: Project targetting '>= 0.43.0' but tried to use feature introduced in 
'0.50.0': install arg in configure_file
---
 meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meson.build b/meson.build
index 94b86e1..9b7e53f 100644
--- a/meson.build
+++ b/meson.build
@@ -1,6 +1,6 @@
 project('gnome-video-effects',
   version: '0.5.0',
-  meson_version: '>= 0.43.0'
+  meson_version: '>= 0.50.0',
 )
 
 gnome = import('gnome')
-- 
2.21.0


>From fb0cfa23e74ac49cc1c56b26227345e3bdafef1e Mon Sep 17 00:00:00 2001
From: Jan Tojnar 
Date: Mon, 19 Aug 2019 19:19:43 +0200
Subject: [PATCH] build: replace join_paths with operator

Meson 0.49 added a / operator which is much nicer to read and write.
---
 meson.build | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/meson.build b/meson.build
index 9b7e53f..408cd6b 100644
--- a/meson.build
+++ b/meson.build
@@ -7,9 +7,9 @@ gnome = import('gnome')
 i18n = import('i18n')
 
 prefix = get_option('prefix')
-datadir = join_paths(prefix, get_option('datadir'))
-pkgdatadir = join_paths(datadir, meson.project_name())
-pkgconfigdir = join_paths(datadir, 'pkgconfig')
+datadir = prefix / get_option('datadir')
+pkgdatadir = datadir / meson.project_name()
+pkgconfigdir = datadir / 'pkgconfig'
 
 subdir('effects')
 subdir('po')
@@ -23,6 +23,6 @@ conf.set('VERSION', meson.project_version())
 pkg = configure_file(configuration: conf,
  input: 'gnome-video-effects.pc.in',
  install: true,
- install_dir: join_paths(datadir, 'pkgconfig'),
+ install_dir: datadir / 'pkgconfig',
  output: 'gnome-video-effects.pc')
 
-- 
2.21.0


>From da6699b7a3bd1503b6be2a3231b8e292360211df Mon Sep 17 00:00:00 2001
From: Jan Tojnar 
Date: Mon, 19 Aug 2019 19:21:08 +0200
Subject: [PATCH] build: Use the pkgconfigdir variable

We have it so we might as well use it.
---
 meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meson.build b/meson.build
index 408cd6b..e2aa69a 100644
--- a/meson.build
+++ b/meson.build
@@ -23,6 +23,6 @@ conf.set('VERSION', meson.project_version())
 pkg = configure_file(configuration: conf,
  input: 'gnome-video-effects.pc.in',
  install: true,
- install_dir: datadir / 'pkgconfig',
+ install_dir: pkgconfigdir,
  output: 'gnome-video-effects.pc')
 
-- 
2.21.0


>From 955404195ada606819974dd63c48956f25611e14 Mon Sep 17 00:00:00 2001
From: Jan Tojnar 
Date: Mon, 19 Aug 2019 19:23:46 +0200
Subject: [PATCH] build: Fix effectsdir in .pc file
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

The meson port 

commit gnome-video-effects for openSUSE:Factory

2019-08-16 Thread root
Hello community,

here is the log from the commit of package gnome-video-effects for 
openSUSE:Factory checked in at 2019-08-16 15:29:25

Comparing /work/SRC/openSUSE:Factory/gnome-video-effects (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-video-effects.new.22127 (New)


Package is "gnome-video-effects"

Fri Aug 16 15:29:25 2019 rev:14 rq:723065 version:0.5.0

Changes:

--- /work/SRC/openSUSE:Factory/gnome-video-effects/gnome-video-effects.changes  
2018-03-08 10:44:43.948914518 +0100
+++ 
/work/SRC/openSUSE:Factory/.gnome-video-effects.new.22127/gnome-video-effects.changes
   2019-08-16 15:29:26.389982066 +0200
@@ -1,0 +2,8 @@
+Sat Aug 10 09:25:55 UTC 2019 - Bjørn Lie 
+
+- Update to version 0.5.0:
+  + Port to meson build system.
+  + Updated translations.
+- Add meson BuildRequires and macros.
+
+---

Old:

  gnome-video-effects-0.4.3.tar.xz

New:

  gnome-video-effects-0.5.0.tar.xz



Other differences:
--
++ gnome-video-effects.spec ++
--- /var/tmp/diff_new_pack.eSYVEY/_old  2019-08-16 15:29:27.161981842 +0200
+++ /var/tmp/diff_new_pack.eSYVEY/_new  2019-08-16 15:29:27.161981842 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package gnome-video-effects
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 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
@@ -12,19 +12,20 @@
 # 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/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 Name:   gnome-video-effects
-Version:0.4.3
+Version:0.5.0
 Release:0
 Summary:Collection of GStreamer effects
 License:GPL-2.0-or-later
 Group:  Productivity/Multimedia/Other
 URL:https://wiki.gnome.org/Projects/GnomeVideoEffects
-Source0:
http://download.gnome.org/sources/gnome-video-effects/0.4/%{name}-%{version}.tar.xz
+Source0:
https://download.gnome.org/sources/gnome-video-effects/0.5/%{name}-%{version}.tar.xz
 BuildRequires:  intltool
+BuildRequires:  meson
 BuildRequires:  pkgconfig
 BuildArch:  noarch
 
@@ -40,14 +41,14 @@
 A collection of GStreamer effects to be used in different GNOME Modules.
 
 %prep
-%setup -q
+%autosetup -p1
 
 %build
-%configure
-make %{?_smp_mflags}
+%meson
+%meson_build
 
 %install
-%make_install
+%meson_install
 
 %files
 %license COPYING

++ gnome-video-effects-0.4.3.tar.xz -> gnome-video-effects-0.5.0.tar.xz 
++
 14274 lines of diff (skipped)




commit gnome-video-effects for openSUSE:Factory

2018-03-08 Thread root
Hello community,

here is the log from the commit of package gnome-video-effects for 
openSUSE:Factory checked in at 2018-03-08 10:44:42

Comparing /work/SRC/openSUSE:Factory/gnome-video-effects (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-video-effects.new (New)


Package is "gnome-video-effects"

Thu Mar  8 10:44:42 2018 rev:13 rq:582753 version:0.4.3

Changes:

--- /work/SRC/openSUSE:Factory/gnome-video-effects/gnome-video-effects.changes  
2017-02-19 00:39:24.522123825 +0100
+++ 
/work/SRC/openSUSE:Factory/.gnome-video-effects.new/gnome-video-effects.changes 
2018-03-08 10:44:43.948914518 +0100
@@ -1,0 +2,5 @@
+Wed Feb 28 16:30:21 UTC 2018 - dims...@opensuse.org
+
+- Modernize spec-file by calling spec-cleaner
+
+---



Other differences:
--
++ gnome-video-effects.spec ++
--- /var/tmp/diff_new_pack.yjtmto/_old  2018-03-08 10:44:44.560892484 +0100
+++ /var/tmp/diff_new_pack.yjtmto/_new  2018-03-08 10:44:44.560892484 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gnome-video-effects
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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
@@ -20,13 +20,12 @@
 Version:0.4.3
 Release:0
 Summary:Collection of GStreamer effects
-License:GPL-2.0+
+License:GPL-2.0-or-later
 Group:  Productivity/Multimedia/Other
-Url:https://wiki.gnome.org/Projects/GnomeVideoEffects
+URL:https://wiki.gnome.org/Projects/GnomeVideoEffects
 Source0:
http://download.gnome.org/sources/gnome-video-effects/0.4/%{name}-%{version}.tar.xz
 BuildRequires:  intltool
-BuildRequires:  pkg-config
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  pkgconfig
 BuildArch:  noarch
 
 %description
@@ -51,12 +50,11 @@
 %make_install
 
 %files
-%defattr(-,root,root,-)
-%doc AUTHORS COPYING NEWS README
+%license COPYING
+%doc AUTHORS NEWS README
 %{_datadir}/%{name}/
 
 %files devel
-%defattr(-,root,root,-)
 %{_datadir}/pkgconfig/%{name}.pc
 
 %changelog




commit gnome-video-effects for openSUSE:Factory

2017-02-18 Thread root
Hello community,

here is the log from the commit of package gnome-video-effects for 
openSUSE:Factory checked in at 2017-02-19 00:39:23

Comparing /work/SRC/openSUSE:Factory/gnome-video-effects (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-video-effects.new (New)


Package is "gnome-video-effects"

Changes:

--- /work/SRC/openSUSE:Factory/gnome-video-effects/gnome-video-effects.changes  
2014-03-13 20:43:31.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.gnome-video-effects.new/gnome-video-effects.changes 
2017-02-19 00:39:24.522123825 +0100
@@ -1,0 +2,11 @@
+Thu Feb  9 16:10:03 UTC 2017 - zai...@opensuse.org
+
+- Update to version 0.4.3:
+  + Include effects in distribution tarball.
+- Changes from version 0.4.2:
+  + Correct spelling of inversion effect (bgo#707650).
+  + Use only POSIX sh syntax in create_effect_previews.sh.
+  + Updated translations.
+- Drop obsolete clean section.
+
+---

Old:

  gnome-video-effects-0.4.1.tar.xz

New:

  gnome-video-effects-0.4.3.tar.xz



Other differences:
--
++ gnome-video-effects.spec ++
--- /var/tmp/diff_new_pack.XwfdOB/_old  2017-02-19 00:39:24.906069822 +0100
+++ /var/tmp/diff_new_pack.XwfdOB/_new  2017-02-19 00:39:24.910069259 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gnome-video-effects
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 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
@@ -17,7 +17,7 @@
 
 
 Name:   gnome-video-effects
-Version:0.4.1
+Version:0.4.3
 Release:0
 Summary:Collection of GStreamer effects
 License:GPL-2.0+
@@ -50,9 +50,6 @@
 %install
 %make_install
 
-%clean
-rm -rf %{buildroot}
-
 %files
 %defattr(-,root,root,-)
 %doc AUTHORS COPYING NEWS README

++ gnome-video-effects-0.4.1.tar.xz -> gnome-video-effects-0.4.3.tar.xz 
++
 14275 lines of diff (skipped)




commit gnome-video-effects for openSUSE:Factory

2014-03-13 Thread h_root
Hello community,

here is the log from the commit of package gnome-video-effects for 
openSUSE:Factory checked in at 2014-03-13 20:43:30

Comparing /work/SRC/openSUSE:Factory/gnome-video-effects (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-video-effects.new (New)


Package is "gnome-video-effects"

Changes:

--- /work/SRC/openSUSE:Factory/gnome-video-effects/gnome-video-effects.changes  
2012-03-29 13:57:33.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.gnome-video-effects.new/gnome-video-effects.changes 
2014-03-13 20:43:31.0 +0100
@@ -1,0 +2,10 @@
+Mon Mar 10 07:51:31 UTC 2014 - dims...@opensuse.org
+
+- Update to version 0.4.1:
+  + Remove INSTALL from git.
+  + Update homepage location.
+  + Change timedelay effect to use 1 second delay (bgo#688818).
+  + Port create_effects_preview.sh to GStreamer 1.0 (bgo#681090).
+  + Updated translations.
+
+---

Old:

  gnome-video-effects-0.4.0.tar.xz

New:

  gnome-video-effects-0.4.1.tar.xz



Other differences:
--
++ gnome-video-effects.spec ++
--- /var/tmp/diff_new_pack.njd8aX/_old  2014-03-13 20:43:31.0 +0100
+++ /var/tmp/diff_new_pack.njd8aX/_new  2014-03-13 20:43:31.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gnome-video-effects
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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
@@ -17,12 +17,12 @@
 
 
 Name:   gnome-video-effects
-Version:0.4.0
+Version:0.4.1
 Release:0
 Summary:Collection of GStreamer effects
 License:GPL-2.0+
 Group:  Productivity/Multimedia/Other
-Url:http://live.gnome.org/GnomeVideoEffects
+Url:https://wiki.gnome.org/Projects/GnomeVideoEffects
 Source0:
http://download.gnome.org/sources/gnome-video-effects/0.4/%{name}-%{version}.tar.xz
 BuildRequires:  intltool
 BuildRequires:  pkg-config

++ gnome-video-effects-0.4.0.tar.xz -> gnome-video-effects-0.4.1.tar.xz 
++
 8498 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gnome-video-effects for openSUSE:Factory

2012-03-29 Thread h_root
Hello community,

here is the log from the commit of package gnome-video-effects for 
openSUSE:Factory checked in at 2012-03-29 13:57:30

Comparing /work/SRC/openSUSE:Factory/gnome-video-effects (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-video-effects.new (New)


Package is "gnome-video-effects", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/gnome-video-effects/gnome-video-effects.changes  
2011-09-23 02:01:08.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.gnome-video-effects.new/gnome-video-effects.changes 
2012-03-29 13:57:33.0 +0200
@@ -1,0 +2,8 @@
+Tue Mar 27 07:17:12 UTC 2012 - vu...@opensuse.org
+
+- Update to version 0.4.0:
+  + Add horizontal flip effect (bgo#666930)
+  + Overhaul build system.
+  + Updated translations.
+
+---

Old:

  gnome-video-effects-0.3.0.tar.bz2

New:

  gnome-video-effects-0.4.0.tar.xz



Other differences:
--
++ gnome-video-effects.spec ++
--- /var/tmp/diff_new_pack.x0iuFG/_old  2012-03-29 13:57:36.0 +0200
+++ /var/tmp/diff_new_pack.x0iuFG/_new  2012-03-29 13:57:36.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package gnome-video-effects
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 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
@@ -16,15 +16,14 @@
 #
 
 
-
 Name:   gnome-video-effects
-Version:0.3.0
-Release:1
-License:GPL-2.0+
+Version:0.4.0
+Release:0
 Summary:Collection of GStreamer effects
-Url:http://live.gnome.org/GnomeVideoEffects
+License:GPL-2.0+
 Group:  Productivity/Multimedia/Other
-Source0:
http://download.gnome.org/sources/gnome-video-effects/0.3/%{name}-%{version}.tar.bz2
+Url:http://live.gnome.org/GnomeVideoEffects
+Source0:
http://download.gnome.org/sources/gnome-video-effects/0.4/%{name}-%{version}.tar.xz
 BuildRequires:  intltool
 BuildRequires:  pkg-config
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -34,7 +33,6 @@
 A collection of GStreamer effects to be used in different GNOME Modules.
 
 %package devel
-License:GPL-2.0+
 Summary:Collection of GStreamer effects -- Development Files
 Group:  Development/Tools/Other
 Requires:   %{name} = %{version}

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gnome-video-effects for openSUSE:Factory

2011-12-06 Thread h_root
Hello community,

here is the log from the commit of package gnome-video-effects for 
openSUSE:Factory checked in at 2011-12-06 18:14:56

Comparing /work/SRC/openSUSE:Factory/gnome-video-effects (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-video-effects.new (New)


Package is "gnome-video-effects", Maintainer is ""

Changes:




Other differences:
--
++ gnome-video-effects.spec ++
--- /var/tmp/diff_new_pack.Xa7kIp/_old  2011-12-06 18:22:05.0 +0100
+++ /var/tmp/diff_new_pack.Xa7kIp/_new  2011-12-06 18:22:05.0 +0100
@@ -20,7 +20,7 @@
 Name:   gnome-video-effects
 Version:0.3.0
 Release:1
-License:GPLv2+
+License:GPL-2.0+
 Summary:Collection of GStreamer effects
 Url:http://live.gnome.org/GnomeVideoEffects
 Group:  Productivity/Multimedia/Other
@@ -34,7 +34,7 @@
 A collection of GStreamer effects to be used in different GNOME Modules.
 
 %package devel
-License:GPLv2+
+License:GPL-2.0+
 Summary:Collection of GStreamer effects -- Development Files
 Group:  Development/Tools/Other
 Requires:   %{name} = %{version}

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gnome-video-effects for openSUSE:Factory

2011-07-08 Thread h_root

Hello community,

here is the log from the commit of package gnome-video-effects for 
openSUSE:Factory
checked in at Fri Jul 8 09:50:14 CEST 2011.




--- GNOME/gnome-video-effects/gnome-video-effects.changes   2011-04-26 
20:42:21.0 +0200
+++ 
/mounts/work_src_done/STABLE/gnome-video-effects/gnome-video-effects.changes
2011-07-07 14:04:34.0 +0200
@@ -1,0 +2,9 @@
+Thu Jul  7 14:00:17 CEST 2011 - vu...@opensuse.org
+
+- Update to version 0.3.0:
+  + Add preview links to each of the effects.
+  + Add a small tool to generate previews for all effects.
+  + Build system fixes and improvements.
+  + Updated translations.
+
+---

calling whatdependson for head-i586


Old:

  gnome-video-effects-0.2.0.tar.bz2

New:

  gnome-video-effects-0.3.0.tar.bz2



Other differences:
--
++ gnome-video-effects.spec ++
--- /var/tmp/diff_new_pack.KVNbK0/_old  2011-07-08 09:49:54.0 +0200
+++ /var/tmp/diff_new_pack.KVNbK0/_new  2011-07-08 09:49:54.0 +0200
@@ -18,13 +18,13 @@
 
 
 Name:   gnome-video-effects
-Version:0.2.0
+Version:0.3.0
 Release:1
 License:GPLv2+
 Summary:Collection of GStreamer effects
 Url:http://live.gnome.org/GnomeVideoEffects
 Group:  Productivity/Multimedia/Other
-Source0:
http://ftp.gnome.org/pub/GNOME/sources/gnome-video-effects/0.2/%{name}-%{version}.tar.bz2
+Source0:
http://download.gnome.org/sources/gnome-video-effects/0.3/%{name}-%{version}.tar.bz2
 BuildRequires:  intltool
 BuildRequires:  pkg-config
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ gnome-video-effects-0.2.0.tar.bz2 -> gnome-video-effects-0.3.0.tar.bz2 
++
 20817 lines of diff (skipped)






Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gnome-video-effects for openSUSE:Factory

2011-04-28 Thread h_root

Hello community,

here is the log from the commit of package gnome-video-effects for 
openSUSE:Factory
checked in at Thu Apr 28 15:11:30 CEST 2011.




New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ 
/mounts/work_src_done/STABLE/gnome-video-effects/gnome-video-effects.changes
2011-04-26 20:42:21.0 +0200
@@ -0,0 +1,5 @@
+---
+Fri Mar  4 22:31:01 UTC 2011 - a...@mizerski.pl
+
+- New package, based on version 0.2.0.
+

calling whatdependson for head-i586


New:

  gnome-video-effects-0.2.0.tar.bz2
  gnome-video-effects.changes
  gnome-video-effects.spec



Other differences:
--
++ gnome-video-effects.spec ++
#
# spec file for package gnome-video-effects
#
# Copyright (c) 2011 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/
#



Name:   gnome-video-effects
Version:0.2.0
Release:1
License:GPLv2+
Summary:Collection of GStreamer effects
Url:http://live.gnome.org/GnomeVideoEffects
Group:  Productivity/Multimedia/Other
Source0:
http://ftp.gnome.org/pub/GNOME/sources/gnome-video-effects/0.2/%{name}-%{version}.tar.bz2
BuildRequires:  intltool
BuildRequires:  pkg-config
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildArch:  noarch

%description
A collection of GStreamer effects to be used in different GNOME Modules.

%package devel
License:GPLv2+
Summary:Collection of GStreamer effects -- Development Files
Group:  Development/Tools/Other
Requires:   %{name} = %{version}

%description devel
A collection of GStreamer effects to be used in different GNOME Modules.

%prep
%setup -q

%build
%configure
make %{?_smp_mflags}

%install
%make_install

%clean
rm -rf %{buildroot}

%files
%defattr(-,root,root,-)
%doc AUTHORS COPYING NEWS README
%{_datadir}/%{name}/

%files devel
%defattr(-,root,root,-)
%{_datadir}/pkgconfig/%{name}.pc

%changelog





Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org