diff options
author | Florian Schmaus <flow@gentoo.org> | 2023-07-29 15:58:55 +0200 |
---|---|---|
committer | Florian Schmaus <flow@gentoo.org> | 2023-07-29 16:01:51 +0200 |
commit | d178d77b616838e107827658005470c1ffa7b623 (patch) | |
tree | b2acbf3c5f4fe04f114981c3443baeca5b1dfc48 /x11-misc/autorandr | |
parent | x11-misc/autorandr: stabilize 1.14 for amd64 (diff) | |
download | gentoo-d178d77b616838e107827658005470c1ffa7b623.tar.gz gentoo-d178d77b616838e107827658005470c1ffa7b623.tar.bz2 gentoo-d178d77b616838e107827658005470c1ffa7b623.zip |
x11-misc/autorandr: drop 1.12.1-r2
Signed-off-by: Florian Schmaus <flow@gentoo.org>
Diffstat (limited to 'x11-misc/autorandr')
-rw-r--r-- | x11-misc/autorandr/Manifest | 1 | ||||
-rw-r--r-- | x11-misc/autorandr/autorandr-1.12.1-r2.ebuild | 77 |
2 files changed, 0 insertions, 78 deletions
diff --git a/x11-misc/autorandr/Manifest b/x11-misc/autorandr/Manifest index 6553aa5e1ee3..6f4c8baceb83 100644 --- a/x11-misc/autorandr/Manifest +++ b/x11-misc/autorandr/Manifest @@ -1,3 +1,2 @@ -DIST autorandr-1.12.1.tar.gz 45550 BLAKE2B 5b434325d13c00c3fa70b5d09edb540cdcf3bb921307c60f2c616231e7a87ea85f60e39500ed8116f28619139f71ecc4a8fa153ffadc6b8d74df570736a0d815 SHA512 a7e095eb96e7e0d3a5b3b2122d68a3d3a5121d8be7a86ddd9f837ad42b7a53ed5ee45151f23861c5b900e214a4dfc0c575f45fe70c8c5587562a4035458137a0 DIST autorandr-1.13.3.tar.gz 47630 BLAKE2B fb53316af4d3fa399f278be874e95d06cbd188bebf1e22793ca30ad4f9a8817674390c7d02d501f4a35a0a6f23b16202e97f2a6559727e67e908d21121de8a56 SHA512 6c3f99da52a029a8f1717020ebafbd7afb58d97651776a6620f47e299584704ab65c37be5e9497cca3c53d6268ebde11481f32967ec289adf606a73e587e874f DIST autorandr-1.14.tar.gz 49234 BLAKE2B 3ff149d30b023bc54d83c4be1f81f67204d20d3e6a7a43e15009c1c4f1180fa920789ce84ae56f13946a9cec1f72bc7adb27be3c58ca8532235d0457b1f5aa92 SHA512 dc1ee4c28b06dde4a721fe564734e7a79c1c843986f7c84307ea60f19c2237ba53d1bcd2202e377363e7e0a5bf5dea95bea4490b3fa5ec5fa6738114646a502d diff --git a/x11-misc/autorandr/autorandr-1.12.1-r2.ebuild b/x11-misc/autorandr/autorandr-1.12.1-r2.ebuild deleted file mode 100644 index 5f8e8128a64e..000000000000 --- a/x11-misc/autorandr/autorandr-1.12.1-r2.ebuild +++ /dev/null @@ -1,77 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) - -inherit bash-completion-r1 distutils-r1 systemd udev - -if [[ "${PV}" = "9999" ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/phillipberndt/${PN}.git" -else - SRC_URI="https://github.com/phillipberndt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="amd64 x86" -fi - -DESCRIPTION="Automatically select a display configuration based on connected devices" -HOMEPAGE="https://github.com/phillipberndt/autorandr" - -LICENSE="GPL-3" -SLOT="0" -IUSE="launcher systemd udev" - -RDEPEND=" - x11-apps/xrandr - launcher? ( x11-libs/libxcb ) - udev? ( virtual/udev ) -" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" - -PATCHES=( - # https://github.com/phillipberndt/autorandr/pull/306 - "${FILESDIR}"/autorandr-Makefile-fix-install_udev-target-by-s-TARGETS-MAKECM.patch -) - -src_compile() { - distutils-r1_src_compile - - if use launcher; then - emake contrib/autorandr_launcher/autorandr-launcher - fi -} - -src_install() { - distutils-r1_src_install - - doman autorandr.1 - - local targets=( - autostart_config - bash_completion - $(usev launcher) - $(usev systemd) - $(usev udev) - ) - - emake DESTDIR="${D}" \ - BASH_COMPLETIONS_DIR="$(get_bashcompdir)" \ - SYSTEMD_UNIT_DIR="$(systemd_get_systemunitdir)" \ - UDEV_RULES_DIR="$(get_udevdir)"/rules.d \ - $(printf "install_%s " "${targets[@]}") -} - -pkg_postinst() { - if use udev; then - udev_reload - fi -} - -pkg_postrm() { - if use udev; then - udev_reload - fi -} |