diff -Nru dictem-1.0.4/.git/COMMIT_EDITMSG dictem-1.0.4/.git/COMMIT_EDITMSG --- dictem-1.0.4/.git/COMMIT_EDITMSG 2014-03-06 12:42:15.000000000 +0000 +++ dictem-1.0.4/.git/COMMIT_EDITMSG 1970-01-01 00:00:00.000000000 +0000 @@ -1,34 +0,0 @@ -New policy update and control tuning (1.0.4-2) - -* Remove no more needed 'DM-Upload-Alllowed' and 'Uploaders' -* Update Standards-Version -* Adopt to the new policy: - - Conflicts of old emacsen-common, Depends of the new. - - add emacsen-compat - debhelper takes care of the rest of the job. - -Signed-off-by: Yauheni Kaliuta - -# Please enter the commit message for your changes. Lines starting -# with '#' will be ignored, and an empty message aborts the commit. -# On branch master -# Your branch and 'origin/master' have diverged, -# and have 23 and 20 different commits each, respectively. -# (use "git pull" to merge the remote branch into yours) -# -# Changes to be committed: -# modified: debian/changelog -# modified: debian/control -# modified: debian/dirs -# new file: debian/emacsen-compat -# -# Untracked files: -# build-stamp -# debian/dictem.debhelper.log -# debian/dictem.postinst.debhelper -# debian/dictem.preinst.debhelper -# debian/dictem.prerm.debhelper -# debian/dictem.substvars -# debian/dictem/ -# debian/files -# diff -Nru dictem-1.0.4/.git/FETCH_HEAD dictem-1.0.4/.git/FETCH_HEAD --- dictem-1.0.4/.git/FETCH_HEAD 2014-02-28 16:38:36.000000000 +0000 +++ dictem-1.0.4/.git/FETCH_HEAD 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -2381385898693aaac2fa681e31d74fd06a37bc42 not-for-merge branch 'branch-1.0' of git://github.com/cheusov/dictem -a2329acfac889680d69855c574cfa1f5f2c90b3a not-for-merge branch 'master' of git://github.com/cheusov/dictem diff -Nru dictem-1.0.4/.git/HEAD dictem-1.0.4/.git/HEAD --- dictem-1.0.4/.git/HEAD 2014-03-06 12:31:20.000000000 +0000 +++ dictem-1.0.4/.git/HEAD 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -ref: refs/heads/master diff -Nru dictem-1.0.4/.git/ORIG_HEAD dictem-1.0.4/.git/ORIG_HEAD --- dictem-1.0.4/.git/ORIG_HEAD 2014-03-06 12:33:49.000000000 +0000 +++ dictem-1.0.4/.git/ORIG_HEAD 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -404de70af613f397780b69cba2574c19444e45ad diff -Nru dictem-1.0.4/.git/config dictem-1.0.4/.git/config --- dictem-1.0.4/.git/config 2014-02-28 16:35:39.000000000 +0000 +++ dictem-1.0.4/.git/config 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -[core] - repositoryformatversion = 0 - filemode = true - bare = false - logallrefupdates = true -[remote "origin"] - fetch = +refs/heads/*:refs/remotes/origin/* - url = hosting:git/dictem -[branch "master"] - remote = origin - merge = refs/heads/master -[remote "github"] - url = git://github.com/cheusov/dictem.git - fetch = +refs/heads/*:refs/remotes/github/* -[remote "mygithub"] - url = git@github.com:ykaliuta/dictem.git - fetch = +refs/heads/*:refs/remotes/origin/* - diff -Nru dictem-1.0.4/.git/description dictem-1.0.4/.git/description --- dictem-1.0.4/.git/description 2009-08-14 22:05:37.000000000 +0000 +++ dictem-1.0.4/.git/description 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -Unnamed repository; edit this file 'description' to name the repository. diff -Nru dictem-1.0.4/.git/hooks/applypatch-msg.sample dictem-1.0.4/.git/hooks/applypatch-msg.sample --- dictem-1.0.4/.git/hooks/applypatch-msg.sample 2009-08-14 22:05:37.000000000 +0000 +++ dictem-1.0.4/.git/hooks/applypatch-msg.sample 1970-01-01 00:00:00.000000000 +0000 @@ -1,15 +0,0 @@ -#!/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 -test -x "$GIT_DIR/hooks/commit-msg" && - exec "$GIT_DIR/hooks/commit-msg" ${1+"$@"} -: diff -Nru dictem-1.0.4/.git/hooks/commit-msg.sample dictem-1.0.4/.git/hooks/commit-msg.sample --- dictem-1.0.4/.git/hooks/commit-msg.sample 2009-08-14 22:05:37.000000000 +0000 +++ dictem-1.0.4/.git/hooks/commit-msg.sample 1970-01-01 00:00:00.000000000 +0000 @@ -1,24 +0,0 @@ -#!/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 -} diff -Nru dictem-1.0.4/.git/hooks/post-commit.sample dictem-1.0.4/.git/hooks/post-commit.sample --- dictem-1.0.4/.git/hooks/post-commit.sample 2009-08-14 22:05:37.000000000 +0000 +++ dictem-1.0.4/.git/hooks/post-commit.sample 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -#!/bin/sh -# -# An example hook script that is called after a successful -# commit is made. -# -# To enable this hook, rename this file to "post-commit". - -: Nothing diff -Nru dictem-1.0.4/.git/hooks/post-receive.sample dictem-1.0.4/.git/hooks/post-receive.sample --- dictem-1.0.4/.git/hooks/post-receive.sample 2009-08-14 22:05:37.000000000 +0000 +++ dictem-1.0.4/.git/hooks/post-receive.sample 1970-01-01 00:00:00.000000000 +0000 @@ -1,15 +0,0 @@ -#!/bin/sh -# -# An example hook script for the "post-receive" event. -# -# The "post-receive" script is run after receive-pack has accepted a pack -# and the repository has been updated. It is passed arguments in through -# stdin in the form -# -# For example: -# aa453216d1b3e49e7f6f98441fa56946ddcd6a20 68f7abf4e6f922807889f52bc043ecd31b79f814 refs/heads/master -# -# see contrib/hooks/ for an sample, or uncomment the next line and -# rename the file to "post-receive". - -#. /usr/share/doc/git-core/contrib/hooks/post-receive-email diff -Nru dictem-1.0.4/.git/hooks/post-update.sample dictem-1.0.4/.git/hooks/post-update.sample --- dictem-1.0.4/.git/hooks/post-update.sample 2009-08-14 22:05:37.000000000 +0000 +++ dictem-1.0.4/.git/hooks/post-update.sample 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -#!/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 diff -Nru dictem-1.0.4/.git/hooks/pre-applypatch.sample dictem-1.0.4/.git/hooks/pre-applypatch.sample --- dictem-1.0.4/.git/hooks/pre-applypatch.sample 2009-08-14 22:05:37.000000000 +0000 +++ dictem-1.0.4/.git/hooks/pre-applypatch.sample 1970-01-01 00:00:00.000000000 +0000 @@ -1,14 +0,0 @@ -#!/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 -test -x "$GIT_DIR/hooks/pre-commit" && - exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"} -: diff -Nru dictem-1.0.4/.git/hooks/pre-commit.sample dictem-1.0.4/.git/hooks/pre-commit.sample --- dictem-1.0.4/.git/hooks/pre-commit.sample 2009-08-14 22:05:37.000000000 +0000 +++ dictem-1.0.4/.git/hooks/pre-commit.sample 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -#!/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 - -exec git diff-index --check --cached $against -- diff -Nru dictem-1.0.4/.git/hooks/pre-rebase.sample dictem-1.0.4/.git/hooks/pre-rebase.sample --- dictem-1.0.4/.git/hooks/pre-rebase.sample 2009-08-14 22:05:37.000000000 +0000 +++ dictem-1.0.4/.git/hooks/pre-rebase.sample 1970-01-01 00:00:00.000000000 +0000 @@ -1,169 +0,0 @@ -#!/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"` - 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 - -exit 0 - -################################################################ - -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". diff -Nru dictem-1.0.4/.git/hooks/prepare-commit-msg.sample dictem-1.0.4/.git/hooks/prepare-commit-msg.sample --- dictem-1.0.4/.git/hooks/prepare-commit-msg.sample 2009-08-14 22:05:37.000000000 +0000 +++ dictem-1.0.4/.git/hooks/prepare-commit-msg.sample 1970-01-01 00:00:00.000000000 +0000 @@ -1,36 +0,0 @@ -#!/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 comments out the -# "Conflicts:" part of a merge commit. -# -# 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. - -case "$2,$3" in - merge,) - perl -i.bak -ne 's/^/# /, s/^# #/#/ if /^Conflicts/ .. /#/; print' "$1" ;; - -# ,|template,) -# perl -i.bak -pe ' -# print "\n" . `git diff --cached --name-status -r` -# if /^#/ && $first++ == 0' "$1" ;; - - *) ;; -esac - -# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" diff -Nru dictem-1.0.4/.git/hooks/update.sample dictem-1.0.4/.git/hooks/update.sample --- dictem-1.0.4/.git/hooks/update.sample 2009-08-14 22:05:37.000000000 +0000 +++ dictem-1.0.4/.git/hooks/update.sample 1970-01-01 00:00:00.000000000 +0000 @@ -1,118 +0,0 @@ -#!/bin/sh -# -# An example hook script to blocks 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.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) - -# 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 - ;; - 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 Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/index and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/index differ diff -Nru dictem-1.0.4/.git/info/exclude dictem-1.0.4/.git/info/exclude --- dictem-1.0.4/.git/info/exclude 2009-08-14 22:05:37.000000000 +0000 +++ dictem-1.0.4/.git/info/exclude 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -# 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] -# *~ diff -Nru dictem-1.0.4/.git/logs/HEAD dictem-1.0.4/.git/logs/HEAD --- dictem-1.0.4/.git/logs/HEAD 2014-03-06 12:42:16.000000000 +0000 +++ dictem-1.0.4/.git/logs/HEAD 1970-01-01 00:00:00.000000000 +0000 @@ -1,62 +0,0 @@ -0000000000000000000000000000000000000000 7ea439aeef15e19bd5a1833e8ca92f51d3081fe8 Yauheni Kaliuta 1250287545 +0300 clone: from hosting:git/dictem -7ea439aeef15e19bd5a1833e8ca92f51d3081fe8 5010e2ae09c3d5da2731d4f389d53ee4570b8168 Yauheni Kaliuta 1250287839 +0300 pull ../dictem-1.0.2 master: Fast forward -5010e2ae09c3d5da2731d4f389d53ee4570b8168 759c34a543ba98473fa5052b0100290b9f62c459 Yauheni Kaliuta 1250421344 +0300 checkout: moving from master to packaging -759c34a543ba98473fa5052b0100290b9f62c459 358402b5cefa9cd423223d19663e75243d4e8098 Yauheni Kaliuta 1250421382 +0300 merge master: Merge made by recursive. -358402b5cefa9cd423223d19663e75243d4e8098 cfab1e46df4cb9969183adc26a195cdc6f77b7ce Yauheni Kaliuta 1250422782 +0300 commit: Install symlink in the flavour directory. Closes: #541287 -cfab1e46df4cb9969183adc26a195cdc6f77b7ce c021bfeab95febfb57e2064331628e4850e4b150 Yauheni Kaliuta 1250423418 +0300 commit: Fixed lintian warnings -c021bfeab95febfb57e2064331628e4850e4b150 1269cd639c1103a09b2257241b8a8034fdd08f5f Yauheni Kaliuta 1250544868 +0300 merge debian/1.0.2-1: Fast forward -1269cd639c1103a09b2257241b8a8034fdd08f5f 3ab444cc01019cb85704bfe143536bccfcd49d9b Yauheni Kaliuta 1250545072 +0300 commit: Standards-Version: 3.8.3 -3ab444cc01019cb85704bfe143536bccfcd49d9b 49202716e27cfe1821c36253d90bd9882d1f4401 Yauheni Kaliuta 1250545241 +0300 commit: Updated changelog, 1.0.2-1 -49202716e27cfe1821c36253d90bd9882d1f4401 5010e2ae09c3d5da2731d4f389d53ee4570b8168 Yauheni Kaliuta 1250545330 +0300 checkout: moving from packaging to master -5010e2ae09c3d5da2731d4f389d53ee4570b8168 49202716e27cfe1821c36253d90bd9882d1f4401 Yauheni Kaliuta 1250545336 +0300 packaging: updating HEAD -49202716e27cfe1821c36253d90bd9882d1f4401 8194c75d433557f54ab7ef61ec41819fb3cb9000 Yauheni Kaliuta 1343941451 +0300 checkout: moving from master to tmp -8194c75d433557f54ab7ef61ec41819fb3cb9000 dc1ca82ee48dac5dbd50a0f124dbc5946182a54e Yauheni Kaliuta 1343941460 +0300 merge upstream: Merge made by the 'ours' strategy. -dc1ca82ee48dac5dbd50a0f124dbc5946182a54e 83884a317f06864f656b1c9713ba824406ee7471 Yauheni Kaliuta 1343941572 +0300 commit (amend): Switch to upstream git -83884a317f06864f656b1c9713ba824406ee7471 5010e2ae09c3d5da2731d4f389d53ee4570b8168 Yauheni Kaliuta 1343941586 +0300 checkout: moving from tmp to upstream -5010e2ae09c3d5da2731d4f389d53ee4570b8168 83884a317f06864f656b1c9713ba824406ee7471 Yauheni Kaliuta 1343941592 +0300 merge tmp: Fast-forward -83884a317f06864f656b1c9713ba824406ee7471 49202716e27cfe1821c36253d90bd9882d1f4401 Yauheni Kaliuta 1343941718 +0300 checkout: moving from upstream to master -49202716e27cfe1821c36253d90bd9882d1f4401 717dd60d45438303f9bd93099ec0e0d372ac93ac Yauheni Kaliuta 1343941770 +0300 merge upstream-1.0.3: Merge made by the 'recursive' strategy. -717dd60d45438303f9bd93099ec0e0d372ac93ac 478deb251818022950beedbea61fd0fa99f6f583 Yauheni Kaliuta 1344291768 +0300 commit: updated control a bit -478deb251818022950beedbea61fd0fa99f6f583 7c49dcc50af1af7bcd02afe01eb675be960102c5 Yauheni Kaliuta 1344292140 +0300 commit: abstract server name -7c49dcc50af1af7bcd02afe01eb675be960102c5 c89ecb745178ae1c0a61389b07aa19fd9ae7e771 Yauheni Kaliuta 1344292341 +0300 commit: added emacsen-compat -c89ecb745178ae1c0a61389b07aa19fd9ae7e771 2f08283a2c881e63b81a2b5f397eca4fcbe303a4 Yauheni Kaliuta 1344292349 +0300 commit: updated changelog -2f08283a2c881e63b81a2b5f397eca4fcbe303a4 19d70363741e8858c3cf445e55ce5a48c3182d32 Yauheni Kaliuta 1344292442 +0300 commit: emacsen-compat fixes -19d70363741e8858c3cf445e55ce5a48c3182d32 49202716e27cfe1821c36253d90bd9882d1f4401 Yauheni Kaliuta 1344292477 +0300 checkout: moving from master to 49202716e27cfe1821c36253d90bd9882d1f4401 -49202716e27cfe1821c36253d90bd9882d1f4401 19d70363741e8858c3cf445e55ce5a48c3182d32 Yauheni Kaliuta 1344292488 +0300 checkout: moving from 49202716e27cfe1821c36253d90bd9882d1f4401 to master -19d70363741e8858c3cf445e55ce5a48c3182d32 6cc772c6975f074f3f84fa31e5d4afdc4dbea61f Yauheni Kaliuta 1344292525 +0300 commit: upstream removed ChangeLog -6cc772c6975f074f3f84fa31e5d4afdc4dbea61f d8a35aabfc1d4cbad153c12fd598a45cb3b431ce Yauheni Kaliuta 1344292700 +0300 commit: updated for debhelper 9 -d8a35aabfc1d4cbad153c12fd598a45cb3b431ce 717dd60d45438303f9bd93099ec0e0d372ac93ac Yauheni Kaliuta 1344292762 +0300 reset: moving to 717dd60d45438303f9bd93099ec0e0d372ac93ac -717dd60d45438303f9bd93099ec0e0d372ac93ac 459ea85efae86fddaed358d4055056f6b20a45a2 Yauheni Kaliuta 1344292819 +0300 cherry-pick: abstract server name -459ea85efae86fddaed358d4055056f6b20a45a2 347b90676fe9c0bab72e86878420ee5038f5a6b4 Yauheni Kaliuta 1344292827 +0300 cherry-pick: updated changelog -347b90676fe9c0bab72e86878420ee5038f5a6b4 30b343e7b12eb1649999edaa76be285e7518e1e8 Yauheni Kaliuta 1344292844 +0300 cherry-pick: upstream removed ChangeLog -30b343e7b12eb1649999edaa76be285e7518e1e8 b577dce8d4024d63b03adde5f11c9a667f9dab6d Yauheni Kaliuta 1344292909 +0300 commit: dh compat, emacs24, standards -b577dce8d4024d63b03adde5f11c9a667f9dab6d b1665d07d4043d395e5a6c971764797a2701388f Yauheni Kaliuta 1344293334 +0300 commit: add autoloads to startup -b1665d07d4043d395e5a6c971764797a2701388f f331cebdccd2902edf145d99efeb5c8ae86fb4a3 Yauheni Kaliuta 1344293647 +0300 commit: Update changelog -f331cebdccd2902edf145d99efeb5c8ae86fb4a3 2bfd539264543729260b798c37210864c52261ba Yauheni Kaliuta 1344293932 +0300 commit: update standards -2bfd539264543729260b798c37210864c52261ba 51d173d48d06baaf054db43ff5429f3260aea32c Yauheni Kaliuta 1344294165 +0300 commit: dh_prep -51d173d48d06baaf054db43ff5429f3260aea32c 8ba324a5b1c8f9a428a013330fb2d25941f056c1 Yauheni Kaliuta 1344294530 +0300 commit: added debian/source -8ba324a5b1c8f9a428a013330fb2d25941f056c1 d2315472e68d8e6157caa627c5a410ea4ad7aa6a Yauheni Kaliuta 1344294550 +0300 commit: added build-indep and build-arch targets -d2315472e68d8e6157caa627c5a410ea4ad7aa6a e8d403f8f0ea182383c53d112ed41b39f4253e8c Yauheni Kaliuta 1344294562 +0300 commit: added misc:depends -e8d403f8f0ea182383c53d112ed41b39f4253e8c ef437a9e4bbc1b21c4f2f8ae121dd1d212f1dce1 Yauheni Kaliuta 1344294677 +0300 commit: update changelog -ef437a9e4bbc1b21c4f2f8ae121dd1d212f1dce1 737fa4d6705e86254239f6bdffddfdbc631403f0 Yauheni Kaliuta 1344294757 +0300 commit: fix debian/source -737fa4d6705e86254239f6bdffddfdbc631403f0 70d7492ea45e1c06255651903cc760d09d8e6581 Yauheni Kaliuta 1344294821 +0300 commit: update changelog -70d7492ea45e1c06255651903cc760d09d8e6581 717dd60d45438303f9bd93099ec0e0d372ac93ac Yauheni Kaliuta 1344294887 +0300 reset: moving to 717dd60d45438303f9bd93099ec0e0d372ac93ac -717dd60d45438303f9bd93099ec0e0d372ac93ac 9d90f0cdadd907d7fd61fe6031be995cdca64b6c Yauheni Kaliuta 1344294900 +0300 commit: Update packaging for the new (1.0.3) upstream release. -9d90f0cdadd907d7fd61fe6031be995cdca64b6c 4883b4ffb9feed0d0c93abdc490416b8a1af791a Yauheni Kaliuta 1344295072 +0300 commit (amend): Update packaging for the new (1.0.3) upstream release. -4883b4ffb9feed0d0c93abdc490416b8a1af791a fa5e5b5c21006f5859874044f46dc890f48c3024 Yauheni Kaliuta 1344295128 +0300 commit (amend): Update packaging for the new (1.0.3) upstream release. -fa5e5b5c21006f5859874044f46dc890f48c3024 585325b53e730207db91eec66e3b6548b9519bb6 Yauheni Kaliuta 1344295234 +0300 commit (amend): Update packaging for the new (1.0.3) upstream release. -585325b53e730207db91eec66e3b6548b9519bb6 1e5002edf11a32c57342d82e3dfcf23aedc2c2ee Yauheni Kaliuta 1344295596 +0300 commit (amend): Update packaging for the new (1.0.3) upstream release. -1e5002edf11a32c57342d82e3dfcf23aedc2c2ee 4678bb160a6286cfe845abc0b621534f06bd002f Yauheni Kaliuta 1344295657 +0300 commit (amend): Update packaging for the new (1.0.3) upstream release. -4678bb160a6286cfe845abc0b621534f06bd002f fdd025db55adf7911151d88e76b7a7e872d64b57 Yauheni Kaliuta 1344346463 +0300 commit (amend): Update packaging for the new (1.0.3) upstream release. -fdd025db55adf7911151d88e76b7a7e872d64b57 ea883f205b5348bc00311774331b58d4bce2e71e Yauheni Kaliuta 1346087873 +0300 merge dictem-1.0.4: Merge made by the 'recursive' strategy. -ea883f205b5348bc00311774331b58d4bce2e71e 404de70af613f397780b69cba2574c19444e45ad Yauheni Kaliuta 1346088078 +0300 commit: Updated changelog for the new upstream release, 1.0.4 -404de70af613f397780b69cba2574c19444e45ad d8a35aabfc1d4cbad153c12fd598a45cb3b431ce Yauheni Kaliuta 1392206967 +0200 checkout: moving from master to new-policy -d8a35aabfc1d4cbad153c12fd598a45cb3b431ce 83c833e6f6261a55bdccfdcc9fea747cd0da8c34 Yauheni Kaliuta 1392207158 +0200 commit (merge): Merge branch 'master' into new-policy -83c833e6f6261a55bdccfdcc9fea747cd0da8c34 62b222d6b26abff2a7f2ebaff798e612336c2086 Yauheni Kaliuta 1392207221 +0200 commit: Merge branch 'master' into new-policy -62b222d6b26abff2a7f2ebaff798e612336c2086 0b272f6e4b1874d4e02df61fe4f453d981af1fdb Yauheni Kaliuta 1392207413 +0200 commit: Create compat dir, not compat/dictem -0b272f6e4b1874d4e02df61fe4f453d981af1fdb 6d04c8d32874b59fd31090a8644c09844138d3eb Yauheni Kaliuta 1392208330 +0200 commit: remove compat installation, debhelper should do that -6d04c8d32874b59fd31090a8644c09844138d3eb 38f14ce70e5046d42833b39cb9a4f30417fb9721 Yauheni Kaliuta 1392208408 +0200 commit: Remove unneeded DM-Upload-Allowed -38f14ce70e5046d42833b39cb9a4f30417fb9721 b10946672fbf89f463ae912d87ee07cb05a64f5e Yauheni Kaliuta 1394109042 +0200 commit: control: added Vcs-Git -b10946672fbf89f463ae912d87ee07cb05a64f5e 404de70af613f397780b69cba2574c19444e45ad Yauheni Kaliuta 1394109080 +0200 checkout: moving from new-policy to master -404de70af613f397780b69cba2574c19444e45ad 27e1c24aa2eda83dc00c42c51b75a03d1b5d11b8 Yauheni Kaliuta 1394109598 +0200 commit: New policy update and control tuning -27e1c24aa2eda83dc00c42c51b75a03d1b5d11b8 74fc7a7493f123b95253154ea70fad5cf71a47ac Yauheni Kaliuta 1394109723 +0200 commit (amend): New policy update and control tuning (1.0.4-2) diff -Nru dictem-1.0.4/.git/logs/refs/heads/master dictem-1.0.4/.git/logs/refs/heads/master --- dictem-1.0.4/.git/logs/refs/heads/master 2014-03-06 12:42:16.000000000 +0000 +++ dictem-1.0.4/.git/logs/refs/heads/master 1970-01-01 00:00:00.000000000 +0000 @@ -1,38 +0,0 @@ -0000000000000000000000000000000000000000 7ea439aeef15e19bd5a1833e8ca92f51d3081fe8 Yauheni Kaliuta 1250287545 +0300 clone: from hosting:git/dictem -7ea439aeef15e19bd5a1833e8ca92f51d3081fe8 5010e2ae09c3d5da2731d4f389d53ee4570b8168 Yauheni Kaliuta 1250287839 +0300 pull ../dictem-1.0.2 master: Fast forward -5010e2ae09c3d5da2731d4f389d53ee4570b8168 49202716e27cfe1821c36253d90bd9882d1f4401 Yauheni Kaliuta 1250545336 +0300 packaging: updating HEAD -49202716e27cfe1821c36253d90bd9882d1f4401 717dd60d45438303f9bd93099ec0e0d372ac93ac Yauheni Kaliuta 1343941770 +0300 merge upstream-1.0.3: Merge made by the 'recursive' strategy. -717dd60d45438303f9bd93099ec0e0d372ac93ac 478deb251818022950beedbea61fd0fa99f6f583 Yauheni Kaliuta 1344291768 +0300 commit: updated control a bit -478deb251818022950beedbea61fd0fa99f6f583 7c49dcc50af1af7bcd02afe01eb675be960102c5 Yauheni Kaliuta 1344292140 +0300 commit: abstract server name -7c49dcc50af1af7bcd02afe01eb675be960102c5 c89ecb745178ae1c0a61389b07aa19fd9ae7e771 Yauheni Kaliuta 1344292341 +0300 commit: added emacsen-compat -c89ecb745178ae1c0a61389b07aa19fd9ae7e771 2f08283a2c881e63b81a2b5f397eca4fcbe303a4 Yauheni Kaliuta 1344292349 +0300 commit: updated changelog -2f08283a2c881e63b81a2b5f397eca4fcbe303a4 19d70363741e8858c3cf445e55ce5a48c3182d32 Yauheni Kaliuta 1344292442 +0300 commit: emacsen-compat fixes -19d70363741e8858c3cf445e55ce5a48c3182d32 6cc772c6975f074f3f84fa31e5d4afdc4dbea61f Yauheni Kaliuta 1344292525 +0300 commit: upstream removed ChangeLog -6cc772c6975f074f3f84fa31e5d4afdc4dbea61f d8a35aabfc1d4cbad153c12fd598a45cb3b431ce Yauheni Kaliuta 1344292700 +0300 commit: updated for debhelper 9 -d8a35aabfc1d4cbad153c12fd598a45cb3b431ce 717dd60d45438303f9bd93099ec0e0d372ac93ac Yauheni Kaliuta 1344292762 +0300 reset: moving to 717dd60d45438303f9bd93099ec0e0d372ac93ac -717dd60d45438303f9bd93099ec0e0d372ac93ac 459ea85efae86fddaed358d4055056f6b20a45a2 Yauheni Kaliuta 1344292819 +0300 cherry-pick: abstract server name -459ea85efae86fddaed358d4055056f6b20a45a2 347b90676fe9c0bab72e86878420ee5038f5a6b4 Yauheni Kaliuta 1344292827 +0300 cherry-pick: updated changelog -347b90676fe9c0bab72e86878420ee5038f5a6b4 30b343e7b12eb1649999edaa76be285e7518e1e8 Yauheni Kaliuta 1344292844 +0300 cherry-pick: upstream removed ChangeLog -30b343e7b12eb1649999edaa76be285e7518e1e8 b577dce8d4024d63b03adde5f11c9a667f9dab6d Yauheni Kaliuta 1344292909 +0300 commit: dh compat, emacs24, standards -b577dce8d4024d63b03adde5f11c9a667f9dab6d b1665d07d4043d395e5a6c971764797a2701388f Yauheni Kaliuta 1344293334 +0300 commit: add autoloads to startup -b1665d07d4043d395e5a6c971764797a2701388f f331cebdccd2902edf145d99efeb5c8ae86fb4a3 Yauheni Kaliuta 1344293647 +0300 commit: Update changelog -f331cebdccd2902edf145d99efeb5c8ae86fb4a3 2bfd539264543729260b798c37210864c52261ba Yauheni Kaliuta 1344293932 +0300 commit: update standards -2bfd539264543729260b798c37210864c52261ba 51d173d48d06baaf054db43ff5429f3260aea32c Yauheni Kaliuta 1344294165 +0300 commit: dh_prep -51d173d48d06baaf054db43ff5429f3260aea32c 8ba324a5b1c8f9a428a013330fb2d25941f056c1 Yauheni Kaliuta 1344294530 +0300 commit: added debian/source -8ba324a5b1c8f9a428a013330fb2d25941f056c1 d2315472e68d8e6157caa627c5a410ea4ad7aa6a Yauheni Kaliuta 1344294550 +0300 commit: added build-indep and build-arch targets -d2315472e68d8e6157caa627c5a410ea4ad7aa6a e8d403f8f0ea182383c53d112ed41b39f4253e8c Yauheni Kaliuta 1344294562 +0300 commit: added misc:depends -e8d403f8f0ea182383c53d112ed41b39f4253e8c ef437a9e4bbc1b21c4f2f8ae121dd1d212f1dce1 Yauheni Kaliuta 1344294677 +0300 commit: update changelog -ef437a9e4bbc1b21c4f2f8ae121dd1d212f1dce1 737fa4d6705e86254239f6bdffddfdbc631403f0 Yauheni Kaliuta 1344294757 +0300 commit: fix debian/source -737fa4d6705e86254239f6bdffddfdbc631403f0 70d7492ea45e1c06255651903cc760d09d8e6581 Yauheni Kaliuta 1344294821 +0300 commit: update changelog -70d7492ea45e1c06255651903cc760d09d8e6581 717dd60d45438303f9bd93099ec0e0d372ac93ac Yauheni Kaliuta 1344294887 +0300 reset: moving to 717dd60d45438303f9bd93099ec0e0d372ac93ac -717dd60d45438303f9bd93099ec0e0d372ac93ac 9d90f0cdadd907d7fd61fe6031be995cdca64b6c Yauheni Kaliuta 1344294900 +0300 commit: Update packaging for the new (1.0.3) upstream release. -9d90f0cdadd907d7fd61fe6031be995cdca64b6c 4883b4ffb9feed0d0c93abdc490416b8a1af791a Yauheni Kaliuta 1344295072 +0300 commit (amend): Update packaging for the new (1.0.3) upstream release. -4883b4ffb9feed0d0c93abdc490416b8a1af791a fa5e5b5c21006f5859874044f46dc890f48c3024 Yauheni Kaliuta 1344295128 +0300 commit (amend): Update packaging for the new (1.0.3) upstream release. -fa5e5b5c21006f5859874044f46dc890f48c3024 585325b53e730207db91eec66e3b6548b9519bb6 Yauheni Kaliuta 1344295234 +0300 commit (amend): Update packaging for the new (1.0.3) upstream release. -585325b53e730207db91eec66e3b6548b9519bb6 1e5002edf11a32c57342d82e3dfcf23aedc2c2ee Yauheni Kaliuta 1344295596 +0300 commit (amend): Update packaging for the new (1.0.3) upstream release. -1e5002edf11a32c57342d82e3dfcf23aedc2c2ee 4678bb160a6286cfe845abc0b621534f06bd002f Yauheni Kaliuta 1344295657 +0300 commit (amend): Update packaging for the new (1.0.3) upstream release. -4678bb160a6286cfe845abc0b621534f06bd002f fdd025db55adf7911151d88e76b7a7e872d64b57 Yauheni Kaliuta 1344346463 +0300 commit (amend): Update packaging for the new (1.0.3) upstream release. -fdd025db55adf7911151d88e76b7a7e872d64b57 ea883f205b5348bc00311774331b58d4bce2e71e Yauheni Kaliuta 1346087873 +0300 merge dictem-1.0.4: Merge made by the 'recursive' strategy. -ea883f205b5348bc00311774331b58d4bce2e71e 404de70af613f397780b69cba2574c19444e45ad Yauheni Kaliuta 1346088078 +0300 commit: Updated changelog for the new upstream release, 1.0.4 -404de70af613f397780b69cba2574c19444e45ad 27e1c24aa2eda83dc00c42c51b75a03d1b5d11b8 Yauheni Kaliuta 1394109598 +0200 commit: New policy update and control tuning -27e1c24aa2eda83dc00c42c51b75a03d1b5d11b8 74fc7a7493f123b95253154ea70fad5cf71a47ac Yauheni Kaliuta 1394109723 +0200 commit (amend): New policy update and control tuning (1.0.4-2) diff -Nru dictem-1.0.4/.git/logs/refs/heads/new-policy dictem-1.0.4/.git/logs/refs/heads/new-policy --- dictem-1.0.4/.git/logs/refs/heads/new-policy 2014-03-06 12:30:42.000000000 +0000 +++ dictem-1.0.4/.git/logs/refs/heads/new-policy 1970-01-01 00:00:00.000000000 +0000 @@ -1,7 +0,0 @@ -0000000000000000000000000000000000000000 d8a35aabfc1d4cbad153c12fd598a45cb3b431ce Yauheni Kaliuta 1344292746 +0300 branch: Created from master -d8a35aabfc1d4cbad153c12fd598a45cb3b431ce 83c833e6f6261a55bdccfdcc9fea747cd0da8c34 Yauheni Kaliuta 1392207158 +0200 commit (merge): Merge branch 'master' into new-policy -83c833e6f6261a55bdccfdcc9fea747cd0da8c34 62b222d6b26abff2a7f2ebaff798e612336c2086 Yauheni Kaliuta 1392207221 +0200 commit: Merge branch 'master' into new-policy -62b222d6b26abff2a7f2ebaff798e612336c2086 0b272f6e4b1874d4e02df61fe4f453d981af1fdb Yauheni Kaliuta 1392207413 +0200 commit: Create compat dir, not compat/dictem -0b272f6e4b1874d4e02df61fe4f453d981af1fdb 6d04c8d32874b59fd31090a8644c09844138d3eb Yauheni Kaliuta 1392208330 +0200 commit: remove compat installation, debhelper should do that -6d04c8d32874b59fd31090a8644c09844138d3eb 38f14ce70e5046d42833b39cb9a4f30417fb9721 Yauheni Kaliuta 1392208408 +0200 commit: Remove unneeded DM-Upload-Allowed -38f14ce70e5046d42833b39cb9a4f30417fb9721 b10946672fbf89f463ae912d87ee07cb05a64f5e Yauheni Kaliuta 1394109042 +0200 commit: control: added Vcs-Git diff -Nru dictem-1.0.4/.git/logs/refs/heads/tmp dictem-1.0.4/.git/logs/refs/heads/tmp --- dictem-1.0.4/.git/logs/refs/heads/tmp 2012-08-06 23:14:26.000000000 +0000 +++ dictem-1.0.4/.git/logs/refs/heads/tmp 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -0000000000000000000000000000000000000000 70d7492ea45e1c06255651903cc760d09d8e6581 Yauheni Kaliuta 1344294866 +0300 branch: Created from master diff -Nru dictem-1.0.4/.git/logs/refs/heads/upstream dictem-1.0.4/.git/logs/refs/heads/upstream --- dictem-1.0.4/.git/logs/refs/heads/upstream 2012-08-02 21:06:32.000000000 +0000 +++ dictem-1.0.4/.git/logs/refs/heads/upstream 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -0000000000000000000000000000000000000000 5010e2ae09c3d5da2731d4f389d53ee4570b8168 Yauheni Kaliuta 1250544930 +0300 branch: Created from master -5010e2ae09c3d5da2731d4f389d53ee4570b8168 83884a317f06864f656b1c9713ba824406ee7471 Yauheni Kaliuta 1343941592 +0300 merge tmp: Fast-forward diff -Nru dictem-1.0.4/.git/logs/refs/heads/upstream-1.0.3 dictem-1.0.4/.git/logs/refs/heads/upstream-1.0.3 --- dictem-1.0.4/.git/logs/refs/heads/upstream-1.0.3 2012-08-02 21:09:12.000000000 +0000 +++ dictem-1.0.4/.git/logs/refs/heads/upstream-1.0.3 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -0000000000000000000000000000000000000000 83884a317f06864f656b1c9713ba824406ee7471 Yauheni Kaliuta 1343941752 +0300 branch: Created from upstream diff -Nru dictem-1.0.4/.git/logs/refs/remotes/github/branch-1.0 dictem-1.0.4/.git/logs/refs/remotes/github/branch-1.0 --- dictem-1.0.4/.git/logs/refs/remotes/github/branch-1.0 2012-08-27 17:17:44.000000000 +0000 +++ dictem-1.0.4/.git/logs/refs/remotes/github/branch-1.0 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -0000000000000000000000000000000000000000 8194c75d433557f54ab7ef61ec41819fb3cb9000 Yauheni Kaliuta 1343941295 +0300 fetch github: storing head -8194c75d433557f54ab7ef61ec41819fb3cb9000 2381385898693aaac2fa681e31d74fd06a37bc42 Yauheni Kaliuta 1346087864 +0300 fetch github: fast-forward diff -Nru dictem-1.0.4/.git/logs/refs/remotes/github/master dictem-1.0.4/.git/logs/refs/remotes/github/master --- dictem-1.0.4/.git/logs/refs/remotes/github/master 2012-08-27 17:17:44.000000000 +0000 +++ dictem-1.0.4/.git/logs/refs/remotes/github/master 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -0000000000000000000000000000000000000000 2ae830c4a3136e7074916320e298ad2511329cf0 Yauheni Kaliuta 1343941295 +0300 fetch github: storing head -2ae830c4a3136e7074916320e298ad2511329cf0 a2329acfac889680d69855c574cfa1f5f2c90b3a Yauheni Kaliuta 1346087864 +0300 fetch github: fast-forward diff -Nru dictem-1.0.4/.git/logs/refs/remotes/origin/HEAD dictem-1.0.4/.git/logs/refs/remotes/origin/HEAD --- dictem-1.0.4/.git/logs/refs/remotes/origin/HEAD 2009-08-14 22:05:45.000000000 +0000 +++ dictem-1.0.4/.git/logs/refs/remotes/origin/HEAD 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -0000000000000000000000000000000000000000 7ea439aeef15e19bd5a1833e8ca92f51d3081fe8 Yauheni Kaliuta 1250287545 +0300 clone: from hosting:git/dictem diff -Nru dictem-1.0.4/.git/logs/refs/remotes/origin/branch-1.0 dictem-1.0.4/.git/logs/refs/remotes/origin/branch-1.0 --- dictem-1.0.4/.git/logs/refs/remotes/origin/branch-1.0 2014-02-28 16:35:47.000000000 +0000 +++ dictem-1.0.4/.git/logs/refs/remotes/origin/branch-1.0 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -0000000000000000000000000000000000000000 2381385898693aaac2fa681e31d74fd06a37bc42 Yauheni Kaliuta 1393605347 +0200 fetch mygithub: storing head diff -Nru dictem-1.0.4/.git/logs/refs/remotes/origin/master dictem-1.0.4/.git/logs/refs/remotes/origin/master --- dictem-1.0.4/.git/logs/refs/remotes/origin/master 2014-02-28 16:35:47.000000000 +0000 +++ dictem-1.0.4/.git/logs/refs/remotes/origin/master 1970-01-01 00:00:00.000000000 +0000 @@ -1,5 +0,0 @@ -7ea439aeef15e19bd5a1833e8ca92f51d3081fe8 5010e2ae09c3d5da2731d4f389d53ee4570b8168 Yauheni Kaliuta 1250287849 +0300 update by push -5010e2ae09c3d5da2731d4f389d53ee4570b8168 49202716e27cfe1821c36253d90bd9882d1f4401 Yauheni Kaliuta 1250545350 +0300 update by push -49202716e27cfe1821c36253d90bd9882d1f4401 fdd025db55adf7911151d88e76b7a7e872d64b57 Yauheni Kaliuta 1344593393 +0300 update by push -fdd025db55adf7911151d88e76b7a7e872d64b57 404de70af613f397780b69cba2574c19444e45ad Yauheni Kaliuta 1346088234 +0300 update by push -404de70af613f397780b69cba2574c19444e45ad a2329acfac889680d69855c574cfa1f5f2c90b3a Yauheni Kaliuta 1393605347 +0200 fetch mygithub: forced-update diff -Nru dictem-1.0.4/.git/logs/refs/remotes/origin/new-policy dictem-1.0.4/.git/logs/refs/remotes/origin/new-policy --- dictem-1.0.4/.git/logs/refs/remotes/origin/new-policy 2014-02-28 16:37:07.000000000 +0000 +++ dictem-1.0.4/.git/logs/refs/remotes/origin/new-policy 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -0000000000000000000000000000000000000000 38f14ce70e5046d42833b39cb9a4f30417fb9721 Yauheni Kaliuta 1393605427 +0200 update by push diff -Nru dictem-1.0.4/.git/logs/refs/remotes/origin/packaging dictem-1.0.4/.git/logs/refs/remotes/origin/packaging --- dictem-1.0.4/.git/logs/refs/remotes/origin/packaging 2014-02-28 16:36:52.000000000 +0000 +++ dictem-1.0.4/.git/logs/refs/remotes/origin/packaging 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -0000000000000000000000000000000000000000 404de70af613f397780b69cba2574c19444e45ad Yauheni Kaliuta 1393605412 +0200 update by push diff -Nru dictem-1.0.4/.git/logs/refs/remotes/origin/upstream dictem-1.0.4/.git/logs/refs/remotes/origin/upstream --- dictem-1.0.4/.git/logs/refs/remotes/origin/upstream 2012-08-10 10:09:53.000000000 +0000 +++ dictem-1.0.4/.git/logs/refs/remotes/origin/upstream 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -0000000000000000000000000000000000000000 5010e2ae09c3d5da2731d4f389d53ee4570b8168 Yauheni Kaliuta 1250544939 +0300 update by push -5010e2ae09c3d5da2731d4f389d53ee4570b8168 83884a317f06864f656b1c9713ba824406ee7471 Yauheni Kaliuta 1344593393 +0300 update by push diff -Nru dictem-1.0.4/.git/objects/01/15b6d4ca3da7a779f4440cf9a0d2f013374cf1 dictem-1.0.4/.git/objects/01/15b6d4ca3da7a779f4440cf9a0d2f013374cf1 --- dictem-1.0.4/.git/objects/01/15b6d4ca3da7a779f4440cf9a0d2f013374cf1 2012-08-06 22:29:00.000000000 +0000 +++ dictem-1.0.4/.git/objects/01/15b6d4ca3da7a779f4440cf9a0d2f013374cf1 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -xu10 E{( A'qENZ'R,ݤz;Bl$]FL6Wd!) (8b=s '](5`3VX_R%jqP?xSJЁ0a!k~Kz \ No newline at end of file Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/01/ca0f8cecff6c2cb06a4ff2c2356a4e9dfbe117 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/01/ca0f8cecff6c2cb06a4ff2c2356a4e9dfbe117 differ diff -Nru dictem-1.0.4/.git/objects/05/fc564c84d3556bb1950e89c8b2b3eb68ed014a dictem-1.0.4/.git/objects/05/fc564c84d3556bb1950e89c8b2b3eb68ed014a --- dictem-1.0.4/.git/objects/05/fc564c84d3556bb1950e89c8b2b3eb68ed014a 2012-08-06 22:34:02.000000000 +0000 +++ dictem-1.0.4/.git/objects/05/fc564c84d3556bb1950e89c8b2b3eb68ed014a 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -x5 0@QN G8__=/6]>O H.B:J6D]70; -WrX Zȣ2J.7NʹP)y_M \ No newline at end of file Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/1e/5002edf11a32c57342d82e3dfcf23aedc2c2ee and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/1e/5002edf11a32c57342d82e3dfcf23aedc2c2ee differ diff -Nru dictem-1.0.4/.git/objects/22/0260d6c8d69db9567469b4ee8578ca85619cc2 dictem-1.0.4/.git/objects/22/0260d6c8d69db9567469b4ee8578ca85619cc2 --- dictem-1.0.4/.git/objects/22/0260d6c8d69db9567469b4ee8578ca85619cc2 2012-08-06 23:26:36.000000000 +0000 +++ dictem-1.0.4/.git/objects/22/0260d6c8d69db9567469b4ee8578ca85619cc2 1970-01-01 00:00:00.000000000 +0000 @@ -1,4 +0,0 @@ -xuRMK1#A *T?^T* -Pɴ%IAlVEOyyVVpuqv4:.wޕ4f[&# -m*v&.b}~}9'I%>9)D -胐xXM8)s;+d,;k)!i6zO,MCQ': LAX$E!@lLb|r\+L)$S̾fKԌˀTIv\X1Diדa3lPM!u&A4tV |\˯LES Aí ΪTjqw~[篏c\ʞ׾hdx~[;n#t;#orT \ No newline at end of file diff -Nru dictem-1.0.4/.git/objects/22/0d3d91ec849d228a5d7e4c040fddfd99e88bb0 dictem-1.0.4/.git/objects/22/0d3d91ec849d228a5d7e4c040fddfd99e88bb0 --- dictem-1.0.4/.git/objects/22/0d3d91ec849d228a5d7e4c040fddfd99e88bb0 2012-08-06 22:34:02.000000000 +0000 +++ dictem-1.0.4/.git/objects/22/0d3d91ec849d228a5d7e4c040fddfd99e88bb0 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -x+)JMU01d040031QHHKOOgit슫E*Lu -(? !77oX*<"(?Wу7?.U\IAeQfzF WZ*2e"U)Y(%OOS:Ol:-L>?01y'6e;Ʒl˗&&00nrv/.LN"OYMiQjn~Y*zsRDJbSuXq M%Ȣh77ZHM]λT4'a -kyE'vJ \ No newline at end of file Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/22/621236bf25ae29c6661ee1c6e3419fcab858ca and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/22/621236bf25ae29c6661ee1c6e3419fcab858ca differ diff -Nru dictem-1.0.4/.git/objects/23/81385898693aaac2fa681e31d74fd06a37bc42 dictem-1.0.4/.git/objects/23/81385898693aaac2fa681e31d74fd06a37bc42 --- dictem-1.0.4/.git/objects/23/81385898693aaac2fa681e31d74fd06a37bc42 2012-08-27 17:17:44.000000000 +0000 +++ dictem-1.0.4/.git/objects/23/81385898693aaac2fa681e31d74fd06a37bc42 1970-01-01 00:00:00.000000000 +0000 @@ -1,3 +0,0 @@ -xN ])NFmB1Op -hm4p,'3ߌ2Hr$%ЃZNL!lkаnꞳZ2+‑|TU=GfhuÛNQWk,S1IC5O!LoN8њLQywkzԭ+V3V{],^3A+VGp~nK8bHKȀa<0v{0tv3-et.Sx8`_?}xƠ7? -^&JDC:¹jP*> \ No newline at end of file Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/24/7b0440319197b5af4a4c2010f4a4113f51ae4e and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/24/7b0440319197b5af4a4c2010f4a4113f51ae4e differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/26/a996d3c2f275696bbe22a19fbc7b5f44d71761 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/26/a996d3c2f275696bbe22a19fbc7b5f44d71761 differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/27/e1c24aa2eda83dc00c42c51b75a03d1b5d11b8 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/27/e1c24aa2eda83dc00c42c51b75a03d1b5d11b8 differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/2b/1fe2261f077cbb24234dcce3e32b364874a15f and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/2b/1fe2261f077cbb24234dcce3e32b364874a15f differ diff -Nru dictem-1.0.4/.git/objects/2b/fd539264543729260b798c37210864c52261ba dictem-1.0.4/.git/objects/2b/fd539264543729260b798c37210864c52261ba --- dictem-1.0.4/.git/objects/2b/fd539264543729260b798c37210864c52261ba 2012-08-06 22:58:52.000000000 +0000 +++ dictem-1.0.4/.git/objects/2b/fd539264543729260b798c37210864c52261ba 1970-01-01 00:00:00.000000000 +0000 @@ -1,4 +0,0 @@ -x;0}푢؛WBPk(q -nO$n@4̓9籀C:UDbeEizP|I«N Q$:d6iЊg] - -F{ S~<+s5ֵ9q/Vx|0NW \ No newline at end of file Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/2c/97c4ae7423ed82b49ddd0e840df4139433706d and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/2c/97c4ae7423ed82b49ddd0e840df4139433706d differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/2f/08283a2c881e63b81a2b5f397eca4fcbe303a4 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/2f/08283a2c881e63b81a2b5f397eca4fcbe303a4 differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/2f/0963c1ef830e8340d3362b588cf917767a246b and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/2f/0963c1ef830e8340d3362b588cf917767a246b differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/2f/b2fe57ce430e8c531817d0e9ba0c7c707560bc and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/2f/b2fe57ce430e8c531817d0e9ba0c7c707560bc differ diff -Nru dictem-1.0.4/.git/objects/30/332d3b83242acc9c9e938e973b8a3ee3d2ac6a dictem-1.0.4/.git/objects/30/332d3b83242acc9c9e938e973b8a3ee3d2ac6a --- dictem-1.0.4/.git/objects/30/332d3b83242acc9c9e938e973b8a3ee3d2ac6a 2012-08-06 23:02:45.000000000 +0000 +++ dictem-1.0.4/.git/objects/30/332d3b83242acc9c9e938e973b8a3ee3d2ac6a 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -x+)JMU06d040031Qp  -fr:slY~퍔? ϝaי'E~H2ÄyP%~ .{tS䃓eS͠A. =o7_=-On`YnP!. knodbx덼b_M @!%5)31ajw|~Ds]?Io'C HL.IM,.Ka{vkn.5w8¸'Ҝ̼|ݔzӟ!~ʪ(A6|c(NS<{\S~ \ No newline at end of file Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/30/b343e7b12eb1649999edaa76be285e7518e1e8 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/30/b343e7b12eb1649999edaa76be285e7518e1e8 differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/34/7b90676fe9c0bab72e86878420ee5038f5a6b4 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/34/7b90676fe9c0bab72e86878420ee5038f5a6b4 differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/34/cb15c161a8508bff63bca0c25c15029e9e7229 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/34/cb15c161a8508bff63bca0c25c15029e9e7229 differ diff -Nru dictem-1.0.4/.git/objects/35/8402b5cefa9cd423223d19663e75243d4e8098 dictem-1.0.4/.git/objects/35/8402b5cefa9cd423223d19663e75243d4e8098 --- dictem-1.0.4/.git/objects/35/8402b5cefa9cd423223d19663e75243d4e8098 2009-08-16 11:16:22.000000000 +0000 +++ dictem-1.0.4/.git/objects/35/8402b5cefa9cd423223d19663e75243d4e8098 1970-01-01 00:00:00.000000000 +0000 @@ -1,3 +0,0 @@ -x=j0SmXF#~ !H9Fص8rrt۲SU*žLZhӐB(qJvuΎ -#ӈzʎ_@IY")ژ -[Uh|ç ގ.}ʷivmyCh=ou7`}RwY EN7xHi^ \ No newline at end of file Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/35/f92d54ea0e3b6bfdf0d2e7728a37d9a97acd6b and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/35/f92d54ea0e3b6bfdf0d2e7728a37d9a97acd6b differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/36/2c2e7d0fdda6e3e5203ce383456ae603acf9f4 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/36/2c2e7d0fdda6e3e5203ce383456ae603acf9f4 differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/36/3a9552ac00a94d189dbc7ac7015e0fe4be3112 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/36/3a9552ac00a94d189dbc7ac7015e0fe4be3112 differ diff -Nru dictem-1.0.4/.git/objects/37/82400eb0cb97e4c6062d2ed69ee94e20726e50 dictem-1.0.4/.git/objects/37/82400eb0cb97e4c6062d2ed69ee94e20726e50 --- dictem-1.0.4/.git/objects/37/82400eb0cb97e4c6062d2ed69ee94e20726e50 2012-08-06 22:38:20.000000000 +0000 +++ dictem-1.0.4/.git/objects/37/82400eb0cb97e4c6062d2ed69ee94e20726e50 1970-01-01 00:00:00.000000000 +0000 @@ -1,4 +0,0 @@ -x+)JMU01d040031QHHKOOgit슫E*Lu -(? dE[/* m.gaN{_[,t(,鷽U%J -*23JR)mrNɂPE)E |Z.foybo` E<ٶ)1}me{??\$571X/5QtەS˗W~qasPe`5y:t2ֹ兡+.Ia,dAÝl'aryhJRsRs>('RzbގKh*F0F~Ѫ@RGor@榦 -E9 gLl^|yq`eY!8 \ No newline at end of file Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/38/0572110b4985c03427931961d80fd519e8ffb3 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/38/0572110b4985c03427931961d80fd519e8ffb3 differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/38/adbdb70f8519003fb435a53c33b5d86ecd16f5 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/38/adbdb70f8519003fb435a53c33b5d86ecd16f5 differ diff -Nru dictem-1.0.4/.git/objects/38/f14ce70e5046d42833b39cb9a4f30417fb9721 dictem-1.0.4/.git/objects/38/f14ce70e5046d42833b39cb9a4f30417fb9721 --- dictem-1.0.4/.git/objects/38/f14ce70e5046d42833b39cb9a4f30417fb9721 2014-02-12 12:33:28.000000000 +0000 +++ dictem-1.0.4/.git/objects/38/f14ce70e5046d42833b39cb9a4f30417fb9721 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -xNJ1Ln" -J/]L6eV||o?_ axh*P9AT~qrb w"n%KARH!,rR/Y] oRW G~g>:0#:D~̻zSؖEUTʲ{͹;P \ No newline at end of file Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/39/5627c7f454d2636c488599ced98c33ff021c2f and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/39/5627c7f454d2636c488599ced98c33ff021c2f differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/3a/b444cc01019cb85704bfe143536bccfcd49d9b and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/3a/b444cc01019cb85704bfe143536bccfcd49d9b differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/3b/0b276c6403353e8cc2b3a61c60d827f80675b3 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/3b/0b276c6403353e8cc2b3a61c60d827f80675b3 differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/3d/6f1f916735cbf3be1dbcfe611b8681f21c1d32 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/3d/6f1f916735cbf3be1dbcfe611b8681f21c1d32 differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/3d/da58bd240339e6be4fd61ee3b3f1c0612d8ef6 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/3d/da58bd240339e6be4fd61ee3b3f1c0612d8ef6 differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/3e/76850c8f1fd85e5f1c8bb37efafea0d89f8891 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/3e/76850c8f1fd85e5f1c8bb37efafea0d89f8891 differ diff -Nru dictem-1.0.4/.git/objects/3f/6da7452f6c2e4027a80adbfc4607905f3d5e99 dictem-1.0.4/.git/objects/3f/6da7452f6c2e4027a80adbfc4607905f3d5e99 --- dictem-1.0.4/.git/objects/3f/6da7452f6c2e4027a80adbfc4607905f3d5e99 2012-08-06 23:13:41.000000000 +0000 +++ dictem-1.0.4/.git/objects/3f/6da7452f6c2e4027a80adbfc4607905f3d5e99 1970-01-01 00:00:00.000000000 +0000 @@ -1,3 +0,0 @@ -x+)JMU011`040031QHHKOOgX6+%_BKquM)-H,a8J_q"(?aRL?/+}Px] -ʢ2;rT8eDl\S`E!TQJfQ1CF[,-G5+7 >;:w -[z%L>?01y'6e;Ʒl˗&&00nrv/.sbY¾'%T xK \ No newline at end of file Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/57/3541ac9702dd3969c9bc859d2b91ec1f7e6e56 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/57/3541ac9702dd3969c9bc859d2b91ec1f7e6e56 differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/58/5325b53e730207db91eec66e3b6548b9519bb6 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/58/5325b53e730207db91eec66e3b6548b9519bb6 differ diff -Nru dictem-1.0.4/.git/objects/58/c879eb7d0590d0efc06d5bd8ebdf2a6e0f18e7 dictem-1.0.4/.git/objects/58/c879eb7d0590d0efc06d5bd8ebdf2a6e0f18e7 --- dictem-1.0.4/.git/objects/58/c879eb7d0590d0efc06d5bd8ebdf2a6e0f18e7 2009-08-14 22:10:39.000000000 +0000 +++ dictem-1.0.4/.git/objects/58/c879eb7d0590d0efc06d5bd8ebdf2a6e0f18e7 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -xA -@ E])J63-ܻ̤;)-xwxsJCq3-Q &jVU#lk瞲ؔ[_i"62 z_q_:Y}^*ݦ2k8|onI9$FjBJc6ef[.NJ,r_`L \ No newline at end of file Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/5b/35060ac569c9a0852ba7abb125b08c2ba753b3 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/5b/35060ac569c9a0852ba7abb125b08c2ba753b3 differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/5d/6a077fb44b41dbdc40d9d5e012ae25742ce657 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/5d/6a077fb44b41dbdc40d9d5e012ae25742ce657 differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/5e/35b8d4a2fb8be0afabfa0ac7992eec20f2d42d and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/5e/35b8d4a2fb8be0afabfa0ac7992eec20f2d42d differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/5e/4eaae851443d745bab89adbae96d8ed3d865dd and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/5e/4eaae851443d745bab89adbae96d8ed3d865dd differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/5f/c074ae36873250ca7d96f9dc7c341763464c05 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/5f/c074ae36873250ca7d96f9dc7c341763464c05 differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/5f/eafaa721277c8c3fa074068902583c1b737270 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/5f/eafaa721277c8c3fa074068902583c1b737270 differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/61/169d0fd64f46b81bcca811d89a1ad03aca09ec and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/61/169d0fd64f46b81bcca811d89a1ad03aca09ec differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/62/b222d6b26abff2a7f2ebaff798e612336c2086 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/62/b222d6b26abff2a7f2ebaff798e612336c2086 differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/63/892d449cf32951c50e975276d599b11bc79d3a and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/63/892d449cf32951c50e975276d599b11bc79d3a differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/63/ce86c6251dc00915896739089b6f709e41bffa and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/63/ce86c6251dc00915896739089b6f709e41bffa differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/64/d245f0392787a7d17eaefed6c1ae858e60b61e and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/64/d245f0392787a7d17eaefed6c1ae858e60b61e differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/65/2a8ec0ba80aebfb52e2cb2cfe5085b91b774c8 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/65/2a8ec0ba80aebfb52e2cb2cfe5085b91b774c8 differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/65/5da2e249c84a87bdf90b03e066bd91f9ec1572 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/65/5da2e249c84a87bdf90b03e066bd91f9ec1572 differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/69/c5d49a5364ac00582ae4ab09ecd3cc7254c5b5 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/69/c5d49a5364ac00582ae4ab09ecd3cc7254c5b5 differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/6c/3925b4d242be0243d7edcb856ab844132ade6b and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/6c/3925b4d242be0243d7edcb856ab844132ade6b differ diff -Nru dictem-1.0.4/.git/objects/6c/c772c6975f074f3f84fa31e5d4afdc4dbea61f dictem-1.0.4/.git/objects/6c/c772c6975f074f3f84fa31e5d4afdc4dbea61f --- dictem-1.0.4/.git/objects/6c/c772c6975f074f3f84fa31e5d4afdc4dbea61f 2012-08-06 22:35:25.000000000 +0000 +++ dictem-1.0.4/.git/objects/6c/c772c6975f074f3f84fa31e5d4afdc4dbea61f 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -xM -0]o/4^kMSj*x{7̄T@((h99: vGCW^(RFZՒsz4iHu"Jp/cH7 >'/CinBNghR -4մ,wW= 6JM#.P \ No newline at end of file diff -Nru dictem-1.0.4/.git/objects/6d/04c8d32874b59fd31090a8644c09844138d3eb dictem-1.0.4/.git/objects/6d/04c8d32874b59fd31090a8644c09844138d3eb --- dictem-1.0.4/.git/objects/6d/04c8d32874b59fd31090a8644c09844138d3eb 2014-02-12 12:32:10.000000000 +0000 +++ dictem-1.0.4/.git/objects/6d/04c8d32874b59fd31090a8644c09844138d3eb 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -xj Юٷ<5( 3cj yBAw p{a~!RZy^]NJm!4N6%#R&_;7ODdJ -O)< oޱS?ٱ:+iVij}|3\Ўu{Rĩp/Qh vZ \ No newline at end of file Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/6d/88c27b7b7a9b82c2464acdde7b71d808506e80 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/6d/88c27b7b7a9b82c2464acdde7b71d808506e80 differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/70/b3dab301f0a38fb1dce36ae9a1661ea793ac92 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/70/b3dab301f0a38fb1dce36ae9a1661ea793ac92 differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/70/d7492ea45e1c06255651903cc760d09d8e6581 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/70/d7492ea45e1c06255651903cc760d09d8e6581 differ diff -Nru dictem-1.0.4/.git/objects/71/7dd60d45438303f9bd93099ec0e0d372ac93ac dictem-1.0.4/.git/objects/71/7dd60d45438303f9bd93099ec0e0d372ac93ac --- dictem-1.0.4/.git/objects/71/7dd60d45438303f9bd93099ec0e0d372ac93ac 2012-08-02 21:09:37.000000000 +0000 +++ dictem-1.0.4/.git/objects/71/7dd60d45438303f9bd93099ec0e0d372ac93ac 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -xMJ1]BlR\VttЦހxwǃ}] "5ٳ`,",ŊB9)&·l]dbBi`!oMf-)F˄6|ƒRhE ~>gƷ쬟z]yMe__4d1Џ0\hVw9[{x} &{\ \ No newline at end of file Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/73/13f5741e8057a54501391184d0a9b530532096 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/73/13f5741e8057a54501391184d0a9b530532096 differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/73/740e5d9fb440dab65fdb5db42300740f406dfa and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/73/740e5d9fb440dab65fdb5db42300740f406dfa differ diff -Nru dictem-1.0.4/.git/objects/73/7fa4d6705e86254239f6bdffddfdbc631403f0 dictem-1.0.4/.git/objects/73/7fa4d6705e86254239f6bdffddfdbc631403f0 --- dictem-1.0.4/.git/objects/73/7fa4d6705e86254239f6bdffddfdbc631403f0 2012-08-06 23:12:37.000000000 +0000 +++ dictem-1.0.4/.git/objects/73/7fa4d6705e86254239f6bdffddfdbc631403f0 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -xM@F])j/hWu$ {O0jm;7p-_DZT A`'3Ԁ-.ވMŦ -9ǘ0&Δ;1$TE% >/+ݦWZプ(e8y s۴{f."9K2_*NN \ No newline at end of file Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/74/fc7a7493f123b95253154ea70fad5cf71a47ac and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/74/fc7a7493f123b95253154ea70fad5cf71a47ac differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/78/90e85cbde357a78a4c01d7bded88ace036a44c and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/78/90e85cbde357a78a4c01d7bded88ace036a44c differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/78/ef42486033f9b7b3353b2adafbcbbeb38a58e1 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/78/ef42486033f9b7b3353b2adafbcbbeb38a58e1 differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/78/faadfdc817fca9553e73596f793ee12b3a9311 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/78/faadfdc817fca9553e73596f793ee12b3a9311 differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/79/f0aa54b8a19379b2c6f0c8da92cb78ffa7e462 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/79/f0aa54b8a19379b2c6f0c8da92cb78ffa7e462 differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/7b/60cc74db4561cc48d97a4aa991ce20f397ced6 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/7b/60cc74db4561cc48d97a4aa991ce20f397ced6 differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/7c/49dcc50af1af7bcd02afe01eb675be960102c5 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/7c/49dcc50af1af7bcd02afe01eb675be960102c5 differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/7d/70ae69ad0a87deacab06c5a9fa6e2f493cd3bb and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/7d/70ae69ad0a87deacab06c5a9fa6e2f493cd3bb differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/7e/e6cbc72e9bd6c0d9a537470b28c401b37904f9 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/7e/e6cbc72e9bd6c0d9a537470b28c401b37904f9 differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/7f/9394ec64a3751d78f5d2151a1136af1beb1e85 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/7f/9394ec64a3751d78f5d2151a1136af1beb1e85 differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/81/95adc4aff7a2e2f7ecca0314c6b031594e2e28 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/81/95adc4aff7a2e2f7ecca0314c6b031594e2e28 differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/81/96316b2724960fa2dee9e9a799d97ba03035ea and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/81/96316b2724960fa2dee9e9a799d97ba03035ea differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/82/bff1044952673ed6b6bd1742906f4a2794dc8a and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/82/bff1044952673ed6b6bd1742906f4a2794dc8a differ diff -Nru dictem-1.0.4/.git/objects/83/884a317f06864f656b1c9713ba824406ee7471 dictem-1.0.4/.git/objects/83/884a317f06864f656b1c9713ba824406ee7471 --- dictem-1.0.4/.git/objects/83/884a317f06864f656b1c9713ba824406ee7471 2012-08-02 21:06:16.000000000 +0000 +++ dictem-1.0.4/.git/objects/83/884a317f06864f656b1c9713ba824406ee7471 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -xQN0Wlg#((ҏub]G)т;3;R, 5+ "xn`ꬖևVSO뺠G=͂SiZJAIc[ C'YjJ^QF `^iT-k:b26Ռq+v}LH% {*괊gj9]bq ۼhL>BEB诺JÚaoH/Pb8`=%CemƥkqRXͮ?a&kLSuFΦ呐S'|g \ No newline at end of file Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/83/c833e6f6261a55bdccfdcc9fea747cd0da8c34 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/83/c833e6f6261a55bdccfdcc9fea747cd0da8c34 differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/84/b196e572c965680aaa18c8948e65d9756c95b8 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/84/b196e572c965680aaa18c8948e65d9756c95b8 differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/85/15d64aee1d31d0e3eaa2c8f39e225dcb4fcb46 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/85/15d64aee1d31d0e3eaa2c8f39e225dcb4fcb46 differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/86/878dbce5c05f95e4f7aa40dcda62f877d06d37 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/86/878dbce5c05f95e4f7aa40dcda62f877d06d37 differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/87/993ae94d388b2f36fdafd5af82666cd2770a8b and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/87/993ae94d388b2f36fdafd5af82666cd2770a8b differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/88/fdc775e6bc6ada7e825583c05e87b2753b2124 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/88/fdc775e6bc6ada7e825583c05e87b2753b2124 differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/89/039961f9a70bbb440ef7df9790c238fd5b1d89 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/89/039961f9a70bbb440ef7df9790c238fd5b1d89 differ diff -Nru dictem-1.0.4/.git/objects/8b/a324a5b1c8f9a428a013330fb2d25941f056c1 dictem-1.0.4/.git/objects/8b/a324a5b1c8f9a428a013330fb2d25941f056c1 --- dictem-1.0.4/.git/objects/8b/a324a5b1c8f9a428a013330fb2d25941f056c1 2012-08-06 23:08:50.000000000 +0000 +++ dictem-1.0.4/.git/objects/8b/a324a5b1c8f9a428a013330fb2d25941f056c1 1970-01-01 00:00:00.000000000 +0000 @@ -1,3 +0,0 @@ -xK -@D])z/hOq \vH,o(^=a(B -:ZgܐQ>Lhcel*,jECGdt)Z+KJ1>nOBťArj{Emf ą߰=_$v(!L \ No newline at end of file Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/b8/606814189c282fb4770bba9f265a8a488069fa and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/b8/606814189c282fb4770bba9f265a8a488069fa differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/ba/97182dbfd2d9f70d0d8304338d707191a12a09 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/ba/97182dbfd2d9f70d0d8304338d707191a12a09 differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/ba/f5766274a080dc6b00e47f561e10786e2b032f and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/ba/f5766274a080dc6b00e47f561e10786e2b032f differ diff -Nru dictem-1.0.4/.git/objects/bb/42bdea9ea312d9726f3658e435f6bda7246f19 dictem-1.0.4/.git/objects/bb/42bdea9ea312d9726f3658e435f6bda7246f19 --- dictem-1.0.4/.git/objects/bb/42bdea9ea312d9726f3658e435f6bda7246f19 2012-08-06 22:38:20.000000000 +0000 +++ dictem-1.0.4/.git/objects/bb/42bdea9ea312d9726f3658e435f6bda7246f19 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -xeRo0=Rvi`1I$/Υ1s|}n ;$)9wߏs54 -fKV5G'5P R\O_л,yr1 -MR";El|(FGaAؠ Kk\^7 -(Wek>p:=Rc e \ No newline at end of file diff -Nru dictem-1.0.4/.git/objects/d1/20ad4e9d0aabce22ea4b36461d7f3203293b6d dictem-1.0.4/.git/objects/d1/20ad4e9d0aabce22ea4b36461d7f3203293b6d --- dictem-1.0.4/.git/objects/d1/20ad4e9d0aabce22ea4b36461d7f3203293b6d 2009-08-14 22:10:39.000000000 +0000 +++ dictem-1.0.4/.git/objects/d1/20ad4e9d0aabce22ea4b36461d7f3203293b6d 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -xOK0=Sl=O[ 4%hv)ZV_F** K`Dwe];89fmHN!4?;Y \ No newline at end of file Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/d1/7cfae30d1b16b8807d6539ee9c2311caa64ca6 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/d1/7cfae30d1b16b8807d6539ee9c2311caa64ca6 differ diff -Nru dictem-1.0.4/.git/objects/d2/315472e68d8e6157caa627c5a410ea4ad7aa6a dictem-1.0.4/.git/objects/d2/315472e68d8e6157caa627c5a410ea4ad7aa6a --- dictem-1.0.4/.git/objects/d2/315472e68d8e6157caa627c5a410ea4ad7aa6a 2012-08-06 23:09:10.000000000 +0000 +++ dictem-1.0.4/.git/objects/d2/315472e68d8e6157caa627c5a410ea4ad7aa6a 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -x=j1F]ӇFZ0!}Nry("Wum\@"RhҘWV2U[0Z'Ik4w HyٖT'.1Z"š0y[1b c;|1v וr.w < @>"mo/^fܯ:~U \ No newline at end of file Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/d3/827e75a5cadb9fe4a27e1cb9b6d192e7323120 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/d3/827e75a5cadb9fe4a27e1cb9b6d192e7323120 differ Binary files /tmp/tmpit6yq2ba/EG2FsfTsaD/dictem-1.0.4/.git/objects/d7/7cb5918c77527f2459f93a3852a0c5cb426b04 and /tmp/tmpit6yq2ba/dR3dEpkVMs/dictem-1.0.4/.git/objects/d7/7cb5918c77527f2459f93a3852a0c5cb426b04 differ diff -Nru dictem-1.0.4/.git/objects/d8/a35aabfc1d4cbad153c12fd598a45cb3b431ce dictem-1.0.4/.git/objects/d8/a35aabfc1d4cbad153c12fd598a45cb3b431ce --- dictem-1.0.4/.git/objects/d8/a35aabfc1d4cbad153c12fd598a45cb3b431ce 2012-08-06 22:38:20.000000000 +0000 +++ dictem-1.0.4/.git/objects/d8/a35aabfc1d4cbad153c12fd598a45cb3b431ce 1970-01-01 00:00:00.000000000 +0000 @@ -1,3 +0,0 @@ -x; -@@ 2/ b ,gggL0?¦4  @0fJH5{+e1:NfM -9Fˡ^1:m59_iaWPh^e' Fri, 22 Mar 2024 18:22:30 +0100 + +dictem (1.0.4-4.2) unstable; urgency=medium + + * Non-maintainer upload. + * Convert to source format 3.0. Closes: #1043092 + * d/copyright: Convert to machine-readable format. + * Remove trailing empty line from description. + + -- Bastian Germann Sun, 18 Feb 2024 18:23:58 +0000 + dictem (1.0.4-4.1fakesync1) hirsute; urgency=medium * No change rebuild to stop autosync trying to sync it diff -Nru dictem-1.0.4/debian/control dictem-1.0.4/debian/control --- dictem-1.0.4/debian/control 2019-07-12 10:40:41.000000000 +0000 +++ dictem-1.0.4/debian/control 2024-03-22 17:19:09.000000000 +0000 @@ -21,5 +21,3 @@ It uses autocompletion that is used for selecting dictionary and search strategy. Moreover, DictEm provides several hooks which may be used for buffer postprocessing. - . - diff -Nru dictem-1.0.4/debian/copyright dictem-1.0.4/debian/copyright --- dictem-1.0.4/debian/copyright 2012-08-02 21:08:38.000000000 +0000 +++ dictem-1.0.4/debian/copyright 2024-03-22 17:21:49.000000000 +0000 @@ -1,27 +1,29 @@ -This package was debianized by Zhenja Kaluta on -Fri, 24 Sep 2004 12:38:21 +0300. - -Downloaded From: http://www.mova.org/~cheusov/pub/dictem/ - -Upstream Author: Aleksey Cheusov - -Copyright (c) 2003, 2004 Aleksey Cheusov - +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Comment: + This package was debianized by Zhenja Kaluta on + Fri, 24 Sep 2004 12:38:21 +0300. +Source: + http://www.mova.org/~cheusov/pub/dictem/ +Upstream-Contact: + Aleksey Cheusov + +Files: * +Copyright: (c) 2003, 2004 Aleksey Cheusov +License: GPL-2+ DictEm 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. - + . DictEm 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, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA - -On Debian systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL-2'. - +Comment: + On Debian systems, the complete text of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL-2'. diff -Nru dictem-1.0.4/debian/source/format dictem-1.0.4/debian/source/format --- dictem-1.0.4/debian/source/format 2014-02-12 12:09:31.000000000 +0000 +++ dictem-1.0.4/debian/source/format 2024-03-22 17:22:30.000000000 +0000 @@ -1 +1 @@ -1.0 +3.0 (native)