Bug#660216: ITP: run-with-lockfile -- Simple binary to run command with lock file tracking

2014-04-25 Thread Petter Reinholdtsen

The source for the original run-with-lockfile.c code have moved, and is
now available from 
URL: 
https://raw.githubusercontent.com/mysociety/theyworkforyou/master/scripts/run-with-lockfile.c
 .
Since I proposed this package, mysociety have moved to a shell script
variant, available from
URL: 
https://raw.githubusercontent.com/mysociety/commonlib/master/bin/run-with-lockfile.sh
 .

I've asked the lockfile-progs package maintainer in bug #741300 if he
would be willing to include the shell script there instead of creating a
new package for so little code, but have not received any feedback in 
URL: http://bugs.debian.org/741300  yet.

The C version look like this:

/*
 * run-with-lockfile.c:
 * Lock a file and then execute a program.
 *
 * Copyright (c) 2003 Chris Lightfoot. All rights reserved.
 * Email: ch...@ex-parrot.com; WWW: http://www.ex-parrot.com/~chris/
 *
 * Chris has kindly licensed this under the GPL.
 *
 */

static const char rcsid[] = $Id: run-with-lockfile.c,v 1.1 2006-04-27 14:20:20 
twfy-live Exp $;

#include sys/types.h

#include errno.h
#include fcntl.h
#include stdio.h
#include stdlib.h
#include string.h
#include unistd.h

#include sys/stat.h

void usage(FILE *fp) {
fprintf(fp,
run-with-lockfile [-n] FILE COMMAND\n
\n
Open (perhaps create) and fcntl-lock FILE, then run COMMAND. If option -n\n
is given, fail immediately if the lock is held by another process;\n
otherwise, wait for the lock. When COMMAND is run, the variable LOCKFILE\n
will be set to FILE in its environment. COMMAND is run by passing it to\n
/bin/sh with the -c parameter.\n
\n
Exit value is that returned from COMMAND; or, if -n is given and the lock\n
could not be obtained, 100; or, if another error occurs, 101.\n
\n
Copyright (c) 2003-4 Chris Lightfoot, Mythic Beasts Ltd.\n
%s\n,
rcsid
);
}



int main(int argc, char *argv[]) {
char *file, *command, *envvar;
int wait = 1, n;
int fd;
struct stat st;
struct flock fl;

if (argv[1]  (0 == strcmp(argv[1], -h) || 0 == strcmp(argv[1], 
--help))) {
usage(stdout);
return 0;
}

if (argc == 4) {
if (strcmp(argv[1], -n) != 0) {
fprintf(stderr, run-with-lockfile: `%s' is not a valid option\n, 
argv[1]);
usage(stderr);
return 101;
} else {
wait = 0;
--argc;
++argv;
}
}

if (argc != 3) {
fprintf(stderr, run-with-lockfile: incorrect arguments\n);
usage(stderr);
return 101;
}

file= argv[1];
command = argv[2];

if (-1 == (fd = open(file, O_RDWR | O_CREAT, 0666))) {
fprintf(stderr, run-with-lockfile: %s: %s\n, file, strerror(errno));
return 101;
}

/* Paranoia. */
if (-1 == fstat(fd, st)) {
fprintf(stderr, run-with-lockfile: %s: %s\n, file, strerror(errno));
return 101;
} else if (!S_ISREG(st.st_mode)) {
fprintf(stderr, run-with-lockfile: %s: is not a regular file\n, file);
return 101;
}

fl.l_type   = F_WRLCK;
fl.l_whence = SEEK_SET;
fl.l_start  = 0;
fl.l_len= 0;

while (-1 == (n = fcntl(fd, wait ? F_SETLKW : F_SETLK, fl))  errno == 
EINTR);

if (n == -1) {
if (!wait  (errno == EAGAIN || errno == EACCES))
return 100;
else {
fprintf(stderr, run-with-lockfile: %s: set lock: %s\n, file, 
strerror(errno));
return 101;
}
}

/* Set an environment variable. */
envvar = malloc(strlen(file) + sizeof(LOCKFILE=));
sprintf(envvar, LOCKFILE=%s, file);
putenv(envvar);

errno = 0;
n = system(command);/* XXX should replace with fork/exec... */
if (n == -1) {
fprintf(stderr, run-with-lockfile: %s: %s\n, command, 
strerror(errno));
n = 101;
} else if (n == 127  errno != 0) {
fprintf(stderr, run-with-lockfile: /bin/sh: %s\n, strerror(errno));
n = 101;
}
/* else n is the return code of the command... */

close(fd);

return n;
}


The shell script version look like this:


#!/bin/sh

# This shell script alternative to run-with-lockfile depends on the
# Debian package lockfile-progs (sudo apt-get install lockfile-progs)
# which uses liblockfile for NFS-safe locking.

# The locking strategy is not exactly the same as Chris Lightfoot's
# run-with-lockfile.c [1] but it should be substitutable in many
# circumstances, and in addition is NFS-safe.

# [1] 
https://secure.mysociety.org/cvstrac/fileview?f=mysociety/run-with-lockfile/run-with-lockfile.c

FAIL_IF_OTHER=false

if [ x$1 = x-n ]
then
FAIL_IF_OTHER=true
shift
fi

if [ $# != 2 ]
then
echo Usage: $0 [-n] FILE COMMAND
exit 101
fi

LOCK_FILENAME=$1
COMMAND=$2

if [ $FAIL_IF_OTHER = true ]  lockfile-check -l $LOCK_FILENAME
then
exit 100
fi

# This is based on the example in lockfile-progs(1):

lockfile-create -l $LOCK_FILENAME || exit 101
lockfile-touch -l $LOCK_FILENAME 
# 

Processed: tagging 692483

2014-04-25 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 692483 + pending
Bug #692483 [wnpp] ITP: dnsperf -- DNS server performance testing tool
Added tag(s) pending.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
692483: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=692483
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/handler.s.c.139843606320724.transcr...@bugs.debian.org



Bug#744119: help with and sponsoring onion upload

2014-04-25 Thread David Moreno Montero
Just a quick note to inform that I just removed the sd-daemon.[ch] files
and I depend on system provided ones (at libsystemd-daemon-dev).

Also fixed jquery, I added the uncompressed one.

Currently its not in control / depends, as I want to make my head if it
should be enforced or not, but as systemd is on Debian's future, I guess it
fits.

Regads,


2014-04-24 18:44 GMT+02:00 David Moreno Montero dmor...@coralbits.com:

 You are right about sd-daemon.[ch] file, I forgot about it. I think I can
 remove it as its included in libsystemd-daemon-dev. I add the bug to the
 onion issue tracker to do it asap.

 The proper license for src (except that files) is both GPLv2 and Apache2.
 I just changed the README.rst.


 2014-04-24 18:19 GMT+02:00 László Böszörményi (GCS) g...@debian.org:

 On Thu, Apr 24, 2014 at 5:40 PM, David Moreno Montero
 dmor...@coralbits.com wrote:
  If you agree, you may branch the onion source at github, and pull
 request me the changes.
  OK, will do.

  About jquery, is it ok to include it non-minified? Also could be used
 straight from the jquery CDN, but somehow I feel users would feel more
 secure if its using only local resources.
  Better if not. 1) Not all users will have internet access for CDN. 2)
 jQuery may have performance / security issues anytime. Just depend on
 the needed version, as it's already packaged and taken care of.

  About library versioning, I just added it, but I got a bug report that
 its not following proper libtool standards. I'm still fixing that, but the
 current solution should be on the debian branch.
  OK, waiting for that.

  About manpages, I can try to prepare them ASAP, but some tips are
 welcome about how to create great manpages: which programs/commands? is
 groff the recomended way?
  For a start you may use 'apt-get install help2man; man help2man'.

 One more problem btw. LICENSE.txt states: Contents of the src folder
 (the Library) is licensed under both GPLv2+ and Apache 2. while
 README.rst states: The library is under the LGPL license, [...]
 (which one?), then see a file, for example src/onion/block.c which has
 only Apache 2.0 license header. Which one is correct? Then you link
 together everything with src/onion/sd-daemon.[ch] which is licensed
 under MIT. I'm not a license expert and don't know what the result
 will be. Does linking MIT with (L)GPL code allowed? Where's / how MIT
 license vanished from the resulting library?

 Laszlo/GCS




 --
 David Moreno Montero

 dmor...@coralbits.com
 +34 658 18 77 17
 +44 74 23 21 01 57
 http://www.coralbits.com/
 http://www.coralbits.com





-- 
David Moreno Montero

dmor...@coralbits.com
+34 658 18 77 17
+44 74 23 21 01 57
http://www.coralbits.com/
http://www.coralbits.com


Processed: your mail

2014-04-25 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tag 705275 + pending
Bug #705275 [wnpp] ITA: python-django-contact-form -- extensible contact-form 
application for Django
Added tag(s) pending.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
705275: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=705275
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/handler.s.c.139843994616150.transcr...@bugs.debian.org



Bug#745772: ITP: libdigest-perl-md5-perl -- Perl Implementation of Rivest's MD5 algorithm

2014-04-25 Thread Daniel Kahn Gillmor
On 04/24/2014 06:09 PM, Florian Schlichting wrote:
 Package: wnpp
 Owner: Florian Schlichting f...@debian.org
 Severity: wishlist
 X-Debbugs-CC: debian-de...@lists.debian.org,debian-p...@lists.debian.org
 
 * Package name: libdigest-perl-md5-perl
   Version : 1.9
   Upstream Author : Christian Lackas de...@lackas.net
 * URL : https://metacpan.org/release/Digest-Perl-MD5
 * License : Artistic or GPL-1+
   Programming Lang: Perl
   Description : Perl Implementation of Rivest's MD5 algorithm
 
 Digest::Perl::MD5s has the same interface as the much faster Digest::MD5, but
 unlike that, it is not an interface but a Perl implementation of MD5. Because
 of this it is slow but it works without C-Code. You should use Digest::MD5
 instead of this module if it is available. This module is only useful for
 
  - computers where you cannot install Digest::MD5 (e.g. lack of a C-Compiler)
  - encrypting only small amounts of data (less than one million bytes),

I think the use of the term encrypting above should be changed to
hashing, since MD5 is not an encryption algorithm.

 libdigest-perl-md5-perl is a dependency of libspreadsheet-parseexcel-perl,
 which uses its internal state in its decryption routines and hence cannot be
 switched to use Digest::MD5 instead. It will be maintained by pkg-perl.

huh, this seems like a weird thing to do.  What part of the internal
state does libspreadsheet-parseexcel-perl need?

is it just doing partial digests and then continuing, for example?  if
so, Digest::MD5 has $md5-clone() which should support this use case.

If it really needs access to the internal state of the digest function
for some reason, perhaps Digest::MD5 could be extended to provide that
access?  I know TMTOWTDI, but introducing this implementation to debian
seems like a regression, when we know that all debian systems actually
have Digest::MD5 already.

--dkg



signature.asc
Description: OpenPGP digital signature


Bug#745831: RFP: conman -- ConMan: The Console Manager

2014-04-25 Thread Yao-Po Wang
Package: wnpp
Severity: wishlist

* Package name: conman
  Version : 0.2.7
  Upstream Author : Chris Dunlap chris.m.dun...@gmail.com 
* URL : https://code.google.com/p/conman/
* License : GPL3
  Programming Lang: C
  Description : ConMan: The Console Manager

ConMan is a serial console management program designed to support a large 
number of console devices and simultaneous users.

It supports:

local serial devices
remote terminal servers (via the telnet protocol)
IPMI Serial-Over-LAN (via FreeIPMI)
Unix domain sockets
external processes (e.g., using Expect for telnet / ssh / ipmi-sol 
connections) 

Its features include:

logging (and optionally timestamping) console device output to file
connecting to consoles in monitor (R/O) or interactive (R/W) mode
allowing clients to share or steal console write privileges
broadcasting client output to multiple consoles 

-- 
blue119/Yao-Po Wang


-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20140425164911.ga7...@ypwang-nb.ypwang.info



Processed: ITP: phpunit-version -- library that helps with managing the version number of Git-hosted PHP projects

2014-04-25 Thread Debian Bug Tracking System
Processing control commands:

 block 744876 by -1
Bug #744876 [phpunit] Please update to last upstream version (currently 4.0.14)
744876 was not blocked by any bugs.
744876 was blocking: 743111
Added blocking bug(s) of 744876: 745846

-- 
744876: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=744876
745846: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=745846
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/handler.s.b.13984519322332.transcr...@bugs.debian.org



Bug#745846: ITP: phpunit-version -- library that helps with managing the version number of Git-hosted PHP projects

2014-04-25 Thread David Prévot
Package: wnpp
Severity: wishlist
Owner: David Prévot taf...@debian.org
Control: block 744876 by -1

* Package name: phpunit-version
  Version : 1.0.3
  Upstream Author : Sebastian Bergmann sebast...@phpunit.de
* URL : https://github.com/sebastianbergmann/phpunit-version
* License : BSD-3-clause
  Programming Lang: PHP
  Description : library that helps with managing the version number of 
Git-hosted PHP projects

 Version is a PHPUnit extension that provides a proper version depending on
 the given release number, and information from the current Git repository
 if there is one, as intended for PHPUnit.
 .
 PHPUnit is a unit testing suite for the PHP language, modelled on the xUnit
 testing framework.


It’s a needed dependency for the upcoming PHPUnit 4 and will be
maintained inside the PHP PEAR team.


signature.asc
Description: Digital signature


Bug#745847: ITP: perm -- efficient mapping of short reads with periodic spaced seeds

2014-04-25 Thread Andreas Tille
Package: wnpp
Severity: wishlist
Owner: Andreas Tille ti...@debian.org

* Package name: perm
  Version : 0.4.0
  Upstream Author : Yangho Chen yangh...@usc.edu
* URL : http://code.google.com/p/perm/
* License : Apache 2.0
  Programming Lang: C++
  Description : efficient mapping of short reads with periodic spaced seeds
 PerM is a software package which was designed to perform highly efficient
 genome scale alignments for hundreds of millions of short reads produced by
 the ABI SOLiD and Illumina sequencing platforms. Today PerM is capable of
 providing full sensitivity for alignments within 4 mismatches for 50bp SOLID
 reads and 9 mismatches for 100bp Illumina reads.


This package was prepared by the BioLinux team and taken over into Debian Med
team maintenance at

   Vcs-Svn: svn://anonscm.debian.org/debian-med/trunk/packages/perm/trunk/


-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/20140425185301.31092.28787.report...@mail.an3as.eu



Bug#745846: ITP: phpunit-version -- library that helps with managing the version number of Git-hosted PHP projects

2014-04-25 Thread David Prévot
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Hi,

Le 25/04/2014 14:14, David Prévot a écrit :

 * Package name: phpunit-version

 It’s a needed dependency for the upcoming PHPUnit 4 and will be
 maintained inside the PHP PEAR team.

The resulting package is very small, and the code is even smaller than
its documentation:

$ du -sh /usr/share/php/SebastianBergmann/Version \
 /usr/share/doc/phpunit-version
12K /usr/share/php/SebastianBergmann/Version
24K /usr/share/doc/phpunit-version

I doubt ftpmasters will appreciate such package, I’ll look closer at the
other new phpunit-$stuff needed for #744876 before opening another ITP.
In the mean time, I’ve pushed a packaging repository to Alioth (Prach, I
set you up as an uploader, I hope that’s OK with you):

http://anonscm.debian.org/gitweb/?p=pkg-php/phpunit-version.git

(It’s ready for upload, but I’d like to clarify the status of the other
phpunit-$stuff before doing so.)

PHPUnit 4.0 seems still available via PEAR for now, but I’m not sure
there is a proper tool available to “extract” phar files (as we do for
some .jar, e.g., in the moz-ext team), is there?

Regards

David


-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQEcBAEBCAAGBQJTWrtsAAoJEAWMHPlE9r08OXoH/2fEFBPrGCnqlS6QIcqF+SF5
pmayDfFVi6pCkAUKNOs/vXxvaCKhLYCM50Vn+fWrvZX/2u/9YtIiPCEfiYRRM3G5
Alt8e8XLHT3BoHr/hQ2PgP5tiesCYbhcGybGlctv84qFA13zUuRq3ep+euc/aQBj
XhwQ5kpf+0P/2gLXi/DPEAZcIdh5y5iqIj7poOOfogPHa4cGEXArbDgZP9Vqb5ND
ZFkLGoZQG+BUpEphKqNsfzjychFirl/GXh3xIszjBBOYhY4en2SL1zl+lD6amLhP
ATdwFz719wk96d/ELdOb3+WUDk3uo0c4+7I3EqGOAJUXu5MA/MK4SDtYbsCywlk=
=X6Q9
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/535abb6d.1000...@tilapin.org



Bug#745853: ITP: phpunit-diff -- diff implementation - stand-alone component from PHPUnit

2014-04-25 Thread David Prévot
Package: wnpp
Severity: wishlist
Owner: David Prévot taf...@debian.org
Control: block 744876 by -1

* Package name: phpunit-diff
  Version : 1.1.0
  Upstream Author : Sebastian Bergmann sebast...@phpunit.de
* URL : https://github.com/sebastianbergmann/phpunit-diff
* License : BSD-3-clause
  Programming Lang: PHP
  Description : diff implementation - stand-alone component from PHPUnit

 Diff is a PHPUnit extension that provides comparison and parsing features.
 .
 PHPUnit is a unit testing suite for the PHP language, modelled on the xUnit
 testing framework.


It’s a needed dependency for the upcoming PHPUnit 4 and will be
maintained inside the PHP PEAR team.


signature.asc
Description: Digital signature


Processed: ITP: phpunit-diff -- diff implementation - stand-alone component from PHPUnit

2014-04-25 Thread Debian Bug Tracking System
Processing control commands:

 block 744876 by -1
Bug #744876 [phpunit] Please update to last upstream version (currently 4.0.14)
744876 was blocked by: 745846
744876 was blocking: 743111
Added blocking bug(s) of 744876: 745853

-- 
744876: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=744876
745853: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=745853
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/handler.s.b.139845833110447.transcr...@bugs.debian.org



Bug#745311: RFA: ekg2 -- instant messenger and IRC client for UNIX systems

2014-04-25 Thread Mateusz Łukasik

Hi,

I can adopt ekg2 package.


--
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/535ac98e.7030...@linuxmint.pl



Bug#745854: ITP: phpunit-exporter -- export variables for visualization - PHPUnit component

2014-04-25 Thread David Prévot
Package: wnpp
Severity: wishlist
Owner: David Prévot taf...@debian.org
Control: block 744876 by -1

* Package name: phpunit-exporter
  Version : 1.0.0
  Upstream Author : Sebastian Bergmann sebast...@phpunit.de
* URL : https://github.com/sebastianbergmann/phpunit-exporter
* License : BSD-3-clause
  Programming Lang: PHP
  Description : export variables for visualization - PHPUnit component

 Exporter is a PHPUnit extension that provides the functionality to export
 PHP variables for visualization.
 .
 PHPUnit is a unit testing suite for the PHP language, modelled on the xUnit
 testing framework.


It’s a needed dependency for the upcoming PHPUnit 4 and will be
maintained inside the PHP PEAR team.


signature.asc
Description: Digital signature


Processed: ITP: phpunit-exporter -- export variables for visualization - PHPUnit component

2014-04-25 Thread Debian Bug Tracking System
Processing control commands:

 block 744876 by -1
Bug #744876 [phpunit] Please update to last upstream version (currently 4.0.14)
744876 was blocked by: 745853 745846
744876 was blocking: 743111
Added blocking bug(s) of 744876: 745854

-- 
744876: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=744876
745854: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=745854
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/handler.s.b.139845889614063.transcr...@bugs.debian.org



Bug#745859: ITP: phpunit-environment -- functionality to handle HHVM/PHP environments - PHPUnit component

2014-04-25 Thread David Prévot
Package: wnpp
Severity: wishlist
Owner: David Prévot taf...@debian.org
Control: block 744876 by -1

* Package name: phpunit-environment
  Version : 1.0.0
  Upstream Author : Sebastian Bergmann sebast...@phpunit.de
* URL : https://github.com/sebastianbergmann/phpunit-diff
* License : BSD-3-clause
  Programming Lang: PHP
  Description : functionality to handle HHVM/PHP environments - PHPUnit 
component

 This component provides functionality that helps writing PHP code that has
 runtime-specific (PHP / HHVM) execution paths.
 .
 PHPUnit is a unit testing suite for the PHP language, modelled on the xUnit
 testing framework.


It’s a needed dependency for the upcoming PHPUnit 4 and will be
maintained inside the PHP PEAR (and Composer) team.


signature.asc
Description: Digital signature


Processed: ITP: phpunit-environment -- functionality to handle HHVM/PHP environments - PHPUnit component

2014-04-25 Thread Debian Bug Tracking System
Processing control commands:

 block 744876 by -1
Bug #744876 [phpunit] Please update to last upstream version (currently 4.0.14)
744876 was blocked by: 745853 745846 745854
744876 was blocking: 743111
Added blocking bug(s) of 744876: 745859

-- 
744876: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=744876
745859: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=745859
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/handler.s.b.139846121930105.transcr...@bugs.debian.org



Bug#742864: ITP: openjdk-8 -- OpenJDK 8 - Open source implementation of the Java Platform Standard Edition 8

2014-04-25 Thread Tomas Martišius

Hi,

Created repo on https://admin.vdu.lt/gitweb/?p=openjdk-8.git and pushed 
my changes

(git clone https://admin.vdu.lt/git/openjdk-8.git).

To build new version sources http://87.98.165.193/checkjdk.php needs to 
be updated.


For now package builds successfully, but openjdk-8-jre-headless is huge 
and JDK/JRE is slow then in use.


Tomas

2014.04.18 14:41, Emmanuel Bourg rašė:

Le 18/04/2014 07:04, Tomas Martišius a écrit :


How can I contribute to your work?

Hi Tomas,

Thank you for helping. Please push your changes in a repository on
Github (or elsewhere), I'll review and merge them.

Emmanuel Bourg





--
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/535ad48d.6060...@puga.vdu.lt



Bug#734932: marked as done (ITP: mate-indicator-applet -- MATE panel indicator applet)

2014-04-25 Thread Debian Bug Tracking System
Your message dated Fri, 25 Apr 2014 22:00:05 +
with message-id e1wdoa9-0003be...@franck.debian.org
and subject line Bug#734932: fixed in mate-indicator-applet 1.8.0-1
has caused the Debian Bug report #734932,
regarding ITP: mate-indicator-applet -- MATE panel indicator applet
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
734932: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=734932
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: wnpp
Severity: wishlist

* Package name: mate-indicator-applet
  Version : 1.6.0
  Upstream Author : Stefano Karapetsas stef...@karapetsas.com
* URL : http://www.mate-desktop.org/
* License : GPL, LGPL
  Programming Lang: C
  Description : MATE panel indicator applet

  indicator-applet is an applet to display information from
  various applications consistently in the MATE panel.
  .
  Currently this includes support for messaging applications in the
  indicator-messages package.
  .
  This package will be maintained by the Debian MATE Packaging Team.
---End Message---
---BeginMessage---
Source: mate-indicator-applet
Source-Version: 1.8.0-1

We believe that the bug you reported is fixed in the latest version of
mate-indicator-applet, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 734...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Mike Gabriel sunwea...@debian.org (supplier of updated mate-indicator-applet 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 22 Apr 2014 22:19:07 +0200
Source: mate-indicator-applet
Binary: mate-indicator-applet
Architecture: source amd64
Version: 1.8.0-1
Distribution: unstable
Urgency: low
Maintainer: MATE Packaging Team pkg-mate-t...@lists.alioth.debian.org
Changed-By: Mike Gabriel sunwea...@debian.org
Description: 
 mate-indicator-applet - MATE panel indicator applet
Closes: 734932
Changes: 
 mate-indicator-applet (1.8.0-1) unstable; urgency=low
 .
   * Initial release. (Closes: #734932).
Checksums-Sha1: 
 20e8903c32bb0acb2e65f960f1b9f8276ed16e8c 2367 mate-indicator-applet_1.8.0-1.dsc
 743124bedc979b611c2a4b1fe7af80d9212f22c7 86712 
mate-indicator-applet_1.8.0.orig.tar.xz
 1d821656745cf84e20dc1e25b9b27d6d29465818 2240 
mate-indicator-applet_1.8.0-1.debian.tar.xz
 dbc95fb4b78ca30c517a83a28f38c8479e1cc4c2 82072 
mate-indicator-applet_1.8.0-1_amd64.deb
Checksums-Sha256: 
 206e24ca18db5a3d352ae17eeace98ce93376154fb984e7fd3955e3b50460e6c 2367 
mate-indicator-applet_1.8.0-1.dsc
 8e61aa74433e0a43cc81604bc3392b12bcd4ba7de0eac6cb8ed517503007a025 86712 
mate-indicator-applet_1.8.0.orig.tar.xz
 98fcd6817136dfb9cbe9e9f175d2550b7d9f0703065c55b37ab928365b6a771b 2240 
mate-indicator-applet_1.8.0-1.debian.tar.xz
 22c06dadf7a33076eb1cd00c74bfa0b0a5489465cdb7c48f1b5b9644c95090c3 82072 
mate-indicator-applet_1.8.0-1_amd64.deb
Files: 
 d8d98d1b34765798f9c2432e4db2f6aa 82072 x11 optional 
mate-indicator-applet_1.8.0-1_amd64.deb
 fe1d27c94af04bb7266d2c2b8b6cdaa8 2367 x11 optional 
mate-indicator-applet_1.8.0-1.dsc
 ce665bda93d41a2443daf304d2ae3947 86712 x11 optional 
mate-indicator-applet_1.8.0.orig.tar.xz
 8efe38384d3437cd02bf29ddb3e11bd7 2240 x11 optional 
mate-indicator-applet_1.8.0-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBCAAGBQJTVtEfAAoJEJr0azAldxsxf3MP/jQKUCYSW7nC12HlSB3S/ZKl
CcTdBDC3wafs/geU49r/duSvO+2IEtuasl1o1HFTCxMBUsCxjRMUiHFBn7o9aTI2
N1FGaNbE8Wf4LOQu5FeK7/vKiXhVP702LpQSG+N0+Wm/rFTHq/22K4KkLSAuTVlD
ThG/cmCug43rkjDzyng0QPqkRp0ZA3savtZGC41j/8gvvSdVmWvkW0O85ybmgtFy
jk3bEh9hVqSGGdhhiWQZuDOv5tHRpU96V/JsX5kM7za9wprBdl+ywK7DFRHjwKBo
iAj5JQ9+u91pmSRhKTjchjG7tYbeYDJASr7yit1afpUc5hjcQy2IZ2RBNzPXekI+
xqeEX9XOVwrD7kFVVkh6bzdmS+fjtDr+Ccmqh9Q/3TTcZCq5NSlEUilpovccbJEa
Q3F/ktERgF9cvB+RIV8vkZF5H8Om1QlWeFjLA6GTWx3GaJttGWynEko8fvptsgKg
Y67MTAzF9v5bJT112j+UXsGRNmTLw65AUG11OQp6hriYMzlRdhOfyQ4YVzwbxXSx
WYwjCFS/SsXktTm27Yb/tkl6Wh8IWfbzNU3F0DXyvqSdjVnM3+8A5yinlpwiZ27s
4gHNIt8twvSMFKmZCtAkjAJe18D2O64kTwUwtnJeuW6zVX9pbhIz3CAoXT+NbveP
rHNkWoS8IYmpJvGVX4CU
=rPo8
-END PGP SIGNATUREEnd Message---


Processed: tagging 692483

2014-04-25 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 692483 + pending
Bug #692483 [wnpp] ITP: dnsperf -- DNS server performance testing tool
Ignoring request to alter tags of bug #692483 to the same tags previously set
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
692483: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=692483
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/handler.s.c.139846581827348.transcr...@bugs.debian.org



Processed: tagging 692483

2014-04-25 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 692483 + pending
Bug #692483 [wnpp] ITP: dnsperf -- DNS server performance testing tool
Ignoring request to alter tags of bug #692483 to the same tags previously set
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
692483: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=692483
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/handler.s.c.139846672232658.transcr...@bugs.debian.org



Bug#745311: RFA: ekg2 -- instant messenger and IRC client for UNIX systems

2014-04-25 Thread Marcin Owsiany
25 kwi 2014 23:28 Mateusz Łukasik mat...@linuxmint.pl napisał(a):

 Hi,

 I can adopt ekg2 package.

Please go ahead.