Browse Source

initial package creation

Signed-off-by: Toshaan Bharvani <toshaan@powerel.org>
master
Toshaan Bharvani 2 years ago
commit
cbdf4c93b2
  1. 30
      SOURCES/5880e6e692823f45935018c4528ce086daa6c295.patch
  2. 258
      SOURCES/ebe9cf2a7c0262eb638487938a78830d2b86d27c.patch
  3. 636
      SPECS/nemo-extensions.spec

30
SOURCES/5880e6e692823f45935018c4528ce086daa6c295.patch

@ -0,0 +1,30 @@ @@ -0,0 +1,30 @@
From 5880e6e692823f45935018c4528ce086daa6c295 Mon Sep 17 00:00:00 2001
From: Leigh Scott <leigh123linux@fedoraproject.org>
Date: Tue, 23 Nov 2021 16:57:54 +0000
Subject: [PATCH] Fix import error (#434)

Fixes:

$ nemo-preview
Cjs-Message: 13:54:44.506: JS WARNING: [/usr/share/nemo-preview/js/viewers/gst.js 34]: Requiring Gtk but it has 3 versions available; use imports.gi.versions to pick one

(nemo-preview-start:50721): Cjs-CRITICAL **: 13:54:44.507: JS ERROR: Error: Requiring Gtk, version none: Requiring namespace 'Gdk' version '4.0', but '3.0' is already loaded
@/usr/share/nemo-preview/js/viewers/gst.js:34:13

/usr/bin/nemo-preview: line 15: 50721 Segmentation fault (core dumped) /usr/libexec/nemo-preview-start
---
nemo-preview/src/js/viewers/gst.js | 1 +
1 file changed, 1 insertion(+)

diff --git a/nemo-preview/src/js/viewers/gst.js b/nemo-preview/src/js/viewers/gst.js
index 7f113b95..33216cc5 100644
--- a/nemo-preview/src/js/viewers/gst.js
+++ b/nemo-preview/src/js/viewers/gst.js
@@ -26,6 +26,7 @@
*/
imports.gi.versions.ClutterGst = '3.0';
+imports.gi.versions.Gtk = '3.0';
imports.gi.versions.Gdk = '3.0';
const ClutterGst = imports.gi.ClutterGst;
const Clutter = imports.gi.Clutter;

258
SOURCES/ebe9cf2a7c0262eb638487938a78830d2b86d27c.patch

@ -0,0 +1,258 @@ @@ -0,0 +1,258 @@
From ebe9cf2a7c0262eb638487938a78830d2b86d27c Mon Sep 17 00:00:00 2001
From: Michael Webster <miketwebster@gmail.com>
Date: Tue, 26 Apr 2022 14:08:22 -0400
Subject: [PATCH] nemo-preview.c: Require gtk3 for all js imports.

Move gtk before any other gtk/gdk imports to make sure
they end up the proper versions as well.

Ref: #449
---
nemo-preview/src/js/ui/application.js | 4 +++-
nemo-preview/src/js/ui/fallbackRenderer.js | 2 +-
nemo-preview/src/js/ui/main.js | 2 +-
nemo-preview/src/js/ui/mainWindow.js | 3 ++-
nemo-preview/src/js/ui/spinnerBox.js | 3 ++-
nemo-preview/src/js/ui/utils.js | 4 +++-
nemo-preview/src/js/viewers/audio.js | 4 +++-
nemo-preview/src/js/viewers/font.js | 4 +++-
nemo-preview/src/js/viewers/gst.js | 2 +-
nemo-preview/src/js/viewers/html.js | 3 ++-
nemo-preview/src/js/viewers/image.js | 3 ++-
nemo-preview/src/js/viewers/text.js | 3 ++-
nemo-preview/src/js/viewers/xreader.js | 3 ++-
13 files changed, 27 insertions(+), 13 deletions(-)

diff --git a/nemo-preview/src/js/ui/application.js b/nemo-preview/src/js/ui/application.js
index 35bbce03..ed1c1a4b 100644
--- a/nemo-preview/src/js/ui/application.js
+++ b/nemo-preview/src/js/ui/application.js
@@ -25,6 +25,9 @@
*
*/
+imports.gi.versions.Gtk = '3.0';
+const Gtk = imports.gi.Gtk;
+
const Lang = imports.lang;
// util imports
@@ -32,7 +35,6 @@ const Path = imports.util.path;
// gi imports
const GLib = imports.gi.GLib;
-const Gtk = imports.gi.Gtk;
const Gdk = imports.gi.Gdk;
const Gio = imports.gi.Gio;
diff --git a/nemo-preview/src/js/ui/fallbackRenderer.js b/nemo-preview/src/js/ui/fallbackRenderer.js
index 6350333b..68fd3ee4 100644
--- a/nemo-preview/src/js/ui/fallbackRenderer.js
+++ b/nemo-preview/src/js/ui/fallbackRenderer.js
@@ -26,9 +26,9 @@
*/
imports.gi.versions.Gtk = '3.0';
+const Gtk = imports.gi.Gtk;
const Gio = imports.gi.Gio;
-const Gtk = imports.gi.Gtk;
const GtkClutter = imports.gi.GtkClutter;
const NemoPreview = imports.gi.NemoPreview;
diff --git a/nemo-preview/src/js/ui/main.js b/nemo-preview/src/js/ui/main.js
index 8badc675..ed239423 100644
--- a/nemo-preview/src/js/ui/main.js
+++ b/nemo-preview/src/js/ui/main.js
@@ -26,12 +26,12 @@
*/
imports.gi.versions.Gtk = '3.0';
+const Gtk = imports.gi.Gtk;
const Format = imports.format;
const Gettext = imports.gettext;
const GLib = imports.gi.GLib;
-const Gtk = imports.gi.Gtk;
const Application = imports.ui.application;
const Path = imports.util.path;
diff --git a/nemo-preview/src/js/ui/mainWindow.js b/nemo-preview/src/js/ui/mainWindow.js
index f70c3060..797ea6f3 100644
--- a/nemo-preview/src/js/ui/mainWindow.js
+++ b/nemo-preview/src/js/ui/mainWindow.js
@@ -25,7 +25,9 @@
*
*/
+imports.gi.versions.Gtk = '3.0';
imports.gi.versions.GdkX11 = '3.0';
+const Gtk = imports.gi.Gtk;
const Gio = imports.gi.Gio;
const GLib = imports.gi.GLib;
@@ -42,7 +44,6 @@ GLib.setenv("CLUTTER_SCALE", Math.max(s, 1).toString(), true);
const GdkX11 = imports.gi.GdkX11;
const GdkPixbuf = imports.gi.GdkPixbuf;
-const Gtk = imports.gi.Gtk;
const GtkClutter = imports.gi.GtkClutter;
const Clutter = imports.gi.Clutter;
const Pango = imports.gi.Pango;
diff --git a/nemo-preview/src/js/ui/spinnerBox.js b/nemo-preview/src/js/ui/spinnerBox.js
index dc29c94b..783e6056 100644
--- a/nemo-preview/src/js/ui/spinnerBox.js
+++ b/nemo-preview/src/js/ui/spinnerBox.js
@@ -24,10 +24,11 @@
* Authors: Cosimo Cecchi <cosimoc@redhat.com>
*
*/
+imports.gi.versions.Gtk = '3.0';
+const Gtk = imports.gi.Gtk;
const Gettext = imports.gettext.domain('nemo-extensions');
const _ = Gettext.gettext;
-const Gtk = imports.gi.Gtk;
const GtkClutter = imports.gi.GtkClutter;
const Tweener = imports.ui.tweener;
diff --git a/nemo-preview/src/js/ui/utils.js b/nemo-preview/src/js/ui/utils.js
index dec34c68..2a4e2d04 100644
--- a/nemo-preview/src/js/ui/utils.js
+++ b/nemo-preview/src/js/ui/utils.js
@@ -25,8 +25,10 @@
*
*/
-const Gdk = imports.gi.Gdk;
+imports.gi.versions.Gtk = '3.0';
+
const Gtk = imports.gi.Gtk;
+const Gdk = imports.gi.Gdk;
const Lang = imports.lang;
diff --git a/nemo-preview/src/js/viewers/audio.js b/nemo-preview/src/js/viewers/audio.js
index eb2b5414..bb589eee 100644
--- a/nemo-preview/src/js/viewers/audio.js
+++ b/nemo-preview/src/js/viewers/audio.js
@@ -25,11 +25,13 @@
*
*/
+imports.gi.versions.Gtk = '3.0';
imports.gi.versions.ClutterGst = '3.0';
+
+const Gtk = imports.gi.Gtk;
const GdkPixbuf = imports.gi.GdkPixbuf;
const Gio = imports.gi.Gio;
const Gst = imports.gi.Gst;
-const Gtk = imports.gi.Gtk;
const GtkClutter = imports.gi.GtkClutter;
const NemoPreview = imports.gi.NemoPreview;
diff --git a/nemo-preview/src/js/viewers/font.js b/nemo-preview/src/js/viewers/font.js
index 9b4d6517..19e0a4d2 100644
--- a/nemo-preview/src/js/viewers/font.js
+++ b/nemo-preview/src/js/viewers/font.js
@@ -25,13 +25,15 @@
*
*/
+imports.gi.versions.Gtk = '3.0';
+const Gtk = imports.gi.Gtk;
+
const MimeHandler = imports.ui.mimeHandler;
const Utils = imports.ui.utils;
const Lang = imports.lang;
const GtkClutter = imports.gi.GtkClutter;
-const Gtk = imports.gi.Gtk;
const GLib = imports.gi.GLib;
const NemoPreview = imports.gi.NemoPreview;
diff --git a/nemo-preview/src/js/viewers/gst.js b/nemo-preview/src/js/viewers/gst.js
index 33216cc5..f403fa6f 100644
--- a/nemo-preview/src/js/viewers/gst.js
+++ b/nemo-preview/src/js/viewers/gst.js
@@ -28,11 +28,11 @@
imports.gi.versions.ClutterGst = '3.0';
imports.gi.versions.Gtk = '3.0';
imports.gi.versions.Gdk = '3.0';
+const Gtk = imports.gi.Gtk;
const ClutterGst = imports.gi.ClutterGst;
const Clutter = imports.gi.Clutter;
const Gdk = imports.gi.Gdk;
const GObject = imports.gi.GObject;
-const Gtk = imports.gi.Gtk;
const GtkClutter = imports.gi.GtkClutter;
const Lang = imports.lang;
diff --git a/nemo-preview/src/js/viewers/html.js b/nemo-preview/src/js/viewers/html.js
index 4b133b9b..753fc98d 100644
--- a/nemo-preview/src/js/viewers/html.js
+++ b/nemo-preview/src/js/viewers/html.js
@@ -25,10 +25,11 @@
*
*/
+imports.gi.versions.Gtk = '3.0';
imports.gi.versions.WebKit2 = '4.0';
-const GtkClutter = imports.gi.GtkClutter;
const Gtk = imports.gi.Gtk;
const GLib = imports.gi.GLib;
+const GtkClutter = imports.gi.GtkClutter;
const WebKit = imports.gi.WebKit2;
const NemoPreview = imports.gi.NemoPreview;
diff --git a/nemo-preview/src/js/viewers/image.js b/nemo-preview/src/js/viewers/image.js
index 08aacde7..4dc45968 100644
--- a/nemo-preview/src/js/viewers/image.js
+++ b/nemo-preview/src/js/viewers/image.js
@@ -25,9 +25,10 @@
*
*/
+imports.gi.versions.Gtk = '3.0';
+const Gtk = imports.gi.Gtk;
const GdkPixbuf = imports.gi.GdkPixbuf;
const GtkClutter = imports.gi.GtkClutter;
-const Gtk = imports.gi.Gtk;
const GLib = imports.gi.GLib;
const Gettext = imports.gettext.domain('nemo-extensions');
diff --git a/nemo-preview/src/js/viewers/text.js b/nemo-preview/src/js/viewers/text.js
index 8b2baf94..73f4ad9d 100644
--- a/nemo-preview/src/js/viewers/text.js
+++ b/nemo-preview/src/js/viewers/text.js
@@ -25,10 +25,11 @@
*
*/
+imports.gi.versions.Gtk = '3.0';
imports.gi.versions.GtkSource = '4';
-const GtkClutter = imports.gi.GtkClutter;
const Gtk = imports.gi.Gtk;
+const GtkClutter = imports.gi.GtkClutter;
const GLib = imports.gi.GLib;
const GtkSource = imports.gi.GtkSource;
const Gio = imports.gi.Gio;
diff --git a/nemo-preview/src/js/viewers/xreader.js b/nemo-preview/src/js/viewers/xreader.js
index 5875db88..27b3b62d 100644
--- a/nemo-preview/src/js/viewers/xreader.js
+++ b/nemo-preview/src/js/viewers/xreader.js
@@ -25,9 +25,10 @@
*
*/
+imports.gi.versions.Gtk = '3.0';
+const Gtk = imports.gi.Gtk;
const EvDoc = imports.gi.XreaderDocument;
const EvView = imports.gi.XreaderView;
-const Gtk = imports.gi.Gtk;
const GtkClutter = imports.gi.GtkClutter;
const NemoPreview = imports.gi.NemoPreview;

636
SPECS/nemo-extensions.spec

@ -0,0 +1,636 @@ @@ -0,0 +1,636 @@
# Don't bother building debug packages as koji bitches about n-v-r from nemo package
%global debug_package %{nil}

Name: nemo-extensions
Version: 5.2.0
Release: 4%{?dist}
Summary: Extensions for Nemo

License: GPLv2+ and LGPLv2
URL: https://github.com/linuxmint/%{name}
Source0: %{url}/archive/%{version}/%{name}-%{version}.tar.gz
Patch0: %{url}/commit/5880e6e692823f45935018c4528ce086daa6c295.patch
Patch1: %{url}/commit/ebe9cf2a7c0262eb638487938a78830d2b86d27c.patch

ExcludeArch: %{ix86}

BuildRequires: make
BuildRequires: desktop-file-utils
BuildRequires: gpgme-devel
BuildRequires: pkgconfig(cryptui-0.0)
BuildRequires: pkgconfig(gnome-keyring-1)
BuildRequires: pkgconfig(gcr-3)
BuildRequires: pkgconfig(libnemo-extension) >= 5.2.0
BuildRequires: python3-distutils-extra
BuildRequires: python3-devel
BuildRequires: python3-setuptools
BuildRequires: pkgconfig(pygobject-3.0)
BuildRequires: gnome-common
BuildRequires: intltool
BuildRequires: meson
BuildRequires: pkgconfig(gtk-doc)
BuildRequires: pkgconfig(libnotify)
BuildRequires: pkgconfig(cjs-1.0) >= 5.2.0
BuildRequires: pkgconfig(xreader-view-1.5)
BuildRequires: pkgconfig(libmusicbrainz5)
BuildRequires: pkgconfig(gstreamer-plugins-base-1.0)
BuildRequires: pkgconfig(webkit2gtk-4.0)
BuildRequires: pkgconfig(clutter-gtk-1.0)
BuildRequires: pkgconfig(clutter-gst-3.0)
BuildRequires: pkgconfig(gtksourceview-4)
BuildRequires: perl(XML::Parser)

%description
Extensions for Nemo

%package -n nemo-audio-tab
Summary: Audio tag information extension for Nemo
License: GPLv3+
BuildArch: noarch
Requires: python3-mutagen
Requires: nemo-python

%description -n nemo-audio-tab
nemo-audio-tab is an extension to view audio tag information from the properties tab.

%package -n nemo-pastebin
Summary: Pastebin extension for Nemo
License: GPLv2+
BuildArch: noarch
Requires: pastebinit
Requires: nemo-python

%description -n nemo-pastebin
nemo-pastebin is an extension for the Nemo file manager, which allows
users to send files to pastebins just a right-click away.

%package -n nemo-fileroller
Summary: File Roller extension for Nemo
License: GPLv2+
Requires: file-roller

%description -n nemo-fileroller
This package contains the file-roller extension for the Nemo.

%package -n nemo-python
Summary: Python scripting extension for Nemo
License: GPLv2+
Obsoletes: python2-nemo < %{version}-%{release}
Obsoletes: python3-nemo < %{version}-%{release}
Provides: python3-nemo = %{version}-%{release}
Requires: nemo >= 4.6.0
Requires: python3-gobject-base

%description -n nemo-python
Python scripting extension for Nemo

%package -n nemo-python-devel
Summary: Python scripting extension for Nemo
License: GPLv2+
Obsoletes: python2-nemo-devel < %{version}-%{release}
Obsoletes: python3-nemo-devel < %{version}-%{release}
Requires: nemo-python%{?_isa} = %{version}-%{release}

%description -n nemo-python-devel
Python scripting extension for Nemo

%package -n nemo-terminal
Summary: Embedded terminal window for Nemo
License: GPLv3+
BuildArch: noarch
Requires: vte291
Requires: nemo-python = %{version}-%{release}

%description -n nemo-terminal
Embedded terminal window for Nemo

%package -n nemo-preview
Summary: A quick previewer for Nemo
License: GPLv2+
Requires: nemo

%description -n nemo-preview
Nemo Preview is a GtkClutter and Javascript-based quick previewer
for Nemo.
It is capable of previewing documents, PDFs, sound and video files,
some text files, and possibly others in the future.

To activate the preview, left-click the file and hit space.
The preview can be closed by hitting space again, or escape.

%package -n nemo-emblems
Summary: Emblem support for nemo
License: GPLv3+
BuildArch: noarch
Requires: nemo-python = %{version}-%{release}

%description -n nemo-emblems
Restores the emblems functionality that used to be in GNOME 2.

%package -n nemo-image-converter
Summary: Nemo extension to mass resize images
Requires: ImageMagick
License: GPLv3+

%description -n nemo-image-converter
Adds a "Resize Images..." menu item to the context menu.
This opens a dialog where you set the desired image size and file name.

%package -n nemo-compare
Summary: Context menu comparison extension for nemo
License: GPLv3+
BuildArch: noarch
Requires: nemo-python = %{version}-%{release}
Requires: meld

%description -n nemo-compare
Context menu comparison extension for Nemo file manager.

%package -n nemo-seahorse
Summary: PGP encryption and signing for Nemo
License: GPLv2+ and LGPLv2
Requires: seahorse%{?_isa}

%description -n nemo-seahorse
Seahorse nemo is an extension for nemo which allows encryption
and decryption of OpenPGP files using GnuPG.

%prep
%autosetup -p1

%build
pushd nemo-audio-tab
%py3_build
popd

pushd nemo-pastebin
%py3_build
popd

pushd nemo-fileroller
%meson
%meson_build
popd

pushd nemo-python
%meson
%meson_build
popd

pushd nemo-terminal
%py3_build
popd

pushd nemo-preview
%meson
%meson_build
popd

pushd nemo-emblems
%py3_build
popd

pushd nemo-image-converter
%meson
%meson_build
popd

pushd nemo-compare
%py3_build
popd

pushd nemo-seahorse
%meson
%meson_build
popd

%install
pushd nemo-audio-tab
%py3_install
popd

pushd nemo-pastebin
%py3_install
popd

pushd nemo-fileroller
%meson_install
popd

pushd nemo-python
%meson_install
popd

pushd nemo-terminal
%py3_install
popd

pushd nemo-preview
%meson_install
popd

pushd nemo-emblems
%py3_install
popd

pushd nemo-image-converter
%meson_install
popd

pushd nemo-compare
%py3_install
popd

pushd nemo-seahorse
%meson_install
popd

rm -rf %{buildroot}/%{_datadir}/doc/nemo-python/

desktop-file-install \
--delete-original \
--dir=%{buildroot}%{_datadir}/applications \
%{buildroot}/%{_datadir}/applications/nemo-seahorse-pgp-*.desktop

%find_lang nemo-preview

%files -n nemo-audio-tab
%license nemo-audio-tab/COPYING.GPL3
%{_datadir}/nemo-python/extensions/nemo-audio-tab.py
%{_datadir}/nemo-audio-tab/nemo-audio-tab.glade
%{python3_sitelib}/nemo_audio_tab-%{version}-py%{python3_version}.egg-info/


%files -n nemo-pastebin
%doc nemo-pastebin/README
%doc nemo-pastebin/NEWS
%license nemo-pastebin/COPYING
%{_bindir}/nemo-pastebin-configurator
%{_datadir}/nemo-python/extensions/nemo-pastebin.py
%{python3_sitelib}/nemo_pastebin-%{version}-py%{python3_version}.egg-info/
%{_datadir}/glib-2.0/schemas/nemo-pastebin.gschema.xml
%{_datadir}/nemo-pastebin/
%{_datadir}/icons/hicolor/*/apps/nemo-pastebin.*

%files -n nemo-fileroller
%doc nemo-fileroller/README
%license nemo-fileroller/COPYING
%{_libdir}/nemo/extensions-3.0/libnemo-fileroller.so

%files -n nemo-python
%doc nemo-python/README
%doc nemo-python/examples
%license nemo-python/COPYING
%{_libdir}/nemo/extensions-3.0/libnemo-python.so
%{_datadir}/nemo-python/
%exclude %{_datadir}/nemo-python/extensions/*

%files -n nemo-python-devel
%{_libdir}/pkgconfig/nemo-python.pc

%files -n nemo-terminal
%doc nemo-terminal/README
%license nemo-terminal/COPYING
%{_bindir}/nemo-terminal-prefs
%{_datadir}/nemo-python/extensions/nemo_terminal.py
%{_datadir}/nemo-terminal/
%{_datadir}/glib-2.0/schemas/org.nemo.extensions.nemo-terminal.gschema.xml
%{python3_sitelib}/nemo_terminal-%{version}-py%{python3_version}.egg-info/

%files -n nemo-preview -f nemo-preview.lang
%doc nemo-preview/README
%license nemo-preview/COPYING
%{_bindir}/nemo-preview
%{_libdir}/nemo-preview/
%{_libexecdir}/nemo-preview-start
%{_datadir}/nemo-preview/
%{_datadir}/dbus-1/services/org.nemo.Preview.service

%files -n nemo-emblems
%license nemo-emblems/COPYING.GPL3
%{_datadir}/nemo-python/extensions/nemo-emblems.py
%{python3_sitelib}/nemo_emblems-%{version}-py%{python3_version}.egg-info/

%files -n nemo-image-converter
%doc nemo-image-converter/README
%license nemo-image-converter/COPYING
%{_libdir}/nemo/extensions-3.0/libnemo-image-converter.so
%{_datadir}/nemo-image-converter/

%files -n nemo-compare
%{_bindir}/nemo-compare-preferences
%{_datadir}/nemo-python/extensions/nemo-compare.py
%{_datadir}/nemo-compare/nemo-compare-preferences.py
%{_datadir}/nemo-compare/utils.py*
%{python3_sitelib}/nemo_compare-%{version}-py%{python3_version}.egg-info/

%files -n nemo-seahorse
%doc nemo-seahorse/{AUTHORS,COPYING,README,NEWS,ChangeLog}
%{_bindir}/nemo-seahorse-tool
%{_libdir}/nemo/extensions-3.0/libnemo-seahorse.so
%{_datadir}/applications/nemo-seahorse-pgp-*.desktop
%{_datadir}/glib-2.0/schemas/org.nemo.plugins.seahorse*gschema.xml
%{_datadir}/nemo-seahorse/
%{_mandir}/man1/nemo-seahorse-tool.1.*

%changelog
* Mon Jun 06 2022 Leigh Scott <leigh123linux@gmail.com> - 5.2.0-4
- nemo-preview: Fix import error

* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 5.2.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild

* Tue Nov 23 2021 Leigh Scott <leigh123linux@gmail.com> - 5.2.0-2
- nemo-preview: Fix import error

* Fri Nov 19 2021 Leigh Scott <leigh123linux@gmail.com> - 5.2.0-1
- Update to 5.2.0 release

* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 5.0.0-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild

* Fri Jul 09 2021 Leigh Scott <leigh123linux@gmail.com> - 5.0.0-4
- Fix gtk import

* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 5.0.0-3
- Rebuilt for Python 3.10

* Tue Jun 01 2021 Leigh Scott <leigh123linux@gmail.com> - 5.0.0-2
- rebuilt

* Mon May 31 2021 Leigh Scott <leigh123linux@gmail.com> - 5.0.0-1
- Update to 5.0.0 release

* Fri May 07 2021 Leigh Scott <leigh123linux@gmail.com> - 4.8.0-3
- Rebuilt

* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.8.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild

* Thu Nov 26 2020 Leigh Scott <leigh123linux@gmail.com> - 4.8.0-1
- Update to 4.8.0 release

* Fri Oct 23 2020 Leigh Scott <leigh123linux@gmail.com> - 4.6.0-5.20200922gite0f0f92
- Update to latest git

* Sun Sep 20 2020 Leigh Scott <leigh123linux@gmail.com> - 4.6.0-4
- Switch to gjs f34+

* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.6.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild

* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 4.6.0-2
- Rebuilt for Python 3.9

* Wed May 13 2020 Leigh Scott <leigh123linux@gmail.com> - 4.6.0-1
- Update to 4.6.0 release

* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.4.0-7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild

* Thu Jan 23 2020 Leigh Scott <leigh123linux@googlemail.com> - 4.4.0-6
- Add patch to fix gcc-10 compile issue

* Thu Jan 23 2020 Leigh Scott <leigh123linux@googlemail.com> - 4.4.0-5
- Workaround gcc-10 issue till upstream addresses it

* Fri Dec 13 2019 FeRD (Frank Dana) <ferdnyc@gmail.com> - 4.4.0-4
- nemo-python: Add provides for python3-nemo, required by some
legacy dependent packages

* Fri Dec 13 2019 Leigh Scott <leigh123linux@googlemail.com> - 4.4.0-3
- Add nemo-audio-tab

* Thu Nov 21 2019 Leigh Scott <leigh123linux@googlemail.com> - 4.4.0-2
- Fix python embed issue

* Sat Nov 16 2019 Leigh Scott <leigh123linux@googlemail.com> - 4.4.0-1
- Update to 4.4.0 release

* Tue Nov 05 2019 Leigh Scott <leigh123linux@googlemail.com> - 4.2.0-5
- Fix nemo-python requires

* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 4.2.0-4
- Rebuilt for Python 3.8

* Thu Aug 08 2019 FeRD (Frank Dana) <ferdnyc@gmail.com> - 4.2.0-3
- Rename Python extension package back to nemo-python

* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.2.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild

* Sun Jun 23 2019 Leigh Scott <leigh123linux@googlemail.com> - 4.2.0-1
- Update to 4.2.0 release

* Thu Jun 06 2019 Leigh Scott <leigh123linux@gmail.com> - 4.0.0-4
- Readd nemo-seahorse (rhbz #1716999)

* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild

* Thu Nov 15 2018 Leigh Scott <leigh123linux@googlemail.com> - 4.0.0-2
- Fix emblem locale

* Thu Nov 01 2018 Leigh Scott <leigh123linux@googlemail.com> - 4.0.0-1
- Update to 4.0.0 release

* Mon Jul 16 2018 Leigh Scott <leigh123linux@googlemail.com> - 3.8.0-6
- Swap to python2 sitearch macro

* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.8.0-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild

* Mon Jun 18 2018 Leigh Scott <leigh123linux@googlemail.com> - 3.8.0-4
- Fix nemo-terminal

* Mon May 07 2018 Leigh Scott <leigh123linux@googlemail.com> - 3.8.0-3
- Add provides for nemo-python

* Tue May 01 2018 Leigh Scott <leigh123linux@googlemail.com> - 3.8.0-2
- Don't bother building debug packages as koji bitches about n-v-r from nemo package

* Tue May 01 2018 Leigh Scott <leigh123linux@googlemail.com> - 3.8.0-1
- Update to 3.8.0 release

* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.6.0-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild

* Fri Feb 02 2018 Rex Dieter <rdieter@fedoraproject.org> - 3.6.0-4
- use %%python_provide macro (so arch'd provides are included too)
- tighten subpkg deps

* Thu Feb 01 2018 Leigh Scott <leigh123linux@googlemail.com> - 3.6.0-3
- Rename nemo-python to python2-nemo

* Tue Dec 12 2017 Leigh Scott <leigh123linux@googlemail.com> - 3.6.0-2
- Fix typelib issue

* Tue Oct 24 2017 Leigh Scott <leigh123linux@googlemail.com> - 3.6.0-1
- update to 3.6.0 release

* Sun Sep 03 2017 Björn Esser <besser82@fedoraproject.org> - 3.4.0-9
- Fix build

* Sun Sep 03 2017 Björn Esser <besser82@fedoraproject.org> - 3.4.0-8
- Use proper Python macros

* Sun Sep 03 2017 Björn Esser <besser82@fedoraproject.org> - 3.4.0-7
- Make sure we explicitly use Python 2

* Sun Sep 03 2017 Björn Esser <besser82@fedoraproject.org> - 3.4.0-6
- Adaptions for EPEL

* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.0-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild

* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.0-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild

* Fri Jun 09 2017 Leigh Scott <leigh123linux@googlemail.com> - 3.4.0-3
- add upstream fixes

* Wed May 31 2017 Leigh Scott <leigh123linux@googlemail.com> - 3.4.0-2
- add upstream fixes

* Thu May 04 2017 Leigh Scott <leigh123linux@googlemail.com> - 3.4.0-1
- update to 3.4.0 release

* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.1-0.2.20170131gitbefdb82
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild

* Tue Jan 31 2017 Leigh Scott <leigh123linux@googlemail.com> - 3.2.1-0.1.20170131gitbefdb82
- update to latest git

* Mon Nov 28 2016 leigh scott <leigh123linux@googlemail.com> - 3.2.0-2
- fix error on nemo-compare plugin name

* Mon Nov 07 2016 Leigh Scott <leigh123linux@googlemail.com> - 3.2.0-1
- update to 3.2.0 release

* Fri Jun 24 2016 Leigh Scott <leigh123linux@googlemail.com> - 3.0.0-2
- add upstream patches

* Sun Apr 24 2016 Leigh Scott <leigh123linux@googlemail.com> - 3.0.0-1
- update to 3.0.0 release

* Sun Apr 10 2016 Leigh Scott <leigh123linux@googlemail.com> - 2.8.x-10
- fix nemo-compare (bz 1323041)
- obsolete nemo-rabbitvcs

* Mon Mar 07 2016 Leigh Scott <leigh123linux@googlemail.com> - 2.8.x-9
- more epel7 fixes

* Mon Mar 07 2016 Leigh Scott <leigh123linux@googlemail.com> - 2.8.x-8
- fix epel7 build

* Sat Mar 05 2016 Leigh Scott <leigh123linux@googlemail.com> - 2.8.x-7
- fix nemo-rabbitvcs

* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.8.x-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild

* Tue Dec 29 2015 Leigh Scott <leigh123linux@googlemail.com> - 2.8.x-5
- switch to more secure webkit version

* Fri Dec 04 2015 Leigh Scott <leigh123linux@googlemail.com> - 2.8.x-4
- another friggin build fix for epel

* Fri Dec 04 2015 Leigh Scott <leigh123linux@googlemail.com> - 2.8.x-3
- remove pastebin and rabbitvcs extensions for epel

* Tue Nov 10 2015 Leigh Scott <leigh123linux@googlemail.com> - 2.8.x-2
- rebuilt

* Thu Oct 22 2015 Leigh Scott <leigh123linux@googlemail.com> - 2.8.x-1
- update to 2.8.0 release

* Sat Jul 25 2015 Leigh Scott <leigh123linux@googlemail.com> - 2.6.x-5
- build fixes

* Sat Jul 25 2015 Leigh Scott <leigh123linux@googlemail.com> - 2.6.x-4
- add nemo-compare

* Mon Jul 13 2015 Leigh Scott <leigh123linux@googlemail.com> - 2.6.x-3
- fix cd (nemo-terminal)

* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.x-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild

* Tue Jun 02 2015 Leigh Scott <leigh123linux@googlemail.com> - 2.6.x-1
- update to 2.6.x

* Thu Nov 27 2014 Haïkel Guémar <hguemar@fedoraproject.org> - 2.4.x-3
- Rebuilt against newer libmusicbrainz5 (required for nemo-preview)

* Thu Nov 13 2014 Leigh Scott <leigh123linux@googlemail.com> - 2.4.x-2
- change requires on nemo-terminal to vte3
- add patch to fix nemo-terminal

* Sat Nov 01 2014 Leigh Scott <leigh123linux@googlemail.com> - 2.4.x-1
- update to 2.4.x

* Tue Oct 21 2014 Leigh Scott <leigh123linux@googlemail.com> - 2.3.x-0.2.gited31dbd
- add noarch

* Tue Oct 21 2014 Leigh Scott <leigh123linux@googlemail.com> - 2.3.x-0.1.gited31dbd
- update to latest git
- add nemo-emblems
- add nemo-image-converter

* Sun Oct 19 2014 Leigh Scott <leigh123linux@googlemail.com> - 2.2.x-6
- patch nemo-preview for gjs changes (bz 1154111)

* Wed Oct 01 2014 Leigh Scott <leigh123linux@googlemail.com> - 2.2.x-5
- rebuilt

* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.x-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild

* Tue Jul 22 2014 Kalev Lember <kalevlember@gmail.com> - 2.2.x-3
- Rebuilt for gobject-introspection 1.41.4

* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.x-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild

* Mon Apr 14 2014 Leigh Scott <leigh123linux@googlemail.com> - 2.2.x-1
- update to 2.2.x

* Thu Feb 20 2014 Kalev Lember <kalevlember@gmail.com> - 2.0.0-0.6.git6c86726
- Rebuilt for cogl soname bump

* Mon Feb 10 2014 Peter Hutterer <peter.hutterer@redhat.com> - 2.0.0-0.5.git6c86726
- Rebuild for libevdev soname bump

* Fri Feb 07 2014 Leigh Scott <leigh123linux@googlemail.com> - 2.0.0-0.4.git6c86726
- rebuilt for new cogl .so version

* Sat Nov 23 2013 Leigh Scott <leigh123linux@googlemail.com> - 2.0.0-0.3.git6c86726
- add requires python-simplejson to nemo-rabbitvcs

* Sat Nov 23 2013 Leigh Scott <leigh123linux@googlemail.com> - 2.0.0-0.2.git6c86726
- add nemo-preview extension

* Thu Oct 31 2013 Leigh Scott <leigh123linux@googlemail.com> - 2.0.0-0.1.gitfd3cc88
- update to latest git
- add nemo-terminal extension

* Sun Oct 20 2013 Leigh Scott <leigh123linux@googlemail.com> - 1.8.0-0.6.git3e366de
- remove the seahorse extension because
it's broken and conflicts with seahorse-nautilus
(can't be bothered to fix it)

* Tue Oct 08 2013 Leigh Scott <leigh123linux@googlemail.com> - 1.8.0-0.5.git3e366de
- add nemo-rabbitvcs sub-package

* Tue Sep 24 2013 Leigh Scott <leigh123linux@googlemail.com> - 1.8.0-0.4.git3e366de
- clean up nemo-pastebin install

* Tue Sep 24 2013 Leigh Scott <leigh123linux@googlemail.com> - 1.8.0-0.3.git3e366de
- fix files listed twice

* Tue Sep 24 2013 Leigh Scott <leigh123linux@googlemail.com> - 1.8.0-0.2.git3e366de
- fix nemo-pastebin
- add python extensions directory

* Tue Sep 24 2013 Leigh Scott <leigh123linux@googlemail.com> - 1.8.0-0.1.git3e366de
- Initial build
Loading…
Cancel
Save