summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* */*: Add proxied="yes" for non-@gentoo.org peopleMichał Górny2021-03-161-1/+1
| | | | | | | | | | | | Done via: find -name metadata.xml -exec xml ed -P -L \ -a '/pkgmetadata/maintainer[substring(email, string-length(email) - string-length("@gentoo.org") + 1) != "@gentoo.org"]' \ -t attr -n proxied -v yes {} + Signed-off-by: Michał Górny <mgorny@gentoo.org>
* */*: Add 'proxied="proxy"' for proxy-maint projectMichał Górny2021-03-161-1/+1
| | | | | | | | | | Done via: find -name metadata.xml -exec xml ed -P -L \ -a '//maintainer[email="proxy-maint@gentoo.org"]' \ -t attr -n proxied -v proxy {} + Signed-off-by: Michał Górny <mgorny@gentoo.org>
* www-client/netsurf: subscribe to dev-lang/duktape subslotSam James2020-11-131-1/+1
| | | | | | Bug: https://bugs.gentoo.org/730188 Package-Manager: Portage-3.0.8, Repoman-3.0.2 Signed-off-by: Sam James <sam@gentoo.org>
* www-client/netsurf: install manpages on 3.10-r3Justin Keogh2020-10-171-0/+2
| | | | | | Closes: https://bugs.gentoo.org/741476 Signed-off-by: Justin Keogh <bugs.gentoo.org@v6y.net> Signed-off-by: Joonas Niilola <juippis@gentoo.org>
* www-client/netsurf: Keyword 3.10-r3 arm, #728994Sam James2020-09-291-1/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* www-client/netsurf: remove old "unused" ebuild.Michael Orlitzky2020-08-151-149/+0
| | | | | Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
* */*: do not source gentoo-helpers.sh in netsurf librariesLukas Vacek2020-08-151-0/+148
| | | | | | | | | | | | | | | | | | | | | | | | | | | This commit changes several ebuilds to use eclass netsurf instead of sourcing /usr/share/netsurf-buildsystem/gentoo-helpers.sh This also fixes building these packages in a prefix. This commit changes following packages: dev-libs/libcss dev-libs/libnsfb dev-libs/libnsutils dev-libs/libparserutils dev-libs/libwapcaplet dev-libs/nsgenbind media-libs/libnsbmp media-libs/libnsgif media-libs/libnspsl media-libs/librosprite media-libs/libsvgtiny net-libs/libdom net-libs/libhubbub www-client/netsurf Signed-off-by: Lukas Vacek <lucas.vacek@gmail.com> Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
* www-client/netsurf: https for HOMEPAGEVolkmar W. Pogatzki2020-07-191-1/+1
| | | | | | | Package-Manager: Portage-2.3.99, Repoman-2.3.23 Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/16481 Signed-off-by: Joonas Niilola <juippis@gentoo.org>
* www-client/netsurf: lower bounds for dev-libs/{libnsfb,libnsutils}.Michael Orlitzky2020-07-151-2/+2
| | | | | | | | | | | | The latest version of netsurf requires newer versions of two of its dependencies. This can hit stable users, since these particular packages have older stable versions; the new versions have to be keyworded. Closes: https://bugs.gentoo.org/730090 Closes: https://bugs.gentoo.org/730092 Package-Manager: Portage-2.3.99, Repoman-2.3.23 Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
* www-client/netsurf: keyworded 3.10-r1 for ppc64Sergei Trofimovich2020-07-051-1/+1
| | | | | | | | keyworded wrt bug #728994 Package-Manager: Portage-2.3.103, Repoman-2.3.23 RepoMan-Options: --include-arches="ppc64" Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
* www-client/netsurf: fix build with USE="fbcon svg -svgtiny".Michael Orlitzky2020-06-301-5/+23
| | | | | | | | | | | | | | The build system for netsurf only does the pkg-config magic needed to find librsvg's headers when it's building the GTK targets (and not when it's building the framebuffer target). As a result, building the framebuffer target can fail if you have USE="svg -svgtiny" set. This commit disables librsvg while building and installing the framebuffer target. Thanks are due to ernsteiswuerfel for the extensive testing on bug 728994. Bug: https://bugs.gentoo.org/728994 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
* www-client/netsurf: update dev-libs/libutf8proc lower bound.Michael Orlitzky2020-06-291-1/+1
| | | | | | | | | | I previously fixed the build with newer versions of libutf8proc, and in the process, broke it with the old stable version. We now require a newer (unstable) version so as to actually build. Bug: https://bugs.gentoo.org/728994 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
* www-client/netsurf: tweak USE defaults.Michael Orlitzky2020-06-281-2/+2
| | | | | | | | | | | | | | | The main purpose of this commit is to enable USE=gtk by default, to avoid forcing users to choose one of USE=fbcon, USE=gtk2, or USE=gtk. For what it's worth, the gtk(3) target is the upstream default. This fixes an associated pkgcheck warning. At the same time, I've turned off support for BMP, MNG, and RiscOS bitmap images by default. There's nothing wrong with them -- they're just basically nonexistent on the web, and doing so will pull in fewer dependencies for most people. Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
* www-client/netsurf: fix build with USE=gtk2.Michael Orlitzky2020-06-281-4/+4
| | | | | | | | | | | In the latest release, upstream switched around the names of the GTK targets to reflect that gtk3 is now default. This left the build broken with USE=gtk2, because (ALLEGEDLY) I never tested it. Sorry. Everything should be back to normal. Bug: https://bugs.gentoo.org/728994 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
* www-client/netsurf: remove old "unused" versions.Michael Orlitzky2020-06-217-489/+36
| | | | | | | | | | This drops the keyworded arm, ppc, and ppc64 versions, but somebody else kind of screwed us on that by simply omitting the javascript engine as a dependency (???) instead of dealing with the keyword problem when it first arose. I'll file a re-keyword bug. Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
* www-client/netsurf: new version 3.10.Michael Orlitzky2020-06-214-0/+208
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This new version (bug 727882) combined with the removal of the old versions fixes some outstanding issues: * Fixes the mixup between ED/D (and EROOT, variously) throughout the build system (bug 489542). * Adds a dependency on dev-lang/duktape, but as a result, has to drop keywords for arm, ppc, and ppc64 (bugs 698650, 728592). * Adds a patch to fix the location of utf8proc.h (bug 721318) * Adds a patch to disable failing tests (bug 687378). * Drops the broken USE=pdf-writer flag (bug 625770). * Apparently fixes the test failure with USE="-gtk2", since the test suite now passes (bug 672812). * Eliminates another test failure in v3.8 (bug 701322). Bug: https://bugs.gentoo.org/489542 Closes: https://bugs.gentoo.org/625770 Closes: https://bugs.gentoo.org/672812 Closes: https://bugs.gentoo.org/687378 Closes: https://bugs.gentoo.org/698650 Closes: https://bugs.gentoo.org/701322 Closes: https://bugs.gentoo.org/721318 Closes: https://bugs.gentoo.org/727882 Bug: https://bugs.gentoo.org/728592 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
* www-client/netsurf: reformat metadata.xmlJoonas Niilola2019-12-101-25/+32
| | | | Signed-off-by: Joonas Niilola <juippis@gentoo.org>
* www-client/netsurf: update BDEPENDPhilipp Ammann2019-12-101-0/+1
| | | | | | | | Closes: https://bugs.gentoo.org/702080 Package-Manager: Portage-2.3.80, Repoman-2.3.19 Signed-off-by: Philipp Ammann <philipp.ammann@posteo.de> Closes: https://github.com/gentoo/gentoo/pull/13926 Signed-off-by: Joonas Niilola <juippis@gentoo.org>
* www-client/netsurf: update version restrict on nsgenbindJoonas Niilola2019-12-051-1/+1
| | | | | | | | http://source.netsurf-browser.org/nsgenbind.git/commit/?id=9656f1ff87136263d44a54a4e3081ac92ad3b699 https://github.com/gentoo/gentoo/pull/13232 Package-Manager: Portage-2.3.80, Repoman-2.3.19 Signed-off-by: Joonas Niilola <juippis@gentoo.org>
* www-client/netsurf: add myself as proxy maintainerPhilipp Ammann2019-12-041-1/+8
| | | | | Signed-off-by: Philipp Ammann <philipp.ammann@posteo.de> Signed-off-by: Joonas Niilola <juippis@gentoo.org>
* www-client/netsurf: bump to version 3.9Philipp Ammann2019-12-043-0/+166
| | | | | | Package-Manager: Portage-2.3.78, Repoman-2.3.17 Signed-off-by: Philipp Ammann <philipp.ammann@posteo.de> Signed-off-by: Joonas Niilola <juippis@gentoo.org>
* www-client/netsurf: Remove unused fbcon_frontend_* flagsMichał Górny2019-09-232-16/+5
| | | | | Closes: https://bugs.gentoo.org/695158 Signed-off-by: Michał Górny <mgorny@gentoo.org>
* www-client/netsurf: remove myself as maintainerVirgil Dupras2019-07-051-4/+1
| | | | | Signed-off-by: Virgil Dupras <vdupras@gentoo.org> Package-Manager: Portage-2.3.66, Repoman-2.3.11
* www-client/netsurf: keyworded 3.8-r2 for ppc64, bug #674736Sergei Trofimovich2019-02-171-1/+1
| | | | | | | Tested-by: ernsteiswuerfel Package-Manager: Portage-2.3.60, Repoman-2.3.12 RepoMan-Options: --include-arches="ppc64" Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
* www-client/netsurf: add missing dependencyVirgil Dupras2019-02-071-3/+4
| | | | | | Bug: https://bugs.gentoo.org/670783 Signed-off-by: Virgil Dupras <vdupras@gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11
* */*: reassign packages for xmw@g.oMichał Górny2018-11-251-4/+0
| | | | | Bug: https://bugs.gentoo.org/319525 Signed-off-by: Michał Górny <mgorny@gentoo.org>
* www-client/netsurf: backtrack on the dep bundling ideaVirgil Dupras2018-11-135-397/+137
| | | | | | | | | | | | The dep bundling idea introduced in 3.8-r1 wasn't a very good idea after all, as we can see in #669714. A better idea, which is what is being done in the commits preceding this one, is to drop netsurf eclass in all dependencies by introducing dev-util/netsurf-buildsystem as a regular package. Bug: https://bugs.gentoo.org/669714 Signed-off-by: Virgil Dupras <vdupras@gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11
* www-client/netsurf: drop netsurf eclassVirgil Dupras2018-11-072-0/+228
| | | | | | | | | | | | | | | | | | | | | | | | | | | The netsurf project has tons of little single-purpose libraries that aren't used in any other project. That causes us to create many packages *and* maintain an eclass for a program that isn't the most popular (it had been completely broken for 3 months until a few weeks ago). In this commit, I take the worst offenders and bundle them directly in netsurf's ebuild. The long term goal is to eventually get rid of the netsurf eclass by reducing the number of packaged netsurf libs (and thus make the copy-paste of ebuild boilerplate less painful). Other changes: * Drop multilib. I really don't see the point of it and it adds needless complexity. * Drop fb.modes. This is related to directfb, which isn't supported in Gentoo any more. * Drop "linux" and "able" frontends. They aren't listed in libnsfb's supported frontends. * Allow more than one fb frontend to be selected. * Don't set NETSURF_FB_FRONTEND. It has no effect. Closes: https://bugs.gentoo.org/669714 Signed-off-by: Virgil Dupras <vdupras@gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11
* www-client/netsurf: remove oldVirgil Dupras2018-10-215-340/+0
| | | | | Signed-off-by: Virgil Dupras <vdupras@gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11
* www-client/netsurf: adding myself as maintainerVirgil Dupras2018-10-211-4/+8
| | | | | Signed-off-by: Virgil Dupras <vdupras@gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11
* www-client/netsurf: bump to 3.8Virgil Dupras2018-10-214-0/+330
| | | | | | | | | | | I had to drop gstreamer because it depends on a vulnerable version. Closes: https://bugs.gentoo.org/636224 Closes: https://bugs.gentoo.org/662230 Closes: https://bugs.gentoo.org/629204 Closes: https://bugs.gentoo.org/641846 Signed-off-by: Virgil Dupras <vdupras@gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11
* www-client/netsurf: remove local webp use flagMarty E. Plummer2018-10-191-1/+0
| | | | | | Signed-off-by: Marty E. Plummer <hanetzer@startmail.com> Package-Manager: Portage-2.3.51, Repoman-2.3.11 Signed-off-by: Michał Górny <mgorny@gentoo.org>
* www-client: Update Manifest hashes.Ulrich Müller2017-12-091-3/+3
|
* Drop $Id$ per council decision in bug #611234.Robin H. Johnson2017-02-281-1/+0
| | | | Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
* www-client/netsurf: Remove old verion(s).Michael Weber2017-02-057-561/+0
| | | | Package-Manager: Portage-2.3.3, Repoman-2.3.1
* www-client/netsurf: Fix USE=gstreamer (bug 607650, thanks ernsteiswuerfel), ↵Michael Weber2017-01-312-2/+40
| | | | | | limit NETSURF_USE_VIDEO to gtk/gtk3 versions. Package-Manager: Portage-2.3.3, Repoman-2.3.1
* www-client/netsurf: Fix libnspsl dep (thanks Anthony Parsons, bug 607238).Michael Weber2017-01-261-0/+1
| | | | Package-Manager: Portage-2.3.3, Repoman-2.3.1
* www-client/netsurf: Version bump (bug 602526, thanks Philipp Ammann), add ↵Michael Weber2017-01-246-0/+336
| | | | | | support for GTK3, fix librosprite RDEPEND (bug 604128, thanks Another Mortal). Package-Manager: Portage-2.3.3, Repoman-2.3.1
* www-client/netsurf: keyword ~ppcChí-Thanh Christopher Nguyễn2016-07-251-1/+1
| | | | Package-Manager: portage-2.2.28
* www-client/netsurf: Version bump (thanks Haelwenn Monnier for the hint, bug ↵Michael Weber2016-05-072-0/+163
| | | | | | 580154). Package-Manager: portage-2.2.28
* www-client/netsurf: drop old.Michael Weber2016-05-075-341/+0
| | | | Package-Manager: portage-2.2.28
* www-client/netsurf: Enable duktape javascript engine.Michael Weber2016-03-032-9/+11
| | | | Package-Manager: portage-2.2.27
* www-client/netsurf: Add dev-perl/HTML-Parser to $DEPEND (thanks Anthony ↵Michael Weber2016-03-032-2/+1
| | | | | | Parsons, bug 572920). Package-Manager: portage-2.2.27
* Drop old, cleanup FILESDIR.Michael Weber2016-03-038-501/+0
|
* www-client/netsurf: Version bump.Michael Weber2016-03-025-0/+312
| | | | Package-Manager: portage-2.2.27
* Set appropriate maintainer types in metadata.xml (GLEP 67)Michał Górny2016-01-241-1/+1
|
* Unify quoting in metadata.xml files for machine processingMichał Górny2016-01-241-5/+4
| | | | | | | Force unified quoting in all metadata.xml files since lxml does not preserve original use of single and double quotes. Ensuring unified quoting before the process allows distinguishing the GLEP 67-related metadata.xml changes from unrelated quoting changes.
* Revert DOCTYPE SYSTEM https changes in metadata.xmlMike Gilbert2015-08-241-1/+1
| | | | | | | repoman does not yet accept the https version. This partially reverts eaaface92ee81f30a6ac66fe7acbcc42c00dc450. Bug: https://bugs.gentoo.org/552720
* Use https by defaultJustin Lecher2015-08-241-1/+1
| | | | | | Convert all URLs for sites supporting encrypted connections from http to https Signed-off-by: Justin Lecher <jlec@gentoo.org>
* www-client/netsurf: fix USE=pdf-writer (bug 555904, bug 555906, thanks Oschtan).Michael Weber2015-08-114-2/+179
| | | | Package-Manager: portage-2.2.20