From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/schroot/
Date: Thu, 7 Jun 2018 10:48:51 +0000 (UTC) [thread overview]
Message-ID: <1528368515.ae714d515ea00d900a06cae75400fcaeae1b743a.asturm@gentoo> (raw)
commit: ae714d515ea00d900a06cae75400fcaeae1b743a
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 7 10:43:59 2018 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Jun 7 10:48:35 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae714d51
dev-util/schroot: Drop 1.6.10-r3
Package-Manager: Portage-2.3.40, Repoman-2.3.9
dev-util/schroot/Manifest | 1 -
dev-util/schroot/schroot-1.6.10-r3.ebuild | 129 ------------------------------
2 files changed, 130 deletions(-)
diff --git a/dev-util/schroot/Manifest b/dev-util/schroot/Manifest
index 5175a8adf02..a41729c723e 100644
--- a/dev-util/schroot/Manifest
+++ b/dev-util/schroot/Manifest
@@ -1,3 +1,2 @@
-DIST schroot_1.6.10-1.debian.tar.xz 27108 BLAKE2B ee4f35767975f2713053c6aae9c1ccb472ef541a3a6d9c335a8a8cd923dc90b78eb45bf1fa1ece590cee94e0d629e0365cc592ec8e966bbdd7f0c4414f55b80b SHA512 2b989054485f397c7de4f9d5e625f2bb2d4738ecb087ff83903a247696a2c98dea611e9743d4ae6bee401b122c21aac4f5e220b5e544f9968f94d6f326fadfa6
DIST schroot_1.6.10-2.debian.tar.xz 34296 BLAKE2B 5c712bca72f938d01a9927d846ab48bca83f7f7ed01cee7b7d4caf9c6b5b38ad650152f68dd989fd93032fb669b8208fff09eaf83be7b7e712fcd41caafbc191 SHA512 ea980199b90a2cffc36348e01e2de229c5cb4321f10bcde4b593eeaaa18f34ab9187cc9c717e6043c477819fefbd793cc707e1e77a5bae1c1815a668956cd84c
DIST schroot_1.6.10.orig.tar.xz 797328 BLAKE2B 1f91531f22c5b0a75e5bb74effc660efe4819acc59b007355c12a01c0a1de12674881dd0fbbcab00575a02629662fca799d48f5b967eb527812ed8c08ff9ad28 SHA512 25155989c7811ab4c7bf3cdceaa8d0ffb12f08388143891def96fcd205f1cc401dad9a74f0e9a9ef8610d50174ff8319a8368401431dc87e1a11c0241e61fcbe
diff --git a/dev-util/schroot/schroot-1.6.10-r3.ebuild b/dev-util/schroot/schroot-1.6.10-r3.ebuild
deleted file mode 100644
index 003cb75a064..00000000000
--- a/dev-util/schroot/schroot-1.6.10-r3.ebuild
+++ /dev/null
@@ -1,129 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-inherit cmake-utils eutils pam versionator bash-completion-r1
-
-MY_P=${PN}_${PV}
-DEB_REL=1
-
-DESCRIPTION="Utility to execute commands in a chroot environment"
-HOMEPAGE="http://packages.debian.org/source/sid/schroot"
-SRC_URI="mirror://debian/pool/main/${PN::1}/${PN}/${MY_P}.orig.tar.xz
- mirror://debian/pool/main/${PN::1}/${PN}/${MY_P}-${DEB_REL}.debian.tar.xz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 ~arm x86"
-IUSE="btrfs +dchroot debug doc lvm nls pam test"
-
-COMMON_DEPEND="
- >=dev-libs/boost-1.42.0
- >=sys-apps/util-linux-2.16
- btrfs? ( >=sys-fs/btrfs-progs-0.19-r2 )
- lvm? ( sys-fs/lvm2 )
- pam? ( sys-libs/pam )
-"
-
-DEPEND="${COMMON_DEPEND}
- app-arch/xz-utils
- sys-apps/groff
- doc? (
- app-doc/doxygen
- media-gfx/graphviz
- )
- nls? (
- >=app-text/po4a-0.40
- sys-devel/gettext
- )
- test? ( >=dev-util/cppunit-1.10.0 )
-"
-RDEPEND="${COMMON_DEPEND}
- sys-apps/debianutils
- dchroot? ( !sys-apps/dchroot )
- nls? ( virtual/libintl )
-"
-
-PATCHES=(
- "${FILESDIR}/${PN}-1.6.10-cmake-add-additional-regex-tests.patch"
-)
-
-src_unpack() {
- unpack ${MY_P}.orig.tar.xz
- cd "${S}"
- unpack ${MY_P}-${DEB_REL}.debian.tar.xz
-}
-
-src_prepare() {
- sed -i -e 's/warn(/message(WARNING /' man/CMakeLists.txt || die
- sed -i -e '/^have schroot/d' etc/bash_completion/schroot || die
-
- cmake-utils_src_prepare
-}
-
-src_configure() {
- local mycmakeargs=(
- $(cmake-utils_use btrfs btrfs-snapshot)
- $(cmake-utils_use dchroot dchroot)
- $(cmake-utils_use dchroot dchroot-dsa)
- $(cmake-utils_use debug debug)
- $(cmake-utils_use doc doxygen)
- $(cmake-utils_use lvm lvm-snapshot)
- $(cmake-utils_use nls nls)
- $(cmake-utils_use pam pam)
- $(cmake-utils_use test test)
- -Dbash_completion_dir="$(get_bashcompdir)"
- -DCMAKE_INSTALL_SYSCONFDIR="${EPREFIX}/etc"
- -DCMAKE_INSTALL_LOCALSTATEDIR="${EPREFIX}/var"
- )
- if ! use nls; then
- mycmakeargs+=(-DPO4A_EXECUTABLE=NOTFOUND)
- fi
-
- cmake-utils_src_configure
-}
-
-src_compile() {
- cmake-utils_src_compile all $(usev doc)
-}
-
-src_test() {
- if [[ $EUID -ne 0 ]]; then
- ewarn "Disabling tests because you are not root"
- return 0
- fi
-
- cmake-utils_src_test
-}
-
-src_install() {
- cmake-utils_src_install
-
- insinto /usr/share/doc/${PF}/contrib/setup.d
- doins contrib/setup.d/05customdir contrib/setup.d/09fsck contrib/setup.d/10mount-ssh
-
- newdoc debian/schroot.NEWS NEWS.debian
-
- newinitd "${FILESDIR}"/schroot.initd schroot
- newconfd "${FILESDIR}"/schroot.confd schroot
-
- if use doc; then
- docinto html/sbuild
- dohtml "${BUILD_DIR}"/doc/sbuild/html/*
- docinto html/schroot
- dohtml "${BUILD_DIR}"/doc/schroot/html/*
- fi
-
- if use pam; then
- rm -f "${ED}"etc/pam.d/schroot
- pamd_mimic_system schroot auth account session
- fi
-}
-
-pkg_postinst() {
- if [[ ${REPLACING_VERSIONS} == 1.[24]* ]]; then
- elog "Please read /usr/share/doc/${PF}/NEWS.debian* for important"
- elog "upgrade information."
- fi
-}
next reply other threads:[~2018-06-07 10:48 UTC|newest]
Thread overview: 34+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-06-07 10:48 Andreas Sturmlechner [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-09-30 18:13 [gentoo-commits] repo/gentoo:master commit in: dev-util/schroot/ Arthur Zamarin
2025-09-30 18:12 Arthur Zamarin
2025-08-12 14:58 Mike Gilbert
2025-08-12 3:42 Sam James
2025-07-24 4:52 Eli Schwartz
2025-06-24 5:59 Arthur Zamarin
2022-10-10 4:51 Georgy Yakovlev
2022-10-04 5:19 Sam James
2022-10-04 5:19 Sam James
2022-09-17 7:55 Georgy Yakovlev
2022-09-17 7:00 Georgy Yakovlev
2022-09-17 7:00 Georgy Yakovlev
2022-09-17 7:00 Georgy Yakovlev
2022-03-08 13:06 Jakov Smolić
2021-10-27 6:37 Agostino Sarubbo
2021-10-27 6:35 Agostino Sarubbo
2021-07-29 2:58 Sam James
2021-05-28 15:57 David Seifert
2021-05-26 22:08 Georgy Yakovlev
2021-05-26 22:08 Georgy Yakovlev
2020-08-21 0:06 Georgy Yakovlev
2020-02-27 3:00 Georgy Yakovlev
2020-02-24 13:11 Agostino Sarubbo
2020-02-18 16:24 Agostino Sarubbo
2020-01-05 7:52 Georgy Yakovlev
2019-08-19 0:45 Georgy Yakovlev
2018-06-07 10:48 Andreas Sturmlechner
2018-06-06 23:23 Thomas Deutschmann
2018-06-04 18:45 Mikle Kolyada
2017-06-22 1:01 Jonathan Callen
2016-05-22 18:18 Jonathan Callen
2015-11-03 16:18 Agostino Sarubbo
2015-10-30 9:18 Agostino Sarubbo
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=1528368515.ae714d515ea00d900a06cae75400fcaeae1b743a.asturm@gentoo \
--to=asturm@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