forked from pool/nemiver
Accepting request 252376 from GNOME:Next
Push after minor spellfix OBS-URL: https://build.opensuse.org/request/show/252376 OBS-URL: https://build.opensuse.org/package/show/GNOME:Apps/nemiver?expand=0&rev=33
This commit is contained in:
parent
c242440379
commit
540c8a7815
3
nemiver-0.9.5.1411306867.91aaabf.tar.xz
Normal file
3
nemiver-0.9.5.1411306867.91aaabf.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:6ec930fa230290de1dd22ef1f3ab6685047cd36e0c3e19774a57e15172411949
|
||||||
|
size 2779228
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:33590e3964092cabb629a6ba8415786b054702063a944eca5fe4156048baf8d9
|
|
||||||
size 1396468
|
|
@ -1,3 +1,18 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Sep 24 13:00:14 UTC 2014 - dimstar@opensuse.org
|
||||||
|
|
||||||
|
- Update to version 0.9.5.1411306867.91aaabf:
|
||||||
|
+ Support VTE 2.91.
|
||||||
|
+ Updated translations.
|
||||||
|
- Replace pkgconfig(vte-2.90) BuildRequires with
|
||||||
|
pkgconfig(vte-2.91), following upstream.
|
||||||
|
- Introduce scm_bootstrap defines, allowing to easily
|
||||||
|
enable/disable the need to bootstrap (as the current tarball is a
|
||||||
|
git checkout):
|
||||||
|
+ set scm_bootstrap to 1.
|
||||||
|
+ Conditionally add gnome-common BuildRequires and call to
|
||||||
|
gnome-autogen.sh.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Dec 8 12:55:03 UTC 2013 - dimstar@opensuse.org
|
Sun Dec 8 12:55:03 UTC 2013 - dimstar@opensuse.org
|
||||||
|
|
||||||
|
20
nemiver.spec
20
nemiver.spec
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package nemiver
|
# spec file for package nemiver
|
||||||
#
|
#
|
||||||
# Copyright (c) 2013 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
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -16,14 +16,21 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
|
%define scm_bootstrap 1
|
||||||
|
|
||||||
Name: nemiver
|
Name: nemiver
|
||||||
Version: 0.9.5
|
Version: 0.9.5.1411306867.91aaabf
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Nemiver graphical debugger
|
Summary: Nemiver graphical debugger
|
||||||
License: GPL-2.0+
|
License: GPL-2.0+
|
||||||
Group: Development/Tools/Debuggers
|
Group: Development/Tools/Debuggers
|
||||||
Url: http://home.gna.org/nemiver/
|
Url: http://home.gna.org/nemiver/
|
||||||
Source0: http://download.gnome.org/sources/nemiver/0.9/%{name}-%{version}.tar.xz
|
# Currently no full URL, as we are using a git snapshot
|
||||||
|
#Source0: http://download.gnome.org/sources/nemiver/0.9/%{name}-%{version}.tar.xz
|
||||||
|
Source0: %{name}-%{version}.tar.xz
|
||||||
|
%if 0%{?scm_bootstrap}
|
||||||
|
BuildRequires: gnome-common
|
||||||
|
%endif
|
||||||
BuildRequires: boost-devel
|
BuildRequires: boost-devel
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: gcc-c++
|
BuildRequires: gcc-c++
|
||||||
@ -40,7 +47,7 @@ BuildRequires: pkgconfig(gsettings-desktop-schemas)
|
|||||||
BuildRequires: pkgconfig(gtkhex-3) >= 2.90
|
BuildRequires: pkgconfig(gtkhex-3) >= 2.90
|
||||||
BuildRequires: pkgconfig(gtkmm-3.0) >= 3.0
|
BuildRequires: pkgconfig(gtkmm-3.0) >= 3.0
|
||||||
BuildRequires: pkgconfig(gtksourceviewmm-3.0) >= 3.0
|
BuildRequires: pkgconfig(gtksourceviewmm-3.0) >= 3.0
|
||||||
BuildRequires: pkgconfig(vte-2.90) >= 0.28
|
BuildRequires: pkgconfig(vte-2.91) >= 0.28
|
||||||
Requires: gdb
|
Requires: gdb
|
||||||
Recommends: %{name}-lang
|
Recommends: %{name}-lang
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -69,6 +76,9 @@ This package contains the development files to build debugger backend.
|
|||||||
translation-update-upstream
|
translation-update-upstream
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
%if 0%{?scm_bootstrap}
|
||||||
|
NOCONFIGURE=1 gnome-autogen.sh
|
||||||
|
%endif
|
||||||
%configure --disable-static --with-pic\
|
%configure --disable-static --with-pic\
|
||||||
--enable-gsettings
|
--enable-gsettings
|
||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
@ -112,6 +122,8 @@ rm -rf %{buildroot}
|
|||||||
%{_bindir}/*
|
%{_bindir}/*
|
||||||
%{_libdir}/nemiver/
|
%{_libdir}/nemiver/
|
||||||
%{_datadir}/nemiver/
|
%{_datadir}/nemiver/
|
||||||
|
%dir %{_datadir}/appdata
|
||||||
|
%{_datadir}/appdata/nemiver.appdata.xml
|
||||||
%{_datadir}/applications/*
|
%{_datadir}/applications/*
|
||||||
%{_datadir}/glib-2.0/schemas/org.nemiver.gschema.xml
|
%{_datadir}/glib-2.0/schemas/org.nemiver.gschema.xml
|
||||||
%{_datadir}/icons/*/*/apps/nemiver.*
|
%{_datadir}/icons/*/*/apps/nemiver.*
|
||||||
|
Loading…
Reference in New Issue
Block a user