Changes between Initial Version and Version 1 of SummerOfCode2015Libsolv


Ignore:
Timestamp:
Aug 24, 2015, 6:07:44 PM (9 years ago)
Author:
JacksonIsaac (Jackson Isaac)
Comment:

Create wiki page for gsoc15-dependency, Dependency calculation using SAT Solver (Libsolv).

Legend:

Unmodified
Added
Removed
Modified
  • SummerOfCode2015Libsolv

    v1 v1  
     1This wiki gives detailed information of the project "Dependency calculation using SAT solving" as part of GSoC 2015. wiki:SummerOfCode2015#dependencies
     2
     3|| '''Student''' || '''Mentor''' ||
     4|| [wiki:ijackson Jackson Isaac] || [wiki:cal Clemens Lang] ||
     5
     6'''Installing gsoc15-dependency branch'''
     7[[BR]]
     8Create a folder under ~/Development/libsolv so that we can clone and install the branch inside this prefix and not interfere with the stable MacPorts installation.
     9
     10{{{
     11mkdir -p ~/Development/libsolv
     12cd ~/Development/libsolv
     13svn co https://svn.macports.org/repository/macports/branches/gsoc15-dependency
     14cd gsoc15-dependency/base
     15env PATH=/usr/bin:/bin:/usr/sbin:/sbin CFLAGS="-pipe -Os" ./configure --enable-readline --prefix ~/Development/libsolv/mp_gsoc && make
     16sudo make install
     17}}}
     18
     19
     20'''Creating alias for gsoc15-dependency port'''
     21
     22{{{
     23echo "alias portlibsolv=\"$HOME/Development/libsolv/mp_gsoc/bin/port\"" >> ~/.bash_profile
     24echo "alias sudo=\"sudo \"" >> ~/.bash_profile
     25}}}
     26
     27I have written a small shell script to do the above tasks at https://raw.githubusercontent.com/JacksonIsaac/macports-libsolv/master/mplibsolv.sh