Changeset 244214 in webkit


Ignore:
Timestamp:
Apr 12, 2019 6:29:42 AM (5 years ago)
Author:
commit-queue@webkit.org
Message:

[GTK][WPE] Fix pacman install-dependencies packages
https://bugs.webkit.org/show_bug.cgi?id=196817

Patch by Ludovico de Nittis <ludovico.denittis@collabora.com> on 2019-04-12
Reviewed by Žan Doberšek.

python3-setuptools is called python-setuptools
ruby-highline is only available on AUR
libv4l-devel is incorporated in v4l-utils

  • gtk/install-dependencies:
  • wpe/install-dependencies:
Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r244212 r244214  
     12019-04-12  Ludovico de Nittis  <ludovico.denittis@collabora.com>
     2
     3        [GTK][WPE] Fix pacman install-dependencies packages
     4        https://bugs.webkit.org/show_bug.cgi?id=196817
     5
     6        Reviewed by Žan Doberšek.
     7       
     8        python3-setuptools is called python-setuptools
     9        ruby-highline is only available on AUR
     10        libv4l-devel is incorporated in v4l-utils
     11
     12        * gtk/install-dependencies:
     13        * wpe/install-dependencies:
     14
    1152019-04-11  Carlos Garcia Campos  <cgarcia@igalia.com>
    216
  • trunk/Tools/gtk/install-dependencies

    r243794 r244214  
    371371        python2 \
    372372        python2-lxml \
    373         python3-setuptools \
     373        python-setuptools \
    374374        ragel \
    375375        bigreqsproto \
  • trunk/Tools/wpe/install-dependencies

    r243794 r244214  
    192192
    193193    # These are dependencies necessary for running tests.
    194     # Note: apache-mod_bw and ruby-json is available in the AUR
     194    # Note: apache-mod_bw, ruby-json and ruby-highline are available in the AUR
    195195    packages="$packages \
    196196        apache \
     
    205205        python2-lxml \
    206206        python2-psutil \
    207         ruby \
    208         ruby-highline"
     207        ruby"
    209208
    210209    # These are dependencies necessary for building the jhbuild.
     
    218217        libsrtp \
    219218        libtheora \
    220         libv4l-dev \
    221219        libvorbis \
    222220        libvpx \
     
    229227        orc \
    230228        perl-xml-libxml \
    231         python3-setuptools \
     229        python-setuptools \
    232230        util-linux \
    233231        v4l-utils \
     
    241239    pacman -S --needed $packages
    242240
    243     echo "You will also need to follow the instructions on the Arch Wiki to make"
    244     echo "'python' call python2 in the webkit folder"
    245     echo "https://wiki.archlinux.org/index.php/Python#Dealing_with_version_problem_in_build_scripts"
     241        cat <<-EOF
     242
     243The following packages are available from AUR, and needed for running tests:
     244
     245    apache-mod_bw ruby-json ruby-highline
     246
     247Instructions on how to use the AUR can be found on the Arch Wiki:
     248
     249    https://wiki.archlinux.org/index.php/Arch_User_Repository
     250
     251You will also need to follow the instructions on the wiki to make 'python'
     252call python2 in the WebKit folder:
     253
     254    https://wiki.archlinux.org/index.php/Python#Dealing_with_version_problem_in_build_scripts
     255
     256Alternatively, you may use a Python 2.x virtualenv while hacking on WebKitGTK+:
     257
     258    https://wiki.archlinux.org/index.php/Python/Virtual_environment
     259
     260EOF
    246261}
    247262
Note: See TracChangeset for help on using the changeset viewer.