lockfile-progs-0.1.18/0000755000000000000000000000000013343274457011423 5ustar lockfile-progs-0.1.18/.git/0000755000000000000000000000000013343275261012256 5ustar lockfile-progs-0.1.18/.git/HEAD0000644000000000000000000000002713343274457012707 0ustar ref: refs/heads/master lockfile-progs-0.1.18/.git/branches/0000755000000000000000000000000013343274457014051 5ustar lockfile-progs-0.1.18/.git/config0000644000000000000000000000040113343274457013447 0ustar [core] repositoryformatversion = 0 filemode = true bare = false logallrefupdates = true [remote "origin"] url = /dv/u/rlb/git/lockfile-progs.git fetch = +refs/heads/*:refs/remotes/origin/* [branch "master"] remote = origin merge = refs/heads/master lockfile-progs-0.1.18/.git/description0000644000000000000000000000011113343274457014523 0ustar Unnamed repository; edit this file 'description' to name the repository. lockfile-progs-0.1.18/.git/hooks/0000755000000000000000000000000013343274457013407 5ustar lockfile-progs-0.1.18/.git/hooks/applypatch-msg.sample0000755000000000000000000000073613343274457017554 0ustar #!/bin/sh # # An example hook script to check the commit log message taken by # applypatch from an e-mail message. # # The hook should exit with non-zero status after issuing an # appropriate message if it wants to stop the commit. The hook is # allowed to edit the commit message file. # # To enable this hook, rename this file to "applypatch-msg". . git-sh-setup commitmsg="$(git rev-parse --git-path hooks/commit-msg)" test -x "$commitmsg" && exec "$commitmsg" ${1+"$@"} : lockfile-progs-0.1.18/.git/hooks/commit-msg.sample0000755000000000000000000000160013343274457016666 0ustar #!/bin/sh # # An example hook script to check the commit log message. # Called by "git commit" with one argument, the name of the file # that has the commit message. The hook should exit with non-zero # status after issuing an appropriate message if it wants to stop the # commit. The hook is allowed to edit the commit message file. # # To enable this hook, rename this file to "commit-msg". # Uncomment the below to add a Signed-off-by line to the message. # Doing this in a hook is a bad idea in general, but the prepare-commit-msg # hook is more suited to it. # # SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') # grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" # This example catches duplicate Signed-off-by lines. test "" = "$(grep '^Signed-off-by: ' "$1" | sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || { echo >&2 Duplicate Signed-off-by lines. exit 1 } lockfile-progs-0.1.18/.git/hooks/post-update.sample0000755000000000000000000000027513343274457017066 0ustar #!/bin/sh # # An example hook script to prepare a packed repository for use over # dumb transports. # # To enable this hook, rename this file to "post-update". exec git update-server-info lockfile-progs-0.1.18/.git/hooks/pre-applypatch.sample0000755000000000000000000000065013343274457017547 0ustar #!/bin/sh # # An example hook script to verify what is about to be committed # by applypatch from an e-mail message. # # The hook should exit with non-zero status after issuing an # appropriate message if it wants to stop the commit. # # To enable this hook, rename this file to "pre-applypatch". . git-sh-setup precommit="$(git rev-parse --git-path hooks/pre-commit)" test -x "$precommit" && exec "$precommit" ${1+"$@"} : lockfile-progs-0.1.18/.git/hooks/pre-commit.sample0000755000000000000000000000315213343274457016672 0ustar #!/bin/sh # # An example hook script to verify what is about to be committed. # Called by "git commit" with no arguments. The hook should # exit with non-zero status after issuing an appropriate message if # it wants to stop the commit. # # To enable this hook, rename this file to "pre-commit". if git rev-parse --verify HEAD >/dev/null 2>&1 then against=HEAD else # Initial commit: diff against an empty tree object against=4b825dc642cb6eb9a060e54bf8d69288fbee4904 fi # If you want to allow non-ASCII filenames set this variable to true. allownonascii=$(git config --bool hooks.allownonascii) # Redirect output to stderr. exec 1>&2 # Cross platform projects tend to avoid non-ASCII filenames; prevent # them from being added to the repository. We exploit the fact that the # printable range starts at the space character and ends with tilde. if [ "$allownonascii" != "true" ] && # Note that the use of brackets around a tr range is ok here, (it's # even required, for portability to Solaris 10's /usr/bin/tr), since # the square bracket bytes happen to fall in the designated range. test $(git diff --cached --name-only --diff-filter=A -z $against | LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0 then cat <<\EOF Error: Attempt to add a non-ASCII file name. This can cause problems if you want to work with people on other platforms. To be portable it is advisable to rename the file. If you know what you are doing you can disable this check using: git config hooks.allownonascii true EOF exit 1 fi # If there are whitespace errors, print the offending file names and fail. exec git diff-index --check --cached $against -- lockfile-progs-0.1.18/.git/hooks/pre-push.sample0000755000000000000000000000250413343274457016361 0ustar #!/bin/sh # An example hook script to verify what is about to be pushed. Called by "git # push" after it has checked the remote status, but before anything has been # pushed. If this script exits with a non-zero status nothing will be pushed. # # This hook is called with the following parameters: # # $1 -- Name of the remote to which the push is being done # $2 -- URL to which the push is being done # # If pushing without using a named remote those arguments will be equal. # # Information about the commits which are being pushed is supplied as lines to # the standard input in the form: # # # # This sample shows how to prevent push of commits where the log message starts # with "WIP" (work in progress). remote="$1" url="$2" z40=0000000000000000000000000000000000000000 while read local_ref local_sha remote_ref remote_sha do if [ "$local_sha" = $z40 ] then # Handle delete : else if [ "$remote_sha" = $z40 ] then # New branch, examine all commits range="$local_sha" else # Update to existing branch, examine new commits range="$remote_sha..$local_sha" fi # Check for WIP commit commit=`git rev-list -n 1 --grep '^WIP' "$range"` if [ -n "$commit" ] then echo >&2 "Found WIP commit in $local_ref, not pushing" exit 1 fi fi done exit 0 lockfile-progs-0.1.18/.git/hooks/pre-rebase.sample0000755000000000000000000001144213343274457016644 0ustar #!/bin/sh # # Copyright (c) 2006, 2008 Junio C Hamano # # The "pre-rebase" hook is run just before "git rebase" starts doing # its job, and can prevent the command from running by exiting with # non-zero status. # # The hook is called with the following parameters: # # $1 -- the upstream the series was forked from. # $2 -- the branch being rebased (or empty when rebasing the current branch). # # This sample shows how to prevent topic branches that are already # merged to 'next' branch from getting rebased, because allowing it # would result in rebasing already published history. publish=next basebranch="$1" if test "$#" = 2 then topic="refs/heads/$2" else topic=`git symbolic-ref HEAD` || exit 0 ;# we do not interrupt rebasing detached HEAD fi case "$topic" in refs/heads/??/*) ;; *) exit 0 ;# we do not interrupt others. ;; esac # Now we are dealing with a topic branch being rebased # on top of master. Is it OK to rebase it? # Does the topic really exist? git show-ref -q "$topic" || { echo >&2 "No such branch $topic" exit 1 } # Is topic fully merged to master? not_in_master=`git rev-list --pretty=oneline ^master "$topic"` if test -z "$not_in_master" then echo >&2 "$topic is fully merged to master; better remove it." exit 1 ;# we could allow it, but there is no point. fi # Is topic ever merged to next? If so you should not be rebasing it. only_next_1=`git rev-list ^master "^$topic" ${publish} | sort` only_next_2=`git rev-list ^master ${publish} | sort` if test "$only_next_1" = "$only_next_2" then not_in_topic=`git rev-list "^$topic" master` if test -z "$not_in_topic" then echo >&2 "$topic is already up to date with master" exit 1 ;# we could allow it, but there is no point. else exit 0 fi else not_in_next=`git rev-list --pretty=oneline ^${publish} "$topic"` /usr/bin/perl -e ' my $topic = $ARGV[0]; my $msg = "* $topic has commits already merged to public branch:\n"; my (%not_in_next) = map { /^([0-9a-f]+) /; ($1 => 1); } split(/\n/, $ARGV[1]); for my $elem (map { /^([0-9a-f]+) (.*)$/; [$1 => $2]; } split(/\n/, $ARGV[2])) { if (!exists $not_in_next{$elem->[0]}) { if ($msg) { print STDERR $msg; undef $msg; } print STDERR " $elem->[1]\n"; } } ' "$topic" "$not_in_next" "$not_in_master" exit 1 fi <<\DOC_END This sample hook safeguards topic branches that have been published from being rewound. The workflow assumed here is: * Once a topic branch forks from "master", "master" is never merged into it again (either directly or indirectly). * Once a topic branch is fully cooked and merged into "master", it is deleted. If you need to build on top of it to correct earlier mistakes, a new topic branch is created by forking at the tip of the "master". This is not strictly necessary, but it makes it easier to keep your history simple. * Whenever you need to test or publish your changes to topic branches, merge them into "next" branch. The script, being an example, hardcodes the publish branch name to be "next", but it is trivial to make it configurable via $GIT_DIR/config mechanism. With this workflow, you would want to know: (1) ... if a topic branch has ever been merged to "next". Young topic branches can have stupid mistakes you would rather clean up before publishing, and things that have not been merged into other branches can be easily rebased without affecting other people. But once it is published, you would not want to rewind it. (2) ... if a topic branch has been fully merged to "master". Then you can delete it. More importantly, you should not build on top of it -- other people may already want to change things related to the topic as patches against your "master", so if you need further changes, it is better to fork the topic (perhaps with the same name) afresh from the tip of "master". Let's look at this example: o---o---o---o---o---o---o---o---o---o "next" / / / / / a---a---b A / / / / / / / / c---c---c---c B / / / / \ / / / / b---b C \ / / / / / \ / ---o---o---o---o---o---o---o---o---o---o---o "master" A, B and C are topic branches. * A has one fix since it was merged up to "next". * B has finished. It has been fully merged up to "master" and "next", and is ready to be deleted. * C has not merged to "next" at all. We would want to allow C to be rebased, refuse A, and encourage B to be deleted. To compute (1): git rev-list ^master ^topic next git rev-list ^master next if these match, topic has not merged in next at all. To compute (2): git rev-list master..topic if this is empty, it is fully merged to "master". DOC_END lockfile-progs-0.1.18/.git/hooks/pre-receive.sample0000755000000000000000000000104013343274457017016 0ustar #!/bin/sh # # An example hook script to make use of push options. # The example simply echoes all push options that start with 'echoback=' # and rejects all pushes when the "reject" push option is used. # # To enable this hook, rename this file to "pre-receive". if test -n "$GIT_PUSH_OPTION_COUNT" then i=0 while test "$i" -lt "$GIT_PUSH_OPTION_COUNT" do eval "value=\$GIT_PUSH_OPTION_$i" case "$value" in echoback=*) echo "echo from the pre-receive-hook: ${value#*=}" >&2 ;; reject) exit 1 esac i=$((i + 1)) done fi lockfile-progs-0.1.18/.git/hooks/prepare-commit-msg.sample0000755000000000000000000000272413343274457020332 0ustar #!/bin/sh # # An example hook script to prepare the commit log message. # Called by "git commit" with the name of the file that has the # commit message, followed by the description of the commit # message's source. The hook's purpose is to edit the commit # message file. If the hook fails with a non-zero status, # the commit is aborted. # # To enable this hook, rename this file to "prepare-commit-msg". # This hook includes three examples. The first one removes the # "# Please enter the commit message..." help message. # # The second includes the output of "git diff --name-status -r" # into the message, just before the "git status" output. It is # commented because it doesn't cope with --amend or with squashed # commits. # # The third example adds a Signed-off-by line to the message, that can # still be edited. This is rarely a good idea. COMMIT_MSG_FILE=$1 COMMIT_SOURCE=$2 SHA1=$3 /usr/bin/perl -i.bak -ne 'print unless(m/^. Please enter the commit message/..m/^#$/)' "$COMMIT_MSG_FILE" # case "$COMMIT_SOURCE,$SHA1" in # ,|template,) # /usr/bin/perl -i.bak -pe ' # print "\n" . `git diff --cached --name-status -r` # if /^#/ && $first++ == 0' "$COMMIT_MSG_FILE" ;; # *) ;; # esac # SOB=$(git var GIT_COMMITTER_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') # git interpret-trailers --in-place --trailer "$SOB" "$COMMIT_MSG_FILE" # if test -z "$COMMIT_SOURCE" # then # /usr/bin/perl -i.bak -pe 'print "\n" if !$first_line++' "$COMMIT_MSG_FILE" # fi lockfile-progs-0.1.18/.git/hooks/update.sample0000755000000000000000000000703213343274457016101 0ustar #!/bin/sh # # An example hook script to block unannotated tags from entering. # Called by "git receive-pack" with arguments: refname sha1-old sha1-new # # To enable this hook, rename this file to "update". # # Config # ------ # hooks.allowunannotated # This boolean sets whether unannotated tags will be allowed into the # repository. By default they won't be. # hooks.allowdeletetag # This boolean sets whether deleting tags will be allowed in the # repository. By default they won't be. # hooks.allowmodifytag # This boolean sets whether a tag may be modified after creation. By default # it won't be. # hooks.allowdeletebranch # This boolean sets whether deleting branches will be allowed in the # repository. By default they won't be. # hooks.denycreatebranch # This boolean sets whether remotely creating branches will be denied # in the repository. By default this is allowed. # # --- Command line refname="$1" oldrev="$2" newrev="$3" # --- Safety check if [ -z "$GIT_DIR" ]; then echo "Don't run this script from the command line." >&2 echo " (if you want, you could supply GIT_DIR then run" >&2 echo " $0 )" >&2 exit 1 fi if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then echo "usage: $0 " >&2 exit 1 fi # --- Config allowunannotated=$(git config --bool hooks.allowunannotated) allowdeletebranch=$(git config --bool hooks.allowdeletebranch) denycreatebranch=$(git config --bool hooks.denycreatebranch) allowdeletetag=$(git config --bool hooks.allowdeletetag) allowmodifytag=$(git config --bool hooks.allowmodifytag) # check for no description projectdesc=$(sed -e '1q' "$GIT_DIR/description") case "$projectdesc" in "Unnamed repository"* | "") echo "*** Project description file hasn't been set" >&2 exit 1 ;; esac # --- Check types # if $newrev is 0000...0000, it's a commit to delete a ref. zero="0000000000000000000000000000000000000000" if [ "$newrev" = "$zero" ]; then newrev_type=delete else newrev_type=$(git cat-file -t $newrev) fi case "$refname","$newrev_type" in refs/tags/*,commit) # un-annotated tag short_refname=${refname##refs/tags/} if [ "$allowunannotated" != "true" ]; then echo "*** The un-annotated tag, $short_refname, is not allowed in this repository" >&2 echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2 exit 1 fi ;; refs/tags/*,delete) # delete tag if [ "$allowdeletetag" != "true" ]; then echo "*** Deleting a tag is not allowed in this repository" >&2 exit 1 fi ;; refs/tags/*,tag) # annotated tag if [ "$allowmodifytag" != "true" ] && git rev-parse $refname > /dev/null 2>&1 then echo "*** Tag '$refname' already exists." >&2 echo "*** Modifying a tag is not allowed in this repository." >&2 exit 1 fi ;; refs/heads/*,commit) # branch if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then echo "*** Creating a branch is not allowed in this repository" >&2 exit 1 fi ;; refs/heads/*,delete) # delete branch if [ "$allowdeletebranch" != "true" ]; then echo "*** Deleting a branch is not allowed in this repository" >&2 exit 1 fi ;; refs/remotes/*,commit) # tracking branch ;; refs/remotes/*,delete) # delete tracking branch if [ "$allowdeletebranch" != "true" ]; then echo "*** Deleting a tracking branch is not allowed in this repository" >&2 exit 1 fi ;; *) # Anything else (is there anything else?) echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2 exit 1 ;; esac # --- Finished exit 0 lockfile-progs-0.1.18/.git/index0000644000000000000000000000204113343275261013305 0ustar DIRC [y/[y/%/- .gitignore[y/[y/FW`Tv k-COPYING[y/[y/ Ơ[L%ӕMakefile[y/[y/ <мGP*TODO[y/[y/ };Q˫8fAUoQFFdebian/changelog[y/[y/ cQDHk`WcU4@ debian/compat[y/[y/@AUpy23 debian/control[y/[y/Q%.Oisօ:gadebian/copyright[y/[y/UTaR6;(V|'debian/lockfile-progs.lintian-overrides[y/[y/O ;-$p< debian/rules[y/[y/s'|hWJHK lockfile-progs.1[y/[y/"R.+y\9lockfile-progs.cTREE912 1 C;{S+]y4!Edebian6 0 X@K:Wi^׃.P.ګQhlockfile-progs-0.1.18/.git/info/0000755000000000000000000000000013343274457013217 5ustar lockfile-progs-0.1.18/.git/info/exclude0000644000000000000000000000036013343274457014572 0ustar # git ls-files --others --exclude-from=.git/info/exclude # Lines that start with '#' are comments. # For a project mostly in C, the following would be a good set of # exclude patterns (uncomment them if you want to use them): # *.[oa] # *~ lockfile-progs-0.1.18/.git/logs/0000755000000000000000000000000013343274457013230 5ustar lockfile-progs-0.1.18/.git/logs/HEAD0000644000000000000000000000026413343274457013656 0ustar 0000000000000000000000000000000000000000 6d88ceff08b50437faa8dc4b0a96a1b18d1b3d7e Rob Browning 1535998255 -0500 clone: from /dv/u/rlb/git/lockfile-progs.git lockfile-progs-0.1.18/.git/logs/refs/0000755000000000000000000000000013343274457014167 5ustar lockfile-progs-0.1.18/.git/logs/refs/heads/0000755000000000000000000000000013343274457015253 5ustar lockfile-progs-0.1.18/.git/logs/refs/heads/master0000644000000000000000000000026413343274457016473 0ustar 0000000000000000000000000000000000000000 6d88ceff08b50437faa8dc4b0a96a1b18d1b3d7e Rob Browning 1535998255 -0500 clone: from /dv/u/rlb/git/lockfile-progs.git lockfile-progs-0.1.18/.git/logs/refs/remotes/0000755000000000000000000000000013343274457015645 5ustar lockfile-progs-0.1.18/.git/logs/refs/remotes/origin/0000755000000000000000000000000013343274457017134 5ustar lockfile-progs-0.1.18/.git/logs/refs/remotes/origin/HEAD0000644000000000000000000000026413343274457017562 0ustar 0000000000000000000000000000000000000000 6d88ceff08b50437faa8dc4b0a96a1b18d1b3d7e Rob Browning 1535998255 -0500 clone: from /dv/u/rlb/git/lockfile-progs.git lockfile-progs-0.1.18/.git/objects/0000755000000000000000000000000013343274457013715 5ustar lockfile-progs-0.1.18/.git/objects/info/0000755000000000000000000000000013343274457014650 5ustar lockfile-progs-0.1.18/.git/objects/pack/0000755000000000000000000000000013343274457014633 5ustar lockfile-progs-0.1.18/.git/objects/pack/pack-b5001fb57fbc567c6c9204982960f8e23f84f9d5.idx0000644000000000000000000001433413343274403023600 0ustar tOc  !!!#$%&'''(()))*++-.../13347777888::<=>@CDEGIILLMMMNNNNPPPPRSTUUUUUUVWXXXXXZZZ\]]]]]]^abccdddddegggiijjjjkkkkmmmopppqqrsuvwyz{||}}~~bE- q::&'76fm/}]|+^, 0nX%Cťߍjnky3Ht;}.Y Ca$K5~~'HuH3)8(6Oq\&*9&!Brjdg{-.Euy;Q˫8fAUoQFF;#YC31`n9Q4Q%.Oisօ:gaQdg7U#ג6:R ² ̋U8%@S_1ϰ?8/޵yJ9T=9:?M{}U7·I<$1AUTaR6;(V|WWZ[| GjWe38ay ڼXWz@ƅBΟwYNgSY7X$E\H'4f-OG޹ʈ`Tv k-`☽MÆc DdV\jC[BũmGdNEGO e TxsĂew(3f)H~NTJCp~g~Ij` m7K =~nY,x^$orފZɻm@]xZtu8ݚSbt6tOzt!=uQzL0wE%! |8BG3ѻsfw2&< d@u@x+Ex֛ 䙛?~Q/門A'c=`C۝,(6Xa S?ݓ1>Q^ u./)X\(YGD'ht54>[}~ˈs]ߴ fdfmٍZ56?ܣQ$ ߉CAԁpwG)1s,3i^\O/Q4< #_܎4!}wcX岬ώ5Džg3z]Ih@9t 9 ,2*ȃNf$ћ)m#f{GnkF X*^Q!Eȓ*&Pc+ß˫pRZ?y)QNko̠eb=f35M|#IB)s><8`<&So|͍ko,ia[Sfj%E[^Hyp!ZΤ6ZϪ[I}^D oFufHCPH */fUW;:X3mhkh3$|b7OlJr糠 9GE_T1T11e椺f\GӘ49kDI 2Jmt| R":J՟xpt^6rZ0;-Wp8FLnQ'.8$Z9V3ZQ:,Il@νa]}NCuߪ۷ ?\` ;-$p<1ylnxIw~+"R٭wnMLEY}7 Ҝ}F @C&΄-ȑ4"iF(q)ʫˏ¾sM+6칙o)NMoFz4+񚽌,.z bQ38H:J±EĊ[ѵ erC˫ 9cl$a!!Uk=#Sh4:$ÒI'Hd4>dp{'W]JŜ:"9βN-j=^Ns8rƠ[L%ӕnK9kMGtJwRMj0Gx_Myw`i*V~lЎBğT^a,>ӳ L el˛y Ks`*I Ӌ>QnfۊQ$XaLTIeǐS֤RXv뿝(B?XFgCow͍eX'k:O~œ*~;@۬[=">aIsEC\}t R.+y\9sEIƟ;'~!BwP|gGy7~ղ?P^Φ&k/;꽹R;bMD<_R]FP>%+:Vg"O+9YiMQ~e.P^%'Yb/$,&5c"1kpta/;1@VVa`()5/b3iV((qa&\+4e)'W4f ('eb0ibZqbJbzVx}{!V|eb6&#.qfa- =e95) 3.R2 & M$VWX$+%<2be81[e$f+T:%i$X4 {+-87b7q8i=&J &67c%',9&0q|*Xh, +Fa-}1~C7,DcUebV[p}:85)6FT|++|$_3^cc(}j}WavaK{Wm"(RV|l)`?P ̂OV=8Vlockfile-progs-0.1.18/.git/objects/pack/pack-b5001fb57fbc567c6c9204982960f8e23f84f9d5.pack0000644000000000000000000011052113343274403023725 0ustar PACKx[N Eř@ -sc|O8Ӗ P4qvDIR*a*GlG#;.؁bTF7DâRd(@5\j'muK>ל~+rώPw8pޱ5G+%,)_#c_MECN]2)nv!*`8~9gxAn0~~h1*xw4Rqzˌ7Ugg9'IeaQ1[3CtlԴtl'o8ʄxfM8 [\kK;|5E3mkӺPvڗ!=x,?s NEp4r-uwd;᢭*u[?z@+$LɫInxAN0E>\8UC,8=I2N>9~-"-uѣǶE 8&tST!4XlO#9j5Q^o53KMKᥬe}Zwir_mgzo *m[j QxnfY qx`=TږxM0 Pk*b$plW)B s30CjQ¥Cm :L|y6U$ >D|)gf) [Xg蜷>gm]YS>7xjnM>/6Xkǜ|=h>ڮPCv# Jߺ?;Q^xm @0fyIQm R3^K,޴p{`ƇbW2vɖ(ct\h4M(.bDⓉKB,IΊy>{?mo> u>t]WxVk?&ùS{7j׾Az L߼_Qxm!b7X"%Dr O`.i?W?sF33HM2Kar(X֢')Eqp`rqޓ2| D %B'p>'׶ut#.u祏 ()$"k?M8ӆ휟V}r E-ËuPxM Lq X418pkƒ_͡ ~ ;2:B1CHXP%Ӛ1a3&YNF’R.Sܵ Fl䚷>'x퀗Q[]:^q׈j~?r(2SsI;]V/]/iOZxAn @= 8 cfĕm*z ݓ~o".Lx4&cpsq%,ݢ~RCļ̹lmf'qbZKQi[mU3|wږYJ[MېSm3lBӼ &eshFl$Yǃ)O07\'}/c?t]ih/܅GHMw]wH w6 dZ[xM!ϙ!1hv00&d5v5XKޚ\-!5UDj"WS! 'bbPRB'W"nޡGuӾl_GlES/c`CXK[jEܸnb~MKxN0~87r'**kG!<>.j͔igpFz0`Rt`:a(5rp5Z)FbmoǑKkch)-, ٢՗O+v1]Og90)8쨠Lv[J sޙxf276c{\:B^g>2o8o?ӹJ1~VWƺ1Az x"xn0E{}@)ޏ0$H&H 5#X.)(pn\Ι+Znr@b"򮨰FNVlTOݐT6CE546[kk'Lpy|nz&p3g'(:6ϓ]Z5xB隂8Y*OBOxs C0vm (v/H Gvř! }h m#{V|f8[5'P@vC3BC+Fxc;8 MG'w7F_ K~qA6yF j2|&qר!_ >ÇvטC*xQn0+Q&Q5TQذ훉73-e2HD;]Rb]W/FZ1'uSJ<ےd%׺m2K/N'Vk~M=.SB[EW]UVePt21<|~.w1|&hu 8`w Sco&zTX=5i%q2pHjp1rɐs\XimnTȤwYbxu+2wPPX'ِ|cH0ea4.V 33wliv>n=zn iKհ9/@C4<탡8/:H=ظUvXGb)2Ԍ ZN &;LGxSuS xȜxN0 y K\@*Cp$K4^&q柬ϟ풉@KZɎRrxpεVkaT+p5o;aX@7ZIEiΨFc'#;p*}ʰK^r΃xpO HkΙKc( 2 g;:3|UNL1 fï,|N_^(]L)]JlL=\+=\?uxMN0F>Hl`UU .0IԮIޓUG&M[[c`VmC36W 슡J3"# *x)exKrs{h[-W)GЦk5h H(%\\R_y7őA%IyIebPȕ{p^o řx;g;SvWip?n{+qwM_w K kxPN0+QE"۱Ӂ?>"|6lOfyhFӘ A@~tBJҠVo(ޑ4P&$J`CnVkƘFNxUr{a)'(=: =tJ)|[ǕZs-T%:3A!m8)c6,qx=ay[Ux(q?JVf,Gpsuv0܊mΕxm!@;UL`])"}Ik )?!'}h'O\ f(4Akt*BH9:s.+0!͢L =eg+mQG Ϡc\ &"0?7|Lx\*,-^{Lgw_ncUZ:7I)>;D~ȁbsU:W7GM*P7塰w]\?KFxm wcUUG88l+"Cp2n5! Nk!WVL b):{2eBWP Ųv69mۨijΟXOi4' *S3)&o:Q~N=QvIUA!xAN0E9Ũ+@miH 'VrRc3)Bkl4'JW$aLJIJW∑B,r%$-}L)/KU`N]pcճ!O!OKVWR†Ռ:xRŋ1hL1/wdzp0`'xҶ(`ċま­ ch#z8uNwK79C#4L…83w3CgT7=&_l|h9-3Usxm0 5H Yу@P$eq@Џ9ntU)dRt klIPaŐ̓sp#:)Th/ c,O+3||V:sddC N6[k|VMO(ཤ]M{j_^xz6SٓxJ0}bޅIڴ \w(dZ/S}}ޕw~i`#;uw8fБF#٨Oj\pv6GDXLq}uGf0蒢C>jP#]e[晎Uh=Z 7Ju"Ov!9).xTXX?7*(gx^CxWZ(xQ;o0+nsR%KAX t( d6"̐yRR֍uǑToN }oL71G%EA %j%d$@f0ia0ֆԱCvF؊逢d1D|?ԣ&#2Bh mNH݃,XrN' Ncq?+*w0k?&u8R } G5Esr/:*J(<% CBXoD7ۿ,-dK#Hb!$^ ր.ѫߪ;3#q8n^p*37ԘmkҦp4OB2\iino{sѰ~&xi0wOq 4dB #dtJe9!73o 3#b&yZ!mWA. rEJYXsGJѡ*:Y蜏!p ~e[z)\IːF!z€mmNg_n'C92MCڐ6PU>ew,7Uҕx ;(&GpmҖAxUa|8Yxk8ZLC$dUHNGNbNN1c̣'4(Y*K[-mpK&ܗ˱HvGD˺έɟ]e-o(^Klx w`r$ QA:|Wٻl` @uI( %J zDQY<{ %k{p66D#,!yh\-G})N먏eAs}ҼKx:@}0h,S'WZ7Eϖ}Hxm0 @ѻ=8 mGH;B7 E bK"73ߪ\-'z<9 yȄ4%awp@ G*&]xqLH0"-^qoߥW7 ouZ⾵޺J]߁(đÀD˾Zr ~6HωaJwa{ Pn;W;?dTxm! waj6vlS D._e?MġPM G^IA'"݃L5)5.1H($ZR亖ha5>m_V|R8˒{w6sS?ubJ5  QxAN!B?e`c}?fUUC}S\-A$bFDEUhH  -E1h):x o6x_d:S=o-“Z)ե|NF0$W&=~R9_CVVxQj0 Bп‚q et=n RHaCMr ,c62abXuCF~Y5=:Li šG$gi@Yp6ٟwexwl ѹ_Oj[?%e| I}Jza%J%xj1}@%7IEdЅ *]K7:0N_iĎC rTY%BN!$f_ij 3Fi:OI8aU42mO5qco^(nEQUJz9O.{r)uE|JAx !;UЀ1j v0$+j໿58j b) gbV}*$ h(1 I}q%L!$ k+F4X1cD~[KmƑY7M fֻs7`ypYu+ ױi.6z1̥Qx 0 {EI$Rm >bnZđ}яFc'1$dˮG*[rBG3@}AS v/n%õ6o,#K{ˡh Z+*:&vua{4\^rP_JǕx w` ?-/npmThu896YME[ǡAJCب"71،*2VLH̀& vzA{K彖#/y}mZwKRk?xkD*_}K{VP޷Y|ӆM x !;ULnXL1޼a%aA۷ j$yԊCQц,&EJŕ=}o+m˨(Y뤥 ns+c$7)EQ.p:x340031QK,L/JevUKN~GXwŅWBT9Dz3$~*ms7ӝU⛘pl݇[dnKSAՄ3ɽi%!c7 zM딉(&e&1a gI 5 '?9dnAQ~z!eKy_/v &6|]9/ƲE~=lx340031QHHKOOg)#cnʢ@Uzksw/d}*=/TQN~rvZfNnAQ~z^Nf^Ifbn~YjQQfJj1ChȒDAf4jv|sPBQiPo\׮~QI *gmf,]Qxkcjc0Kb܍O8zs7]X}uΙ: x{qB ?.vwJV^vĬ&'xQ!Eȓ*&PcXuxex{qB9,+w@ⅶԀ Xxkcjc)Pl(~uJKYN̝ V*xkcjc0K`^eR?_1q] @dxV37=`C۝,(100644 control\H'4f-OG޹ʈjni^\O/Q4< #_c%9x#f{GnX&x{QD!9#1/=5'?᧜T~_x)]9Cyqs xkcjc0KfKuLH:8yu wx-%100644 changelog 3znB%Ǖ6}xkcjc0KM܁yM;ϸifu( dgx{q |̖܏i9xΰ-e RxkcjcIdψܪLe..d 'xkcjc0Kd_g fY T;fѹtE 6_xB%100644 changelogs-Cf0HS_#% 9GE_T1T{xMYDžg3z]ImYDJ5Zz+Eֱ഑cMS\&Yn($[xeb=f3n)xkcjc0Ka^.ִosM}su^xB%100644 changelogQdg7U#ג6:% 9GE_T1T[y$xkcjc0KDGJƫ'FwBW;o.[ |x{qBHfD۾i1߶h<;0Q-Ĭ&Wyxkcjc0K]=v@-n̞"uQxE%100644 changelog%E[^Hyp!ZΑ%1)X\(YGj[xxkcjc0KD+Ũܿ '|)Zj4 x340031QHHKOOgX̤:AƩs'EyT(n:gUWRߥѶoZ̷-LktWRPYQWY|uNY'*275U((J-e72Ф\̽w~YvC3,4[=oߐr,"EWx!nK9kMGt0xkcjcIס Y˃} +> WxKYH Py{Ecqm-v$Pra*49>D,PT欦fq#("r x340031QHHKOOgpt~>INUB04wiFmƳ"?Teg0g_k!VMM Rr䍌4)s/dPE9 M/<}{_74-YEQx3Ҝ}F DlKSW{ ;4l x340031QHHKOOg_-z2$D~nem?J"aUWRߥѶoZ̷-LktWRPYQWY|uNY'*275U((J-e72Ф\̽w~YvC3,4[=oߐr,E3nxkcjcI$_dev;Y{M:t (xkcjc0KTh^O6pJy N x340031QHHKOOgag};{CqϺbUWRйlf {m,FK>\IAeQfzF C^fֹ;>gT((Ak@r1 Mf UPTZ̰o'ʿ7}CIxR CE~xsM+6칙o)NM䑮XS x340031QHHKOOg3RN>;O Js:wM,a/m;רpއ+),L(aTի,:w'B*2 hR.^tU}s, JsR^yDƿoH9i[ fHx340031QK,L/Je8/$ݕu"=vѕU~ !/;zG\>M?tA&fe2H^׫drSz[ ?07M$$pa[oi21Ԥ<\!eYgiJ-߯Ԁl%Ez 2Ujow&W ~bWpK3dY6ID31Fbx[ϸqle}Λ.>z"{uv x340031QHHKOOgl]5sxH8-u3*+)a઼3M3c+ WRPYQWY|uNY'*275U((J-e72Ф\̽w~YvC3,+w޴w,"s+ezC^xkcjc0KO92OŷXc Wx[ϸql{]Q'w^u+_" 1x9񚽌,.z bʑB?XFgCow‘| x340031QHHKOOg8'!yk k,h!TQ~^IQ~W嵘y'xowXOʢ@Uzksw/d}*=/PBAQjQ.׀&bEW>̲4'!^WݹWvWzG(txkcjc0K$ۤe]Iy"ȴ] x340031QHHKOOgpqe{t;×5*+)a઼3M3c+ WRPYQWY|uNY'*275U((J-e72Ф\̽w~YvC3:;îXQWףExM&@Ȩu3 /i\8(6Oq\&*cD-3"~j:p Nm!; x340031QHHKOOg;p^3S(/aUWRUy-f-śfV:(3=!PU?Zܝ YJO TdnjPPZ od5I{U&*(*I-f/jurwU]/Exkcjc)R޺s5).:tܙ$+x9/}]|+^, 0TV?ݎ7Jˑ}^ x340031QHHKOOg`zsELK¸T+B0pU^wrw|+),L(aTի,:w'B*2 hR.^tU}s, JsRZuEܝ{aW|EGErxkcjcR340031QK,L/Je();U'oEʼn" x340031QHHKOOgxc]TjF: } RPEy%E9 \b]ifx`~,a?J *23JU3ɿ?Ŀ@E榦 EE F_]U_no2nҜbi42VQ-Vx{qVLBקY xM;  lX Knhf7y#7jKb-kG }uE]noc KS:Dl*FJS *޷x\[sF~SzT3sh+UDYܕ(mAr(". xqrֵY[$ӗ/I~|^io0 wd*6?t*7*{Y>O o*c\oieM&҇'=5MncM'MV?$5޿kÇ?7&}ږWfT묮Bץ:-zٺf gg_f*].u7ln k7kSԉ|/Y䋲iofS$ ce,7$=]OeY5q[a~ҭޖM$E7vmi}%J-WZ||0UfFK;b7+jS,d&RR[K;y~YOcX4lQ hucI[zDfU5YK7Y>|7՛w6`I.JoJmUrSʒ֤jt:)ƽvLG;.$Vyae*β&]δ~.=O V 3,zDZ,1H9I8TCp@'զiD0gvO3MkhZr‘vD#&ǟ>uS*('RWZZgKo]%a)d Ts^T,CV+")-gv^'\BMr%[(Aӂ2LKZy->&ee 9 y,[(RV'lnơ|UT*nzj*tV!yZ36LOllY9?"QuDcI&ȉ].%ԗEqC_)t8H6NIV+SSg!BNC~%sGڑJ 3՞Xʖ , }"#:}R]J3k U( +?ذ9%Jot؟% ]Zg$?s&Qdz[e$Ty!3g9>'L40\sKY' XhCl^)Qښ^(ĝ%_! myI]'A {1kULn%lRk+7Ȉ7@>cŒ$+<5dK2$ kUh.i'kq8r=ij0.7:&HR"HA֢pYBx.8nu8KzޱSHƙC&bfLrƎD x,ІtsqhՒ) c9M 3+K|.f<7D6$7 j!T띃1K<r|*i5AB;HZt] ,K`|?ѵz]ÇD1m6 DvzKD ycu_ʟ>W?;`. L>qB'*tr:fM2lhS qʚflAWrsES#?Jn\ǯr `7))A*8+!f9;.zjAbw&HpnL걚#8k` YSh7-U&7ecsY|r]dCC`R961lMR!}_$)y %ә5XF{ a芎[GyI+}*d: ^!WZ2Od%x[G%u88=x/ݯ>35C91EUuXatMg'ka+N\,=&#t^%sn%1$ k8RRz&󴱒A̸r s- v*4,*۴1Ys@ d[N䩞1ud#ypeԖ|:ȼQpoUuP}@wLc].uԭB ^j@!e3݃}/HW]Hma<9ZrQN(tRB°d!ԘE ނC.p(ТOEQ6]PtAA2# Y[[|E㽴®0j/Ӝ53o;>tun] ٵ5oLCzT qbwd`!w_7gRT&A_y<8U}RqI~EQL8.0- ƥ\@b;5d}3,`[_հdxDԱVgSqH\H(:7uxA(MבTmv=c$v ;p%4|R^Hu% "y);z2d6-Bp)۪KZ-(K aZcSz1upNNU[tDIvWA(B=wV8KqzWSI gRB #?((*+s9>yX ȤK_^ %O<H!A@"g9կeޠeE^hVyq'nuY(㷡vG )ßgQwT| Noo_5w<|Ќ(r(9IO9 o8 |uԔ92AG0$$q66**| JnޜH_j:.HI@d;K=1NkgBdw&ښFMV0@bM w@;K Ѕ4L屶\ Ga=Sؕxws $38.qcڕx(ge|3>ԑ-p,͉B1m+% QxJJ1cCZNr'GH KAlTĄn qCChƹJm73#yrG􆓆iӗ.K~_9- Wڬ2֖R(YfE&VYyU2 eNư21ao!XhR7/ȷgc.Eh$"S.bh\Cƨ%h*|ݠ ޝGPLH+6bhFoY,_|zgPM EIߜfqlY|A/en+וȅ9ԃjd*nҭYVK>OB%:\Jg[iqwx~&4Akdu;g\3EG?fi ǁ}#ĝǍ:'}:[P`u<԰c@N"{k.MFF&EĈĨ"f_Tm4CsOEW\6:'.ktH6suDWOu-MJ̖sj-е"wåv.e7 HS9+B8?tS637[dg0ˑs_)ነ#J­>q~d&CaI&p' 2rz\/!ٺL4A1뫸mM:K.Gпw^1؞kO&tLdFTW҄{); ~r~{K)C͵X}HF"{N,'❑9~lgzA|`_0\+H?W&dta'IMͪyҼu&&M*)J~(jKLBTHˢ:6M@͍NqOl;VB?Uϸ\\N Yu ly*u vq|n~ڍa v'2>Ĩr)tٶly+re;|BP:7+w P\^GhfZw_\rN `Mj!n@H,95O%F@~IeHvNZ 8+{S ^~$QtHO_T59_ZU쏌 9ߴ `bR܉w*[e& uopH e EH׎ Uqt m~?Q4뙩Ps5gγ{hE8o jUIfqF[< ]@|3UV~j?vLۆa{H;Mma)= 7=͡;2CσG?YcOZ׿XM1Ltr3m&a?rpk#A(20i ܹAG*hyKll{իW;r"otr]7daAƅʋ|^u=?>4@?>z8Sf<}u$xn<1-Fyt0~8g|$˻&i~L@D>NS?"j ]A?A fp5~'i{2e폟d04x1#=H|ˇd :4nǃ_h?44I !-=_/&5zg~vAlVRٿ| .!E@ 8}`&Oqp5?{R=:; YѯO8E}:Nl z 6]yw]{Gw(-2k`Dbs_]=ɴ n&Odl~ٚkoO,g}=tV~ $Z8du@oh[wzcr@? ydE0:<8 N)폟?0(g.2.(冂CCetM`?l(2YcCeHPL )sժ $ ;L7YˇF/uZN-4 ü9J$©M8o<=&|z, ˢrEf Yx<RLîwß8pBxpe+)9Q6tۍ$$7ȓXCJH(Xj < ڽ^}&ϐYP/ md}x=v.vPc;kr/r׶˜iwFl= nĺ$lIC.2*:DE(.ȇp5 $ Q'İpHGwxeYucn(:S" ረ,i0{?o++\ 'DPD˃rX`P* ڐ$On/˥ &9;%)Xy<"T#=ǮʅΘ+YqT ׯ~1wMy9%hrpG9Nt%7_\}{kb#ɱFJG>jA-vh8_΄חPŝGPv+FEuFR#Gѽ 4/E/دkuxUmk0l V*c`.K!,` [EeɓQ߾d{6qaw|w~Y,/˷a:Ʉd~qk_iS0G-O*#opc|EBAÙ$2PJ(7@p {BgA /O~(*'9*?3l8赍C7͉fC\n 75LI'e::)i+_) }?@hr;mjbj!>rp: pQ P2)*%79+-s܀ˑJ\5dWLTC(D3i؎AZqk0mşƁ^&kTbxчg.7m=0"D:npWs@x%S!X,朂hۄ!CQu+;5=+]#:I7HuL#:'q?!;`AIn KaK]uе@!x2FAl:l>xC Ō$&jUxFMejxcFh'eF x}DǓ7'10N>tmvw%J 8x}D/~l) I2N"6=+%@hnbfnN~rUbd$dZ@\'`6Ywr ,jx~}BƸrfx-I(RKMMQ(WHLIQ(.-(/*QH/R(HUK-WtQ/(*1xXnS JMĺ qzk;A @o!9fMq3墯'Uw-9b@̙}g*__J8Va[fMd>اo]9t)|(dx񂱗/˿ȲNV8&< ?l''&Izq2{8رVZ%;U6+Wp.a쒷,9_̟A>s^-6-*qgM"GE=*VV5Jg\T5k9XuɖێWՊ-v!#c-xR0 s[rd݊ ?B[v8-;[fd -?cK1")[[x4GlY! gKeʯqkCe>b'BfYWRfp[p}݊|Gh`E/gu0)i<{q2}MGZش1=пբA4[E&Wd>(f]mB} zrBM=$ FMFχrJƀASod?A,ԍ `:g7\KZazDD(sv.m#a$n%AQE%_qb|xa֢c]].8Dٗ'LsPzCly50S!>vk~ɵ"{;99j(0 a|?XA] {s޴ZpBD 7(~"I֫T sC^. B0҈ڐmr%3͵dNJwu>ox16|v:|g\s"E]/އRdܴv)RbYePQhNnb%E,&HnꚂmmq?vbQ$;;{ξйH1D4h}~~jRc^~OwTDQGZZΠ)k{'Nr T!./Yy-/SS<0 5Z1( ^Pڀ*Z"j@;NNA8++n3xwL$nKyJ3\9lo-|C+ 4uVĦ[sW(Gy%M -7 3As+Y7moEtl2ܦ5Δ w9L|ba7 ;Ѐyw~s9@EgLƻJgSo{X$9(o~me|u-t.KM >gQ4Y;!`9ɪfMjzG\IrU3YD$HBo4D4 ;ysɗw?Dl9*L?"96pIƑ$>=Q~c/JH1]cQsjlߩF[@91|%ZM4/A<01vpG~9\bu3܏S/-b[bݵ-=JЏ!W8ܕ` 1PLm[=@vN+8nxb/11җ4+{σ 8L#ohR+jxkPƏ=|k-xk0Ek:"NkCxkp\yl!iYxkWz_MmxkOr]E'pIH(&)X(ZX+XLV\ -xkObF&]Ɇby\Di6x[Qv|IJx[KfJ&]E6\ SiVxDifAv`*x']bBĶ"+'g04202Qg (Zx'L|Bd“3 rXYn~( h-x{&>Ml1n6L?x{&>Ml팬FV&{8K]x{&>StGF.]bW0qVx{&Md{,\ 6`[# x{&~HdⅥsON` OMQ02Rp,MW0200W0221 r ;x;$*2!cr=VfV& 8$60qM Zhix;$rIh N+2x~D.xO0 : ,B)2°SzW%XFg;~:?;{=$泌mhnO>f6vʢ-HZd r,clxǺu4FՙPVj4xǺuBjL x% 0 DD%~Pv`HNJ?WhcI 4zne(; ]gf-B66 up>P| 5$W IT`w/ s]BkC xONI-(O/VHK,R(N-ILхpJL#sSSWɦQǜ lF=N4FxSo0M G j>Lq,;FVc~|wQiM*ɒNQƺ3gz;ߕP8,%t+"KՆy&,B2{W0 ̀8fr :SUe"Hdfxz~Ͽ^jیI XrLL W]FR|q5/-B!*v V/on)օ6c]I"E*Ύ_0 zi8?g'+j/`OX-{ +h')7ԀTP(a7;5u=Z?/n&b횦b]/ Ü@5M ¤mwx{qMWYQH?)3O?71;UA7KY9(3=DAYSBlF_{j^jQbB@iRNf2POfrj^q HnYx{mDՌϙ.ϳxXmo6_q5,'i7-aIĈ]lE] D\$Q%ް#b/EyNyFa VBJ vE;':DGJ,^v~Z (B`,0`r>xSIJrtVR RqtU&>־myQ[\ \dH5 x $*錛%HO5Vl$RܢHu֧gjHG{Ҁ@&=@>R k Tj"6Tw5٢Sb+&$~ZIqԟa32 K]vj`¢6Drĺ2U [6R[CtKD8JJmJv\;N;Yk_ƪXg]00tr%~=HgaNDDqO{ =Sy@ Ӕ@NLw?^\`I0;k4-9I<-@/ lc@ͱXcb.\!,\ NP-[|}}^Ig Ẅ`kW!>Ic\0goa|)Nf÷8-R?`fe p,Ap)ӌ%;~4QiM٩")0 Z6qC(E(#*|咠~DK+_#b>(q|N^cm):~ad|7gju<>Rjw0qX~AL8rwk7z)E$YT#/S u/V8h.=!;³wRM3;Y*m 閠ÊkU7JGgjފqq9cH,R9(2J eU0͝&İ*Cb\eY$#UXtyl$~zb_K_}MT rn;V7i4+#b He4*ևXV NKWv4K *@Y#*g0hFH3d` yG=TLAimK{TNq>V%ՊUpq,Jf/22IiDeUa$A>#i >>Mwhuƒ^()iBr:f(/}a-bdؕÞpcxJqѮ(Eh=‰-~>ڂa,Q=4)M"nCQD9j&4>vE%Η?;TQndowq"yJ?#0uF⯧%i2;rsRNOS^8:<+1l$\Z]? L&;=ϰL?7sKuZ:Idj&>f!=[k3# 5z. D\fPDDL'Jw60ˊ*^Da׵ dvCi#%^dv{@0/-{Fk YX˽ؐo8/ۖFZpZܡxj`qSc&#zh!kKY,㪞TuQZe#nt`&: xM=? {@5f[@Y dȒ#MF`bdL8y\5G=ޅԕҾb-< 7ډvS|kjp3]\v$$Ur%KqPđn=V0cNUn Ο"y<ٜjI U-lc"H@Mݓ!=<*-vxX\{'џ*`cSe0G|U˟ʩ"khig"[`g;x7ifzęs˨l=Rebp#PI~!_!U+ӳnnǼNdES fa]C ʆ=jN9fТSv=$ʩ?͘6p6U>*3Fۊ=uP2Y VBB F.Jxu6&?t's srkeL`7gԜ\ $1odva"\^A81=J!713G4/'?9;&O 㫐** Sl xzuOL,W)4o#xzuFs̛X8 7 >xqFLynfba|C8U 3e-j@AEh]]x<5|99'qsw1F+*TO~#7d)AM&uDTH r)(di&f'hn6[#Z3hxuYd&˰Ynbbe,؜].Lfolf CxuYd&˰YnbH&i|63 5nxuYd&˰Ynb[dxuCs̲ >N8x{v͞\'LaRl#,99A($5DH}3El}ayEjRsS'sM&̿[&Up{gx{kzV' DKK2K3&Ep*&'+MN,."R%6bY[*xe}Bd vҜͧm'g,ǩه]qrBu8&N)Sis "捼'/UQRPH,рiU;dyike'dzC,(2YSp2(XBf& >ήPiV[kHBjNq*XzrbL5ZCZ Y;9DV^\Js8?7HZ" 9 jj 0cnD8 IR`5F Cg8x;VgC./tuRK*nr~i^BdFvYR3!N>.+\XUlL^ndĊKJK J2@T|qAjd5{8t: ~>> \ @P\YRUZ\S99 nv"-"֓7H(*'g -I,JO-OIT7SvT&Q^#px[sJs f&FT[Jp2e敤i(('geZ)$e+'N~̮6C|c&}VL 9ŹS'oRƝǥpg2x3zBxuʽ @ S|!)BaY P\'~|T)i!J`%J_4o6xlq]T4%8kȑ]zdniV܆QW|ǻF1ۼ(xV[o6~YFv[htm/ aF#Ej$CJreI|~4n'B )܈t;| =SBɫ : )^RXȅDk`Ѐ+ʂ;yHT,xv:= $-qzllR8L]c*.3!ll*Pz31GuķgAK^1qwʏ>~ xc-غyMXq^eܱEN7}4cڣTbVLEX]<6"*!.BeCvlpCdi9Ǫvsz_Mso}]r@9c=Fkךl8 U@Hya[XCG _Aq%"(T<[zMWh ̢{xwxA)rV*'OgON/vvvX)).4QJDΖjؒRLȏ$׻﹵ ~ޡkmmn¿\n)l["˃pp uz4taG{3llWwtСz*wct&Dæe Q1{,t`b r<״=S}7-ԙFNɩ Ev-d;a+4g`oͤsʍܖR$4m2k\u24{zƻ|F#\IB?tiu:i?ە.M"R8֙hXmlig$ 1}紖_!U|[ABaj>Ġm [O i|eV}p+!<:FNt %Ƈ= 3&P-x[ r[xC)vRifNJurFjrvJfQ- g(&_`$=rjx[ rUx[fF,:SYv? x[ rAxYf"4<<}-k.Δ|,.IQ-VPQN" U9e+&x-|RxC#Knbv>?xM;  lXF~c L&oL %<$pVC_noc ]3֮2uRLIU(h]x,eҪV xXko7_qW[l@ m,[  %NHmarzXI8/zEϞ|H^Q Enm,"g ŠҪҚD9g,;YP)W)צXZ{ GOO=[Ӆ5.V_SUeV/;SARqUE,ye=U2ig: t R%zUJ,K)z}3\Ł\9z~A@fOLZMv/PQ :VnwEggjid.X Z(6]BvZΊKmrBß]8ȥb_{-޸?t6򂉡-ՋQ҇*o7XNbLAD݊M7UWa d[W) g2  Q,[#>aD,ߌgo'ZD%!^Gkr2/>$((.u CAEҮ\Z**&u`CV)Z#@|a "4^!随cW G4P84C^~%iT~b!!LTֲ^޵QUl`lYWg$⫂XOCc%2cjRvr/+N'K}iC!=UT_8]*T Ϛ>DGv}G_j@^!_>)n`\WG0Ƃñ 4J"%*~^R,tE6LLR @A x ِ&v{fץW,+biVv.auvV rYB=OD}H{;G)8ʸM`"9zBJL ><"E tC@H @ʼnFnD{t1Ds@AO1> T2w701qCvٔ 5֤0ډqLj|vmq&c\-" շ3 "3mk @= I6je';'Dsz#Oz9ET.LG&~EiATBx/]%0wX0/U C&jLwH[ϣ@aֽH&8}"WzXǤ}mk=OOK[yӂJ\OZ؄~Q|-|IcЗ71C:=(B {ПR@r+6g9>}Oep彇N>g,s7u3ees{걇Y6>DwH۷՗㷉l x!3Yz\}l$x!Qjy۸1(8xӪҋQ#V|l)`?lockfile-progs-0.1.18/.git/packed-refs0000644000000000000000000000016213343274457014372 0ustar # pack-refs with: peeled fully-peeled sorted 6d88ceff08b50437faa8dc4b0a96a1b18d1b3d7e refs/remotes/origin/master lockfile-progs-0.1.18/.git/refs/0000755000000000000000000000000013343274457013223 5ustar lockfile-progs-0.1.18/.git/refs/heads/0000755000000000000000000000000013343274457014307 5ustar lockfile-progs-0.1.18/.git/refs/heads/master0000644000000000000000000000005113343274457015521 0ustar 6d88ceff08b50437faa8dc4b0a96a1b18d1b3d7e lockfile-progs-0.1.18/.git/refs/remotes/0000755000000000000000000000000013343274457014701 5ustar lockfile-progs-0.1.18/.git/refs/remotes/origin/0000755000000000000000000000000013343274457016170 5ustar lockfile-progs-0.1.18/.git/refs/remotes/origin/HEAD0000644000000000000000000000004013343274457016606 0ustar ref: refs/remotes/origin/master lockfile-progs-0.1.18/.git/refs/tags/0000755000000000000000000000000013343274457014161 5ustar lockfile-progs-0.1.18/.gitignore0000644000000000000000000000020013343274457013403 0ustar *~ \#* .\#* /bin /check /debian/files /debian/stamp-build /debian/substvars /debian/tmp /lockfile-create /lockfile-progs.o /man lockfile-progs-0.1.18/COPYING0000644000000000000000000004312713343274457012465 0ustar GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) 19yy This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) 19yy name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. lockfile-progs-0.1.18/Makefile0000644000000000000000000000376313343274457013074 0ustar LOADLIBES := -llockfile CFLAGS ?= -g -Wall -Wformat-security -Werror -O2 all: lockfile-create rm -rf bin mkdir -p bin cp -a lockfile-create bin cp -a lockfile-create bin/mail-lock cd bin && ln lockfile-create lockfile-remove cd bin && ln lockfile-create lockfile-touch cd bin && ln lockfile-create lockfile-check cd bin && ln mail-lock mail-unlock cd bin && ln mail-lock mail-touchlock mkdir -p man cp -a lockfile-progs.1 man (cd man && ln -sf lockfile-progs.1 lockfile-create.1 && \ ln -sf lockfile-progs.1 lockfile-remove.1 && \ ln -sf lockfile-progs.1 lockfile-touch.1 && \ ln -sf lockfile-progs.1 lockfile-check.1 && \ ln -sf lockfile-progs.1 mail-lock.1 && \ ln -sf lockfile-progs.1 mail-unlock.1 && \ ln -sf lockfile-progs.1 mail-touchlock.1) .PHONY: all lockfile-create: lockfile-progs.o ${CC} -o $@ ${LDFLAGS} $^ ${LOADLIBES} # These tests are quite insufficient, but perhaps better than nothing for now. check: all rm -rf check mkdir check bin/lockfile-create check/file bin/lockfile-touch --oneshot check/file bin/lockfile-check check/file bin/lockfile-remove check/file ! test -e check/file.lock bin/lockfile-create --lock-name check/file.lock bin/lockfile-touch --oneshot --lock-name check/file.lock bin/lockfile-check --lock-name check/file.lock bin/lockfile-remove --lock-name check/file.lock ! test -e check/file.lock bin/lockfile-create --use-pid --lock-name check/file.lock bin/lockfile-touch --oneshot --lock-name check/file.lock # PID shouldn't be the same, so this should fail. bin/lockfile-check --use-pid --lock-name check/file.lock bin/lockfile-remove --lock-name check/file.lock ! test -e check/file.lock bin/lockfile-create --use-pid --lock-name check/lockfile.no-pid .PHONY: check distclean: clean clean: rm -f lockfile-create lockfile-remove lockfile-touch lockfile-check rm -f mail-lock mail-unlock mail-touchlock rm -f *.o *~ rm -rf bin man rm -rf check .PHONY: clean distclean lockfile-progs-0.1.18/TODO0000644000000000000000000000007413343274457012114 0ustar -*-text-*- * Need to add support for the new L_PID option. lockfile-progs-0.1.18/debian/0000755000000000000000000000000013343275261012637 5ustar lockfile-progs-0.1.18/debian/changelog0000644000000000000000000001437613343275261014524 0ustar lockfile-progs (0.1.18) unstable; urgency=medium * Update to debhelper 9. * Let environment override CFLAGS. * Update Standards-Version to 3.9.8. * Change lockfile-progs package to Multi-Arch foreign. Thanks to Elrond for reporting the issue. (Closes: 907890) -- Rob Browning Mon, 03 Sep 2018 13:17:21 -0500 lockfile-progs (0.1.17) unstable; urgency=low * Add "p" to getopt_long()'s short options so the "-p" arg will actually work. As the manpage states, "-p" was intended to be the short argument for "--use-pid", but since "p" wasn't added to the getopt_long() optstring, it didn't actually work. Fix it. Thanks to Michael Deegan for the report. (Closes: #686057) * Fix cross-builds; use the cross-compiler when cross-building. Thanks to Colin Watson for the report and the patch. (Closes: #694842) -- Rob Browning Sat, 01 Dec 2012 12:16:09 -0600 lockfile-progs (0.1.16) unstable; urgency=low * Remove unused rc variable in chk() to silence gcc warning. Thanks to Matthias Klose for the report, and thanks to Aurelien Jarno for the 0.1.15.1 NMU. (Closes: #625384) * Use L_PID rather than L_PPID when appropriate. In cases where lockfile_create() and lockfile_check() were being called with L_PID, use L_PPID to capture the parent's PID. Capturing the PID of the lockfile-create or lockfile-check process made no sense. Thanks to Zrin Žiborski for the report, Larry Diegel for the patch, and Sebastian Siewior for the suggestion to update the documentation. (Closes: #626752) -- Rob Browning Sun, 21 Aug 2011 18:54:27 -0500 lockfile-progs (0.1.15) unstable; urgency=low * Add missing debhelper Build-Depends. -- Rob Browning Sun, 13 Jun 2010 02:21:19 -0500 lockfile-progs (0.1.14) unstable; urgency=low * Don't erroneously require -l for mail-related commands. Thanks to Andre Grueneberg . (closes: #563533) * Change --retry-count to --retry in the manpage. Thanks to Daniel Frank . (closes: #584779) * Change debian/rules to use "dh $@" approach. This also adds md5sums, fixing a wishlist bug. Thanks to Loïc Minier . (closes: #564798) -- Rob Browning Sat, 12 Jun 2010 13:02:23 -0500 lockfile-progs (0.1.13) unstable; urgency=low * Make exit_status volatile since it interacts with a signal handler. * Adjust code for -Wformat-security. Thanks to Michael Bienia . (closes: #487503) -- Rob Browning Sun, 21 Jun 2009 10:00:52 -0700 lockfile-progs (0.1.12) unstable; urgency=low * Fix manpage typos. Thanks to "A. Costa" . (closes: #439745) * Remove duplicate priority field from the control file. (closes: #464297) * Add a --use-pid option which adds L_PID to the underlying liblockfile call. Users should note the caveats in lockfile_create(3). * Add a lockfile-check program (see lockfile_check(3)). * Remove duplicate priority and section fields from debian/control. Thanks to Lucas Nussbaum and Patrick Winnertz . (closes: #464297) -- Rob Browning Wed, 17 Jun 2009 21:38:54 -0700 lockfile-progs (0.1.11) unstable; urgency=low * Add --quiet and --verbose options. (closes: #272539) * Use hard links for duplicate binaries. (closes: #382730) * Respect DEB_BUILD_OPTIONS nostrip. (closes: #437491) * Fix manpage to reflect changes to liblockfile --retry. (closes: #161685, #244314, #360474) * Add support for --lock-name (-l). (closes: #416355) -- Rob Browning Fri, 24 Aug 2007 17:35:23 -0700 lockfile-progs (0.1.10) unstable; urgency=low * update manpage to fix dashes under utf-8. (closes: #159907) * recompile to fix prelink problem. (closes: #231550) * fix manpage to note --try like semantics of --retry. -- Rob Browning Sat, 28 Feb 2004 11:44:30 -0600 lockfile-progs (0.1.9) unstable; urgency=low * Add command tool names to manpages. (closes: #88510) * Update my email address. -- Rob Browning Tue, 17 Jul 2001 12:38:34 -0500 lockfile-progs (0.1.8) unstable; urgency=low * Add Build-Depends: liblockfile-dev (Closes: Bug#94948, Bug#84547). * Move manpages to /usr/share/man (Closes: Bug#80755, Bug#91205). * Move docs to /usr/share (Closes: Bug#91571). -- Rob Browning Mon, 23 Apr 2001 15:24:26 -0500 lockfile-progs (0.1.7) unstable; urgency=low * Update to depend on liblockfile1 (Closes: Bug#44819) * Support new lockfile_create() signature. -- Rob Browning Fri, 24 Sep 1999 18:41:58 -0500 lockfile-progs (0.1.6) unstable; urgency=low * Really fix return codes (Closes: Bug#34279) -- Rob Browning Sat, 29 May 1999 13:36:42 -0500 lockfile-progs (0.1.5) unstable; urgency=low * Programs now return more meaningful result codes (Closes: Bug#31254). -- Rob Browning Sun, 17 Jan 1999 20:39:29 -0600 lockfile-progs (0.1.4) unstable; urgency=low * Don't allow locking arbitrary mailbox (Closes: Bug#28773). * Clean up code to use getopt. * Add --oneshot option to lock touching programs. * Add --retry-count option to locking programs. -- Rob Browning Sat, 21 Nov 1998 01:06:27 -0600 lockfile-progs (0.1.3) unstable; urgency=low * Rebuild as root. Libtricks built a broken .deb (a file that should have been a symlink was a truncated file of garbage). -- Rob Browning Fri, 30 Oct 1998 16:11:34 -0600 lockfile-progs (0.1.2) unstable; urgency=low * Make mail lock programs a separate binary, and make them sgid mail. -- Rob Browning Fri, 30 Oct 1998 15:47:17 -0600 lockfile-progs (0.1.1) unstable; urgency=low * Initial release. * This is beta code, so be a little cautious. I don't think there are any *serious* bugs, but... -- Rob Browning Mon, 19 Oct 1998 16:53:40 -0500 lockfile-progs-0.1.18/debian/compat0000644000000000000000000000000213343274457014043 0ustar 9 lockfile-progs-0.1.18/debian/control0000644000000000000000000000132213343274457014246 0ustar Source: lockfile-progs Section: misc Priority: optional Maintainer: Rob Browning Build-Depends: liblockfile-dev, debhelper (>= 9) Standards-Version: 3.9.8 Package: lockfile-progs Architecture: any Multi-Arch: foreign Depends: ${shlibs:Depends} Description: Programs for locking and unlocking files and mailboxes This package includes several programs to safely lock and unlock files and mailboxes from the command line. These include: . lockfile-create lockfile-remove lockfile-touchlock mail-lock mail-unlock mail-touchlock . These programs use liblockfile to perform the file locking and unlocking, so they are guaranteed compatible with Debian's file locking policies. lockfile-progs-0.1.18/debian/copyright0000644000000000000000000000027613343274457014605 0ustar This is a Debian specific package, so there is no upstream source. lockfile-progs is covered under the terms of the GNU Public License. See /usr/share/common-licenses/GPL for more details. lockfile-progs-0.1.18/debian/lockfile-progs.lintian-overrides0000644000000000000000000000033113343274457021142 0ustar lockfile-progs binary: setgid-binary usr/bin/mail-lock 2755 root/mail lockfile-progs binary: setgid-binary usr/bin/mail-unlock 2755 root/mail lockfile-progs binary: setgid-binary usr/bin/mail-touchlock 2755 root/mail lockfile-progs-0.1.18/debian/rules0000755000000000000000000000151713343274457013731 0ustar #!/usr/bin/make -f # Copyright (C) 1998-2016 Rob Browning # This file is covered under the terms of the GNU General Public # License. %: dh $@ override_dh_testdir: test -f debian/rules test -f lockfile-progs.c override_dh_auto_install: install -d debian/lockfile-progs/usr/bin cp -a bin/* debian/lockfile-progs/usr/bin/ # manpages install -d debian/lockfile-progs/usr/share/man/man1 cp -a man/* debian/lockfile-progs/usr/share/man/man1 find debian/lockfile-progs/usr/share/man -type f | xargs gzip -9v (cd debian/lockfile-progs/usr/share/man && \ for file in `find -type l`; \ do \ ln -sf lockfile-progs.1.gz $${file}.gz; \ rm -f $${file}; \ done) override_dh_fixperms: dh_fixperms chown :mail debian/lockfile-progs/usr/bin/mail-lock chmod g+s debian/lockfile-progs/usr/bin/mail-lock lockfile-progs-0.1.18/lockfile-progs.10000644000000000000000000001116313343274457014427 0ustar '\" t .\" ** The above line should force tbl to be a preprocessor ** .\" Man page for man .\" .\" Copyright (C), 1998-2008, Rob Browning .\" .\" You may distribute under the terms of the GNU General Public .\" License as specified in the file COPYING that comes with the .\" lockfile\-progs distribution. .\" .TH lockfile\-progs 1 "2008-02-10" "0.1.12" "Lockfile programs" .SH NAME lockfile\-progs \- command\-line programs to safely lock and unlock files and mailboxes (via liblockfile). .SH SYNOPSIS .nf \fBmail\-lock\fR [\-\-use\-pid] [\-\-retry \fIretry\-count\fR] \fBmail\-unlock\fR \fBmail\-touchlock\fR [\-\-oneshot] \fBlockfile\-create\fR [\-\-use\-pid] [\-\-retry \fIretry\-count\fR] [-\-lock\-name] \fIfilename\fR \fBlockfile\-remove\fR [-\-lock\-name] \fIfilename\fR \fBlockfile\-touch\fR [\-\-oneshot] [-\-lock\-name] \fIfilename\fR \fBlockfile\-check\fR [\-\-use-pid] [-\-lock\-name] \fIfilename\fR .fi .SH DESCRIPTION .PP Lockfile\-progs provides a set a programs that can be used to lock and unlock mailboxes and files safely (via liblockfile): .nf .RS 4 \fBmail\-lock\fR - lock the current user's mailbox \fBmail\-unlock\fR - unlock the current user's mailbox \fBmail\-touchlock\fR - touch the lock on the current user's mailbox \fBlockfile\-create\fR - lock a given file \fBlockfile\-remove\fR - remove the lock on a given file \fBlockfile\-touch\fR - touch the lock on a given file \fBlockfile\-check\fR - check the lock on a given file .RE .fi By default, the \fIfilename\fR argument refers to the name of the file to be locked, and the name of the lockfile will be \fIfilename\fR .lock. However, if the \-\-lock-name argument is specified, then \fIfilename\fR will be taken as the name of the lockfile itself. Each of the mail locking commands attempts to lock /var/spool/mail/, where is the name associated with the effective user ID, as determined by via geteuid(2). Once a file is locked, the lock must be touched at least once every five minutes or the lock will be considered stale, and subsequent lock attempts will succeed. Also see the \fB\-\-use\-pid\fR option and the \fBlockfile_create\fR(3) manpage. The \fBlockfile\-check\fR command tests whether or not a valid lock already exists. .SH OPTIONS .PP .\" --quiet \fB\-q\fR, \fB\-\-quiet\fR .RS 4 Suppress any output. Success or failure will only be indicated by the exit status. .RE .PP .\" --verbose \fB\-v\fR, \fB\-\-verbose\fR .RS 4 Enable diagnostic output. .RE .PP .\" --lock-name \fB\-l\fR, \fB\-\-lock\-name\fR .RS 4 Do not append .lock to the \fIfilename\fR. This option applies to \fBlockfile\-create\fR, \fBlockfile\-remove\fR, \fBlockfile-touch\fR, or \fBlockfile-check\fR. .RE .PP .\" --use-pid \fB\-p\fR, \fB\-\-use\-pid\fR .RS 4 Write the parent process id (PPID) to the lockfile whenever a lockfile is created, and use that pid when checking a lock's validity. See the \fBlockfile_create\fR(3) manpage for more information. This option applies to \fBlockfile\-create\fR and \fBlockfile-check\fR. NOTE: this option will not work correctly between machines sharing a filesystem. .RE .PP .\" --oneshot \fB\-o\fR, \fB\-\-oneshot\fR .RS 4 Touch the lock and exit immediately. This option applies to \fBlockfile\-touch\fR and \fBmail\-touchlock\fR. When not provided, these commands will run forever, touching the lock once every minute until killed. .RE .PP .\" --retry \fB\-r\fR \fIretry\-count\fR, \fB\-\-retry\fR \fIretry\-count\fR .RS 4 Try to lock \fIfilename\fR \fIretry\-count\fR times before giving up. Each attempt will be delayed a bit longer than the last (in 5 second increments) until reaching a maximum delay of one minute between retries. If \fIretry\-count\fR is unspecified, the default is 9 which will give up after 180 seconds (3 minutes) if all 9 lock attempts fail. .SH EXAMPLES .B Locking a file during a lengthy process: lockfile\-create /some/file lockfile\-touch /some/file & # Save the PID of the lockfile\-touch process BADGER="$!" do\-something\-important\-with /some/file kill "${BADGER}" lockfile\-remove /some/file .SH "EXIT STATUS" .PP \fB0\fR .RS 4 For \fBlockfile\-check\fR this indicates that a valid lock exists, otherwise it just indicates successful program execution. .RE .PP \fBNot 0\fR .RS 4 For \fBlockfile\-check\fR a non-zero exit status indicates that the specified lock does not exist or is not valid. For other programs it indicates that some problem was encountered. .RE .SH "SEE ALSO" .nf \fBmaillock\fR(3) \fBtouchlock\fR(3) \fBmailunlock\fR(3) \fBlockfile_create\fR(3) \fBlockfile_remove\fR(3) \fBlockfile_touch\fR(3) \fBlockfile_check\fR(3) .fi .SH AUTHOR Written by Rob Browning lockfile-progs-0.1.18/lockfile-progs.c0000644000000000000000000002124413343274457014512 0ustar /* lockfile-progs.c Copyright 1998-2009 Rob Browning This code is covered under the terms of the Gnu Public License. See the accompanying COPYING file for details. To do: It might be useful at some point to support a --user option to mail-lock that can only be used by the superuser (of course, they could just use lockfile-create with an appropriate path... */ #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include static const char *action = NULL; static char *target_file = NULL; static int retry_count_specified = 0; static int retry_count = 9; /* This will be a maximum of 3 minutes */ static int touchlock_oneshot = 0; static int use_pid = 0; /* not used yet, so not documented... */ static int lockfile_verbosity = 1; static int lockfile_add_dot_lock_to_name = 1; static volatile int exit_status = 0; static int msg(FILE *f, const char *fmt, ...) __attribute__ ((format (printf, 2, 3))); static int msg(FILE *f, const char *fmt, ...) { int rc = 0; if(lockfile_verbosity > 0) { va_list args; va_start(args, fmt); rc = vfprintf(f, fmt, args); va_end(args); } return rc; } static void chk(const int test, const char *fmt, ...) __attribute__ ((format (printf, 2, 3))); static void chk(const int test, const char *fmt, ...) { if(!test) { if(lockfile_verbosity > 0) { va_list args; va_start(args, fmt); vfprintf(stderr, fmt, args); va_end(args); } exit(1); } } static void usage(const char *command_name, FILE *file) { if(strcmp(command_name, "mail-lock") == 0) { msg(file, "usage: mail-lock [--use-pid] [--retry retry-count]\n"); } else if(strcmp(command_name, "mail-unlock") == 0) { msg(file, "usage: mail-unlock\n"); } else if(strcmp(command_name, "mail-touchlock") == 0) { msg(file, "usage: mail-touchlock [--oneshot]\n"); } else if(strcmp(command_name, "lockfile-create") == 0) { msg(file,"usage: lockfile-create" " [--use-pid] [--retry retry-count] [--lock-name] file\n"); } else if(strcmp(command_name, "lockfile-remove") == 0) { msg(file, "usage: lockfile-remove [--lock-name] file\n"); } else if(strcmp(command_name, "lockfile-touch") == 0) { msg(file, "usage: lockfile-touch [--oneshot] [--lock-name] file\n"); } else if(strcmp(command_name, "lockfile-check") == 0) { msg(file, "usage: lockfile-check [--use-pid] [--lock-name] file\n"); } else { msg(stderr, "lockfile: big problem - unknown command name: %s\n", command_name); exit(1); } } static void parse_arguments(const int argc, char *argv[]) { int usage_error = 0; int opt_result; const char *short_opts = "r:oplqv"; struct option long_opts[] = { { "retry", required_argument, NULL, 'r' }, { "oneshot", no_argument, NULL, 'o' }, { "use-pid", no_argument, NULL, 'p' }, { "lock-name", no_argument, NULL, 'l' }, { "quiet", no_argument, NULL, 'q' }, { "verbose", no_argument, NULL, 'v' }, { NULL, 0, NULL, 0 } }; char *cmd_name = rindex(argv[0], '/'); int mail_cmd_p = 0; if(cmd_name != NULL) { /* Skip the '/' */ cmd_name++; } else { cmd_name = argv[0]; } while((opt_result = getopt_long(argc, argv, short_opts, long_opts, NULL)) != -1) { switch(opt_result) { case 'o': touchlock_oneshot = 1; break; case 'p': use_pid = 1; break; case 'q': lockfile_verbosity = 0; break; case 'v': lockfile_verbosity = 2; break; case 'l': lockfile_add_dot_lock_to_name = 0; break; case 'r': { char *rest_of_string; long tmp_value = strtol(optarg, &rest_of_string, 10); retry_count_specified = 1; if((tmp_value == 0) && (rest_of_string == optarg)) { /* Bad value */ msg(stderr, "%s: bad retry-count value\n", cmd_name); usage(cmd_name, stderr); exit(1); } else retry_count = tmp_value; } break; case '?': usage(cmd_name, stderr); exit(1); break; default: msg(stderr, "%s: getopt returned impossible value 0%o.\n", cmd_name, opt_result); exit(1); break; } } if(strcmp(cmd_name, "mail-lock") == 0) { action = "lock"; mail_cmd_p = 1; } else if(strcmp(cmd_name, "mail-unlock") == 0) { action = "unlock"; mail_cmd_p = 1; } else if(strcmp(cmd_name, "mail-touchlock") == 0) { action = "touch"; mail_cmd_p = 1; } else if(strcmp(cmd_name, "lockfile-create") == 0) action = "lock"; else if(strcmp(cmd_name, "lockfile-remove") == 0) action = "unlock"; else if(strcmp(cmd_name, "lockfile-touch") == 0) action = "touch"; else if(strcmp(cmd_name, "lockfile-check") == 0) action = "check"; else usage_error = 1; if(retry_count_specified && (strcmp("lock", action) != 0)) usage_error = 1; if(use_pid && (strcmp("lock", action) != 0) && (strcmp("check", action) != 0)) usage_error = 1; if(touchlock_oneshot && (strcmp(action, "touch") != 0)) usage_error = 1; if(mail_cmd_p && !lockfile_add_dot_lock_to_name) usage_error = 1; if(usage_error) { usage(cmd_name, stderr); exit(1); } if(mail_cmd_p) { if(optind == argc) { uid_t user_id = geteuid(); struct passwd *user_info = getpwuid(user_id); if(user_info == NULL) { msg(stderr, "%s: fatal error, can't find info for user id %ud\n", cmd_name, user_id); exit(1); } if(asprintf(&target_file, "/var/spool/mail/%s", user_info->pw_name) == -1) { msg(stderr, "asprintf failed: line %d\n", __LINE__); exit(1); } } else { usage(cmd_name, stderr); exit(1); } } else { if((argc - optind) != 1) { usage(cmd_name, stderr); exit(1); } target_file = argv[optind]; } } static void handle_touchdeath(int sig) { exit(exit_status); } /* Must be called right after liblockfile call (b/c it calls strerror())*/ static char* get_status_code_string(int status) { switch (status) { case L_SUCCESS: return strdup("success"); break; case L_NAMELEN: return strdup("name too long"); break; case L_TMPLOCK: return strdup("cannot create temporary lockfile"); break; case L_TMPWRITE: return strdup("cannot write PID lockfile"); break; case L_MAXTRYS: return strdup("exceeded maximum number of lock attempts"); break; case L_ERROR: return strdup(strerror(errno));; break; default: return 0L; break; } } static int cmd_unlock(const char *lockfilename) { int rc = lockfile_remove(lockfilename); if((rc != L_SUCCESS) && (lockfile_verbosity > 0)) perror("lockfile removal failed"); return rc; } static int cmd_lock(const char *lockfilename, int retry_count) { int rc = lockfile_create(lockfilename, retry_count, (use_pid ? L_PPID : 0)); const char *rc_str = get_status_code_string(rc); if(rc != L_SUCCESS) msg(stderr, "lockfile creation failed: %s\n", rc_str); if(rc_str) free((void *) rc_str); return rc; } static int cmd_touch(const char *lockfilename, int touchlock_oneshot) { int rc = 0; signal(SIGTERM, handle_touchdeath); if(touchlock_oneshot) rc = lockfile_touch(lockfilename); else { while(1 && (rc == 0)) { rc = lockfile_touch(lockfilename); sleep(60); } } return rc; } static int cmd_check(const char *lockfilename) { int rc = lockfile_check(lockfilename, (use_pid ? L_PPID : 0)); return rc; } int main(int argc, char *argv[]) { const char *lock_name_pattern = "%s"; char *lockfilename = NULL; chk(L_SUCCESS == 0, "liblockfile's L_SUCCESS != 0 (aborting)"); parse_arguments(argc, argv); if(lockfile_add_dot_lock_to_name) lock_name_pattern = "%s.lock"; if(asprintf(&lockfilename, lock_name_pattern, target_file) == -1) { msg(stderr, "asprintf failed: line %d\n", __LINE__); exit(1); } if(strcmp(action, "unlock") == 0) exit_status = cmd_unlock(lockfilename); else if(strcmp(action, "lock") == 0) exit_status = cmd_lock(lockfilename, retry_count); else if(strcmp(action, "touch") == 0) exit_status = cmd_touch(lockfilename, touchlock_oneshot); else if(strcmp(action, "check") == 0) exit_status = cmd_check(lockfilename); if(lockfilename) free(lockfilename); return(exit_status); }