From ab1b47a5fb078f5318608d711b90ca2d9718dfdce542222b6fb93813884bea92 Mon Sep 17 00:00:00 2001 From: Marcus Meissner Date: Tue, 8 Sep 2020 08:29:17 +0000 Subject: [PATCH] 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 --- .gitattributes | 23 ++++++++++++++++++++ 0.1.2.tar.gz | 3 +++ neix-include.patch | 11 ++++++++++ neix.changes | 23 ++++++++++++++++++++ neix.spec | 53 ++++++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 113 insertions(+) create mode 100644 .gitattributes create mode 100644 0.1.2.tar.gz create mode 100644 neix-include.patch create mode 100644 neix.changes create mode 100644 neix.spec diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -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 diff --git a/0.1.2.tar.gz b/0.1.2.tar.gz new file mode 100644 index 0000000..c8f96a8 --- /dev/null +++ b/0.1.2.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86ef7026bb735715fdec4edfad4f31932dfc1098da0586baeac031c437a9f7ad +size 908980 diff --git a/neix-include.patch b/neix-include.patch new file mode 100644 index 0000000..b1bf4db --- /dev/null +++ b/neix-include.patch @@ -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 + #include + #include ++#include + + #include "config.h" + #include "helper/helper.h" diff --git a/neix.changes b/neix.changes new file mode 100644 index 0000000..7c53e30 --- /dev/null +++ b/neix.changes @@ -0,0 +1,23 @@ +------------------------------------------------------------------- +Tue Aug 25 09:14:17 UTC 2020 - Michael Vetter + +- 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 + +- 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 + +- Initial package of neix 0.1.0 for openSUSE diff --git a/neix.spec b/neix.spec new file mode 100644 index 0000000..06ffa7c --- /dev/null +++ b/neix.spec @@ -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