Pascal Bleser
2011-11-03 23:24:00 +00:00
committed by Git OBS Bridge
commit e540f2f9ff
5 changed files with 111 additions and 0 deletions

23
.gitattributes vendored Normal file
View 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
View File

@@ -0,0 +1 @@
.osc

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0457621ac9c658c1f07b1b6a4e66e1cd4d108d3e24b0568fc2d0f3382c1be55e
size 10393

View File

@@ -0,0 +1,5 @@
-------------------------------------------------------------------
Thu Nov 03 23:27:01 CET 2011 - pascal.bleser@opensuse.org
- initial version (0.05)

View File

@@ -0,0 +1,79 @@
#
# spec file for package perl-JIRA-Client-REST
#
# Copyright (c) 2011 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: perl-JIRA-Client-REST
Version: 0.05
Release: 0
Summary: JIRA REST Client
Source: http://search.cpan.org/CPAN/authors/id/G/GP/GPHAT/JIRA-Client-REST-%{version}.tar.gz
Url: http://search.cpan.org/dist/JIRA-Client-REST
Group: Development/Libraries/Perl
License: GNU General Public License version 2 or later or Artistic (GPLv2+ or Artistic)
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%{perl_requires}
BuildRequires: perl-macros
BuildRequires: make
BuildRequires: perl(strict)
BuildRequires: perl(Test::More)
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.30
BuildRequires: perl(ExtUtils::MakeMaker)
BuildRequires: perl(Net::HTTP::Spore)
BuildRequires: perl(JSON::XS)
BuildRequires: perl(JSON)
BuildRequires: perl(Moose)
Requires: perl(Net::HTTP::Spore)
Requires: perl(JSON::XS)
Requires: perl(JSON)
Requires: perl(Moose)
%if 0%{?suse_version} >= 1120
BuildArch: noarch
%endif
%description
JIRA::Client::REST is a wrapper for the JIRA REST API
<http://docs.atlassian.com/jira/REST/latest/>. It is a thin wrapper,
returning decoded version of the JSON without any munging or mangling.
%prep
%setup -q -n "JIRA-Client-REST-%{version}"
%__sed -i '/^auto_install/d' Makefile.PL
%build
%__perl Makefile.PL PREFIX="%{_prefix}"
%__make %{?_smp_flags}
%install
%perl_make_install
%perl_process_packlist
%check
%__make test
%clean
%{?buildroot:%__rm -rf "%{buildroot}"}
%files
%defattr(-,root,root)
%doc Changes LICENSE README README.mkdn
%dir %{perl_vendorlib}/JIRA
%dir %{perl_vendorlib}/JIRA/Client
%{perl_vendorlib}/JIRA/Client/REST.pm
%doc %{perl_man3dir}/JIRA::Client::REST.%{perl_man3ext}%{ext_man}
%changelog