commit:     7f94055adb54e559a3469fd77a408cd9e9cab4b4
Author:     stefson <herrtimson <AT> yahoo <DOT> de>
AuthorDate: Sat Jan 19 08:55:35 2019 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Wed Jan 23 19:28:40 2019 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=7f94055a

dev-libs/weston: remove old

Signed-off-by: Anthony G. Basile <blueness <AT> gentoo.org>

 dev-libs/weston/Manifest                |   1 -
 dev-libs/weston/files/1.11.0-musl.patch |  42 ---------
 dev-libs/weston/weston-1.11.0.ebuild    | 159 --------------------------------
 3 files changed, 202 deletions(-)

diff --git a/dev-libs/weston/Manifest b/dev-libs/weston/Manifest
index 10c7bcf..1f806da 100644
--- a/dev-libs/weston/Manifest
+++ b/dev-libs/weston/Manifest
@@ -1,2 +1 @@
-DIST weston-1.11.0.tar.xz 1242244 SHA256 
05e086e9f186a06843b9f7a5e1abf19347b1a6e4be26d7e74927abc17b6b7125 SHA512 
30c43058aeca2d90d8c57ee3beb824aa42474eb2d0fa942622949b49c7771eb5d8d9c452d496a13950baabffef3c343d7386821778ae931939039fab2f782ad5
 WHIRLPOOL 
5e76484c1413ddc14c426c80845790e6b636bb2d827188563ca9b41f23ca4afd6cf20c8a743c0ff1b6c09d371c3e6988d0e9765333660aeb8723ddf62208b876
 DIST weston-3.0.0.tar.xz 1300340 SHA256 
cde1d55e8dd70c3cbb3d1ec72f60e60000041579caa1d6a262bd9c35e93723a5 SHA512 
b824c39f2a884f6d50d607613f447090621f684c96f7d905f25f6e500dabd03ecb2b1cd1030babc193c3417223cb220103abb792437e1a5ead7229a76b5c7a58
 WHIRLPOOL 
8b46b199f40e51530c17f782a12e0a3a5b65bffebc090db0c9296454b0bdcb053c0dfd6de3d0c5150e2404ea87d49280c11a0475382e2350699ae27deb204383

diff --git a/dev-libs/weston/files/1.11.0-musl.patch 
b/dev-libs/weston/files/1.11.0-musl.patch
deleted file mode 100644
index 05123ad..0000000
--- a/dev-libs/weston/files/1.11.0-musl.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-diff -Naur weston-1.11.0.orig/shared/xalloc.h weston-1.11.0/shared/xalloc.h
---- weston-1.11.0.orig/shared/xalloc.h 2017-03-05 16:35:25.816193000 -0800
-+++ weston-1.11.0/shared/xalloc.h      2017-03-05 16:38:16.043363715 -0800
-@@ -30,6 +30,7 @@
- extern "C" {
- #endif
- 
-+#include <stdint.h>
- #include <stdlib.h>
- #include <string.h>
- 
-diff -Naur weston-1.11.0.orig/src/error.h weston-1.11.0/src/error.h
---- weston-1.11.0.orig/src/error.h     1969-12-31 16:00:00.000000000 -0800
-+++ weston-1.11.0/src/error.h  2017-03-05 16:37:51.441046969 -0800
-@@ -0,0 +1,27 @@
-+#ifndef _ERROR_H_
-+#define _ERROR_H_
-+
-+#include <stdarg.h>
-+#include <stdio.h>
-+#include <stdlib.h>
-+#include <string.h>
-+#include <errno.h>
-+
-+static unsigned int error_message_count = 0;
-+
-+static inline void error(int status, int errnum, const char* format, ...)
-+{
-+      va_list ap;
-+      fprintf(stderr, "%s: ", program_invocation_name);
-+      va_start(ap, format);
-+      vfprintf(stderr, format, ap);
-+      va_end(ap);
-+      if (errnum)
-+              fprintf(stderr, ": %s", strerror(errnum));
-+      fprintf(stderr, "\n");
-+      error_message_count++;
-+      if (status)
-+              exit(status);
-+}
-+
-+#endif        /* _ERROR_H_ */

diff --git a/dev-libs/weston/weston-1.11.0.ebuild 
b/dev-libs/weston/weston-1.11.0.ebuild
deleted file mode 100644
index 3f9fd77..0000000
--- a/dev-libs/weston/weston-1.11.0.ebuild
+++ /dev/null
@@ -1,159 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-if [[ ${PV} = 9999* ]]; then
-       EGIT_REPO_URI="https://anongit.freedesktop.org/git/wayland/weston.git";
-       GIT_ECLASS="git-r3"
-       EXPERIMENTAL="true"
-fi
-VIRTUALX_REQUIRED="test"
-RESTRICT="test"
-
-inherit autotools readme.gentoo-r1 toolchain-funcs virtualx $GIT_ECLASS
-
-DESCRIPTION="Wayland reference compositor"
-HOMEPAGE="https://wayland.freedesktop.org/";
-
-if [[ $PV = 9999* ]]; then
-       SRC_URI="${SRC_PATCHES}"
-       KEYWORDS="amd64 arm arm64 x86"
-else
-       SRC_URI="https://wayland.freedesktop.org/releases/${P}.tar.xz";
-       KEYWORDS="amd64 arm arm64 x86"
-fi
-
-LICENSE="MIT CC-BY-SA-3.0"
-SLOT="0"
-
-IUSE="colord dbus +drm editor examples fbdev +gles2 headless ivi jpeg lcms rdp 
+resize-optimization rpi +launch screen-sharing static-libs +suid systemd test 
unwind wayland-compositor webp +X xwayland"
-
-REQUIRED_USE="
-       drm? ( gles2 )
-       screen-sharing? ( rdp )
-       systemd? ( dbus )
-       test? ( X )
-       wayland-compositor? ( gles2 )
-"
-
-RDEPEND="
-       >=dev-libs/libinput-0.8.0
-       >=dev-libs/wayland-1.10.0
-       >=dev-libs/wayland-protocols-1.2
-       lcms? ( media-libs/lcms:2 )
-       media-libs/libpng:0=
-       webp? ( media-libs/libwebp:0= )
-       jpeg? ( virtual/jpeg:0= )
-       >=x11-libs/cairo-1.11.3
-       >=x11-libs/libdrm-2.4.30
-       x11-libs/libxkbcommon
-       x11-libs/pixman
-       x11-misc/xkeyboard-config
-       fbdev? (
-               >=sys-libs/mtdev-1.1.0
-               >=virtual/udev-136
-       )
-       colord? ( >=x11-misc/colord-0.1.27 )
-       dbus? ( sys-apps/dbus )
-       drm? (
-               media-libs/mesa[gbm]
-               >=sys-libs/mtdev-1.1.0
-               >=virtual/udev-136
-       )
-       editor? ( x11-libs/pango )
-       gles2? (
-               media-libs/mesa[gles2,wayland]
-       )
-       rdp? (
-               >=net-misc/freerdp-1.1.0_beta1_p20130710
-               <net-misc/freerdp-2.0.0_pre20161219
-       )
-       rpi? (
-               >=sys-libs/mtdev-1.1.0
-               >=virtual/udev-136
-       )
-       systemd? (
-               sys-auth/pambase[systemd]
-               sys-apps/systemd[pam]
-       )
-       launch? ( sys-auth/pambase )
-       unwind? ( sys-libs/libunwind )
-       X? (
-               x11-libs/libxcb
-               x11-libs/libX11
-       )
-       xwayland? (
-               x11-base/xorg-server[wayland]
-               x11-libs/cairo[xcb]
-               x11-libs/libxcb
-               x11-libs/libXcursor
-       )
-"
-DEPEND="${RDEPEND}
-       virtual/pkgconfig
-"
-
-PATCHES=( "${FILESDIR}/${PV}-musl.patch" )
-
-src_prepare() {
-       if [[ ${PV} = 9999* ]]; then
-               eautoreconf
-       fi
-       epatch "${PATCHES[@]}"
-}
-
-src_configure() {
-       local myconf
-       if use examples || use test; then
-               myconf="--enable-simple-clients"
-       else
-               myconf="--disable-simple-clients"
-       fi
-
-       myconf+=" --with-cairo=image --disable-simple-egl-clients"
-
-       econf \
-               $(use_enable examples demo-clients-install) \
-               $(use_enable fbdev fbdev-compositor) \
-               $(use_enable dbus) \
-               $(use_enable drm drm-compositor) \
-               $(use_enable headless headless-compositor) \
-               $(use_enable ivi ivi-shell) \
-               $(use_enable lcms) \
-               $(use_enable rdp rdp-compositor) \
-               $(use_enable rpi rpi-compositor) \
-               $(use_enable wayland-compositor) \
-               $(use_enable X x11-compositor) \
-               $(use_enable launch weston-launch) \
-               $(use_enable colord) \
-               $(use_enable gles2 egl) \
-               $(use_enable unwind libunwind) \
-               $(use_enable resize-optimization) \
-               $(use_enable screen-sharing) \
-               $(use_enable suid setuid-install) \
-               $(use_enable systemd systemd-login) \
-               $(use_enable systemd systemd-notify) \
-               $(use_enable xwayland) \
-               $(use_enable xwayland xwayland-test) \
-               $(use_with jpeg) \
-               $(use_with webp) \
-               --disable-simple-dmabuf-intel-client \
-               --disable-simple-dmabuf-v4l-client \
-               ${myconf}
-}
-
-src_test() {
-       export XDG_RUNTIME_DIR="${T}/runtime-dir"
-       mkdir "${XDG_RUNTIME_DIR}" || die
-       chmod 0700 "${XDG_RUNTIME_DIR}" || die
-
-       cd "${BUILD_DIR}" || die
-       Xemake check
-}
-
-src_install() {
-       default
-
-       readme.gentoo_create_doc
-}

Reply via email to