SHA256
8
0
forked from pool/libgit2
Commit Graph

77 Commits

Author SHA256 Message Date
Stephan Kulow
ae53e43e2b Accepting request 676247 from devel:libraries:c_c++
OBS-URL: https://build.opensuse.org/request/show/676247
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libgit2?expand=0&rev=36
2019-02-24 16:07:10 +00:00
ff9e1dcc63 Accepting request 676231 from home:darix:apps
-  Update to version 0.28.1:
   - The deprecated functions (git_buf_free and the giterr_ family
     of functions) are now exported properly. In the v0.28 release,
     they were not given the correct external attributes and they
     did not have the correct linkage visibility in the v0.28
     library.

OBS-URL: https://build.opensuse.org/request/show/676231
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libgit2?expand=0&rev=75
2019-02-14 20:46:14 +00:00
1e6433acdf Accepting request 674749 from GNOME:Factory
- Update to version 0.28.0:
  * Changes or improvements:
    - The library is now always built with cdecl calling
      conventions on Windows; the ability to build a stdcall
      library has been removed.
    - Reference log creation now honors
      core.logallrefupdates=always.
    - Fix some issues with the error-reporting in the OpenSSL
      backend.
    - HTTP proxy support is now builtin; libcurl is no longer used
      to support proxies and is removed as a dependency.
    - Certificate and credential callbacks can now return
      GIT_PASSTHROUGH to decline to act; libgit2 will behave as if
      there was no callback set in the first place.
    - The line-ending filtering logic - when checking out files -
      has been updated to match newer git (>= git 2.9) for proper
      interoperability.
    - Symbolic links are now supported on Windows when
      core.symlinks is set to true.
    - Submodules with names which attempt to perform path traversal
      now have their configuration ignored. Such names were blindly
      appended to the $GIT_DIR/modules and a malicious name could
      lead to an attacker writing to an arbitrary location. This
      matches git's handling of CVE-2018-11235.
    - Object validation is now performed during tree creation in
      the git_index_write_tree_to API.
    - Configuration variable may now be specified on the same line
      as a section header; previously this was erroneously a parser
      error.
    - When an HTTP server supports both NTLM and Negotiate
      authentication mechanisms, we would previously fail to
      authenticate with any mechanism.
    - The GIT_OPT_SET_PACK_MAX_OBJECTS option can now set the
      maximum number of objects allowed in a packfile being
      downloaded; this can help limit the maximum memory used when
      fetching from an untrusted remote.
    - Line numbers in diffs loaded from patch files were not being
      populated; they are now included in the results.
    - The repository's index is reloaded from disk at the beginning
      of git_merge operations to ensure that it is up-to-date.
    - Mailmap handling APIs have been introduced, and the new
      commit APIs git_commit_committer_with_mailmap and
      git_commit_author_with_mailmap will use the mailmap to
      resolve the committer and author information. In addition,
      blame will use the mailmap given when the
      GIT_BLAME_USE_MAILMAP option.
    - Ignore handling for files in ignored folders would be
      ignored.
    - Worktrees can now be backed by bare repositories.
    - Trailing spaces are supported in .gitignore files, these
      spaces were previously (and erroneously) treated as part of
      the pattern.
    - The library can now be built with mbedTLS support for HTTPS.
    - The diff status character 'T' will now be presented by the
      git_diff_status_char API for diff entries that change type.
    - Revision walks previously would sometimes include commits
      that should have been ignored; this is corrected.
    - Revision walks are now more efficient when the output is
      unsorted; we now avoid walking all the way to the beginning
      of history unnecessarily.
    - Error-handling around index extension loading has been fixed.
      We were previously always misreporting a truncated index.
  * API additions:
    - The index may now be iterated atomically using
      git_index_iterator.
    - Remote objects can now be created with extended options using
      the git_remote_create_with_opts API.
    - Diff objects can now be applied as changes to the working
      directory, index or both, emulating the git apply command.
      Additionally, git_apply_to_tree can apply those changes to a
      tree object as a fully in-memory operation.
    - You can now swap out memory allocators via the
      GIT_OPT_SET_ALLOCATOR option with git_libgit2_opts().
    - You can now ensure that functions do not discard unwritten
      changes to the index via the
      GIT_OPT_ENABLE_UNSAVED_INDEX_SAFETY option to
      git_libgit2_opts(). This will cause functions that implicitly
      re-read the index (eg, git_checkout) to fail if you have
      staged changes to the index but you have not written the
      index to disk. (Unless the checkout has the FORCE flag
      specified.)
    - At present, this defaults to off, but we intend to enable
      this more broadly in the future, as a warning or error. We
      encourage you to examine your code to ensure that you are not
      relying on the current behavior that implicitly removes
      staged changes.
    - Reference specifications can be parsed from an arbitrary
      string with the git_refspec_parse API.
    - You can now get the name and path of worktrees using the
      git_worktree_name and git_worktree_path APIs, respectively.
    - The ref field has been added to git_worktree_add_options to
      enable the creation of a worktree from a pre-existing branch.
    - It's now possible to analyze merge relationships between any
      two references, not just against HEAD, using
      git_merge_analysis_for_ref.
  * API removals:
    - The git_buf_free API is deprecated; it has been renamed to
      git_buf_dispose for consistency. The git_buf_free API will be
      retained for backward compatibility for the foreseeable
      future.
    - The git_otype enumeration and its members are deprecated and
      have been renamed for consistency. The GIT_OBJ_ enumeration
      values are now prefixed with GIT_OBJECT_. The old
      enumerations and macros will be retained for backward
      compatibility for the foreseeable future.
    - Several index-related APIs have been renamed for consistency.
      The GIT_IDXENTRY_ enumeration values and macros have been
      renamed to be prefixed with GIT_INDEX_ENTRY_. The
      GIT_INDEXCAP enumeration values are now prefixed with
      GIT_INDEX_CAPABILITY_. The old enumerations and macros will
      be retained for backward compatibility for the foreseeable
      future.
    - The error functions and enumeration values have been renamed
      for consistency. The giterr_ functions and values prefix have
      been renamed to be prefixed with git_error_; similarly,
      the GITERR_ constants have been renamed to be prefixed with
      GIT_ERROR_. The old enumerations and macros will be retained
      for backward compatibility for the foreseeable future.
  * Breaking API changes:
    - The default checkout strategy changed from DRY_RUN to SAFE.
    - Adding a symlink as .gitmodules into the index from the
      workdir or checking out such files is not allowed as this can
      make a Git implementation write outside of the repository and
      bypass the fsck checks for CVE-2018-11235.
- Bump sover to 28 following upstreams changes.

OBS-URL: https://build.opensuse.org/request/show/674749
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libgit2?expand=0&rev=74
2019-02-14 15:28:32 +00:00
aca9953d5c Accepting request 646816 from devel:libraries:c_c++
OBS-URL: https://build.opensuse.org/request/show/646816
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libgit2?expand=0&rev=35
2018-11-13 15:21:03 +00:00
6afb899c36 Accepting request 646487 from home:AndreasStieger:branches:devel:libraries:c_c++
libgit2 0.27.7 bsc#1114729

OBS-URL: https://build.opensuse.org/request/show/646487
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libgit2?expand=0&rev=72
2018-11-07 07:44:06 +00:00
e16d402cf8 Accepting request 640549 from devel:libraries:c_c++
OBS-URL: https://build.opensuse.org/request/show/640549
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libgit2?expand=0&rev=34
2018-10-11 09:47:15 +00:00
Ismail Dönmez
590b3ba269 Accepting request 640400 from home:AndreasStieger:branches:devel:libraries:c_c++
libgit2 0.27.5 CVE-2018-17456 bsc#1110949

OBS-URL: https://build.opensuse.org/request/show/640400
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libgit2?expand=0&rev=70
2018-10-08 08:26:41 +00:00
d68229d6e8 Accepting request 631038 from devel:libraries:c_c++
OBS-URL: https://build.opensuse.org/request/show/631038
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libgit2?expand=0&rev=33
2018-09-11 15:08:31 +00:00
b8d8ec6dd4 Accepting request 630722 from home:pluskalm:branches:devel:libraries:c_c++
- Use pkgconfig style of dependencies, refresh dependencies
- Use more of cmake macros

OBS-URL: https://build.opensuse.org/request/show/630722
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libgit2?expand=0&rev=68
2018-08-23 07:42:48 +00:00
29676bb4bf Accepting request 628955 from devel:libraries:c_c++
OBS-URL: https://build.opensuse.org/request/show/628955
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libgit2?expand=0&rev=32
2018-08-20 14:17:15 +00:00
Ismail Dönmez
7d981fcdec Accepting request 628948 from home:AndreasStieger:branches:devel:libraries:c_c++
- libgit2 0.27.4:
  * fix out-of-bounds reads when processing smart-protocol "ng" 
    packets (bsc#1104641)

OBS-URL: https://build.opensuse.org/request/show/628948
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libgit2?expand=0&rev=66
2018-08-13 11:37:25 +00:00
2fdaede909 Accepting request 622033 from devel:libraries:c_c++
OBS-URL: https://build.opensuse.org/request/show/622033
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libgit2?expand=0&rev=31
2018-07-17 07:36:58 +00:00
0438b86677 Accepting request 621935 from home:AndreasStieger:branches:devel:libraries:c_c++
- libgit2 0.27.3:
  * CVE-2018-10887 (bsc#1100613), CVE-2018-10888 (bsc#1100612):
    Specially crafted delta object in packfiles could trigger an
    integer overflow, bypassing input validation and causing the
    object database to contain copies of system memory. This may
    allow denial of service or, potentially, an information leak
- includes changes from 0.27.2:
  * various API and correctnes fixes
  * Fixes related to handling of .gitmodules
- includes changes from 0.27.1:
  * CVE-2018-11235: insufficient validation of submodule names from
    .gitmodules allowed writes to arbitrary paths (bsc#1095219)
  * disallow .gitmodules files as symlinks.

OBS-URL: https://build.opensuse.org/request/show/621935
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libgit2?expand=0&rev=64
2018-07-11 08:06:48 +00:00
4a8952e117 Accepting request 600302 from devel:libraries:c_c++
- update to 0.27.0:
  - Changes or improvements
    - Improved p_unlink in posix_w32.c to try and make a file
      writable before sleeping in the retry loop to prevent
      unnecessary calls to sleep.
    - The CMake build infrastructure has been improved to speed up
      building time.
    - A new CMake option "-DUSE_HTTPS=" makes it possible to
      explicitly choose an HTTP backend.
    - A new CMake option "-DSHA1_BACKEND=" makes it possible to
      explicitly choose an SHA1 backend. The collision-detecting
      backend is now the default.
    - A new CMake option "-DUSE_BUNDLED_ZLIB" makes it possible to
      explicitly use the bundled zlib library.
    - A new CMake option "-DENABLE_REPRODUCIBLE_BUILDS" makes it
      possible to generate a reproducible static archive. This
      requires support from your toolchain.
    - The minimum required CMake version has been bumped to 2.8.11.
    - Writing to a configuration file now preserves the case of the
      key given by the caller for the case-insensitive portions of
      the key (existing sections are used even if they don't
      match).
    - We now support conditional includes in configuration files.
    - Fix for handling re-reading of configuration files with
      includes.
    - Fix for reading patches which contain exact renames only.
    - Fix for reading patches with whitespace in the compared
      files' paths.
    - We will now fill FETCH_HEAD from all passed refspecs instead
      of overwriting with the last one.

OBS-URL: https://build.opensuse.org/request/show/600302
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libgit2?expand=0&rev=30
2018-05-04 09:25:38 +00:00
Ismail Dönmez
598e3f8c89 Revert license change
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libgit2?expand=0&rev=62
2018-04-24 07:55:29 +00:00
Ismail Dönmez
aee373979c Fix license
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libgit2?expand=0&rev=61
2018-04-23 14:10:04 +00:00
Ismail Dönmez
a846b2ce93 Run spec-cleaner
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libgit2?expand=0&rev=60
2018-04-23 14:09:25 +00:00
Ismail Dönmez
f5a1162755 Bump baselibs.conf
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libgit2?expand=0&rev=59
2018-04-23 14:08:42 +00:00
Ismail Dönmez
1509d80c10 Accepting request 600076 from home:darix:apps
- update to 0.27.0:

OBS-URL: https://build.opensuse.org/request/show/600076
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libgit2?expand=0&rev=58
2018-04-23 14:03:11 +00:00
9cdbc83616 Accepting request 587053 from devel:libraries:c_c++
OBS-URL: https://build.opensuse.org/request/show/587053
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libgit2?expand=0&rev=29
2018-03-19 22:32:09 +00:00
7ad3a9a7e8 Accepting request 586751 from home:kbabioch:branches:devel:libraries:c_c++
- Update to 0.26.3:
  * Fix cloning of the libgit2 project with git clone --recursive by removing an
    invalid submodule from our testing data.
  * Fix endianness of the port in p_getaddrinfo().
  * Fix handling of negative gitignore rules with wildcards.
  * Fix handling of case-insensitive negative gitignore rules.
  * Fix resolving references to a tag if the reference is stored with its fully
    resolved OID in the packed-refs file.
  * Fix checkout not treating worktree files as modified when only their mode has
    changed.
  * Fix rename detection with GIT_DIFF_FIND_RENAMES_FROM_REWRITES.
  * Fixes memory handling issues when reading crafted repository index files.
    The issues allow for possible denial of service due to allocation of large
    memory and out-of-bound reads.
    (CVE-2018-8098 bnc#1085257 CVE-2018-8099 bnc#1085256)
  * Updates the bundled zlib to 1.2.11. Users who build the bundled zlib are
    vulnerable to security issues in the prior version.

OBS-URL: https://build.opensuse.org/request/show/586751
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libgit2?expand=0&rev=56
2018-03-14 18:50:35 +00:00
19acd53651 Accepting request 584454 from devel:libraries:c_c++
- Modernize spec-file by calling spec-cleaner (forwarded request 584453 from dimstar)

OBS-URL: https://build.opensuse.org/request/show/584454
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libgit2?expand=0&rev=28
2018-03-12 11:09:35 +00:00
e89d5b7f7b Accepting request 584453 from GNOME:Factory
- Modernize spec-file by calling spec-cleaner

OBS-URL: https://build.opensuse.org/request/show/584453
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libgit2?expand=0&rev=54
2018-03-08 14:23:24 +00:00
38535075fd Accepting request 541259 from devel:libraries:c_c++
OBS-URL: https://build.opensuse.org/request/show/541259
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libgit2?expand=0&rev=27
2017-11-16 12:56:46 +00:00
eff9a48461 Accepting request 541248 from home:mimi_vx:branches:devel:libraries:c_c++
- remove unneeded dependency (python is used only for testsuite, which
    isn't used during build)

OBS-URL: https://build.opensuse.org/request/show/541248
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libgit2?expand=0&rev=52
2017-11-13 11:01:23 +00:00
f95d4bd063 Accepting request 515191 from devel:libraries:c_c++
1

OBS-URL: https://build.opensuse.org/request/show/515191
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libgit2?expand=0&rev=26
2017-08-12 18:07:10 +00:00
ff8cd721a9 Accepting request 514723 from home:AndreasStieger:branches:devel:libraries:c_c++
libgit2 0.26.0

OBS-URL: https://build.opensuse.org/request/show/514723
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libgit2?expand=0&rev=50
2017-08-08 13:01:24 +00:00
1160bade3b Accepting request 459331 from devel:libraries:c_c++
1

OBS-URL: https://build.opensuse.org/request/show/459331
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libgit2?expand=0&rev=25
2017-03-22 21:57:16 +00:00
30e879854b Accepting request 459324 from home:AndreasStieger:branches:devel:libraries:c_c++
libgit2 0.25.1

OBS-URL: https://build.opensuse.org/request/show/459324
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libgit2?expand=0&rev=48
2017-02-20 20:36:34 +00:00
201ba98c69 Accepting request 449642 from devel:libraries:c_c++
1

OBS-URL: https://build.opensuse.org/request/show/449642
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libgit2?expand=0&rev=24
2017-01-19 09:41:25 +00:00
ab9a9e2c73 Accepting request 449627 from home:AndreasStieger:branches:devel:libraries:c_c++
libgit2 0.24.6, including the following security fixes:
  * bsc#1019036: edge cases in the Git Smart Protocol can lead to
    attempting to parse outside of the buffer
    CVE-2016-10128,CVE-2016-10129
  * bsc#1019037: MITM possible due to lack of parameter for
    certificate parameter
    CVE-2016-10130,CVE-2017-5338,CVE-2017-5339
- includes changes from 0.24.5:
  * add support for OpenSSL 1.1.0 for BIO filter

OBS-URL: https://build.opensuse.org/request/show/449627
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libgit2?expand=0&rev=46
2017-01-11 10:26:26 +00:00
bfdb0c49dd Accepting request 443053 from devel:libraries:c_c++
1

OBS-URL: https://build.opensuse.org/request/show/443053
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libgit2?expand=0&rev=23
2016-12-04 14:05:43 +00:00
13f6ea4351 Accepting request 443050 from home:AndreasStieger:branches:devel:libraries:c_c++
- libgit2 0.24.3, fixing the following vulnerabilities:
  * CVE-2016-8568, CVE-2016-8569: invalid memory accesses parsing
    object files (bsc#1003810)
  * various bug fixes from the 0.24.2 release

OBS-URL: https://build.opensuse.org/request/show/443050
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libgit2?expand=0&rev=44
2016-12-01 15:35:01 +00:00
e5e221a968 Accepting request 401969 from devel:libraries:c_c++
1

OBS-URL: https://build.opensuse.org/request/show/401969
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libgit2?expand=0&rev=22
2016-07-01 07:57:19 +00:00
75703d2da4 Accepting request 401925 from GNOME:Factory
1

OBS-URL: https://build.opensuse.org/request/show/401925
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libgit2?expand=0&rev=42
2016-06-14 14:07:03 +00:00
3a8d682b3c Accepting request 391137 from devel:libraries:c_c++
- libgit2 0.24.1:
  + various compatible backported bug fixes

OBS-URL: https://build.opensuse.org/request/show/391137
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libgit2?expand=0&rev=21
2016-04-28 14:50:34 +00:00
820e526bb4 + various compatible backported bug fixes
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libgit2?expand=0&rev=40
2016-04-21 10:44:02 +00:00
d294c20d8a Accepting request 390859 from home:AndreasStieger:branches:devel:libraries:c_c++
0.24.1

OBS-URL: https://build.opensuse.org/request/show/390859
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libgit2?expand=0&rev=39
2016-04-21 10:43:40 +00:00
0fc7eca5c7 Accepting request 373977 from devel:libraries:c_c++
1

OBS-URL: https://build.opensuse.org/request/show/373977
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libgit2?expand=0&rev=20
2016-03-29 12:30:33 +00:00
Ismail Dönmez
5ab90943db Accepting request 373935 from GNOME:Next
Update to 0.24.0 - Needs to go to staging :G, scheduling with GNOME 3.20

OBS-URL: https://build.opensuse.org/request/show/373935
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libgit2?expand=0&rev=37
2016-03-16 19:07:23 +00:00
9d13368427 Accepting request 346885 from devel:libraries:c_c++
1

OBS-URL: https://build.opensuse.org/request/show/346885
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libgit2?expand=0&rev=19
2015-12-06 06:29:49 +00:00
Ismail Dönmez
74c3509a8b Accepting request 346856 from home:AndreasStieger:branches:devel:libraries:c_c++
libgit2 0.23.4

OBS-URL: https://build.opensuse.org/request/show/346856
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libgit2?expand=0&rev=35
2015-11-30 17:28:10 +00:00
fefcaebefb Accepting request 336974 from devel:libraries:c_c++
1

OBS-URL: https://build.opensuse.org/request/show/336974
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libgit2?expand=0&rev=18
2015-10-14 14:43:36 +00:00
ca7b574409 Accepting request 336939 from home:AndreasStieger:branches:devel:libraries:c_c++
libgit2 0.23.3

OBS-URL: https://build.opensuse.org/request/show/336939
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libgit2?expand=0&rev=33
2015-10-07 11:31:01 +00:00
9c295a42c6 Accepting request 330502 from devel:libraries:c_c++
(forwarded request 330501 from dimstar)

OBS-URL: https://build.opensuse.org/request/show/330502
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libgit2?expand=0&rev=17
2015-09-17 07:17:35 +00:00
89d30735fd Accepting request 330501 from GNOME:Next
OBS-URL: https://build.opensuse.org/request/show/330501
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libgit2?expand=0&rev=31
2015-09-11 12:44:31 +00:00
2c54abae58 Accepting request 330363 from GNOME:Next
Fix .pc file - makes libgit2-glib build again

OBS-URL: https://build.opensuse.org/request/show/330363
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libgit2?expand=0&rev=30
2015-09-10 16:16:51 +00:00
9d9312f4b2 Accepting request 329622 from devel:libraries:c_c++
1

OBS-URL: https://build.opensuse.org/request/show/329622
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libgit2?expand=0&rev=16
2015-09-08 15:38:28 +00:00
Ismail Dönmez
b61c4045d7 Accepting request 329591 from home:AndreasStieger:branches:devel:libraries:c_c++
0.23.2, and use system libraries instead of bundled ones

OBS-URL: https://build.opensuse.org/request/show/329591
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libgit2?expand=0&rev=28
2015-09-08 07:31:54 +00:00
Ismail Dönmez
5ac5b4904b Accepting request 328937 from GNOME:Next
Scripted push of project GNOME:Next

OBS-URL: https://build.opensuse.org/request/show/328937
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libgit2?expand=0&rev=27
2015-09-04 11:00:14 +00:00