[libgit-repository-perl] branch master updated (d28d6f4 -> 1af3981)
gregor herrmann
gregoa at debian.org
Mon Feb 15 19:23:00 UTC 2016
This is an automated email from the git hooks/post-receive script.
gregoa pushed a change to branch master
in repository libgit-repository-perl.
from d28d6f4 update changelog
adds 06e0437 Petr Šabata has a PAUDE id
adds bb67b42 spelling fix
adds cf9b754 Add Gregor Herrmann as a contributor
adds 4751e97 Fix a typo in a contributor's email
adds 53d64a4 Tutorial entry "Ignore the system and global configuration files"
adds 2021a34 Fix version comparison with 1.0.0a and 1.0.0b for Perl 5.6
adds 6cf6f4b Fix the test to NOT fail with Git 1.2.3
adds e3b5a30 Show the version tested against in the test message
adds 255dbd2 Add a few more version tests
adds 4ff8d91 Add a test running the whole test suite against many git versions
adds e6fda96 t/test-all-git.t accepts min/max Git versions to test against
adds 717caec Output the list of Git versions that failed at the end
adds 79a8972 Use a local directory/symlink instead of an environment variable
adds 61785e8 Do not litter t/ with temporary files
adds cbebdc0 Ensure $abs_git is always an absolute path
adds b5d80fc Ensure $abs_git is always an absolute path (again)
adds af7261b Add support for more complex version specifications
adds d913c52 Move in a function and refactor the code to find 'git' in the PATH
adds 2d6d811 Use Git::Repository::Command::_which('git') to find 'git' in the PATH
adds 037e4cb Change the PATH for the current dynamic scope only
adds b9e0ccb Remove some unused variables, and comment what's going on
adds 7bb8541 Add a new type of cache key, when the PATH has non-absolute components
adds 5b8b3ff Adapt the expected output in the 'path-rel' case
adds bdfb556 Update PATH from options before looking for 'git'
adds 2756e3f Remove temporary symbolic links used in the test
adds 6d11627 Exercise the 'path' and 'path-rel' cases when looking for git
adds 8e22735 Add a library of Git utility functions, starting with cmp_git
adds 81d6231 Import cmp_git to sort Git versions
adds 75c7079 Add a test for Git::Repository::Util::cmp_git
adds db45594 Git::Repository is tested to work with Perl 5.6
adds 8cb46f6 Add keywords to META
adds fcddc21 Add a small utility to compile and install any Git version
adds 24280e9 Remove the --all option and make it the default
adds a2d57a4 Sort versions as early as possible
adds fb80c8d Add --since and --until options to control the selection
adds 31aecfa Add a --limit option to limit the size of the selection
adds 58d6ca1 Add a --list option to list the selected versions
adds 6300272 Apply a patch that is necessary for some versions of Git
adds d7c4c8a Add documentation, and --help and --manual options
adds 1929679 Change to the git source directory before running make
adds 2690681 Clean up some environment variables before running make
adds 17ed7e0 Change to the git source directory before looping over all versions
adds c7a8da8 Add a --fetch option to fetch the latest commits on git.git
adds fd57ab3 Fetch the recent commits before getting the list of all versions
adds 010571f Fix the Makefile for Git 1.0.9
adds c888dc7 Throw away local changes when compiling a new Git
adds f50572d Update copyright dates
adds cebe3b9 build-git: run_cmd helper to replace ``
adds d76a92a build-git: add a --verbose option
adds 1a67196 build-git: reformat the option list and fix a typo
adds 38c9cef build-git: add a --quiet option
adds 3528692 build-git: add options to filter installed versions
adds e8fdff7 build-git: filter rc versions with --no-rc
adds 6b8eadb build-git: split build and install steps
adds 01ee243 Local changes to compile Git 1.1.0 to 1.3.3
adds 0715d99 Ignore the system and global configuration files
adds 88522d5 `git clone <dir1> <dir2>` fails with 1.7.0.rc1 <= version <= 1.7.0.2
adds e3597e7 Changes for version 1.317
adds a04656f Imported Upstream version 1.317
new ca1a0bd Merge tag 'upstream/1.317'
new 05a6579 Update debian/changelog
new 8632502 Drop spelling.patch, merged upstream.
new 9e758b9 Update years of upstream copyright.
new 03805aa Install new example script.
new 7ae4803 Declare compliance with Debian Policy 3.9.7.
new 1af3981 releasing package libgit-repository-perl version 1.317-1
The 7 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
Changes | 18 +++
LICENSE | 6 +-
MANIFEST | 4 +
META.json | 12 +-
META.yml | 11 +-
Makefile.PL | 2 +-
README | 2 +-
debian/changelog | 14 +-
debian/control | 2 +-
debian/copyright | 2 +-
debian/libgit-repository-perl.examples | 1 +
debian/patches/series | 1 -
debian/patches/spelling.patch | 18 ---
dist.ini | 10 +-
eg/build-git | 230 +++++++++++++++++++++++++++++++++
lib/Git/Repository.pm | 14 +-
lib/Git/Repository/Command.pm | 64 +++++----
lib/Git/Repository/Plugin.pm | 4 +-
lib/Git/Repository/Tutorial.pod | 17 ++-
lib/Git/Repository/Util.pm | 57 ++++++++
lib/Test/Git.pm | 24 +++-
t/05-try_git.t | 79 ++++++-----
t/07-version.t | 20 ++-
t/11-create.t | 3 +
t/20-simple.t | 30 ++---
t/22-backward.t | 3 +
t/23-quiet.t | 3 +
t/24-errors.t | 7 +-
t/25-plugins.t | 3 +
t/26-overloaded_objects.t | 3 +
t/30-test_repository.t | 41 ++++--
t/50-util.t | 23 ++++
t/test-all-git.t | 69 ++++++++++
33 files changed, 647 insertions(+), 150 deletions(-)
create mode 100644 debian/libgit-repository-perl.examples
delete mode 100644 debian/patches/series
delete mode 100644 debian/patches/spelling.patch
create mode 100755 eg/build-git
create mode 100644 lib/Git/Repository/Util.pm
create mode 100644 t/50-util.t
create mode 100644 t/test-all-git.t
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libgit-repository-perl.git
More information about the Pkg-perl-cvs-commits
mailing list