From 3ed945caf5d31ba257cc393ba3b58071dc269ad53d31d326469b16669406dfc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Sun, 13 Jan 2019 16:18:49 +0000 Subject: [PATCH] Accepting request 665018 from home:mnhauke Initial package for ctris OBS-URL: https://build.opensuse.org/request/show/665018 OBS-URL: https://build.opensuse.org/package/show/games/ctris?expand=0&rev=1 --- .gitattributes | 23 ++++++++++++++++++++++ .gitignore | 1 + ctris-0.42.1.tar.gz | 3 +++ ctris.changes | 22 +++++++++++++++++++++ ctris.spec | 48 +++++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 97 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 ctris-0.42.1.tar.gz create mode 100644 ctris.changes create mode 100644 ctris.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/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/ctris-0.42.1.tar.gz b/ctris-0.42.1.tar.gz new file mode 100644 index 0000000..ff09f3f --- /dev/null +++ b/ctris-0.42.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5fe3e70b76129ea83cac85a3c5dbc084066a62d7ef4edcc73c545ee89222ed8 +size 16116 diff --git a/ctris.changes b/ctris.changes new file mode 100644 index 0000000..eaf1b0b --- /dev/null +++ b/ctris.changes @@ -0,0 +1,22 @@ +------------------------------------------------------------------- +Sat Jan 12 22:53:32 UTC 2019 - mardnh@gmx.de + +- Update to 0.42.1 + * various improvements sent to me by Alecsandru Soare + * fixed 'game over' message +- Fix URL +- Drop not longer needed patches: + * ctris-fsf-address.patch + * ctris-remove_current_date.patch +- Specfile cleanup + +------------------------------------------------------------------- +Tue Sep 26 10:11:24 UTC 2017 - lars@linux-schulserver.de + +- update to 0.42 + +------------------------------------------------------------------- +Thu Feb 27 2006 - cwh@suse.de + +- initial release version 1.2.3 + diff --git a/ctris.spec b/ctris.spec new file mode 100644 index 0000000..9dc113b --- /dev/null +++ b/ctris.spec @@ -0,0 +1,48 @@ +# +# spec file for package ctris +# +# 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 +# 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: ctris +Version: 0.42.1 +Release: 0 +Summary: Console based tetris clone +License: GPL-2.0-or-later +Group: Amusements/Games/Action/Arcade +URL: https://github.com/dominikhackl/ctris +#Git-Clone: https://github.com/dominikhackl/ctris.git +Source: https://github.com/dominikhackl/%{name}/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz +BuildRequires: ncurses-devel + +%description +A colorized, small and flexible Tetris(TM)-clone for the console. + +%prep +%setup -q + +%build +make CFLAGS="%{optflags}" %{?_smp_mflags} + +%install +%make_install BINDIR="%{buildroot}%{_bindir}" + +%files +%license COPYING +%doc AUTHORS README TODO +%{_mandir}/man6/ctris.6%{?ext_man} +%{_bindir}/ctris + +%changelog