public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/llpp/files/, app-text/llpp/
Date: Tue, 16 Mar 2021 19:23:11 +0000 (UTC)	[thread overview]
Message-ID: <1615922542.0b355a7af9492adf20bbfa49018ed8d139fcad05.sam@gentoo> (raw)

commit:     0b355a7af9492adf20bbfa49018ed8d139fcad05
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 16 18:34:06 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Mar 16 19:22:22 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b355a7a

app-text/llpp: drop 30

Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-text/llpp/Manifest                   |  1 -
 app-text/llpp/files/llpp-30-keysym.patch | 55 ----------------------------
 app-text/llpp/llpp-30.ebuild             | 63 --------------------------------
 3 files changed, 119 deletions(-)

diff --git a/app-text/llpp/Manifest b/app-text/llpp/Manifest
index 1c44ba978be..11ef261f10d 100644
--- a/app-text/llpp/Manifest
+++ b/app-text/llpp/Manifest
@@ -1,2 +1 @@
-DIST llpp-30.tar.gz 165821 BLAKE2B 755648f9f7e0e0740dd9647559c085ab1626edfceb91d8df4aa783610f32499d744f24a2e0ac0d6f13e747695e8829112e59bcf0fc78c7ef5f4b2427c759353d SHA512 1dfcf273bdabfb3c7b38366bac60659555b943f459cb3fd6e656df1a33c0f84e6745d62522c5498df0bd6182bda13973144724054588c07145018bb3e758d893
 DIST llpp-33.tar.gz 172410 BLAKE2B 6f45d262520bb9e09a08088b9d6b6a1c272ca32d44b507537e7887c76f17ec782d805f4fb94e528d7bca5a9eb87c35ff64b883bd0fdab5609f2807bc8043b1d5 SHA512 f14669eab8934ddc0ac530a67055199a73c7f0c2906dc4a80a729326340691ad53433afce2e638848471852901c88fcc99ae1d66b1abf179e4f5892976b585e8

diff --git a/app-text/llpp/files/llpp-30-keysym.patch b/app-text/llpp/files/llpp-30-keysym.patch
deleted file mode 100644
index b1527e1856f..00000000000
--- a/app-text/llpp/files/llpp-30-keysym.patch
+++ /dev/null
@@ -1,55 +0,0 @@
-From 6e40f7315cb620fef1d96bbe56cfe24dd91e182a Mon Sep 17 00:00:00 2001
-From: Eli Schwartz <eschwartz93@gmail.com>
-Date: Tue, 5 Jun 2018 11:56:06 -0400
-Subject: [PATCH] Do not use CPPFLAGS to add headers to source files
-
-Source code, e.g. #include, belongs in the source code, not the build
-system. Build systems are for defining include paths, not the includes
-themselves.
-
-Drop the KeySym keyword since it seems to be a useless alias for
-uint32_t which might as well be used directly instead of indirectly
-using #define everywhere.
----
- link.c               | 4 ++--
- wsi/x11/keysym2ucs.c | 4 +++-
- 2 files changed, 5 insertions(+), 3 deletions(-)
-
-diff --git a/link.c b/link.c
-index 783b12f..e8dcac3 100644
---- a/link.c
-+++ b/link.c
-@@ -3437,9 +3437,9 @@ CAMLprim value ml_keysymtoutf8 (value keysym_v)
- {
-     CAMLparam1 (keysym_v);
-     CAMLlocal1 (str_v);
--    KeySym keysym = Int_val (keysym_v);
-+    uint32_t keysym = Int_val (keysym_v);
-     Rune rune;
--    extern long keysym2ucs (KeySym);
-+    extern long keysym2ucs (uint32_t);
-     int len;
-     char buf[5];
- 
-diff --git a/wsi/x11/keysym2ucs.c b/wsi/x11/keysym2ucs.c
-index 38f9f1f..0f907c2 100644
---- a/wsi/x11/keysym2ucs.c
-+++ b/wsi/x11/keysym2ucs.c
-@@ -37,6 +37,8 @@
-  * AUTOMATICALLY GENERATED FILE, DO NOT EDIT !!! (unicode/convmap.pl)
-  */
- 
-+#include <inttypes.h>
-+
- struct codepair {
-   unsigned short keysym;
-   unsigned short ucs;
-@@ -816,7 +818,7 @@ struct codepair {
-   { 0x20ac, 0x20ac }, /*                    EuroSign € EURO SIGN */
- };
- 
--long keysym2ucs(KeySym keysym)
-+long keysym2ucs(uint32_t keysym)
- {
-     int min = 0;
-     int max = sizeof(keysymtab) / sizeof(struct codepair) - 1;

diff --git a/app-text/llpp/llpp-30.ebuild b/app-text/llpp/llpp-30.ebuild
deleted file mode 100644
index 31eafbf3035..00000000000
--- a/app-text/llpp/llpp-30.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs xdg
-
-DESCRIPTION="graphical PDF viewer which aims to superficially resemble less(1)"
-HOMEPAGE="https://github.com/moosotc/llpp"
-SRC_URI="https://github.com/moosotc/llpp/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-IUSE="+ocamlopt"
-
-BDEPEND="
-	>=dev-lang/ocaml-4.02:=[ocamlopt?]
-	virtual/pkgconfig
-"
-RDEPEND="
-	>=app-text/mupdf-1.12.0:0=
-	media-libs/openjpeg:2
-	media-libs/fontconfig:1.0
-	media-libs/freetype:2
-	media-libs/jbig2dec:=
-	sys-libs/zlib
-	virtual/jpeg:0
-	x11-libs/libX11
-	x11-misc/xsel
-"
-DEPEND="${RDEPEND}
-	app-arch/bzip2
-	app-text/asciidoc
-	dev-ml/lablgl:=[glut,ocamlopt?]
-	media-libs/libXcm
-	x11-libs/libXau
-	x11-libs/libXdmcp
-	x11-libs/libXmu
-"
-
-RESTRICT="!ocamlopt? ( strip )"
-
-PATCHES=( "${FILESDIR}"/${P}-keysym.patch )
-
-src_prepare() {
-	default
-
-	# use custom makefile from archlinux with minor changes
-	cp "${FILESDIR}"/Makefile "${S}" || die
-
-	# re-add desktop file removed upstream
-	cp "${FILESDIR}"/llpp.desktop "${S}"/misc || die
-}
-
-src_compile() {
-	emake -j1 VERSION=${PV} CC="$(tc-getCC)" LIBDIR="/usr/$(get_libdir)"
-}
-
-src_install() {
-	emake DESTDIR="${ED}" PREFIX="/usr" install
-	dodoc README Thanks
-}


             reply	other threads:[~2021-03-16 19:23 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-16 19:23 Sam James [this message]
  -- strict thread matches above, loose matches on Subject: below --
2019-02-20 21:40 [gentoo-commits] repo/gentoo:master commit in: app-text/llpp/files/, app-text/llpp/ Pacho Ramos
2015-08-11 10:29 Michael Weber

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1615922542.0b355a7af9492adf20bbfa49018ed8d139fcad05.sam@gentoo \
    --to=sam@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox