forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sys-apps/debianutils: Bump to version 4.8.2
Package-Manager: Portage-2.3.6, Repoman-2.3.3
- Loading branch information
Lars Wendler
committed
Aug 8, 2017
1 parent
5e8de69
commit 7ac291b
Showing
2 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
DIST debianutils_4.7.tar.xz 156276 SHA256 a269cacd40f52f2fa5d5636357714a49e8538459c16d77772efaa23711fe53d9 SHA512 74110d194de8b6b61d40b133b97629520048a8fdedac349ec2031c793c0246526c1c7904e88098b4c2a121e5efba2d724924139ab1aca15d129a4d210f94a1aa WHIRLPOOL a3a8ab13f904d9fa90d663998b48800fe5ceceea01e46434a052ac81caf940376b580d3228822f390587df7806fc0876627ff6cbcfcb0b1f294b4ce5bacd12bd | ||
DIST debianutils_4.8.1.1.tar.xz 156256 SHA256 06446cd4c0d309fd31a0682c5c2f07f7613fb867f769414b9cc51f155ad73172 SHA512 22f27692a7d3847fad1be223d73e5575581db8621771e92e68fe91bd31e67084fd655fef857905be46ab3a45340503b0af9399b8fe28f221ea5cee4b49970821 WHIRLPOOL b8eee3d2bae34a636072c8e2fd275fc1f0edf455977791154df343fa1bc2cba9e518ac21ba9fa555b9787ea35c5246bc3115263fecc4e7cb3b1c79e230f4f235 | ||
DIST debianutils_4.8.1.tar.xz 156072 SHA256 2c395c0bdcfe89de30828b1d25cc5549ded5225a6d3625fbcb2cc0881ef5f026 SHA512 c5da2c6d4ed8b65019f73db3c634d00a358ac45a93947e6eafeddcc3356721b04b19fdb7134aa9561009c35e749e5fa3d3d6ae5dd5db24d9eaf9b8883bf72234 WHIRLPOOL 5ec1280c324c9c88956b5c1828ae0218218a4c9f3027c91f13cb54d1c6267eea196536a02a6ee8de31cb77eff256862f4c2d814aa94a87e24c92cbd3aa428de6 | ||
DIST debianutils_4.8.2.tar.xz 155944 SHA256 4deb5f293fd3e43c5d4a625a30b18d0fb07662ff77f769e3272841cdb61e7c68 SHA512 40bad124e99c5a315b7ddf181afc2db216c85ddfe5603a16fbd21bd01091d3631b18826ddf799ba232ecaa1c2b3ff389a26a533f392918eb0733efdd75749759 WHIRLPOOL fcf293e630665a822687def6974f406b8e0cdfe57aaa554e0844620fa3a018c53828bdd807cb0d136aa27bc44184b4f62c04e4588dd4245fb40f2251934ce102 | ||
DIST debianutils_4.8.tar.xz 155692 SHA256 afa95bbe6b6fd3ef3c0c838b2d7232f09fabeff593ca4b5583cffa6748567ee2 SHA512 25119e4079892f80d0780ba167a58b789769472611d76e5974df7f5ccd22c95cbbb3ae60f6d23937b968b091eeb835c009071b7ec7ab892a6c7fa9cf119b9b23 WHIRLPOOL 5c58a9b52106cd4d1c8c2fb1ad16be2e092aa6799f1abedb6091b1bf5f270d8fee0773fb99b5dac32a63bb05d9ca861dd6937d8a2db15ebcb5b8b320abc6d327 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
|
||
inherit flag-o-matic | ||
|
||
DESCRIPTION="A selection of tools from Debian" | ||
HOMEPAGE="http://packages.qa.debian.org/d/debianutils.html" | ||
SRC_URI="mirror://debian/pool/main/d/${PN}/${PN}_${PV}.tar.xz" | ||
|
||
LICENSE="BSD GPL-2 SMAIL" | ||
SLOT="0" | ||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~arm-linux ~x86-linux" | ||
IUSE="kernel_linux static" | ||
|
||
PATCHES=( "${FILESDIR}"/${PN}-3.4.2-no-bs-namespace.patch ) | ||
|
||
src_configure() { | ||
use static && append-ldflags -static | ||
default | ||
} | ||
|
||
src_install() { | ||
into / | ||
dobin tempfile run-parts | ||
if use kernel_linux ; then | ||
dosbin installkernel | ||
fi | ||
|
||
into /usr | ||
dosbin savelog | ||
|
||
doman tempfile.1 run-parts.8 savelog.8 | ||
use kernel_linux && doman installkernel.8 | ||
cd debian || die | ||
dodoc changelog control | ||
keepdir /etc/kernel/postinst.d | ||
} |