From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libcss/
Date: Tue, 16 Mar 2021 19:23:12 +0000 (UTC) [thread overview]
Message-ID: <1615922554.e904cfd4f99fa8a17db99762282499580ad72d3d.sam@gentoo> (raw)
commit: e904cfd4f99fa8a17db99762282499580ad72d3d
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 16 18:44:23 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Mar 16 19:22:34 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e904cfd4
dev-libs/libcss: drop 0.8.0-r2, 0.9.0-r1
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-libs/libcss/Manifest | 2 --
dev-libs/libcss/libcss-0.8.0-r2.ebuild | 49 --------------------------------
dev-libs/libcss/libcss-0.9.0-r1.ebuild | 51 ----------------------------------
3 files changed, 102 deletions(-)
diff --git a/dev-libs/libcss/Manifest b/dev-libs/libcss/Manifest
index 7ea21401fad..3eac4c2b233 100644
--- a/dev-libs/libcss/Manifest
+++ b/dev-libs/libcss/Manifest
@@ -1,3 +1 @@
-DIST libcss-0.8.0-src.tar.gz 516474 BLAKE2B 937adc65f68fecece189e0f06cfd601ae2d76f0b4dcdbcb8a67f3f058c4355c19c12c088fb50ecf1e6bcd8436c867b1845b3da27bb44b5d1a009bd946bf5e53e SHA512 fb52920ce462f442dfafa7b0061fa465e6c04827d26186e8468855c2a40e8f34e6f0689d5eb58cb0b2ee0759d083fcff5c8c583e1d98693755003c352a22a4be
-DIST libcss-0.9.0-src.tar.gz 522267 BLAKE2B c104dd2cf859b908d68ac318d1da0430733b8813fbfbcb1f8f6a3d373e3a2ba1db6685542823fe0bef838619ec358f336f8eb07dc073a55a2f8c1907727295b9 SHA512 435dbca91aa2b91398dddbc1d9d035d104be193bb593907e3fff9320cc4f668f8aae54e0d5d0b7cd2ed9cb36fc02255fbe97bc9038b79fe505b581d6af1ded0d
DIST libcss-0.9.1-src.tar.gz 522715 BLAKE2B 32206403f77997e6692eed00c9233e6f49f08efc2515901a8bef7590883e44ef320511368fe5a67968102911d849696a4419735c7f6691f0f272fcc3b9a000d8 SHA512 069b30e74ff03fc91666dd16f22a38effbb3e29f066fd0fbc09efdc26dd8678e3f31adeaf918c5596fb962c56335fb2ecdbde1aa6704fcbdec3c2f97d03e5bbe
diff --git a/dev-libs/libcss/libcss-0.8.0-r2.ebuild b/dev-libs/libcss/libcss-0.8.0-r2.ebuild
deleted file mode 100644
index 9c537d57334..00000000000
--- a/dev-libs/libcss/libcss-0.8.0-r2.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit netsurf
-
-DESCRIPTION="CSS parser and selection engine, written in C"
-HOMEPAGE="http://www.netsurf-browser.org/projects/libcss/"
-SRC_URI="https://download.netsurf-browser.org/libs/releases/${P}-src.tar.gz"
-
-LICENSE="MIT"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- >=dev-libs/libparserutils-0.2.1-r1
- >=dev-libs/libwapcaplet-0.4.0"
-DEPEND="${RDEPEND}
- >=dev-util/netsurf-buildsystem-1.7-r1
- virtual/pkgconfig
- test? ( dev-lang/perl )"
-
-src_prepare() {
- default
- sed -e '1i#pragma GCC diagnostic ignored "-Wimplicit-fallthrough"' \
- -i src/parse/parse.c src/select/arena_hash.h || die
- sed -e '1i#pragma GCC diagnostic ignored "-Wmaybe-uninitialized"' \
- -i src/parse/parse.c src/select/computed.c || die
-}
-
-_emake() {
- netsurf_define_makeconf
- emake "${NETSURF_MAKECONF[@]}" COMPONENT_TYPE=lib-shared $@
-}
-
-src_compile() {
- _emake
-}
-
-src_test() {
- _emake test
-}
-
-src_install() {
- _emake DESTDIR="${D}" install
-}
diff --git a/dev-libs/libcss/libcss-0.9.0-r1.ebuild b/dev-libs/libcss/libcss-0.9.0-r1.ebuild
deleted file mode 100644
index f532d433da5..00000000000
--- a/dev-libs/libcss/libcss-0.9.0-r1.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit netsurf
-
-DESCRIPTION="CSS parser and selection engine, written in C"
-HOMEPAGE="http://www.netsurf-browser.org/projects/libcss/"
-SRC_URI="https://download.netsurf-browser.org/libs/releases/${P}-src.tar.gz"
-
-LICENSE="MIT"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64"
-IUSE="test"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- dev-libs/libparserutils
- dev-libs/libwapcaplet"
-DEPEND="${RDEPEND}
- test? ( dev-lang/perl )"
-BDEPEND="
- >=dev-util/netsurf-buildsystem-1.7-r1
- virtual/pkgconfig"
-
-src_prepare() {
- default
- sed -e '1i#pragma GCC diagnostic ignored "-Wimplicit-fallthrough"' \
- -i src/parse/parse.c src/select/arena_hash.h || die
- sed -e '1i#pragma GCC diagnostic ignored "-Wmaybe-uninitialized"' \
- -i src/parse/parse.c src/select/computed.c || die
-}
-
-_emake() {
- netsurf_define_makeconf
- emake "${NETSURF_MAKECONF[@]}" COMPONENT_TYPE=lib-shared $@
-}
-
-src_compile() {
- _emake
-}
-
-src_test() {
- _emake test
-}
-
-src_install() {
- _emake DESTDIR="${D}" install
-}
next reply other threads:[~2021-03-16 19:23 UTC|newest]
Thread overview: 29+ 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 --
2025-01-24 6:33 [gentoo-commits] repo/gentoo:master commit in: dev-libs/libcss/ Arthur Zamarin
2025-01-24 6:33 Arthur Zamarin
2025-01-24 6:33 Arthur Zamarin
2025-01-24 2:23 Sam James
2025-01-24 2:23 Sam James
2024-03-04 19:11 Jakov Smolić
2024-01-19 9:31 Michael Orlitzky
2024-01-19 9:31 Michael Orlitzky
2023-09-28 23:24 Michael Orlitzky
2023-08-14 21:15 Michael Orlitzky
2023-05-27 22:02 Michael Orlitzky
2022-03-22 18:43 Jakov Smolić
2021-11-10 17:56 Jakov Smolić
2021-03-30 17:38 Sam James
2020-08-15 12:03 Michael Orlitzky
2020-06-17 13:38 Michael Orlitzky
2019-12-04 14:49 Joonas Niilola
2019-12-04 14:49 Joonas Niilola
2019-07-05 19:05 Virgil Dupras
2019-02-17 17:46 Sergei Trofimovich
2019-02-04 21:38 Virgil Dupras
2018-11-13 18:13 Virgil Dupras
2017-12-18 14:34 Michael Weber
2017-02-05 12:18 Michael Weber
2017-01-27 23:33 Michael Weber
2017-01-24 1:16 Michael Weber
2016-07-25 17:45 Chí-Thanh Christopher Nguyễn
2016-03-02 22:53 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=1615922554.e904cfd4f99fa8a17db99762282499580ad72d3d.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