~ubuntu-branches/ubuntu/intrepid/plplot/intrepid

« back to all changes in this revision

Viewing changes to debian/upload-debs.pl

  • Committer: Bazaar Package Importer
  • Author(s): Rafael Laboissiere
  • Date: 2006-11-04 10:19:34 UTC
  • mfrom: (2.1.8 edgy)
  • Revision ID: james.westby@ubuntu.com-20061104101934-mlirvdg4gpwi6i5q
Tags: 5.6.1-10
* Orphaning the package
* debian/control: Changed the maintainer to the Debian QA Group

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
#
18
18
# You should have received a copy of the GNU Library General Public License
19
19
# along with PLplot; if not, write to the Free Software
20
 
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA
 
20
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA
21
21
 
22
22
sub env_default {
23
23
    my $envvar = shift;
24
24
    my $default = shift;
25
25
    $value = defined $ENV{$envvar} ? $ENV{$envvar} : $default;
26
 
    eval qq{\$$envvar = "$value"};    
 
26
    eval qq{\$$envvar = "$value"};
27
27
}
28
28
 
29
29
env_default ("WWW_USER", "rlaboiss");
34
34
env_default ("GPGKEY", "0x4A5D72FE");
35
35
 
36
36
$debver = `cat /etc/debian_version`;
37
 
chomp $debver;    
 
37
chomp $debver;
38
38
 
39
39
$md5sum = "md5sum.txt";
40
40
$md5sum_asc = "$md5sum.asc";