summaryrefslogtreecommitdiffstats
path: root/dist/q-text-as-data.spec.template
diff options
context:
space:
mode:
authorHarel Ben-Attia <harelba@gmail.com>2014-06-14 07:50:56 -0400
committerHarel Ben-Attia <harelba@gmail.com>2014-06-14 07:53:54 -0400
commit6225144e7670e7e502ff2eb0d2dd0170db780127 (patch)
tree2b48529ec89b2a21190e5bd689c1316d18815e27 /dist/q-text-as-data.spec.template
parent22f8166cf8ed77b2daf3727f2419296282fa6270 (diff)
Changed RPM package name to q-text-as-data + Fixed RPM creation after folder refactoring + docs/man-page merge
Diffstat (limited to 'dist/q-text-as-data.spec.template')
-rw-r--r--dist/q-text-as-data.spec.template59
1 files changed, 59 insertions, 0 deletions
diff --git a/dist/q-text-as-data.spec.template b/dist/q-text-as-data.spec.template
new file mode 100644
index 0000000..4e9e50a
--- /dev/null
+++ b/dist/q-text-as-data.spec.template
@@ -0,0 +1,59 @@
+Name: q-text-as-data
+Version: VERSION_PLACEHOLDER
+Release: 1%{?dist}
+Summary: q - Text as Data
+
+Group: Applications/Text
+License: GPLv3
+URL: https://github.com/harelba/q
+Source0: %{name}-%{version}.tar.gz
+BuildArch: noarch
+
+%description
+q allows to perform SQL-like statements on tabular text data.
+
+%prep
+%setup
+
+%install
+rm -rf ${RPM_BUILD_ROOT}
+install -d -m 0755 ${RPM_BUILD_ROOT}%{_bindir}
+install -Dm 755 bin/q ${RPM_BUILD_ROOT}%{_bindir}/
+install -Dm 755 bin/q ${RPM_BUILD_ROOT}%{_bindir}/
+install -d -m 0755 ${RPM_BUILD_ROOT}%{_mandir}/man1/
+install -m 0644 doc/USAGE ${RPM_BUILD_ROOT}%{_mandir}/man1/q.1
+gzip ${RPM_BUILD_ROOT}%{_mandir}/man1/q.1
+
+%files
+%defattr(-,root,root,-)
+%doc README.markdown doc/*
+%{_bindir}/q
+%doc %_mandir/man1/q.1.gz
+
+%changelog
+* Mon Mar 03 2014 Harel Ben-Attia <harelba@gmail.com> 1.3.0-1
+- Added column name and type detection (Use -A to see name/type analysis for the specified input)
+- Added support for multiple parsing modes - Relaxed, Strict and Fluffy (old, backward compatible behavior)
+- Fixed tab delimition parameter problem
+- More improvements to error reporting
+- Added a test suite, in preparation for refactoring
+- #7 - Dynamic column count support
+- #8 - Column name inference from input containing a header row
+- #9 - Automatic column type inference using sample data
+- #30 - Header lines option does nothing
+- #33 - Last column should allow for spaces?
+- #35 - Add q.bat
+- #38 - Problem with whitespace delimiter
+- #43 - using the -t flag stopped the header flag from working
+- #44 - Space in column name on TAB separated values break q
+- Breaking changes:
+- Changed -H behavior so it's now a flag an not a parameter (1 line always)
+- Removed support for multi-char delimiters
+
+* Thu Feb 20 2014 Harel Ben-Attia <harelba@gmail.com> 1.1.7-1
+- Better error reporting
+- Fixed python invocation for non stanard locations
+- Added man page
+
+* Wed Feb 19 2014 Jens Neu <jens@zeeroos.de> 1.1.5-1
+- initial release