summaryrefslogtreecommitdiffstats
path: root/credits2po
diff options
context:
space:
mode:
authorColin Guthrie <colin@mageia.org>2013-09-01 14:17:57 +0100
committerColin Guthrie <colin@mageia.org>2013-09-01 15:12:40 +0100
commit8f0579cb80f3a22f9bf8f0fad4702f205e8b2eff (patch)
treeb084c012d0dda91955c6a5fba908a1389fca7fca /credits2po
parent5bb10b5622e39a24425647a7c5476315a1581463 (diff)
downloadcontrol-center-8f0579cb80f3a22f9bf8f0fad4702f205e8b2eff.tar
control-center-8f0579cb80f3a22f9bf8f0fad4702f205e8b2eff.tar.gz
control-center-8f0579cb80f3a22f9bf8f0fad4702f205e8b2eff.tar.bz2
control-center-8f0579cb80f3a22f9bf8f0fad4702f205e8b2eff.tar.xz
control-center-8f0579cb80f3a22f9bf8f0fad4702f205e8b2eff.zip
Delete the massively outdated and unshipped contributors.pl file.
This is not shipped and if we try to update it via the script it generates a quite different (and altogether less interesting) file.
Diffstat (limited to 'credits2po')
-rwxr-xr-xcredits2po35
1 files changed, 0 insertions, 35 deletions
diff --git a/credits2po b/credits2po
deleted file mode 100755
index fd011bc4..00000000
--- a/credits2po
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/usr/bin/perl
-
-use strict;
-use lib qw(/usr/lib/libDrakX);
-use MDK::Common;
-use standalone;
-use run_program;
-
-output("contributors.pl",
- join("\n",
- qq(#/usr/bin/perl
-#
-# DO NOT ALTER HERE !!!
-# THIS IS GENERATED FROM /usr/share/doc/mageia-release-<RELEASE>/CREDITS
-# WHICH IS FILLED FROM THE MAGEIA WIKI
-#
-use lib qw(/usr/lib/libDrakX);
-use common;
-{
-),
- (map {
- if (/^\s*\* (.*)$/) {
- my ($contributor, $descr) = split(', ', $1, 2);
- #if (/^\s*\* (.*), (.*)/) {
- chomp($descr);
- $descr =~ s/(["@$])/\\$1/g;
- join('', qq(\t"$contributor" => ), $descr ? qq(N("$descr"),) : '"",');
- } else {
- chomp;
- qq(\tN("$_") => "",);
- }
- } grep { $_ ne "\n" } cat_(glob("/usr/share/doc/mageia-release-*/CREDITS"))),
- "}"
- )
- );