forked from pool/perl-Git-Repository
Accepting request 347138 from devel:languages:perl:autoupdate
automatic update OBS-URL: https://build.opensuse.org/request/show/347138 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Git-Repository?expand=0&rev=9
This commit is contained in:
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:3d68ff610862e7d4cae45382f1392211377de0d2b8fe78c484fccde73338fab8
|
|
||||||
size 49089
|
|
3
Git-Repository-1.316.tar.gz
Normal file
3
Git-Repository-1.316.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:ef41d0d3dbdd9428c54d34e333ad1571993cdaefd7492bd3bddde21549483dbb
|
||||||
|
size 49781
|
@@ -1,3 +1,19 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Dec 2 09:46:38 UTC 2015 - coolo@suse.com
|
||||||
|
|
||||||
|
- updated to 1.316
|
||||||
|
see /usr/share/doc/packages/perl-Git-Repository/Changes
|
||||||
|
|
||||||
|
1.316 Wed Dec 2 2015
|
||||||
|
[ENHANCEMENTS]
|
||||||
|
- avoid a warning if the filehandles have already been closed
|
||||||
|
(related to System::Command 1.114 'interactive' option)
|
||||||
|
[DOCUMENTATION]
|
||||||
|
- add examples for `git log` and using callbacks with `$r->run`
|
||||||
|
in Git::Repository::Tutorial
|
||||||
|
[TESTS]
|
||||||
|
- git-2.5.2 test suite compatibility fix (Petr Šabata)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Aug 31 08:59:45 UTC 2015 - coolo@suse.com
|
Mon Aug 31 08:59:45 UTC 2015 - coolo@suse.com
|
||||||
|
|
||||||
|
@@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: perl-Git-Repository
|
Name: perl-Git-Repository
|
||||||
Version: 1.315
|
Version: 1.316
|
||||||
Release: 0
|
Release: 0
|
||||||
%define cpan_name Git-Repository
|
%define cpan_name Git-Repository
|
||||||
Summary: Perl interface to Git repositories
|
Summary: Perl interface to Git repositories
|
||||||
@@ -38,30 +38,30 @@ BuildRequires: git-core
|
|||||||
# MANUAL END
|
# MANUAL END
|
||||||
|
|
||||||
%description
|
%description
|
||||||
the Git::Repository manpage is a Perl interface to Git, for scripted
|
Git::Repository is a Perl interface to Git, for scripted interactions with
|
||||||
interactions with repositories. It's a low-level interface that allows
|
repositories. It's a low-level interface that allows calling any Git
|
||||||
calling any Git command, whether _porcelain_ or _plumbing_, including
|
command, whether _porcelain_ or _plumbing_, including bidirectional
|
||||||
bidirectional commands such as 'git commit-tree'.
|
commands such as 'git commit-tree'.
|
||||||
|
|
||||||
A the Git::Repository manpage object simply provides context to the git
|
A Git::Repository object simply provides context to the git commands being
|
||||||
commands being run. It is possible to call the 'command()' and 'run()'
|
run. It is possible to call the 'command()' and 'run()' methods against the
|
||||||
methods against the class itself, and the context (typically _current
|
class itself, and the context (typically _current working directory_) will
|
||||||
working directory_) will be obtained from the options and environment.
|
be obtained from the options and environment.
|
||||||
|
|
||||||
As a low-level interface, it provides no sugar for particular Git commands.
|
As a low-level interface, it provides no sugar for particular Git commands.
|
||||||
Specifically, it will not prepare environment variables that individual Git
|
Specifically, it will not prepare environment variables that individual Git
|
||||||
commands may need or use.
|
commands may need or use.
|
||||||
|
|
||||||
However, the 'GIT_DIR' and 'GIT_WORK_TREE' environment variables are
|
However, the 'GIT_DIR' and 'GIT_WORK_TREE' environment variables are
|
||||||
special: if the command is run in the context of a the Git::Repository
|
special: if the command is run in the context of a Git::Repository object,
|
||||||
manpage object, they will be overridden by the object's 'git_dir' and
|
they will be overridden by the object's 'git_dir' and 'work_tree'
|
||||||
'work_tree' attributes, respectively. It is however still possible to
|
attributes, respectively. It is however still possible to override them if
|
||||||
override them if necessary, using the 'env' option.
|
necessary, using the 'env' option.
|
||||||
|
|
||||||
the Git::Repository manpage requires at least Git 1.5.0, and is expected to
|
Git::Repository requires at least Git 1.5.0, and is expected to support any
|
||||||
support any later version.
|
later version.
|
||||||
|
|
||||||
See the Git::Repository::Tutorial manpage for more code examples.
|
See Git::Repository::Tutorial for more code examples.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{cpan_name}-%{version}
|
%setup -q -n %{cpan_name}-%{version}
|
||||||
|
Reference in New Issue
Block a user