From: "Mart Raudsepp" <leio@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libgit2/
Date: Mon, 19 Feb 2018 20:03:35 +0000 (UTC) [thread overview]
Message-ID: <1519070608.2c2a77969fcd449eb76f92caa95734d23a2fa2f1.leio@gentoo> (raw)
commit: 2c2a77969fcd449eb76f92caa95734d23a2fa2f1
Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 19 20:01:33 2018 +0000
Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
CommitDate: Mon Feb 19 20:03:28 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c2a7796
dev-libs/libgit2: remove old
Package-Manager: Portage-2.3.19, Repoman-2.3.6
dev-libs/libgit2/Manifest | 2 -
dev-libs/libgit2/libgit2-0.24.6.ebuild | 75 ----------------------------------
dev-libs/libgit2/libgit2-0.25.1.ebuild | 75 ----------------------------------
3 files changed, 152 deletions(-)
diff --git a/dev-libs/libgit2/Manifest b/dev-libs/libgit2/Manifest
index d36a541d8c4..1d84cb54928 100644
--- a/dev-libs/libgit2/Manifest
+++ b/dev-libs/libgit2/Manifest
@@ -1,3 +1 @@
-DIST libgit2-0.24.6.tar.gz 4178476 BLAKE2B 5bb1bad874581f987e2b10eb6fba8265c2e17c3eb0f05ff4b0db1e4bed81842331b56d7e360cbaae7fed7431cf6e36e2863342bfb76b7df8d33d77958f9304cc SHA512 ea928629450f6619c17e76cf32e5d76ddd9e00d914b8a0fc2efdcc32ae271637c124a27a8d4c595b8dcf2048551b22f1bc3c5b6394b3022a2f852a06f7ab3396
-DIST libgit2-0.25.1.tar.gz 4252130 BLAKE2B d5e6270ef8967d36094182eafe68673a07c667bec062c48aa036c02ecec493b0b7cc874681faed68be95d8ccb1635a155e77b7afcc489cb0b9e09ecedfdc8f7e SHA512 bbd0d27c95406b548185ce02e2a9288a9dcb8c3b28476ba20f4f4917f6bd67f1ddee80de3054d30b79cdb9d973c3061a15ea7847c79bfa4e0c62e41d5195cb99
DIST libgit2-0.26.0.tar.gz 4697149 BLAKE2B 468e679bd7093004fb19a7947102d09bb90c653f3957615ce5468fe4c602f61804877072445a90447d83c70277529d02762cd3f35d0879708ea8355c44fe3456 SHA512 988c616c99637f2c1f80c498de34820296b78c0601669475eba9d194490cfd2047131987e63a799599277893e5741f9bcc226ffa594327356047ed563f07d346
diff --git a/dev-libs/libgit2/libgit2-0.24.6.ebuild b/dev-libs/libgit2/libgit2-0.24.6.ebuild
deleted file mode 100644
index 02472f65a33..00000000000
--- a/dev-libs/libgit2/libgit2-0.24.6.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit cmake-utils multilib
-
-if [[ ${PV} == "9999" ]] ; then
- EGIT_REPO_URI="https://github.com/${PN}/${PN}.git"
- inherit git-r3
-else
- SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="amd64 ~arm ~ppc x86 ~ppc-macos"
-fi
-
-DESCRIPTION="A linkable library for Git"
-HOMEPAGE="https://libgit2.github.com/"
-
-LICENSE="GPL-2-with-linking-exception"
-SLOT="0/24"
-IUSE="examples gssapi libressl ssh test threads trace"
-
-RDEPEND="
- !libressl? ( dev-libs/openssl:0 )
- libressl? ( dev-libs/libressl )
- sys-libs/zlib
- net-libs/http-parser:=
- gssapi? ( virtual/krb5 )
- ssh? ( net-libs/libssh2 )
-"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
-"
-
-DOCS=( AUTHORS CONTRIBUTING.md CONVENTIONS.md README.md )
-
-src_prepare() {
- # skip online tests
- sed -i '/libgit2_clar/s/-ionline/-xonline/' CMakeLists.txt || die
-
- cmake-utils_src_prepare
-}
-
-src_configure() {
- local mycmakeargs=(
- -DLIB_INSTALL_DIR="${EPREFIX}/usr/$(get_libdir)"
- $(cmake-utils_use_build test CLAR)
- $(cmake-utils_use_enable trace TRACE)
- $(cmake-utils_use_use gssapi GSSAPI)
- $(cmake-utils_use_use ssh SSH)
- $(cmake-utils_use threads THREADSAFE)
- )
- cmake-utils_src_configure
-}
-
-src_test() {
- if [[ ${EUID} -eq 0 ]] ; then
- # repo::iterator::fs_preserves_error fails if run as root
- # since root can still access dirs with 0000 perms
- ewarn "Skipping tests: non-root privileges are required for all tests to pass"
- else
- local TEST_VERBOSE=1
- cmake-utils_src_test
- fi
-}
-
-src_install() {
- cmake-utils_src_install
-
- if use examples ; then
- egit_clean examples
- dodoc -r examples
- docompress -x /usr/share/doc/${PF}/examples
- fi
-}
diff --git a/dev-libs/libgit2/libgit2-0.25.1.ebuild b/dev-libs/libgit2/libgit2-0.25.1.ebuild
deleted file mode 100644
index 110fc1f0df8..00000000000
--- a/dev-libs/libgit2/libgit2-0.25.1.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit cmake-utils multilib
-
-if [[ ${PV} == "9999" ]] ; then
- EGIT_REPO_URI="https://github.com/${PN}/${PN}.git"
- inherit git-r3
-else
- SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~arm ~ppc ~x86 ~ppc-macos"
-fi
-
-DESCRIPTION="A linkable library for Git"
-HOMEPAGE="https://libgit2.github.com/"
-
-LICENSE="GPL-2-with-linking-exception"
-SLOT="0/25"
-IUSE="examples gssapi libressl ssh test threads trace"
-
-RDEPEND="
- !libressl? ( dev-libs/openssl:0 )
- libressl? ( dev-libs/libressl )
- sys-libs/zlib
- net-libs/http-parser:=
- gssapi? ( virtual/krb5 )
- ssh? ( net-libs/libssh2 )
-"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
-"
-
-DOCS=( AUTHORS CONTRIBUTING.md CONVENTIONS.md README.md )
-
-src_prepare() {
- # skip online tests
- sed -i '/libgit2_clar/s/-ionline/-xonline/' CMakeLists.txt || die
-
- cmake-utils_src_prepare
-}
-
-src_configure() {
- local mycmakeargs=(
- -DLIB_INSTALL_DIR="${EPREFIX}/usr/$(get_libdir)"
- $(cmake-utils_use_build test CLAR)
- $(cmake-utils_use_enable trace TRACE)
- $(cmake-utils_use_use gssapi GSSAPI)
- $(cmake-utils_use_use ssh SSH)
- $(cmake-utils_use threads THREADSAFE)
- )
- cmake-utils_src_configure
-}
-
-src_test() {
- if [[ ${EUID} -eq 0 ]] ; then
- # repo::iterator::fs_preserves_error fails if run as root
- # since root can still access dirs with 0000 perms
- ewarn "Skipping tests: non-root privileges are required for all tests to pass"
- else
- local TEST_VERBOSE=1
- cmake-utils_src_test
- fi
-}
-
-src_install() {
- cmake-utils_src_install
-
- if use examples ; then
- egit_clean examples
- dodoc -r examples
- docompress -x /usr/share/doc/${PF}/examples
- fi
-}
next reply other threads:[~2018-02-19 20:03 UTC|newest]
Thread overview: 288+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-02-19 20:03 Mart Raudsepp [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-02-23 3:23 [gentoo-commits] repo/gentoo:master commit in: dev-libs/libgit2/ Michał Górny
2025-02-23 0:04 Sam James
2025-01-28 13:24 Michał Górny
2025-01-25 12:06 Sam James
2025-01-25 11:00 Sam James
2025-01-25 9:20 Arthur Zamarin
2025-01-25 9:20 Arthur Zamarin
2025-01-05 10:33 WANG Xuerui
2025-01-05 10:33 WANG Xuerui
2024-12-29 3:21 Michał Górny
2024-11-30 20:40 Arthur Zamarin
2024-11-16 8:09 Michał Górny
2024-10-31 5:24 Michał Górny
2024-10-31 5:24 Michał Górny
2024-10-27 2:49 Michał Górny
2024-10-20 3:11 Michał Górny
2024-07-31 23:00 Eli Schwartz
2024-06-24 2:41 Michał Górny
2024-06-24 2:41 Michał Górny
2024-06-24 1:16 Sam James
2024-06-15 6:11 Sam James
2024-06-15 6:11 Sam James
2024-06-15 6:11 Sam James
2024-06-15 6:11 Sam James
2024-06-15 6:11 Sam James
2024-06-15 4:43 Sam James
2024-05-16 14:58 Michał Górny
2024-04-26 18:55 Michał Górny
2024-04-11 21:34 Sam James
2024-04-11 19:51 Sam James
2024-04-11 17:53 Arthur Zamarin
2024-04-11 17:44 Arthur Zamarin
2024-04-11 17:40 Arthur Zamarin
2024-04-11 17:13 Arthur Zamarin
2024-04-11 16:46 Sam James
2024-03-29 4:18 Sam James
2024-03-22 16:45 Michał Górny
2024-03-22 16:28 Arthur Zamarin
2024-03-22 16:22 Arthur Zamarin
2024-03-22 16:22 Arthur Zamarin
2024-03-22 14:18 Michał Górny
2024-03-21 5:39 Michał Górny
2024-02-07 19:24 Sam James
2024-02-07 19:14 Sam James
2024-02-07 18:52 Sam James
2024-02-07 18:52 Sam James
2024-02-07 7:39 Michał Górny
2023-12-08 16:49 Michał Górny
2023-12-08 9:01 Arthur Zamarin
2023-12-08 9:01 Arthur Zamarin
2023-12-08 9:01 Arthur Zamarin
2023-10-06 15:05 Sam James
2023-10-06 14:55 Sam James
2023-10-06 14:30 Arthur Zamarin
2023-10-06 14:29 Sam James
2023-08-15 2:39 Michał Górny
2023-07-18 6:03 Michał Górny
2023-05-03 7:57 Michał Górny
2023-05-03 3:53 Sam James
2023-05-02 20:00 Arthur Zamarin
2023-05-02 18:52 Arthur Zamarin
2023-05-02 18:09 Arthur Zamarin
2023-05-02 18:09 Arthur Zamarin
2023-05-02 18:08 Arthur Zamarin
2023-05-02 17:34 Arthur Zamarin
2023-04-13 6:04 Michał Górny
2023-03-24 13:29 Arthur Zamarin
2023-03-24 13:20 Arthur Zamarin
2023-03-21 19:34 Sam James
2023-03-21 19:34 Sam James
2023-03-21 19:34 Sam James
2023-03-21 19:34 Sam James
2023-03-21 18:20 Michał Górny
2023-02-28 13:07 Michał Górny
2023-02-28 13:07 Michał Górny
2023-02-26 15:25 Michał Górny
2023-02-26 4:57 Michał Górny
2023-02-26 4:57 Michał Górny
2023-01-25 19:45 Michał Górny
2023-01-25 19:22 Arthur Zamarin
2023-01-21 19:25 Arthur Zamarin
2023-01-21 17:17 Arthur Zamarin
2023-01-21 7:02 Arthur Zamarin
2023-01-21 7:01 Arthur Zamarin
2023-01-21 7:01 Arthur Zamarin
2023-01-21 6:53 Sam James
2023-01-21 5:14 Michał Górny
2023-01-13 19:38 Arthur Zamarin
2022-11-22 18:46 Arthur Zamarin
2022-09-06 21:41 Sam James
2022-08-27 8:42 Michał Górny
2022-08-27 8:27 Agostino Sarubbo
2022-08-27 6:47 Arthur Zamarin
2022-08-27 6:47 Arthur Zamarin
2022-08-27 6:47 Arthur Zamarin
2022-08-26 23:28 Sam James
2022-08-26 23:27 Sam James
2022-07-21 2:31 Matt Turner
2022-07-14 7:31 Michał Górny
2022-07-13 7:39 Agostino Sarubbo
2022-07-13 7:39 Agostino Sarubbo
2022-07-13 7:33 Agostino Sarubbo
2022-07-13 7:33 Agostino Sarubbo
2022-07-13 6:07 Agostino Sarubbo
2022-07-13 6:07 Agostino Sarubbo
2022-07-13 0:31 Sam James
2022-07-13 0:31 Sam James
2022-07-12 22:46 Sam James
2022-07-12 22:46 Sam James
2022-07-12 22:46 Sam James
2022-07-12 22:46 Sam James
2022-07-12 20:49 Michał Górny
2022-07-12 20:49 Michał Górny
2022-05-31 18:52 Matt Turner
2022-05-28 5:36 Michał Górny
2022-04-13 5:30 Michał Górny
2022-04-13 5:30 Michał Górny
2022-04-12 9:03 Michał Górny
2022-04-12 8:06 Agostino Sarubbo
2022-04-11 21:02 Jakov Smolić
2022-04-11 19:24 Arthur Zamarin
2022-04-11 19:21 Arthur Zamarin
2022-04-11 19:20 Arthur Zamarin
2022-04-11 19:20 Arthur Zamarin
2022-04-11 7:41 Michał Górny
2022-03-09 15:39 Sam James
2022-03-09 12:49 Sam James
2022-03-08 12:32 Sam James
2022-02-26 21:51 Michał Górny
2022-02-19 0:05 Michał Górny
2022-02-13 22:08 Michał Górny
2022-02-13 19:39 Michał Górny
2022-02-13 17:27 Michał Górny
2021-12-21 9:42 Michał Górny
2021-10-31 18:07 Sam James
2021-10-31 18:07 Sam James
2021-10-31 18:02 Sam James
2021-10-31 18:02 Sam James
2021-10-31 17:58 Sam James
2021-10-31 17:55 Sam James
2021-09-28 6:20 Michał Górny
2021-09-04 22:07 Michał Górny
2021-09-04 21:39 Sam James
2021-09-02 21:00 Michał Górny
2021-09-01 18:32 Sam James
2021-08-30 1:27 Sam James
2021-08-30 1:27 Sam James
2021-08-30 1:23 Sam James
2021-08-30 1:23 Sam James
2021-07-27 11:00 Marek Szuba
2021-07-01 6:13 Michał Górny
2021-05-10 5:11 Joonas Niilola
2021-05-01 7:29 Mikle Kolyada
2020-12-20 20:34 Michał Górny
2020-12-20 16:45 Sam James
2020-12-20 16:40 Thomas Deutschmann
2020-12-18 10:25 Sergei Trofimovich
2020-12-17 4:01 Sam James
2020-12-16 19:53 Sam James
2020-11-24 8:18 Michał Górny
2020-10-13 4:19 Georgy Yakovlev
2020-10-13 2:09 Michał Górny
2020-10-05 22:21 Michał Górny
2020-09-18 9:38 Michał Górny
2020-08-01 15:25 Michał Górny
2020-08-01 8:53 Sergei Trofimovich
2020-08-01 8:53 Sergei Trofimovich
2020-07-26 4:06 Sam James
2020-07-25 21:56 Sam James
2020-07-25 19:33 Sam James
2020-07-25 0:46 Sam James
2020-07-24 15:09 Agostino Sarubbo
2020-06-04 9:16 Michał Górny
2020-06-03 18:43 Agostino Sarubbo
2020-06-03 15:15 Agostino Sarubbo
2020-06-03 15:12 Agostino Sarubbo
2020-04-13 14:52 Agostino Sarubbo
2020-04-13 14:50 Agostino Sarubbo
2020-04-13 14:49 Agostino Sarubbo
2020-04-03 7:30 Michał Górny
2020-04-02 6:49 Michał Górny
2020-04-02 6:49 Michał Górny
2020-02-24 17:03 Michał Górny
2020-02-21 10:08 Michał Górny
2020-02-21 10:08 Michał Górny
2019-12-27 2:03 Georgy Yakovlev
2019-12-27 2:03 Georgy Yakovlev
2019-12-26 11:27 Michał Górny
2019-12-26 11:27 Michał Górny
2019-12-13 0:07 Thomas Deutschmann
2019-12-12 10:37 Agostino Sarubbo
2019-12-11 15:01 Aaron Bauman
2019-12-11 9:12 Michał Górny
2019-08-18 21:51 Agostino Sarubbo
2019-08-16 22:53 Aaron Bauman
2019-08-16 22:38 Thomas Deutschmann
2019-08-14 20:58 Michał Górny
2019-06-08 8:00 Michał Górny
2019-06-08 8:00 Michał Górny
2019-05-27 21:04 Aaron Bauman
2019-05-22 12:47 Michał Górny
2019-04-10 15:07 Michał Górny
2019-02-15 12:32 Michał Górny
2019-02-15 12:32 Michał Górny
2019-02-13 14:28 Michał Górny
2019-02-02 16:37 Michał Górny
2019-02-02 10:31 Michał Górny
2019-01-29 13:23 Michał Górny
2018-10-29 7:20 Michał Górny
2018-10-28 23:03 Thomas Deutschmann
2018-10-27 19:06 Mikle Kolyada
2018-10-27 7:30 Michał Górny
2018-10-27 7:30 Michał Górny
2018-10-07 8:16 Michał Górny
2018-10-06 23:05 Thomas Deutschmann
2018-10-06 21:54 Mikle Kolyada
2018-10-06 7:11 Michał Górny
2018-10-06 7:11 Michał Górny
2018-08-08 2:55 Michał Górny
2018-08-07 22:43 Thomas Deutschmann
2018-08-07 8:50 Agostino Sarubbo
2018-08-07 6:21 Michał Górny
2018-08-07 6:21 Michał Górny
2018-08-07 6:21 Michał Górny
2018-07-18 22:11 Michał Górny
2018-07-11 14:27 Agostino Sarubbo
2018-07-10 6:58 Michał Górny
2018-07-10 6:49 Michał Górny
2018-07-02 10:46 Mart Raudsepp
2018-06-11 6:24 Michał Górny
2018-06-06 12:10 Agostino Sarubbo
2018-06-05 15:27 Michał Górny
2018-05-30 6:38 Michał Górny
2018-04-29 0:08 Mart Raudsepp
2018-04-26 22:32 Aaron Bauman
2018-04-26 17:15 Thomas Deutschmann
2018-03-26 16:07 Michał Górny
2018-03-26 15:18 Michał Górny
2018-03-20 16:16 Michał Górny
2018-03-12 17:08 Michał Górny
2018-03-12 17:08 Michał Górny
2018-03-12 17:08 Michał Górny
2018-03-12 17:08 Michał Górny
2018-03-11 2:16 Thomas Deutschmann
2018-03-10 18:25 Agostino Sarubbo
2018-03-09 7:27 Michał Górny
2018-02-06 18:36 Thomas Deutschmann
2018-01-26 15:03 Mikle Kolyada
2017-08-24 7:09 Michał Górny
2017-08-23 4:11 Tim Harder
2017-08-22 12:59 Mart Raudsepp
2017-08-22 12:23 Mart Raudsepp
2017-07-29 20:30 Alexis Ballier
2017-07-23 12:14 Manuel Rüger
2017-07-02 20:16 Manuel Rüger
2017-01-23 18:14 Manuel Rüger
2017-01-23 18:14 Manuel Rüger
2017-01-19 17:28 Manuel Rüger
2017-01-19 17:07 Agostino Sarubbo
2017-01-19 17:06 Agostino Sarubbo
2017-01-19 11:46 Manuel Rüger
2016-12-05 1:52 Aaron Bauman
2016-12-05 1:07 Aaron Bauman
2016-11-20 14:01 Manuel Rüger
2016-11-20 13:45 Agostino Sarubbo
2016-11-06 23:17 Manuel Rüger
2016-10-11 15:51 Agostino Sarubbo
2016-10-10 22:35 Manuel Rüger
2016-10-01 0:54 Pacho Ramos
2016-08-08 7:07 Tim Harder
2016-08-06 18:25 Manuel Rüger
2016-07-26 10:42 Chí-Thanh Christopher Nguyễn
2016-03-06 16:43 Mikle Kolyada
2016-03-05 11:06 Manuel Rüger
2016-02-21 23:44 Pacho Ramos
2016-02-10 17:16 Justin Lecher
2016-01-22 21:03 Justin Lecher
2016-01-08 14:10 Alexey Shvetsov
2015-11-22 14:25 Manuel Rüger
2015-10-11 0:34 Ulrich Müller
2015-10-10 11:31 Manuel Rüger
2015-10-10 11:31 Manuel Rüger
2015-10-03 14:31 Julian Ospald
2015-09-15 10:30 Manuel Rüger
2015-09-15 0:41 Tim Harder
2015-09-14 17:05 Manuel Rüger
2015-08-28 6:22 Tim Harder
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1519070608.2c2a77969fcd449eb76f92caa95734d23a2fa2f1.leio@gentoo \
--to=leio@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox