From ab87baa30df0ca0cdff8edc31ff5635505d7ada4 Mon Sep 17 00:00:00 2001 From: James Reed Date: Wed, 27 May 2020 06:02:39 -0600 Subject: [PATCH] Update version to v0.2.0 --- VERSION | 2 +- spec/wm-launch-0.2.0.spec | 53 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 54 insertions(+), 1 deletion(-) create mode 100644 spec/wm-launch-0.2.0.spec diff --git a/VERSION b/VERSION index 8308b63..1474d00 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -v0.1.1 +v0.2.0 diff --git a/spec/wm-launch-0.2.0.spec b/spec/wm-launch-0.2.0.spec new file mode 100644 index 0000000..363cae3 --- /dev/null +++ b/spec/wm-launch-0.2.0.spec @@ -0,0 +1,53 @@ +Name: wm-launch +Version: 0.2.0 +Release: 1%{?dist} +Summary: Tool to launch X11 clients with unique IDs + +License: LGPL +URL: https://github.com/jcrd/wm-launch +Source0: https://github.com/jcrd/wm-launch/archive/v0.2.0.tar.gz + +Requires: bash + +BuildRequires: gcc +BuildRequires: perl +BuildRequires: go +BuildRequires: pkgconfig(x11) +BuildRequires: pkgconfig(xcb) + +%global debug_package %{nil} + +%description +wm-launch provides a shared library for use with LD_PRELOAD and a command-line tool to set IDs on newly created X11 windows. + +%prep +%setup + +%build +%make_build PREFIX=/usr + +%install +%make_install PREFIX=/usr + +%files +%license LICENSE +%doc README.md +%{_bindir}/%{name} +%{_bindir}/%{name}d +/usr/lib/wm-launch/%{name}-preload.so +/usr/lib/systemd/user/%{name}d.service +%{_mandir}/man1/%{name}.1.gz + +%changelog +* Wed May 27 2020 James Reed - 0.2.0-1 +- Release v0.2.0 +- Build now requires go + +* Wed May 27 2020 James Reed - 0.1.1-3 +- Use rpm macros in files section + +* Sun May 24 2020 James Reed - 0.1.1-2 +- Use pkgconfig in build requires + +* Mon May 11 2020 James Reed - 0.1.1 +- Initial package