forked from pool/perl-Git-Repository
1.03
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Git-Repository?expand=0&rev=1
This commit is contained in:
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
|
3
Git-Repository-1.03.tar.gz
Normal file
3
Git-Repository-1.03.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:74066d7895726230c11958c2b0cc10d723a49ba32423d13b51bdd441c51d8bc8
|
||||||
|
size 14025
|
5
perl-Git-Repository.changes
Normal file
5
perl-Git-Repository.changes
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Jun 19 00:08:20 UTC 2010 - pascal.bleser@opensuse.org
|
||||||
|
|
||||||
|
- initial package (1.03)
|
||||||
|
|
71
perl-Git-Repository.spec
Normal file
71
perl-Git-Repository.spec
Normal file
@@ -0,0 +1,71 @@
|
|||||||
|
# norootforbuild
|
||||||
|
|
||||||
|
Name: perl-Git-Repository
|
||||||
|
Version: 1.03
|
||||||
|
Release: 0
|
||||||
|
Summary: Perl Interface to Git Repositories
|
||||||
|
Source: http://www.cpan.org/modules/by-module/Git/Git-Repository-%{version}.tar.gz
|
||||||
|
URL: http://search.cpan.org/dist/Git-Repository/
|
||||||
|
Group: Development/Libraries/Perl
|
||||||
|
License: Perl License
|
||||||
|
BuildRoot: %{_tmppath}/build-%{name}-%{version}
|
||||||
|
Requires: perl = %{perl_version}
|
||||||
|
Requires: git-core
|
||||||
|
Requires: perl(List::Util)
|
||||||
|
Requires: perl(File::Spec)
|
||||||
|
Requires: perl(File::Path)
|
||||||
|
Requires: perl(IPC::Open3)
|
||||||
|
Requires: perl(Cwd)
|
||||||
|
BuildRequires: make perl
|
||||||
|
BuildRequires: git-core
|
||||||
|
BuildRequires: perl(List::Util)
|
||||||
|
BuildRequires: perl(File::Spec)
|
||||||
|
BuildRequires: perl(File::Path)
|
||||||
|
BuildRequires: perl(IPC::Open3)
|
||||||
|
BuildRequires: perl(Cwd)
|
||||||
|
BuildRequires: perl(Test::More)
|
||||||
|
BuildRequires: perl(Test::Pod)
|
||||||
|
BuildRequires: perl(Test::Pod::Coverage)
|
||||||
|
|
||||||
|
%description
|
||||||
|
Git::Repository is a Perl interface to Git, allowing scripted interactions with
|
||||||
|
one or more repositories. It's a low-level interface, allowing to call any Git
|
||||||
|
command, either porcelain or plumbing, including bidirectional commands such
|
||||||
|
as git commit-tree.
|
||||||
|
|
||||||
|
Since it is a low-level interface, it doesn't provide any fancy way to call Git
|
||||||
|
commands. It is up to the programmer to setup any environment variables that
|
||||||
|
the underlying Git command may need and use.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n "Git-Repository-%{version}"
|
||||||
|
%__sed -i '/^auto_install/d' Makefile.PL
|
||||||
|
|
||||||
|
%build
|
||||||
|
%__perl Makefile.PL PREFIX="%{_prefix}"
|
||||||
|
%__make %{?jobs:-j%{jobs}}
|
||||||
|
|
||||||
|
%install
|
||||||
|
%perl_make_install
|
||||||
|
%perl_process_packlist
|
||||||
|
|
||||||
|
%check
|
||||||
|
%__make test
|
||||||
|
|
||||||
|
%clean
|
||||||
|
%__rm -rf "%{buildroot}"
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%doc Changes README
|
||||||
|
%dir %{perl_vendorlib}/Git
|
||||||
|
%{perl_vendorlib}/Git/Repository.pm
|
||||||
|
%{perl_vendorlib}/Git/Repository
|
||||||
|
%dir %{perl_vendorarch}/auto/Git
|
||||||
|
%{perl_vendorarch}/auto/Git/Repository
|
||||||
|
%doc %{perl_man3dir}/Git::Repository.%{perl_man3ext}%{ext_man}
|
||||||
|
%doc %{perl_man3dir}/Git::Repository::*.%{perl_man3ext}%{ext_man}
|
||||||
|
/var/adm/perl-modules/%{name}
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
# vim: set sw=4 ts=4 et nu:
|
Reference in New Issue
Block a user