Cvs daily snapshot packages

Hi there,
I have some questions about cvs daily snapshot.
The problem is for the package eo-snapshot in AUR
Here is the PKGBUILD
# Contributor: Sebastien Piccand <[email protected]>
pkgname=eo-snapshot
pkgver=20060411
_ver=11Apr2006
pkgrel=1
pkgdesc="EO is a templates-based, ANSI-C++ compliant evolutionary computation library"
url="http://eodev.sourceforge.net/"
license="LGPL"
depends=()
source=(http://www.lri.fr/~marc/EO/snapshot/eo_src.tgz)
md5sums=('f4e001d00405292712e5a62599749c3d')
build() {
cd $startdir/src/eo${_ver}
./autogen.sh
./configure --prefix=/usr
make || return 1
make DESTDIR=$startdir/pkg install
I have to remove the _ver variable which is not required.
I have to use the daily snapshot because:
1. The stable version does not compile
2. I don't have access to CVS
The version(=folderOfSources=date) of the package is a bit weird and stored as:
11Apr2006.
I was asked to change the version so I moved it to 20060411 which seems to be the case for the usual snapshots.
I used the variable _ver so that one has just have to modify the beginning of the PKGBUILD when a new snapshot comes. But it is definitely not really needed so I have to remove it, which means you have to edit the build() function at each snapshot.
A workaround is to use
cd $startdir/src/eo*
instead of
cd $startdir/src/eo11Apr2006
in the build(function)
In this case now the version of the snapshot is only discriminated by:
1. the pkgver
2. the md5sum
But the package is updated daily and there should be a way to simplify the  update process. The daily snapshot does not contain the date so we can't have access to the previous snapshot.
Can I, as for the CVS versions, use an empty md5sum() and just the date for the pkgver ?
Or should the package be a mess to maintain ?
Thanks

Thanks a lot.
The package is working.
I now have some questions about the provides() and conflicts() fields of some packages.
Here are 2 packages I put on AUR recently: eo-snapshot, eo-cvs
I am thinking of removing eo-snapshot but it can be good to keep it for people who don't have access to CVS.
In this case eo-snapshot and eo-cvs will conflict. Once a new, working, stable version of eo will be out, I (or anybody) will probably make a package (called eo).
So I am thinking of using the fields provides=('eo') for both packages, and conflicts=('eo-snapshot') or ('eo-cvs')
Is it the right thing to do ?
An other question:
libge can use galib if it is compiled with galib support, so should I make a libge-galib version (with galib in makedepends) or put a comment somewhere (where) that asks the user to install galib before building libge to enable the galib support ?
An other one
eo-cvs(or eo-snapshot) and galib both provide a /usr/lib/libga.a file, so they conflict with one another. Is there any workaround to install both?

Similar Messages

  • HR - Daily Snapshot Issues with Future Dated Changes

    The w_employee_daily_snp_f_1 table has timing issues. The effective end date on all per_all_assignments_f, per_all_people_f, etc always shows the time at midnight. For example: 08/14/2009 12:00:00 AM. When this person has a new assignment, for one day only, the extract does not pick up this person. See example below:
    Employee 123 has a supervisor change and the new supervisor is effective on 6/15/2009
    Emp Eff Start Date Eff End Date Supervisor
    123 01/01/2009 12:00:00 AM 06/14/2009 12:00:00 AM 888
    123 06/15/2009 12:00:00 AM 12/31/4712 12:00:00 AM 555
    When the ETL runs on the night of 6/14/09 at 7:35:42 PM, this record does not get picked up because according to the apps.per_all_assignments_f table on the day of 6/14/09 this person does not have an active assignment. There is one day when the person (according to the system) does not have a supervisor. The next night, on 6/15/09 10:34:18 PM the record reappears and does so every night until the assignment record is again end dated. This only occurs for future dated HR changes.
    This is a big problem because if the future dated change is for a supervisor, not only does the supervisor not appear in the daily snapshot, but either does any of his/her subordinates. Has anyone else run into this problem? How did you solve it? Did you customize all the HR mappings?

    Have posted an updated version of the MST to my webspace here:
    http://homepage.ntlworld.com/minkus/shockwave/shockwave115606mst2.zip
    This new version fixes the following issues (changes to this version in bold):
    MsiInstaller repair & errors on first run as non-admin (removes 'AppData' directory entries)
    DCOM errors once Shockwave is installed (adds double quotes to the beginnning of LocalServer32 value)
    Incorrect TypeLib paths in the registry (fixed to use built-in [SystemFolder] property)
    Default CLSID description value missing (set to 'Shockwave ActiveX Control', as per the executable installer)
    Incorrect Shockwave 10 paths in the registry (fixed to use built-in [SystemFolder] property)
    Misspelt 'OptionalComponets' registry key (renamed to 'OptionalComponents')
    Missing .dcr, .dir, .dxr Content Type registry values (included in the executable installer)
    Fixed incorrect AppID registry key (set to use installer's [VERSION] variable)
    Removed 'Launch SWDNLD.exe' shortcut created in Programs subfolder (people don't want this - see here)
    I have tested this on my network and it all seems to work fine. Unfortunately my original plan to use the executable installer didn't work out as it does not include the Shockwave 10 compatibility components described here and here, so it looks like I'll have to keep this MST file up to date with the latest versions until Adobe fix the problems themselves...
    If you want to see the changes that I have made, load up Adobe's 11.5.6.606 MSI file in Orca, then use Transform / Apply Transform to apply the MST, and look for the entries in green.
    Please post any feedback to this thread, and I will try to respond if I can help!
    Chris Hill

  • Snapshot Packages

    I'm struggling with creating a package from a snapshot. I've created the snapshot file, installed what I wanted to, now when I come to try and build the .pkg file I get 'No package identifier specified.'
    What does that mean.
    Apple make it sound so simple in their help page!
    Cheers,
    Mark

    Thanks a lot.
    The package is working.
    I now have some questions about the provides() and conflicts() fields of some packages.
    Here are 2 packages I put on AUR recently: eo-snapshot, eo-cvs
    I am thinking of removing eo-snapshot but it can be good to keep it for people who don't have access to CVS.
    In this case eo-snapshot and eo-cvs will conflict. Once a new, working, stable version of eo will be out, I (or anybody) will probably make a package (called eo).
    So I am thinking of using the fields provides=('eo') for both packages, and conflicts=('eo-snapshot') or ('eo-cvs')
    Is it the right thing to do ?
    An other question:
    libge can use galib if it is compiled with galib support, so should I make a libge-galib version (with galib in makedepends) or put a comment somewhere (where) that asks the user to install galib before building libge to enable the galib support ?
    An other one
    eo-cvs(or eo-snapshot) and galib both provide a /usr/lib/libga.a file, so they conflict with one another. Is there any workaround to install both?

  • Daily snapshot solution

    Hi All,
    i have a requirement something like this
    i will get some open and closed items in the trans data
    let say the data looks like below
    no     open_date     closed_Date     status     load date     amt
    1     08/26/2007          O     08/27/07     100
    2     08/22/07               O     08/27/07     200
    3     08/26/07               O     08/27/07     10
    4     08/26/07               O     08/27/07     50
    2     08/22/07     08/28/07                     C             08/28/07     -200
    1     08/26/07     08/28/07          C              08/28/07     -100
    until the items is closed the amount is outstanding.
    so if the user want to report on aspecific data range lets say outstanding amount
    between 08/22/07 to 08/24/07 report should look like this:
    Date          outstanding amt     
    08/22/07           200
    08/23/07          200
    08/24/07          200
    but there are no records for dates 08/23/07 and 08/24/07 but still the amount is outstanding on those days.
    one way of achiving this is run a self update and populate the entries if there is not change, but the volume is huge,
    thats why i am looking for any other options to do this.
    did anyone had to implement this kind of solution, please advice.

    I also get this - it's quite annoying.
    This may help:
    #!/bin/sh
    svcadm disable -t time-slider
    for f in `zfs list -H -t snapshot -o name`; do zfs release -r org.opensolaris:time-slider-plugin:zfs-send $f; done
    svcadm clear svc:/application/time-slider/plugin:zfs-send
    svcadm enable time-slider

  • ArchSnaps -- Daily Snapshots Downloader

    Hi guys, I've coded a new tiny bash script that can be run from cron. It can download any architecture selected automatically by running simple commands.
    See this wiki page for more details and code it self at http://wiki.gotux.net/code/bash/archsnaps  I hope this helps some one else, like it does me Thanks.
    EDITED: See ArchDL instead now.
    https://github.com/GoTux/Bash/blob/master/archdl.sh
    Last edited by TuxLyn (2012-12-19 10:20:30)

    Updated Code: v0.1.1 – fixed urls spaces issue.
    @Awebb, lol well... I've coded this script to help me grab daily iso's without me actually doing all the extra work, and I can put this in cron and add extra option to rotate the iso's

  • Daily ISO Snapshots ?

    What happened to daily snapshots ? The last snapshot is 5 days ago on April 12th.
    http://releng.archlinux.org/isos/
    Also, does any one here have 2012-04-01 snapshot ISO ? I found it most stable.
    I had random installer errors with ISO's from 2nd to 12th.
    Last edited by TuxLyn (2012-04-18 03:16:43)

    http://mailman.archlinux.org/pipermail/ … 02505.html
    Last edited by the.ridikulus.rat (2012-04-18 06:20:33)

  • Weekly updated KDE 4 SVN Snapshots

    I have created a repo with KDE 4 SVN snapshot packages (at the moment only kdelibs4, kdepimlibs4 and kdebase4). I need the packages for my own (need to rebuild them every Monday or Tuesday, because that day is BIC and SIC (binary and source incompatible) for developing on KDE. But I think these packages could also be useful for others
    Add the following section to /etc/pacman.conf to get updates. Install it with pacman -Sy kde4.
    [kde4_svn]
    Server = http://archlinux.puzzle.ch/kde4/kde4_svn
    You can install these packages parallel to a KDE 3 desktop. Create a new user to test / use it! Change the session type to KDE 4 in KDM and login with your new user.
    BTW: KDE 4 is at the moment not usable for daily work! You are able to start a KDE 4 session, start some apps or surf in the internet. Use it at your own risk!

    equadon wrote:
    Thanks for providing these, uwolfer. Do you have the PKGBUILDS for the svn snapshots as well? I couldn't find any PKGBUILDS for the svn snapshots, only the released development snapshots.
    defcon: 'nas' can be found in the community repository.
    I just uploaded all the KDE4 SVN PKGBUILD's to AUR yesterday Happy compiling

  • Snapshot and backup

    Hello BW Experts,
    Current Scenario:
    There is a daily snapshot of the BW system in nite for our Production server. During this they have to stop any jobs / loads running at that time.
    Secondly they take a backup every weekend. They stop any jobs / loads during that time also.
    Wondering if you could provide ur experiences, that would very great of you..
    1) Is snapshot necessary every  day?
    2) what is the alternative to daily snapshot?
    3) what is the best procedure for daily snapshot ?
    4) is there a procedure not to stop the loads / jobs  during snapshot ?
    5) Is backup necessary every weekend?
    6) what is the alternative to weekly backup?
    7) what is the best procedure for weekly backup ?
    8) is there a procedure not to stop the loads / jobs  during backup ?
    9) is there any doc / paper / link / notes for the snapshots and backups for BW production system.
    10)what is the typical time taken for snapshot?
    11) what is the typical time taken for backup ?
    any does please mail to [email protected]
    Thanks,
    BWer

    Thanks for the valuable info Mimosa.
    In our company, they call the snapshot: copy of the production box to the box on the SAN network. The copy is made to the disc. Here the snapshot disc is on RAID 0 and production disc is on RAID 5. They do this every night.
    In our company backup is : taking copy to the tape. they do this every weekend.
    Its interesting that they do the 'split mirror on-line backup' daily during system is available to all users & jobs. Wondering if you have any details of this backup. What is the procedure called. What level is this copy done, on the database level, network functionality or sap functionality.....?
    Suggestions appreciated.
    Thanks,
    BWer

  • Official cvs class?

    Hi,
    I like to make simple Java programs in my
    spare time. I like to have my own custom
    programs with my own code so, I'm going
    to make my own GUI cvs client to create reposities,
    add, update etc.
    Does anyone know if Sun Microsystems
    has their own class for cvs management?
    There doesn't seem to be one in the
    API docs.
    Well, if they don't does anyone know any good
    cvs classes or packages you can download?
    Any advice would be appreciated. :)
    Would Runtime.getRuntime().exec("command") be
    tedious to apply throughout my code?

    >
    Does anyone know if Sun Microsystems
    has their own class for cvs management?No
    Well, if they don't does anyone know any good
    cvs classes or packages you can download?
    Java CVS apps are ten a penny, manybe you should see if any of then include an API.
    Would Runtime.getRuntime().exec("command") be
    tedious to apply throughout my code?Nope.

  • E17-CVS respositries not working

    The respositires for e17-cvs appear to be down. I've tried to get both e17-cvs (in a thread I found) and e-cvs (in the wiki) to no avail- I've also tried adjusting my mirror lists, but no luck. I seem to get two errors:
    error: failed retrieving file 'ecore-cvs-20080218-1.pkg.tar.gz' from ftp.parrswood.manchester.sch.uk : Not Found
    or pacman just quits, or freezes.
    Pacman works fine for all other packages, and indeed it worked fine for the first 11 megabytes of e17, but it appears the packages are not present, or something.
    This is an example of what it does:
    [snafle@server pacman.d]$ sudo pacman -S e17-cvs
    :: group e17-cvs (including ignored packages):
    e-cvs e_dbus-cvs ecore-cvs edje-cvs eet-cvs efreet-cvs embryo-cvs epeg-cvs evas-cvs
    :: Install whole content? [Y/n] y
    resolving dependencies...
    looking for inter-conflicts...
    Targets: eet-cvs-20080218-1 evas-cvs-20080218-1 curl-7.18.0-1 scrnsaverproto-1.1.0-1 libxss-1.1.1-1 ecore-cvs-20080218-1 e_dbus-cvs-20080218-1 embryo-cvs-20080218-1
    edje-cvs-20080218-1 perl-xml-simple-2.18-1 icon-naming-utils-0.8.6-1 gnome-icon-theme-2.20.0-1 efreet-cvs-20080218-1 e-cvs-20080220-1 epeg-cvs-20080218-1
    Total Download Size: 9.18 MB
    Total Installed Size: 21.44 MB
    Proceed with installation? [Y/n] y
    :: Retrieving packages from community...
    Then it just sits there. Can someone test the repos, or give me a link to a repo that that works?

    I'm pretty sure that manchester mirror isn't up any more. Check this list for the list of mirrors available: http://wiki.archlinux.org/index.php/Mirrors
    Make sure you don't have any outdated mirrors in /etc/pacman.d/mirrorlist and put the preferred ones at the top.

  • ASM backup strategies with SAN snapshots

    Hello folks,
    in one of our setups we have a database server (11.2) that has only binaries and config (not the datafiles) and all ASM disks that are on the SAN. The SAN has daily snapshots, so the datafiles are backed up. My question is, how do I proceed if the database server fails and needs to be reinstalled? My question is how do I tell to the grid that we have already a diskgroup with disks on the SAN. I found md_backup and md_restore, but I am not sure how / when to proceed with md_restore.
    I have searched some time, but I am quite confused with the approaches, please note that RMAN is not an option in this environment.
    Thanks in advance
    Alex

    Hi,
    O.k. that changes things. You should have mentioned that in the beginning of your post, that you shutdown the database before you doing the snapshot and your are not using archivelog mode.
    I would advise to also dismount the diskgroups before doing the snapshots.
    However when was the last time you tried the archivelog mode? 11g increased the performance a lot.
    Note: In this case the snapshot is only a point in time view. In case of an error, you will loose data. (The last hours from your last snapshot).
    Now regarding your questions:
    => You will install a new system with GI and database software. You will need a new diskgroup (e.g. INFRA) for the new OCR and Voting disks (they should not be contained in the other diskgroups like DATA and FRA, so no need to snapshot the old INFRA).
    => Then simply present the LUNs from DATA and FRA diskgroup to the new server. ASM will be able to mount the diskgroups as soon as all disks are available (and have the right permission). No need for md_backup or restore. MD_BACKUP backups the contents of the ASM headers, but since you still have the disks this meta information is still intact.
    => Reregister the database and the services with the Grid Infrastructure (srvctl add database / srvctl add service etc.). Just make sure to point to the correct spfile (you can find that e.g. with ASMCMD).
    => Start database...
    That is if your snapshot did work. Just have another forum thread, where a diskgroup got corrupted due to snapshot (luckily only FRA).
    And just as reminder: A snapshot is not a backup. Depending on how the storage is doing the snapshot, you should take precautions to move it to separate disks and verfiy it (that it is usable).
    Regards
    Sebastian

  • Manage btrfs snapshots

    One of the feature that i much like about btrfs is Snapshot.
    What i want to do is to create snapshots of /home every 5/15 minutes (i have to test better the impact on performance) and retain:
    02 - Yearly snapshots
    12 - Monthly snapshots
    16 - Weekly snapshots
    28 - Daily snapshots
    48 - Hourly snapshots
    60 - Minutely snapshots
    The above scheme is indicative and i'm looking for suggestion in order to improve  it.
    After long google searching finally i've found a very simple but powerful bash script to manage btrfs snapshots: https://github.com/mmehnert/btrfs-snapshot-rotation
    I've changed a bit the script in order to use my naming scheme
    #!/bin/bash
    # Parse arguments:
    SOURCE=$1
    TARGET=$2
    SNAP=$3
    COUNT=$4
    QUIET=$5
    # Function to display usage:
    usage() {
    scriptname=`/usr/bin/basename $0`
    cat <<EOF
    $scriptname: Take and rotate snapshots on a btrfs file system
    Usage:
    $scriptname source target snap_name count [-q]
    source: path to make snaphost of
    target: snapshot directory
    snap_name: Base name for snapshots, to be appended to
    date "+%F--%H-%M-%S"
    count: Number of snapshots in the timestamp-@snap_name format to
    keep at one time for a given snap_name.
    [-q]: Be quiet.
    Example for crontab:
    15,30,45 * * * * root /usr/local/bin/btrfs-snapshot /home /home/__snapshots quarterly 4 -q
    0 * * * * root /usr/local/bin/btrfs-snapshot /home /home/__snapshots hourly 8 -q
    Example for anacrontab:
    1 10 daily_snap /usr/local/bin/btrfs-snapshot /home /home/__snapshots daily 8
    7 30 weekly_snap /usr/local/bin/btrfs-snapshot /home /home/__snapsnots weekly 5
    @monthly 90 monthly_snap /usr/local/bin/btrfs-snapshot /home /home/__snapshots monthly 3
    EOF
    exit
    # Basic argument checks:
    if [ -z $COUNT ] ; then
    echo "COUNT is not provided."
    usage
    fi
    if [ ! -z $6 ] ; then
    echo "Too many options."
    usage
    fi
    if [ -n "$QUIET" ] && [ "x$QUIET" != "x-q" ] ; then
    echo "Option 4 is either -q or empty. Given: \"$QUIET\""
    usage
    fi
    # $max_snap is the highest number of snapshots that will be kept for $SNAP.
    max_snap=$(($COUNT -1))
    # $time_stamp is the date of snapshots
    time_stamp=`date "+%F_%H-%M"`
    # Clean up older snapshots:
    for i in `ls $TARGET|sort |grep ${SNAP}|head -n -${max_snap}`; do
    cmd="btrfs subvolume delete $TARGET/$i"
    if [ -z $QUIET ]; then
    echo $cmd
    fi
    $cmd >/dev/null
    done
    # Create new snapshot:
    cmd="btrfs subvolume snapshot $SOURCE $TARGET/"${SNAP}-$time_stamp""
    if [ -z $QUIET ]; then
    echo $cmd
    fi
    $cmd >/dev/null
    I use fcontab
    [root@kabuky ~]# fcrontab -l
    17:32:58 listing root's fcrontab
    @ 5 /usr/local/bin/btrfs-snapshot /home /home/__snapshots minutely 60 -q
    @ 1h /usr/local/bin/btrfs-snapshot /home /home/__snapshots hourly 48 -q
    @ 1d /usr/local/bin/btrfs-snapshot /home /home/__snapshots daily 28 -q
    @ 1w /usr/local/bin/btrfs-snapshot /home /home/__snapshots weekly 16 -q
    @ 1m /usr/local/bin/btrfs-snapshot /home /home/__snapshots monthly 12 -q
    And this is what i get
    [root@kabuky ~]# ls /home/__snapshots
    [root@kabuky ~]# ls -l /home/__snapshots
    total 0
    drwxr-xr-x 1 root root 30 Jul 15 19:00 hourly-2011-10-31_17-00
    drwxr-xr-x 1 root root 30 Jul 15 19:00 hourly-2011-10-31_17-44
    drwxr-xr-x 1 root root 30 Jul 15 19:00 minutely-2011-10-31_17-18
    drwxr-xr-x 1 root root 30 Jul 15 19:00 minutely-2011-10-31_17-20
    drwxr-xr-x 1 root root 30 Jul 15 19:00 minutely-2011-10-31_17-22
    drwxr-xr-x 1 root root 30 Jul 15 19:00 minutely-2011-10-31_17-24
    drwxr-xr-x 1 root root 30 Jul 15 19:00 minutely-2011-10-31_17-26
    drwxr-xr-x 1 root root 30 Jul 15 19:00 minutely-2011-10-31_17-32
    drwxr-xr-x 1 root root 30 Jul 15 19:00 minutely-2011-10-31_17-37
    drwxr-xr-x 1 root root 30 Jul 15 19:00 minutely-2011-10-31_17-42

    tavianator wrote:
    Cool, I just wasn't sure if the "And this is what i get" was what you were expecting.
    Looks good, I may take a look since I'm using btrfs.  Don't confuse this for a backup though .
    Sorry for confusion, my english is not very good
    Yes this is not a backup.
    It's a sort of parachute if you do something stupid with your files you can at any time come back

  • Schedule Snapshots Rotation

    Hello,
    I have two Hyper-V servers running Replica feature, it is working great, but it only protects me from hardware failure.
    Now I want to have snapshots enabled for quick rollbacks (and full backups for more restoring options, but that's for later).
    I found this script which describes how to schedule a snapshot each 7 days: https://support.managed.com/kb/a1872/how-to-automatically-rotate-hyperv-snapshots.aspx
    From what I understand, it will rotate the Snapshot each 7 days, creating a new one and deleting the previous... but I am looking for something more complicated.
    What I really wanted was having a snapshot each 7 days, just like that example, but keeping the last two weeks, and also have a new snapshot daily. So I would always have three separate snapshots instances (2 weeks old, 1 week old and "yesterday").
    If I notice performance degradation, I will only keep 2 snapshots (1 week and 1 day old).
    Does anyone know how to do it?
    Thanks,
    Rafael

    Hi Brian,
    Thank you very much for your answer.
    Well, I am not thinking of snapshots as a backup. I am thinking about a fast way to do a rollback in case of need.
    Recently I had a problem with a server where the last backup I had was 5 days before, and recover was not very fast (very fast I mean a few minutes, if that much). Snapshots are a way to cover me from that kind of problem.
    Because of the quantity of servers I run, most of them have automatic updates. I had a case not long ago that one update messed up the "fonts" on a windows server 2003. I also have some servers where more then one people have access... once a employee
    deleted by accident something he was not supposed to.
    Beyond having snapshots, I will also have proper backup. Maybe having 2 weeks of snapshots is a little too much. But I think having at least one day and a week always recoverable can save me some headaches.
    So... my question is how to make a script to always have a one week old and a one day old snapshot. The script I have for a week is:
    $Days = 7 #change this value to determine the number of days to rotate.
    $VMs = Get-VM
    foreach($VM in $VMs){
        $Snapshots = Get-VMSnapshot $VM
        foreach($Snapshot in $Snapshots){
            if ($snapshot.CreationTime.AddDays($Days) -lt (get-date)){
                Remove-VMSnapshot $Snapshot
        Checkpoint-VM $VM
    How to add a daily snapshot without overwriting the weekly snapshots?

  • Versionpkg: a makepkg wrapper for building CVS/SVN pkgs

    I thought I had posted about this before!  But I guess not...
    I had the idea for versionpkg while creating the Arch CVS/SVN PKGBUILD guidelines on the wiki.
    versionpkg is a very simple script that allows you to easily update your CVS and SVN packages without having to edit the PKGBUILDS manually to enter the date or revision number.
    Simply run this script rather than makepkg in the build dir. This script completely removes the need for backtick execution in PKGBUILDS.
    You do need some special variables in your PKGBUILD but if everyone follows the guidelines when submitting to the AUR everyone can use versionpkg to stay up to date.
    You can get versionpkg from [community] simply by running pacman -S versionpkg

    OK - but if I do that, the recommended checkout command i.e.
    svn co $_svntrunk --config-dir ./ -r $pkgver $_svnmod
    equates to
    svn co svn://svn.shaftnet.org/linux-wlan-ng/ --config-dir ./ -r 1756 trunk
    which checks out not only trunk, but also branches and tags - in other words, multiple versions of the source code, instead of just one. I'm running it at the moment and it's gone back as far v0.1.16  - current is v0.2.2.
    So I think I'll leave it as it is........

  • [solved] yaourt VCS package updates

    Hello,
    the command $ yaourt -Syua --devel upgrades all VCS packages. However, I do not completely understand how that works.
    Does yaourt upgrade all VCS packages that are installed regardless of their version or does yaourt reconcile the VCS packages with my local packages and upgrades only these that are newer?
    Regards
    Last edited by orschiro (2012-12-23 09:37:02)

    Then this feature is not working on my system.
    As an example I just upgraded two packages nemo-dropbox-git and nemo-fileroller-git. So they are definitely the latest version.
    Now when I run  $ yaourt -Syua --devel it still wants to upgrade them again:
    [orschiro@thinkpad ~]$ yaourt -Syua --devel
    :: Synchronizing package databases...
    cinnarch-repo is up to date
    cinnarch-core is up to date
    core is up to date
    extra is up to date
    community is up to date
    multilib is up to date
    Foreign packages: \ 19 / 19
    ==> upgrading SVN/CVS/HG/GIT package
    Targets (2): nemo-dropbox-git nemo-fileroller-git
    ==> Proceed with upgrade? [Y/n]
    ==> ----------------------------
    ==>

Maybe you are looking for