perl6/0000755000000000000000000000000012772471716007012 5ustar perl6/.git/0000755000000000000000000000000012772471716007653 5ustar perl6/.git/COMMIT_EDITMSG0000644000000000000000000000061612772471716011745 0ustar prepare release # 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 2 and 1 different commits each, respectively. # (use "git pull" to merge the remote branch into yours) # # Changes to be committed: # modified: debian/changelog # perl6/.git/refs/0000755000000000000000000000000012772471716010612 5ustar perl6/.git/refs/heads/0000755000000000000000000000000012772471716011676 5ustar perl6/.git/refs/heads/master0000644000000000000000000000005112772471716013110 0ustar 1dc2c3bccacee9082ad57685e51ae983ee795b6a perl6/.git/refs/tags/0000755000000000000000000000000012772464537011553 5ustar perl6/.git/refs/remotes/0000755000000000000000000000000012772471716012270 5ustar perl6/.git/refs/remotes/origin/0000755000000000000000000000000012772471716013557 5ustar perl6/.git/refs/remotes/origin/master0000644000000000000000000000005112772471716014771 0ustar feb99eb785cddb2947f150d52b70b2db345350dc perl6/.git/hooks/0000755000000000000000000000000012772464537011001 5ustar perl6/.git/hooks/applypatch-msg.sample0000755000000000000000000000073612772464537015146 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+"$@"} : perl6/.git/hooks/prepare-commit-msg.sample0000755000000000000000000000232712772464537015723 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 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,) /usr/bin/perl -i.bak -ne 's/^/# /, s/^# #/#/ if /^Conflicts/ .. /#/; print' "$1" ;; # ,|template,) # /usr/bin/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" perl6/.git/hooks/post-update.sample0000755000000000000000000000027512772464537014460 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 perl6/.git/hooks/update.sample0000755000000000000000000000703212772464537013473 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 perl6/.git/hooks/pre-push.sample0000755000000000000000000000250412772464537013753 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 perl6/.git/hooks/pre-commit.sample0000755000000000000000000000315212772464537014264 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 -- perl6/.git/hooks/commit-msg.sample0000755000000000000000000000160012772464537014260 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 } perl6/.git/hooks/pre-rebase.sample0000755000000000000000000001144212772464537014236 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 perl6/.git/hooks/pre-applypatch.sample0000755000000000000000000000065012772464537015141 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+"$@"} : perl6/.git/branches/0000755000000000000000000000000012772464537011443 5ustar perl6/.git/logs/0000755000000000000000000000000012772471716010617 5ustar perl6/.git/logs/refs/0000755000000000000000000000000012772471716011556 5ustar perl6/.git/logs/refs/heads/0000755000000000000000000000000012772471716012642 5ustar perl6/.git/logs/refs/heads/master0000644000000000000000000000445612772471716014071 0ustar 0000000000000000000000000000000000000000 9e430e245c3bb27512745ba987ea295802edd48d Dominique Dumont 1474982901 +0200 commit (initial): create info files 9e430e245c3bb27512745ba987ea295802edd48d 5d183163a5986d9518fe52db928fd9bba76337e9 Dominique Dumont 1474985554 +0200 commit (amend): create info files 5d183163a5986d9518fe52db928fd9bba76337e9 a9169be71c28eafb62fadd688410d42c971652e5 Dominique Dumont 1474985559 +0200 commit (amend): create info files a9169be71c28eafb62fadd688410d42c971652e5 2e502f268924ed6d32674b7b44283f9fe86ad516 Dominique Dumont 1475338944 +0200 commit: prepare release 2e502f268924ed6d32674b7b44283f9fe86ad516 be1d9b474ea250940c38ed12026ed289145773ee Dominique Dumont 1475339205 +0200 commit: added debian files be1d9b474ea250940c38ed12026ed289145773ee fe0f9dbfc2634e5f880fef4223e60a565f3f74fc Dominique Dumont 1475339279 +0200 commit: removed equivs-build file fe0f9dbfc2634e5f880fef4223e60a565f3f74fc a9169be71c28eafb62fadd688410d42c971652e5 Dominique Dumont 1475339540 +0200 reset: moving to a9169be71c28eafb62fadd688410d42c971652e5 a9169be71c28eafb62fadd688410d42c971652e5 51d49744f42772cb6406f5b16e672f96aa95d244 Dominique Dumont 1475339543 +0200 cherry-pick: added debian files 51d49744f42772cb6406f5b16e672f96aa95d244 3e029be0dc44e195fcc359f9c5a3c3c3a3c67219 Dominique Dumont 1475339564 +0200 cherry-pick: removed equivs-build file 3e029be0dc44e195fcc359f9c5a3c3c3a3c67219 feb99eb785cddb2947f150d52b70b2db345350dc Dominique Dumont 1475339571 +0200 cherry-pick: prepare release feb99eb785cddb2947f150d52b70b2db345350dc 3e029be0dc44e195fcc359f9c5a3c3c3a3c67219 Dominique Dumont 1475340055 +0200 reset: moving to 3e029be0dc44e195fcc359f9c5a3c3c3a3c67219 3e029be0dc44e195fcc359f9c5a3c3c3a3c67219 fffd82ab6d7d1b5cb92f31b91279c2391c2061c4 Dominique Dumont 1475340072 +0200 commit: refreshed with cme fffd82ab6d7d1b5cb92f31b91279c2391c2061c4 67ff47f9908137fe60161b9d60bbb3ed27e52a5b Dominique Dumont 1475340080 +0200 commit: remvoed empty docs file 67ff47f9908137fe60161b9d60bbb3ed27e52a5b 1dc2c3bccacee9082ad57685e51ae983ee795b6a Dominique Dumont 1475340099 +0200 commit: prepare release perl6/.git/logs/refs/remotes/0000755000000000000000000000000012772471716013234 5ustar perl6/.git/logs/refs/remotes/origin/0000755000000000000000000000000012772471716014523 5ustar perl6/.git/logs/refs/remotes/origin/master0000644000000000000000000000022412772471716015737 0ustar 0000000000000000000000000000000000000000 feb99eb785cddb2947f150d52b70b2db345350dc Dominique Dumont 1475339857 +0200 update by push perl6/.git/logs/HEAD0000644000000000000000000000445612772471716011254 0ustar 0000000000000000000000000000000000000000 9e430e245c3bb27512745ba987ea295802edd48d Dominique Dumont 1474982901 +0200 commit (initial): create info files 9e430e245c3bb27512745ba987ea295802edd48d 5d183163a5986d9518fe52db928fd9bba76337e9 Dominique Dumont 1474985554 +0200 commit (amend): create info files 5d183163a5986d9518fe52db928fd9bba76337e9 a9169be71c28eafb62fadd688410d42c971652e5 Dominique Dumont 1474985559 +0200 commit (amend): create info files a9169be71c28eafb62fadd688410d42c971652e5 2e502f268924ed6d32674b7b44283f9fe86ad516 Dominique Dumont 1475338944 +0200 commit: prepare release 2e502f268924ed6d32674b7b44283f9fe86ad516 be1d9b474ea250940c38ed12026ed289145773ee Dominique Dumont 1475339205 +0200 commit: added debian files be1d9b474ea250940c38ed12026ed289145773ee fe0f9dbfc2634e5f880fef4223e60a565f3f74fc Dominique Dumont 1475339279 +0200 commit: removed equivs-build file fe0f9dbfc2634e5f880fef4223e60a565f3f74fc a9169be71c28eafb62fadd688410d42c971652e5 Dominique Dumont 1475339540 +0200 reset: moving to a9169be71c28eafb62fadd688410d42c971652e5 a9169be71c28eafb62fadd688410d42c971652e5 51d49744f42772cb6406f5b16e672f96aa95d244 Dominique Dumont 1475339543 +0200 cherry-pick: added debian files 51d49744f42772cb6406f5b16e672f96aa95d244 3e029be0dc44e195fcc359f9c5a3c3c3a3c67219 Dominique Dumont 1475339564 +0200 cherry-pick: removed equivs-build file 3e029be0dc44e195fcc359f9c5a3c3c3a3c67219 feb99eb785cddb2947f150d52b70b2db345350dc Dominique Dumont 1475339571 +0200 cherry-pick: prepare release feb99eb785cddb2947f150d52b70b2db345350dc 3e029be0dc44e195fcc359f9c5a3c3c3a3c67219 Dominique Dumont 1475340055 +0200 reset: moving to 3e029be0dc44e195fcc359f9c5a3c3c3a3c67219 3e029be0dc44e195fcc359f9c5a3c3c3a3c67219 fffd82ab6d7d1b5cb92f31b91279c2391c2061c4 Dominique Dumont 1475340072 +0200 commit: refreshed with cme fffd82ab6d7d1b5cb92f31b91279c2391c2061c4 67ff47f9908137fe60161b9d60bbb3ed27e52a5b Dominique Dumont 1475340080 +0200 commit: remvoed empty docs file 67ff47f9908137fe60161b9d60bbb3ed27e52a5b 1dc2c3bccacee9082ad57685e51ae983ee795b6a Dominique Dumont 1475340099 +0200 commit: prepare release perl6/.git/ORIG_HEAD0000644000000000000000000000005112772471716011113 0ustar feb99eb785cddb2947f150d52b70b2db345350dc perl6/.git/description0000644000000000000000000000011112772464537012115 0ustar Unnamed repository; edit this file 'description' to name the repository. perl6/.git/gitk.cache0000644000000000000000000000044712772471716011603 0ustar 1 2 be1d9b474ea250940c38ed12026ed289145773ee a9169be71c28eafb62fadd688410d42c971652e5 {2e502f268924ed6d32674b7b44283f9fe86ad516 a9169be71c28eafb62fadd688410d42c971652e5} fe0f9dbfc2634e5f880fef4223e60a565f3f74fc be1d9b474ea250940c38ed12026ed289145773ee be1d9b474ea250940c38ed12026ed289145773ee 1 perl6/.git/index0000644000000000000000000000153512772471716010711 0ustar DIRCW5{!W5{!Ȋ MDAMdDdebian/README.DebianWt2OWt2O), y{>@ cJ3/debian/README.debianWJWJt&$#.¡!Ѯ\|~ nLW׈debian/copyrightW1^W1^! )'7j@#woD debian/rulesW5{!W5{!8$ӂ~u۟~ђ21 debian/source/formatTREEW8 1 JXrR#4Nݱdebian8 1 RЙSqr ́@source1 0 ; 'ld5>³`'uREUC>perl61006440100644Iȴ_@$xC~Iȴ_@$xC~1Wuk5nGN!2perl6/.git/info/0000755000000000000000000000000012772464537010611 5ustar perl6/.git/info/exclude0000644000000000000000000000036012772464537012164 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] # *~ perl6/.git/HEAD0000644000000000000000000000002712772464537010301 0ustar ref: refs/heads/master perl6/.git/objects/0000755000000000000000000000000012772471716011304 5ustar perl6/.git/objects/c9/0000755000000000000000000000000012772464543011617 5ustar perl6/.git/objects/c9/da454fe827329789c6abe6f23d03e12e99d1d60000444000000000000000000000023112772464543016766 0ustar x @>m좌؅"]" ڪ#sYEg}e$k>ɩ aF ۽,#~:9.FVp(FxVv!7(Ba4 ֌ +Yغ<<-7gI$Wi93|Rf.perl6/.git/objects/e6/0000755000000000000000000000000012772471716011616 5ustar perl6/.git/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c53910000444000000000000000000000001712772471716017041 0ustar xKOR0` perl6/.git/objects/e5/0000755000000000000000000000000012772471716011615 5ustar perl6/.git/objects/e5/bdf5c65bf55196d43e22c2ae8eedb8e49f5f320000444000000000000000000000045512772471716017271 0ustar x+)JMU062f040031QrutusIMLcbѡ􋋣o˳YX,@UQYY=gM_M2և*LHKOOgx۾չ[&e7r$03mMp\4?U0L9cx$ȎTeg0;vqܘ5s~(%?G7]ݭ<ơ'=榦 E9 etAwy˕+qBq~iQr*5zN ]ϡdn`+ Sperl6/.git/objects/fe/0000755000000000000000000000000012772471716011676 5ustar perl6/.git/objects/fe/b99eb785cddb2947f150d52b70b2db345350dc0000444000000000000000000000024412772471716017105 0ustar xK 1] I'D\x|:L4f(@]4][MoDJ)x3@HȖd90e#,#6]3JK"G5osy|.ePj91λڮGm\{qNoMVOn#,I7perl6/.git/objects/fe/0f9dbfc2634e5f880fef4223e60a565f3f74fc0000444000000000000000000000025212772471716017205 0ustar xm!Fᜩh#Env$Hf ~[.Ooka9Mg(C,nE(a%^6ool2 4W=#7պy@'>`eUGR=y nGcllGר 2 {P$1߬a%z\wd;]dUďс֯Y]p9G/noT4G`,),I^LVmh {WnN(F]3"4`(ŝH]U*k6lWCoHkrSɪ$GWD?~AM`esAFoqevlf>aκ?9D>=r^\` tH&H1#L3 zcDrL)3 V,gGx/ "[Rhs\is%tj^{jEeQ e^}#:KW-Zzg3PIYJD,qgdaJKҰZI^޴UHYn"KR 3B'l@bKl2 )\#"QB)"y<JȉX|_ϞemMfDCKpa~ oʿzk‘Jy`oB;,icO +m1" 53jaP?9nϨ]bu+$uHV%JŤni#uzi5m$RQv+@rJ5N@W⪭dWPք'>W5PxY꫊@BsSaBȖL"Eڂ5e!G0hH.]&v)"?[^v;p/=-`'*KpCQ_WHu/E:n#S'a9x  z )c&`M:Y #7@n}VE]I}r7aE~_ 8g2qjKDqacu0GEi%Ѥcfy˅y};>v̧nWEz,8|R~̑+(^V&XE2-!B k$͊hͨ2h>`?u 3JL֩iMmW滷)U;sjسr]=[ ̋N A@v ~ w,+U/6&Hպа,Y[%~w]Z{fW|,6腑D;G/%bʤfVL="4YJxvY'x%)/k>\i a|5OM$쓱kdC1=}W8,IlUN(IZ;X@K'&n2[]zÒ~(ü#Rھ<JDgjGz2LM+n:'.NyGq_Dπ)âr¥ir̵Gs%6tlPm8L̳ \7}_AF{3= o?Γo_:nW&up_&{H7WqÅjړ?._w?f43ɗ|*n&_d|;ϧtf3ٙ\y?M0ff25> |4^낙ܙ'70_n4;@|t8La2qHO/Gw=hv3>D:Ňh>WSNf<{f4q A77װsL(dz>#(3X1$<'n}|5t1D>Ά[ƾ~ޛz/Uo>Sz}0perl6/.git/objects/33/0000755000000000000000000000000012772471716011531 5ustar perl6/.git/objects/33/3494cc31c45cc4b8638573cd082161735faef40000444000000000000000000000105712772471716016530 0ustar xeMO1 {ί$ *F-jz(U;ci>n=adw^CFX){J:s#8NZD~cg( =)G#8Zq%uj]ݕ^ؚ MArg_ӹz F.SL0+vߢ^8ZNߊ Mp}s|YF؆H<{)H:rqJ[RT 1=E?q$B?prwK{QPL4}ȕ0,yJYB} 3yC?r=139z3i&cwy9Uo \h{&a[rykXKInA5P<⌞,{.ZgtdG~wBk_ܘ'v53z)OFgY4:KS[e/Ki0?uvW<.{jt| }C fy̩ҵwϛ`6G=O|@u HUb(ܘSgzu]x]\6Pzh1<$ӭTޘǼa:w'`VB1Ҏ58ʉU×*v OoA,͢& xGQ' F_94:w(8Κ\=gOV*2]YV X=pC5} ч lK4V:$tY-@ILOWJ$y'vDy/B(yFԙIzM7d ]8uok2C U :)R`MEGgũ{/KL$kJ26:T>mL}0\>KǘO0ni5kZjrL~F}/V:Lperl6/.git/objects/6d/0000755000000000000000000000000012772471716011615 5ustar perl6/.git/objects/6d/f5cfb24ff5941bfc62b45763ee18ab08df43f40000444000000000000000000000006112772471716017174 0ustar x+)JMU06f01ԤE섢vN%$N3껋v$kUYKUR7tvpSs[wiFyi6syptP\Ҍ9~R4oi0_perl6/.git/objects/59/0000755000000000000000000000000012772471716011541 5ustar perl6/.git/objects/59/06a33eba7cdc7358cf7bd0a6a9679ef84fff320000444000000000000000000000012312772471716017205 0ustar x+)JMU03c01Ԥ<|m=f&& E9f kr#aRz·3Hperl6/.git/objects/5a/0000755000000000000000000000000012772471716011611 5ustar perl6/.git/objects/5a/42f7adbc8ca5dc581d6e1e86d39acbad2b48210000444000000000000000000000017412772471716017317 0ustar x+)JMU044e040031QrutuKIMLcᬬ΁}/&{C&g$楧3DpXY\6w4?ϫ)/,L(aow⺹1k.M'zz0perl6/.git/objects/ff/0000755000000000000000000000000012772471716011677 5ustar perl6/.git/objects/ff/fd82ab6d7d1b5cb92f31b91279c2391c2061c40000444000000000000000000000024412772471716017020 0ustar xKj0gS>hBzk!kAx[s9$0^#bٕzcAgCq KHN]\59>hgW{j:>x|18uJ.NKVewGW;IzgJperl6/.git/objects/57/0000755000000000000000000000000012772471716011537 5ustar perl6/.git/objects/57/b64dea9019037ead2252f7b3bccc6aacb149fa0000444000000000000000000000042112772471716017223 0ustar x+)JMU04d040031QrutusIMLcbѡ􋋣o˳YX,@UQYY=gM_M2և*LHKOOgప9|mji~WS[X&9nj GÓCMX=+)a(]pU3/~yʢv.Bt?}¯w*3hua.Wab Eɩ 9)̦v=6/It3vPperl6/.git/objects/be/0000755000000000000000000000000012772471716011672 5ustar perl6/.git/objects/be/1d9b474ea250940c38ed12026ed289145773ee0000444000000000000000000000024212772471716016604 0ustar xK0 EQYEH(n$D(`,6ϵk@Чɻ]2U>7hE3҉;l`,_.perl6/.git/objects/a9/0000755000000000000000000000000012772471716011615 5ustar perl6/.git/objects/a9/169be71c28eafb62fadd688410d42c971652e50000444000000000000000000000026412772471716016760 0ustar xAn @Ѯ9Z"fdܾjt~GD@vv=f\Cst6o'T.\{HC޾`]f#Zsn*U *FRM }rv'hoQ`$zv>yC[R_perl6/.git/objects/2e/0000755000000000000000000000000012772471716011612 5ustar perl6/.git/objects/2e/502f268924ed6d32674b7b44283f9fe86ad5160000444000000000000000000000024012772471716016544 0ustar x90 Hȷ7BڻK$?覙,uHcatf?C zS6SU@ly'Qg%S(8ș}𥷺N|[ ιk&q=qpQ ~ ҏ8鯘mT>AE Hperl6/.git/objects/ed/0000755000000000000000000000000012772471716011674 5ustar perl6/.git/objects/ed/87a8eaceda65fa407a931f701e6a177f810a6d0000444000000000000000000000020512772471716017162 0ustar x Ȼ PgZK8 @Ӑp ؐ-Imf*AcG.wiY tA-{|{<_ (,s 9?0Ԙӊz\;tJH `?:&)perl6/.git/objects/d9/0000755000000000000000000000000012772471716011620 5ustar perl6/.git/objects/d9/ee005addb87e1811e7f7e7332b4cc415cf868c0000444000000000000000000000017412772471716017120 0ustar x+)JMU044e040031QrutuKIMLchG6Z_OԆh*LHKOOgx۾չ[&e7rTeg0;vqܘ5s~T2Hperl6/.git/objects/3b/0000755000000000000000000000000012772471716011610 5ustar perl6/.git/objects/3b/0b276c6403353e8cc2b3a61c60d827f80675b30000444000000000000000000000006312772471716016510 0ustar x+)JMU06a040031QH/M,aTWOvqs#CBperl6/.git/objects/81/0000755000000000000000000000000012772471716011534 5ustar perl6/.git/objects/81/d0fc1d5b1afe6d42ec3ee9abc87d542b0f30fc0000444000000000000000000000046112772471716017371 0ustar x=N09)iBJpD/U6CIJ~35Vc7p\P#ݕR. ZHvl$IqP4sJ%}X5lDI! &ޝKc?űi12 *X0d!W5jI>5TϚGJ藔Zs⓵Ope$E9<'oUr!hctaWWuQ֟#S9{Z ,vʨ>5/2)o'ϜǞ8CU.7Xwv\ṬRWperl6/.git/objects/93/0000755000000000000000000000000012772471716011537 5ustar perl6/.git/objects/93/6c5686c890f3ac8c2f65e04dd942fba12f51e30000444000000000000000000000017412772471716016762 0ustar x+)JMU044e040031QrutuKIMLcᬬ΁}/&{C&g$楧3m_ܭ_U ra *23JnnÚ uӹ| 0perl6/.git/objects/e4/0000755000000000000000000000000012772471716011614 5ustar perl6/.git/objects/e4/f49056d6dd36a6021face8b5302c62647ab3050000444000000000000000000000012312772471716016645 0ustar x+)JMU03c01Ԥ<9am'&|^ӣ LL Rr<~9Fä*og*perl6/.git/objects/8a/0000755000000000000000000000000012772471716011614 5ustar perl6/.git/objects/8a/01f888204da5f444414d6444e69aee049414a00000444000000000000000000000045712772471716016450 0ustar x=N09)&iD B lmcU')=z65x\o<DG NtURG LDrJ8FhJse}к0Nc>IH]ͤQzJ tꥻ+ض:G, =( ̟Rl#avKJSynQd !>YgֹLwhgeZe׹Iѥ, 9S]8{&9{# [gU?}鍳 /2+o\=?~Ž=jr7;eperl6/.git/objects/51/0000755000000000000000000000000012772471716011531 5ustar perl6/.git/objects/51/d49744f42772cb6406f5b16e672f96aa95d2440000444000000000000000000000024712772471716016470 0ustar xKn0 )/H!PY"Hb+uh{ڗ ڙ40RDMj9K".&1\*y&hrgD?HyrV&_)+*Z}]M) >ġoa5*'i^CYJ/perl6/.git/objects/48/0000755000000000000000000000000012772471716011537 5ustar perl6/.git/objects/48/aa4cca33c59266539e4359dfa17d726affd48e0000444000000000000000000000024312772471716017043 0ustar x;!@9&f#1{`Ew,_^^jژ"`$M|&#:@Mv^=Cu@D't$T:̭6ym\%Z`E4U-KV]r" 2HUJperl6/.git/objects/cb/0000755000000000000000000000000012772471716011670 5ustar perl6/.git/objects/cb/c906c24a58f986725223344ee4ddb18f0019110000444000000000000000000000006112772471716016516 0ustar x+)JMU06f01Ԥ<. .,z̹lW?9%perl6/.git/objects/info/0000755000000000000000000000000012772464537012242 5ustar perl6/.git/objects/3e/0000755000000000000000000000000012772471716011613 5ustar perl6/.git/objects/3e/029be0dc44e195fcc359f9c5a3c3c3a3c672190000444000000000000000000000025512772471716017026 0ustar xAN!= 4 1#t$"?൒T Ğ9,6I= EON拆&"bAІy +)%/К}zRtyJsoa\Lh&.Nfhw۪'^*PUjM(perl6/.git/objects/a4/0000755000000000000000000000000012772471716011610 5ustar perl6/.git/objects/a4/3bea9a0be7b7516e90974602db23730c19e62e0000444000000000000000000000006012772471716016652 0ustar x+)JMU06f01Ԥad/6Qf4K!4DO)Es:?`3&8V'& .\ң#\z*pΜ2 z;qzZRs~bFA0,00ĝ)Cߨ^An徾Է;e0?kf 6Rperl6/.git/objects/49/0000755000000000000000000000000012772471716011540 5ustar perl6/.git/objects/49/adf4c8b4d85f40928ffb7f2478ed43c37eff010000444000000000000000000000145512772471716017142 0ustar x}Tn7_1Mi]*rCSq;EfU)Z͛7ovn~]}wuuELq N!zlh!ʞz{`%'Lwvt-T3jb'q{AJve_=oMZ= /71Km?vX?[. zL)M;M]*,GU4 o F[i= <պLwCj SN5`GjmVY<'uz}%1VJ(y/v -ha˭KCǎ/OY_"BpR ΊUOpm#cCperl6/.git/objects/49/9a10ace14cd677e3e7d2ffa79d3f5e276a95290000444000000000000000000000006012772471716017047 0ustar x+)JMU06f01ԤiX8r]B4P ؂qmd؉>dw[)rD"߮!\K9[F,ծ.JAU'k$)I R6z_wpδC=6-|jڦQperl6/.git/objects/55/0000755000000000000000000000000012772471716011535 5ustar perl6/.git/objects/55/4807cb79d1fa5bcb8fd6e33c3cf20bf359ba380000444000000000000000000000045512772471716017174 0ustar x+)JMU062f040031QrutusIMLcbѡ􋋣o˳YX,@UQYY=gM_M2և*LHKOOgప9|mji~WS[XP(6ҳsu`WWR`l2ᑘ#;[r(&ǯWRPYQ°usc\ΝObgstwOʛ*3hua.Wab Eɩ 9)̦v=6/It3perl6/.git/objects/62/0000755000000000000000000000000012772471716011533 5ustar perl6/.git/objects/62/65ce503b613197490344911efdef66852429a00000444000000000000000000000017412772471716016315 0ustar x+)JMU044e040031QrutuKIMLcbѡ􋋣o˳YX,*LHKOOgx۾չ[&e7rTeg0;vqܘ5s~1Dperl6/.git/objects/75/0000755000000000000000000000000012772471716011537 5ustar perl6/.git/objects/75/a4e1aa6f91cc6197d3edd24d0847c503a626940000444000000000000000000000117612772471716016674 0ustar x}T]o0 ܳ~ q+ź>Õ u#AHP"wRC_CJٚ= FOV&/q3zѤœ Tziqs*9i\>iRw/S֟UF 7 ؉셃PER6Y5Ꭓ(3FGkiɂ:E:I1U5<S.-EU%p!.O:Q#׊a=\̡/p! Rc;H=b9 Yl=w=!IS/p W=H>=Tȅ † kr,)'11vBF(h@MqazQU' Ȯ75hV%U $$3ZJ ܝH^f8NP2{5!&?g^I6y/-ʼn#:5L!lhD qUMB~CZ*ӆ9Diݴ/ǚHIűz16Ҽ)ˮ {OSyyM5Y6Ffperl6/.git/objects/a2/0000755000000000000000000000000012772471716011606 5ustar perl6/.git/objects/a2/037dd9d4970d951f7b5558f423b798d1b33f4c0000444000000000000000000000045512772471716016631 0ustar x+)JMU062f040031QrutusIMLcbѡ􋋣o˳YX,@UQYY=gM_M2և*LHKOOgప9|mji~WS[X&9nj GÓCMX=+)a(]pU3/~yʢv.Bt?}¯w@'3, Tue, 27 Sep 2016 15:32:02 +0200 perl6/debian/source/0000755000000000000000000000000012772471716011534 5ustar perl6/debian/source/format0000644000000000000000000000000412772471716012741 0ustar 1.0 perl6/debian/copyright0000644000000000000000000002222412772471716012171 0ustar Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Comment: This is a meta-package Files: * Copyright: 2016, Dominique Dumont License: Artistic-2.0 License: Artistic-2.0 The Artistic License 2.0 . Copyright (c) 2000-2006, The Perl Foundation. . Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. . Preamble . This license establishes the terms under which a given free software Package may be copied, modified, distributed, and/or redistributed. The intent is that the Copyright Holder maintains some artistic control over the development of that Package while still keeping the Package available as open source and free software. . You are always permitted to make arrangements wholly outside of this license directly with the Copyright Holder of a given Package. If the terms of this license do not permit the full use that you propose to make of the Package, you should contact the Copyright Holder and seek a different licensing arrangement. . Definitions . "Copyright Holder" means the individual(s) or organization(s) named in the copyright notice for the entire Package. . "Contributor" means any party that has contributed code or other material to the Package, in accordance with the Copyright Holder's procedures. . "You" and "your" means any person who would like to copy, distribute, or modify the Package. . "Package" means the collection of files distributed by the Copyright Holder, and derivatives of that collection and/or of those files. A given Package may consist of either the Standard Version, or a Modified Version. . "Distribute" means providing a copy of the Package or making it accessible to anyone else, or in the case of a company or organization, to others outside of your company or organization. . "Distributor Fee" means any fee that you charge for Distributing this Package or providing support for this Package to another party. It does not mean licensing fees. . "Standard Version" refers to the Package if it has not been modified, or has been modified only in ways explicitly requested by the Copyright Holder. . "Modified Version" means the Package, if it has been changed, and such changes were not explicitly requested by the Copyright Holder. . "Original License" means this Artistic License as Distributed with the Standard Version of the Package, in its current version or as it may be modified by The Perl Foundation in the future. . "Source" form means the source code, documentation source, and configuration files for the Package. . "Compiled" form means the compiled bytecode, object code, binary, or any other form resulting from mechanical transformation or translation of the Source form. . . Permission for Use and Modification Without Distribution . (1) You are permitted to use the Standard Version and create and use Modified Versions for any purpose without restriction, provided that you do not Distribute the Modified Version. . . Permissions for Redistribution of the Standard Version . (2) You may Distribute verbatim copies of the Source form of the Standard Version of this Package in any medium without restriction, either gratis or for a Distributor Fee, provided that you duplicate all of the original copyright notices and associated disclaimers. At your discretion, such verbatim copies may or may not include a Compiled form of the Package. . (3) You may apply any bug fixes, portability changes, and other modifications made available from the Copyright Holder. The resulting Package will still be considered the Standard Version, and as such will be subject to the Original License. . . Distribution of Modified Versions of the Package as Source . (4) You may Distribute your Modified Version as Source (either gratis or for a Distributor Fee, and with or without a Compiled form of the Modified Version) provided that you clearly document how it differs from the Standard Version, including, but not limited to, documenting any non-standard features, executables, or modules, and provided that you do at least ONE of the following: . (a) make the Modified Version available to the Copyright Holder of the Standard Version, under the Original License, so that the Copyright Holder may include your modifications in the Standard Version. . (b) ensure that installation of your Modified Version does not prevent the user installing or running the Standard Version. In addition, the Modified Version must bear a name that is different from the name of the Standard Version. . (c) allow anyone who receives a copy of the Modified Version to make the Source form of the Modified Version available to others under . (i) the Original License or . (ii) a license that permits the licensee to freely copy, modify and redistribute the Modified Version using the same licensing terms that apply to the copy that the licensee received, and requires that the Source form of the Modified Version, and of any works derived from it, be made freely available in that license fees are prohibited but Distributor Fees are allowed. . . Distribution of Compiled Forms of the Standard Version or Modified Versions without the Source . (5) You may Distribute Compiled forms of the Standard Version without the Source, provided that you include complete instructions on how to get the Source of the Standard Version. Such instructions must be valid at the time of your distribution. If these instructions, at any time while you are carrying out such distribution, become invalid, you must provide new instructions on demand or cease further distribution. If you provide valid instructions or cease distribution within thirty days after you become aware that the instructions are invalid, then you do not forfeit any of your rights under this license. . (6) You may Distribute a Modified Version in Compiled form without the Source, provided that you comply with Section 4 with respect to the Source of the Modified Version. . . Aggregating or Linking the Package . (7) You may aggregate the Package (either the Standard Version or Modified Version) with other packages and Distribute the resulting aggregation provided that you do not charge a licensing fee for the Package. Distributor Fees are permitted, and licensing fees for other components in the aggregation are permitted. The terms of this license apply to the use and Distribution of the Standard or Modified Versions as included in the aggregation. . (8) You are permitted to link Modified and Standard Versions with other works, to embed the Package in a larger work of your own, or to build stand-alone binary or bytecode versions of applications that include the Package, and Distribute the result without restriction, provided the result does not expose a direct interface to the Package. . . Items That are Not Considered Part of a Modified Version . (9) Works (including, but not limited to, modules and scripts) that merely extend or make use of the Package, do not, by themselves, cause the Package to be a Modified Version. In addition, such works are not considered parts of the Package itself, and are not subject to the terms of this license. . . General Provisions . (10) Any use, modification, and distribution of the Standard or Modified Versions is governed by this Artistic License. By using, modifying or distributing the Package, you accept this license. Do not use, modify, or distribute the Package, if you do not accept this license. . (11) If your Modified Version has been derived from a Modified Version made by someone other than you, you are nevertheless required to ensure that your Modified Version complies with the requirements of this license. . (12) This license does not grant you the right to use any trademark, service mark, tradename, or logo of the Copyright Holder. . (13) This license includes the non-exclusive, worldwide, free-of-charge patent license to make, have made, use, offer to sell, sell, import and otherwise transfer the Package with respect to any patent claims licensable by the Copyright Holder that are necessarily infringed by the Package. If you institute patent litigation (including a cross-claim or counterclaim) against any party alleging that the Package constitutes direct or contributory patent infringement, then this Artistic License to you shall terminate on the date that such litigation is filed. . (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. perl6/debian/control0000644000000000000000000000220412772471716011635 0ustar Source: perl6 Maintainer: Debian Rakudo Maintainers Uploaders: Dominique Dumont Section: interpreters Priority: optional Build-Depends: debhelper (>= 7) Standards-Version: 3.9.8 Vcs-Browser: https://anonscm.debian.org/cgit/pkg-rakudo/pkg-perl6.git Vcs-Git: https://anonscm.debian.org/git/pkg-rakudo/pkg-perl6.git Homepage: http://perl6.org/ Package: perl6 Architecture: all Depends: rakudo (>= 2015.12) Description: Perl6 Compiler Perl 6 is a programming language, member of the Perl family. Like Perl 5, her world-famous big sister, Perl 6 intends to carry forward the high ideals of the Perl community and is currently being developed by a team of dedicated and enthusiastic volunteers. . perl6 package is a meta package that aims to depend on a Perl6 compiler and Perl6 core modules. Currently this package depends only on a compiler (rakudo). Dependency on the perl6 modules shipped by rakudo-star will be added later once they are available on Debian. . Perl6 version number represents the version of the language specification. The version of the compiler is another matter. perl6/debian/compat0000644000000000000000000000000212772471716011432 0ustar 9 perl6/debian/README.Debian0000644000000000000000000000071012772471716012273 0ustar perl6 package is a meta package that aims to depend on a Perl6 compiler and Perl6 core modules. Currently this package depends only on a compiler (rakudo). Dependency on the perl6 modules shipped by rakudo-star will be added later once they are available on Debian. Help is welcome to create Debian package for Perl6 module. See https://wiki.debian.org/Teams/DebianRakudoGroup -- Dominique Dumont , Tue, 27 Sep 2016 15:28:15 +0200 perl6/debian/changelog0000644000000000000000000000022712772471716012107 0ustar perl6 (6.c-1) unstable; urgency=medium * Initial release. (Closes: #839009) -- Dominique Dumont Tue, 27 Sep 2016 15:27:42 +0200 perl6/debian/rules0000755000000000000000000000101312772471716011307 0ustar #!/usr/bin/make -f # Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess. #export DH_VERBOSE=1 build build-arch build-indep: clean: dh_testdir dh_clean install: build dh_testdir dh_testroot dh_prep binary-arch: install binary-indep: install dh_testdir dh_testroot dh_install dh_installdocs dh_installchangelogs dh_compress dh_fixperms dh_installdeb dh_gencontrol dh_md5sums dh_builddeb binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install