epiphany: dropped

This commit is contained in:
John McQuah 2024-09-04 11:04:36 +00:00
parent d3129c674d
commit e696c144ac
5 changed files with 0 additions and 87 deletions

View File

@ -1,43 +0,0 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/epiphany
drwxr-xr-x root/root usr/lib/
-rwxr-xr-x root/root usr/lib/epiphany-search-provider
-rwxr-xr-x root/root usr/lib/epiphany-webapp-provider
drwxr-xr-x root/root usr/lib/epiphany/
-rwxr-xr-x root/root usr/lib/epiphany/ephy-profile-migrator
-rwxr-xr-x root/root usr/lib/epiphany/libephymain.so
-rwxr-xr-x root/root usr/lib/epiphany/libephymisc.so
-rwxr-xr-x root/root usr/lib/epiphany/libephysync.so
drwxr-xr-x root/root usr/lib/epiphany/web-process-extensions/
-rwxr-xr-x root/root usr/lib/epiphany/web-process-extensions/libephywebextension.so
-rwxr-xr-x root/root usr/lib/epiphany/web-process-extensions/libephywebprocessextension.so
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/applications/
-rw-r--r-- root/root usr/share/applications/org.gnome.Epiphany.desktop
drwxr-xr-x root/root usr/share/dbus-1/
drwxr-xr-x root/root usr/share/dbus-1/services/
-rw-r--r-- root/root usr/share/dbus-1/services/org.gnome.Epiphany.SearchProvider.service
-rw-r--r-- root/root usr/share/dbus-1/services/org.gnome.Epiphany.WebAppProvider.service
drwxr-xr-x root/root usr/share/epiphany/
-rw-r--r-- root/root usr/share/epiphany/default-bookmarks.rdf
drwxr-xr-x root/root usr/share/glib-2.0/
drwxr-xr-x root/root usr/share/glib-2.0/schemas/
-rw-r--r-- root/root usr/share/glib-2.0/schemas/org.gnome.Epiphany.enums.xml
-rw-r--r-- root/root usr/share/glib-2.0/schemas/org.gnome.epiphany.gschema.xml
drwxr-xr-x root/root usr/share/gnome-shell/
drwxr-xr-x root/root usr/share/gnome-shell/search-providers/
-rw-r--r-- root/root usr/share/gnome-shell/search-providers/org.gnome.Epiphany.SearchProvider.ini
drwxr-xr-x root/root usr/share/icons/
drwxr-xr-x root/root usr/share/icons/hicolor/
drwxr-xr-x root/root usr/share/icons/hicolor/scalable/
drwxr-xr-x root/root usr/share/icons/hicolor/scalable/apps/
-rw-r--r-- root/root usr/share/icons/hicolor/scalable/apps/org.gnome.Epiphany.svg
drwxr-xr-x root/root usr/share/icons/hicolor/symbolic/
drwxr-xr-x root/root usr/share/icons/hicolor/symbolic/apps/
-rw-r--r-- root/root usr/share/icons/hicolor/symbolic/apps/org.gnome.Epiphany-symbolic.svg
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/epiphany.1.gz
drwxr-xr-x root/root usr/share/metainfo/
-rw-r--r-- root/root usr/share/metainfo/org.gnome.Epiphany.appdata.xml

View File

@ -1,5 +0,0 @@
untrusted comment: verify with /etc/ports/jmq.pub
RWTTPlFarK9CxLJCS7gEhKQPVJKcz/+EjdQ08dHFv4R5c75aKy1Pw9R6EuUEANBjBjfsZEU9lZ9LH7attRMXUYDuCURN+zfmLAg=
SHA256 (Pkgfile) = 87da8fadb771e0d04046ea6e36893bd361a062712baca9eaa5cf4372f190ffe8
SHA256 (.footprint) = 0e0ed5587dfd1c354189baba8bff0a7347d46bcbc3a2c23922aea517de9c54e8
SHA256 (epiphany-45.2.tar.bz2) = 199401623efc67d2af0e1b50f1920f5ff241ae82954ee0fe09a81f2a51c22fbe

View File

@ -1,5 +0,0 @@
#!/bin/sh
curl -s -L "https://download.gnome.org/sources/epiphany/" \
| awk '/<a href.*[[:digit:]]\/</ {$0=gensub(/.*>(.+)\/<.*/,"\\1",1); print;}' \
| tail -n 1

View File

@ -1,29 +0,0 @@
# Description: A GNOME web browser based on the WebKit rendering engine
# URL: https://gitlab.gnome.org/GNOME/epiphany
# Maintainer: John McQuah, jmcquah at disroot dot org
# Depends on: appstream libhandy libportal iso-codes webkitgtk gcr libadwaita
# Optional: gst-plugins-good gst-plugins-bad gst-libav libnotify enchant
name=epiphany
version=45.2
release=1
source=(https://gitlab.gnome.org/GNOME/$name/-/archive/$version/$name-$version.tar.bz2)
build() {
cd $name-$version
# fail the build if libportal was not compiled against gtk4
[ -e /usr/lib/pkgconfig/libportal-gtk4.pc ] || \
{ echo "You need to rebuild libportal with gtk4 installed."; exit 1; }
sed -e "/^subdir('po')/d" \
-i meson.build
meson setup build \
--prefix="/usr" --libexecdir="/usr/lib" \
-Ddeveloper_mode=false
ninja -C build -j ${JOBS:-1}
DESTDIR="${PKG}" meson install -C build
rm -r "${PKG}/usr/share/help"
}

View File

@ -1,5 +0,0 @@
#!/bin/sh
/usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas
# EOF