Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package aaa_base for openSUSE:Factory checked in at 2021-03-20 21:25:40 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/aaa_base (Old) and /work/SRC/openSUSE:Factory/.aaa_base.new.2401 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "aaa_base" Sat Mar 20 21:25:40 2021 rev:478 rq:879700 version:84.87+git20210317.2c04190 Changes: -------- --- /work/SRC/openSUSE:Factory/aaa_base/aaa_base.changes 2021-03-11 20:07:00.520149717 +0100 +++ /work/SRC/openSUSE:Factory/.aaa_base.new.2401/aaa_base.changes 2021-03-20 21:25:42.285157682 +0100 @@ -1,0 +2,10 @@ +Wed Mar 17 14:40:00 UTC 2021 - r...@suse.de + +- Update to version 84.87+git20210317.2c04190: + * Don't rely on external dirname utility, but use ${d:h} tcsh expression. + * Enable locking feature of tcsh history file handling + * Add tcsh xd alias as well. + * Add ash xd() function as well. + * Add new function xd() "jump to the directory of a file" + +------------------------------------------------------------------- Old: ---- aaa_base-84.87+git20210308.d7a7d3a.tar.xz New: ---- aaa_base-84.87+git20210317.2c04190.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ aaa_base.spec ++++++ --- /var/tmp/diff_new_pack.RZ0UIz/_old 2021-03-20 21:25:43.057158585 +0100 +++ /var/tmp/diff_new_pack.RZ0UIz/_new 2021-03-20 21:25:43.061158590 +0100 @@ -23,7 +23,7 @@ %endif Name: aaa_base -Version: 84.87+git20210308.d7a7d3a +Version: 84.87+git20210317.2c04190 Release: 0 URL: https://github.com/openSUSE/aaa_base # do not require systemd - aaa_base is in the build environment and we don't ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.RZ0UIz/_old 2021-03-20 21:25:43.101158637 +0100 +++ /var/tmp/diff_new_pack.RZ0UIz/_new 2021-03-20 21:25:43.101158637 +0100 @@ -1,6 +1,6 @@ <servicedata> <service name="tar_scm"> <param name="url">https://github.com/openSUSE/aaa_base.git</param> - <param name="changesrevision">d7a7d3adc3b583e0951b985aa4f72ec3f6e58415</param> + <param name="changesrevision">2c0419023fa841ebf382581ef709fcf68253ecb1</param> </service> </servicedata> \ No newline at end of file ++++++ aaa_base-84.87+git20210308.d7a7d3a.tar.xz -> aaa_base-84.87+git20210317.2c04190.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aaa_base-84.87+git20210308.d7a7d3a/files/etc/csh.cshrc new/aaa_base-84.87+git20210317.2c04190/files/etc/csh.cshrc --- old/aaa_base-84.87+git20210308.d7a7d3a/files/etc/csh.cshrc 2021-03-08 16:08:01.000000000 +0100 +++ new/aaa_base-84.87+git20210317.2c04190/files/etc/csh.cshrc 2021-03-17 15:38:34.000000000 +0100 @@ -104,7 +104,7 @@ set notify=1 set nostat=( /afs ) set rmstar=1 -set savehist=( $history merge ) +set savehist=( $history merge lock ) set showdots=1 set symlinks=ignore # diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aaa_base-84.87+git20210308.d7a7d3a/files/etc/profile.d/alias.ash new/aaa_base-84.87+git20210317.2c04190/files/etc/profile.d/alias.ash --- old/aaa_base-84.87+git20210308.d7a7d3a/files/etc/profile.d/alias.ash 2021-03-08 16:08:01.000000000 +0100 +++ new/aaa_base-84.87+git20210317.2c04190/files/etc/profile.d/alias.ash 2021-03-17 15:38:34.000000000 +0100 @@ -41,6 +41,9 @@ } dirs () { echo "`pwd` $DSTACK"; return 0; } +# jump to the directory where the file is (e.g., xd $(location something)) +xd () { cd "$(dirname "$(readlink -f "$1")")"; } + # # Set some generic aliase functions # diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aaa_base-84.87+git20210308.d7a7d3a/files/etc/profile.d/alias.bash new/aaa_base-84.87+git20210317.2c04190/files/etc/profile.d/alias.bash --- old/aaa_base-84.87+git20210308.d7a7d3a/files/etc/profile.d/alias.bash 2021-03-08 16:08:01.000000000 +0100 +++ new/aaa_base-84.87+git20210317.2c04190/files/etc/profile.d/alias.bash 2021-03-17 15:38:34.000000000 +0100 @@ -55,3 +55,7 @@ alias beep='echo -en "\x07"' fi alias unmount='echo "Error: Try the command: umount" 1>&2; false' +# jump to the directory where the file is (e.g., xd $(location something)) +xd () { + cd "$(dirname "$(readlink -f "$1")")" +} diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aaa_base-84.87+git20210308.d7a7d3a/files/etc/profile.d/alias.tcsh new/aaa_base-84.87+git20210317.2c04190/files/etc/profile.d/alias.tcsh --- old/aaa_base-84.87+git20210308.d7a7d3a/files/etc/profile.d/alias.tcsh 2021-03-08 16:08:01.000000000 +0100 +++ new/aaa_base-84.87+git20210317.2c04190/files/etc/profile.d/alias.tcsh 2021-03-17 15:38:34.000000000 +0100 @@ -7,3 +7,4 @@ alias startx 'if ( ! -x /usr/bin/startx ) echo "No startx installed";\ if ( -x /usr/bin/startx ) /usr/bin/startx |& tee ${HOME}/.xsession-error' alias remount '/usr/bin/mount -o remount,\!*' +alias xd 'set d = `readlink -f "\!^"` ; cd "${d:h}"; unset d'