Accepting request 829124 from home:jubalh
Please add me as maintainer OBS-URL: https://build.opensuse.org/request/show/829124 OBS-URL: https://build.opensuse.org/package/show/network:utilities/neix?expand=0&rev=1
This commit is contained in:
commit
8310ae4af3
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal 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
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
.osc
|
3
0.1.2.tar.gz
Normal file
3
0.1.2.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:86ef7026bb735715fdec4edfad4f31932dfc1098da0586baeac031c437a9f7ad
|
||||
size 908980
|
11
neix-include.patch
Normal file
11
neix-include.patch
Normal file
@ -0,0 +1,11 @@
|
||||
diff -urEbw neix-0.1.0/src/application/Application.cpp neix-0.1.0.new/src/application/Application.cpp
|
||||
--- neix-0.1.0/src/application/Application.cpp 2020-08-20 20:59:30.000000000 +0200
|
||||
+++ neix-0.1.0.new/src/application/Application.cpp 2020-08-21 09:09:22.667455842 +0200
|
||||
@@ -12,6 +12,7 @@
|
||||
#include <cstdlib>
|
||||
#include <string>
|
||||
#include <cstring>
|
||||
+#include <ncurses.h>
|
||||
|
||||
#include "config.h"
|
||||
#include "helper/helper.h"
|
23
neix.changes
Normal file
23
neix.changes
Normal file
@ -0,0 +1,23 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Aug 25 09:14:17 UTC 2020 - Michael Vetter <mvetter@suse.com>
|
||||
|
||||
- Update to 0.1.2:
|
||||
* Fix curl lib linking
|
||||
* Use CMAKE_INSTALL_BINDIR for installing
|
||||
- Remove neix-link.patch: upstreamed
|
||||
- Remove neix-install.patch: upstreamed
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Aug 24 08:21:30 UTC 2020 - Michael Vetter <mvetter@suse.com>
|
||||
|
||||
- Update to 0.1.1:
|
||||
* Fix compile error on openSUSE (#1)
|
||||
* Check for valid config entry count
|
||||
* Some minor improvements
|
||||
- Add neix-link.patch
|
||||
- Add neix-install.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Aug 21 06:56:12 UTC 2020 - Michael Vetter <mvetter@suse.com>
|
||||
|
||||
- Initial package of neix 0.1.0 for openSUSE
|
53
neix.spec
Normal file
53
neix.spec
Normal file
@ -0,0 +1,53 @@
|
||||
#
|
||||
# spec file for package neix
|
||||
#
|
||||
# Copyright (c) 2020 SUSE LLC
|
||||
#
|
||||
# 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 https://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
Name: neix
|
||||
Version: 0.1.2
|
||||
Release: 0
|
||||
Summary: News Reader for Text Terminals
|
||||
License: GPL-3.0-or-later
|
||||
Group: Productivity/Networking/Web/Browsers
|
||||
URL: https://github.com/tomschwarz/neix
|
||||
Source: https://github.com/tomschwarz/neix/archive/%{version}.tar.gz
|
||||
Patch0: neix-include.patch
|
||||
BuildRequires: cmake
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: libcurl-devel
|
||||
BuildRequires: ncurses-devel
|
||||
|
||||
%description
|
||||
neix is a RSS/Atom news feed reader.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
%patch0 -p1
|
||||
|
||||
%build
|
||||
%cmake
|
||||
%make_build
|
||||
|
||||
%install
|
||||
%cmake_install
|
||||
|
||||
%files
|
||||
%license LICENSE.md
|
||||
%doc README.md
|
||||
%{_bindir}/neix
|
||||
%{_mandir}/man1/neix.1%{?ext_man}
|
||||
|
||||
%changelog
|
Loading…
Reference in New Issue
Block a user