From f9fff8823e0cd1f6570b01337ac99e5bd49c824a Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Mon, 26 Dec 2022 02:06:21 +0000 Subject: gentoo auto-resync : 26:12:2022 - 02:06:21 --- sys-block/Manifest.gz | Bin 10842 -> 10845 bytes sys-block/gpart/Manifest | 2 +- sys-block/gpart/gpart-0.3-r1.ebuild | 31 ++++++++++++++++ sys-block/gpart/gpart-0.3.ebuild | 34 ----------------- sys-block/qla-fc-firmware/Manifest | 2 +- .../qla-fc-firmware-20101015-r1.ebuild | 40 ++++++++++++++++++++ .../qla-fc-firmware-20101015.ebuild | 41 --------------------- 7 files changed, 73 insertions(+), 77 deletions(-) create mode 100644 sys-block/gpart/gpart-0.3-r1.ebuild delete mode 100644 sys-block/gpart/gpart-0.3.ebuild create mode 100644 sys-block/qla-fc-firmware/qla-fc-firmware-20101015-r1.ebuild delete mode 100644 sys-block/qla-fc-firmware/qla-fc-firmware-20101015.ebuild (limited to 'sys-block') diff --git a/sys-block/Manifest.gz b/sys-block/Manifest.gz index 7dc35ca7b71a..8af668f9aa73 100644 Binary files a/sys-block/Manifest.gz and b/sys-block/Manifest.gz differ diff --git a/sys-block/gpart/Manifest b/sys-block/gpart/Manifest index 3da58de11fff..926c53fa0d56 100644 --- a/sys-block/gpart/Manifest +++ b/sys-block/gpart/Manifest @@ -1,5 +1,5 @@ AUX gpart-0.1h-errno.patch 384 BLAKE2B 75bf8f7698a635bd3b17eaf423cb536ac74da4027a22b391a77a1675ff72fb9b909bacf12a958bc68b4b210f4b971e90e2a42661f53d1052a6e6329e40a8e41b SHA512 0b81a8a3edecb4f44907afba9364010f2920a71d7f38626e2cf5f2bf5025b27f021ee762c039718dfb6f1119956c03219b1ffd4373f9f6b3157662dfca553618 AUX gpart-0.3-build.patch 259 BLAKE2B b0c1119b4799628104672f3ce219c560374600fe9c0a9e4163d4454546a158439bb5252205808bbb4a14f0c948115b7be3ad11a6e279021ebf6d01deee851616 SHA512 05cb685691a59bdb60af306c01c3f619e88cdbf3db0d4b48c23ac740b241b80d44a03dd90e89255180c6e0c6f4cc7bb428345734da4f4ad709659aefac66a772 DIST gpart-0.3.tar.gz 53589 BLAKE2B fd479f05219cc3b65ac91318c294728c115dfbab684269d7b5d6dbfa7575902094d3c7e611d296214170713aa23d6909814179208c2599219e94f4bae56d0ccd SHA512 5ee8bc551050d26dc71898d3232549d2b96e0806071571b120cbf819282da0ec2246147a0dfc44576e62d68092bb0183c1a9bb71db7ddca12c0922da60aeea35 -EBUILD gpart-0.3.ebuild 723 BLAKE2B 0a925c2dc0864919af673bcab402444b100edc4780d02d1f154969de5c7a51ca68466a3b28435b6cf6bbe6ea411bbaadc0e2bb6c8668397df7657ac2fa915d91 SHA512 eca21cfb5adea76cb8eb699eb52d748a09ff34ec918307d792ed318132bc4e9fef0d8ad047a626285af334fd8c73123da3bf2683c71495c0af90150a494830b0 +EBUILD gpart-0.3-r1.ebuild 703 BLAKE2B 69089a9a704e2a9dda978c0aa5ab95b1fd77b4b7ee0a3ae2393a2aceec4e7e0f97a0957402f49604426829b4ce8c20a78dc20a42dd7cd09d94987bcd846d9c17 SHA512 76028655df91796c0364dcb18853e68e2f0ab78d51df35c0af7848a50895d22e9b39fa497745c694eb641c27326c1d4baf11a8736280a518cf12ae9e5561f618 MISC metadata.xml 328 BLAKE2B a3238c27212243efebbd65ed21f2b44a77b2e9f96902a6112282d66ca69c16893fdeb2528240503840dbc305b05e03a793b2698204d8efe02dc28c0ad372065a SHA512 eb46c8b46bb15625d8d9b383c61324341a5de71822c9c541c1cdc8ebdf4e72a06c61362253a90350c29be2c896a779729764df1eeb094d1fb9f101482fac508b diff --git a/sys-block/gpart/gpart-0.3-r1.ebuild b/sys-block/gpart/gpart-0.3-r1.ebuild new file mode 100644 index 000000000000..69972af8e900 --- /dev/null +++ b/sys-block/gpart/gpart-0.3-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +DESCRIPTION="Partition table rescue/guessing tool" +HOMEPAGE="https://github.com/baruch/gpart" +SRC_URI="https://github.com/baruch/gpart/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 ~hppa x86" + +PATCHES=( + "${FILESDIR}"/${PN}-0.1h-errno.patch + "${FILESDIR}"/${PN}-0.3-build.patch +) + +src_prepare() { + default + + # Fix version string in build environment. + if [[ "$(awk -F , '/^AC_INIT/ {print $2}' configure.ac)" != ${PV} ]] ; then + sed "/^AC_INIT/s@, [[:digit:]\.]\+[[:alnum:]-]*,@, ${PV},@" \ + -i configure.ac || die + fi + + eautoreconf +} diff --git a/sys-block/gpart/gpart-0.3.ebuild b/sys-block/gpart/gpart-0.3.ebuild deleted file mode 100644 index 441fcf000345..000000000000 --- a/sys-block/gpart/gpart-0.3.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools - -DESCRIPTION="Partition table rescue/guessing tool" -HOMEPAGE="https://github.com/baruch/gpart" -SRC_URI="https://github.com/baruch/gpart/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~hppa x86" -IUSE="" - -RDEPEND="" - -PATCHES=( - "${FILESDIR}"/${PN}-0.1h-errno.patch - "${FILESDIR}"/${PN}-0.3-build.patch -) - -src_prepare() { - default - - # Fix version string in build environment. - if [[ "$(awk -F , '/^AC_INIT/ {print $2}' configure.ac)" != ${PV} ]] ; then - sed "/^AC_INIT/s@, [[:digit:]\.]\+[[:alnum:]-]*,@, ${PV},@" \ - -i configure.ac || die - fi - - eautoreconf -} diff --git a/sys-block/qla-fc-firmware/Manifest b/sys-block/qla-fc-firmware/Manifest index 20aeaa58677e..5f75d3d7f06a 100644 --- a/sys-block/qla-fc-firmware/Manifest +++ b/sys-block/qla-fc-firmware/Manifest @@ -1,3 +1,3 @@ DIST qla-fc-firmware-20101015.tar.bz2 3237889 BLAKE2B cc20a4fcebd851ef3aac09a89f431be0852cf10ec736a09cede0e96632c9282dffe23c230a718e3864bef86fbf15772c3e513746126df2ecda0366833ee91eea SHA512 19cd38a2a146cc3147840a2c87c0f44996896ff1b1961d1d858d054db890d6808c89bfe93e82a54536933180da3b8cc8e54a5f57d9c9edcb3129a11dbd394342 -EBUILD qla-fc-firmware-20101015.ebuild 1482 BLAKE2B 057bd2d046e13f8fbdc145b07d87fd3bcf5409adc31b35e4727dc26669090eac14c61302c1a183b16afbf00d030649ecd1e6a7f32b88b1960dac0350950039f8 SHA512 02effe002739c2a1dbef2f1dd86cf949d63f98f6578af8530f28ed1afe55590214dab257d36eaac68092ba2998ebbbfa8de67b8b012c4e3462062a76e0cfafc3 +EBUILD qla-fc-firmware-20101015-r1.ebuild 1462 BLAKE2B 081586d2240feb5af2f356aab0ad37668ca607a6f7a5a65b472c0efdc475996d0f59c2e3aeef1bd569a858bbca72ce7a24612b357b624ba33b179e959a376370 SHA512 d5c1880c88dc0d2a67366a4e1236e8762ca69fd2eb4eec25843ee7019a34208f82f3c83b902c6ca3a824a38b2acad37893dd3cc209184f6fac29b9f31f8fe7a0 MISC metadata.xml 519 BLAKE2B 7af58cae79b5b543ec75e655525933ffcfe38e4396d2e02bdc4e53544969d6ac860d6d65f49c4d20abb24c44864b93a472852e5fd37eb7401847a3868a95371b SHA512 df4ee403037d6ee5cda582394f1fb5608f6330ae63cacf505ef6aea401952211bcf462e8d20c865c4e650dfac3cd6d41da0179d5eded15b4b9ac7ebf7b145a32 diff --git a/sys-block/qla-fc-firmware/qla-fc-firmware-20101015-r1.ebuild b/sys-block/qla-fc-firmware/qla-fc-firmware-20101015-r1.ebuild new file mode 100644 index 000000000000..f6ffca04b67b --- /dev/null +++ b/sys-block/qla-fc-firmware/qla-fc-firmware-20101015-r1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="QLogic Linux Fibre Channel HBA Firmware for ql2xxx cards" +HOMEPAGE="ftp://ftp.qlogic.com/outgoing/linux/firmware/" +SRC_URI="mirror://gentoo/${P}.tar.bz2" + +LICENSE="qlogic-fibre-channel-firmware" +SLOT="0" +KEYWORDS="amd64 ppc ppc64 sparc x86" + +# Really depends on absolutely nothing +RDEPEND="!sys-kernel/linux-firmware" + +src_install() { + # We must install this, say QLogic's people. + # They have claimed to me that the /license/ directory isn't sufficient, as + # there is no guarantee it will be on a system - and it would not be in any + # binpkg either. If you do something else with the firmware blobs, you are + # thus strongly encouraged to keep a copy of the LICENSE file with them on + # the system. + dodoc LICENSE + dodoc README.* CURRENT_VERSIONS + + insinto /lib/firmware + # some older firmware are always provided by upstream + # for reasons documented in CURRENT_VERSIONS. + + # Please see README.* as to why we do not use the MID/MIDX versions by + # default if they are newer. + # TODO: Provide a means to get them for people that really want them. + local f fw_basename=( ql2100_fw.bin ql2200_fw.bin ql2300_fw.bin ql2322_fw.bin ql2400_fw.bin ql2500_fw.bin ql6312_fw.bin ) + for f in "${fw_basename[@]}"; do + doins "${f}".* + latest_f="$(ls ${f}.* | grep -v MID | sort -n | tail -n1)" + dosym "${latest_f}" /lib/firmware/"${f}" + done +} diff --git a/sys-block/qla-fc-firmware/qla-fc-firmware-20101015.ebuild b/sys-block/qla-fc-firmware/qla-fc-firmware-20101015.ebuild deleted file mode 100644 index 520977c3787e..000000000000 --- a/sys-block/qla-fc-firmware/qla-fc-firmware-20101015.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DESCRIPTION="QLogic Linux Fibre Channel HBA Firmware for ql2xxx cards" -HOMEPAGE="ftp://ftp.qlogic.com/outgoing/linux/firmware/" -SRC_URI="mirror://gentoo/${P}.tar.bz2" - -LICENSE="qlogic-fibre-channel-firmware" -SLOT="0" -KEYWORDS="amd64 ppc ppc64 sparc x86" -IUSE="" - -# really depends on absolutely nothing -DEPEND="" -RDEPEND="!sys-kernel/linux-firmware" - -src_install() { - # We must install this, say QLogic's people. - # They have claimed to me that the /license/ directory isn't sufficient, as - # there is no guarantee it will be on a system - and it would not be in any - # binpkg either. If you do something else with the firmware blobs, you are - # thus strongly encouraged to keep a copy of the LICENSE file with them on - # the system. - dodoc LICENSE - dodoc README.* CURRENT_VERSIONS - insinto /lib/firmware - # some older firmware are always provided by upstream - # for reasons documented in CURRENT_VERSIONS. - - # Please see README.* as to why we do not use the MID/MIDX versions by - # default if they are newer. - # TODO: Provide a means to get them for people that really want them. - local f fw_basename=( ql2100_fw.bin ql2200_fw.bin ql2300_fw.bin ql2322_fw.bin ql2400_fw.bin ql2500_fw.bin ql6312_fw.bin ) - for f in "${fw_basename[@]}"; do - doins "${f}".* - latest_f="$(ls ${f}.* | grep -v MID | sort -n | tail -n1)" - dosym "${latest_f}" /lib/firmware/"${f}" - done -} -- cgit v1.2.3