[libx11-protocol-other-perl] 01/05: Removed debian directory embedded in upstream source

Dima Kogan dima at secretsauce.net
Wed Jan 15 23:01:37 UTC 2014


This is an automated email from the git hooks/post-receive script.

dkogan-guest pushed a commit to branch master
in repository libx11-protocol-other-perl.

commit c299e301a1e4e77f14ffbd6aa47e7e3eff6dbc6f
Author: Dima Kogan <dima at secretsauce.net>
Date:   Wed Jan 15 01:07:48 2014 -0800

    Removed debian directory embedded in upstream source
---
 debian/changelog             |  5 ---
 debian/compat                |  1 -
 debian/control               | 33 -------------------
 debian/copyright             | 11 -------
 debian/my_mangle_examples.pl | 76 --------------------------------------------
 debian/rules                 | 27 ----------------
 debian/source/format         |  1 -
 debian/watch                 | 27 ----------------
 8 files changed, 181 deletions(-)

diff --git a/debian/changelog b/debian/changelog
deleted file mode 100644
index 153bfef..0000000
--- a/debian/changelog
+++ /dev/null
@@ -1,5 +0,0 @@
-libx11-protocol-other-perl (28-0.1) unstable; urgency=low
-
-  * Packaged version.
-
- -- Kevin Ryde <user42 at zip.com.au>  Mon, 04 Nov 2013 17:59:03 +1100
diff --git a/debian/compat b/debian/compat
deleted file mode 100644
index 7813681..0000000
--- a/debian/compat
+++ /dev/null
@@ -1 +0,0 @@
-5
\ No newline at end of file
diff --git a/debian/control b/debian/control
deleted file mode 100644
index f26865f..0000000
--- a/debian/control
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 2010, 2011, 2012, 2013 Kevin Ryde
-#
-# This file is part of X11-Protocol-Other.
-#
-# X11-Protocol-Other 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 3, or
-# (at your option) any later version.
-#
-# X11-Protocol-Other 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 X11-Protocol-Other.  If not, see <http://www.gnu.org/licenses/>.
-
-Source: libx11-protocol-other-perl
-Section: perl
-Priority: optional
-Build-Depends: libtest-perl | perl (>= 5.004.05), cdbs, debhelper (>= 5)
-Maintainer: Kevin Ryde <user42 at zip.com.au>
-Standards-Version: 3.9.4
-Homepage: http://user42.tuxfamily.org/x11-protocol-other/index.html
-Bugs: mailto:user42 at zip.com.au
-
-Package: libx11-protocol-other-perl
-Architecture: all
-Depends: perl (>= 5.004), libx11-protocol-perl, ${perl:Depends}, ${misc:Depends}
-Description: Various helpers for X11::Protocol
- Helper functions and modules for X11::Protocol,
-  * "Other" - miscellaneous functions
-  * "GrabServer" - oop/block scoped server grab
diff --git a/debian/copyright b/debian/copyright
deleted file mode 100644
index 754382e..0000000
--- a/debian/copyright
+++ /dev/null
@@ -1,11 +0,0 @@
-X11-Protocol-Other is Copyright 2010, 2011, 2012, 2013 Kevin Ryde
-
-X11-Protocol-Other is licensed under the GNU General Public License
-GPL version 3 (or at your option any later version).  The complete
-text of GPL version 3 is in the file
-
-    /usr/share/common-licenses/GPL-3
-
-Program home page:
-
-    http://user42.tuxfamily.org/x11-protocol-other/index.html
diff --git a/debian/my_mangle_examples.pl b/debian/my_mangle_examples.pl
deleted file mode 100755
index ac32f3f..0000000
--- a/debian/my_mangle_examples.pl
+++ /dev/null
@@ -1,76 +0,0 @@
-#!/usr/bin/perl -w
-
-# my_mangle_examples.pl -- check EXE_FILES use #!perl for interpreter
-
-# Copyright 2011 Kevin Ryde
-
-# my_mangle_examples.pl is shared by several distributions.
-#
-# my_mangle_examples.pl 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 3, or (at your option) any
-# later version.
-#
-# my_mangle_examples.pl 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 file.  If not, see <http://www.gnu.org/licenses/>.
-
-use strict;
-use warnings;
-use File::Find;
-
-# uncomment this to run the ### lines
-#use Smart::Comments;
-
-my $dir = $ARGV[0] || die "Usage: ./my_mangle_examples DIRECTORY";
-
--d "debian/$dir" or die "No such directory debian/$dir";
-find({ wanted => sub {
-         ### find: $_
-         if (/\.pm$/ && ! -d) {
-           mangle_file($_);
-         }
-       },
-       no_chdir => 1 },
-     "debian/$dir");
-
-sub mangle_file {
-  my ($filename) = @_;
-  ### mangle_file(): $filename
-  open FH, '<', $filename or die "Cannot open $filename: $!";
-  my $content = do { local $/=undef; <FH> };
-  my $count = ($content =~ s{F<(examples/[^>]*)>( in the .* sources)?}
-                            {
-                              my $example = $1;
-                              "F</usr/share/doc/$dir/$example"
-                                . (is_compressed($example) ? ".gz" : "")
-                                  . ">"
-                                }e);
-  close FH or die "Error closing $filename: $!";
-
-  if ($count) {
-    print "my_mangle_examples.pl: $count changes in $filename\n";
-
-    open FH, '>', $filename or die "Cannot write $filename: $!";
-    print FH $content  or die "Cannot write $filename: $!";
-    close FH or die "Error closing $filename: $!";
-  }
-}
-
-sub is_compressed {
-  my ($example) = @_;
-  my $fullname = "debian/$dir/usr/share/doc/$dir/$example";
-  if (-e $fullname) {
-    return (-s $fullname >= 4096);
-  }
-  if (-e "$fullname.gz") {
-    return 1;
-  }
-  die "Oops, no such file $fullname or .gz";
-}
-
-exit 0;
diff --git a/debian/rules b/debian/rules
deleted file mode 100755
index 1e527ff..0000000
--- a/debian/rules
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/usr/bin/make -f
-
-# Copyright 2011 Kevin Ryde
-
-# This file is part of X11-Protocol-Other.
-#
-# X11-Protocol-Other 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 3, or (at your option) any
-# later version.
-#
-# X11-Protocol-Other 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 X11-Protocol-Other.  If not, see <http://www.gnu.org/licenses/>.
-
-
-include /usr/share/cdbs/1/rules/debhelper.mk
-include /usr/share/cdbs/1/class/perlmodule.mk
-
-DEB_INSTALL_EXAMPLES_libx11-protocol-other-perl = examples/*
-
-# binary-fixup/libx11-protocol-other-perl::
-# 	debian/my_mangle_examples.pl libx11-protocol-other-perl
diff --git a/debian/source/format b/debian/source/format
deleted file mode 100644
index d3827e7..0000000
--- a/debian/source/format
+++ /dev/null
@@ -1 +0,0 @@
-1.0
diff --git a/debian/watch b/debian/watch
deleted file mode 100644
index 0b51250..0000000
--- a/debian/watch
+++ /dev/null
@@ -1,27 +0,0 @@
-# Web site version watch, for devscripts uscan program.
-
-# Copyright 2011 Kevin Ryde
-#
-# This file is part of X11-Protocol-Other.
-#
-# X11-Protocol-Other 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 3, or
-# (at your option) any later version.
-#
-# X11-Protocol-Other 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 X11-Protocol-Other.  If not, see <http://www.gnu.org/licenses/>.
-
-
-# Crib notes:
-# "man uscan" describes the format.
-# test with: uscan --report --verbose --watchfile=debian/watch
-
-version=3
-http://user42.tuxfamily.org/x11-protocol-other/index.html \
-	.*/X11-Protocol-Other-([0-9]+)\.tar\.gz

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libx11-protocol-other-perl.git



More information about the Pkg-perl-cvs-commits mailing list