./math/R-git2r, Provides access to Git repositories

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: CURRENT, Version: 0.33.0, Package name: R-git2r-0.33.0, Maintainer: pkgsrc-users

Interface to the 'libgit2' library, which is a pure C implementation
of the 'Git' core methods. Provides access to 'Git' repositories to
extract data and running some basic 'Git' commands.


Required to run:
[math/R]

Required to build:
[pkgtools/cwrappers]

Master sites: (Expand)


Version history: (Expand)


CVS history: (Expand)


   2024-01-20 10:28:58 by Makoto Fujiwara | Files touched by this commit (2)
Log message:
(devel/R-git2r) Updated 0.32.0 to 0.33.0, make test passed

# git2r 0.33.0 (2023-11-26)

## CHANGES

* Added a missing 'git2r-package' alias to the documentation.

* Added the argument 'raw' to the 'content' function to make it
  possible to get a blob content as a raw vector, see issue #461.

* Updated the bundled libgit2 source code to version 1.7.1.

* Changed the R dependency from >= 3.4 to >= 4.0.

* Added a missing '-liconv' to PKG_LIBS in Makevars.win.
   2023-06-18 15:50:31 by Makoto Fujiwara | Files touched by this commit (2)
Log message:
(devel/R-git2r) Updated 0.30.1 to 0.32.0

# git2r 0.32.0 (2023-04-12)

## CHANGES

* Updated the bundled libgit2 source code to version 1.6.3.

* Fix build failure of bundled libgit2 when structure for nanosecond
  type is mssing.

# git2r 0.31.0 (2023-01-26)

## CHANGES

* Removed unused macro 'AC_PROG_CC' from the build configuration
  script.
   2022-04-21 15:59:08 by Makoto Fujiwara | Files touched by this commit (2)
Log message:
(devel/R-git2r) Updated 0.28.0 to 0.30.1

# git2r 0.30.1 (2022-03-15)

## CHANGES

* Added the build configuration script ('src/Makevars.ucrt') for
  Windows UCRT. Thanks to Tomas Kalibera for providing the patch.

* Added documentation about line endings in the diff
  function. Different operating systems handle line endings
  differently and to avoid problems in diffs, Git can be configured to
  handle these differences in line endings

# git2r 0.29.0 (2021-11-18)

## CHANGES

* Added a 'branch' argument to the 'init' function to make it possible
  to specify the branch name.

* Updated the build configuration script on Windows and MacOS to use
  libgit2 version 1.3.0.

* Updated the bundled libgit2 source code to version 1.3.0.

* Renamed the NEWS file to NEWS.md and changed to use markdown format
  style.
   2021-10-26 12:20:11 by Nia Alarie | Files touched by this commit (3016)
Log message:
archivers: Replace RMD160 checksums with BLAKE2s checksums

All checksums have been double-checked against existing RMD160 and
SHA512 hashes

Could not be committed due to merge conflict:
devel/py-traitlets/distinfo

The following distfiles were unfetchable (note: some may be only fetched
conditionally):

./devel/pvs/distinfo pvs-3.2-solaris.tgz
./devel/eclipse/distinfo eclipse-sourceBuild-srcIncluded-3.0.1.zip
   2021-10-07 15:44:44 by Nia Alarie | Files touched by this commit (3017)
Log message:
devel: Remove SHA1 hashes for distfiles
   2021-02-07 02:21:16 by Makoto Fujiwara | Files touched by this commit (2)
Log message:
(devel/R-git2r) Updated 0.27.1 to 0.28.0

git2r 0.28.0
------------

IMPROVEMENTS

* Updated to use libgit2 version 1.1.0 on Windows.

* Fix handling of a symbolic reference when checking out previous
  branch.

* Added a configure option '--without-libgit2' to ignore presence of a
  system libgit2 library and instead use the internal git2r libgit2
  library. Usage:
  R CMD INSTALL --configure-args='--without-libgit2' git2r_x.y.z.tar.gz

* Updated some tests to work with libgit2 version 1.1.0.
   2021-01-01 03:50:52 by Makoto Fujiwara | Files touched by this commit (2)
Log message:
(devel/R-git2r) Updated 0.26.1 to 0.27.1

git2r 0.27.1
------------
CHANGES

* Fixed the CITATION file to pass 'R CMD check' without a NOTE.

git2r 0.27.0
------------
IMPROVEMENTS

* Updated the bundled libgit2 source code to version '0.28.5'.

* Updated the build configuration script to be able to build git2r
  with a system installation of libgit2 version >= 1.0.

* Updated to use libgit2 version 1.0.0 on Windows.

* The build configuration script checks for minimum required version
  of libssh2 (version >= 1.8). Issue #420.

* Updated to use roxygen2 version 7.1.0 to build the documentation.

* Make it easier to view and change the timezone (John Blischak in
  #408).

* Fixed 'ls_tree' to handle content in subfolder, see description in
  PR #402.

* The 'branch_create' function has been changed to use the
  'last_commit()' function as default to determine the commit to which
  the new branch should point.