Accepting request 201621 from home:robert_munteanu
OBS-URL: https://build.opensuse.org/request/show/201621 OBS-URL: https://build.opensuse.org/package/show/utilities/jq?expand=0&rev=1
This commit is contained in:
commit
66994c041e
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
|
12
_service
Normal file
12
_service
Normal file
@ -0,0 +1,12 @@
|
||||
<services>
|
||||
<service name="download_url">
|
||||
<param name="protocol">http</param>
|
||||
<param name="host">stedolan.github.io</param>
|
||||
<param name="path">/jq/download/source/jq-1.3.tar.gz</param>
|
||||
</service>
|
||||
<service name="verify_file">
|
||||
<param name="file">_service:download_url:jq-1.3.tar.gz</param>
|
||||
<param name="verifier">sha256</param>
|
||||
<param name="checksum">623f23c36abfc1d96d85020cf421b56f90a229d566f26a4a0d3e8536244bfed7</param>
|
||||
</service>
|
||||
</services>
|
3
_service:download_url:jq-1.3.tar.gz
Normal file
3
_service:download_url:jq-1.3.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:623f23c36abfc1d96d85020cf421b56f90a229d566f26a4a0d3e8536244bfed7
|
||||
size 333678
|
5
jq.changes
Normal file
5
jq.changes
Normal file
@ -0,0 +1,5 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 1 15:09:01 UTC 2013 - robert.munteanu@gmail.com
|
||||
|
||||
- Initial packaging of version 1.3
|
||||
|
57
jq.spec
Normal file
57
jq.spec
Normal file
@ -0,0 +1,57 @@
|
||||
#
|
||||
# spec file for package jq
|
||||
#
|
||||
# Copyright (c) 2013 SUSE LINUX Products 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 http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
Name: jq
|
||||
Version: 1.3
|
||||
Release: 0.0
|
||||
License: MIT
|
||||
Summary: A lightweight and flexible command-line JSON processor
|
||||
Url: http://stedolan.github.io/jq/
|
||||
Group: Productivity/Text/Utilities
|
||||
Source: http://stedolan.github.io/jq/download/source/jq-1.3.tar.gz
|
||||
BuildRequires: autoconf
|
||||
BuildRequires: coreutils
|
||||
BuildRequires: make
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
|
||||
%description
|
||||
|
||||
A lightweight and flexible command-line JSON processor. jq is like sed for
|
||||
JSON data – you can use it to slice and filter and map and transform
|
||||
structured data with the same ease that sed, awk, grep and friends let
|
||||
you play with text.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
%configure
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
%make_install
|
||||
|
||||
# we install the documentation in a separate location using the doc macro
|
||||
%{__rm} -rf %{buildroot}/usr/share/doc/%{name}
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%doc README README.md COPYING AUTHORS
|
||||
%{_bindir}/%{name}
|
||||
%{_mandir}/man1/%{name}.1.gz
|
||||
|
||||
%changelog
|
Loading…
Reference in New Issue
Block a user