diff --git a/app-misc/sabayon-version/sabayon-version-19.07.ebuild b/app-misc/sabayon-version/sabayon-version-19.07.ebuild deleted file mode 100644 index e99f721d7..000000000 --- a/app-misc/sabayon-version/sabayon-version-19.07.ebuild +++ /dev/null @@ -1,98 +0,0 @@ -# Copyright 2004-2017 Sabayon -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=4 - -inherit multilib - -DESCRIPTION="Sabayon system release virtual package" -HOMEPAGE="http://www.sabayon.org" -SRC_URI="" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~arm ~x86 ~arm64" - -IUSE="" -DEPEND="" -GCC_VER="8.2.0" -PYTHON_VER="3.6" -# Listing default packages for the current release -RDEPEND="!app-admin/eselect-init - ! "${T}/sabayon-release" - - # Anaconda expects a "release" somewhere in the string - # and no trailing \n - echo -n "Sabayon ${ARCH} release ${PV}" > "${T}/system-release" - mkdir -p "${S}" || die -} - -src_install () { - insinto /etc - doins "${T}"/sabayon-release - doins "${T}"/system-release - - # Bug 3459 - reduce the risk of fork bombs - insinto /etc/security/limits.d - doins "${FILESDIR}/00-sabayon-anti-fork-bomb.conf" - - # Create this directory here. It is normally provided by - # sys-apps/baselayout, but in a way (installed in pkg_preinst when - # USE=build) that it is not recorded as belonging to that package. - keepdir /var/empty -} - -pkg_postinst() { - # Setup Python ${PYTHON_VER} - # not critical, can be removed (with the file) after some time - local py3file="${ROOT}/etc/sabayon-py3-was-set" - if [[ ! -e ${py3file} ]]; then - ewarn "Switching to Python 3 (${PYTHON_VER}) as default." - ewarn "This is a one time action. Override using eselect if preferred." - eselect python set python${PYTHON_VER} \ - && touch "${py3file}" - fi - - # Update to last Python 3 version (does not affect Python 2 choice). - eselect python update --python3 - - # No need to set the GCC profile here, since it's done in base-gcc - - # Improve systemd support - if [[ ! -L /etc/mtab ]] && [[ -e /proc/self/mounts ]]; then - rm -f /etc/mtab - einfo "Migrating /etc/mtab to a /proc/self/mounts symlink" - ln -sf /proc/self/mounts /etc/mtab - fi - - # force kdm back to the default runlevel if added to boot - # this is in preparation for the logind migration - local xdm_conf="${ROOT}/etc/conf.d/xdm" - local xdm_boot_runlevel="${ROOT}/etc/runlevels/boot/xdm" - local xdm_default_runlevel="${ROOT}/etc/runlevels/default/xdm" - if [ -e "${xdm_conf}" ] && [ -e "${xdm_boot_runlevel}" ]; then - DISPLAYMANAGER="" - . "${xdm_conf}" - if [ "${DISPLAYMANAGER}" = "kdm" ]; then - elog "Moving xdm (kdm) from boot runlevel to default" - elog "or logind will not work as expected" - mv -f "${xdm_boot_runlevel}" "${xdm_default_runlevel}" - fi - fi - - # remove old hal udev rules.d file, if found. sys-apps/hal is long gone. - rm -f "${ROOT}/lib/udev/rules.d/90-hal.rules" -} diff --git a/net-vpn/wireguard-modules/Manifest b/net-vpn/wireguard-modules/Manifest new file mode 100644 index 000000000..bf36af5b4 --- /dev/null +++ b/net-vpn/wireguard-modules/Manifest @@ -0,0 +1 @@ +DIST wireguard-linux-compat-0.0.20200105.tar.xz 261236 BLAKE2B 679902e7bea78c42fb49ec51141b1d543e966056fa341eb058266b7810dfeca09c5eb81a4c93e695762581f01fe1212acd8d5f4846a3bed8c37451b112d2d78e SHA512 a27d863e7af9ecbdad784d9ebd6b7613cb6a3a8749d2552c0ecc932c606ed08effc9600813d8cc6801748041456d6e59aab28b9ba486986c88f3d2e90a9209bd diff --git a/net-vpn/wireguard-modules/files/wireguard-modules-4.19.patch b/net-vpn/wireguard-modules/files/wireguard-modules-4.19.patch new file mode 100644 index 000000000..be60f438b --- /dev/null +++ b/net-vpn/wireguard-modules/files/wireguard-modules-4.19.patch @@ -0,0 +1,11 @@ +--- a/src/compat/compat.h 2020-01-11 00:06:44.697743445 +0100 ++++ b/src/compat/compat.h 2020-01-11 00:07:25.152055141 +0100 +@@ -824,7 +824,7 @@ + #define COMPAT_CANNOT_DEPRECIATE_BH_RCU + #endif + +-#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 19, 10) && !defined(ISRHEL8) ++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 19, 0) && !defined(ISRHEL8) + static inline void skb_mark_not_on_list(struct sk_buff *skb) + { + skb->next = NULL; diff --git a/net-vpn/wireguard-modules/files/wireguard-modules-5.4.patch b/net-vpn/wireguard-modules/files/wireguard-modules-5.4.patch new file mode 100644 index 000000000..5e8beea10 --- /dev/null +++ b/net-vpn/wireguard-modules/files/wireguard-modules-5.4.patch @@ -0,0 +1,11 @@ +--- a/src/compat/compat.h 2020-01-10 15:19:57.747201214 +0100 ++++ b/src/compat/compat.h 2020-01-10 15:22:54.046429593 +0100 +@@ -861,7 +861,7 @@ + }) + #endif + +-#if (LINUX_VERSION_CODE < KERNEL_VERSION(5, 4, 5) && LINUX_VERSION_CODE >= KERNEL_VERSION(5, 4, 0)) || LINUX_VERSION_CODE < KERNEL_VERSION(5, 3, 18) ++#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 4, 0) || LINUX_VERSION_CODE < KERNEL_VERSION(5, 3, 18) + #define ipv6_dst_lookup_flow(a, b, c, d) ipv6_dst_lookup(a, b, &dst, c) + (void *)0 ?: dst + #endif + diff --git a/net-vpn/wireguard-modules/wireguard-modules-0.0.20200105.ebuild b/net-vpn/wireguard-modules/wireguard-modules-0.0.20200105.ebuild new file mode 100644 index 000000000..b28c504de --- /dev/null +++ b/net-vpn/wireguard-modules/wireguard-modules-0.0.20200105.ebuild @@ -0,0 +1,111 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MODULES_OPTIONAL_USE="module" +inherit linux-mod bash-completion-r1 + +DESCRIPTION="Simple yet fast and modern VPN that utilizes state-of-the-art cryptography." +HOMEPAGE="https://www.wireguard.com/" + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://git.zx2c4.com/wireguard-linux-compat" + KEYWORDS="" +else + SRC_URI="https://git.zx2c4.com/wireguard-linux-compat/snapshot/wireguard-linux-compat-${PV}.tar.xz" + S="${WORKDIR}/wireguard-linux-compat-${PV}" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +fi + +LICENSE="GPL-2" +SLOT="0" +IUSE="debug +module module-src" + +DEPEND="" +RDEPEND="${DEPEND} != 5.6, and do not use this package." + elif kernel_is -lt 3 10 0; then + die "This version of ${PN} requires Linux >= 3.10." + fi + fi +} + +src_prepare() { + if kernel_is 5 4 ; then + eapply "${FILESDIR}"/${PN}-5.4.patch + fi + if kernel_is 4 19 ; then + eapply "${FILESDIR}"/${PN}-4.19.patch + fi + + eapply_user +} + +src_compile() { + BUILD_PARAMS="KERNELDIR=${KV_OUT_DIR}" + use debug && BUILD_PARAMS="CONFIG_WIREGUARD_DEBUG=y ${BUILD_PARAMS}" + use module && linux-mod_src_compile +} + +src_install() { + use module && linux-mod_src_install + use module-src && emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" -C src dkms-install +} + +pkg_postinst() { + if use module-src && ! use module; then + einfo + einfo "You have enabled the module-src USE flag without the module USE" + einfo "flag. This means that sources are installed to" + einfo "${ROOT}/usr/src/wireguard instead of having the" + einfo "kernel module compiled. You will need to compile the module" + einfo "yourself. Most likely, you don't want this USE flag, and should" + einfo "rather use USE=module" + einfo + fi + + if use module; then + linux-mod_pkg_postinst + local old new + if [[ $(uname -r) != "${KV_FULL}" ]]; then + ewarn + ewarn "You have just built WireGuard for kernel ${KV_FULL}, yet the currently running" + ewarn "kernel is $(uname -r). If you intend to use this WireGuard module on the currently" + ewarn "running machine, you will first need to reboot it into the kernel ${KV_FULL}, for" + ewarn "which this module was built." + ewarn + elif [[ -f /sys/module/wireguard/version ]] && \ + old="$(< /sys/module/wireguard/version)" && \ + new="$(modinfo -F version "${ROOT}/lib/modules/${KV_FULL}/net/wireguard.ko" 2>/dev/null)" && \ + [[ $old != "$new" ]]; then + ewarn + ewarn "You appear to have just upgraded WireGuard from version v$old to v$new." + ewarn "However, the old version is still running on your system. In order to use the" + ewarn "new version, you will need to remove the old module and load the new one. As" + ewarn "root, you can accomplish this with the following commands:" + ewarn + ewarn " # rmmod wireguard" + ewarn " # modprobe wireguard" + ewarn + ewarn "Do note that doing this will remove current WireGuard interfaces, so you may want" + ewarn "to gracefully remove them yourself prior." + ewarn + fi + fi +} diff --git a/profiles/default/linux/amd64/17.0/sabayon/parent b/profiles/default/linux/amd64/17.0/sabayon/parent index a98b00c7c..ef6c7e3b5 100644 --- a/profiles/default/linux/amd64/17.0/sabayon/parent +++ b/profiles/default/linux/amd64/17.0/sabayon/parent @@ -1,4 +1,4 @@ -../../../../../../../../../../usr/portage/profiles/default/linux/amd64/17.0/amd64 +../../../../../../../../../../usr/portage/profiles/default/linux/amd64/17.0 ../../../../../../../../../../usr/portage/profiles/targets/systemd ../../../../../targets/sabayon/amd64 ../../../../../targets/sabayon/core/perl diff --git a/profiles/targets/sabayon/amd64/package.use b/profiles/targets/sabayon/amd64/package.use index ecfcca5d8..34f6de093 100644 --- a/profiles/targets/sabayon/amd64/package.use +++ b/profiles/targets/sabayon/amd64/package.use @@ -75,3 +75,7 @@ dev-libs/boehm-gc cxx thread sys-libs/zlib minizip -static-libs dev-libs/expat static-libs unicode + +# Kernel stuff +sys-kernel/linux-sabayon big-endian btrfs dmraid dracut iscsi kernel_linux luks lvm mdadm plymouth split-usr symlink +sys-kernel/genkernel-next cryptsetup dmraid kernel_linux mdadm split-usr diff --git a/sys-kernel/linux-sabayon/Manifest b/sys-kernel/linux-sabayon/Manifest index 8d4c315d4..6552f148f 100644 --- a/sys-kernel/linux-sabayon/Manifest +++ b/sys-kernel/linux-sabayon/Manifest @@ -1,4 +1,61 @@ +DIST 3.16-sabayon-3.16.56.patch.xz 2239960 BLAKE2B 9e9aa130fe7877ce751ffe5b267d261400d3625681a121bfbf91bf4c59f64021cd1f24727fee3d229eff6da712be239b1dd83d28bac86fee4898bee0c5b30870 SHA512 b2b4f90d6556512eb737eff6ea80e07654b9731029ac12a805dc88cb47026fd670b4969ed84a2e3c1318f5e5a42f5ba5af60570304644a6b17646fd6320107bf +DIST 3.16-sabayon-3.16.57.patch.xz 2366572 BLAKE2B e108ec0561dcfcbee4b81ee7e70c6a33801438db92b27d18281dd9d676accd8ba4fb34860c66c70e438f770cfcad803efe15ac0fda6dca07eacbffc71758da10 SHA512 8b827e670126dc2c394f7aa28e423e6fa864f5033c2f928d15f51be882f6806472c2a7189c9add667be95f4b72257e81b5f128edcd91cd4d1216a5fbd5513e90 +DIST 4.14-sabayon-4.14.150.patch.xz 2968888 BLAKE2B de7076d442fb4833f0963cf5d7d49307416ddc7850d02516a322c07b18ee27bfb5fd4f2a084d7cf1594a48ed33e5fc1807fd3f72293f5404c2ff67a184b6b33f SHA512 29d4e108140a6652cf497c96e16560433dff81312f48e7d738284b00c57eea9fb31a2191aff95f05654631abc85bd41377abfda075acdbd36119128c6ac5f39e +DIST 4.14-sabayon-4.14.151.patch.xz 2993372 BLAKE2B 6ff3ec8f906b0c562803cd86aef78d74b3e060c346bbbcb8448000d3a1634c6a6975201d8e422b93b1b0f15bded34648056ac09fc9f5bc1f79268f8e6e501ddc SHA512 ab2473a5f91f8a4551f658f4cd3d4e16e25ca9873b2e861b1024fb2fa9b8adde8daf6c85c1a25149feb890e1dd71a02502970797411702b319d2126d4c3a5a6f +DIST 4.14-sabayon-4.14.152.patch.xz 3009548 BLAKE2B fd8751d56eb2b46a95adbea956cc803ff744e4e5976081b852f2f9d289839bb2971bac5ef50408d805dc5a1d957f22a308a14d8b829326b1b55577e6b99bba70 SHA512 6705062c79967f6bf0f58e5057a86e10753b89d0c601c981beaadd128e9d721648382ba0a5352de81a3b29c16a0fe911af617eb50fc73517409690ec80a163dd +DIST 4.14-sabayon-4.14.153.patch.xz 3030360 BLAKE2B 18e0d6041fe94f27a378c7af143c9e4eda701085a6d3407dc29803435b1dc073f63b30b483b38acd79b2e162f871e4758ee3ade8b469aa2ba83f4238919e210f SHA512 9d8ee4c51a5a90f2f4ba6117c3ceb513d073f300ab840e233a9f680846833d515e06dc6c96cc03d8578e9b66c1dd396a5c0517be6bc54a97bcb70335c6f68b1b +DIST 4.14-sabayon-4.14.154.patch.xz 3083136 BLAKE2B 9fc0c57bdba5adf69e2b47caadef4a63cfcb76a7a7e61298ecdbed1dd87917baf5fd88f86a044b2229845e0a07e642ba528ace6c2582836178419356c3f0ba35 SHA512 5fb98bbfa9c30ff60fd9ddd5c8ed86847744bfd0825e1ad7354298448ff73bcd20e1ff37fdf69a0843a8d640758c0c6391ebf79ac976d915872ed64a22bbc6b1 +DIST 4.14-sabayon-4.14.155.patch.xz 3125928 BLAKE2B 7580122c94080055e70c8ac56f5018e36b37b7744d2e926b43b00229d69a6559ffc4390c8c4daeb8e05db411ce970efefba7cb9d6668918bb7d385920ebf023e SHA512 3cef5dd8242be6880c4c0d9316c3a48c7938147f99d797b50fbe018aef1141da6109eecc54a870554b27f3fc750d6dd98cc11e17b693dc205c67dd7c334e8678 +DIST 4.14-sabayon-4.14.158.patch.xz 3234280 BLAKE2B 02ef9693bebe697f2051da3bd30af658d64edae007bb2ade8cadee25a709670fb1c1694847502ea2ffa49491ab853cdc119fe1713a6a37990c891c506215f979 SHA512 1a93b9f09ee876d869059ff2f5a808bb8bd110d1600322c02757464321236dfc9213eace81fc843161561c593aa2030d19738018cf867c4bcd5e0cd0e8b869c0 +DIST 4.14-sabayon-4.14.159.patch.xz 3278764 BLAKE2B 714ba0849c17e3822413c80d37915dce4d0574640ed67f86faad60e9500a93214932ec78e8aa0a81f1b5e9f085147fde14ab061275d06560ee1db8b8775f9895 SHA512 e7c33d61109c002632597abe22cd69a17fb28651e0d376f3c20eab957ae59ce8e330d0e28dec72c862b67bca7513b7d0a2216b359ae73485b6dfd06fa158f813 +DIST 4.14-sabayon-4.14.160.patch.xz 3283996 BLAKE2B ee9ffef8eac5400a1219e18842e210cff4acf9c32dcd299905e13da5b7b0708b746190bad92b838ce96af19e4e85c2c4a9ec93a175645bf64a3039bea84769f1 SHA512 bbd1d629214817dfaeaeffd877259ddce342c96ae1e414557247f8e8e1a49163ea0f57ec4e25299b10699d2dfb27b478b07ce5793c041e474b1e328ff0e64cc7 +DIST 4.14-sabayon-4.14.161.patch.xz 3310232 BLAKE2B 960a182ab25f3e6b6f2fd0a1b67fef1fc7fe37f5cc3ce3e7d30937116643d66df215abb52f7270570f66d0ef5ffe71a066403aeb04a914673a4e7779d1e409ab SHA512 33a6aee5ab4457fbc178b673f863ae7a2603baea8ae569b3869e757e3990e959b629255e1c94207abe6e881752ce194daa92a90e918beabca57a9020fa6e2c0b +DIST 4.14-sabayon-4.14.162.patch.xz 3327224 BLAKE2B 5025f11e74462d8466e56c3793db9341268ff240b0653681259a316d4db27c50d2162c4fb0a6d7f491dbe4ed2877488f1f09521935deea307bfc5dddf1c2d677 SHA512 7714c5405086011ea5ba3476e59cffbf0811c622ca767838c2606cd2e4284e8508e5339126e1b7f16d1dd194935248572533c73f27a651f19546c3a19dda72f2 +DIST 4.19-sabayon-4.19.91.patch.xz 2450336 BLAKE2B f5616342335160a2fc1fd45f9b902fcd1a4a580e5c60e645b6ff0c03d4b939fd8fbca7745ce9978db81116e98b27c3ab1c9df26cbbcbed0102daeb28b07882bb SHA512 ae6c689812d21f4381bec87d2d932ae553ff4d89b62453418296176f8af9fb5331bf5df09487c1e52c13c375bc44dcda818bc05174eded5e37e0978e08cb4f99 +DIST 4.19-sabayon-4.19.92.patch.xz 2489428 BLAKE2B 87b2ab14ca4754786749e4b3cd21a345634e4522434f10b4cd1ff462c222c04effd2771e8bc7f3838b39585d81d27b60ef74ad1ead53c0cfcb5d9892b415456d SHA512 e97af7ce914ffd238d440ed6f9d67b562fb5b10d484ca1bea466b2a61e12042596c84440ba7d4a63cfdb8b59074e2c4a3016c74f50402d062b46486e781ff4b4 +DIST 4.19-sabayon-4.19.93.patch.xz 2512140 BLAKE2B 21ede408293d397f717186369078f4dff09a31401fb84c41406be21e886221794f9f7d1a4effb1db5e8cfdc1ef9de7ba5f8d2b656897a6e974861448bcea3a8c SHA512 068699ae20560232b26c8f8f387f8adae309cd87a22a57ec74232e922510552c62e2b66fc314e443bb49f8c3c4e4c1fa8680f526e90be2e13e0e0cb2b736370c +DIST 4.19-sabayon-4.19.patch.xz 47240 BLAKE2B d62b6b1e6e19c3e3a8a3172fc5e04a7a3649d5f90a982b7669677b86c1509ef19de56930f8710d865f432d542d4f4849c554926bfb2427baff6b3ab865307ddd SHA512 fa68a3c2223c61d7b08af0a3bcaad20c282737cdb4752e534aac8f61b68958d8098948d5827aa5f411e345e3d7cc876c393f60cad76209309e24168cb6d76286 +DIST 4.20-sabayon-4.20.17.patch.xz 551960 BLAKE2B f5e3393e97e809c684f7445b994f19b2c0e9c849bb17c8d5812cf63ce8aafb8e6090c4d84feae096add34484fb2b7b8a6cb5e61caa7021062f0ec6c3c3c477f8 SHA512 c756f7561ac687558be2587208ed2ee3f02ad27b5c151526be659328be181365346f32734f4a0571582dad3f09bce86b2658566f25b04ddbe28d0aea10715b8d +DIST 4.20-sabayon-4.20.patch.xz 47504 BLAKE2B f1cf4d715b53e749cf5a4403c7b8fc3c3ee405254d860bc35b872c7471cabc8fe78b3aa231f55eb39f868ba59801fe9ef67a70ef20538420829f1376e4cd24b7 SHA512 15e43e0bce9701b781a2b6847fc2a0e0d6dee65509ba841fc347176830e5c9433e0341efa427e9243b1a094802bca4cc35d99556dce2013e7a35e6c21e1c3d9e +DIST 4.4-sabayon-4.4.197.patch.xz 2774136 BLAKE2B 9629309c387237a40d0b5233104196502535a24d259fd136977968416b5a261bcd38a6132fb7aede73f3692674d9eccb53bba75a6b7ae906e4e78f8eb66a78a3 SHA512 df41b4269d9b77f141bfa5430da0897da62143e2cc5bf663e5f6500f0ef0a167d5621c3e97d4f4339415ea9e1345cd7bcbf49ccd44412a6a260adc7bdf9ca65b +DIST 4.4-sabayon-4.4.198.patch.xz 2779832 BLAKE2B 28486931877aaecb715d0e54e20fa7bad5cf60ab05a78540572f134c732f2ab95de6b1d903a4c6dd5b1c5cdb259c9873d6f0891b8b51ef7f752cc750560f5d91 SHA512 68da1f50b8b4f55d0af73103594df05839b3abcafdec196038bf3276ddf5e284fb0f19d19eb0c47023bb65aa9756d65de290ede735a4f4977fc559a221cda642 +DIST 4.4-sabayon-4.4.199.patch.xz 2789404 BLAKE2B 119b58270235ca75a692b5698cea30afee63090c2d1f5d9fe005e641aaefa7bcb649184b727def8c8e853cf00e0823f542255f5f93835389dd5c8483c721eb80 SHA512 ebca8832dc6a67defcc857a5bcda8ded5f98cc1bd8bab2afa593fe4ff66d30e5138de44f72d55a9a131856f93afc9b87e318101a551e27bd16ad48896dd275b8 +DIST 4.4-sabayon-4.4.200.patch.xz 2810684 BLAKE2B 83c2359cd542d21be40a6b4e9a0035418168bb7b93dc9f22132d6c5f49f857b3e102659bc695c0a24564dcd58503da5dd14e532efcbdcc4cc5387723f08bf4f6 SHA512 82ad4fe86f484c3c790c0f92b1a06f7104d5621be05b7fac273eda54d698508298d99c66733d882a5f1b099a65d13d83d06f19a0b926aa7c5d55bb338a44ed6a +DIST 4.4-sabayon-4.4.201.patch.xz 2827080 BLAKE2B 831577dfaf36ac869d2f444198f44a160992240a7f95f22b499b5b6e358bde69bd0ead8449f96e24c0eb8021bc5fc58c842ec5efe31a28bab888c49378fc2ab9 SHA512 f6c52931e211383abea776d664f1a0fa44720fc4fb2f53db09e13e6ba10a44cc7609fae91ad2af8406148ad55e7e065b1f6a7dd4efae0dfbd8fcb5a9d427e791 +DIST 4.4-sabayon-4.4.202.patch.xz 2834916 BLAKE2B a11c1411543818723b3010cc9feb0225d3d3f1e689245eac17ebfa3f11dfbb9531bb6539124989e3925194038d9815dd843e03417aca76b5257e1250f915aba9 SHA512 0b0ce8e0db78285fc5d7e00fda2746ff3a70bbd5911f4b59b17d36050ef695fe1daf02ffe3af8b7d3960a073517cdf325a5ca5a62f953980897fc25acf08b75e +DIST 4.4-sabayon-4.4.206.patch.xz 2909180 BLAKE2B 7fb1b1a508340354040180d7580e6a958d47579e24eed32c5eca2de67b7cbf807f2092bdd66267bcb77e65137b2a0c06bab7780275190c7864f9cb25aca01ba4 SHA512 08c6eee257b94f4e6e63086324b70d3aee1930f848af5e1ae45000f934c7e79d2e2241445ace96027a410a122a1ed5ef67a0e8d5b6e64d6bdcd7559ef37d0549 +DIST 4.4-sabayon-4.4.207.patch.xz 2934044 BLAKE2B 190a33dd1e6bd45d082f217f5426b79a52ed732b075e48961a32de7358095a5d3e90ecc8c8faff6c426b87914087d16ae763ddc441dc9a9e8f638bafc2cada2d SHA512 6663e62f447faa25b716b480915de27798c14427677ddaad48a014f0ba8f1585212f56c4ff85ea2c37ec29078738e48bcb08df8fa52facc52c2af5fc2469caa0 +DIST 4.4-sabayon-4.4.208.patch.xz 2954032 BLAKE2B f9860cd2fbdb6d2160f78bed239c00895c429a7990302dc29433b2ec6e630dc1cddc6239b926f286ebca8fd3ef584961e913872a4a31dbf0a4049681d35def14 SHA512 2ed9594644542ca09a9de1175b4fbd5606b458e50ae0084efa84a5846aade2ef84226cecc1d37422561494921677185932c11467b524ab69bd99d5a1ccae22ce +DIST 4.9-sabayon-4.9.197.patch.xz 3042224 BLAKE2B dc66408bd495ef9d7ad080ad4ce9447af1d8b67d5aa38945e5465126cec4501048a394e735151123e3d71f09f708327959a53c04e5196196b3448bef182f880b SHA512 48ead62233326f33046fc5db3f80c012b8e59c2ea4d9c0291fd860285297b6b1eede3fba700768f3e9f57430718299f824c1c5ed20a80748a80477a2cf451fb5 +DIST 4.9-sabayon-4.9.198.patch.xz 3048392 BLAKE2B da55e3e3b89d3f15636d88efb284b2ed83128b0ad6a1ed150f4bfde7d20132bda0e21acea5a7945139b2a3e0e3aee108b90ab652647bc859c87fc634f17c356c SHA512 f531e8b1853a4f08957846db456ee0fcea088ef645b0365504def701e263d0a4e96536503d2e8f4aa3d01974fee1444a684e93d842db32737deddbf559e500bc +DIST 4.9-sabayon-4.9.199.patch.xz 3061676 BLAKE2B ffa88bf516308318efdb5d12f20ab6f880c2c42019bd9d33cc99a26ddf5af0a02b43a5e7cb0407567e57a688e4d9db33e61dc9209cf8182985e1d5daad098833 SHA512 f7e01c403b682a328da8563276d1e3f4f3c4915e8f1304c3a0f6dcab816911d65df45d072cf86e33ddcb6d5f6d13b6580ea71b52d30eed304d2ea317a1da8a0f +DIST 4.9-sabayon-4.9.200.patch.xz 3069860 BLAKE2B 286c65d98db71181264cff7088b099c2b6fcf947d92b98508d980b9cd26e6e0f4bcb54d036cb7fe96ca2ef977436bf76d4737ab83b57376988b03b39a98b08b7 SHA512 3b0eac5e7042e6870e05ea7e246cbdb7c8172965bddb51b842ae481117b090c958419cbff9034afdb4e3c4dbb397d3a4af33c68c3b9839cdf31194eebe177f0f +DIST 4.9-sabayon-4.9.201.patch.xz 3096556 BLAKE2B 0217aa7a6d5dea518470370825f7ad5039e676c98fbee6c2ba598d2b11e252cc87b67cfb1729c99cfb354cbd79d49640ee7075e88050a4cca62226766c35d384 SHA512 9dd1c773aaad073a8750fc90ade7711562496758703edf376af0baebf66fd8257f7e0dd8525fce4a8453da62b9689618467554ed6934d7ab4ecf85239da53c66 +DIST 4.9-sabayon-4.9.202.patch.xz 3113392 BLAKE2B e809c49f8cc83ad0c8ec1da1b2228291860ff5b32ad167ce4ac0b36e70bf54e77f20fdea70c3ecff495f95f1e2afca1f6a51c36caeb8bab9d461cfb39d767e60 SHA512 e9d2c08260928e50f6a94911ed63090e2766422c4ca429d946ed894fb402c851b11547a62e3dcf2793ceb12990291aec93ef419a898a846a2710dba7d98091ed +DIST 4.9-sabayon-4.9.206.patch.xz 3199844 BLAKE2B ee77ad31837ee00f903cd2a8f8da6612e7b29bb5d0b2f8dc02131dcfd8c3c3fe13e4dcaeed4c3bb0930f742086b0ee96996f525ede9348981872bc69293d6893 SHA512 2f6cb3fbe7e1e0f84688f45d0e1a468bdab8348bf3a2921b6d59764a7fd766109faae82005768bdd0b1159577beac3e93c56ac14556fb12784bb92743fe7e60e +DIST 4.9-sabayon-4.9.207.patch.xz 3231396 BLAKE2B 6b6d48738777daa1bf5a00de75f329421d69749390cd13104f3bcd9977a8f0ce44992078ef17651eefbec94925ecc148542e6713a93386fab85fc4b034ed5ff2 SHA512 4fcd6e9e42257b0c8aa8622893a05dff9bafcd30879cf51653f984b1abebfd9f15e8ec3e1c073b69fd06bb4dbc398af74c34eb575d5973c586e85a05aa0934f3 +DIST 4.9-sabayon-4.9.208.patch.xz 3259644 BLAKE2B 5b08eb9beeb2ef45ed024156d13b9d40c8f174bbe703723e03146a4922a82d988be0c1a9b4fa68b5fd474b961964de68a8d79c1e5563e274d3c748c2b162f21f SHA512 8bd36ccfde87f261ad617a502f2046caf730ff1e29dec26a68dacd95c44e027fe19ecd1ccb79991bb5c5fa50db67327603d9f60171b5bab061649ac74e51c25b +DIST 5.3-sabayon-5.3.11.patch.xz 532316 BLAKE2B f4ce4f8a880f44ececdd2b6851933dfa48ccdaaab97fb637d01def09e1d801d29e36eb79f11ddd2476a40ad2163663a1e2757653ad765a61db985aa5a5d12428 SHA512 46c4b8e9fe60afc77bb9abbe917379c526ffc1f15950d37e484976c6833a4ea797c156d06d517d9e7610346117b53305d6536329ef61969e49db842661a42ee3 +DIST 5.3-sabayon-5.3.12.patch.xz 543632 BLAKE2B 488565f5db65ecfd8b9fe3cb81de628f30f66b9053009ecd4fe293d51ae8b70623e2aea1e0ec6148faea72ccb79ea87c89f7d1e181238d2b865fb0ae22942198 SHA512 256793d7eec6345fc2cd6ec5376639f13a9f524c46608affc4c72f51ebb5ff3f4661dc294f072e700f2f7c56a7bc1e7ad7eca5427a75199e95f7bd38d3461e70 +DIST 5.3-sabayon-5.3.15.patch.xz 601012 BLAKE2B f8a7755cd34aebe5aad9927ce0a7b6990d595f7eaf0849f6e8ac82187557a54f024b385f2269b88f502ec4871539449e5fbb32cf1b3efd0fe4a2eb51a5383242 SHA512 0403575ef0c44f1c06e4867932dd499769fe8a0bec843c06b04fb20044684f0d1e7aae1fcf8a01bceba77cff6a4221e68755c7ead849e4384b5f8d216552f20c +DIST 5.3-sabayon-5.3.16.patch.xz 623988 BLAKE2B f7f3ec59243f60d11c5a70e3250bdeeeadf42b61b4f0f26faefee4a9b8343401b5dfe25fad79ff3bf6b13cfa9cf88e0c0d749be9c91a30adc333a23f9aecb4ee SHA512 55025cf7cfc03d8fd6ec41c365af3b125a0cc68bf0378a3068be3356674860f320867b2f2165ea49d319ae47b227127894d574df201a07265235e987b3e28b2e +DIST 5.3-sabayon-5.3.17.patch.xz 667908 BLAKE2B 27ecd750df8570d6c6cb36e583eb5bcc7e2a2633938904e4ea138e6191ab0ceaa9545b7c39f16d428455914f72ac78fd874f9f39e44eb2508b97e9dab2a14ade SHA512 10c28b3d5c267af2aa01545c07933fec94a6852f72276bb2aaaef061f8a23f7174f8f9a3da7cbe0879e73c193545ccd6e23d0d6c1d10b8242f462476d0c3fa49 +DIST 5.3-sabayon-5.3.18.patch.xz 678704 BLAKE2B bf108265e4c57ffdf0a229bf394eacfdaa4fb7b87df33dfd9d497a1524ff7bc2e18104046c9773f2578cfbd9a8427f75f725566247d8826e951ad05c3e5e6286 SHA512 fca222c532ddc0e39c7b2f3ee37be12883579e3cb53b1b6b65256d7a79e2f2795a5eecb4879b4cd9df668d1d83b6bed6dee05a799d638585b49bd78159a58077 +DIST 5.3-sabayon-5.3.patch.xz 48892 BLAKE2B d5c85d864d16cfc2dcda4d3a076a1b4a2dde8027128b7f49aff67e387d7794f84f9e0b2ab1aedb4acdb4c8ac847390dce27c67d98bc39ef83ffbe7f61841cb24 SHA512 62dd610ed0e51de42318354dbf3f7637c117cf997888636579ec3e64eb551b7358faf1e8f3fb3523af624b7b53b6d08204a8d66f269f0402b02f5d18ccf1ef07 +DIST 5.4-sabayon-5.4.1.patch.xz 79440 BLAKE2B 5646704200b27eb557b8c34f24a4f634654d7fb9d4c92527684a87691f2d91c075cef22afab0b220524cf0047468e22a5f10edf0e16512b6c240ae7498409364 SHA512 f959d681854800674edc772eab5766ae0039e044efe595749106c5b3917a999e6e3912cb093e116500c6562df7b2f71bbc15b9e73dcec8bd8609293e327899e9 +DIST 5.4-sabayon-5.4.2.patch.xz 94564 BLAKE2B 1c24741146cc2ac601d70c19a328d0df84404cfef51999e5989bfb46a85bdcdc958d93cbeb9fa391c2a43b790ec23e862f6f63203f9edb195043d4b80859c5f9 SHA512 5ca6952f423f04ff618ae54dbdad01437be58b793b3a535ccb154c547e378d4ce4b3ac3dbe71d6a17363e5935f13143cfcdbcf07fcbef588f9e52b4c7b169c56 +DIST 5.4-sabayon-5.4.3.patch.xz 120804 BLAKE2B 1f050a276ebf1f57e87b369bc9f0d925ffadbbc6591eaa5723aaf31f42ee0c5ffe48db6cbc974bf5e411bc47386cc1f6c1f103b42eaaea34dc59e6f9910f69ce SHA512 df8ba593cb2bde3f40b56e759d93e0cb4a67990f08a94e93e1221fb179ceb18eaa6bdf3a71ab2d03393fea83bedcc8001292ce1ae1615a037aae0e27a328ea04 DIST 5.4-sabayon-5.4.4.patch.xz 171664 BLAKE2B ccb9f18eabf55ce8188029a6e9d34de684ad3e22efe39bc51a1ee912b81a48ae2fe19a518cb7072dfade813c2632b141b0f6421b03c8476c00d75503f7448218 SHA512 16c7bd42125db3bd96463171c74fbf3c793d1df8a718c98dd077376ded79d2d517beebf95881c84abf4e0ce96b596eded68b24580b131294e3a7061443605a73 DIST 5.4-sabayon-5.4.5.patch.xz 190120 BLAKE2B cec466975d9c24e583ea3dd0433e8b3323c295d5d286f5ad10edb2a83c52f3ad6218ae2cf9ba625ae3720cb5248340d82262f2a35a7ab34de4d1a8c8c6fec3b8 SHA512 8520e088ab4eca0902b1986369fdee9dfbb6f4e4d3b486d398b8dfaa806849a249e485b6c20438a2bb482875975abee4c2a9dc008177e58bb4c49e0c0a27ff33 DIST 5.4-sabayon-5.4.6.patch.xz 215868 BLAKE2B 717174473b17b32d928e3ad636a1ace0510b224150874d6bfacf7d2db5944a2e064798959b67494657a63d35512b9a7e15a1108d530fe3e9d66b3b790678cf3a SHA512 d6f367563c307fe68276362b43913e2bad1c85a44fc111ae9bfcbb970d0cb9dc5b06685ab641fcf400445892c58a55f745b0a23d790f4c7e601c948187c7cf60 -DIST linux-5.4.tar.xz 109441440 BLAKE2B 193bc4a3147e147d5529956164ec4912fad5d5c6fb07f909ff1056e57235834173194afc686993ccd785c1ff15804de0961b625f3008cca0e27493efc8f27b13 SHA512 9f60f77e8ab972b9438ac648bed17551c8491d6585a5e85f694b2eaa4c623fbc61eb18419b2656b6795eac5deec0edaa04547fc6723fbda52256bd7f3486898f +DIST 5.4-sabayon-5.4.7.patch.xz 320696 BLAKE2B 76ab0ba56e7516672e353e45258b2c48084462ff5f212540c8e51eb732d6defdfae37754a9407ec4f93b30251ec360aecb5ea3ab4ee54911d01ffc6c82e64f96 SHA512 dbb2ee2df6bfae01228d40c7a1827b7749b7c66a11c03530eb775880c507bd9b910a0c0e6289c00311de84c77da70e93198622936f015c4a895e5b929f07a975 +DIST 5.4-sabayon-5.4.8.patch.xz 375512 BLAKE2B 1a5812788f05f4de992356408464ae192d2f5f162fe85b3199be76eadc8ad7f2f257bc3d63e00e49e0aecb8c7bbeb30fa7efb5749d979c906ce5ade456054b77 SHA512 1ca08ed39e3e3b436ace404bdbfd0f8b3cbbaa6d15665e9143a4d6d7b5a04f2b58eebcddb67aede34703ead6da3af375cb736182713658f4e478977908d7f0a7 +DIST 5.4-sabayon-5.4.patch.xz 49144 BLAKE2B 95416c03e4029589d065b4d07218ed89179bdd377485fd9b833efca2287c2069062a9795888f5b8fc35b1a8e59b7078912ec14f7a6f220ac498b141ad4498268 SHA512 34fd243baf54a7fd790f97dd45203fc0e888606d00b446f45b8b1cf97749071f93d88b183ef12395f32dadbb777ccf7045130e1b048bf296aeecdb0a31662c84 +DIST linux-3.16.tar.xz 80501624 BLAKE2B 46de37c6e1bc3c57d4b77f772ccd372fd77f96989d19d341b8098dab13a86659e0c74802859226fc7b22879ddb05788cfc1aad020920e3acc53d5383aa496afa SHA512 64033e741d3f42ed06010e63e69d66e1d3d9414ef20f76834508878d4218b72619541a18ef4fd377204af2859e52198310998109b20ed9b67722586b28c9a231 +DIST linux-4.14.tar.xz 100770500 BLAKE2B 85dc4aa953fe65e273a24473d8de98e4f204f97c43be9fc87cf5be01f796f94cfde5c8f9c84619751f1cac51f83ce0b4681fb19c5f2965a72d4a94fe5577846a SHA512 77e43a02d766c3d73b7e25c4aafb2e931d6b16e870510c22cef0cdb05c3acb7952b8908ebad12b10ef982c6efbe286364b1544586e715cf38390e483927904d8 +DIST linux-4.19.tar.xz 103117552 BLAKE2B 1dbf16cf410867412d17568fe42bc1e90c034183b654d270b650621ff7664a321950943d0639205bc1ee7ef6210be170c1f2c785a042ed8a4ec5e3a486d890e0 SHA512 ab67cc746b375a8b135e8b23e35e1d6787930d19b3c26b2679787d62951cbdbc3bb66f8ededeb9b890e5008b2459397f9018f1a6772fdef67780b06a4cb9f6f4 +DIST linux-4.20.tar.xz 104257836 BLAKE2B fb52cad2897da319299486fa8c3b9415cd0aee0842dbf353a5b269720dcb902db407bb55dd95a77b212dcb4a488c15363d561f3649d6bd16885561f2466d90b1 SHA512 e282399beea5da539701aed2bc131abd5bc74a970dcd344163e9d295106dfd700180e672ed546ae5e55bc6b9ac95efd5ca1de2039015c1b7a6fc9c01ea6583d4 +DIST linux-4.4.tar.xz 87295988 BLAKE2B f260f1858994f5d481fd078c86e51bddbc958f7c5d1586f60dced772e1b1107ecf3aae0558c3e6f39c36f7d3aa1e6cd1e5c64ec9d6f2218f47b98413da6466fb SHA512 13c8459933a8b80608e226a1398e3d1848352ace84bcfb7e6a4a33cb230bbe1ab719d4b58e067283df91ce5311be6d2d595fc8c19e2ae6ecc652499415614b3e +DIST linux-4.9.tar.xz 93192404 BLAKE2B 83ae310b17d47f1f18d6d28537c31e10f3e60458c5954c4611158ca99e71cc0da2e051272eabf27d5887df4a7cb4a5dd66ff993077c11d2221e92d300a0b48d7 SHA512 bf67ff812cc3cb7e5059e82cc5db0d9a7c5637f7ed9a42e4730c715bf7047c81ed3a571225f92a33ef0b6d65f35595bc32d773356646df2627da55e9bc7f1f1a +DIST linux-5.3.tar.xz 108558876 BLAKE2B 0d08eed879d05734e4542f0c93823d43f8dc042a54ba5268064c4bbebd7a9d59c03abf3ad5dee8280e784ae148a3b0c56181eaf2d5b3c079b6fe9f5191544df6 SHA512 6b5edef47c319a3fa7f6c20a3e0903a5acd89ec75e32dc5f99adcb60c9fe118ea312722d9c3d27e2e3900afa2455afb86e83a8b6bb131009bc79ddbe6fb0595d +DIST linux-5.4.tar.xz 109441440 BLAKE2B 193bc4a3147e147d5529956164ec4912fad5d5c6fb07f909ff1056e57235834173194afc686993ccd785c1ff15804de0961b625f3008cca0e27493efc8f27b13 SHA512 9f60f77e8ab972b9438ac648bed17551c8491d6585a5e85f694b2eaa4c623fbc61eb18419b2656b6795eac5deec0edaa04547fc6723fbda52256bd7f3486898f \ No newline at end of file diff --git a/sys-kernel/sabayon-sources/sabayon-sources-4.19.91.ebuild b/sys-kernel/linux-sabayon/linux-sabayon-4.14.161.ebuild similarity index 56% rename from sys-kernel/sabayon-sources/sabayon-sources-4.19.91.ebuild rename to sys-kernel/linux-sabayon/linux-sabayon-4.14.161.ebuild index aa17b6fa6..2edfd57d1 100644 --- a/sys-kernel/sabayon-sources/sabayon-sources-4.19.91.ebuild +++ b/sys-kernel/linux-sabayon/linux-sabayon-4.14.161.ebuild @@ -3,20 +3,19 @@ EAPI=5 -K_SABKERNEL_NAME="sabayon" +inherit versionator + K_SABKERNEL_SELF_TARBALL_NAME="sabayon" -K_ONLY_SOURCES="1" +K_REQUIRED_LINUX_FIRMWARE_VER="20191108" K_SABKERNEL_FORCE_SUBLEVEL="0" -K_KERNEL_NEW_VERSIONING="1" K_SABKERNEL_PATCH_UPSTREAM_TARBALL="1" +K_KERNEL_NEW_VERSIONING="1" inherit sabayon-kernel KEYWORDS="~amd64" -DESCRIPTION="Official Sabayon Linux Standard kernel sources" +DESCRIPTION="Official Sabayon Linux Standard kernel image" RESTRICT="mirror" -IUSE="sources_standalone" DEPEND="${DEPEND} - sources_standalone? ( !=sys-kernel/linux-sabayon-${PVR} ) - !sources_standalone? ( =sys-kernel/linux-sabayon-${PVR} )" + sys-apps/v86d" diff --git a/sys-kernel/sabayon-sources/sabayon-sources-4.14.158.ebuild b/sys-kernel/linux-sabayon/linux-sabayon-4.14.162.ebuild similarity index 56% rename from sys-kernel/sabayon-sources/sabayon-sources-4.14.158.ebuild rename to sys-kernel/linux-sabayon/linux-sabayon-4.14.162.ebuild index aa17b6fa6..2edfd57d1 100644 --- a/sys-kernel/sabayon-sources/sabayon-sources-4.14.158.ebuild +++ b/sys-kernel/linux-sabayon/linux-sabayon-4.14.162.ebuild @@ -3,20 +3,19 @@ EAPI=5 -K_SABKERNEL_NAME="sabayon" +inherit versionator + K_SABKERNEL_SELF_TARBALL_NAME="sabayon" -K_ONLY_SOURCES="1" +K_REQUIRED_LINUX_FIRMWARE_VER="20191108" K_SABKERNEL_FORCE_SUBLEVEL="0" -K_KERNEL_NEW_VERSIONING="1" K_SABKERNEL_PATCH_UPSTREAM_TARBALL="1" +K_KERNEL_NEW_VERSIONING="1" inherit sabayon-kernel KEYWORDS="~amd64" -DESCRIPTION="Official Sabayon Linux Standard kernel sources" +DESCRIPTION="Official Sabayon Linux Standard kernel image" RESTRICT="mirror" -IUSE="sources_standalone" DEPEND="${DEPEND} - sources_standalone? ( !=sys-kernel/linux-sabayon-${PVR} ) - !sources_standalone? ( =sys-kernel/linux-sabayon-${PVR} )" + sys-apps/v86d" diff --git a/sys-kernel/sabayon-sources/sabayon-sources-4.14.159.ebuild b/sys-kernel/linux-sabayon/linux-sabayon-4.19.92.ebuild similarity index 56% rename from sys-kernel/sabayon-sources/sabayon-sources-4.14.159.ebuild rename to sys-kernel/linux-sabayon/linux-sabayon-4.19.92.ebuild index aa17b6fa6..2edfd57d1 100644 --- a/sys-kernel/sabayon-sources/sabayon-sources-4.14.159.ebuild +++ b/sys-kernel/linux-sabayon/linux-sabayon-4.19.92.ebuild @@ -3,20 +3,19 @@ EAPI=5 -K_SABKERNEL_NAME="sabayon" +inherit versionator + K_SABKERNEL_SELF_TARBALL_NAME="sabayon" -K_ONLY_SOURCES="1" +K_REQUIRED_LINUX_FIRMWARE_VER="20191108" K_SABKERNEL_FORCE_SUBLEVEL="0" -K_KERNEL_NEW_VERSIONING="1" K_SABKERNEL_PATCH_UPSTREAM_TARBALL="1" +K_KERNEL_NEW_VERSIONING="1" inherit sabayon-kernel KEYWORDS="~amd64" -DESCRIPTION="Official Sabayon Linux Standard kernel sources" +DESCRIPTION="Official Sabayon Linux Standard kernel image" RESTRICT="mirror" -IUSE="sources_standalone" DEPEND="${DEPEND} - sources_standalone? ( !=sys-kernel/linux-sabayon-${PVR} ) - !sources_standalone? ( =sys-kernel/linux-sabayon-${PVR} )" + sys-apps/v86d" diff --git a/sys-kernel/sabayon-sources/sabayon-sources-4.14.160.ebuild b/sys-kernel/linux-sabayon/linux-sabayon-4.19.93.ebuild similarity index 56% rename from sys-kernel/sabayon-sources/sabayon-sources-4.14.160.ebuild rename to sys-kernel/linux-sabayon/linux-sabayon-4.19.93.ebuild index aa17b6fa6..2edfd57d1 100644 --- a/sys-kernel/sabayon-sources/sabayon-sources-4.14.160.ebuild +++ b/sys-kernel/linux-sabayon/linux-sabayon-4.19.93.ebuild @@ -3,20 +3,19 @@ EAPI=5 -K_SABKERNEL_NAME="sabayon" +inherit versionator + K_SABKERNEL_SELF_TARBALL_NAME="sabayon" -K_ONLY_SOURCES="1" +K_REQUIRED_LINUX_FIRMWARE_VER="20191108" K_SABKERNEL_FORCE_SUBLEVEL="0" -K_KERNEL_NEW_VERSIONING="1" K_SABKERNEL_PATCH_UPSTREAM_TARBALL="1" +K_KERNEL_NEW_VERSIONING="1" inherit sabayon-kernel KEYWORDS="~amd64" -DESCRIPTION="Official Sabayon Linux Standard kernel sources" +DESCRIPTION="Official Sabayon Linux Standard kernel image" RESTRICT="mirror" -IUSE="sources_standalone" DEPEND="${DEPEND} - sources_standalone? ( !=sys-kernel/linux-sabayon-${PVR} ) - !sources_standalone? ( =sys-kernel/linux-sabayon-${PVR} )" + sys-apps/v86d" diff --git a/sys-kernel/linux-sabayon/linux-sabayon-4.4.208.ebuild b/sys-kernel/linux-sabayon/linux-sabayon-4.4.208.ebuild new file mode 100644 index 000000000..2edfd57d1 --- /dev/null +++ b/sys-kernel/linux-sabayon/linux-sabayon-4.4.208.ebuild @@ -0,0 +1,21 @@ +# Copyright 2004-2013 Sabayon Linux +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 + +inherit versionator + +K_SABKERNEL_SELF_TARBALL_NAME="sabayon" +K_REQUIRED_LINUX_FIRMWARE_VER="20191108" +K_SABKERNEL_FORCE_SUBLEVEL="0" +K_SABKERNEL_PATCH_UPSTREAM_TARBALL="1" +K_KERNEL_NEW_VERSIONING="1" + +inherit sabayon-kernel + +KEYWORDS="~amd64" +DESCRIPTION="Official Sabayon Linux Standard kernel image" +RESTRICT="mirror" + +DEPEND="${DEPEND} + sys-apps/v86d" diff --git a/sys-kernel/linux-sabayon/linux-sabayon-4.9.208.ebuild b/sys-kernel/linux-sabayon/linux-sabayon-4.9.208.ebuild new file mode 100644 index 000000000..2edfd57d1 --- /dev/null +++ b/sys-kernel/linux-sabayon/linux-sabayon-4.9.208.ebuild @@ -0,0 +1,21 @@ +# Copyright 2004-2013 Sabayon Linux +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 + +inherit versionator + +K_SABKERNEL_SELF_TARBALL_NAME="sabayon" +K_REQUIRED_LINUX_FIRMWARE_VER="20191108" +K_SABKERNEL_FORCE_SUBLEVEL="0" +K_SABKERNEL_PATCH_UPSTREAM_TARBALL="1" +K_KERNEL_NEW_VERSIONING="1" + +inherit sabayon-kernel + +KEYWORDS="~amd64" +DESCRIPTION="Official Sabayon Linux Standard kernel image" +RESTRICT="mirror" + +DEPEND="${DEPEND} + sys-apps/v86d" diff --git a/sys-kernel/linux-sabayon/linux-sabayon-5.4.7.ebuild b/sys-kernel/linux-sabayon/linux-sabayon-5.4.7.ebuild new file mode 100644 index 000000000..2edfd57d1 --- /dev/null +++ b/sys-kernel/linux-sabayon/linux-sabayon-5.4.7.ebuild @@ -0,0 +1,21 @@ +# Copyright 2004-2013 Sabayon Linux +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 + +inherit versionator + +K_SABKERNEL_SELF_TARBALL_NAME="sabayon" +K_REQUIRED_LINUX_FIRMWARE_VER="20191108" +K_SABKERNEL_FORCE_SUBLEVEL="0" +K_SABKERNEL_PATCH_UPSTREAM_TARBALL="1" +K_KERNEL_NEW_VERSIONING="1" + +inherit sabayon-kernel + +KEYWORDS="~amd64" +DESCRIPTION="Official Sabayon Linux Standard kernel image" +RESTRICT="mirror" + +DEPEND="${DEPEND} + sys-apps/v86d" diff --git a/sys-kernel/linux-sabayon/linux-sabayon-5.4.8.ebuild b/sys-kernel/linux-sabayon/linux-sabayon-5.4.8.ebuild new file mode 100644 index 000000000..2edfd57d1 --- /dev/null +++ b/sys-kernel/linux-sabayon/linux-sabayon-5.4.8.ebuild @@ -0,0 +1,21 @@ +# Copyright 2004-2013 Sabayon Linux +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 + +inherit versionator + +K_SABKERNEL_SELF_TARBALL_NAME="sabayon" +K_REQUIRED_LINUX_FIRMWARE_VER="20191108" +K_SABKERNEL_FORCE_SUBLEVEL="0" +K_SABKERNEL_PATCH_UPSTREAM_TARBALL="1" +K_KERNEL_NEW_VERSIONING="1" + +inherit sabayon-kernel + +KEYWORDS="~amd64" +DESCRIPTION="Official Sabayon Linux Standard kernel image" +RESTRICT="mirror" + +DEPEND="${DEPEND} + sys-apps/v86d" diff --git a/sys-kernel/sabayon-sources/Manifest b/sys-kernel/sabayon-sources/Manifest index 204d8a13d..9f67200ee 100644 --- a/sys-kernel/sabayon-sources/Manifest +++ b/sys-kernel/sabayon-sources/Manifest @@ -9,7 +9,11 @@ DIST 4.14-sabayon-4.14.155.patch.xz 3125928 BLAKE2B 7580122c94080055e70c8ac56f50 DIST 4.14-sabayon-4.14.158.patch.xz 3234280 BLAKE2B 02ef9693bebe697f2051da3bd30af658d64edae007bb2ade8cadee25a709670fb1c1694847502ea2ffa49491ab853cdc119fe1713a6a37990c891c506215f979 SHA512 1a93b9f09ee876d869059ff2f5a808bb8bd110d1600322c02757464321236dfc9213eace81fc843161561c593aa2030d19738018cf867c4bcd5e0cd0e8b869c0 DIST 4.14-sabayon-4.14.159.patch.xz 3278764 BLAKE2B 714ba0849c17e3822413c80d37915dce4d0574640ed67f86faad60e9500a93214932ec78e8aa0a81f1b5e9f085147fde14ab061275d06560ee1db8b8775f9895 SHA512 e7c33d61109c002632597abe22cd69a17fb28651e0d376f3c20eab957ae59ce8e330d0e28dec72c862b67bca7513b7d0a2216b359ae73485b6dfd06fa158f813 DIST 4.14-sabayon-4.14.160.patch.xz 3283996 BLAKE2B ee9ffef8eac5400a1219e18842e210cff4acf9c32dcd299905e13da5b7b0708b746190bad92b838ce96af19e4e85c2c4a9ec93a175645bf64a3039bea84769f1 SHA512 bbd1d629214817dfaeaeffd877259ddce342c96ae1e414557247f8e8e1a49163ea0f57ec4e25299b10699d2dfb27b478b07ce5793c041e474b1e328ff0e64cc7 +DIST 4.14-sabayon-4.14.161.patch.xz 3310232 BLAKE2B 960a182ab25f3e6b6f2fd0a1b67fef1fc7fe37f5cc3ce3e7d30937116643d66df215abb52f7270570f66d0ef5ffe71a066403aeb04a914673a4e7779d1e409ab SHA512 33a6aee5ab4457fbc178b673f863ae7a2603baea8ae569b3869e757e3990e959b629255e1c94207abe6e881752ce194daa92a90e918beabca57a9020fa6e2c0b +DIST 4.14-sabayon-4.14.162.patch.xz 3327224 BLAKE2B 5025f11e74462d8466e56c3793db9341268ff240b0653681259a316d4db27c50d2162c4fb0a6d7f491dbe4ed2877488f1f09521935deea307bfc5dddf1c2d677 SHA512 7714c5405086011ea5ba3476e59cffbf0811c622ca767838c2606cd2e4284e8508e5339126e1b7f16d1dd194935248572533c73f27a651f19546c3a19dda72f2 DIST 4.19-sabayon-4.19.91.patch.xz 2450336 BLAKE2B f5616342335160a2fc1fd45f9b902fcd1a4a580e5c60e645b6ff0c03d4b939fd8fbca7745ce9978db81116e98b27c3ab1c9df26cbbcbed0102daeb28b07882bb SHA512 ae6c689812d21f4381bec87d2d932ae553ff4d89b62453418296176f8af9fb5331bf5df09487c1e52c13c375bc44dcda818bc05174eded5e37e0978e08cb4f99 +DIST 4.19-sabayon-4.19.92.patch.xz 2489428 BLAKE2B 87b2ab14ca4754786749e4b3cd21a345634e4522434f10b4cd1ff462c222c04effd2771e8bc7f3838b39585d81d27b60ef74ad1ead53c0cfcb5d9892b415456d SHA512 e97af7ce914ffd238d440ed6f9d67b562fb5b10d484ca1bea466b2a61e12042596c84440ba7d4a63cfdb8b59074e2c4a3016c74f50402d062b46486e781ff4b4 +DIST 4.19-sabayon-4.19.93.patch.xz 2512140 BLAKE2B 21ede408293d397f717186369078f4dff09a31401fb84c41406be21e886221794f9f7d1a4effb1db5e8cfdc1ef9de7ba5f8d2b656897a6e974861448bcea3a8c SHA512 068699ae20560232b26c8f8f387f8adae309cd87a22a57ec74232e922510552c62e2b66fc314e443bb49f8c3c4e4c1fa8680f526e90be2e13e0e0cb2b736370c DIST 4.19-sabayon-4.19.patch.xz 47240 BLAKE2B d62b6b1e6e19c3e3a8a3172fc5e04a7a3649d5f90a982b7669677b86c1509ef19de56930f8710d865f432d542d4f4849c554926bfb2427baff6b3ab865307ddd SHA512 fa68a3c2223c61d7b08af0a3bcaad20c282737cdb4752e534aac8f61b68958d8098948d5827aa5f411e345e3d7cc876c393f60cad76209309e24168cb6d76286 DIST 4.20-sabayon-4.20.17.patch.xz 551960 BLAKE2B f5e3393e97e809c684f7445b994f19b2c0e9c849bb17c8d5812cf63ce8aafb8e6090c4d84feae096add34484fb2b7b8a6cb5e61caa7021062f0ec6c3c3c477f8 SHA512 c756f7561ac687558be2587208ed2ee3f02ad27b5c151526be659328be181365346f32734f4a0571582dad3f09bce86b2658566f25b04ddbe28d0aea10715b8d DIST 4.20-sabayon-4.20.patch.xz 47504 BLAKE2B f1cf4d715b53e749cf5a4403c7b8fc3c3ee405254d860bc35b872c7471cabc8fe78b3aa231f55eb39f868ba59801fe9ef67a70ef20538420829f1376e4cd24b7 SHA512 15e43e0bce9701b781a2b6847fc2a0e0d6dee65509ba841fc347176830e5c9433e0341efa427e9243b1a094802bca4cc35d99556dce2013e7a35e6c21e1c3d9e @@ -21,6 +25,7 @@ DIST 4.4-sabayon-4.4.201.patch.xz 2827080 BLAKE2B 831577dfaf36ac869d2f444198f44a DIST 4.4-sabayon-4.4.202.patch.xz 2834916 BLAKE2B a11c1411543818723b3010cc9feb0225d3d3f1e689245eac17ebfa3f11dfbb9531bb6539124989e3925194038d9815dd843e03417aca76b5257e1250f915aba9 SHA512 0b0ce8e0db78285fc5d7e00fda2746ff3a70bbd5911f4b59b17d36050ef695fe1daf02ffe3af8b7d3960a073517cdf325a5ca5a62f953980897fc25acf08b75e DIST 4.4-sabayon-4.4.206.patch.xz 2909180 BLAKE2B 7fb1b1a508340354040180d7580e6a958d47579e24eed32c5eca2de67b7cbf807f2092bdd66267bcb77e65137b2a0c06bab7780275190c7864f9cb25aca01ba4 SHA512 08c6eee257b94f4e6e63086324b70d3aee1930f848af5e1ae45000f934c7e79d2e2241445ace96027a410a122a1ed5ef67a0e8d5b6e64d6bdcd7559ef37d0549 DIST 4.4-sabayon-4.4.207.patch.xz 2934044 BLAKE2B 190a33dd1e6bd45d082f217f5426b79a52ed732b075e48961a32de7358095a5d3e90ecc8c8faff6c426b87914087d16ae763ddc441dc9a9e8f638bafc2cada2d SHA512 6663e62f447faa25b716b480915de27798c14427677ddaad48a014f0ba8f1585212f56c4ff85ea2c37ec29078738e48bcb08df8fa52facc52c2af5fc2469caa0 +DIST 4.4-sabayon-4.4.208.patch.xz 2954032 BLAKE2B f9860cd2fbdb6d2160f78bed239c00895c429a7990302dc29433b2ec6e630dc1cddc6239b926f286ebca8fd3ef584961e913872a4a31dbf0a4049681d35def14 SHA512 2ed9594644542ca09a9de1175b4fbd5606b458e50ae0084efa84a5846aade2ef84226cecc1d37422561494921677185932c11467b524ab69bd99d5a1ccae22ce DIST 4.9-sabayon-4.9.197.patch.xz 3042224 BLAKE2B dc66408bd495ef9d7ad080ad4ce9447af1d8b67d5aa38945e5465126cec4501048a394e735151123e3d71f09f708327959a53c04e5196196b3448bef182f880b SHA512 48ead62233326f33046fc5db3f80c012b8e59c2ea4d9c0291fd860285297b6b1eede3fba700768f3e9f57430718299f824c1c5ed20a80748a80477a2cf451fb5 DIST 4.9-sabayon-4.9.198.patch.xz 3048392 BLAKE2B da55e3e3b89d3f15636d88efb284b2ed83128b0ad6a1ed150f4bfde7d20132bda0e21acea5a7945139b2a3e0e3aee108b90ab652647bc859c87fc634f17c356c SHA512 f531e8b1853a4f08957846db456ee0fcea088ef645b0365504def701e263d0a4e96536503d2e8f4aa3d01974fee1444a684e93d842db32737deddbf559e500bc DIST 4.9-sabayon-4.9.199.patch.xz 3061676 BLAKE2B ffa88bf516308318efdb5d12f20ab6f880c2c42019bd9d33cc99a26ddf5af0a02b43a5e7cb0407567e57a688e4d9db33e61dc9209cf8182985e1d5daad098833 SHA512 f7e01c403b682a328da8563276d1e3f4f3c4915e8f1304c3a0f6dcab816911d65df45d072cf86e33ddcb6d5f6d13b6580ea71b52d30eed304d2ea317a1da8a0f @@ -29,6 +34,7 @@ DIST 4.9-sabayon-4.9.201.patch.xz 3096556 BLAKE2B 0217aa7a6d5dea518470370825f7ad DIST 4.9-sabayon-4.9.202.patch.xz 3113392 BLAKE2B e809c49f8cc83ad0c8ec1da1b2228291860ff5b32ad167ce4ac0b36e70bf54e77f20fdea70c3ecff495f95f1e2afca1f6a51c36caeb8bab9d461cfb39d767e60 SHA512 e9d2c08260928e50f6a94911ed63090e2766422c4ca429d946ed894fb402c851b11547a62e3dcf2793ceb12990291aec93ef419a898a846a2710dba7d98091ed DIST 4.9-sabayon-4.9.206.patch.xz 3199844 BLAKE2B ee77ad31837ee00f903cd2a8f8da6612e7b29bb5d0b2f8dc02131dcfd8c3c3fe13e4dcaeed4c3bb0930f742086b0ee96996f525ede9348981872bc69293d6893 SHA512 2f6cb3fbe7e1e0f84688f45d0e1a468bdab8348bf3a2921b6d59764a7fd766109faae82005768bdd0b1159577beac3e93c56ac14556fb12784bb92743fe7e60e DIST 4.9-sabayon-4.9.207.patch.xz 3231396 BLAKE2B 6b6d48738777daa1bf5a00de75f329421d69749390cd13104f3bcd9977a8f0ce44992078ef17651eefbec94925ecc148542e6713a93386fab85fc4b034ed5ff2 SHA512 4fcd6e9e42257b0c8aa8622893a05dff9bafcd30879cf51653f984b1abebfd9f15e8ec3e1c073b69fd06bb4dbc398af74c34eb575d5973c586e85a05aa0934f3 +DIST 4.9-sabayon-4.9.208.patch.xz 3259644 BLAKE2B 5b08eb9beeb2ef45ed024156d13b9d40c8f174bbe703723e03146a4922a82d988be0c1a9b4fa68b5fd474b961964de68a8d79c1e5563e274d3c748c2b162f21f SHA512 8bd36ccfde87f261ad617a502f2046caf730ff1e29dec26a68dacd95c44e027fe19ecd1ccb79991bb5c5fa50db67327603d9f60171b5bab061649ac74e51c25b DIST 5.3-sabayon-5.3.11.patch.xz 532316 BLAKE2B f4ce4f8a880f44ececdd2b6851933dfa48ccdaaab97fb637d01def09e1d801d29e36eb79f11ddd2476a40ad2163663a1e2757653ad765a61db985aa5a5d12428 SHA512 46c4b8e9fe60afc77bb9abbe917379c526ffc1f15950d37e484976c6833a4ea797c156d06d517d9e7610346117b53305d6536329ef61969e49db842661a42ee3 DIST 5.3-sabayon-5.3.12.patch.xz 543632 BLAKE2B 488565f5db65ecfd8b9fe3cb81de628f30f66b9053009ecd4fe293d51ae8b70623e2aea1e0ec6148faea72ccb79ea87c89f7d1e181238d2b865fb0ae22942198 SHA512 256793d7eec6345fc2cd6ec5376639f13a9f524c46608affc4c72f51ebb5ff3f4661dc294f072e700f2f7c56a7bc1e7ad7eca5427a75199e95f7bd38d3461e70 DIST 5.3-sabayon-5.3.15.patch.xz 601012 BLAKE2B f8a7755cd34aebe5aad9927ce0a7b6990d595f7eaf0849f6e8ac82187557a54f024b385f2269b88f502ec4871539449e5fbb32cf1b3efd0fe4a2eb51a5383242 SHA512 0403575ef0c44f1c06e4867932dd499769fe8a0bec843c06b04fb20044684f0d1e7aae1fcf8a01bceba77cff6a4221e68755c7ead849e4384b5f8d216552f20c @@ -42,6 +48,8 @@ DIST 5.4-sabayon-5.4.3.patch.xz 120804 BLAKE2B 1f050a276ebf1f57e87b369bc9f0d925f DIST 5.4-sabayon-5.4.4.patch.xz 171664 BLAKE2B ccb9f18eabf55ce8188029a6e9d34de684ad3e22efe39bc51a1ee912b81a48ae2fe19a518cb7072dfade813c2632b141b0f6421b03c8476c00d75503f7448218 SHA512 16c7bd42125db3bd96463171c74fbf3c793d1df8a718c98dd077376ded79d2d517beebf95881c84abf4e0ce96b596eded68b24580b131294e3a7061443605a73 DIST 5.4-sabayon-5.4.5.patch.xz 190120 BLAKE2B cec466975d9c24e583ea3dd0433e8b3323c295d5d286f5ad10edb2a83c52f3ad6218ae2cf9ba625ae3720cb5248340d82262f2a35a7ab34de4d1a8c8c6fec3b8 SHA512 8520e088ab4eca0902b1986369fdee9dfbb6f4e4d3b486d398b8dfaa806849a249e485b6c20438a2bb482875975abee4c2a9dc008177e58bb4c49e0c0a27ff33 DIST 5.4-sabayon-5.4.6.patch.xz 215868 BLAKE2B 717174473b17b32d928e3ad636a1ace0510b224150874d6bfacf7d2db5944a2e064798959b67494657a63d35512b9a7e15a1108d530fe3e9d66b3b790678cf3a SHA512 d6f367563c307fe68276362b43913e2bad1c85a44fc111ae9bfcbb970d0cb9dc5b06685ab641fcf400445892c58a55f745b0a23d790f4c7e601c948187c7cf60 +DIST 5.4-sabayon-5.4.7.patch.xz 320696 BLAKE2B 76ab0ba56e7516672e353e45258b2c48084462ff5f212540c8e51eb732d6defdfae37754a9407ec4f93b30251ec360aecb5ea3ab4ee54911d01ffc6c82e64f96 SHA512 dbb2ee2df6bfae01228d40c7a1827b7749b7c66a11c03530eb775880c507bd9b910a0c0e6289c00311de84c77da70e93198622936f015c4a895e5b929f07a975 +DIST 5.4-sabayon-5.4.8.patch.xz 375512 BLAKE2B 1a5812788f05f4de992356408464ae192d2f5f162fe85b3199be76eadc8ad7f2f257bc3d63e00e49e0aecb8c7bbeb30fa7efb5749d979c906ce5ade456054b77 SHA512 1ca08ed39e3e3b436ace404bdbfd0f8b3cbbaa6d15665e9143a4d6d7b5a04f2b58eebcddb67aede34703ead6da3af375cb736182713658f4e478977908d7f0a7 DIST 5.4-sabayon-5.4.patch.xz 49144 BLAKE2B 95416c03e4029589d065b4d07218ed89179bdd377485fd9b833efca2287c2069062a9795888f5b8fc35b1a8e59b7078912ec14f7a6f220ac498b141ad4498268 SHA512 34fd243baf54a7fd790f97dd45203fc0e888606d00b446f45b8b1cf97749071f93d88b183ef12395f32dadbb777ccf7045130e1b048bf296aeecdb0a31662c84 DIST linux-3.16.tar.xz 80501624 BLAKE2B 46de37c6e1bc3c57d4b77f772ccd372fd77f96989d19d341b8098dab13a86659e0c74802859226fc7b22879ddb05788cfc1aad020920e3acc53d5383aa496afa SHA512 64033e741d3f42ed06010e63e69d66e1d3d9414ef20f76834508878d4218b72619541a18ef4fd377204af2859e52198310998109b20ed9b67722586b28c9a231 DIST linux-4.14.tar.xz 100770500 BLAKE2B 85dc4aa953fe65e273a24473d8de98e4f204f97c43be9fc87cf5be01f796f94cfde5c8f9c84619751f1cac51f83ce0b4681fb19c5f2965a72d4a94fe5577846a SHA512 77e43a02d766c3d73b7e25c4aafb2e931d6b16e870510c22cef0cdb05c3acb7952b8908ebad12b10ef982c6efbe286364b1544586e715cf38390e483927904d8 diff --git a/sys-kernel/sabayon-sources/sabayon-sources-3.16.56.ebuild b/sys-kernel/sabayon-sources/sabayon-sources-4.14.161.ebuild similarity index 100% rename from sys-kernel/sabayon-sources/sabayon-sources-3.16.56.ebuild rename to sys-kernel/sabayon-sources/sabayon-sources-4.14.161.ebuild diff --git a/sys-kernel/sabayon-sources/sabayon-sources-3.16.57.ebuild b/sys-kernel/sabayon-sources/sabayon-sources-4.14.162.ebuild similarity index 100% rename from sys-kernel/sabayon-sources/sabayon-sources-3.16.57.ebuild rename to sys-kernel/sabayon-sources/sabayon-sources-4.14.162.ebuild diff --git a/sys-kernel/sabayon-sources/sabayon-sources-4.14.150.ebuild b/sys-kernel/sabayon-sources/sabayon-sources-4.19.92.ebuild similarity index 100% rename from sys-kernel/sabayon-sources/sabayon-sources-4.14.150.ebuild rename to sys-kernel/sabayon-sources/sabayon-sources-4.19.92.ebuild diff --git a/sys-kernel/sabayon-sources/sabayon-sources-4.14.151.ebuild b/sys-kernel/sabayon-sources/sabayon-sources-4.19.93.ebuild similarity index 100% rename from sys-kernel/sabayon-sources/sabayon-sources-4.14.151.ebuild rename to sys-kernel/sabayon-sources/sabayon-sources-4.19.93.ebuild diff --git a/sys-kernel/sabayon-sources/sabayon-sources-4.19.ebuild b/sys-kernel/sabayon-sources/sabayon-sources-4.19.ebuild deleted file mode 100644 index aa17b6fa6..000000000 --- a/sys-kernel/sabayon-sources/sabayon-sources-4.19.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 2004-2013 Sabayon Linux -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -K_SABKERNEL_NAME="sabayon" -K_SABKERNEL_SELF_TARBALL_NAME="sabayon" -K_ONLY_SOURCES="1" -K_SABKERNEL_FORCE_SUBLEVEL="0" -K_KERNEL_NEW_VERSIONING="1" -K_SABKERNEL_PATCH_UPSTREAM_TARBALL="1" - -inherit sabayon-kernel - -KEYWORDS="~amd64" -DESCRIPTION="Official Sabayon Linux Standard kernel sources" -RESTRICT="mirror" -IUSE="sources_standalone" - -DEPEND="${DEPEND} - sources_standalone? ( !=sys-kernel/linux-sabayon-${PVR} ) - !sources_standalone? ( =sys-kernel/linux-sabayon-${PVR} )" diff --git a/sys-kernel/sabayon-sources/sabayon-sources-4.20.17.ebuild b/sys-kernel/sabayon-sources/sabayon-sources-4.20.17.ebuild deleted file mode 100644 index aa17b6fa6..000000000 --- a/sys-kernel/sabayon-sources/sabayon-sources-4.20.17.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 2004-2013 Sabayon Linux -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -K_SABKERNEL_NAME="sabayon" -K_SABKERNEL_SELF_TARBALL_NAME="sabayon" -K_ONLY_SOURCES="1" -K_SABKERNEL_FORCE_SUBLEVEL="0" -K_KERNEL_NEW_VERSIONING="1" -K_SABKERNEL_PATCH_UPSTREAM_TARBALL="1" - -inherit sabayon-kernel - -KEYWORDS="~amd64" -DESCRIPTION="Official Sabayon Linux Standard kernel sources" -RESTRICT="mirror" -IUSE="sources_standalone" - -DEPEND="${DEPEND} - sources_standalone? ( !=sys-kernel/linux-sabayon-${PVR} ) - !sources_standalone? ( =sys-kernel/linux-sabayon-${PVR} )" diff --git a/sys-kernel/sabayon-sources/sabayon-sources-4.20.ebuild b/sys-kernel/sabayon-sources/sabayon-sources-4.20.ebuild deleted file mode 100644 index aa17b6fa6..000000000 --- a/sys-kernel/sabayon-sources/sabayon-sources-4.20.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 2004-2013 Sabayon Linux -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -K_SABKERNEL_NAME="sabayon" -K_SABKERNEL_SELF_TARBALL_NAME="sabayon" -K_ONLY_SOURCES="1" -K_SABKERNEL_FORCE_SUBLEVEL="0" -K_KERNEL_NEW_VERSIONING="1" -K_SABKERNEL_PATCH_UPSTREAM_TARBALL="1" - -inherit sabayon-kernel - -KEYWORDS="~amd64" -DESCRIPTION="Official Sabayon Linux Standard kernel sources" -RESTRICT="mirror" -IUSE="sources_standalone" - -DEPEND="${DEPEND} - sources_standalone? ( !=sys-kernel/linux-sabayon-${PVR} ) - !sources_standalone? ( =sys-kernel/linux-sabayon-${PVR} )" diff --git a/sys-kernel/sabayon-sources/sabayon-sources-4.4.197.ebuild b/sys-kernel/sabayon-sources/sabayon-sources-4.4.197.ebuild deleted file mode 100644 index aa17b6fa6..000000000 --- a/sys-kernel/sabayon-sources/sabayon-sources-4.4.197.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 2004-2013 Sabayon Linux -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -K_SABKERNEL_NAME="sabayon" -K_SABKERNEL_SELF_TARBALL_NAME="sabayon" -K_ONLY_SOURCES="1" -K_SABKERNEL_FORCE_SUBLEVEL="0" -K_KERNEL_NEW_VERSIONING="1" -K_SABKERNEL_PATCH_UPSTREAM_TARBALL="1" - -inherit sabayon-kernel - -KEYWORDS="~amd64" -DESCRIPTION="Official Sabayon Linux Standard kernel sources" -RESTRICT="mirror" -IUSE="sources_standalone" - -DEPEND="${DEPEND} - sources_standalone? ( !=sys-kernel/linux-sabayon-${PVR} ) - !sources_standalone? ( =sys-kernel/linux-sabayon-${PVR} )" diff --git a/sys-kernel/sabayon-sources/sabayon-sources-4.4.198.ebuild b/sys-kernel/sabayon-sources/sabayon-sources-4.4.198.ebuild deleted file mode 100644 index aa17b6fa6..000000000 --- a/sys-kernel/sabayon-sources/sabayon-sources-4.4.198.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 2004-2013 Sabayon Linux -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -K_SABKERNEL_NAME="sabayon" -K_SABKERNEL_SELF_TARBALL_NAME="sabayon" -K_ONLY_SOURCES="1" -K_SABKERNEL_FORCE_SUBLEVEL="0" -K_KERNEL_NEW_VERSIONING="1" -K_SABKERNEL_PATCH_UPSTREAM_TARBALL="1" - -inherit sabayon-kernel - -KEYWORDS="~amd64" -DESCRIPTION="Official Sabayon Linux Standard kernel sources" -RESTRICT="mirror" -IUSE="sources_standalone" - -DEPEND="${DEPEND} - sources_standalone? ( !=sys-kernel/linux-sabayon-${PVR} ) - !sources_standalone? ( =sys-kernel/linux-sabayon-${PVR} )" diff --git a/sys-kernel/sabayon-sources/sabayon-sources-4.4.199.ebuild b/sys-kernel/sabayon-sources/sabayon-sources-4.4.199.ebuild deleted file mode 100644 index aa17b6fa6..000000000 --- a/sys-kernel/sabayon-sources/sabayon-sources-4.4.199.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 2004-2013 Sabayon Linux -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -K_SABKERNEL_NAME="sabayon" -K_SABKERNEL_SELF_TARBALL_NAME="sabayon" -K_ONLY_SOURCES="1" -K_SABKERNEL_FORCE_SUBLEVEL="0" -K_KERNEL_NEW_VERSIONING="1" -K_SABKERNEL_PATCH_UPSTREAM_TARBALL="1" - -inherit sabayon-kernel - -KEYWORDS="~amd64" -DESCRIPTION="Official Sabayon Linux Standard kernel sources" -RESTRICT="mirror" -IUSE="sources_standalone" - -DEPEND="${DEPEND} - sources_standalone? ( !=sys-kernel/linux-sabayon-${PVR} ) - !sources_standalone? ( =sys-kernel/linux-sabayon-${PVR} )" diff --git a/sys-kernel/sabayon-sources/sabayon-sources-4.4.200.ebuild b/sys-kernel/sabayon-sources/sabayon-sources-4.4.200.ebuild deleted file mode 100644 index aa17b6fa6..000000000 --- a/sys-kernel/sabayon-sources/sabayon-sources-4.4.200.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 2004-2013 Sabayon Linux -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -K_SABKERNEL_NAME="sabayon" -K_SABKERNEL_SELF_TARBALL_NAME="sabayon" -K_ONLY_SOURCES="1" -K_SABKERNEL_FORCE_SUBLEVEL="0" -K_KERNEL_NEW_VERSIONING="1" -K_SABKERNEL_PATCH_UPSTREAM_TARBALL="1" - -inherit sabayon-kernel - -KEYWORDS="~amd64" -DESCRIPTION="Official Sabayon Linux Standard kernel sources" -RESTRICT="mirror" -IUSE="sources_standalone" - -DEPEND="${DEPEND} - sources_standalone? ( !=sys-kernel/linux-sabayon-${PVR} ) - !sources_standalone? ( =sys-kernel/linux-sabayon-${PVR} )" diff --git a/sys-kernel/sabayon-sources/sabayon-sources-4.4.201.ebuild b/sys-kernel/sabayon-sources/sabayon-sources-4.4.201.ebuild deleted file mode 100644 index aa17b6fa6..000000000 --- a/sys-kernel/sabayon-sources/sabayon-sources-4.4.201.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 2004-2013 Sabayon Linux -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -K_SABKERNEL_NAME="sabayon" -K_SABKERNEL_SELF_TARBALL_NAME="sabayon" -K_ONLY_SOURCES="1" -K_SABKERNEL_FORCE_SUBLEVEL="0" -K_KERNEL_NEW_VERSIONING="1" -K_SABKERNEL_PATCH_UPSTREAM_TARBALL="1" - -inherit sabayon-kernel - -KEYWORDS="~amd64" -DESCRIPTION="Official Sabayon Linux Standard kernel sources" -RESTRICT="mirror" -IUSE="sources_standalone" - -DEPEND="${DEPEND} - sources_standalone? ( !=sys-kernel/linux-sabayon-${PVR} ) - !sources_standalone? ( =sys-kernel/linux-sabayon-${PVR} )" diff --git a/sys-kernel/sabayon-sources/sabayon-sources-4.4.202.ebuild b/sys-kernel/sabayon-sources/sabayon-sources-4.4.202.ebuild deleted file mode 100644 index aa17b6fa6..000000000 --- a/sys-kernel/sabayon-sources/sabayon-sources-4.4.202.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 2004-2013 Sabayon Linux -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -K_SABKERNEL_NAME="sabayon" -K_SABKERNEL_SELF_TARBALL_NAME="sabayon" -K_ONLY_SOURCES="1" -K_SABKERNEL_FORCE_SUBLEVEL="0" -K_KERNEL_NEW_VERSIONING="1" -K_SABKERNEL_PATCH_UPSTREAM_TARBALL="1" - -inherit sabayon-kernel - -KEYWORDS="~amd64" -DESCRIPTION="Official Sabayon Linux Standard kernel sources" -RESTRICT="mirror" -IUSE="sources_standalone" - -DEPEND="${DEPEND} - sources_standalone? ( !=sys-kernel/linux-sabayon-${PVR} ) - !sources_standalone? ( =sys-kernel/linux-sabayon-${PVR} )" diff --git a/sys-kernel/sabayon-sources/sabayon-sources-4.4.206.ebuild b/sys-kernel/sabayon-sources/sabayon-sources-4.4.206.ebuild deleted file mode 100644 index aa17b6fa6..000000000 --- a/sys-kernel/sabayon-sources/sabayon-sources-4.4.206.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 2004-2013 Sabayon Linux -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -K_SABKERNEL_NAME="sabayon" -K_SABKERNEL_SELF_TARBALL_NAME="sabayon" -K_ONLY_SOURCES="1" -K_SABKERNEL_FORCE_SUBLEVEL="0" -K_KERNEL_NEW_VERSIONING="1" -K_SABKERNEL_PATCH_UPSTREAM_TARBALL="1" - -inherit sabayon-kernel - -KEYWORDS="~amd64" -DESCRIPTION="Official Sabayon Linux Standard kernel sources" -RESTRICT="mirror" -IUSE="sources_standalone" - -DEPEND="${DEPEND} - sources_standalone? ( !=sys-kernel/linux-sabayon-${PVR} ) - !sources_standalone? ( =sys-kernel/linux-sabayon-${PVR} )" diff --git a/sys-kernel/sabayon-sources/sabayon-sources-4.4.207.ebuild b/sys-kernel/sabayon-sources/sabayon-sources-4.4.207.ebuild deleted file mode 100644 index aa17b6fa6..000000000 --- a/sys-kernel/sabayon-sources/sabayon-sources-4.4.207.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 2004-2013 Sabayon Linux -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -K_SABKERNEL_NAME="sabayon" -K_SABKERNEL_SELF_TARBALL_NAME="sabayon" -K_ONLY_SOURCES="1" -K_SABKERNEL_FORCE_SUBLEVEL="0" -K_KERNEL_NEW_VERSIONING="1" -K_SABKERNEL_PATCH_UPSTREAM_TARBALL="1" - -inherit sabayon-kernel - -KEYWORDS="~amd64" -DESCRIPTION="Official Sabayon Linux Standard kernel sources" -RESTRICT="mirror" -IUSE="sources_standalone" - -DEPEND="${DEPEND} - sources_standalone? ( !=sys-kernel/linux-sabayon-${PVR} ) - !sources_standalone? ( =sys-kernel/linux-sabayon-${PVR} )" diff --git a/sys-kernel/sabayon-sources/sabayon-sources-4.14.152.ebuild b/sys-kernel/sabayon-sources/sabayon-sources-4.4.208.ebuild similarity index 100% rename from sys-kernel/sabayon-sources/sabayon-sources-4.14.152.ebuild rename to sys-kernel/sabayon-sources/sabayon-sources-4.4.208.ebuild diff --git a/sys-kernel/sabayon-sources/sabayon-sources-4.9.197.ebuild b/sys-kernel/sabayon-sources/sabayon-sources-4.9.197.ebuild deleted file mode 100644 index aa17b6fa6..000000000 --- a/sys-kernel/sabayon-sources/sabayon-sources-4.9.197.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 2004-2013 Sabayon Linux -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -K_SABKERNEL_NAME="sabayon" -K_SABKERNEL_SELF_TARBALL_NAME="sabayon" -K_ONLY_SOURCES="1" -K_SABKERNEL_FORCE_SUBLEVEL="0" -K_KERNEL_NEW_VERSIONING="1" -K_SABKERNEL_PATCH_UPSTREAM_TARBALL="1" - -inherit sabayon-kernel - -KEYWORDS="~amd64" -DESCRIPTION="Official Sabayon Linux Standard kernel sources" -RESTRICT="mirror" -IUSE="sources_standalone" - -DEPEND="${DEPEND} - sources_standalone? ( !=sys-kernel/linux-sabayon-${PVR} ) - !sources_standalone? ( =sys-kernel/linux-sabayon-${PVR} )" diff --git a/sys-kernel/sabayon-sources/sabayon-sources-4.9.198.ebuild b/sys-kernel/sabayon-sources/sabayon-sources-4.9.198.ebuild deleted file mode 100644 index aa17b6fa6..000000000 --- a/sys-kernel/sabayon-sources/sabayon-sources-4.9.198.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 2004-2013 Sabayon Linux -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -K_SABKERNEL_NAME="sabayon" -K_SABKERNEL_SELF_TARBALL_NAME="sabayon" -K_ONLY_SOURCES="1" -K_SABKERNEL_FORCE_SUBLEVEL="0" -K_KERNEL_NEW_VERSIONING="1" -K_SABKERNEL_PATCH_UPSTREAM_TARBALL="1" - -inherit sabayon-kernel - -KEYWORDS="~amd64" -DESCRIPTION="Official Sabayon Linux Standard kernel sources" -RESTRICT="mirror" -IUSE="sources_standalone" - -DEPEND="${DEPEND} - sources_standalone? ( !=sys-kernel/linux-sabayon-${PVR} ) - !sources_standalone? ( =sys-kernel/linux-sabayon-${PVR} )" diff --git a/sys-kernel/sabayon-sources/sabayon-sources-4.9.199.ebuild b/sys-kernel/sabayon-sources/sabayon-sources-4.9.199.ebuild deleted file mode 100644 index aa17b6fa6..000000000 --- a/sys-kernel/sabayon-sources/sabayon-sources-4.9.199.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 2004-2013 Sabayon Linux -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -K_SABKERNEL_NAME="sabayon" -K_SABKERNEL_SELF_TARBALL_NAME="sabayon" -K_ONLY_SOURCES="1" -K_SABKERNEL_FORCE_SUBLEVEL="0" -K_KERNEL_NEW_VERSIONING="1" -K_SABKERNEL_PATCH_UPSTREAM_TARBALL="1" - -inherit sabayon-kernel - -KEYWORDS="~amd64" -DESCRIPTION="Official Sabayon Linux Standard kernel sources" -RESTRICT="mirror" -IUSE="sources_standalone" - -DEPEND="${DEPEND} - sources_standalone? ( !=sys-kernel/linux-sabayon-${PVR} ) - !sources_standalone? ( =sys-kernel/linux-sabayon-${PVR} )" diff --git a/sys-kernel/sabayon-sources/sabayon-sources-4.9.200.ebuild b/sys-kernel/sabayon-sources/sabayon-sources-4.9.200.ebuild deleted file mode 100644 index aa17b6fa6..000000000 --- a/sys-kernel/sabayon-sources/sabayon-sources-4.9.200.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 2004-2013 Sabayon Linux -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -K_SABKERNEL_NAME="sabayon" -K_SABKERNEL_SELF_TARBALL_NAME="sabayon" -K_ONLY_SOURCES="1" -K_SABKERNEL_FORCE_SUBLEVEL="0" -K_KERNEL_NEW_VERSIONING="1" -K_SABKERNEL_PATCH_UPSTREAM_TARBALL="1" - -inherit sabayon-kernel - -KEYWORDS="~amd64" -DESCRIPTION="Official Sabayon Linux Standard kernel sources" -RESTRICT="mirror" -IUSE="sources_standalone" - -DEPEND="${DEPEND} - sources_standalone? ( !=sys-kernel/linux-sabayon-${PVR} ) - !sources_standalone? ( =sys-kernel/linux-sabayon-${PVR} )" diff --git a/sys-kernel/sabayon-sources/sabayon-sources-4.9.201.ebuild b/sys-kernel/sabayon-sources/sabayon-sources-4.9.201.ebuild deleted file mode 100644 index aa17b6fa6..000000000 --- a/sys-kernel/sabayon-sources/sabayon-sources-4.9.201.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 2004-2013 Sabayon Linux -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -K_SABKERNEL_NAME="sabayon" -K_SABKERNEL_SELF_TARBALL_NAME="sabayon" -K_ONLY_SOURCES="1" -K_SABKERNEL_FORCE_SUBLEVEL="0" -K_KERNEL_NEW_VERSIONING="1" -K_SABKERNEL_PATCH_UPSTREAM_TARBALL="1" - -inherit sabayon-kernel - -KEYWORDS="~amd64" -DESCRIPTION="Official Sabayon Linux Standard kernel sources" -RESTRICT="mirror" -IUSE="sources_standalone" - -DEPEND="${DEPEND} - sources_standalone? ( !=sys-kernel/linux-sabayon-${PVR} ) - !sources_standalone? ( =sys-kernel/linux-sabayon-${PVR} )" diff --git a/sys-kernel/sabayon-sources/sabayon-sources-4.9.202.ebuild b/sys-kernel/sabayon-sources/sabayon-sources-4.9.202.ebuild deleted file mode 100644 index aa17b6fa6..000000000 --- a/sys-kernel/sabayon-sources/sabayon-sources-4.9.202.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 2004-2013 Sabayon Linux -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -K_SABKERNEL_NAME="sabayon" -K_SABKERNEL_SELF_TARBALL_NAME="sabayon" -K_ONLY_SOURCES="1" -K_SABKERNEL_FORCE_SUBLEVEL="0" -K_KERNEL_NEW_VERSIONING="1" -K_SABKERNEL_PATCH_UPSTREAM_TARBALL="1" - -inherit sabayon-kernel - -KEYWORDS="~amd64" -DESCRIPTION="Official Sabayon Linux Standard kernel sources" -RESTRICT="mirror" -IUSE="sources_standalone" - -DEPEND="${DEPEND} - sources_standalone? ( !=sys-kernel/linux-sabayon-${PVR} ) - !sources_standalone? ( =sys-kernel/linux-sabayon-${PVR} )" diff --git a/sys-kernel/sabayon-sources/sabayon-sources-4.9.206.ebuild b/sys-kernel/sabayon-sources/sabayon-sources-4.9.206.ebuild deleted file mode 100644 index aa17b6fa6..000000000 --- a/sys-kernel/sabayon-sources/sabayon-sources-4.9.206.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 2004-2013 Sabayon Linux -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -K_SABKERNEL_NAME="sabayon" -K_SABKERNEL_SELF_TARBALL_NAME="sabayon" -K_ONLY_SOURCES="1" -K_SABKERNEL_FORCE_SUBLEVEL="0" -K_KERNEL_NEW_VERSIONING="1" -K_SABKERNEL_PATCH_UPSTREAM_TARBALL="1" - -inherit sabayon-kernel - -KEYWORDS="~amd64" -DESCRIPTION="Official Sabayon Linux Standard kernel sources" -RESTRICT="mirror" -IUSE="sources_standalone" - -DEPEND="${DEPEND} - sources_standalone? ( !=sys-kernel/linux-sabayon-${PVR} ) - !sources_standalone? ( =sys-kernel/linux-sabayon-${PVR} )" diff --git a/sys-kernel/sabayon-sources/sabayon-sources-4.9.207.ebuild b/sys-kernel/sabayon-sources/sabayon-sources-4.9.207.ebuild deleted file mode 100644 index aa17b6fa6..000000000 --- a/sys-kernel/sabayon-sources/sabayon-sources-4.9.207.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 2004-2013 Sabayon Linux -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -K_SABKERNEL_NAME="sabayon" -K_SABKERNEL_SELF_TARBALL_NAME="sabayon" -K_ONLY_SOURCES="1" -K_SABKERNEL_FORCE_SUBLEVEL="0" -K_KERNEL_NEW_VERSIONING="1" -K_SABKERNEL_PATCH_UPSTREAM_TARBALL="1" - -inherit sabayon-kernel - -KEYWORDS="~amd64" -DESCRIPTION="Official Sabayon Linux Standard kernel sources" -RESTRICT="mirror" -IUSE="sources_standalone" - -DEPEND="${DEPEND} - sources_standalone? ( !=sys-kernel/linux-sabayon-${PVR} ) - !sources_standalone? ( =sys-kernel/linux-sabayon-${PVR} )" diff --git a/sys-kernel/sabayon-sources/sabayon-sources-4.14.153.ebuild b/sys-kernel/sabayon-sources/sabayon-sources-4.9.208.ebuild similarity index 100% rename from sys-kernel/sabayon-sources/sabayon-sources-4.14.153.ebuild rename to sys-kernel/sabayon-sources/sabayon-sources-4.9.208.ebuild diff --git a/sys-kernel/sabayon-sources/sabayon-sources-5.3.11.ebuild b/sys-kernel/sabayon-sources/sabayon-sources-5.3.11.ebuild deleted file mode 100644 index aa17b6fa6..000000000 --- a/sys-kernel/sabayon-sources/sabayon-sources-5.3.11.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 2004-2013 Sabayon Linux -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -K_SABKERNEL_NAME="sabayon" -K_SABKERNEL_SELF_TARBALL_NAME="sabayon" -K_ONLY_SOURCES="1" -K_SABKERNEL_FORCE_SUBLEVEL="0" -K_KERNEL_NEW_VERSIONING="1" -K_SABKERNEL_PATCH_UPSTREAM_TARBALL="1" - -inherit sabayon-kernel - -KEYWORDS="~amd64" -DESCRIPTION="Official Sabayon Linux Standard kernel sources" -RESTRICT="mirror" -IUSE="sources_standalone" - -DEPEND="${DEPEND} - sources_standalone? ( !=sys-kernel/linux-sabayon-${PVR} ) - !sources_standalone? ( =sys-kernel/linux-sabayon-${PVR} )" diff --git a/sys-kernel/sabayon-sources/sabayon-sources-5.3.12.ebuild b/sys-kernel/sabayon-sources/sabayon-sources-5.3.12.ebuild deleted file mode 100644 index aa17b6fa6..000000000 --- a/sys-kernel/sabayon-sources/sabayon-sources-5.3.12.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 2004-2013 Sabayon Linux -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -K_SABKERNEL_NAME="sabayon" -K_SABKERNEL_SELF_TARBALL_NAME="sabayon" -K_ONLY_SOURCES="1" -K_SABKERNEL_FORCE_SUBLEVEL="0" -K_KERNEL_NEW_VERSIONING="1" -K_SABKERNEL_PATCH_UPSTREAM_TARBALL="1" - -inherit sabayon-kernel - -KEYWORDS="~amd64" -DESCRIPTION="Official Sabayon Linux Standard kernel sources" -RESTRICT="mirror" -IUSE="sources_standalone" - -DEPEND="${DEPEND} - sources_standalone? ( !=sys-kernel/linux-sabayon-${PVR} ) - !sources_standalone? ( =sys-kernel/linux-sabayon-${PVR} )" diff --git a/sys-kernel/sabayon-sources/sabayon-sources-5.3.15.ebuild b/sys-kernel/sabayon-sources/sabayon-sources-5.3.15.ebuild deleted file mode 100644 index aa17b6fa6..000000000 --- a/sys-kernel/sabayon-sources/sabayon-sources-5.3.15.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 2004-2013 Sabayon Linux -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -K_SABKERNEL_NAME="sabayon" -K_SABKERNEL_SELF_TARBALL_NAME="sabayon" -K_ONLY_SOURCES="1" -K_SABKERNEL_FORCE_SUBLEVEL="0" -K_KERNEL_NEW_VERSIONING="1" -K_SABKERNEL_PATCH_UPSTREAM_TARBALL="1" - -inherit sabayon-kernel - -KEYWORDS="~amd64" -DESCRIPTION="Official Sabayon Linux Standard kernel sources" -RESTRICT="mirror" -IUSE="sources_standalone" - -DEPEND="${DEPEND} - sources_standalone? ( !=sys-kernel/linux-sabayon-${PVR} ) - !sources_standalone? ( =sys-kernel/linux-sabayon-${PVR} )" diff --git a/sys-kernel/sabayon-sources/sabayon-sources-5.3.16.ebuild b/sys-kernel/sabayon-sources/sabayon-sources-5.3.16.ebuild deleted file mode 100644 index aa17b6fa6..000000000 --- a/sys-kernel/sabayon-sources/sabayon-sources-5.3.16.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 2004-2013 Sabayon Linux -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -K_SABKERNEL_NAME="sabayon" -K_SABKERNEL_SELF_TARBALL_NAME="sabayon" -K_ONLY_SOURCES="1" -K_SABKERNEL_FORCE_SUBLEVEL="0" -K_KERNEL_NEW_VERSIONING="1" -K_SABKERNEL_PATCH_UPSTREAM_TARBALL="1" - -inherit sabayon-kernel - -KEYWORDS="~amd64" -DESCRIPTION="Official Sabayon Linux Standard kernel sources" -RESTRICT="mirror" -IUSE="sources_standalone" - -DEPEND="${DEPEND} - sources_standalone? ( !=sys-kernel/linux-sabayon-${PVR} ) - !sources_standalone? ( =sys-kernel/linux-sabayon-${PVR} )" diff --git a/sys-kernel/sabayon-sources/sabayon-sources-5.3.17.ebuild b/sys-kernel/sabayon-sources/sabayon-sources-5.3.17.ebuild deleted file mode 100644 index aa17b6fa6..000000000 --- a/sys-kernel/sabayon-sources/sabayon-sources-5.3.17.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 2004-2013 Sabayon Linux -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -K_SABKERNEL_NAME="sabayon" -K_SABKERNEL_SELF_TARBALL_NAME="sabayon" -K_ONLY_SOURCES="1" -K_SABKERNEL_FORCE_SUBLEVEL="0" -K_KERNEL_NEW_VERSIONING="1" -K_SABKERNEL_PATCH_UPSTREAM_TARBALL="1" - -inherit sabayon-kernel - -KEYWORDS="~amd64" -DESCRIPTION="Official Sabayon Linux Standard kernel sources" -RESTRICT="mirror" -IUSE="sources_standalone" - -DEPEND="${DEPEND} - sources_standalone? ( !=sys-kernel/linux-sabayon-${PVR} ) - !sources_standalone? ( =sys-kernel/linux-sabayon-${PVR} )" diff --git a/sys-kernel/sabayon-sources/sabayon-sources-5.3.18.ebuild b/sys-kernel/sabayon-sources/sabayon-sources-5.3.18.ebuild deleted file mode 100644 index aa17b6fa6..000000000 --- a/sys-kernel/sabayon-sources/sabayon-sources-5.3.18.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 2004-2013 Sabayon Linux -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -K_SABKERNEL_NAME="sabayon" -K_SABKERNEL_SELF_TARBALL_NAME="sabayon" -K_ONLY_SOURCES="1" -K_SABKERNEL_FORCE_SUBLEVEL="0" -K_KERNEL_NEW_VERSIONING="1" -K_SABKERNEL_PATCH_UPSTREAM_TARBALL="1" - -inherit sabayon-kernel - -KEYWORDS="~amd64" -DESCRIPTION="Official Sabayon Linux Standard kernel sources" -RESTRICT="mirror" -IUSE="sources_standalone" - -DEPEND="${DEPEND} - sources_standalone? ( !=sys-kernel/linux-sabayon-${PVR} ) - !sources_standalone? ( =sys-kernel/linux-sabayon-${PVR} )" diff --git a/sys-kernel/sabayon-sources/sabayon-sources-5.3.ebuild b/sys-kernel/sabayon-sources/sabayon-sources-5.3.ebuild deleted file mode 100644 index aa17b6fa6..000000000 --- a/sys-kernel/sabayon-sources/sabayon-sources-5.3.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 2004-2013 Sabayon Linux -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -K_SABKERNEL_NAME="sabayon" -K_SABKERNEL_SELF_TARBALL_NAME="sabayon" -K_ONLY_SOURCES="1" -K_SABKERNEL_FORCE_SUBLEVEL="0" -K_KERNEL_NEW_VERSIONING="1" -K_SABKERNEL_PATCH_UPSTREAM_TARBALL="1" - -inherit sabayon-kernel - -KEYWORDS="~amd64" -DESCRIPTION="Official Sabayon Linux Standard kernel sources" -RESTRICT="mirror" -IUSE="sources_standalone" - -DEPEND="${DEPEND} - sources_standalone? ( !=sys-kernel/linux-sabayon-${PVR} ) - !sources_standalone? ( =sys-kernel/linux-sabayon-${PVR} )" diff --git a/sys-kernel/sabayon-sources/sabayon-sources-5.4.1.ebuild b/sys-kernel/sabayon-sources/sabayon-sources-5.4.1.ebuild deleted file mode 100644 index aa17b6fa6..000000000 --- a/sys-kernel/sabayon-sources/sabayon-sources-5.4.1.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 2004-2013 Sabayon Linux -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -K_SABKERNEL_NAME="sabayon" -K_SABKERNEL_SELF_TARBALL_NAME="sabayon" -K_ONLY_SOURCES="1" -K_SABKERNEL_FORCE_SUBLEVEL="0" -K_KERNEL_NEW_VERSIONING="1" -K_SABKERNEL_PATCH_UPSTREAM_TARBALL="1" - -inherit sabayon-kernel - -KEYWORDS="~amd64" -DESCRIPTION="Official Sabayon Linux Standard kernel sources" -RESTRICT="mirror" -IUSE="sources_standalone" - -DEPEND="${DEPEND} - sources_standalone? ( !=sys-kernel/linux-sabayon-${PVR} ) - !sources_standalone? ( =sys-kernel/linux-sabayon-${PVR} )" diff --git a/sys-kernel/sabayon-sources/sabayon-sources-5.4.2.ebuild b/sys-kernel/sabayon-sources/sabayon-sources-5.4.2.ebuild deleted file mode 100644 index aa17b6fa6..000000000 --- a/sys-kernel/sabayon-sources/sabayon-sources-5.4.2.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 2004-2013 Sabayon Linux -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -K_SABKERNEL_NAME="sabayon" -K_SABKERNEL_SELF_TARBALL_NAME="sabayon" -K_ONLY_SOURCES="1" -K_SABKERNEL_FORCE_SUBLEVEL="0" -K_KERNEL_NEW_VERSIONING="1" -K_SABKERNEL_PATCH_UPSTREAM_TARBALL="1" - -inherit sabayon-kernel - -KEYWORDS="~amd64" -DESCRIPTION="Official Sabayon Linux Standard kernel sources" -RESTRICT="mirror" -IUSE="sources_standalone" - -DEPEND="${DEPEND} - sources_standalone? ( !=sys-kernel/linux-sabayon-${PVR} ) - !sources_standalone? ( =sys-kernel/linux-sabayon-${PVR} )" diff --git a/sys-kernel/sabayon-sources/sabayon-sources-5.4.3.ebuild b/sys-kernel/sabayon-sources/sabayon-sources-5.4.3.ebuild deleted file mode 100644 index aa17b6fa6..000000000 --- a/sys-kernel/sabayon-sources/sabayon-sources-5.4.3.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 2004-2013 Sabayon Linux -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -K_SABKERNEL_NAME="sabayon" -K_SABKERNEL_SELF_TARBALL_NAME="sabayon" -K_ONLY_SOURCES="1" -K_SABKERNEL_FORCE_SUBLEVEL="0" -K_KERNEL_NEW_VERSIONING="1" -K_SABKERNEL_PATCH_UPSTREAM_TARBALL="1" - -inherit sabayon-kernel - -KEYWORDS="~amd64" -DESCRIPTION="Official Sabayon Linux Standard kernel sources" -RESTRICT="mirror" -IUSE="sources_standalone" - -DEPEND="${DEPEND} - sources_standalone? ( !=sys-kernel/linux-sabayon-${PVR} ) - !sources_standalone? ( =sys-kernel/linux-sabayon-${PVR} )" diff --git a/sys-kernel/sabayon-sources/sabayon-sources-4.14.154.ebuild b/sys-kernel/sabayon-sources/sabayon-sources-5.4.7.ebuild similarity index 100% rename from sys-kernel/sabayon-sources/sabayon-sources-4.14.154.ebuild rename to sys-kernel/sabayon-sources/sabayon-sources-5.4.7.ebuild diff --git a/sys-kernel/sabayon-sources/sabayon-sources-4.14.155.ebuild b/sys-kernel/sabayon-sources/sabayon-sources-5.4.8.ebuild similarity index 100% rename from sys-kernel/sabayon-sources/sabayon-sources-4.14.155.ebuild rename to sys-kernel/sabayon-sources/sabayon-sources-5.4.8.ebuild diff --git a/sys-kernel/sabayon-sources/sabayon-sources-5.4.ebuild b/sys-kernel/sabayon-sources/sabayon-sources-5.4.ebuild deleted file mode 100644 index aa17b6fa6..000000000 --- a/sys-kernel/sabayon-sources/sabayon-sources-5.4.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 2004-2013 Sabayon Linux -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -K_SABKERNEL_NAME="sabayon" -K_SABKERNEL_SELF_TARBALL_NAME="sabayon" -K_ONLY_SOURCES="1" -K_SABKERNEL_FORCE_SUBLEVEL="0" -K_KERNEL_NEW_VERSIONING="1" -K_SABKERNEL_PATCH_UPSTREAM_TARBALL="1" - -inherit sabayon-kernel - -KEYWORDS="~amd64" -DESCRIPTION="Official Sabayon Linux Standard kernel sources" -RESTRICT="mirror" -IUSE="sources_standalone" - -DEPEND="${DEPEND} - sources_standalone? ( !=sys-kernel/linux-sabayon-${PVR} ) - !sources_standalone? ( =sys-kernel/linux-sabayon-${PVR} )" diff --git a/www-client/firefox-l10n-ach/Manifest b/www-client/firefox-l10n-ach/Manifest index 9540c5a77..c600ace10 100644 --- a/www-client/firefox-l10n-ach/Manifest +++ b/www-client/firefox-l10n-ach/Manifest @@ -1 +1 @@ -DIST firefox-71.0-ach.xpi 484887 BLAKE2B 197cb8a6be2d37d9f1bf2c5517e66265792e44b951af8476401cd5e81665cbb9c4a57f626a54226dcd38c55bf677dccd93ebb3baf214feebeee278a133b17e7b SHA512 c9c640d57ac5d09ebbd1a971f67297ebca72af2a62ccb64f0627bfbd80740d1a741549a453488478e72323c15e7b9ba16d7d52f84b73fb856af390f7fce5614c +DIST firefox-72.0.1-ach.xpi 489378 BLAKE2B ba4efe114e3db8bc7a5302d7cfc98482b29b105c853db7ca961e18e09774ffba03194dd0ae944ffc561df2bb62c44aad9a41c7b9b075a7e973ba2e54f2f94288 SHA512 fca7803a18dad67902de2251b9d4892c45b4861de40437c9e3aaae8d749fcea8503df670e07432a8acc08370230bad7ddc51878cda6d89ee52ef103f0e8ee163 diff --git a/www-client/firefox-l10n-ach/firefox-l10n-ach-71.0.ebuild b/www-client/firefox-l10n-ach/firefox-l10n-ach-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-ach/firefox-l10n-ach-71.0.ebuild rename to www-client/firefox-l10n-ach/firefox-l10n-ach-72.0.1.ebuild diff --git a/www-client/firefox-l10n-af/Manifest b/www-client/firefox-l10n-af/Manifest index 0aba8a4bd..96a7d6466 100644 --- a/www-client/firefox-l10n-af/Manifest +++ b/www-client/firefox-l10n-af/Manifest @@ -1 +1 @@ -DIST firefox-71.0-af.xpi 444403 BLAKE2B c43aa30af52b5694667fdfbc7371ab888214ed5ec74411cc3b09e2596664c31cea0168adf99c3e010323b7af1fda94799e35752ba09ce83829aac0ea4ab151ef SHA512 207d1cb4f98557eeb1010618769496542bf383508f7ff6512268958b1d37b29ffd99bfd3409d6cebd56a21e562c50db66db0ac6cc1549daa9cf1a953ebbfbe9d +DIST firefox-72.0.1-af.xpi 446528 BLAKE2B 28f4467bb5b4b189eec4d4a55789af65977b11006673f02058ab9e8606452a81adf0d645466699672f2b1f23b1eebec6d2f59c9f3d4aae6f69d9dfc4473036a4 SHA512 d3959fdab50e22ece1402d5d27ec8bdbc67010aa9298996202e3a3aa2270c97bd967e9feca50dffd65f7a04e75c0712b5af5fc6a1b42382101dbc9000b83dbd2 diff --git a/www-client/firefox-l10n-af/firefox-l10n-af-71.0.ebuild b/www-client/firefox-l10n-af/firefox-l10n-af-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-af/firefox-l10n-af-71.0.ebuild rename to www-client/firefox-l10n-af/firefox-l10n-af-72.0.1.ebuild diff --git a/www-client/firefox-l10n-an/Manifest b/www-client/firefox-l10n-an/Manifest index 317625c6f..828d70fbe 100644 --- a/www-client/firefox-l10n-an/Manifest +++ b/www-client/firefox-l10n-an/Manifest @@ -1 +1 @@ -DIST firefox-71.0-an.xpi 493802 BLAKE2B 55eb11801907854d9092684904adafab638602cfdc71ba17e550442efe60285ae880a91646c52a868586bb939197772f1c615bb90af2039b48614130ffcbd8a8 SHA512 28c659b13ad84aa3d17fce5a760f6298a50ebc3d7b21636ce87b0623ebcd6af169da19c60075c681b38be674401633744358da789b29c3d4513e711cdac427c7 +DIST firefox-72.0.1-an.xpi 498522 BLAKE2B c97705094af4f7d4b9ff1ec62e8ad5af56a4133aa53298f37051540368ac60c2a0514cb45d7afffdbb1bcd95023a4584a07b07149f2fa5e2b55072607c39f5cc SHA512 da8a95ae8474563e791bf9a6fd4b20475669712db72e19b342dac6d456df6d8887e746400c218c73d7b868c3599a3788ae4b991058c035be6f6750b2f50564f6 diff --git a/www-client/firefox-l10n-an/firefox-l10n-an-71.0.ebuild b/www-client/firefox-l10n-an/firefox-l10n-an-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-an/firefox-l10n-an-71.0.ebuild rename to www-client/firefox-l10n-an/firefox-l10n-an-72.0.1.ebuild diff --git a/www-client/firefox-l10n-ar/Manifest b/www-client/firefox-l10n-ar/Manifest index 8e0b6716e..d8acbbc15 100644 --- a/www-client/firefox-l10n-ar/Manifest +++ b/www-client/firefox-l10n-ar/Manifest @@ -1 +1 @@ -DIST firefox-71.0-ar.xpi 556346 BLAKE2B f5228bcd2ad0efda95ab45a08534c4f645654b0d3a5ab9e326cd1765aa026b214bcffcaa9146a79235671afce58c05911fb00e807689dbdef94df6639cdaf757 SHA512 919d9d811b9aa567d473f7b2a1bdc3042c94e532fe22f0041c5fbdb0141b04bd693c5ff629765c1df4c4ec447c181c56b8b5cb60e163a087c137e6cbe38a3287 +DIST firefox-72.0.1-ar.xpi 562875 BLAKE2B 8762bedc71f3db39391537aa8f5b36dd12d950a64a46289d8a0d38e782502ce8b5d7971b5538ae57e3fe3a45d1ced17b635f04cfaceffdb8332299f069f0f715 SHA512 0b6914db5dabe7ae92b379d5090da7dd4a6e896f1517b54af2545ada627929aa008e17bdf04e7ccee54c93216d8d5b4dcb0cf5450e5150c4a131d82eeef32a82 diff --git a/www-client/firefox-l10n-ar/firefox-l10n-ar-71.0.ebuild b/www-client/firefox-l10n-ar/firefox-l10n-ar-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-ar/firefox-l10n-ar-71.0.ebuild rename to www-client/firefox-l10n-ar/firefox-l10n-ar-72.0.1.ebuild diff --git a/www-client/firefox-l10n-ast/Manifest b/www-client/firefox-l10n-ast/Manifest index c43999d97..b98d88ffa 100644 --- a/www-client/firefox-l10n-ast/Manifest +++ b/www-client/firefox-l10n-ast/Manifest @@ -1 +1 @@ -DIST firefox-71.0-ast.xpi 491415 BLAKE2B 081d14c20e145901a141a2b2428b425211189e7b110579b721b311d89bc45663890c2dec8f529403b9f30f9ad3b27888e8a8fc097170d6113aaecd9c538d04e0 SHA512 2e4723b0e7966217c059d6cd68b21e3aafe416678d8590fa53b4500981903c59e644b038b3327994834cc65f386b2d0e14cf67bfa61fbd80056efb47cddb7864 +DIST firefox-72.0.1-ast.xpi 494009 BLAKE2B b39fb3235063368328e45d799c3889b18ab052c990ac48b38ffa4f58059495a93dbd3821a8ec38a0d081502e8bdaa26f8d39b05f87b0843fd06cc751abf68546 SHA512 3098bac094d70824e5263eafadd30fefd283e08f5db54e6760865d3427eda70340ff50b032daf7f483ec6f248eff5a158cc669b37196e8e3c8361ccb22a050b6 diff --git a/www-client/firefox-l10n-ast/firefox-l10n-ast-71.0.ebuild b/www-client/firefox-l10n-ast/firefox-l10n-ast-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-ast/firefox-l10n-ast-71.0.ebuild rename to www-client/firefox-l10n-ast/firefox-l10n-ast-72.0.1.ebuild diff --git a/www-client/firefox-l10n-az/Manifest b/www-client/firefox-l10n-az/Manifest index 2ae9a60b3..ec285ffac 100644 --- a/www-client/firefox-l10n-az/Manifest +++ b/www-client/firefox-l10n-az/Manifest @@ -1 +1 @@ -DIST firefox-71.0-az.xpi 523562 BLAKE2B a3ccbeebad27fa3a631c606a08856e25079f8baf3921cf06d80a15dd7e1e4b461b9a4be423672f71aa48f45ccb110535c15826f4d93c69c851c384e2585bb758 SHA512 2766fd3ee327552d93505f81fe9398f0fea679aac7a0314c73a1f31a38798083ba53e515b4521e7c5336b2301f2d8426dd5e17ab5f7427ea41a7b94a43642d32 +DIST firefox-72.0.1-az.xpi 525922 BLAKE2B d6fdc9c27d19a0a480d8fe3bc3afdbb5b35d8852d36ce722aaff5b823547f7fbeb2fcc34a69ba0d7930d9982e682e6074a7a983902ce475476e3bb26dc4d75b0 SHA512 0427173a9a62a415b161be3e7db1a7b0148eefd555647d947c964c53629bcfb1100273915c97422aaaca3fffc4be921d858c7314134a2c001fac88c657b117de diff --git a/www-client/firefox-l10n-az/firefox-l10n-az-71.0.ebuild b/www-client/firefox-l10n-az/firefox-l10n-az-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-az/firefox-l10n-az-71.0.ebuild rename to www-client/firefox-l10n-az/firefox-l10n-az-72.0.1.ebuild diff --git a/www-client/firefox-l10n-be/Manifest b/www-client/firefox-l10n-be/Manifest index 5deb11c25..d242be84f 100644 --- a/www-client/firefox-l10n-be/Manifest +++ b/www-client/firefox-l10n-be/Manifest @@ -1 +1 @@ -DIST firefox-71.0-be.xpi 617161 BLAKE2B fd53af1589067a097317795601f5a49c1cf524db26ce656c4beee647bf2dcbd929f389fee4dd9372f30c625c3f5550af5e32d53a3382b0bbe6d7aa9599d62999 SHA512 53f4284da880e3e52b38703a17eb8c3913efa7e4280b75176839f1739055883e7c924da5f39ab26f6e2538a891b6af9c2705c8c5eb80214f1eb1eee7b7f9234d +DIST firefox-72.0.1-be.xpi 620197 BLAKE2B 6ee3bbbe2b7b5c2c26aad3987162068b4b7183c835f703af4c8774867dab5a24e0ff65f2631f53cca7077b2fbb11a4455e79421415c105d30d881c4ba9ac96b1 SHA512 6da456ff7580393d9efee7508bfb3f2e59fcfc419d098b441ddc8b33402d4ca08253d36d3afe9b9bbfb02fb7845ffd3a4a743a3911a4bdca6b9604d02381f149 diff --git a/www-client/firefox-l10n-be/firefox-l10n-be-71.0.ebuild b/www-client/firefox-l10n-be/firefox-l10n-be-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-be/firefox-l10n-be-71.0.ebuild rename to www-client/firefox-l10n-be/firefox-l10n-be-72.0.1.ebuild diff --git a/www-client/firefox-l10n-bg/Manifest b/www-client/firefox-l10n-bg/Manifest index a31af0008..6e5825a82 100644 --- a/www-client/firefox-l10n-bg/Manifest +++ b/www-client/firefox-l10n-bg/Manifest @@ -1 +1 @@ -DIST firefox-71.0-bg.xpi 577531 BLAKE2B 1fc72c82365758fb0b83edcadc2f97759240a21179bbf9c8d4c9ba3bbba947d8691cb8efaae8e5aba4287b75c190e31ab3ac1e65f27f0027233418e37e01bf8d SHA512 ada68bd85bcf88c9930678cce015d0d18ab7699f3b1b33ed269e55ac12f3738784e63adb97f9e0df44ff293e91999abd5a0b86995dd7c0ce4798a4d943ddc3da +DIST firefox-72.0.1-bg.xpi 580994 BLAKE2B 323f660460bf8f34ae1c4bf9d8dd3fafc74841dcd0e1dccf3fec0043f3c4f4f91c10f1f719d582d541d0eb7f8715733a9c90f3568809856c5bd828ec2e689a5e SHA512 66281ccc08dbc1fa6b1d586b70da68b3e333b4d759a10b17a48785d75e11763a677000b43159333aed0f37c0f38e2d80b8fb795be6611ff5defd1c6f27fc8f9a diff --git a/www-client/firefox-l10n-bg/firefox-l10n-bg-71.0.ebuild b/www-client/firefox-l10n-bg/firefox-l10n-bg-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-bg/firefox-l10n-bg-71.0.ebuild rename to www-client/firefox-l10n-bg/firefox-l10n-bg-72.0.1.ebuild diff --git a/www-client/firefox-l10n-bn/Manifest b/www-client/firefox-l10n-bn/Manifest index 9213b0683..4725c7f4b 100644 --- a/www-client/firefox-l10n-bn/Manifest +++ b/www-client/firefox-l10n-bn/Manifest @@ -1 +1 @@ -DIST firefox-71.0-bn.xpi 611315 BLAKE2B 941ff635d6812485148d2dcb614d301ae6a74e29969a53cf307bd6f8fd7dd4cd8766bffa53b43b2b2a6bf4319ef00bcb19037c318c9a7d4a540d6cd8f192ada3 SHA512 c0a66b87a516fd32deb86f2b2fd01467e524264f86edafe866ec2c170a5c2890a1d1dcf141a933957c77d56f14737f30bf3571e3d9e3786b964471707761b61d +DIST firefox-72.0.1-bn.xpi 616409 BLAKE2B e1b223d0607080156a2a0af9aa915e6891cd10ec5b5ef0718940e84d4ec5851fc37d2d8765cb88e86a603c1a47d9bbabd7558ad5d200f7488d36fa49c7cb434a SHA512 98908ac3077bbf94b739ad5b4d59e7b5195b512db3ab204115d3324d10420e172772d61726b90eae18844b47d3e51dc4cc1ddbf4a67f12faebefe97617c64074 diff --git a/www-client/firefox-l10n-bn/firefox-l10n-bn-71.0.ebuild b/www-client/firefox-l10n-bn/firefox-l10n-bn-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-bn/firefox-l10n-bn-71.0.ebuild rename to www-client/firefox-l10n-bn/firefox-l10n-bn-72.0.1.ebuild diff --git a/www-client/firefox-l10n-br/Manifest b/www-client/firefox-l10n-br/Manifest index dda95d5c3..76cde552a 100644 --- a/www-client/firefox-l10n-br/Manifest +++ b/www-client/firefox-l10n-br/Manifest @@ -1 +1 @@ -DIST firefox-71.0-br.xpi 524590 BLAKE2B 3e53224c84af2d5a7b22a75d547f96ca9c64b02077525b27de27a1c22089766080b39596a7eeff246bc57c17c75326bf1e9051cd0fce48c4fe842b83b07b3044 SHA512 33c982688c6002e706eacc37562ca08cfe5653f7cf01144cc37680796a34fe1bd31e35adc828948403712ffd93e1edb5614e56d5c662d0e7b133ba9482e80ae8 +DIST firefox-72.0.1-br.xpi 529064 BLAKE2B b962b56c8b64011f2c589ec22d4cb36e7e55518821505ac55a6477f135cd323ecec7296943c822a560cc3c1160ac1015c42f3979f4d584e198228245e417ad04 SHA512 d838e08e3d6c3f002924e7b3ead0f38a7aa65182a63ec4a1a5bef2a326f2a3a64e15b40aa87c8931d27f38f09e2e79a819df053bde00333603de7d9c29189a13 diff --git a/www-client/firefox-l10n-br/firefox-l10n-br-71.0.ebuild b/www-client/firefox-l10n-br/firefox-l10n-br-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-br/firefox-l10n-br-71.0.ebuild rename to www-client/firefox-l10n-br/firefox-l10n-br-72.0.1.ebuild diff --git a/www-client/firefox-l10n-bs/Manifest b/www-client/firefox-l10n-bs/Manifest index 2f0fee002..a68f2d071 100644 --- a/www-client/firefox-l10n-bs/Manifest +++ b/www-client/firefox-l10n-bs/Manifest @@ -1 +1 @@ -DIST firefox-71.0-bs.xpi 493905 BLAKE2B a25776aff74e13c33ae791495ccc580944abc9d00decba35843592fafddf8ae6e1aed4ea576d103963364d3fcc80af18cbb3d601b1231e3d73e6f0d0f691474d SHA512 be820b2052ee903f5fb0b37638ee366993383f4af48436bdb346bd4e8b76c52e74785abdffd18c325e8f4f5adf56575cdf6dc452d1a3be13fa9f769ea1ab2418 +DIST firefox-72.0.1-bs.xpi 498281 BLAKE2B 7b248702a0f9ebae8cd0ecc60eb6d87c8d2471dd0f35630eb421ffc6b216bc983968bce64e2e79d0866ba354906a9228e4f2abfc72a42c3254a8726376a71f15 SHA512 523d0c41610b1d76b91a7b4ee2ffd89d3a10e24f1c49518004b5f430a5c740c62ff86f1689e44c6d7acdaf70ed4776c2b9ad3834eef4ab51d9905adc0a405fee diff --git a/www-client/firefox-l10n-bs/firefox-l10n-bs-71.0.ebuild b/www-client/firefox-l10n-bs/firefox-l10n-bs-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-bs/firefox-l10n-bs-71.0.ebuild rename to www-client/firefox-l10n-bs/firefox-l10n-bs-72.0.1.ebuild diff --git a/www-client/firefox-l10n-ca/Manifest b/www-client/firefox-l10n-ca/Manifest index 19bd4f4bd..f77477923 100644 --- a/www-client/firefox-l10n-ca/Manifest +++ b/www-client/firefox-l10n-ca/Manifest @@ -1 +1 @@ -DIST firefox-71.0-ca.xpi 529757 BLAKE2B c42370312ab45fdda11c3f8c13b4ed945550eca5c5482ec19d136dc04cc25264b8d37cb276ad72346688658939423acb160c6c8844bc8c5fd2b49f969956a805 SHA512 a1b2fd534b76282bcec2834089fe26f76f89c8f35aaec15793e976b32f971074ad12f8c253f1480cf389dc1ac954ed40427efdfc6d6717194136c9d5018d7749 +DIST firefox-72.0.1-ca.xpi 532668 BLAKE2B 16dd95831f9c2d7b94ff96bdadfdc3028c4cee3e3dcd02076531b3380c13c56a1375108b827726c2595f922839c97e32a88b3683d6d23ebdec06bbdc33e22448 SHA512 ed10746165d3118343e2acedde0127e3dcd9db80a793316c484ff2a33824f87662f2e99a8d1942ebf2bb5cb5f7006543b19b1a9882ba7b444ffabeacea1eafb7 diff --git a/www-client/firefox-l10n-ca/firefox-l10n-ca-71.0.ebuild b/www-client/firefox-l10n-ca/firefox-l10n-ca-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-ca/firefox-l10n-ca-71.0.ebuild rename to www-client/firefox-l10n-ca/firefox-l10n-ca-72.0.1.ebuild diff --git a/www-client/firefox-l10n-cak/Manifest b/www-client/firefox-l10n-cak/Manifest index 9fa938e41..ea892f4ea 100644 --- a/www-client/firefox-l10n-cak/Manifest +++ b/www-client/firefox-l10n-cak/Manifest @@ -1 +1 @@ -DIST firefox-71.0-cak.xpi 558789 BLAKE2B 407c7f18a503c4fa3cfabaea3e33a0d562ee023098246adff32b59c6b904010d76177bbc064c7cfec6af4c08e16202d6d5074dc668fd64dbcaffd91a86a402b6 SHA512 f509161da3e4051f41d41be27670e684082e982db2d8e5954749bd822ce635a3f704c01a668f843f854309a4e38d77735bb64a9956589fc12663e5b1491021a1 +DIST firefox-72.0.1-cak.xpi 561998 BLAKE2B d44317ca9cff0c21dc15fd411fa79a8f783b3dfaed04182de31cdf9e5a5c7a02cddffb68c7f231861c83fedbeb5ec854e18170fe8409bb6afdc2bb7aa3b45018 SHA512 e2502797cdfd03d94e4139933750cd9395eb58f7780c5abe2c0c1c23c0bea1cee7623ac574f555b9dd2f70d14d9cdb3b42b32b54ab17f2c46ac544462a8d1526 diff --git a/www-client/firefox-l10n-cak/firefox-l10n-cak-71.0.ebuild b/www-client/firefox-l10n-cak/firefox-l10n-cak-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-cak/firefox-l10n-cak-71.0.ebuild rename to www-client/firefox-l10n-cak/firefox-l10n-cak-72.0.1.ebuild diff --git a/www-client/firefox-l10n-cs/Manifest b/www-client/firefox-l10n-cs/Manifest index e8319758d..d669a5e4a 100644 --- a/www-client/firefox-l10n-cs/Manifest +++ b/www-client/firefox-l10n-cs/Manifest @@ -1 +1 @@ -DIST firefox-71.0-cs.xpi 550385 BLAKE2B a2919887bfde5917db0b676d5e18407f65fc79afb4b93db97be1bdd511e49c18ca244b5e2efc94c65698fec7371296469f66e7965c6331f47911c33fc33821f7 SHA512 3f972a4c665620a12cb5ed05c63e05074d3d1d36bf89551e78b3abbe5cb8c6b238adfd3f3b0c70885196761d6733bb2f62721c0aa01523a1906d7bdc43130d22 +DIST firefox-72.0.1-cs.xpi 556343 BLAKE2B 399b72b62bb5a488ed133f882157fc3284c77de554e922bcea01e921cc285aae6ced0fa2bac134b50841c2e298203adf8cbfbc791611120cc1cd097d473819df SHA512 37b3aa4b857f6f5cfa64eba55a7c42b4c7ef644192517113242f90815497372e49acd5d516ed769a95ac89749597901d2ea6781dd242f85bd2691a7a198948e4 diff --git a/www-client/firefox-l10n-cs/firefox-l10n-cs-71.0.ebuild b/www-client/firefox-l10n-cs/firefox-l10n-cs-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-cs/firefox-l10n-cs-71.0.ebuild rename to www-client/firefox-l10n-cs/firefox-l10n-cs-72.0.1.ebuild diff --git a/www-client/firefox-l10n-cy/Manifest b/www-client/firefox-l10n-cy/Manifest index 27781c5f1..b07292ecf 100644 --- a/www-client/firefox-l10n-cy/Manifest +++ b/www-client/firefox-l10n-cy/Manifest @@ -1 +1 @@ -DIST firefox-71.0-cy.xpi 535332 BLAKE2B 37917354e3f252a69e4ef86e959d61a884874bc84827ee55013504eae4b1a5bef3b02a86e3729ff4e2a1715826ca29c5dc1451c7a94c815e9a11784eb74f35a1 SHA512 312751d0653fbae6902f9d138c12f4bde64ad04adacb92246a97713bb3ffc43906fc28b7fbcf8fd23d0cc3227c78cf4256af091539a1e8f1cb37843389892796 +DIST firefox-72.0.1-cy.xpi 538330 BLAKE2B b2582eda477a8823a608b453032baacee8884c991b733964d7b72931a1d9ced333a57fc130099e3e37ff244624e79176613160a9b00c266fa0f54639b3bb8755 SHA512 4809f5842058bcefe2d81443af6c9e87e4fa824847d92aa440ac6e61acb83cb9f888f82c5a9e0ef56693919fa9aee37d47690c1321ea2dfd49bec92ca7e5cb80 diff --git a/www-client/firefox-l10n-cy/firefox-l10n-cy-71.0.ebuild b/www-client/firefox-l10n-cy/firefox-l10n-cy-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-cy/firefox-l10n-cy-71.0.ebuild rename to www-client/firefox-l10n-cy/firefox-l10n-cy-72.0.1.ebuild diff --git a/www-client/firefox-l10n-da/Manifest b/www-client/firefox-l10n-da/Manifest index 7163ac4c5..3228b91da 100644 --- a/www-client/firefox-l10n-da/Manifest +++ b/www-client/firefox-l10n-da/Manifest @@ -1 +1 @@ -DIST firefox-71.0-da.xpi 518337 BLAKE2B 2aa1811bcb43eb2be433806ad89c2d25abfaec0bfb4e2ce5ef7db90dab88f1783e4d4f54d2a9e13d2dc6e2eb16acb76fa818bbfebd74eb03b130fe3072a3b1ea SHA512 f6ed8cd0a7465c4f29d0656ccf20ed9b5f254b46a4fecf43839aa94eef3dc90d9f9f6ad9928a1cf1e1ec303ca91fe5f3e6f0c3922aa24c70aae0181d29b63626 +DIST firefox-72.0.1-da.xpi 522280 BLAKE2B 997c901be0dbb4acc3c41b102292142efa56b79c51317e4f06d4aa2a9827d0ba942de036bee5060916728a5c5140552f3d427b6caedd0adbbce846755d29b892 SHA512 aab169282267d6a955da387c4c87f159372d3d71b3784dfab73c085972c4aa4390a7ced8bf9eaa41bd4e38d84457a488846a12382a5b3d31a3e4f29887793c87 diff --git a/www-client/firefox-l10n-da/firefox-l10n-da-71.0.ebuild b/www-client/firefox-l10n-da/firefox-l10n-da-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-da/firefox-l10n-da-71.0.ebuild rename to www-client/firefox-l10n-da/firefox-l10n-da-72.0.1.ebuild diff --git a/www-client/firefox-l10n-de/Manifest b/www-client/firefox-l10n-de/Manifest index 7754e1163..e6a98cabd 100644 --- a/www-client/firefox-l10n-de/Manifest +++ b/www-client/firefox-l10n-de/Manifest @@ -1 +1 @@ -DIST firefox-71.0-de.xpi 550052 BLAKE2B b8e8d5f28ea2dc38e61060a2006e36c301d91945422432543476a9889789f7b323652a445e2bb790bd2d8fe266ed0cc32d26ed23e2e782ec362baf7779258819 SHA512 2ddfabb4845616467f434586c017bfd30dec20b2dcc7935de3f8b71019262c4e9d973a995edd6edfd8c71c9e491d2a39f2074162cc7a96e0e8396f4cf36bc822 +DIST firefox-72.0.1-de.xpi 553568 BLAKE2B 7a48f445cfcc69c3185c0159af6281bb7d31eeb00a56cd5efc1953bf34c73c00ecd7dd9996bf4b5fa5b9c9016d2a23a71bf22ca5fb14b01208587f698dfa0059 SHA512 27a6c5a574c7fea8b3e8b792666259f1c4eea5d0c25aed21d6402b34d83d7a1e4126e1c81a6e8b7ecf24c0c4c2f9b3e466262832c5c3d3b6781271d5685b3bff diff --git a/www-client/firefox-l10n-de/firefox-l10n-de-71.0.ebuild b/www-client/firefox-l10n-de/firefox-l10n-de-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-de/firefox-l10n-de-71.0.ebuild rename to www-client/firefox-l10n-de/firefox-l10n-de-72.0.1.ebuild diff --git a/www-client/firefox-l10n-dsb/Manifest b/www-client/firefox-l10n-dsb/Manifest index fbdc357d4..52c655d0e 100644 --- a/www-client/firefox-l10n-dsb/Manifest +++ b/www-client/firefox-l10n-dsb/Manifest @@ -1 +1 @@ -DIST firefox-71.0-dsb.xpi 559392 BLAKE2B c61beac29f95a4d7c5cf102619e8c64fe49fd1b1977f8d6ea9d78d679760400888befc84afe7305c384892a51992eb61a01ae1489f1c8889eef6475178df28e4 SHA512 280ef04b4f150d5e41d13fbf1583bba6715f95205a7b9528be4b1fcbae1cb28060da3a75f07402ded5beac536a38d51bc1f6612388035d1735f2c1af6e316cc6 +DIST firefox-72.0.1-dsb.xpi 564094 BLAKE2B 1e476823b9b31dd73e3325a487a761acaada0337f61801035a79381c7f9be7e00e39d98cf5db338ce3f7a33dd19d2992cfce5a702ef47f4cf8df962f2309d6be SHA512 042be843a791ad0a1ae9c2d151c77e946fa2d13654c3291f487bb04a1dacb20217f5e69e81e6194769d100f5dbc399a899f13ef87673ce04abf46d5f20d90fb9 diff --git a/www-client/firefox-l10n-dsb/firefox-l10n-dsb-71.0.ebuild b/www-client/firefox-l10n-dsb/firefox-l10n-dsb-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-dsb/firefox-l10n-dsb-71.0.ebuild rename to www-client/firefox-l10n-dsb/firefox-l10n-dsb-72.0.1.ebuild diff --git a/www-client/firefox-l10n-el/Manifest b/www-client/firefox-l10n-el/Manifest index 94d02a8bd..ce46809a0 100644 --- a/www-client/firefox-l10n-el/Manifest +++ b/www-client/firefox-l10n-el/Manifest @@ -1 +1 @@ -DIST firefox-71.0-el.xpi 621206 BLAKE2B 01162d592c951c2eade042391e259caaeea607ac9a1802e752f686b597fd8e5da7aa4bee4e2828f947a5441e5e6402d7fb3c858bdcad6877a5d2d25210abbb37 SHA512 885a2c2be8ff36f3ca0045e8479f313daa36c63a20522d96da6618073526ee413b7631e8da390ed4e4d3b0c3fd0320185a781ca69bec538bea0a0551b6e6afd3 +DIST firefox-72.0.1-el.xpi 624799 BLAKE2B 7a9ea5d71632fe874e5e90a14732ab4d0665cf4ea0d0cc975b4bcd056e30642732c0383d29a3bfdfd6e8b26488e567d27bb16c91f93c07cb6d8d251e8cdcf3e7 SHA512 6bc41acec2e778cfddd0fa805214d3157f23bdd56dd029cddd48aaefbcbc4465ae9dcffae1f92f438307d36e31bf0a00fc0a4b7dcd3489aa40fdb66cb6d26dab diff --git a/www-client/firefox-l10n-el/firefox-l10n-el-71.0.ebuild b/www-client/firefox-l10n-el/firefox-l10n-el-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-el/firefox-l10n-el-71.0.ebuild rename to www-client/firefox-l10n-el/firefox-l10n-el-72.0.1.ebuild diff --git a/www-client/firefox-l10n-en-CA/Manifest b/www-client/firefox-l10n-en-CA/Manifest index 997ab8f2d..fa0b59a4e 100644 --- a/www-client/firefox-l10n-en-CA/Manifest +++ b/www-client/firefox-l10n-en-CA/Manifest @@ -1 +1 @@ -DIST firefox-71.0-en-CA.xpi 505706 BLAKE2B 86ed5edfb03a3b613f0cf6b6bdcd3c6df977cab63a856f3005dadd4fa6d528958130c97f56acf3b94b869ed84ac6e87a3ca1dd25e6ba305b1118eb1b158ba792 SHA512 9553398f0d8b55bc4be73dafceeba5f3d18545ec3d694bc7719df7b4a2b3ad0bf940c2e5c19eb3221c3030c861ac7544e4609a6b01477811936749580b16bff1 +DIST firefox-72.0.1-en-CA.xpi 508405 BLAKE2B f9c016d6cbb2830d3637366b3cfdc8fb03c13776a5c6e40010703f2e44ad3c5d62011039c70a639792c07f338e167a247035b95b830ca1d4441bcdd49c4c60a5 SHA512 f9566e0babb7066b4dd6781298988ee0005acef0a45c1893665ba919a4d538ea500fae14538bd13da8e35c2126a35135e09e86fd2144f5cea0941a366013e85b diff --git a/www-client/firefox-l10n-en-CA/firefox-l10n-en-CA-71.0.ebuild b/www-client/firefox-l10n-en-CA/firefox-l10n-en-CA-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-en-CA/firefox-l10n-en-CA-71.0.ebuild rename to www-client/firefox-l10n-en-CA/firefox-l10n-en-CA-72.0.1.ebuild diff --git a/www-client/firefox-l10n-en-GB/Manifest b/www-client/firefox-l10n-en-GB/Manifest index f22580e6d..eada7fcd6 100644 --- a/www-client/firefox-l10n-en-GB/Manifest +++ b/www-client/firefox-l10n-en-GB/Manifest @@ -1 +1 @@ -DIST firefox-71.0-en-GB.xpi 503397 BLAKE2B 6148187262cbcca4d6da1b7fed0800960f6fda3487377218455e60325c57071df26382b7d8e5954e0af89777899e7e128d4c7cea2d43b10298260c14ec3f0b7c SHA512 1c036211d62719905fd16b9bc466f2939553451f82f4320a2721741a3b7b4ba767b6088ba8136dbe3ae99681ae735abb34e8a86a70c41af5401e959bf566ba06 +DIST firefox-72.0.1-en-GB.xpi 507215 BLAKE2B f60d36d450819bbb0cad68ba4b3912e0125b302c16c73528fc6c23349cb2333c3eb94ed13b405ac5d7342e038e4ed767f0a31d705800ffbee6515a8c81ed4f46 SHA512 9b09a0051f01d5fd539d056835b6d1ffb53706e0dc3ec802b3932758a468dd1c1f0c62b3e5e76440454784d8e803905466e80c3d72edb8f292fc08cca9e27292 diff --git a/www-client/firefox-l10n-en-GB/firefox-l10n-en-GB-71.0.ebuild b/www-client/firefox-l10n-en-GB/firefox-l10n-en-GB-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-en-GB/firefox-l10n-en-GB-71.0.ebuild rename to www-client/firefox-l10n-en-GB/firefox-l10n-en-GB-72.0.1.ebuild diff --git a/www-client/firefox-l10n-eo/Manifest b/www-client/firefox-l10n-eo/Manifest index 1171bd976..d80534c51 100644 --- a/www-client/firefox-l10n-eo/Manifest +++ b/www-client/firefox-l10n-eo/Manifest @@ -1 +1 @@ -DIST firefox-71.0-eo.xpi 531526 BLAKE2B bc448f569377f120c7faa68d28b07a4a9ffbcbe8b6ff5959a6b03dbf7aafbd7ef16170e54fc13eb753dd1dcece0e8e2c69d55602090c887cc5fc36afcf074a26 SHA512 437bbefd3c1511ac37c0f9c3d726cde6d99c043707b68388084ef96f422639b2b228f614c24dfd6a973d1df77dbb37fb76c2ae7b4f2398cf3ac3b21c42c61c62 +DIST firefox-72.0.1-eo.xpi 533899 BLAKE2B beb4a1b84301b7b61a40f66f0abfd3096c507775ce6792d6df2c797669736aa98aebbadc276605f325ef1ba413a40c2582adb3ad51b57feaef102dbf6400c95f SHA512 43e4ca25d9323430c71ded2ce0717c12165522a4a3e4057632f73e343fff82e9afcd5cafab3d9796eace056d922c8818e8f9458f7d409d8b025c979da15baa98 diff --git a/www-client/firefox-l10n-eo/firefox-l10n-eo-71.0.ebuild b/www-client/firefox-l10n-eo/firefox-l10n-eo-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-eo/firefox-l10n-eo-71.0.ebuild rename to www-client/firefox-l10n-eo/firefox-l10n-eo-72.0.1.ebuild diff --git a/www-client/firefox-l10n-es-AR/Manifest b/www-client/firefox-l10n-es-AR/Manifest index e1d17c201..43b376466 100644 --- a/www-client/firefox-l10n-es-AR/Manifest +++ b/www-client/firefox-l10n-es-AR/Manifest @@ -1 +1 @@ -DIST firefox-71.0-es-AR.xpi 540653 BLAKE2B 922f1292e638c443932db188aee9f2fe8b557eab11c02a3d67cb70cee5cf1e7eac1cd8143712ded7f8abe6b900cd2d43df3b63a1e685b51d3afc0e8340610375 SHA512 8b038f13fadafa72c5b0341eb8f69cba3df360a1c27a8384a3004ce6e1c9185f7d13298467d4ba8a72896cde71627420f3b0121132e36318ede4947a459f0b10 +DIST firefox-72.0.1-es-AR.xpi 543731 BLAKE2B 8ca5d07d86d400f9a7e520165f68be94827bb80c66e393bcb6179df5a3aaeab7a2d45d548392d5c83f181887678375fc803d7e89539999dd7bc70fad64b4eb96 SHA512 41716932e265543ca3b6d44c46fc2fe031c2ad1c14510ec29ca872216cf6d5da063e95c84471c696fa48a8e1b88b6f002746fae122fc9418eb1fa48adcfe606f diff --git a/www-client/firefox-l10n-es-AR/firefox-l10n-es-AR-71.0.ebuild b/www-client/firefox-l10n-es-AR/firefox-l10n-es-AR-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-es-AR/firefox-l10n-es-AR-71.0.ebuild rename to www-client/firefox-l10n-es-AR/firefox-l10n-es-AR-72.0.1.ebuild diff --git a/www-client/firefox-l10n-es-CL/Manifest b/www-client/firefox-l10n-es-CL/Manifest index 663ddcb86..82783ccdb 100644 --- a/www-client/firefox-l10n-es-CL/Manifest +++ b/www-client/firefox-l10n-es-CL/Manifest @@ -1 +1 @@ -DIST firefox-71.0-es-CL.xpi 540838 BLAKE2B eeb5d8d96f6bebcc4ef4fff2aaac067d977522f7d5df16cf7f65df378cf157a6110edea54dab6f8670ee75e3ff34df2be6e1b5d14ea6abdb080bb3a28d592c94 SHA512 fb217bc675004a3ca760b48ae6e4f4728d4a0287bb7557f9be56ea537d20b173463aa1266748bbb157201ff1c96e6ef3512d4f13d5280c25449018039b0c0d7a +DIST firefox-72.0.1-es-CL.xpi 543282 BLAKE2B 67f4e3371636d170adb767e5a3b2fdfa7bd25e8bacb3b528af522b19a929cd086c8f1f5f725e6a7a849264ae6e583eed9479831a533b29d7fab2f4c6e6a78936 SHA512 31c974273f389ef14dfb765b1391a68e3090fabe5d5669a9485103b0f400d57aca7afdd30c3b419b54c3629f9bfb6e8266dbee37296f8bba3f231a35fd4b1551 diff --git a/www-client/firefox-l10n-es-CL/firefox-l10n-es-CL-71.0.ebuild b/www-client/firefox-l10n-es-CL/firefox-l10n-es-CL-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-es-CL/firefox-l10n-es-CL-71.0.ebuild rename to www-client/firefox-l10n-es-CL/firefox-l10n-es-CL-72.0.1.ebuild diff --git a/www-client/firefox-l10n-es-ES/Manifest b/www-client/firefox-l10n-es-ES/Manifest index 0ed5e0b2b..71a940387 100644 --- a/www-client/firefox-l10n-es-ES/Manifest +++ b/www-client/firefox-l10n-es-ES/Manifest @@ -1 +1 @@ -DIST firefox-71.0-es-ES.xpi 518165 BLAKE2B e961369f6cdc629bbf55079e1e79bcd4375bd2ab24bfae636fab0519138a8229909fd0449202c75be0b14df0363a55729ab827b5d3126809a0dfff32fe974f1b SHA512 75d8b0632fcbde3cac6a51087830dc5d60fbc60a8b37da13514d92a30514a9f6f5794b3ab4abc26223185112f7fae5f5f0d4c387cf58cadcc2ae7a020b7c0894 +DIST firefox-72.0.1-es-ES.xpi 521573 BLAKE2B c2af907d963331c1ff6016a103463ed59c37e2baa38e13a5a3887935d7ec262d021a89b2f1469326eca9ed2091bd9410a9c168829709ac1df3877f5960508a38 SHA512 534df734942de4bb0410e83e3af7fb62feac0a8505475c89169a4d8c42998907e003208cf0225ac2bb7541d8398c1549aae1976e010dc7b1644aca878af00769 diff --git a/www-client/firefox-l10n-es-ES/firefox-l10n-es-ES-71.0.ebuild b/www-client/firefox-l10n-es-ES/firefox-l10n-es-ES-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-es-ES/firefox-l10n-es-ES-71.0.ebuild rename to www-client/firefox-l10n-es-ES/firefox-l10n-es-ES-72.0.1.ebuild diff --git a/www-client/firefox-l10n-es-MX/Manifest b/www-client/firefox-l10n-es-MX/Manifest index cfe187f8e..ec172d616 100644 --- a/www-client/firefox-l10n-es-MX/Manifest +++ b/www-client/firefox-l10n-es-MX/Manifest @@ -1 +1 @@ -DIST firefox-71.0-es-MX.xpi 544851 BLAKE2B 03e02da5dc6b3e4a9eefb40f381942872543194ca45cd70359d25dcdb1270e51c92956e400f688a50b5e4cbd3bad2c70429ee3dde0caec1f26d8d87aa42e6a69 SHA512 b641592ac58cc06db33c7e93fc73edf01404331b9df8c0001a9a40370d0da08f984b9cf4012eaf585da50e5eea9501eb07317beb7eb822153ba68a3435efca2d +DIST firefox-72.0.1-es-MX.xpi 546572 BLAKE2B 4ed673c668cd130822698a259b2c4649b2bba979c32e7dd40331b0bc80ab6312e799de1f972e7c0b89edca025fbb3f2c5c362085a6656df63c897b9fbcc96a4d SHA512 797bdd0765fec1009c559df5211424f7bf9a48c6ca031d35839d0a4819b72df9ef448107fe3b4aef6e0d1fda5f250e9e55f1a15acf51f1219fcda23b2508f8f6 diff --git a/www-client/firefox-l10n-es-MX/firefox-l10n-es-MX-71.0.ebuild b/www-client/firefox-l10n-es-MX/firefox-l10n-es-MX-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-es-MX/firefox-l10n-es-MX-71.0.ebuild rename to www-client/firefox-l10n-es-MX/firefox-l10n-es-MX-72.0.1.ebuild diff --git a/www-client/firefox-l10n-et/Manifest b/www-client/firefox-l10n-et/Manifest index 24e631caf..deea77b5a 100644 --- a/www-client/firefox-l10n-et/Manifest +++ b/www-client/firefox-l10n-et/Manifest @@ -1 +1 @@ -DIST firefox-71.0-et.xpi 520415 BLAKE2B 1709cbc17c5b9051ea7a928662d7550d9eb6e45f8a94143c7a4b3dd30415907bee34f8bc330a49aa66a3ca315f827259509f60e2470c245e883c8c19c5ff6f01 SHA512 ca574b2ca32a987cac82c02b11c2773220cfc1c352bb51a1fa849f3db17c89a473381a1927797daa68a8d01a76882d26de9bb86a03e00b0ec3b6e2915ee38602 +DIST firefox-72.0.1-et.xpi 523215 BLAKE2B b2d111a58ba1073f28025e9424b9e27d90e96afd96df29b7c38d777b83cdad5787ad3cb7bd101b54fcfa6199c92e516f2cbcce37b59e196235fe1c5f2ea98bdc SHA512 ac77d61626897100084360dcfb7e6582cd954b0dab281fb5f05e3d2d5db4252862d5e1096544b5d4ddbfab47bc2b7bee9a183d4a76e4eb6464117c6bb2f4c458 diff --git a/www-client/firefox-l10n-et/firefox-l10n-et-71.0.ebuild b/www-client/firefox-l10n-et/firefox-l10n-et-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-et/firefox-l10n-et-71.0.ebuild rename to www-client/firefox-l10n-et/firefox-l10n-et-72.0.1.ebuild diff --git a/www-client/firefox-l10n-eu/Manifest b/www-client/firefox-l10n-eu/Manifest index 43ba137f9..ecf3b02d5 100644 --- a/www-client/firefox-l10n-eu/Manifest +++ b/www-client/firefox-l10n-eu/Manifest @@ -1 +1 @@ -DIST firefox-71.0-eu.xpi 530784 BLAKE2B c8b8410e82c9c5da6a88d3237e6aebef0691a9619c91a3258461e3cbc0051fd3973db4d722984b585162532b6e7614d44ad78bec5472beea9ab63f23b2bf887a SHA512 7c886453b70ca75b362c85a4f4322acbdb774831e38e08641266f16574665ff1e35b0876c3344b03e67e1855e75611e9feed211f5cc5da8d84ef168cab375b0d +DIST firefox-72.0.1-eu.xpi 534197 BLAKE2B 80bff894a9202d78a26956f23cf793bd0f794b675c1186f4c2123f2fc5d619fb078ac05f607dc13e03b1aaa746b383f63bdd8f9fd6110ee519b29aa5b03aaf31 SHA512 66687539b8b7b536dfe1aff811a0e96607a64524702b1b4e86331ca5b33be4d7a81bafade869bec9ac453e77dd0a6b84e9dde05408ecbbda35d7207edff26ffb diff --git a/www-client/firefox-l10n-eu/firefox-l10n-eu-71.0.ebuild b/www-client/firefox-l10n-eu/firefox-l10n-eu-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-eu/firefox-l10n-eu-71.0.ebuild rename to www-client/firefox-l10n-eu/firefox-l10n-eu-72.0.1.ebuild diff --git a/www-client/firefox-l10n-fa/Manifest b/www-client/firefox-l10n-fa/Manifest index ecf05893e..4a18a081a 100644 --- a/www-client/firefox-l10n-fa/Manifest +++ b/www-client/firefox-l10n-fa/Manifest @@ -1 +1 @@ -DIST firefox-71.0-fa.xpi 578069 BLAKE2B c5265fc1f6a255be0881970ee2f0e76ad14de25fad94033f81237edb9ceb1860bbfedb3ae175dc2b50b3130e337c04436be484bbbc98ac8b2ea1e9eb649257d5 SHA512 bd9434b140959fefb3408d00385041a1af963ce8a9f215cee516830832099f23b110cbfa85eaac0f31e13e4f289714f520a1c49cf7aaad76e607564c644dbdac +DIST firefox-72.0.1-fa.xpi 581229 BLAKE2B 2c7b5a522e52fa26a69281232be5775f1e8243ec41d8ec5a7d3a3f6d37f9d5a8227368c62954f57b3530887fd661548ba80aff8110079ec1ece967b3edf8cadd SHA512 43aedfdce8f21f676e1b2d9a9f03cd672975ee2058bd73c03561fa173240c2335cdde5a82bf38c9e036270c01baa8b86c340a33049dd848cf5d7f355f3c0edf4 diff --git a/www-client/firefox-l10n-fa/firefox-l10n-fa-71.0.ebuild b/www-client/firefox-l10n-fa/firefox-l10n-fa-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-fa/firefox-l10n-fa-71.0.ebuild rename to www-client/firefox-l10n-fa/firefox-l10n-fa-72.0.1.ebuild diff --git a/www-client/firefox-l10n-ff/Manifest b/www-client/firefox-l10n-ff/Manifest index 8cf3b7126..0efdeed8c 100644 --- a/www-client/firefox-l10n-ff/Manifest +++ b/www-client/firefox-l10n-ff/Manifest @@ -1 +1 @@ -DIST firefox-71.0-ff.xpi 497625 BLAKE2B d15905ef15aeaa341b3ab4331671adfd8fc32a407061a2bb56d05d15a83f17190aedbe13f7c54250acc7ce135da0f5bdaffe896be17a3eabfdf0d529831697ac SHA512 3bdf28dd84ecf10e42e3a52537a7f40c56b0ee3c5bfa29ef7a8969a3bc24f69d582a706fb8f60f7d83a53e66823ba688c6e9dfb6daf14576c4cad3f8ab45d4e6 +DIST firefox-72.0.1-ff.xpi 501349 BLAKE2B f4477a42f8ab2504a3e9571586e93afa688a1c3e90ff27b443dc3574be7601e2b0906c925b73deefbb6f4f8acbe6c941ee6f82ab05580afcb349f8f7f9ddba05 SHA512 1c137931c1c30dac5fabdeb99ae212dc3be3ef32ca8a5ee49c0ab06a04e5fd56e482004b202ad493540f373fcded139b9ff90ce3eaae869f1a3ae355ee129fc2 diff --git a/www-client/firefox-l10n-ff/firefox-l10n-ff-71.0.ebuild b/www-client/firefox-l10n-ff/firefox-l10n-ff-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-ff/firefox-l10n-ff-71.0.ebuild rename to www-client/firefox-l10n-ff/firefox-l10n-ff-72.0.1.ebuild diff --git a/www-client/firefox-l10n-fi/Manifest b/www-client/firefox-l10n-fi/Manifest index 91b6305e0..9d806d8f9 100644 --- a/www-client/firefox-l10n-fi/Manifest +++ b/www-client/firefox-l10n-fi/Manifest @@ -1 +1 @@ -DIST firefox-71.0-fi.xpi 526854 BLAKE2B 8fe7175f9dc30f3fdd1f372124b4b211a64556506278ba18c7303cf38f996a72fc0c2d98ab0599fc4e434129fe54e6308fe2b3fd79e26a2481219cd7dfda3b48 SHA512 39fde113dbddac19360971ed61b177f84dbbac87ae290708e790d363f20eab8270e1262a1a2f81df73c5058d75dd2c443c9398827c93084de3ef41c36d25e8f8 +DIST firefox-72.0.1-fi.xpi 529578 BLAKE2B 2dbb549795f25c55bb53b0935a75d28c4a482673fa54899012b67714de44902db515e555e869a54724f47c5f3e114563967d2bafb174dec877ef9c0c45c61dec SHA512 470e8b682c47c37b23bbd56f0da49d0f59409ff0899ca3aa0f59e6250624509ce591f9c65d340ca96565f07dbc42c0813f58be9b182a942301c83a8d94110985 diff --git a/www-client/firefox-l10n-fi/firefox-l10n-fi-71.0.ebuild b/www-client/firefox-l10n-fi/firefox-l10n-fi-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-fi/firefox-l10n-fi-71.0.ebuild rename to www-client/firefox-l10n-fi/firefox-l10n-fi-72.0.1.ebuild diff --git a/www-client/firefox-l10n-fr/Manifest b/www-client/firefox-l10n-fr/Manifest index 30599f28c..ddc92c178 100644 --- a/www-client/firefox-l10n-fr/Manifest +++ b/www-client/firefox-l10n-fr/Manifest @@ -1 +1 @@ -DIST firefox-71.0-fr.xpi 552869 BLAKE2B 9d70856997eb8d61be64e669c54e84bffe48d7bc0011160883491129ac19747ca38960ff39953498624af7f6e6d698e8a73f72d8174daad90d61e7755192fd64 SHA512 426a7780d111ddf50288d5e1b979304330a30a76e40cd34eaef03c94fcc6f21e03b7743b9a2c38f49cd691fe927da7cb2f533a6bb4bf0e938e9c269cbd377c42 +DIST firefox-72.0.1-fr.xpi 555806 BLAKE2B dfad8ee386d3d9ec3e9cd1a125429194abc03acbfb81f9923d7af5bf37da8e8041b8d5702897fbca5416d1197566b7c18e6d2b8c1106ac4dbb66e2c1824fda10 SHA512 bc8944c19171a464a1e30b73a898510a06313bb8a8d7cc5fbc6ca9f6b9a245cd995ebb22e016c5b263fbfd9bcc091e40261cec4443cf15ae9ddeb471dbddaec2 diff --git a/www-client/firefox-l10n-fr/firefox-l10n-fr-71.0.ebuild b/www-client/firefox-l10n-fr/firefox-l10n-fr-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-fr/firefox-l10n-fr-71.0.ebuild rename to www-client/firefox-l10n-fr/firefox-l10n-fr-72.0.1.ebuild diff --git a/www-client/firefox-l10n-fy-NL/Manifest b/www-client/firefox-l10n-fy-NL/Manifest index eef668f18..2c5577967 100644 --- a/www-client/firefox-l10n-fy-NL/Manifest +++ b/www-client/firefox-l10n-fy-NL/Manifest @@ -1 +1 @@ -DIST firefox-71.0-fy-NL.xpi 536242 BLAKE2B 67405db7cb9bfe168d15a61ac79b1f67995851b209bd75fbf7e744c6e28f8e2dd56dff6a6424217252b05eb021114be14101f17649ecd5405b9c12c9c83bb180 SHA512 beb855f2c73397d381d1f609427fbfdee1c0b03f5a5edb6f93e708a211c7dcf15aeb40110439e4e8220f358cc03fce41d15d15446d75da316b84333c6b67f025 +DIST firefox-72.0.1-fy-NL.xpi 539208 BLAKE2B 962e896dc8539711ef4482b4d3a5a9bf65fd02e2227290038db20a9637b77712024601cedf889b4743274a328ffb53f915b64a1681c3db6d013599cbd78036d0 SHA512 e4649435c2fe877f19a994297d97cf4c73cefb1473af0d5f126022dee7ebb3e3563dd97eab8e423ff8b5b66595eb281f022857cc5be4923c8d69be358c831521 diff --git a/www-client/firefox-l10n-fy-NL/firefox-l10n-fy-NL-71.0.ebuild b/www-client/firefox-l10n-fy-NL/firefox-l10n-fy-NL-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-fy-NL/firefox-l10n-fy-NL-71.0.ebuild rename to www-client/firefox-l10n-fy-NL/firefox-l10n-fy-NL-72.0.1.ebuild diff --git a/www-client/firefox-l10n-ga-IE/Manifest b/www-client/firefox-l10n-ga-IE/Manifest index 6273b5c3f..8baab72cc 100644 --- a/www-client/firefox-l10n-ga-IE/Manifest +++ b/www-client/firefox-l10n-ga-IE/Manifest @@ -1 +1 @@ -DIST firefox-71.0-ga-IE.xpi 497577 BLAKE2B 8987fad5f5c5249c2b20f84a4e2c4f8d377feafa6d8795e5800ee345acc332aa39be5b242a74e1d0fb3253dd0b89136679119d8dfa0563a539d3f1d7f0889d6d SHA512 0b89ab4fdb364535c887d123ce696caf5bb8da937698d38253de4a9c7c915a1cfcdd324c3e730d71a21c767225871e48dcefb588798c1f94ee10c8601c3ffe1e +DIST firefox-72.0.1-ga-IE.xpi 500375 BLAKE2B c780b05d64ac10118d7271d427ebeda48c557a14d3f8312c407113e9d859cd2e13e79954665239b669054c6a02e0b74a935715414b46831e80dfeb2270de8f96 SHA512 6bb9eba24a43825067fee78bdce53e7bb583c63bccb632526f99c39583b9507744b9e025a7c44935e003b41f9a307054547eacf32bf6191ebd7a94fbc604e3b6 diff --git a/www-client/firefox-l10n-ga-IE/firefox-l10n-ga-IE-71.0.ebuild b/www-client/firefox-l10n-ga-IE/firefox-l10n-ga-IE-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-ga-IE/firefox-l10n-ga-IE-71.0.ebuild rename to www-client/firefox-l10n-ga-IE/firefox-l10n-ga-IE-72.0.1.ebuild diff --git a/www-client/firefox-l10n-gd/Manifest b/www-client/firefox-l10n-gd/Manifest index 662138315..e9f55422c 100644 --- a/www-client/firefox-l10n-gd/Manifest +++ b/www-client/firefox-l10n-gd/Manifest @@ -1 +1 @@ -DIST firefox-71.0-gd.xpi 522588 BLAKE2B 00060c4ae9e335deb73f93b670ab70f974d86b0f3aef143935b3e2af5345578f72c8f05813a845bdf89fd7da7ce728367d4c201c7ea41f4055d8b35726d31ff8 SHA512 b6b8f35335574033d66c198d5e6df1f47416be2be7206558dd2ffffdce8c01798da9373618bdbe67ed7f9996f15d0f6b943a59333587c5bf9e5d77ee285cc15e +DIST firefox-72.0.1-gd.xpi 525843 BLAKE2B d9c573ace70c1824f2d597549c681bca8a41de0c9ef58616526c7ce45b7d002427e7236707cd73e11c82d86854cd7c2092b783fdafcaef5264daa017225f18a7 SHA512 acc1023c95747c39c7aa546d2a8863b4aa1cd6c32fcc8a7b3bdf33c1df37b5d6c824deea69a74612da3ad257a1228a7f08b955da55b389efc91d65b195fd2c18 diff --git a/www-client/firefox-l10n-gd/firefox-l10n-gd-71.0.ebuild b/www-client/firefox-l10n-gd/firefox-l10n-gd-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-gd/firefox-l10n-gd-71.0.ebuild rename to www-client/firefox-l10n-gd/firefox-l10n-gd-72.0.1.ebuild diff --git a/www-client/firefox-l10n-gl/Manifest b/www-client/firefox-l10n-gl/Manifest index aaed31442..e1fcbc671 100644 --- a/www-client/firefox-l10n-gl/Manifest +++ b/www-client/firefox-l10n-gl/Manifest @@ -1 +1 @@ -DIST firefox-71.0-gl.xpi 498585 BLAKE2B 0454a2f7269ff965e79d0b8d12d2e84950a09670efab8f5e53deb6c7d7ccef25f73cf3b10f294ef7a5835974c8127f5a91ef4b1590f86cc013115a46b908943c SHA512 d014e8a5eea52152bc33203fd0f244f43b97d67de4adaada60c70a725065a6a0961c40b24c0564aaeffbc780c609b6ccc402b4049ff13005562e6abc4192e633 +DIST firefox-72.0.1-gl.xpi 502396 BLAKE2B 85912de447c0a5e97ba4e27cb684d289777baf2e8f71f7e774285217c1eb792a80bf9cc79297a31ed298df4d08036387e9bcbc85ca9c513c9800674ada86a5f2 SHA512 4592f6f32f11153ade213f2e3e9c3b3b3509ed625f6c001f5dc4cdca258a348d89a0c95c37bcc440204119dfb8f1a1a2d42b3ff16382459f70316e1bd5d42bce diff --git a/www-client/firefox-l10n-gl/firefox-l10n-gl-71.0.ebuild b/www-client/firefox-l10n-gl/firefox-l10n-gl-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-gl/firefox-l10n-gl-71.0.ebuild rename to www-client/firefox-l10n-gl/firefox-l10n-gl-72.0.1.ebuild diff --git a/www-client/firefox-l10n-gn/Manifest b/www-client/firefox-l10n-gn/Manifest index 4b6435388..f47d73d85 100644 --- a/www-client/firefox-l10n-gn/Manifest +++ b/www-client/firefox-l10n-gn/Manifest @@ -1 +1 @@ -DIST firefox-71.0-gn.xpi 553689 BLAKE2B 0a5c7239d13c2f6e83d1ecd3562c08ddf2635f5452f70181d4d8459fff656e2d7b0d0ed81dc7228b4d912571bffd17474ad92075654bf6318e0bb7fab7daf391 SHA512 f0bc639b81ed7c37c2ee28f17f8c2aa2eadd02bc17125582276b5ec50d25cc264fd015afe17d0b1ad4fb604522f784f32b14ccf27fc7e4e4dd45436c5017070b +DIST firefox-72.0.1-gn.xpi 557347 BLAKE2B 87caece9fde7c219475afb971780f6295fb21c468dd4f488ff3b433318a2c155aa3b4a68af32ab1d9b2165a024d3fe059e4fe23556663d7cf6d4acaef3e4653e SHA512 77f148bb1569a019847a0f1def80111a7e84e4005ba9e57b09dfba7b74f6f558ff224fe23f3f7b9e7dda61f2579260fc867e11142519f5ff093083afc3570906 diff --git a/www-client/firefox-l10n-gn/firefox-l10n-gn-71.0.ebuild b/www-client/firefox-l10n-gn/firefox-l10n-gn-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-gn/firefox-l10n-gn-71.0.ebuild rename to www-client/firefox-l10n-gn/firefox-l10n-gn-72.0.1.ebuild diff --git a/www-client/firefox-l10n-gu-IN/Manifest b/www-client/firefox-l10n-gu-IN/Manifest index 13693103c..d1b363686 100644 --- a/www-client/firefox-l10n-gu-IN/Manifest +++ b/www-client/firefox-l10n-gu-IN/Manifest @@ -1 +1 @@ -DIST firefox-71.0-gu-IN.xpi 587968 BLAKE2B 5806b5f13ba31488de19b895af46e0579e57aa319c2eb497d3f8e812e6e588f0baaa96b0241e761762eab97f71a1c71110695e2909cb0d610c31e8ab8840a1b8 SHA512 24e57d85c01949d96d01c0a34b098abc5d6057a5ac39568937264d477da7a0f19f2382fd662ea7da4754a364055cd76d23bafe612db323bf3d39133778b5658e +DIST firefox-72.0.1-gu-IN.xpi 593342 BLAKE2B ec849d10ae2880fe025aa147dccde3472cf61fdd1968135ae384b156d3fe10c2c744b0a87fc53c50cca63d0aa099e0017089e5d66599e6a157271afb1f37ad43 SHA512 96c92ace6e6d02bcafe8a6bc4243b696df016b86fd8e4be9044df294ca7d5d2a093b9da64ce924e43eb26eee29a245f7c5d1885797a041780f63c077eb0b8d98 diff --git a/www-client/firefox-l10n-gu-IN/firefox-l10n-gu-IN-71.0.ebuild b/www-client/firefox-l10n-gu-IN/firefox-l10n-gu-IN-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-gu-IN/firefox-l10n-gu-IN-71.0.ebuild rename to www-client/firefox-l10n-gu-IN/firefox-l10n-gu-IN-72.0.1.ebuild diff --git a/www-client/firefox-l10n-he/Manifest b/www-client/firefox-l10n-he/Manifest index b04a383ca..23f3069eb 100644 --- a/www-client/firefox-l10n-he/Manifest +++ b/www-client/firefox-l10n-he/Manifest @@ -1 +1 @@ -DIST firefox-71.0-he.xpi 548164 BLAKE2B 68c928562816c6ab44f80914c6c5f76f8bb5b792ff32c3c6300ec94d5accf92dd321a8ecea2c76993dd00e565e268692fa00f5513da7762395258852105937ea SHA512 95097da7a81186c043bfe29e32470bdef7333882cbeaa7940fb546376a14cb3b7db99ace1aaa957f74a6e66aab803b83168dd3251c07a744eb14a855a7a73121 +DIST firefox-72.0.1-he.xpi 551461 BLAKE2B a8a6a3ace85af2f02c67c1afc20194949b8273061859d1cbaa4d9bb2cddd945956cd910041713bbe7f1abc27eeff8a08da2d4a88005e3f06bf2f68cd48bacc30 SHA512 e1a0d87200ee100c97427c2a65a69ed4acb3e6075a0bde0a293838a61d28934192b42ccd142a0f351cc7ffe7e8f8c406cc7ad1e80e4535ce28f72fc9e9e10c39 diff --git a/www-client/firefox-l10n-he/firefox-l10n-he-71.0.ebuild b/www-client/firefox-l10n-he/firefox-l10n-he-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-he/firefox-l10n-he-71.0.ebuild rename to www-client/firefox-l10n-he/firefox-l10n-he-72.0.1.ebuild diff --git a/www-client/firefox-l10n-hi-IN/Manifest b/www-client/firefox-l10n-hi-IN/Manifest index 7d82d34e5..22739a1c6 100644 --- a/www-client/firefox-l10n-hi-IN/Manifest +++ b/www-client/firefox-l10n-hi-IN/Manifest @@ -1 +1 @@ -DIST firefox-71.0-hi-IN.xpi 588405 BLAKE2B 5e8d3dc7cad53dfe87d20ba5f51682c6e991295889277e9f3b88a884c88b897b9d1244eddf170553acbacd7dc92dbfbbaf3afd1c1adacfe1524e46d91c94502f SHA512 fc629fcd0d01beaa7a673cfb512ab23967573bc813316c743899529e621c935dc87bf00775d603744ccbc72e1abdcece4a479f8e321b982356b1e4cc38da01db +DIST firefox-72.0.1-hi-IN.xpi 599258 BLAKE2B 8bccfd235f0d5f2066bbd4a21a2657898516934460ed3b9267182d76083805a91c59bb33d70cba84b4405d2e754371f489cec9325c2533897725e96e8169d64e SHA512 7577202c87622793304b06f3ce88be7e9dd3e8255bb717770bcebfc6827bb33a9af04cade0eee9b3e6a33362e29ecf05619027f3d820a9bb5d09f17e2c05f13b diff --git a/www-client/firefox-l10n-hi-IN/firefox-l10n-hi-IN-71.0.ebuild b/www-client/firefox-l10n-hi-IN/firefox-l10n-hi-IN-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-hi-IN/firefox-l10n-hi-IN-71.0.ebuild rename to www-client/firefox-l10n-hi-IN/firefox-l10n-hi-IN-72.0.1.ebuild diff --git a/www-client/firefox-l10n-hr/Manifest b/www-client/firefox-l10n-hr/Manifest index 05d53e127..de8014b52 100644 --- a/www-client/firefox-l10n-hr/Manifest +++ b/www-client/firefox-l10n-hr/Manifest @@ -1 +1 @@ -DIST firefox-71.0-hr.xpi 532687 BLAKE2B b080a664dd6edd84f58378269df8c566c9c944d4619e7dbc964156c537d55b1847e77e233f3e0abc2de79e0c2b927d4667f22a9ed6fac3cf218dad7bc1ee49f0 SHA512 8f95a7613504c8e8dbf8252a94e054a2529b69c13d8116821a729da054cf4921884b3ae2e81a77261c56e2e54eee292f8b31879f3559f089a6e863734523419f +DIST firefox-72.0.1-hr.xpi 536156 BLAKE2B 86cef50fa11afe24472a4f6f7ed1ea91371a70aaa4910cbbe7bada07bcecb076820da1bf82c8f7d63919dce73adcafc4936d85fbc4d5ef82784f1457d421559e SHA512 cb8ac82bc1bbb903d51966c37f5cc535a9ba325dd823fe8369a9034531715c3defa5bbc7b622e651f8f68593a474c0a0e51be0284f4ddff8cddaab8fb3e85599 diff --git a/www-client/firefox-l10n-hr/firefox-l10n-hr-71.0.ebuild b/www-client/firefox-l10n-hr/firefox-l10n-hr-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-hr/firefox-l10n-hr-71.0.ebuild rename to www-client/firefox-l10n-hr/firefox-l10n-hr-72.0.1.ebuild diff --git a/www-client/firefox-l10n-hsb/Manifest b/www-client/firefox-l10n-hsb/Manifest index 5e8adada8..8665ec1cb 100644 --- a/www-client/firefox-l10n-hsb/Manifest +++ b/www-client/firefox-l10n-hsb/Manifest @@ -1 +1 @@ -DIST firefox-71.0-hsb.xpi 555207 BLAKE2B 46386164326fd1eec5f937604e26b46ecd10a3427df581a5c16347ca19dffbd12a0094d27481ec425e81ff3fb824f7ee6297228cded87fb526825aa7a8903bc8 SHA512 7876a9b5d60d29f503bdfd3fe37788454c32f2a593f546437e596919e038d14de160cc7e025788aba8af0eb04e8386ea31caeaef9ddb5e84d06114b095983b8e +DIST firefox-72.0.1-hsb.xpi 558387 BLAKE2B e421e9d189a0b82c48a9c71413f052a82fe088adb7455cfe6882e7e722b684aef3c2917aec2e50104fb9834a28b0e9f96accab1a045f88b2c62f9c93bec8b997 SHA512 01518d2a0cda841be0519f6ca043ebbbb89b5a6737c748943c6e6cf9956c321f05920ebfc5d5f95f407763a603e78ef777837cf4805ad80f3eebf097adea4171 diff --git a/www-client/firefox-l10n-hsb/firefox-l10n-hsb-71.0.ebuild b/www-client/firefox-l10n-hsb/firefox-l10n-hsb-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-hsb/firefox-l10n-hsb-71.0.ebuild rename to www-client/firefox-l10n-hsb/firefox-l10n-hsb-72.0.1.ebuild diff --git a/www-client/firefox-l10n-hu/Manifest b/www-client/firefox-l10n-hu/Manifest index 8d2dbf143..a77b1630e 100644 --- a/www-client/firefox-l10n-hu/Manifest +++ b/www-client/firefox-l10n-hu/Manifest @@ -1 +1 @@ -DIST firefox-71.0-hu.xpi 560491 BLAKE2B ad9eef9653972f5777f97841cd878c3bf01baba2a7a9ffce015862e434fa5bebf20762b61962dbf8c87e2eee29edab4c8509de332ed3c02752ef067255236d15 SHA512 fd17e3a5fb28a8a9facac81bf0493c9c252c2c1fb15b3dcac802abac375be39b8fe977fd029f16937e5e9150d13b4d6c366573751650b4348154e29d209edb3f +DIST firefox-72.0.1-hu.xpi 563619 BLAKE2B a392b9a757577142bf6b92f6487dc835be8eec27cf07bc6e50e7d0e207bacea39b6e9004c62a1cef46c9ea7b586c1df0539d1ecad7e0c1296ffe532f9f382e5b SHA512 277701c9d670f7f91d77b9b7840dc24e7ee24fff5c41c02ac0e6e7b51f2448c90126db9c3bdd2842d49772b7c6bb7167b4df3e1130b9006661054122fd2caa1b diff --git a/www-client/firefox-l10n-hu/firefox-l10n-hu-71.0.ebuild b/www-client/firefox-l10n-hu/firefox-l10n-hu-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-hu/firefox-l10n-hu-71.0.ebuild rename to www-client/firefox-l10n-hu/firefox-l10n-hu-72.0.1.ebuild diff --git a/www-client/firefox-l10n-hy-AM/Manifest b/www-client/firefox-l10n-hy-AM/Manifest index b0f9d95cb..5c3a94399 100644 --- a/www-client/firefox-l10n-hy-AM/Manifest +++ b/www-client/firefox-l10n-hy-AM/Manifest @@ -1 +1 @@ -DIST firefox-71.0-hy-AM.xpi 564283 BLAKE2B e9db1849c95ac890e7f85c0c837b213971b6a251934b89bbc02ea0bd2c85e2bb7fc1c7f05027366d584ca0961d8cfb6020978d724dd0aa3fb1e09116826cb639 SHA512 935c1f49a7d6eaabc74cf2dd3e8e0d012610b5cb5d629189b8ba3cd6481a965cd7db23aeeebe7539c088724997f0688de3f02ad7299dd21912317270a321c3a1 +DIST firefox-72.0.1-hy-AM.xpi 581460 BLAKE2B 5eeed16298f0217fca313b192521bf90abbc7782ff6924c2700a78371aef1330553fd913e13bde290d6ed4d5a1a4157855815095a64ad87174f5d8a6ee54d4a2 SHA512 ef609e1429770b264efa5debae5fd3fa0aafa7b72aa97b317f55c333b3e8471a4fae1d616a0edc6d64b94b8c21b9d1dcf9d6bf9845fed09b22c2ffe153ea472d diff --git a/www-client/firefox-l10n-hy-AM/firefox-l10n-hy-AM-71.0.ebuild b/www-client/firefox-l10n-hy-AM/firefox-l10n-hy-AM-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-hy-AM/firefox-l10n-hy-AM-71.0.ebuild rename to www-client/firefox-l10n-hy-AM/firefox-l10n-hy-AM-72.0.1.ebuild diff --git a/www-client/firefox-l10n-ia/Manifest b/www-client/firefox-l10n-ia/Manifest index e23a732d6..82c82ae86 100644 --- a/www-client/firefox-l10n-ia/Manifest +++ b/www-client/firefox-l10n-ia/Manifest @@ -1 +1 @@ -DIST firefox-71.0-ia.xpi 521940 BLAKE2B 6e8f88262eda0f7e81fff84b430b13eedf250bdb2695f7633aac6bae3e3d5d546308585404a250024b363bc12bcda2afe957c65541fd49dd8e900ab78f5dcb54 SHA512 e12f51205b545fc4a03cc44acfcd594c62c943e03e74c6ba44967b4d944128bbeb31fdfa2812e16961e5044d8ce1c9382575403f16101f6ebc35203fa99d36d0 +DIST firefox-72.0.1-ia.xpi 524500 BLAKE2B a847e4ee03ebe7eeb14270aac98a6ca2eb01cd62fa89040cecdabb5bad2d784b8a2bcf64afc4a4149cb2d7229793f19c3438e23e9685b6f60a922676aecec8bf SHA512 607a023ba8a4a27a5b5ac19129c2498344a052eb020b36d8c2550d77924595dc0b937dcdfcf6ea7b35bd1576c70f698681379b4d6d3394c158d1c886849567a8 diff --git a/www-client/firefox-l10n-ia/firefox-l10n-ia-71.0.ebuild b/www-client/firefox-l10n-ia/firefox-l10n-ia-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-ia/firefox-l10n-ia-71.0.ebuild rename to www-client/firefox-l10n-ia/firefox-l10n-ia-72.0.1.ebuild diff --git a/www-client/firefox-l10n-id/Manifest b/www-client/firefox-l10n-id/Manifest index 3add031c9..fd17a3ebb 100644 --- a/www-client/firefox-l10n-id/Manifest +++ b/www-client/firefox-l10n-id/Manifest @@ -1 +1 @@ -DIST firefox-71.0-id.xpi 515826 BLAKE2B 1c20c858e04b3c569c6b94a8441065e9d5c2c8da4f9fa3221d851424d79674740cf586ce9a10894057e2fa75085a8ac4fbcc0472e625f191c9a3826b8f4b7937 SHA512 699049c9203c179777725c9e0fcfa392069e41dea83320b3e6242ff7c6c01ac7914758b421b94a55b6dd7ee172ae71db46b267df26efe5a236fa0689000bfebe +DIST firefox-72.0.1-id.xpi 520734 BLAKE2B 26e77c493af2dc2c76c9373e899c424ac6b9ae1f4583681bc6e665d37f70372b516eaa915d747a3d2dad1e835bb10d239fc158704d33a75a6eba6b603bc4631e SHA512 49dbaa76653c1ca8fdba76f42944eca3e6bc1a142a3afaab149b6f6baa503573cfbd21ee960fdcac080b163dc878ed63adc000baca63f3300b6e9e1822d30068 diff --git a/www-client/firefox-l10n-id/firefox-l10n-id-71.0.ebuild b/www-client/firefox-l10n-id/firefox-l10n-id-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-id/firefox-l10n-id-71.0.ebuild rename to www-client/firefox-l10n-id/firefox-l10n-id-72.0.1.ebuild diff --git a/www-client/firefox-l10n-is/Manifest b/www-client/firefox-l10n-is/Manifest index 593594acc..d8cb6aa24 100644 --- a/www-client/firefox-l10n-is/Manifest +++ b/www-client/firefox-l10n-is/Manifest @@ -1 +1 @@ -DIST firefox-71.0-is.xpi 511990 BLAKE2B 8496ca11de1c42df889a123e3baaa86da82e1d15e119bf3c835349cf778ed426111779b4764847a104c264abf2fd6ae52dd4aeacbfe46485805fffcc545131be SHA512 4edae50ce11e5851036e9ca96755f6edb8564e3dad0c1439533fa774d4a3ecef47e1305f328cb798d59ac0d4ac6a918c229abb1849a60d99fbf0d2aee204bd8c +DIST firefox-72.0.1-is.xpi 515247 BLAKE2B 3947242e0e98cd48ed2921e26f95f431d1482c17614dc2770cb4090bd959efbc6ae0e5e0b97167fa721b255379cf1a83d1b61c9c46fc5635d9dc2ad0bf19b4b6 SHA512 0b4e17b1174e058d3caf6fc426dabfdc168eb2b94b1848d6ccb19cc2ff8ca5d20be8874e878f09c5728598b5363ac7eed9f9d37bc793f4803ad0bf8a4e0c8db8 diff --git a/www-client/firefox-l10n-is/firefox-l10n-is-71.0.ebuild b/www-client/firefox-l10n-is/firefox-l10n-is-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-is/firefox-l10n-is-71.0.ebuild rename to www-client/firefox-l10n-is/firefox-l10n-is-72.0.1.ebuild diff --git a/www-client/firefox-l10n-it/Manifest b/www-client/firefox-l10n-it/Manifest index b380783c2..a42cd2c4c 100644 --- a/www-client/firefox-l10n-it/Manifest +++ b/www-client/firefox-l10n-it/Manifest @@ -1 +1 @@ -DIST firefox-71.0-it.xpi 419131 BLAKE2B 3ce34681c22ab6ebe1754209333905858990d6eac113981947a4055b696d02f0e59c02b94c2d0ddc5763e8adc2bc5ecca5ae4b7afb6fccb8aab9a05eda098054 SHA512 6969ea91b05ab28406c71fdb61b137b244c254687cd32e73972be6a1014fb1b00d97c6c1111cbb16ae2a8e1e3de019b733ba8ce6a891762d1ad04412cdd7ff39 +DIST firefox-72.0.1-it.xpi 422281 BLAKE2B 9bef2b6be2022025a1356697acb1eec830e163a9be072a48b61f4e9c030d41dd311f9123fe2d6c2dc4919a6951ef6c32af3661880b32e94957e94fe4905261a6 SHA512 dcfec7102220dba320d2b5bbaee9494c3cfcd9eabfbedc895df8bedcda6d2fe287fbc92400e4b48b226fead650e1daddf61381303b197a65bd18afd92dbd6ed4 diff --git a/www-client/firefox-l10n-it/firefox-l10n-it-71.0.ebuild b/www-client/firefox-l10n-it/firefox-l10n-it-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-it/firefox-l10n-it-71.0.ebuild rename to www-client/firefox-l10n-it/firefox-l10n-it-72.0.1.ebuild diff --git a/www-client/firefox-l10n-ja/Manifest b/www-client/firefox-l10n-ja/Manifest index 890137991..3d264dea4 100644 --- a/www-client/firefox-l10n-ja/Manifest +++ b/www-client/firefox-l10n-ja/Manifest @@ -1 +1 @@ -DIST firefox-71.0-ja.xpi 577551 BLAKE2B aae4eb45bfc39e163489cc4d55ab305ee677f290ea0c1d01f0c2bbccbe46702dd0131a8b09623d7cda79089d1d5e470056baffb3bd99d79ebc45584eb001a8ea SHA512 f3d48747a0680414b9a421a44cb9f5ef0da9ffa7d43182c3437fe51be2081840056f2b29cc6aded34e690ee71e7108bd3385a60697a766fbf6710e63a6a0fafb +DIST firefox-72.0.1-ja.xpi 581036 BLAKE2B 69968c05157e1c4f94e3864c25aa773aa5a2c28bdb9558b87b38dbb4555495e27483b98fa6437e26b8baf8c24fa2a02197929fd25bdc8e2d04d07d5e36577edc SHA512 bb94487dfb47f76638440c05a041a74b9537fff042394a2c16df170bd25bb8525699004fc52926701d276b98bd22b08b29df4b19353fccc79e4896545c5de9ce diff --git a/www-client/firefox-l10n-ja/firefox-l10n-ja-71.0.ebuild b/www-client/firefox-l10n-ja/firefox-l10n-ja-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-ja/firefox-l10n-ja-71.0.ebuild rename to www-client/firefox-l10n-ja/firefox-l10n-ja-72.0.1.ebuild diff --git a/www-client/firefox-l10n-ka/Manifest b/www-client/firefox-l10n-ka/Manifest index a8687117a..3914409e4 100644 --- a/www-client/firefox-l10n-ka/Manifest +++ b/www-client/firefox-l10n-ka/Manifest @@ -1 +1 @@ -DIST firefox-71.0-ka.xpi 581703 BLAKE2B a8ad777ab9389dfae2d521d409fb98b61334bb1b3f536d0aa645db5b0450d436fa125756d72638b13cf5918d13da312e227ac2b11b5a31b633697c2766ab6d8b SHA512 e379d8b77e9d27a8e5662271f296eb8a0b53668114cf28a14708c12ace4d71c9d8fe904b07ec2c3e9c135e0728cc743919525df9ffa659cc75bfb06cdaa080a5 +DIST firefox-72.0.1-ka.xpi 584720 BLAKE2B 5f4a59a7c65a9fdec8f3356b4bd07feb7ef5339b1db36019701cef9520041062ef4bdbb1d39554cf1d549aade847a53f974883145f214154c19b73e4c9980163 SHA512 9219b8d5e72712fb4dbccfaf2b97770ab1b70a0715e9be6ef99e76c89823c65517ff047862917377c01458d8ad817fbbdfc22c87590a90894a5d2935bc27f7dc diff --git a/www-client/firefox-l10n-ka/firefox-l10n-ka-71.0.ebuild b/www-client/firefox-l10n-ka/firefox-l10n-ka-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-ka/firefox-l10n-ka-71.0.ebuild rename to www-client/firefox-l10n-ka/firefox-l10n-ka-72.0.1.ebuild diff --git a/www-client/firefox-l10n-kab/Manifest b/www-client/firefox-l10n-kab/Manifest index 7aa660142..014fa7a51 100644 --- a/www-client/firefox-l10n-kab/Manifest +++ b/www-client/firefox-l10n-kab/Manifest @@ -1 +1 @@ -DIST firefox-71.0-kab.xpi 538872 BLAKE2B 6a3d44c2b8cc021c81993dc6bb720c17b6eb845a384f507809e164d5c7e2ab42a8e2265ee9d409becfae7a9c9f5466ef5784966e37d7ada12ddf42a15cb123c1 SHA512 ce32215965ec1528b0451a5f93855f563c998e75bdf1b97d53744f23dd6583690919429893c7fa1c67f2abac5048cb1563d102c6a34e9872b17f56f39bdb7b92 +DIST firefox-72.0.1-kab.xpi 543922 BLAKE2B fea205dcba0e5c411b57d962c59788f9695e512d2f86c4636e8ea1c9ec25e9829c84915c52bcd92755040d8d0701471c4c2b16d0290c63a927065b9110fcc3d8 SHA512 2e0799436cc41195033688fc5c57bee1988e92bd4e1828e58eb63408a907503101a2b386bd02acb5aedd2f17da8ae91551a81e0292c59d9e4e8e3b3337b96637 diff --git a/www-client/firefox-l10n-kab/firefox-l10n-kab-71.0.ebuild b/www-client/firefox-l10n-kab/firefox-l10n-kab-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-kab/firefox-l10n-kab-71.0.ebuild rename to www-client/firefox-l10n-kab/firefox-l10n-kab-72.0.1.ebuild diff --git a/www-client/firefox-l10n-kk/Manifest b/www-client/firefox-l10n-kk/Manifest index 50e208398..9455b0660 100644 --- a/www-client/firefox-l10n-kk/Manifest +++ b/www-client/firefox-l10n-kk/Manifest @@ -1 +1 @@ -DIST firefox-71.0-kk.xpi 600169 BLAKE2B b89e024893bd9936fb8795f7fcd6c3976bbd8cb3600d71505ba84c5e45a682dc366e8d33530b0d770ea38ff0d626ee5d6ee75f34f4d01530607bb8b999a40568 SHA512 021c7c234f5e6482e281ae258060ca546a15221788f196656313c32a12ce893997f2fd2bd842b1967e4649ea111b610bedb10ec9799c67b863108da54d83ae7a +DIST firefox-72.0.1-kk.xpi 603717 BLAKE2B c6ffa665b24518fdec01c04d80d516384e3e7caafd25f0789f07571a58e890f6e0757be344bb1b87ea811944b42e1a63b7769636506f4c633d3244c5c8180883 SHA512 03b8772f4f8a773dd0490f38712bd84433614c3f17c426b3e1fa4c547860ac61511b1dabc4b2cf7c8d70b528f07991d359c68505a2aa40f378b10777c4fa87ab diff --git a/www-client/firefox-l10n-kk/firefox-l10n-kk-71.0.ebuild b/www-client/firefox-l10n-kk/firefox-l10n-kk-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-kk/firefox-l10n-kk-71.0.ebuild rename to www-client/firefox-l10n-kk/firefox-l10n-kk-72.0.1.ebuild diff --git a/www-client/firefox-l10n-km/Manifest b/www-client/firefox-l10n-km/Manifest index f11599008..565912c21 100644 --- a/www-client/firefox-l10n-km/Manifest +++ b/www-client/firefox-l10n-km/Manifest @@ -1 +1 @@ -DIST firefox-71.0-km.xpi 567777 BLAKE2B 50c28db6c17ad59dff8054599f9511a164f893dc5da8e18359333abaec9489589211ae48d8f3a48e3115672799e4c81ee6c58ef729c9e394632cdcf86ef66b85 SHA512 88e55b3b5d9829b5f2d4a3e99c4a0f3b763a9499e33f90d1c82e30f678e398ed2814f97925872da677d2dec9d8721dd869f42e504424c60207797627e9c03bff +DIST firefox-72.0.1-km.xpi 567153 BLAKE2B 1ba17f02962446e71b341d3ccc651a83050b4588a7e2dc38742fc354ba50b3960be5cec6c1efa3dd096d6eea5873033a311fd69082095f48e69227b637ac6cfa SHA512 9f8de7af458734fb0c43f553a15b7f9989c95907991c41d8d162521f22baa662e0a8a5a8887f5de0ea97f9f4943dbbe5765734c21e33151346c6ffb48cf13b90 diff --git a/www-client/firefox-l10n-km/firefox-l10n-km-71.0.ebuild b/www-client/firefox-l10n-km/firefox-l10n-km-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-km/firefox-l10n-km-71.0.ebuild rename to www-client/firefox-l10n-km/firefox-l10n-km-72.0.1.ebuild diff --git a/www-client/firefox-l10n-kn/Manifest b/www-client/firefox-l10n-kn/Manifest index 1631514cb..e6d7454af 100644 --- a/www-client/firefox-l10n-kn/Manifest +++ b/www-client/firefox-l10n-kn/Manifest @@ -1 +1 @@ -DIST firefox-71.0-kn.xpi 556675 BLAKE2B e192e077090ed05c5b228c0aa9deb7eacc4275ef29190027bce5d62e2e5db45fdd5d7a625053172d9f96f5e284c65faaf00d5d4c503d72132f663f342df2b61f SHA512 ce63cbc2c5b1336cb3626c2af4cbb1181dd7306e42ce757ae39d4e5ca42353f4cee2226724a71901f7ee3388c29780c3ffaa8cfe3289c3ce8d216eb7cff28dac +DIST firefox-72.0.1-kn.xpi 559907 BLAKE2B 4f9742128dc0f4c05a553fa2238ee79b0a43df0643a3d3a874c9365415a4aa8ee305c375d248f3432174cc19b046b658ac995a0e03b5e4742c562e40ff8c2c66 SHA512 4eca54081c968b932f4b0f855104a1117a56814cbabfd61df6d623680f9b6eff194c836eb9699162290919cae602e7a0b86e4b57718ab819bfbe70a9a0cd44ec diff --git a/www-client/firefox-l10n-kn/firefox-l10n-kn-71.0.ebuild b/www-client/firefox-l10n-kn/firefox-l10n-kn-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-kn/firefox-l10n-kn-71.0.ebuild rename to www-client/firefox-l10n-kn/firefox-l10n-kn-72.0.1.ebuild diff --git a/www-client/firefox-l10n-ko/Manifest b/www-client/firefox-l10n-ko/Manifest index 95667fe29..7b290e39c 100644 --- a/www-client/firefox-l10n-ko/Manifest +++ b/www-client/firefox-l10n-ko/Manifest @@ -1 +1 @@ -DIST firefox-71.0-ko.xpi 568484 BLAKE2B 659cdeae24375042b64e81e23459997cdbcf33618dbbf5adaae3e5586afb34b9a99dbef8f2d2deb8683455cca3e6970b1ab6c5b7827294d372817e561d6eba48 SHA512 8e62e364109028fa1c380d4571a1d9b777fad8492d700c6672a1165424b94ce2b0e9200651209c003b6bc6c414cd959214d8e9b404043e6de906092db56df7de +DIST firefox-72.0.1-ko.xpi 574045 BLAKE2B f98c4e6595532a4f83faf511e3d9ab4c7c5e9f5d020af09fd8483765848d03baa229b55a114ecedf94ce32298dad643389026ba8a2907448cd69f4cead36aa46 SHA512 70276b0197cacc38c8c8aeb051a330665ec63d09c2efda77ed29036245892db8f246da06998c9c553c64d49c5b43fdc9e143d6f3a5ac58e5f5e6e96869b7dbe3 diff --git a/www-client/firefox-l10n-ko/firefox-l10n-ko-71.0.ebuild b/www-client/firefox-l10n-ko/firefox-l10n-ko-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-ko/firefox-l10n-ko-71.0.ebuild rename to www-client/firefox-l10n-ko/firefox-l10n-ko-72.0.1.ebuild diff --git a/www-client/firefox-l10n-lij/Manifest b/www-client/firefox-l10n-lij/Manifest index 60708b0ff..e3da2a7c9 100644 --- a/www-client/firefox-l10n-lij/Manifest +++ b/www-client/firefox-l10n-lij/Manifest @@ -1 +1 @@ -DIST firefox-71.0-lij.xpi 503675 BLAKE2B 01afe58d9aff00d6d6b74a72f528e7c99b51339aa5034621eef901d4e911893ee04d757452f21aa591cfe0078bdd11872d4b743ff4935e84f7f06a9b77b5c50a SHA512 326cc28b07f5bbfe5d7e89da9e06c90609ed377b098d1bb6226205a72bbf7dac859871dce5c57d22ea7d39cf05de844de602e2e84c3d0ae31b57224353b17c14 +DIST firefox-72.0.1-lij.xpi 506889 BLAKE2B dd4422478217701e41e9060bf55124b02de02b9e0109b76a7c479bd7828f5b844b89675005fef154e1a004ed238845bb262a79bd9d5b05b03aadbf340c529384 SHA512 719ebaa65f600cf313a3ea6173712488cb8fb5238d02d949e20d2246ce98098c4595f9ef4a9a0e802ea4323377315c569b2e7e502da75a13d468a92ffc296ea9 diff --git a/www-client/firefox-l10n-lij/firefox-l10n-lij-71.0.ebuild b/www-client/firefox-l10n-lij/firefox-l10n-lij-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-lij/firefox-l10n-lij-71.0.ebuild rename to www-client/firefox-l10n-lij/firefox-l10n-lij-72.0.1.ebuild diff --git a/www-client/firefox-l10n-lt/Manifest b/www-client/firefox-l10n-lt/Manifest index 221299254..c0b67ffe9 100644 --- a/www-client/firefox-l10n-lt/Manifest +++ b/www-client/firefox-l10n-lt/Manifest @@ -1 +1 @@ -DIST firefox-71.0-lt.xpi 557431 BLAKE2B 6b0e0da582e8071875c58fe924b75267dd9d2261a55266f28d70c68caec6a89ae7a29011ffa9e858987e3553ddb57f5c116af80496306c0799bd3965253aa081 SHA512 72953d50567a70dfaf51022ba7fe82fee0dbb65ae674624284ee64d82298493b24c9055856b76dff2a6637d9b3d3afef691df3baebc968bcd334a569d16abb3b +DIST firefox-72.0.1-lt.xpi 560507 BLAKE2B 913e1547249d78ddc102e6c0163f623439eef7f1b1bed89be4cbf52fcf8847310777eaa50bb55d56c98716b477ba5c066421bf282a8f24277dfde880c6f3995f SHA512 b75eea1567dbe22420ff89de714f286713aac9ed1c247e67d93623ddf08fa2cae217882e48d8132a8cfd3f3f85f07d4925a6f2ad28a4b8a9138b050ab619e2fd diff --git a/www-client/firefox-l10n-lt/firefox-l10n-lt-71.0.ebuild b/www-client/firefox-l10n-lt/firefox-l10n-lt-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-lt/firefox-l10n-lt-71.0.ebuild rename to www-client/firefox-l10n-lt/firefox-l10n-lt-72.0.1.ebuild diff --git a/www-client/firefox-l10n-lv/Manifest b/www-client/firefox-l10n-lv/Manifest index 38845f07c..22de2f64b 100644 --- a/www-client/firefox-l10n-lv/Manifest +++ b/www-client/firefox-l10n-lv/Manifest @@ -1 +1 @@ -DIST firefox-71.0-lv.xpi 512014 BLAKE2B 9aa965ba1aa557d0bc2e850d23b6cc71db96f757885832f3598836a8e3f7181737cbc4c87a40690b5c9acf8c8919c58bd2e0868038d662aa858df977940c9d02 SHA512 53dad3698c72d9d160bfd3f9de20320f857bc7d77e99e9ef16ac61c574a3c29b40f6a3c0878e4859ebf7069b6ebe11243b13b7e2bf7a76cfe69fb294b1cd0db3 +DIST firefox-72.0.1-lv.xpi 515061 BLAKE2B 075a59e21de7c701dcbea9078e2285a75b72023f3b9328e6f5af5387430655fccd1e6332ef4a9650d9e25a7d14ac7fd7ada074a985520acd2afe6c60983a7f6f SHA512 3f886431658131b528556eadeddd9e9ff9d400f7f19cd745c0a2e521c1ee327546f717e526796e471be9aeaea7b66c8dc1053374cecd5fc0daead9a7a704dedf diff --git a/www-client/firefox-l10n-lv/firefox-l10n-lv-71.0.ebuild b/www-client/firefox-l10n-lv/firefox-l10n-lv-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-lv/firefox-l10n-lv-71.0.ebuild rename to www-client/firefox-l10n-lv/firefox-l10n-lv-72.0.1.ebuild diff --git a/www-client/firefox-l10n-mk/Manifest b/www-client/firefox-l10n-mk/Manifest index b1410c9d2..bcb7ced5a 100644 --- a/www-client/firefox-l10n-mk/Manifest +++ b/www-client/firefox-l10n-mk/Manifest @@ -1 +1 @@ -DIST firefox-71.0-mk.xpi 486549 BLAKE2B b7baddb8e8b9ff633030f1827af63471a65740a09f7758457d1fda785da99fa517ef2e37cd561e7f86411a9eace58ac601af2dc0c53ec47775d4d1357a5abb34 SHA512 65999ca3ef0a20433dcb3192e98894c50551ad03f4c4f263fabc34af7adde699a075aa884d1f28af34d447b70d4285f3d74a59f8ddc4345bb6fb62232e954805 +DIST firefox-72.0.1-mk.xpi 489183 BLAKE2B b03a55258ec68b5cc2b7b68175d1160359d11925beffb0f6615373f8cbd021b0cdbab924fae2a61c04c12e896539b594927348a67aa0bcfd8d73df06f0179694 SHA512 a83f26266e5af2b9dab0423db131c59a3ce9aca332aae3a1e62e44dd69aa93188aa03ecf44add5912470ae46ab619c34b31109703aad169e1e59d803bbd9ba52 diff --git a/www-client/firefox-l10n-mk/firefox-l10n-mk-71.0.ebuild b/www-client/firefox-l10n-mk/firefox-l10n-mk-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-mk/firefox-l10n-mk-71.0.ebuild rename to www-client/firefox-l10n-mk/firefox-l10n-mk-72.0.1.ebuild diff --git a/www-client/firefox-l10n-mr/Manifest b/www-client/firefox-l10n-mr/Manifest index b1b451659..590248368 100644 --- a/www-client/firefox-l10n-mr/Manifest +++ b/www-client/firefox-l10n-mr/Manifest @@ -1 +1 @@ -DIST firefox-71.0-mr.xpi 587809 BLAKE2B 7aee66e42a5996362621b0ed48b6027fccdd3e7c5659021d7a8abf05869ff1096e1a3dcbfd2740df930eb288c493b040d3a8c8861a0b831b06888d9b4c4e1aed SHA512 b974c9e4161603caaa804d51bcab47e9a4adfa522b8adaf78005d977077bdba1f84c6a91790f57db597aa9de028dc0a96b45b8fafdfdfa4b3610c3e19b51eb8d +DIST firefox-72.0.1-mr.xpi 590679 BLAKE2B a3504a0c8533735a61201563881d67e5623439442418bc2288955296eca6fc4c03501bbf2f40a26b38e0799e47243a0155e32d0c7d4d55692575f2af630c1ec4 SHA512 11729b0aba398b34a866058f2a3272e415dc2928a6a2a57075bee2e7b18965519665eed20874662d1a0d3509a91ebae0e592df516ddf7d892a49b5fa0a52bb8b diff --git a/www-client/firefox-l10n-mr/firefox-l10n-mr-71.0.ebuild b/www-client/firefox-l10n-mr/firefox-l10n-mr-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-mr/firefox-l10n-mr-71.0.ebuild rename to www-client/firefox-l10n-mr/firefox-l10n-mr-72.0.1.ebuild diff --git a/www-client/firefox-l10n-ms/Manifest b/www-client/firefox-l10n-ms/Manifest index a25db0947..fd6739ce6 100644 --- a/www-client/firefox-l10n-ms/Manifest +++ b/www-client/firefox-l10n-ms/Manifest @@ -1 +1 @@ -DIST firefox-71.0-ms.xpi 493978 BLAKE2B 87004cb4e49a47b1c5014a17d6b4a7d9e08f5941456560a2300a9f0289ff214506cb453d04d86f7ac1e8714b0e5528bc53f9c5a356af70d1b7152f9b6e190c48 SHA512 a1c31fd7ff4bc219f592e0a9b1b781694ff6b8749b164ef5f4c6ab8db381f4fdff9257777a89a450bb8c5d5ef6f5e415cace48d6441a3f76a3533811201a1a3c +DIST firefox-72.0.1-ms.xpi 496982 BLAKE2B abbc3cb43f958d136c776ceef7c570a95ac88aca3ae24b3e186dc889a77269562e58ab84a6c40b3e7116b3f26be3d8e1e533be84233eebe4a215b0739050df0a SHA512 a816269e728582e5007c47f2a4d05cbac7ed89f1642da4cd23462ddbb7e1e2dc023650d7dd4362ebf188848affef93003f7b009d3b02a56ac409666cd9427926 diff --git a/www-client/firefox-l10n-ms/firefox-l10n-ms-71.0.ebuild b/www-client/firefox-l10n-ms/firefox-l10n-ms-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-ms/firefox-l10n-ms-71.0.ebuild rename to www-client/firefox-l10n-ms/firefox-l10n-ms-72.0.1.ebuild diff --git a/www-client/firefox-l10n-my/Manifest b/www-client/firefox-l10n-my/Manifest index 047d275be..85a9b2646 100644 --- a/www-client/firefox-l10n-my/Manifest +++ b/www-client/firefox-l10n-my/Manifest @@ -1 +1 @@ -DIST firefox-71.0-my.xpi 559302 BLAKE2B 120a6c4e5a8cd9aeebd2934ade92e357763088ce71bea81528998e95e11772b3ec7aa08c67ac908744d3cce151f4d9269faebe6e4eac94eb402e85f93d05ec6a SHA512 5a4afb550fbc3649875ce09a269f39cfb5b893cd0a62e85c3b2ba02d87a7ab51ceed16a323a2bf8501ffa27ba57cef54b0cb730d931de569d4bc176427615ed5 +DIST firefox-72.0.1-my.xpi 561643 BLAKE2B 01ea7cb423bd7bfd014a4513842eef81a6bc0131ff7131fb5ad66ec1f566de8011d5add4f8e72f69567770593e3afbe8e6e57a965e6de0c8aa3d4e496606cf66 SHA512 deec98cdbb6ce76872f397fa7be220616203557a61a14f9e27d482fd0be4ffe9278a1a503ef2f8f11fa769526fd9f9df6401d76a24d9a0530270fe53ff5704a3 diff --git a/www-client/firefox-l10n-my/firefox-l10n-my-71.0.ebuild b/www-client/firefox-l10n-my/firefox-l10n-my-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-my/firefox-l10n-my-71.0.ebuild rename to www-client/firefox-l10n-my/firefox-l10n-my-72.0.1.ebuild diff --git a/www-client/firefox-l10n-nb-NO/Manifest b/www-client/firefox-l10n-nb-NO/Manifest index e7d2449e5..c7c5bf8f8 100644 --- a/www-client/firefox-l10n-nb-NO/Manifest +++ b/www-client/firefox-l10n-nb-NO/Manifest @@ -1 +1 @@ -DIST firefox-71.0-nb-NO.xpi 523511 BLAKE2B 6eed4201d55415ac2b256db03cd9bc5e05cc283fa9ccd3299f3ee8960e2ba36f6858ae8537d6ea025b48f3038fa5091bd94d5e043efa1606e1ef282e5c931659 SHA512 7361f3326b69b60cc646d6dd046217012fd7ba592ef477d5326c6b2d9582452402faf5526c54045466149a3c5c3d58932a0bace568df9f6b5ba3f0497766c763 +DIST firefox-72.0.1-nb-NO.xpi 526169 BLAKE2B 17726b81f68dc0a9896eee379cc2fba0d94b0d3bd72a6ec1550e71d0bc04b9cab95b1b620d65d4569a4c3ea1928452c43cd380780318092f0cfbf4af50aa3a19 SHA512 a1ce2f3cbfb5a318b15fbbd3ba797dabf4fc71baff36ae6fe38375c1e2da9b197e97ea54405256bbc69f50a6e7cc606d4e47858994b9adee3abbaf24d96ce03f diff --git a/www-client/firefox-l10n-nb-NO/firefox-l10n-nb-NO-71.0.ebuild b/www-client/firefox-l10n-nb-NO/firefox-l10n-nb-NO-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-nb-NO/firefox-l10n-nb-NO-71.0.ebuild rename to www-client/firefox-l10n-nb-NO/firefox-l10n-nb-NO-72.0.1.ebuild diff --git a/www-client/firefox-l10n-nl/Manifest b/www-client/firefox-l10n-nl/Manifest index 1b58a6798..ec17478d4 100644 --- a/www-client/firefox-l10n-nl/Manifest +++ b/www-client/firefox-l10n-nl/Manifest @@ -1 +1 @@ -DIST firefox-71.0-nl.xpi 524570 BLAKE2B 368c985772359104beb7d42be988cb33cc1f164d211a71dc07e8335926ffbbaaa7c431a0d677545746e561648f4d8d10ee80794f44c4b2777ebe9d4e6bdc5677 SHA512 ceec58edde446532170b2d7eff98f8b041c9563240547d4ada786f47de8b6e8212ed4048052b8157f241e8950e2e80759f979d3aa09537c3b19ed2ceec37f447 +DIST firefox-72.0.1-nl.xpi 527678 BLAKE2B e5e8bc6f06d8b59a8a73f0496ceb5a4184873f300e50359bc61c53996e6b791eb68d0dc054102f50ed22be0278c5745866c339ac295f30771d4eecd4909dc066 SHA512 8e102b450df30bea8fd3d9c84ee0370446656ba64d0c2c20bf0b10111af78d8ecc3a00cdddb021e58ec347d8022b5b2a161c5a48785d001184ebf9e0c528ff30 diff --git a/www-client/firefox-l10n-nl/firefox-l10n-nl-71.0.ebuild b/www-client/firefox-l10n-nl/firefox-l10n-nl-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-nl/firefox-l10n-nl-71.0.ebuild rename to www-client/firefox-l10n-nl/firefox-l10n-nl-72.0.1.ebuild diff --git a/www-client/firefox-l10n-nn-NO/Manifest b/www-client/firefox-l10n-nn-NO/Manifest index 7bc94b784..03c4e950d 100644 --- a/www-client/firefox-l10n-nn-NO/Manifest +++ b/www-client/firefox-l10n-nn-NO/Manifest @@ -1 +1 @@ -DIST firefox-71.0-nn-NO.xpi 524675 BLAKE2B ff616f3dc46381565d04e6b70deda4b65c758218a876b6b09a683d53af1942a237e8631d48939c3dc48e52d14217d3a86634add2069bdfe87958aedfa5db65fa SHA512 4f2b10b69df0da5a99f88dca043cb4814bd06c635e86b877e3e25059d323335ac58c05a6c7a9503b77a26b355677ae9aec5708e73ca35e15d8d6137f3efddc3d +DIST firefox-72.0.1-nn-NO.xpi 528069 BLAKE2B fe7fc1d88b46f2a7a2c6f56e02a08283ede34772598424883729ec61a7320d05f2f4cb0f0943222d81a31f9fa9d8707a6fc7574d84a3704088b1b344f3c6e015 SHA512 46c04140efe62dbd0d55a98149ae4fd6744445ada5b4f72d83f06bfa3737138da4d00781cb4f85bf8d2270d0ea05144fb1bb7a814608a81da46ba400864c5b87 diff --git a/www-client/firefox-l10n-nn-NO/firefox-l10n-nn-NO-71.0.ebuild b/www-client/firefox-l10n-nn-NO/firefox-l10n-nn-NO-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-nn-NO/firefox-l10n-nn-NO-71.0.ebuild rename to www-client/firefox-l10n-nn-NO/firefox-l10n-nn-NO-72.0.1.ebuild diff --git a/www-client/firefox-l10n-oc/Manifest b/www-client/firefox-l10n-oc/Manifest index c148e0816..2070fd0ee 100644 --- a/www-client/firefox-l10n-oc/Manifest +++ b/www-client/firefox-l10n-oc/Manifest @@ -1 +1 @@ -DIST firefox-71.0-oc.xpi 513068 BLAKE2B 153f5216ee9df0414fd38e989535f2ad3f6d208f01aff99b3120c601b6dc111ad92d34e2835ed5fe6921a46b6be67463a1be77859e8fa20d14ebecacf3d69add SHA512 27699f83c94bb184491db81c3add9fa7672014613c7e807e90a79e0113618f48e54c7fa86c920c742b31de350f3e2ae7cb48e69a4584489369d1e887a6029be9 +DIST firefox-72.0.1-oc.xpi 516120 BLAKE2B 94e3f5555489532c021df12d43f63d92151c1d34629c7e616f7c346fd8aa4bd7726c8f4a51ec8ea30bb643fae87816b5c32328485b34be92f9f6caeb909fff06 SHA512 7429d75c5bded088bc76ed8bce880769edf8e55b9240cee74c7e07617011c24b694ed9b9c4ed845fa19fb112c5d2f155cfc5b0d0d4e8049b5f27ee169a9a9829 diff --git a/www-client/firefox-l10n-oc/firefox-l10n-oc-71.0.ebuild b/www-client/firefox-l10n-oc/firefox-l10n-oc-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-oc/firefox-l10n-oc-71.0.ebuild rename to www-client/firefox-l10n-oc/firefox-l10n-oc-72.0.1.ebuild diff --git a/www-client/firefox-l10n-pa-IN/Manifest b/www-client/firefox-l10n-pa-IN/Manifest index aaa32e7f5..7ae6443bb 100644 --- a/www-client/firefox-l10n-pa-IN/Manifest +++ b/www-client/firefox-l10n-pa-IN/Manifest @@ -1 +1 @@ -DIST firefox-71.0-pa-IN.xpi 567890 BLAKE2B 904da5c4d648046e02bc0997426d01459dcfd99136c01273aa8ae1fa512439019c9b4421193b350a92b148f7f112c3fea55b9c3c8f7c35a5fdf687cadc50e3ed SHA512 b212e75badefb7ecbb003b8745202d187eb016ef2ca2fa17fc0d287517ba03da60bf6370d2c85350d9a4cedb0cbc4069dcffaf9da18f7c761b75b243442e09da +DIST firefox-72.0.1-pa-IN.xpi 571206 BLAKE2B e23f3ae01de84f748cea89b57d93dba13285eb96ce15014d629a85649c5c525683d3e95db53c223118cdbffff7f341887db0864df249950af11a12a680aed342 SHA512 1f4122aee2169fda03feb121edbed46238911483b46851f1928610fefaa6ade432fb0ff7081df1e71e4ffb2649eff8972f7be016293820442ce75270d5cd2424 diff --git a/www-client/firefox-l10n-pa-IN/firefox-l10n-pa-IN-71.0.ebuild b/www-client/firefox-l10n-pa-IN/firefox-l10n-pa-IN-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-pa-IN/firefox-l10n-pa-IN-71.0.ebuild rename to www-client/firefox-l10n-pa-IN/firefox-l10n-pa-IN-72.0.1.ebuild diff --git a/www-client/firefox-l10n-pl/Manifest b/www-client/firefox-l10n-pl/Manifest index 8dc41c6de..b31d139ab 100644 --- a/www-client/firefox-l10n-pl/Manifest +++ b/www-client/firefox-l10n-pl/Manifest @@ -1 +1 @@ -DIST firefox-71.0-pl.xpi 537708 BLAKE2B ba395854d4d0c8db63f67115f5e3fee99a1d362d02f9baa9a103d93769ee555084a31369c50bfc74882e45b38559de24b0add1d18a878882733aa57027a4dd8e SHA512 816ec98bff27904e4324cbf72d00821957e12d7822eb3c92f2ef0e5d2f94076083cd95aaaaa88cea220eb28d59800d97c3912fac68f9cb01bb99b931802eb688 +DIST firefox-72.0.1-pl.xpi 540722 BLAKE2B 35f0b9d252ab944bafea875953dd65e498d92d2d92fd40ad300574eb3e7616fdaef76b40da7768ee4ddec516682220ed293835fa5badcdaa37f5863fc5c0690f SHA512 bf58c7992aadd074f1bcc8739eff3db5057f1c68d1636d458edf0482f5bfa8cf5e6cb50f5d134ee987abd6070b39ec50c4a4290cdfc34ae60e8b36bef6ec0baf diff --git a/www-client/firefox-l10n-pl/firefox-l10n-pl-71.0.ebuild b/www-client/firefox-l10n-pl/firefox-l10n-pl-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-pl/firefox-l10n-pl-71.0.ebuild rename to www-client/firefox-l10n-pl/firefox-l10n-pl-72.0.1.ebuild diff --git a/www-client/firefox-l10n-pt-BR/Manifest b/www-client/firefox-l10n-pt-BR/Manifest index d3572fec2..d9aeb76d7 100644 --- a/www-client/firefox-l10n-pt-BR/Manifest +++ b/www-client/firefox-l10n-pt-BR/Manifest @@ -1 +1 @@ -DIST firefox-71.0-pt-BR.xpi 526408 BLAKE2B 40d18fc46b59654dba7dc5d977b1b3f62fb18a1a3a639d8bc9ef541e32a9b54a5b5abe2b83d85a8e6039d25f2b22d21d82f8da8e2f071a77bedc524560ed0926 SHA512 2f8043266a894c9b5c810902ca70bc9762ca5ac9986250f7ee89a0dc6d78245f3663ee2d2c1579b4d89ed20a39a58721975167ea5e887f853fe4a40fd5995ec7 +DIST firefox-72.0.1-pt-BR.xpi 529294 BLAKE2B 4b2f2e414700e4e9e17be4c9fa4edaad109ac9dd4fad0c3f6e610c7962b8907d3982e09ff4d3672401344c6d39dc54eab965fa6d63fd1f2bd37f819ff0a04e6f SHA512 5f735be5b4743c7d2f08d2d9aa70982af4d93eaaf2d778714534494a41a90f90d735ed6182f6a91c10b388b400cd0bc2a098c889c4f41a58d040af045297fc43 diff --git a/www-client/firefox-l10n-pt-BR/firefox-l10n-pt-BR-71.0.ebuild b/www-client/firefox-l10n-pt-BR/firefox-l10n-pt-BR-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-pt-BR/firefox-l10n-pt-BR-71.0.ebuild rename to www-client/firefox-l10n-pt-BR/firefox-l10n-pt-BR-72.0.1.ebuild diff --git a/www-client/firefox-l10n-pt-PT/Manifest b/www-client/firefox-l10n-pt-PT/Manifest index b833b8a76..0670914f6 100644 --- a/www-client/firefox-l10n-pt-PT/Manifest +++ b/www-client/firefox-l10n-pt-PT/Manifest @@ -1 +1 @@ -DIST firefox-71.0-pt-PT.xpi 536024 BLAKE2B 7a1fcfb662dffd51ba58ba489e4e1980ef423969c0bdd19b627b5543896b2546dcaa52d8f1db9d0152890e407b16ad7cb5c4cd29530e525a0d27e87c3c03e2a6 SHA512 9d239cc219bd5971305ae961d96498785910cdc6421cecb905af2cf294288547a2124506e68e6af453426dea691cd9a318ec577303f1aa793ecac51ac6998cbc +DIST firefox-72.0.1-pt-PT.xpi 538666 BLAKE2B 2f1e79e1205fd3747389e3c96a2fd944a22bef3531371343212656f437ef7da492dc179e11e1f4877e283caaad70c496a269c5c862f28d95ec3d080808882d25 SHA512 0079dd1316014e3c6343b05027efdb8934b8a62db7151f0af36ba3a2627f02c086a4dd2ab03b51058387175a4a7bf9f55ef442c20c71add4d70f8284bf02d8b6 diff --git a/www-client/firefox-l10n-pt-PT/firefox-l10n-pt-PT-71.0.ebuild b/www-client/firefox-l10n-pt-PT/firefox-l10n-pt-PT-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-pt-PT/firefox-l10n-pt-PT-71.0.ebuild rename to www-client/firefox-l10n-pt-PT/firefox-l10n-pt-PT-72.0.1.ebuild diff --git a/www-client/firefox-l10n-rm/Manifest b/www-client/firefox-l10n-rm/Manifest index fab0fcfb0..491dbffeb 100644 --- a/www-client/firefox-l10n-rm/Manifest +++ b/www-client/firefox-l10n-rm/Manifest @@ -1 +1 @@ -DIST firefox-71.0-rm.xpi 530028 BLAKE2B 6759f5a9b2d1517aa274e86056dc50472866ef1ace1415e3d2a3ef28d2fef580a3a79c7b4a27ae5030bd463a13d1438bea0021e9dfacb4bb980ebae14ee1450e SHA512 59a83fa77db1f1a06562a1bd884207ac86de9d7571f760badeb172bff9e06e6a7570a0e76c302095ce91365d82d8336829ce56ad782e5646a03efb2f3fc2fa3c +DIST firefox-72.0.1-rm.xpi 532462 BLAKE2B fa93293c9e15995535bfd5c45d07967e601fdf39065215f7bcf90172b2e1bf6cf6a22979b45e31fbb8259cac7747043957cea52af11e93b4a4cc8fc2c5169bc2 SHA512 5989394204e072d27a47ec02ec236968dc311f7ee04ab1cbd6d0559c168b1de2b401b56524e40be4d934591cd2366feaa719f7f36aa8bee1d62bb9465918936e diff --git a/www-client/firefox-l10n-rm/firefox-l10n-rm-71.0.ebuild b/www-client/firefox-l10n-rm/firefox-l10n-rm-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-rm/firefox-l10n-rm-71.0.ebuild rename to www-client/firefox-l10n-rm/firefox-l10n-rm-72.0.1.ebuild diff --git a/www-client/firefox-l10n-ro/Manifest b/www-client/firefox-l10n-ro/Manifest index bf7009b1b..cc9d1192d 100644 --- a/www-client/firefox-l10n-ro/Manifest +++ b/www-client/firefox-l10n-ro/Manifest @@ -1 +1 @@ -DIST firefox-71.0-ro.xpi 535696 BLAKE2B d8e3767f06f5e1b8bf04ccae829c4f0ae08d0f76039800fd995d5048ad5c0ce2ae556e42198d2edb54d9d8553de5552314bc01b941d7bb3e4937fe1d463385f3 SHA512 d95be9886facef792e98b7b7ab089baa2bb78477a3fec57958b502f5c820d845f7ec1dac1f3908e9201eeb1c5dbc354751f136d41815a1101c10af7bc1258e18 +DIST firefox-72.0.1-ro.xpi 540273 BLAKE2B 30387482a450e5f4b63a8a0deae8bfd2979e116ba4d05bab4738feacc546520a8625af31befc1eb092209b4ebada115728e65728f39b5799b517c335eca5414f SHA512 8b722d7d089ffa13fd93f259e24e479b812140aec533813c33a2605bf616e0b49c0119852368cf12aeea323fb3d0125060c26b82c26ca9608f1cdd9f9e7ee862 diff --git a/www-client/firefox-l10n-ro/firefox-l10n-ro-71.0.ebuild b/www-client/firefox-l10n-ro/firefox-l10n-ro-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-ro/firefox-l10n-ro-71.0.ebuild rename to www-client/firefox-l10n-ro/firefox-l10n-ro-72.0.1.ebuild diff --git a/www-client/firefox-l10n-ru/Manifest b/www-client/firefox-l10n-ru/Manifest index 6b7fcd84b..496919f04 100644 --- a/www-client/firefox-l10n-ru/Manifest +++ b/www-client/firefox-l10n-ru/Manifest @@ -1 +1 @@ -DIST firefox-71.0-ru.xpi 619122 BLAKE2B a09d007c9efec58d205c094e50dda76b47912b13ae949aa9b1ed4e592d50c7fbb45e82f53bed377b463c5db5b2d0f2123260764a10356313e211f1a03c2ef1c3 SHA512 1312b7c3cfb2f31c12e9e21b05fb1fb19a1d34e225231e155d51a52d6f3d9fd8f02bf72a5a34e05354ad0286e223428e9061fb464d4298f00aa37bc948099576 +DIST firefox-72.0.1-ru.xpi 622758 BLAKE2B 493fab3ecf1f89b74c1d03682f9d6d9c9af3cce6dd7e2d1a53c881a80300140ef3905a0d9d367203e30c80c511125bf85335a6e49a4ab8fc1c22c51bc1b39d98 SHA512 0864f0940b81bcf7939d34931fdd51435cce9facbbdbf2ddbd78c0eaa79d4c3a9674ac847f18dbc0ba76a03b3c484fa8fc0777a73a2dfe3b50e046a21e317e97 diff --git a/www-client/firefox-l10n-ru/firefox-l10n-ru-71.0.ebuild b/www-client/firefox-l10n-ru/firefox-l10n-ru-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-ru/firefox-l10n-ru-71.0.ebuild rename to www-client/firefox-l10n-ru/firefox-l10n-ru-72.0.1.ebuild diff --git a/www-client/firefox-l10n-si/Manifest b/www-client/firefox-l10n-si/Manifest index 3285a4ce2..0df4db353 100644 --- a/www-client/firefox-l10n-si/Manifest +++ b/www-client/firefox-l10n-si/Manifest @@ -1 +1 @@ -DIST firefox-71.0-si.xpi 534498 BLAKE2B 438a08cfdc6127792971abef940df09d031d20111e96aa55ace7b2ba90f4b593d5f935bc3599576eaddcfb1874d0d76661bbc18c46132ed8b6e6a665a560ea00 SHA512 47acc4dc3daaf4decb2b351f678e092cd0fb1b53484f48d0ae695f61da0aa6b2082bed3e2fec85b814d206ca0cdcea7810002e52b1b8930221a432e5c15a167d +DIST firefox-72.0.1-si.xpi 537653 BLAKE2B c283e20cf6fc6a2b8e66f36a078c9c2b2f2fd30805add45de2fd91de378b24b8043eac38c34c7de7696781ac70998e6861c0bf5038626c3395461ce7c069a561 SHA512 6e5560c9b7affff818cbd1152eb872e2c2fa962a7397dccfea55f1e6d2625c4cd0d4424cbe9d41ed85cb6a62fb263411bf966eb2f3985286ece7cd3bfaa35eea diff --git a/www-client/firefox-l10n-si/firefox-l10n-si-71.0.ebuild b/www-client/firefox-l10n-si/firefox-l10n-si-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-si/firefox-l10n-si-71.0.ebuild rename to www-client/firefox-l10n-si/firefox-l10n-si-72.0.1.ebuild diff --git a/www-client/firefox-l10n-sk/Manifest b/www-client/firefox-l10n-sk/Manifest index d0a8f6add..e0a250d9e 100644 --- a/www-client/firefox-l10n-sk/Manifest +++ b/www-client/firefox-l10n-sk/Manifest @@ -1 +1 @@ -DIST firefox-71.0-sk.xpi 555932 BLAKE2B 42e7ec48fc5458f716f2a87cd492d9fd8ce21d332a46abb38764dad8d4c86590bf0c5b0c168859ecf6e961dfbbb02fd51abf560d5a34b18a8e0902de9e53f4fc SHA512 6b51f0cc9a46a0ad1e6760d71545cf9d94c58eb42cd9fd9ec30af8f75c867036baf45f78075130a3dc0a9544a47df84cc51d3b4305cf02a268143671f29efac5 +DIST firefox-72.0.1-sk.xpi 560174 BLAKE2B bc866e46681def4971ee61f3093f197c6efa67c0e56098f935ea250fb8707f9e6e568c7026470239db054c6bcb205d007bf31111fc63d9954bb2e185773decc6 SHA512 67dda5000b57d13501089c43b776ce93dcfc0a3787c3ee0906c97a60f28d7c9577c4dba7116402c2853920e4b78188ef888dd60f5d8b8399c44bb2acaf768f93 diff --git a/www-client/firefox-l10n-sk/firefox-l10n-sk-71.0.ebuild b/www-client/firefox-l10n-sk/firefox-l10n-sk-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-sk/firefox-l10n-sk-71.0.ebuild rename to www-client/firefox-l10n-sk/firefox-l10n-sk-72.0.1.ebuild diff --git a/www-client/firefox-l10n-sl/Manifest b/www-client/firefox-l10n-sl/Manifest index 4c0b2ec48..9fd0d8f11 100644 --- a/www-client/firefox-l10n-sl/Manifest +++ b/www-client/firefox-l10n-sl/Manifest @@ -1 +1 @@ -DIST firefox-71.0-sl.xpi 536716 BLAKE2B 3afe4ba8cb373c7de38e15be371f2a4d8eb2b5b13f58b3124d4f6f8530e9d7bd051077f9b2a8ce6e6a53596c15d45e61c7beaa5b3b0cabb4731db2d66d500f46 SHA512 9128c70423915dd05a68e4e2ebb79e9e979641e79cf5815f125589cad42a7a4023f03a548ea21797d9cf0cfd5695de4838601b00287365efcad2d4e438f6fa9d +DIST firefox-72.0.1-sl.xpi 539904 BLAKE2B ee17782a5646527e58de15c34573064e1aeb32a38c2311dab520bc738d52d7dbca4d25e9129c87d691dd4622cb7a29e712b0ea51e44a489e4fbab3498d43440f SHA512 a9cb353b6eebaccac08310d1839943570c82c63f81360d9bfdd5e44ac0c1e514f97a8efdfd8514dcd8f99b3f718532e58d118944a1d672e62114b3e919899df0 diff --git a/www-client/firefox-l10n-sl/firefox-l10n-sl-71.0.ebuild b/www-client/firefox-l10n-sl/firefox-l10n-sl-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-sl/firefox-l10n-sl-71.0.ebuild rename to www-client/firefox-l10n-sl/firefox-l10n-sl-72.0.1.ebuild diff --git a/www-client/firefox-l10n-son/Manifest b/www-client/firefox-l10n-son/Manifest index 6c08a277f..b9b3c1131 100644 --- a/www-client/firefox-l10n-son/Manifest +++ b/www-client/firefox-l10n-son/Manifest @@ -1 +1 @@ -DIST firefox-71.0-son.xpi 462534 BLAKE2B 03b682aea3de01090a7990e69786e0a737b5aabb31228297819f29aaa5b318fc7bde75d76032ccb1e358396f3e792a9501333526f1751d00ebbc5091b2fc9efd SHA512 59f2dab3d8c45cf2ceca88db890a50f0ecda58203c4e669d9276e5424c34a547c1e3ae432df86a27eef5e7188afc030fb5daba3cc9dddccb76b8f860f4cd945e +DIST firefox-72.0.1-son.xpi 465364 BLAKE2B ceeb95ca9e7505e15742f5deb454301fbf8900597a486a274d7a75c7548785a37843dc940ae05a788550d98aaee393dee5a9eeb6068f295d795dd90ed44695d0 SHA512 2b8aaebea1499c1e419decbe6ff14c6835f5e74d9fa17fd6249371c1e051c89b55e20da894a62899976d1f8d1cbe230f54806a251bf4da4bc1f54e2739a28b47 diff --git a/www-client/firefox-l10n-son/firefox-l10n-son-71.0.ebuild b/www-client/firefox-l10n-son/firefox-l10n-son-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-son/firefox-l10n-son-71.0.ebuild rename to www-client/firefox-l10n-son/firefox-l10n-son-72.0.1.ebuild diff --git a/www-client/firefox-l10n-sq/Manifest b/www-client/firefox-l10n-sq/Manifest index 5756aff76..0e2b6435c 100644 --- a/www-client/firefox-l10n-sq/Manifest +++ b/www-client/firefox-l10n-sq/Manifest @@ -1 +1 @@ -DIST firefox-71.0-sq.xpi 549892 BLAKE2B 0991659203c1868195828684aacdb33d1b2df6cb797dfa00c10dc6ea5a366e5493ee6efc270f2c105677bc427d5da5f2f94426470da06d2b8079712a00a00a7a SHA512 b2ad1a895bc4c22b0814a6ff8a5dd8a93c92155da8373e35383776451b9e67b8da4c57354bd40428c4b0ec60e4420bd953cb2643a98c438d04a737de17fcf905 +DIST firefox-72.0.1-sq.xpi 551704 BLAKE2B 3196370bcb870f047afbf3232c6158ef4b33d9e98276ee753520f23396ea4a33632a090bc83ed1e85d1a8f9eaa8eb67df7898d80c85383dc54c3614ba5f1de5b SHA512 143cf49ef18997085d03e3f5049f652f94a048b34e5a75cbbeab776d3350638e9260d6d3bf5f3a9258b56aa449ea2a60ccdb35f95876a723351b72559efce2f2 diff --git a/www-client/firefox-l10n-sq/firefox-l10n-sq-71.0.ebuild b/www-client/firefox-l10n-sq/firefox-l10n-sq-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-sq/firefox-l10n-sq-71.0.ebuild rename to www-client/firefox-l10n-sq/firefox-l10n-sq-72.0.1.ebuild diff --git a/www-client/firefox-l10n-sr/Manifest b/www-client/firefox-l10n-sr/Manifest index 614b3aa55..7c59a6990 100644 --- a/www-client/firefox-l10n-sr/Manifest +++ b/www-client/firefox-l10n-sr/Manifest @@ -1 +1 @@ -DIST firefox-71.0-sr.xpi 552127 BLAKE2B efadff83b67c36841b8ee2c4400fc349100b53ce27b14401a5c0d2dff5eb8f5c205acf6559c2c74eba91eb8abc850c4ced3db3d8a0d16a2b2f153dd9f40de215 SHA512 7fd176602b632cbb09e7043a5daf12ccbbaa1c0d4a47829113788985b142f6df5a85cb33a5fc695aab27f7dc06edaba08b93a924edbeff2aa8471d547fbac2b8 +DIST firefox-72.0.1-sr.xpi 555529 BLAKE2B cdd462bcb552ff35ea6a970caa1cd3ccc2baa93ebde403f2887f54cc9326520b51efabb8b763d5a7fce35867aa2f1ef67dfaa972f61089cf0ed8b81cd7f75ea8 SHA512 3adc5bf0ef7c1b56cb30a0abb1f059cfcf69eaa64818081432d88bdbd280300e237c57605231f78fcae43db4e6193e3dcbc81820ae8298add7b094d98dd0ca17 diff --git a/www-client/firefox-l10n-sr/firefox-l10n-sr-71.0.ebuild b/www-client/firefox-l10n-sr/firefox-l10n-sr-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-sr/firefox-l10n-sr-71.0.ebuild rename to www-client/firefox-l10n-sr/firefox-l10n-sr-72.0.1.ebuild diff --git a/www-client/firefox-l10n-sv-SE/Manifest b/www-client/firefox-l10n-sv-SE/Manifest index 3e37f8c11..99ec4fbdf 100644 --- a/www-client/firefox-l10n-sv-SE/Manifest +++ b/www-client/firefox-l10n-sv-SE/Manifest @@ -1 +1 @@ -DIST firefox-71.0-sv-SE.xpi 535449 BLAKE2B 719bbbeae234570bd5b83682766eedf2ed2fff7192bed64833af371bb75d545bd386cd4abed15f31b19f1a8e20c95b4832f17648d99de51899e766c53eecf044 SHA512 85faa8e15f6c346eb6bc9a0774675803c5bcb69c1d4fa95cd4b3905cc10e012f213d33daaa1358e0732e294a916e31716432b9def75c370669f7af384ef254a3 +DIST firefox-72.0.1-sv-SE.xpi 538033 BLAKE2B a594b0f978157b2d1bf2618630aafaccfd688fa139d6d2ba2966ca3fe3331a7915fb21fe0408453a248e816cf054c591473fbef55e826569764702cd8537f3a0 SHA512 5ee43f89dd128754a198ab8295ee7fb92665642e9afd44fff3ec7db0872f214fc73e63e9aeda856ac86d62bbe73d79830f1bda42ce270d365bfd2f13f87b2792 diff --git a/www-client/firefox-l10n-sv-SE/firefox-l10n-sv-SE-71.0.ebuild b/www-client/firefox-l10n-sv-SE/firefox-l10n-sv-SE-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-sv-SE/firefox-l10n-sv-SE-71.0.ebuild rename to www-client/firefox-l10n-sv-SE/firefox-l10n-sv-SE-72.0.1.ebuild diff --git a/www-client/firefox-l10n-ta/Manifest b/www-client/firefox-l10n-ta/Manifest index 32dc73d9b..7e7537b67 100644 --- a/www-client/firefox-l10n-ta/Manifest +++ b/www-client/firefox-l10n-ta/Manifest @@ -1 +1 @@ -DIST firefox-71.0-ta.xpi 560975 BLAKE2B 25d9d29953a28569fbf280caddffe6b551389e09975fb1780131548a3192f642281b8e2d137c1fc33af1cd6fafd66d744324dd36e9ada69887e0b5d20c59c7d7 SHA512 8c2de23f247cd66a38fa6cdb615844c48633223e03b24377bb354fcad0f3c88b4e8fa935a7478643580932988741012fdd1e3f3068e0ffe9a846b6cf83e8de85 +DIST firefox-72.0.1-ta.xpi 565632 BLAKE2B dc5ec835cd0141f124f3657011a2a02fee466c9cdd2d604caa0f3a71eef5c45a9c36fc9c18d790a73be456dc7d43842136be7c7ea8b1477ca90ab5e11964d711 SHA512 2b4d1c89aba52171e3ab2b0bfaa9f954ed7f8eccc4c9d834ac0e724f782b428841f3cabf56aa5511e6f2ca273478ce15afd7bc4cb0067ffd031d7c3cdb1408b8 diff --git a/www-client/firefox-l10n-ta/firefox-l10n-ta-71.0.ebuild b/www-client/firefox-l10n-ta/firefox-l10n-ta-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-ta/firefox-l10n-ta-71.0.ebuild rename to www-client/firefox-l10n-ta/firefox-l10n-ta-72.0.1.ebuild diff --git a/www-client/firefox-l10n-te/Manifest b/www-client/firefox-l10n-te/Manifest index 9bc46a0df..b0c735ff4 100644 --- a/www-client/firefox-l10n-te/Manifest +++ b/www-client/firefox-l10n-te/Manifest @@ -1 +1 @@ -DIST firefox-71.0-te.xpi 579563 BLAKE2B 0324a66ab94c4acd0970951c7b38fe45259ed489cb31a401a15891c11ded0b3326d23b01bef38d22e0ef786052c905be7d68f72224a7a78c8233a2dc4a13aebc SHA512 72cd2d3b29b8b1d7e1219a111808ebe190499c0d06a050bb1f3d43a814c58e13d44375f55e963d8d96b1b269895d3bee63380969395083973106bf402ffc3d29 +DIST firefox-72.0.1-te.xpi 582704 BLAKE2B d6eb0849b27857fb5bcf31b73cc5391fb1745fff43d147acbfeb8aaa1d5e0c86930707e3c782180f712dd3172d3fb4a09fc02ef6f73aadee0f6ebf975ed89e92 SHA512 2f6f372f19ff69d4481039ed4f6ead12f8ecb054f35fbe115800dbbea69094345509a34c98a2d05a52e5ecb7d519c68f92dee6cf3ddcbdcbd595383f183d34aa diff --git a/www-client/firefox-l10n-te/firefox-l10n-te-71.0.ebuild b/www-client/firefox-l10n-te/firefox-l10n-te-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-te/firefox-l10n-te-71.0.ebuild rename to www-client/firefox-l10n-te/firefox-l10n-te-72.0.1.ebuild diff --git a/www-client/firefox-l10n-th/Manifest b/www-client/firefox-l10n-th/Manifest index effdecfa6..ea25a86a5 100644 --- a/www-client/firefox-l10n-th/Manifest +++ b/www-client/firefox-l10n-th/Manifest @@ -1 +1 @@ -DIST firefox-71.0-th.xpi 588717 BLAKE2B a69ec173c9e3b32bf7514acab99c5e9a90a9bad20a75ca5f8abe8f748caaeb9c156fdf811a9cb8e78daec40c4d02cefbc291fa42a624863fb06678da2abcbc1b SHA512 0b86df6aae57973d9d6925753266c685197c905ecc53f856db89ef01c6d083f3eb043e00ae503c241d215771689b489fe1abd9022c4b679dcc7ebbb300807ec3 +DIST firefox-72.0.1-th.xpi 598815 BLAKE2B c2472c14342f3eecc2a6e9aa1024bc8c0d029e92ababc49c17aa2a20d0d4c6a7d5ae8d4a043dd681f20a15bd7bcff4da013571de1492cf2b291eb1dbd31e35b7 SHA512 3b6a9d579cc43e3697126db73aef6d3381219823f0abbb8c392b587dfcfd6a16ac6153f503e8e3644e3df8eb394dbdc21c6ebe85b1eacf78e4119a19975596c6 diff --git a/www-client/firefox-l10n-th/firefox-l10n-th-71.0.ebuild b/www-client/firefox-l10n-th/firefox-l10n-th-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-th/firefox-l10n-th-71.0.ebuild rename to www-client/firefox-l10n-th/firefox-l10n-th-72.0.1.ebuild diff --git a/www-client/firefox-l10n-tr/Manifest b/www-client/firefox-l10n-tr/Manifest index fc5253718..255ab803d 100644 --- a/www-client/firefox-l10n-tr/Manifest +++ b/www-client/firefox-l10n-tr/Manifest @@ -1 +1 @@ -DIST firefox-71.0-tr.xpi 548287 BLAKE2B 81a27ca61208a82385418ca7319de24718d3eb20f473bdb3584f03d335dd0c51b7db2c002ea9f898724b46e109b7b9fd41b7369b637dc4ea8bafe9bdcece01e0 SHA512 2d9d998eaa2172253064150a1d7395f52d5b7706c4fbed942854ce96b5c774e4de77015b41cd77dc5ac4b6bd8dc534f9590252ade42cff37f4ebe956e3712fd3 +DIST firefox-72.0.1-tr.xpi 551514 BLAKE2B 83328ec7d01953b990602ca08917fb5fcacb7055c9aa79150428a4628e3e4462073168c598a08c5c6a66c8d35f6c5352320d91891f0a6634c4d758760c018f2c SHA512 66f0b4070872aaf1488dcfcce9f4b299dfba50b4fbecbd4fcfbda4a525f529993c73122113e303f16285f87624a9673c40062a2712ceb655ed32e25b941b37ad diff --git a/www-client/firefox-l10n-tr/firefox-l10n-tr-71.0.ebuild b/www-client/firefox-l10n-tr/firefox-l10n-tr-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-tr/firefox-l10n-tr-71.0.ebuild rename to www-client/firefox-l10n-tr/firefox-l10n-tr-72.0.1.ebuild diff --git a/www-client/firefox-l10n-uk/Manifest b/www-client/firefox-l10n-uk/Manifest index a5b162392..e361577b8 100644 --- a/www-client/firefox-l10n-uk/Manifest +++ b/www-client/firefox-l10n-uk/Manifest @@ -1 +1 @@ -DIST firefox-71.0-uk.xpi 608193 BLAKE2B 11128e8e1afae5a545d38808ce6f95df82c0d161255fa8f64e6f1dc614f0951478f63500ab06f948c8d06476f6da695ac2779bcaedea2a34ad76306c87d48bac SHA512 441df6a99815864dc75ed4b94d55585b72082fb70975d3177daccd68a04dcd1a13afd1a16fcbf33ad65c1cbddccfb270aa1bba58465546484722cb3d0387ddcb +DIST firefox-72.0.1-uk.xpi 613106 BLAKE2B aac98e18366110f2b09f6450833a03dd5a4732bbecdaeb77050cb52b1d4d52b35f490050301c4477c394150bd1133b6436482ee505b3eff32a581bbf7615bdaf SHA512 9cd9e4aa6ef96524b60f3aea5aee20115b6c0104a08db75806f8f9213558ddf2bb219bc48616e61a31e15291f354f1eb8329b3592de00655dffe9363f60db8ff diff --git a/www-client/firefox-l10n-uk/firefox-l10n-uk-71.0.ebuild b/www-client/firefox-l10n-uk/firefox-l10n-uk-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-uk/firefox-l10n-uk-71.0.ebuild rename to www-client/firefox-l10n-uk/firefox-l10n-uk-72.0.1.ebuild diff --git a/www-client/firefox-l10n-ur/Manifest b/www-client/firefox-l10n-ur/Manifest index a4189e920..b2b48e229 100644 --- a/www-client/firefox-l10n-ur/Manifest +++ b/www-client/firefox-l10n-ur/Manifest @@ -1 +1 @@ -DIST firefox-71.0-ur.xpi 556725 BLAKE2B 8c957f6ab53a0d7225b768fae18cb900fcc91b1099e555e6e7109b003c3f4c8134218c9579778e01efb74d2841d933ff5d6af11f31a08b59161f6476407b3d91 SHA512 6b7914b561bc734a5d33ed4283ceeeb4c88343014e4d48afa9b529932e02b41061ba647415e43a751e0a8989f5d649d9b6d8723b50962e4b688c195fd106fa0e +DIST firefox-72.0.1-ur.xpi 573895 BLAKE2B 55c2563a9d6934c954a99bf505b2742e9d7b5bc0be253dd2691c3e3bdaeface8c473afad47568b6d2c783c54b29b916bbfb5f8be59fc480ac653cba4cda28d18 SHA512 3c8dec5434ce321c8a5f8cdc1f3d123007d6bf0a22c15fe37da46cc79c6687e5b6e5b996dcee752903dbec89d06d6279af0dd5fa7615430a2b231635e35bac7e diff --git a/www-client/firefox-l10n-ur/firefox-l10n-ur-71.0.ebuild b/www-client/firefox-l10n-ur/firefox-l10n-ur-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-ur/firefox-l10n-ur-71.0.ebuild rename to www-client/firefox-l10n-ur/firefox-l10n-ur-72.0.1.ebuild diff --git a/www-client/firefox-l10n-uz/Manifest b/www-client/firefox-l10n-uz/Manifest index 828380ce0..87789edf6 100644 --- a/www-client/firefox-l10n-uz/Manifest +++ b/www-client/firefox-l10n-uz/Manifest @@ -1 +1 @@ -DIST firefox-71.0-uz.xpi 494755 BLAKE2B 600905ac5c21954e64ba38dc2923c83e970903f8a43f7f8d0ab2965a9e3c3aacf4b48710deca48deddf812a89949d669057884157eae55c99f864349bdb3a3d5 SHA512 a27dc824904814d673bdda6adece167ad00183d76d8523703878ab0263c77b5337ec1102a59facb7752b37b70a36f4ef9b31b7f4c1d502a67d163e8d9f95f889 +DIST firefox-72.0.1-uz.xpi 498253 BLAKE2B ff019837fd38259b81b390a648723b7de3cc0c6e631a1f9a8929a1d6041f3c52e4c688710b88fc31e387e149e43a1a41b9e095e496724b694a691ecdfbf76169 SHA512 c956d030a953efe608fa316ae025ca65493e897e93dcae97d22541074af3890b698402efe8b80499036c7997047136d2a71565030d00fb9124ac2c44c906e3b9 diff --git a/www-client/firefox-l10n-uz/firefox-l10n-uz-71.0.ebuild b/www-client/firefox-l10n-uz/firefox-l10n-uz-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-uz/firefox-l10n-uz-71.0.ebuild rename to www-client/firefox-l10n-uz/firefox-l10n-uz-72.0.1.ebuild diff --git a/www-client/firefox-l10n-vi/Manifest b/www-client/firefox-l10n-vi/Manifest index 2db573c7c..cbaad1b3a 100644 --- a/www-client/firefox-l10n-vi/Manifest +++ b/www-client/firefox-l10n-vi/Manifest @@ -1 +1 @@ -DIST firefox-71.0-vi.xpi 563455 BLAKE2B 99d892741ea487d025c0e206cf0954c960baeb7cc94edcec8a7fb9c1c11f74c5aa1910d551b89c2ca10c79fff27b271f9b4ab61383951294dc3c4791abd39537 SHA512 468930e0c6d298d6de7315bb8a2b8906a5a8b22752d2ce924bb523690c5759de60ff8c67da58c4c4bd79a4fe6ddf5510714bf6a89f672f07691c404968f6523d +DIST firefox-72.0.1-vi.xpi 567507 BLAKE2B 1c60499e474b6523b9d2e2460e802bf52145337be376696a20a6647b5c27150981334bec51fbb6e0499e64fe50a712de1df3ef5a1ce041c9d441b75e89b97d91 SHA512 4eebae23cc6dd81c86caf9808fb5bef8f1995861bf755a0c215d92198aa3e2855ebccb8006aba1f757d4b661209b44077d8508eb630cb849eb5a345acef7973b diff --git a/www-client/firefox-l10n-vi/firefox-l10n-vi-71.0.ebuild b/www-client/firefox-l10n-vi/firefox-l10n-vi-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-vi/firefox-l10n-vi-71.0.ebuild rename to www-client/firefox-l10n-vi/firefox-l10n-vi-72.0.1.ebuild diff --git a/www-client/firefox-l10n-xh/Manifest b/www-client/firefox-l10n-xh/Manifest index 805e500ba..23ce41381 100644 --- a/www-client/firefox-l10n-xh/Manifest +++ b/www-client/firefox-l10n-xh/Manifest @@ -1 +1 @@ -DIST firefox-71.0-xh.xpi 466494 BLAKE2B 89cd4ba2391fa6d1577542c71e3f7ac7eb18decb8c1c9d633f805f9402be061eb31509d1e60995e83c9c90749145722591b0e952ac56e7c26e5872879bc4a6f4 SHA512 bcb5bbae311db65f6e2a81c39b6a4d2e13f7ff79aaad217cafcd3b1992b1cfd3d25668c10e7c6a74392cbadfb7b302b74408ab116d19e0c2c952e0241310e20b +DIST firefox-72.0.1-xh.xpi 469604 BLAKE2B 5ff3348a756cba6732192a2fd65accfc21d540404407d09a08d1c1a5241b0d148502438402ee2347327d51c4ef37efe35254b2568d34d08f8f8201b38f956b2d SHA512 0e90451f9b1974c87e04fc81130ab9748be9e7e9debd33a52bdb3236dc05e497725111b50685ec169e16b605b104d423c6d15603c1375fc640a60731aba63ac5 diff --git a/www-client/firefox-l10n-xh/firefox-l10n-xh-71.0.ebuild b/www-client/firefox-l10n-xh/firefox-l10n-xh-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-xh/firefox-l10n-xh-71.0.ebuild rename to www-client/firefox-l10n-xh/firefox-l10n-xh-72.0.1.ebuild diff --git a/www-client/firefox-l10n-zh-CN/Manifest b/www-client/firefox-l10n-zh-CN/Manifest index 8c5be6683..09451bd67 100644 --- a/www-client/firefox-l10n-zh-CN/Manifest +++ b/www-client/firefox-l10n-zh-CN/Manifest @@ -1 +1 @@ -DIST firefox-71.0-zh-CN.xpi 570176 BLAKE2B 4771f6ac64ed820a5837b172b02cb54133a3847d743e2a3eba934c4edce390b8fc1e9ff13409af5db4bc8d3ed07f9a843bd33301bd515128918869e87224a4fa SHA512 18eb4f39857f257f403656f81e38cba9b55bd29462f9d1e9148be092acc812ae27051d2c31b5a6312493e65c71d11881e0260d5cef9c1fe78df1c2b33388c475 +DIST firefox-72.0.1-zh-CN.xpi 574697 BLAKE2B 63f212d1322e44c098a10411d29c252c889e60af7cfaaf2e24e14a84371f708b60bb3fa6b589a6afc552881aacd6b635dc2077b66f5fef89b842ff92aa927936 SHA512 bfdbdb5033433f0fdf6378c1363b97dc333fcbc8b9c072ccddb03072eade1597791a7fca8d706617ef4307a03ed4d1a2ab8495b4554fdcc566cc47a259d54c92 diff --git a/www-client/firefox-l10n-zh-CN/firefox-l10n-zh-CN-71.0.ebuild b/www-client/firefox-l10n-zh-CN/firefox-l10n-zh-CN-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-zh-CN/firefox-l10n-zh-CN-71.0.ebuild rename to www-client/firefox-l10n-zh-CN/firefox-l10n-zh-CN-72.0.1.ebuild diff --git a/www-client/firefox-l10n-zh-TW/Manifest b/www-client/firefox-l10n-zh-TW/Manifest index a3a54c0f9..1e6b18d73 100644 --- a/www-client/firefox-l10n-zh-TW/Manifest +++ b/www-client/firefox-l10n-zh-TW/Manifest @@ -1 +1 @@ -DIST firefox-71.0-zh-TW.xpi 568991 BLAKE2B 691e5aea3725516e4f2db1c91bfafe35d157d67332051f73139c6ae6f079db9b90e69478b285660a998242a33587567a1b0b36671464f096072e17d2dc741542 SHA512 4a949f2335da366827abb4b0e5944c0dd3132bcb750aed395bbc643bbfd4e72d2bed73dc505da241279ccd929e412371dd1eddce6581934a5c48be1ead1b3dad +DIST firefox-72.0.1-zh-TW.xpi 573487 BLAKE2B f359f00ef17b4a635d76118fbdf53a0a3e3a869888dcba05467e90dd25817e26196f3ffc59182694936b78d3a65ff606cf3ba1316876092c3dbb5616bf40f6ea SHA512 5f3f5c533d3827817b070b712ec906feaebe17cffedaa897ea9430770a2cfd926f3a4fdb0179655e9c63fd35cf0dbbf4c4ca99d70311abfe390393568ff7a9c6 diff --git a/www-client/firefox-l10n-zh-TW/firefox-l10n-zh-TW-71.0.ebuild b/www-client/firefox-l10n-zh-TW/firefox-l10n-zh-TW-72.0.1.ebuild similarity index 100% rename from www-client/firefox-l10n-zh-TW/firefox-l10n-zh-TW-71.0.ebuild rename to www-client/firefox-l10n-zh-TW/firefox-l10n-zh-TW-72.0.1.ebuild diff --git a/x11-drivers/nvidia-drivers/Manifest b/x11-drivers/nvidia-drivers/Manifest index 7d212d59b..bbd8511fa 100644 --- a/x11-drivers/nvidia-drivers/Manifest +++ b/x11-drivers/nvidia-drivers/Manifest @@ -2,8 +2,12 @@ DIST NVIDIA-FreeBSD-x86-390.116.tar.gz 64325348 BLAKE2B 67312ba0f5b1e94a540a90e3 DIST NVIDIA-FreeBSD-x86_64-390.116.tar.gz 63651658 BLAKE2B ae1714b5b279dd6f552ed11b8dee0b4ac322903a7c9f4b7b7906dea8c5847e34950d9c4c6f616337408b42100b84c1aaaf66ee445db2d1795ccdb8762d2088fb SHA512 022fa558cd2a8014bc67ba86deba603505000cca3f99d91a664db81cfe93ae88b667af74989b40b04cb8cd086c5dcb8bf0858170f92e464bbe13fc4c7fb307aa DIST NVIDIA-FreeBSD-x86_64-430.14.tar.gz 62422208 BLAKE2B 5985ac1cb569f62e1e9c29839e2253ec846bd0000f96aa6c17fc619a9d9774911015e32ef85ef5a0ef7a9ba92b93d88c2517ba2b49df17422b65d581c96a959e SHA512 f567902be1bea2347bbf185efeaf5e728db8a18e03111d97ec47bfd2e25b57e5e738d1ecd57caabeeaa4e3718d474ae1a4f315c0ca29669e271e1d3abdf740e1 DIST NVIDIA-FreeBSD-x86_64-430.26.tar.gz 62467649 BLAKE2B 2febd88bcecfd1daa034663421a2ee864ea500526d5de227e9aef89db33898edde71e93529aaa67607e79b60e64b06c7e2525a801c4c1aedf4279e7634df9e58 SHA512 4fcd9aacdb96cfe1618e44fc897cb1d1adecd568dc7cf3a2153ed5aae59d5172e7d792149128e9613804e58a54740e738e3c014a08ab2a33684b00cfb5b2dc70 +DIST NVIDIA-FreeBSD-x86_64-435.21.tar.gz 64153630 BLAKE2B fee655cc843c004ac0c1ec85b9417292016a013136e04ad047d2513edbdc7c732561d6bcc4603c658905972dce6618de49d4d6ac583e84fdf212cf45397b48c1 SHA512 2c160c06ca58e3009deb1ba4a4a28d39419e251ced3bfa9a442942f9cce17003d67e8a8bfa23036d3916cc0e66f4bff0fbedaae73db6f10b995235a56d7eba7c +DIST NVIDIA-FreeBSD-x86_64-440.44.tar.gz 82172949 BLAKE2B c276fc42d8bb2c3ea4b84b3f7fc26790d3de526087a01491a9a435b2dde7b8921a01d3fbdbbae8e91f28588093d658a9c3715996b4d8f6e82624823619002dc5 SHA512 c414f368d9b00a71a52e2da4d2b147347966ee17ac2d1142ad368e2211546e29ffa842997350419f17288881879c7c91f069bbdc3192c7e7ce28d1ef45d744a2 DIST NVIDIA-Linux-armv7l-gnueabihf-390.116.run 28852021 BLAKE2B 82eb44ea1bd50610218c9ffe4f7e586d2541cb7d0ca6692feeb7a26ea323d7304e2d09e77a20e02fb529b19d2ca75f0819df07c3cd27d72a5b6d9ceac6984fa8 SHA512 7aa93f42a36aa910388f901879659e0b03ec8a272cee3caac553b960603417e5b23f1bd88d9dd5892f3509d7a029a29c067200c8ed577ed98aa24f034dd66475 DIST NVIDIA-Linux-x86-390.116.run 47707973 BLAKE2B 33b58fb600df83d7e132b428de952f583f1d300af45ff00c4302b48625af370baddab0ef34974dbe26e284cd907e27c024c80f9453abdfc6296bd2575c6481df SHA512 be9aa735d2d0a3e14b4a7dddcbe74ef156740365e93eefe853a03ecae392af6875add41307b889e59d62516f7efe292b12c0a9a29916e8b4ce144b817eed2c39 DIST NVIDIA-Linux-x86_64-390.116.run 82282245 BLAKE2B 4dc5a1455eca985be5831e8670f461a11af28a31b07a266b633e5547751871da2cbe5753bc5f11f8a109bda50387b422984d2afff2d7284d8564edb4405421b6 SHA512 6afad9db6c56d475e34f6f4ee7a8a8351e132aab69fd3ad467a5f559a70cebda09dbd3ecfddd699b59c50903b81450b00c9197d05e149c759c2bb5d0a72d6fe8 DIST NVIDIA-Linux-x86_64-430.14.run 110886277 BLAKE2B 4da8e990b6d1b1e5a74a2533ad40654adf228c063f3b7aa6432ce261ec82f5675de7979071862a8e48d0318a43d2d6f9728b519dd576209bd1a39c367c501747 SHA512 9d99d4292cf4943378c225eb95ad3a43fa73f2b0d23e35648d77903045d1fc9223a8753cef93022764c18e823f3fc682d23f0d9a64745457d2e2c8ff20e474be DIST NVIDIA-Linux-x86_64-430.26.run 110600229 BLAKE2B 091579e97a35fc40b0b68f91135edaa85d9e9e0d757a241e9df6c0fb405d639756f789aea4b829e9e93fb8419f86a811008f1aa85ca5f47ed156923d06c1f6e8 SHA512 34ff46659e1d68874dd7ac933fcc6a5dbdbd240e433e5c76c4cb74242001f427848406148fc12035a60d35395c19c81a758ec1ea810d239b15dd72e2d15f884b +DIST NVIDIA-Linux-x86_64-435.21.run 144387574 BLAKE2B e9afd6335182a28f5136dbef55195a2f2d8f768376ebc148190a0a82470a34d008ce04170ffc1aab36585605910c1300567a90443b5f58cb46ec3bff6ab9409c SHA512 e83b6dff80434971c0b254815945d485a45c978b8a19994244f50a463658863948b2eac8bc62d667bb10c23f41cf1c3521c409d23ac2ab6a0c0cd094a6e20270 +DIST NVIDIA-Linux-x86_64-440.44.run 141266881 BLAKE2B bc5ddcf9a6498c14bd9f9421a622bd647e83c8d296953923525680898548012cc9d01d078722a3194b6def5b5a90ed37b2dc08967a9603affabf449dbc87e69d SHA512 c0c0e19cdb82d47575adbcf46e23580977cf7a5097edfb9d76464c2e678a44f556d8c2d0d49515a86b6765f57176460193c6951927e24c278e6a7f411f89f26b diff --git a/x11-drivers/nvidia-drivers/files/nvidia-drivers-440.26-locale.patch b/x11-drivers/nvidia-drivers/files/nvidia-drivers-440.26-locale.patch new file mode 100644 index 000000000..aa2a74349 --- /dev/null +++ b/x11-drivers/nvidia-drivers/files/nvidia-drivers-440.26-locale.patch @@ -0,0 +1,13 @@ +--- a/kernel/conftest.sh ++++ b/kernel/conftest.sh +@@ -6,6 +6,10 @@ + SCRIPTDIR=`dirname $0` + cd $SCRIPTDIR + ++# translate_and_compile_header_files() expects the default locale ++# https://bugs.gentoo.org/698238 ++export LC_ALL=C ++ + CC="$1" + ARCH=$2 + ISYSTEM=`$CC -print-file-name=include 2> /dev/null` diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-390.116.ebuild b/x11-drivers/nvidia-drivers/nvidia-drivers-390.116.ebuild index 55edcfdae..ecdbaa1d2 100644 --- a/x11-drivers/nvidia-drivers/nvidia-drivers-390.116.ebuild +++ b/x11-drivers/nvidia-drivers/nvidia-drivers-390.116.ebuild @@ -94,7 +94,7 @@ nvidia_drivers_versions_check() { # some kind of guidance as to what version they should install. This tries # to point the user in the right direction but can't be perfect. check # nvidia-driver.eclass - nvidia-driver-check-warning + nvidia-driver_check_gpu # Kernel features/options to check for CONFIG_CHECK="!DEBUG_MUTEXES ~!LOCKDEP ~MTRR ~SYSVIPC ~ZONE_DMA" diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-430.14.ebuild b/x11-drivers/nvidia-drivers/nvidia-drivers-430.14.ebuild index 90b82268f..9c551cca8 100644 --- a/x11-drivers/nvidia-drivers/nvidia-drivers-430.14.ebuild +++ b/x11-drivers/nvidia-drivers/nvidia-drivers-430.14.ebuild @@ -89,7 +89,7 @@ nvidia_drivers_versions_check() { # some kind of guidance as to what version they should install. This tries # to point the user in the right direction but can't be perfect. check # nvidia-driver.eclass - nvidia-driver-check-warning + nvidia-driver_check_gpu # Kernel features/options to check for CONFIG_CHECK="!DEBUG_MUTEXES !I2C_NVIDIA_GPU ~!LOCKDEP ~MTRR ~SYSVIPC ~ZONE_DMA" diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-430.26.ebuild b/x11-drivers/nvidia-drivers/nvidia-drivers-430.26.ebuild index 01e470d43..7996d8d3f 100644 --- a/x11-drivers/nvidia-drivers/nvidia-drivers-430.26.ebuild +++ b/x11-drivers/nvidia-drivers/nvidia-drivers-430.26.ebuild @@ -89,7 +89,7 @@ nvidia_drivers_versions_check() { # some kind of guidance as to what version they should install. This tries # to point the user in the right direction but can't be perfect. check # nvidia-driver.eclass - nvidia-driver-check-warning + nvidia-driver_check_gpu # Kernel features/options to check for CONFIG_CHECK="!DEBUG_MUTEXES !I2C_NVIDIA_GPU ~!LOCKDEP ~MTRR ~SYSVIPC ~ZONE_DMA" diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-435.21.ebuild b/x11-drivers/nvidia-drivers/nvidia-drivers-435.21.ebuild new file mode 100644 index 000000000..de550a173 --- /dev/null +++ b/x11-drivers/nvidia-drivers/nvidia-drivers-435.21.ebuild @@ -0,0 +1,239 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit eutils flag-o-matic linux-info linux-mod multilib nvidia-driver \ + portability toolchain-funcs unpacker user udev + +DESCRIPTION="NVIDIA X11 userspace libraries and applications" +HOMEPAGE="http://www.nvidia.com/ http://www.nvidia.com/Download/Find.aspx" + +AMD64_FBSD_NV_PACKAGE="NVIDIA-FreeBSD-x86_64-${PV}" +AMD64_NV_PACKAGE="NVIDIA-Linux-x86_64-${PV}" +ARM_NV_PACKAGE="NVIDIA-Linux-armv7l-gnueabihf-${PV}" + +NV_URI="https://us.download.nvidia.com/XFree86/" +SRC_URI=" + amd64-fbsd? ( ${NV_URI}FreeBSD-x86_64/${PV}/${AMD64_FBSD_NV_PACKAGE}.tar.gz ) + amd64? ( ${NV_URI}Linux-x86_64/${PV}/${AMD64_NV_PACKAGE}.run ) +" + +LICENSE="GPL-2 NVIDIA-r2" +SLOT="0/${PV%.*}" +KEYWORDS="-* ~amd64 ~amd64-fbsd" +RESTRICT="bindist mirror" +EMULTILIB_PKG="true" + +IUSE="acpi compat +dracut +driver gtk3 kernel_FreeBSD kernel_linux +kms multilib pax_kernel static-libs +tools uvm wayland +X x-multilib libglvnd" +REQUIRED_USE=" + tools? ( X ) + static-libs? ( tools ) +" + +COMMON=" + app-eselect/eselect-opencl + kernel_linux? ( >=sys-libs/glibc-2.6.1 ) + dracut? ( >=sys-kernel/sabayon-dracut-1.3 ) + X? ( + !libglvnd? ( >=app-eselect/eselect-opengl-1.0.9 ) + libglvnd? ( + media-libs/libglvnd[abi_x86_32] + !app-eselect/eselect-opengl + ) + app-misc/pax-utils + ) +" +DEPEND=" + ${COMMON} + app-arch/xz-utils + kernel_linux? ( virtual/linux-sources ) +" +RDEPEND=" + ${COMMON} + acpi? ( sys-power/acpid ) + wayland? ( dev-libs/wayland ) + X? ( + =x11-libs/libX11-1.6.2[abi_x86_32] + >=x11-libs/libXext-1.3.2[abi_x86_32] + >=x11-libs/libvdpau-1.0 + sys-libs/zlib + ) + ~x11-drivers/nvidia-userspace-${PV} + x-multilib? ( ~x11-drivers/nvidia-userspace-${PV}[x-multilib] ) + multilib? ( ~x11-drivers/nvidia-userspace-${PV}[multilib] ) + ~x11-drivers/nvidia-userspace-${PV}[tools=] + ~x11-drivers/nvidia-userspace-${PV}[X=] +" + +QA_PREBUILT="opt/* usr/lib*" +S=${WORKDIR}/ + +nvidia_drivers_versions_check() { + if use amd64 && has_multilib_profile && \ + [ "${DEFAULT_ABI}" != "amd64" ]; then + eerror "This ebuild doesn't currently support changing your default ABI" + die "Unexpected \${DEFAULT_ABI} = ${DEFAULT_ABI}" + fi + + if use kernel_linux && kernel_is ge 5 4; then + ewarn "Gentoo supports kernels which are supported by NVIDIA" + ewarn "which are limited to the following kernels:" + ewarn " "${T}"/nvidia-rmmod.conf || die + doins "${T}"/nvidia-rmmod.conf + fi + + # Ensures that our device nodes are created when not using X + exeinto "$(get_udevdir)" + newexe "${FILESDIR}"/nvidia-udev.sh-r1 nvidia-udev.sh + udev_newrules "${FILESDIR}"/nvidia.udev-rule 99-nvidia.rules + elif use kernel_FreeBSD; then + if use x86-fbsd; then + insinto /boot/modules + doins "${S}/src/nvidia.kld" + fi + + exeinto /boot/modules + doexe "${S}/src/nvidia.ko" + fi + + # NVIDIA kernel <-> userspace driver config lib + donvidia ${NV_OBJ}/libnvidia-cfg.so.${NV_SOVER} + + # NVIDIA framebuffer capture library + donvidia ${NV_OBJ}/libnvidia-fbc.so.${NV_SOVER} + + # NVIDIA video encode/decode <-> CUDA + if use kernel_linux; then + donvidia ${NV_OBJ}/libnvcuvid.so.${NV_SOVER} + donvidia ${NV_OBJ}/libnvidia-encode.so.${NV_SOVER} + fi + + if use X; then + # Xorg DDX driver + insinto /usr/$(get_libdir)/xorg/modules/drivers + doins ${NV_X11}/nvidia_drv.so + + # Xorg GLX driver + donvidia ${NV_X11}/libglxserver_nvidia.so.${NV_SOVER} \ + /usr/$(get_libdir)/xorg/modules/extensions + + # Xorg nvidia.conf + if has_version '>=x11-base/xorg-server-1.16'; then + insinto /usr/share/X11/xorg.conf.d + newins {,50-}nvidia-drm-outputclass.conf + fi + + insinto /usr/share/glvnd/egl_vendor.d + doins ${NV_X11}/10_nvidia.json + fi + + if use wayland; then + insinto /usr/share/egl/egl_external_platform.d + doins ${NV_X11}/10_nvidia_wayland.json + fi + + # OpenCL ICD for NVIDIA + if use kernel_linux; then + insinto /etc/OpenCL/vendors + doins ${NV_OBJ}/nvidia.icd + fi + + # Helper Apps + exeinto /opt/bin/ + + if use X; then + doexe ${NV_OBJ}/nvidia-xconfig + + insinto /etc/vulkan/icd.d + doins nvidia_icd.json + fi + + if use kernel_linux; then + doexe ${NV_OBJ}/nvidia-cuda-mps-control + doexe ${NV_OBJ}/nvidia-cuda-mps-server + doexe ${NV_OBJ}/nvidia-debugdump + doexe ${NV_OBJ}/nvidia-persistenced + doexe ${NV_OBJ}/nvidia-smi + + # install nvidia-modprobe setuid and symlink in /usr/bin (bug #505092) + doexe ${NV_OBJ}/nvidia-modprobe + fowners root:video /opt/bin/nvidia-modprobe + fperms 4710 /opt/bin/nvidia-modprobe + dosym /{opt,usr}/bin/nvidia-modprobe + + doman nvidia-cuda-mps-control.1 + doman nvidia-modprobe.1 + doman nvidia-persistenced.1 + newinitd "${FILESDIR}/nvidia-smi.init" nvidia-smi + newconfd "${FILESDIR}/nvidia-persistenced.conf" nvidia-persistenced + newinitd "${FILESDIR}/nvidia-persistenced.init" nvidia-persistenced + fi + + if use tools; then + emake -C "${S}"/nvidia-settings-${PV}/src/ \ + DESTDIR="${D}" \ + DO_STRIP= \ + GTK3_AVAILABLE=$(usex gtk3 1 0) \ + LIBDIR="${D}/usr/$(get_libdir)" \ + NV_USE_BUNDLED_LIBJANSSON=0 \ + NV_VERBOSE=1 \ + OUTPUTDIR=. \ + PREFIX=/usr \ + install + + if use static-libs; then + dolib.a "${S}"/nvidia-settings-${PV}/src/libXNVCtrl/libXNVCtrl.a + + insinto /usr/include/NVCtrl + doins "${S}"/nvidia-settings-${PV}/src/libXNVCtrl/*.h + fi + + insinto /usr/share/nvidia/ + doins nvidia-application-profiles-${PV}-key-documentation + + insinto /etc/nvidia + newins \ + nvidia-application-profiles-${PV}-rc nvidia-application-profiles-rc + + # There is no icon in the FreeBSD tarball. + use kernel_FreeBSD || \ + doicon ${NV_OBJ}/nvidia-settings.png + + domenu "${FILESDIR}"/nvidia-settings.desktop + + exeinto /etc/X11/xinit/xinitrc.d + newexe "${FILESDIR}"/95-nvidia-settings-r1 95-nvidia-settings + fi + + dobin ${NV_OBJ}/nvidia-bug-report.sh + + if has_multilib_profile && use multilib; then + local OABI=${ABI} + for ABI in $(get_install_abis); do + src_install-libs + done + ABI=${OABI} + unset OABI + else + src_install-libs + fi + + is_final_abi || die "failed to iterate through all ABIs" + + # Documentation + if use kernel_FreeBSD; then + dodoc "${NV_DOC}/README" + use X && doman "${NV_MAN}"/nvidia-xconfig.1 + use tools && doman "${NV_MAN}"/nvidia-settings.1 + else + # Docs + newdoc "${NV_DOC}/README.txt" README + dodoc "${NV_DOC}/NVIDIA_Changelog" + doman "${NV_MAN}"/nvidia-smi.1 + use X && doman "${NV_MAN}"/nvidia-xconfig.1 + use tools && doman "${NV_MAN}"/nvidia-settings.1 + doman "${NV_MAN}"/nvidia-cuda-mps-control.1 + fi + + readme.gentoo_create_doc + + docinto html + dodoc -r ${NV_DOC}/html/* +} + +src_install-libs() { + local inslibdir=$(get_libdir) + if use libglvnd; then + local GL_ROOT="/usr/$(get_libdir)" + else + local GL_ROOT="/usr/$(get_libdir)/opengl/nvidia/lib" + fi + local CL_ROOT="/usr/$(get_libdir)/OpenCL/vendors/nvidia" + local nv_libdir="${NV_OBJ}" + + if use kernel_linux && has_multilib_profile && [[ ${ABI} == "x86" ]]; then + nv_libdir="${NV_OBJ}"/32 + fi + + if use X; then + NV_GLX_LIBRARIES=( + "libEGL_nvidia.so.${NV_SOVER} ${GL_ROOT}" + "libGLESv1_CM_nvidia.so.${NV_SOVER} ${GL_ROOT}" + "libGLESv2_nvidia.so.${NV_SOVER} ${GL_ROOT}" + "libGLX_nvidia.so.${NV_SOVER} ${GL_ROOT}" + "libOpenCL.so.1.0.0 ${CL_ROOT}" + "libcuda.so.${NV_SOVER}" + "libnvcuvid.so.${NV_SOVER}" + "libnvidia-compiler.so.${NV_SOVER}" + "libnvidia-eglcore.so.${NV_SOVER}" + "libnvidia-encode.so.${NV_SOVER}" + "libnvidia-fatbinaryloader.so.${NV_SOVER}" + "libnvidia-fbc.so.${NV_SOVER}" + "libnvidia-glcore.so.${NV_SOVER}" + "libnvidia-glsi.so.${NV_SOVER}" + "libnvidia-glvkspirv.so.${NV_SOVER}" + "libnvidia-ifr.so.${NV_SOVER}" + "libnvidia-opencl.so.${NV_SOVER}" + "libnvidia-ptxjitcompiler.so.${NV_SOVER}" + "libvdpau_nvidia.so.${NV_SOVER}" + ) + if ! use libglvnd; then + NV_GLX_LIBRARIES+=( + "libEGL.so.$( [[ ${ABI} == "amd64" ]] && usex compat ${NV_SOVER} 1.1.0 || echo 1.1.0) ${GL_ROOT}" + "libGL.so.1.7.0 ${GL_ROOT}" + "libGLESv1_CM.so.1.2.0 ${GL_ROOT}" + "libGLESv2.so.2.1.0 ${GL_ROOT}" + "libGLX.so.0 ${GL_ROOT}" + "libGLdispatch.so.0 ${GL_ROOT}" + "libOpenGL.so.0 ${GL_ROOT}" + ) + fi + + if use wayland && has_multilib_profile && [[ ${ABI} == "amd64" ]]; + then + NV_GLX_LIBRARIES+=( + "libnvidia-egl-wayland.so.1.1.3" + ) + fi + + if use kernel_FreeBSD; then + NV_GLX_LIBRARIES+=( + "libnvidia-tls.so.${NV_SOVER}" + ) + fi + + if use kernel_linux; then + NV_GLX_LIBRARIES+=( + "libnvidia-ml.so.${NV_SOVER}" + "libnvidia-tls.so.${NV_SOVER}" + ) + fi + + if use kernel_linux && has_multilib_profile && [[ ${ABI} == "amd64" ]]; + then + NV_GLX_LIBRARIES+=( + "libnvidia-cbl.so.${NV_SOVER}" + "libnvidia-rtcore.so.${NV_SOVER}" + "libnvoptix.so.${NV_SOVER}" + ) + fi + + for NV_LIB in "${NV_GLX_LIBRARIES[@]}"; do + donvidia "${nv_libdir}"/${NV_LIB} + done + fi +} + +pkg_preinst() { + # Clean the dynamic libGL stuff's home to ensure + # we dont have stale libs floating around + if [ -d "${ROOT}"/usr/lib/opengl/nvidia ]; then + rm -rf "${ROOT}"/usr/lib/opengl/nvidia/* + fi + # Make sure we nuke the old nvidia-glx's env.d file + if [ -e "${ROOT}"/etc/env.d/09nvidia ]; then + rm -f "${ROOT}"/etc/env.d/09nvidia + fi + + local videogroup="$(egetent group video | cut -d ':' -f 3)" + if [ -z "${videogroup}" ]; then + eerror "Failed to determine the video group gid" + die "Failed to determine the video group gid" + else + sed -i \ + -e "s:PACKAGE:${PF}:g" \ + -e "s:VIDEOGID:${videogroup}:" \ + "${D}"/etc/modprobe.d/nvidia.conf || die + fi +} + +pkg_postinst() { + # Switch to the nvidia implementation + if ! use libglvnd; then + use X && "${ROOT}"/usr/bin/eselect opengl set --use-old nvidia + fi + "${ROOT}"/usr/bin/eselect opencl set --use-old nvidia + + readme.gentoo_print_elog + + if ! use X; then + elog "You have elected to not install the X.org driver. Along with" + elog "this the OpenGL libraries and VDPAU libraries were not" + elog "installed. Additionally, once the driver is loaded your card" + elog "and fan will run at max speed which may not be desirable." + elog "Use the 'nvidia-smi' init script to have your card and fan" + elog "speed scale appropriately." + elog + fi + if ! use tools; then + elog "USE=tools controls whether the nvidia-settings application" + elog "is installed. If you would like to use it, enable that" + elog "flag and re-emerge this ebuild. Optionally you can install" + elog "media-video/nvidia-settings" + elog + fi +} + +pkg_prerm() { + if ! use libglvnd; then + use X && "${ROOT}"/usr/bin/eselect opengl set --use-old xorg-x11 + fi +} + +pkg_postrm() { + if ! use libglvnd; then + use X && "${ROOT}"/usr/bin/eselect opengl set --use-old xorg-x11 + fi +} diff --git a/x11-drivers/nvidia-userspace/nvidia-userspace-440.44.ebuild b/x11-drivers/nvidia-userspace/nvidia-userspace-440.44.ebuild new file mode 100644 index 000000000..99f7f4cbe --- /dev/null +++ b/x11-drivers/nvidia-userspace/nvidia-userspace-440.44.ebuild @@ -0,0 +1,537 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit desktop eutils flag-o-matic linux-info linux-mod multilib nvidia-driver \ + portability toolchain-funcs unpacker user udev + +DESCRIPTION="NVIDIA X11 userspace libraries and applications" +HOMEPAGE="http://www.nvidia.com/ http://www.nvidia.com/Download/Find.aspx" + +AMD64_FBSD_NV_PACKAGE="NVIDIA-FreeBSD-x86_64-${PV}" +AMD64_NV_PACKAGE="NVIDIA-Linux-x86_64-${PV}" +ARM_NV_PACKAGE="NVIDIA-Linux-armv7l-gnueabihf-${PV}" + +NV_URI="https://us.download.nvidia.com/XFree86/" +SRC_URI=" + amd64-fbsd? ( ${NV_URI}FreeBSD-x86_64/${PV}/${AMD64_FBSD_NV_PACKAGE}.tar.gz ) + amd64? ( ${NV_URI}Linux-x86_64/${PV}/${AMD64_NV_PACKAGE}.run ) + tools? ( + https://download.nvidia.com/XFree86/nvidia-settings/nvidia-settings-${PV}.tar.bz2 + ) +" + +LICENSE="GPL-2 NVIDIA-r2" +SLOT="0/${PV%.*}" +KEYWORDS="-* ~amd64 ~amd64-fbsd" +RESTRICT="bindist mirror" +EMULTILIB_PKG="true" + +IUSE="acpi compat gtk3 kernel_FreeBSD kernel_linux libglvnd kms multilib static-libs tools uvm wayland +X" +REQUIRED_USE=" + tools? ( X ) + static-libs? ( tools ) +" +RESTRICT="test" + +COMMON=" + app-eselect/eselect-opencl + kernel_linux? ( >=sys-libs/glibc-2.6.1 ) + tools? ( + dev-libs/atk + dev-libs/glib:2 + dev-libs/jansson + gtk3? ( + x11-libs/gtk+:3 + ) + x11-libs/cairo + x11-libs/gdk-pixbuf[X] + x11-libs/gtk+:2 + x11-libs/libX11 + x11-libs/libXext + x11-libs/libXrandr + x11-libs/libXv + x11-libs/libXxf86vm + x11-libs/pango[X] + ) + X? ( + !libglvnd? ( >=app-eselect/eselect-opengl-1.0.9 ) + libglvnd? ( + media-libs/libglvnd[abi_x86_32] + !app-eselect/eselect-opengl + ) + >=app-eselect/eselect-opengl-1.0.9 + app-misc/pax-utils + ) +" +DEPEND=" + ${COMMON} + kernel_linux? ( virtual/linux-sources ) + tools? ( sys-apps/dbus ) +" +RDEPEND=" + ${COMMON} + acpi? ( sys-power/acpid ) + tools? ( !media-video/nvidia-settings ) + wayland? ( dev-libs/wayland ) + X? ( + =x11-libs/libX11-1.6.2[abi_x86_32] + >=x11-libs/libXext-1.3.2[abi_x86_32] + >=x11-libs/libvdpau-1.0 + sys-libs/zlib + ) +" + +QA_PREBUILT="opt/* usr/lib*" + +S="${WORKDIR}/" + +pkg_pretend() { + if use amd64 && has_multilib_profile && \ + [ "${DEFAULT_ABI}" != "amd64" ]; then + eerror "This ebuild doesn't currently support changing your default ABI" + die "Unexpected \${DEFAULT_ABI} = ${DEFAULT_ABI}" + fi +} + +pkg_setup() { + # try to turn off distcc and ccache for people that have a problem with it + export DISTCC_DISABLE=1 + export CCACHE_DISABLE=1 + + # set variables to where files are in the package structure + if use kernel_FreeBSD; then + use amd64-fbsd && S="${WORKDIR}/${AMD64_FBSD_NV_PACKAGE}" + NV_DOC="${S}/doc" + NV_OBJ="${S}/obj" + NV_SRC="${S}/src" + NV_MAN="${S}/x11/man" + NV_X11="${S}/obj" + NV_SOVER=1 + elif use kernel_linux; then + NV_DOC="${S}" + NV_OBJ="${S}" + NV_SRC="${S}/kernel" + NV_MAN="${S}" + NV_X11="${S}" + NV_SOVER=${PV} + else + die "Could not determine proper NVIDIA package" + fi +} + +src_configure() { + tc-export AR CC LD + + default +} + +src_prepare() { + local man_file + for man_file in "${NV_MAN}"/*1.gz; do + gunzip $man_file || die + done + + if use tools; then + cp "${FILESDIR}"/nvidia-settings-linker.patch "${WORKDIR}" || die + sed -i \ + -e "s:@PV@:${PV}:g" \ + "${WORKDIR}"/nvidia-settings-linker.patch || die + eapply "${WORKDIR}"/nvidia-settings-linker.patch + fi + + # Allow user patches so they can support RC kernels and whatever else + eapply_user + default + + if ! [ -f nvidia_icd.json ]; then + cp nvidia_icd.json.template nvidia_icd.json || die + sed -i -e 's:__NV_VK_ICD__:libGLX_nvidia.so.0:g' nvidia_icd.json || die + fi +} + +src_compile() { + cd "${NV_SRC}" + if use tools; then + emake -C "${S}"/nvidia-settings-${PV}/src/libXNVCtrl \ + DO_STRIP= \ + LIBDIR="$(get_libdir)" \ + NVLD="$(tc-getLD)" \ + NV_VERBOSE=1 \ + OUTPUTDIR=. \ + RANLIB="$(tc-getRANLIB)" + + emake -C "${S}"/nvidia-settings-${PV}/src \ + DO_STRIP= \ + GTK3_AVAILABLE=$(usex gtk3 1 0) \ + LIBDIR="$(get_libdir)" \ + NVLD="$(tc-getLD)" \ + NVML_ENABLED=0 \ + NV_USE_BUNDLED_LIBJANSSON=0 \ + NV_VERBOSE=1 \ + OUTPUTDIR=. + fi +} + +# Install nvidia library: +# the first parameter is the library to install +# the second parameter is the provided soversion +# the third parameter is the target directory if it is not /usr/lib +donvidia() { + # Full path to library + nv_LIB="${1}" + + # SOVER to use + nv_SOVER="$(scanelf -qF'%S#F' ${nv_LIB})" + + # Where to install + nv_DEST="${2}" + + # Get just the library name + nv_LIBNAME=$(basename "${nv_LIB}") + + if [[ "${nv_DEST}" ]]; then + exeinto ${nv_DEST} + action="doexe" + else + nv_DEST="/usr/$(get_libdir)" + action="dolib.so" + fi + + # Install the library + ${action} ${nv_LIB} || die "failed to install ${nv_LIBNAME}" + + # If the library has a SONAME and SONAME does not match the library name, + # then we need to create a symlink + if [[ ${nv_SOVER} ]] && ! [[ "${nv_SOVER}" = "${nv_LIBNAME}" ]]; then + dosym ${nv_LIBNAME} ${nv_DEST}/${nv_SOVER} \ + || die "failed to create ${nv_DEST}/${nv_SOVER} symlink" + fi + + dosym ${nv_LIBNAME} ${nv_DEST}/${nv_LIBNAME/.so*/.so} \ + || die "failed to create ${nv_LIBNAME/.so*/.so} symlink" +} + +src_install() { + if use kernel_linux; then + # Add the aliases + # This file is tweaked with the appropriate video group in + # pkg_preinst, see bug #491414 + insinto /etc/modprobe.d + newins "${FILESDIR}"/nvidia-169.07 nvidia.conf + if use uvm; then + doins "${FILESDIR}"/nvidia-rmmod.conf + udev_newrules "${FILESDIR}"/nvidia-uvm.udev-rule 99-nvidia-uvm.rules + else + sed -e 's|nvidia-uvm ||g' "${FILESDIR}"/nvidia-rmmod.conf \ + > "${T}"/nvidia-rmmod.conf || die + doins "${T}"/nvidia-rmmod.conf + fi + + # Ensures that our device nodes are created when not using X + exeinto "$(get_udevdir)" + newexe "${FILESDIR}"/nvidia-udev.sh-r1 nvidia-udev.sh + udev_newrules "${FILESDIR}"/nvidia.udev-rule 99-nvidia.rules + elif use kernel_FreeBSD; then + if use x86-fbsd; then + insinto /boot/modules + doins "${S}/src/nvidia.kld" + fi + + exeinto /boot/modules + doexe "${S}/src/nvidia.ko" + fi + + # NVIDIA kernel <-> userspace driver config lib + donvidia ${NV_OBJ}/libnvidia-cfg.so.${NV_SOVER} + + # NVIDIA framebuffer capture library + donvidia ${NV_OBJ}/libnvidia-fbc.so.${NV_SOVER} + + # NVIDIA video encode/decode <-> CUDA + if use kernel_linux; then + donvidia ${NV_OBJ}/libnvcuvid.so.${NV_SOVER} + donvidia ${NV_OBJ}/libnvidia-encode.so.${NV_SOVER} + fi + + if use X; then + # Xorg DDX driver + insinto /usr/$(get_libdir)/xorg/modules/drivers + doins ${NV_X11}/nvidia_drv.so + + # Xorg GLX driver + donvidia ${NV_X11}/libglxserver_nvidia.so.${NV_SOVER} \ + /usr/$(get_libdir)/xorg/modules/extensions + + # Xorg nvidia.conf + if has_version '>=x11-base/xorg-server-1.16'; then + insinto /usr/share/X11/xorg.conf.d + newins {,50-}nvidia-drm-outputclass.conf + fi + + insinto /usr/share/glvnd/egl_vendor.d + doins ${NV_X11}/10_nvidia.json + fi + + if use wayland; then + insinto /usr/share/egl/egl_external_platform.d + doins ${NV_X11}/10_nvidia_wayland.json + fi + + # OpenCL ICD for NVIDIA + if use kernel_linux; then + insinto /etc/OpenCL/vendors + doins ${NV_OBJ}/nvidia.icd + fi + + # Helper Apps + exeinto /opt/bin/ + + if use X; then + doexe ${NV_OBJ}/nvidia-xconfig + + insinto /etc/vulkan/icd.d + doins nvidia_icd.json + + insinto /etc/vulkan/implicit_layer.d + doins nvidia_layers.json + fi + + if use kernel_linux; then + doexe ${NV_OBJ}/nvidia-cuda-mps-control + doexe ${NV_OBJ}/nvidia-cuda-mps-server + doexe ${NV_OBJ}/nvidia-debugdump + doexe ${NV_OBJ}/nvidia-persistenced + doexe ${NV_OBJ}/nvidia-smi + + # install nvidia-modprobe setuid and symlink in /usr/bin (bug #505092) + doexe ${NV_OBJ}/nvidia-modprobe + fowners root:video /opt/bin/nvidia-modprobe + fperms 4710 /opt/bin/nvidia-modprobe + dosym /{opt,usr}/bin/nvidia-modprobe + + doman nvidia-cuda-mps-control.1 + doman nvidia-modprobe.1 + doman nvidia-persistenced.1 + newinitd "${FILESDIR}/nvidia-smi.init" nvidia-smi + newconfd "${FILESDIR}/nvidia-persistenced.conf" nvidia-persistenced + newinitd "${FILESDIR}/nvidia-persistenced.init" nvidia-persistenced + fi + + if use tools; then + emake -C "${S}"/nvidia-settings-${PV}/src/ \ + DESTDIR="${D}" \ + DO_STRIP= \ + GTK3_AVAILABLE=$(usex gtk3 1 0) \ + LIBDIR="${D}/usr/$(get_libdir)" \ + NV_USE_BUNDLED_LIBJANSSON=0 \ + NV_VERBOSE=1 \ + OUTPUTDIR=. \ + PREFIX=/usr \ + install + + if use static-libs; then + dolib.a "${S}"/nvidia-settings-${PV}/src/libXNVCtrl/libXNVCtrl.a + + insinto /usr/include/NVCtrl + doins "${S}"/nvidia-settings-${PV}/src/libXNVCtrl/*.h + fi + + insinto /usr/share/nvidia/ + doins nvidia-application-profiles-${PV}-key-documentation + + insinto /etc/nvidia + newins \ + nvidia-application-profiles-${PV}-rc nvidia-application-profiles-rc + + # There is no icon in the FreeBSD tarball. + use kernel_FreeBSD || \ + doicon ${NV_OBJ}/nvidia-settings.png + + domenu "${FILESDIR}"/nvidia-settings.desktop + + exeinto /etc/X11/xinit/xinitrc.d + newexe "${FILESDIR}"/95-nvidia-settings-r1 95-nvidia-settings + fi + + dobin ${NV_OBJ}/nvidia-bug-report.sh + + if has_multilib_profile && use multilib; then + local OABI=${ABI} + for ABI in $(get_install_abis); do + src_install-libs + done + ABI=${OABI} + unset OABI + else + src_install-libs + fi + + is_final_abi || die "failed to iterate through all ABIs" + + # Documentation + if use kernel_FreeBSD; then + dodoc "${NV_DOC}/README" + use X && doman "${NV_MAN}"/nvidia-xconfig.1 + use tools && doman "${NV_MAN}"/nvidia-settings.1 + else + # Docs + newdoc "${NV_DOC}/README.txt" README + dodoc "${NV_DOC}/NVIDIA_Changelog" + doman "${NV_MAN}"/nvidia-smi.1 + use X && doman "${NV_MAN}"/nvidia-xconfig.1 + use tools && doman "${NV_MAN}"/nvidia-settings.1 + doman "${NV_MAN}"/nvidia-cuda-mps-control.1 + fi + + readme.gentoo_create_doc + + docinto html + dodoc -r ${NV_DOC}/html/* +} + +src_install-libs() { + local inslibdir=$(get_libdir) + if use libglvnd; then + local GL_ROOT="/usr/$(get_libdir)" + else + local GL_ROOT="/usr/$(get_libdir)/opengl/nvidia/lib" + fi + local CL_ROOT="/usr/$(get_libdir)/OpenCL/vendors/nvidia" + local nv_libdir="${NV_OBJ}" + + if use kernel_linux && has_multilib_profile && [[ ${ABI} == "x86" ]]; then + nv_libdir="${NV_OBJ}"/32 + fi + + if use X; then + NV_GLX_LIBRARIES=( + "libEGL_nvidia.so.${NV_SOVER} ${GL_ROOT}" + "libGLESv1_CM_nvidia.so.${NV_SOVER} ${GL_ROOT}" + "libGLESv2_nvidia.so.${NV_SOVER} ${GL_ROOT}" + "libGLX_nvidia.so.${NV_SOVER} ${GL_ROOT}" + "libOpenCL.so.1.0.0 ${CL_ROOT}" + "libcuda.so.${NV_SOVER}" + "libnvcuvid.so.${NV_SOVER}" + "libnvidia-compiler.so.${NV_SOVER}" + "libnvidia-eglcore.so.${NV_SOVER}" + "libnvidia-encode.so.${NV_SOVER}" + "libnvidia-fatbinaryloader.so.${NV_SOVER}" + "libnvidia-fbc.so.${NV_SOVER}" + "libnvidia-glcore.so.${NV_SOVER}" + "libnvidia-glsi.so.${NV_SOVER}" + "libnvidia-glvkspirv.so.${NV_SOVER}" + "libnvidia-ifr.so.${NV_SOVER}" + "libnvidia-opencl.so.${NV_SOVER}" + "libnvidia-ptxjitcompiler.so.${NV_SOVER}" + "libvdpau_nvidia.so.${NV_SOVER}" + ) + if ! use libglvnd; then + NV_GLX_LIBRARIES+=( + "libEGL.so.$( [[ ${ABI} == "amd64" ]] && usex compat ${NV_SOVER} 1.1.0 || echo 1.1.0) ${GL_ROOT}" + "libGL.so.1.7.0 ${GL_ROOT}" + "libGLESv1_CM.so.1.2.0 ${GL_ROOT}" + "libGLESv2.so.2.1.0 ${GL_ROOT}" + "libGLX.so.0 ${GL_ROOT}" + "libGLdispatch.so.0 ${GL_ROOT}" + "libOpenGL.so.0 ${GL_ROOT}" + ) + fi + + if use wayland && has_multilib_profile && [[ ${ABI} == "amd64" ]]; + then + NV_GLX_LIBRARIES+=( + "libnvidia-egl-wayland.so.1.1.4" + ) + fi + + if use kernel_FreeBSD; then + NV_GLX_LIBRARIES+=( + "libnvidia-tls.so.${NV_SOVER}" + ) + fi + + if use kernel_linux; then + NV_GLX_LIBRARIES+=( + "libnvidia-ml.so.${NV_SOVER}" + "libnvidia-tls.so.${NV_SOVER}" + ) + fi + + if use kernel_linux && has_multilib_profile && [[ ${ABI} == "amd64" ]]; + then + NV_GLX_LIBRARIES+=( + "libnvidia-cbl.so.${NV_SOVER}" + "libnvidia-rtcore.so.${NV_SOVER}" + "libnvoptix.so.${NV_SOVER}" + ) + fi + + for NV_LIB in "${NV_GLX_LIBRARIES[@]}"; do + donvidia "${nv_libdir}"/${NV_LIB} + done + fi +} + +pkg_preinst() { + # Clean the dynamic libGL stuff's home to ensure + # we dont have stale libs floating around + if [ -d "${ROOT}"/usr/lib/opengl/nvidia ]; then + rm -rf "${ROOT}"/usr/lib/opengl/nvidia/* + fi + # Make sure we nuke the old nvidia-glx's env.d file + if [ -e "${ROOT}"/etc/env.d/09nvidia ]; then + rm -f "${ROOT}"/etc/env.d/09nvidia + fi + + local videogroup="$(egetent group video | cut -d ':' -f 3)" + if [ -z "${videogroup}" ]; then + eerror "Failed to determine the video group gid" + die "Failed to determine the video group gid" + else + sed -i \ + -e "s:PACKAGE:${PF}:g" \ + -e "s:VIDEOGID:${videogroup}:" \ + "${D}"/etc/modprobe.d/nvidia.conf || die + fi +} + +pkg_postinst() { + # Switch to the nvidia implementation + if ! use libglvnd; then + use X && "${ROOT}"/usr/bin/eselect opengl set --use-old nvidia + fi + "${ROOT}"/usr/bin/eselect opencl set --use-old nvidia + + readme.gentoo_print_elog + + if ! use X; then + elog "You have elected to not install the X.org driver. Along with" + elog "this the OpenGL libraries and VDPAU libraries were not" + elog "installed. Additionally, once the driver is loaded your card" + elog "and fan will run at max speed which may not be desirable." + elog "Use the 'nvidia-smi' init script to have your card and fan" + elog "speed scale appropriately." + elog + fi + if ! use tools; then + elog "USE=tools controls whether the nvidia-settings application" + elog "is installed. If you would like to use it, enable that" + elog "flag and re-emerge this ebuild. Optionally you can install" + elog "media-video/nvidia-settings" + elog + fi +} + +pkg_prerm() { + if ! use libglvnd; then + use X && "${ROOT}"/usr/bin/eselect opengl set --use-old xorg-x11 + fi +} + +pkg_postrm() { + if ! use libglvnd; then + use X && "${ROOT}"/usr/bin/eselect opengl set --use-old xorg-x11 + fi +} diff --git a/x11-misc/lightdm-slick-greeter/Manifest b/x11-misc/lightdm-slick-greeter/Manifest index 325658c35..ec40a2a3e 100644 --- a/x11-misc/lightdm-slick-greeter/Manifest +++ b/x11-misc/lightdm-slick-greeter/Manifest @@ -1,4 +1,3 @@ DIST lightdm-slick-greeter-1.2.4.tar.gz 246714 BLAKE2B 564ff7efd84c269aa2e43705de0ee31e74d4c883d49753701a881a58d7c28aa8b02e2ae908af1289fc3ce1f6d6dc9fdeee4bd7110640e8b2e207ad11854897db SHA512 a91e3e18f974a4cfb77b713b3e06a4b55b280fd13b77c7fd273113e12b2013ffd7a449aee2f61400277144d17c2982095a9f7876f1e646c069fc3d5daf2f6a3c DIST lightdm-slick-greeter-1.2.6.tar.gz 248901 BLAKE2B 54d904f045b497c112616f39b4882ec9c8ae697bd44e6740231d89e3f6fb3b2ba81f86e1468221cc321368630a24de7d56e5ef9da44644c2deac0c61bc636af8 SHA512 ddece449c323c90bfc1c42ca7f5514292875f40e7968b49e8ddbfd1d109c5e089c1d9d3ac541beeb49d6e2900ddcaab26ad008304a88ff406e45e8431e8cbc6e -DIST slick-greeter-1.2.0.tar.gz 241431 BLAKE2B aa4d427bdb82cd4ba31019feac3155c22a4ff5d32531370084e4455f6f193001da02efc53175835ae63101c7cfd527b9d08efbc6990bcb1f57ee13b996a5c4f6 SHA512 fe12a7ba42177f102b3aca0427ef689f7c741aa1e2ffa6c5a0455816ebe3a2e72e00c644f43816612389a3f069336d1caf2903a89847b5571f417ec7d49d80f2 DIST slick-greeter-1.2.5.tar.gz 247322 BLAKE2B ed07ffb1023f7491deb921df34de550fd86aaaf09086380e23254d0fa253d094bd9cdc7b159e698034f61595b0d6d94076b0babefc60a724b8d956e1d899931f SHA512 705822b498aa6490a1ae55ea3de25949ed6ecd253f15b6f9e8e3fcbbb532d1ca5241aa3b9da4ec7a0204ac2a9feb4b9be4f58675f46ff58d9625dc8f75fdeb28 diff --git a/x11-misc/lightdm-slick-greeter/lightdm-slick-greeter-1.2.0.ebuild b/x11-misc/lightdm-slick-greeter/lightdm-slick-greeter-1.2.0.ebuild deleted file mode 100644 index 04e47ed0c..000000000 --- a/x11-misc/lightdm-slick-greeter/lightdm-slick-greeter-1.2.0.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -MY_PN="slick-greeter" -S="${WORKDIR}/${MY_PN}-${PV}" - -inherit autotools vala gnome2-utils - -DESCRIPTION="LightDM greeter forked from Unity by Linux Mint team" -HOMEPAGE="https://github.com/linuxmint/${MY_PN}" -SRC_URI="https://github.com/linuxmint/${MY_PN}/archive/${PV}.tar.gz -> ${MY_PN}-${PV}.tar.gz" - -LICENSE="GPL-3" -KEYWORDS="~amd64 ~x86" -SLOT="0" - -DEPEND=" - >=dev-util/intltool-0.35.0 - dev-lang/vala:0.42 - sys-devel/gettext - sys-devel/automake-wrapper" - -RDEPEND=" - x11-libs/cairo - media-libs/freetype - >=x11-libs/gtk+-3.20:3 - media-libs/libcanberra - x11-libs/libXext - >=x11-misc/lightdm-base-1.12[introspection,vala] - x11-libs/pixman" - -src_prepare() { - export VALAC="$(type -P valac-0.42)" - eautoreconf - default -} - -pkg_postinst() { - gnome2_schemas_update - # Make sure to have a greeter properly configured - eselect lightdm set slick-greeter --use-old -} - -pkg_postrm() { - gnome2_schemas_update --uninstall - eselect lightdm set 1 # hope some other greeter is installed -} -