Bug#945920: Temporary Fix

2020-01-15 Thread Onur Aslan
Can we at least apply this temporary fix until we figure something out?

I think its better than having a completely unusable package, and I
believe tracing was always enabled until this very last version.



Bug#859883: ycmd: Don't hardcode path to tern for JavaScript completion

2017-05-05 Thread Onur Aslan
Control: tags -1 pending

Thanks for reporting and sorry for late reply.

I found out about ~/.npm-packages (by default `npm install -g tern` is
using this directory, ~/.npm-global is just used as an example in the
documentation you linked), but I forgot to update patch.

I applied your revisited patch but ycmd in Debian is always trying
to use tern with nodejs (installed by Debian package manager). I hope
this will do the trick.

On 2017-04-08, Mirosław Zalewski wrote:
> Package: ycmd
> Version: 0+20161219+git486b809-1
> Severity: normal
> 
> Dear Maintainer,
> 
> ycmd currently looks for tern (needed for JavaScript completion) in 
> ~/node_modules/tern. As README.Debian states, this is what users would
> get if they run `npm install tern`.
> 
> However, npm in Debian is in so bad shape, that it outright fails to
> install some packages (see e.g. 780789). It has prompted discussion of
> removal of npm from Debian altogether (see 857986). It is very likely
> that people will use npm outside of Debian.
> 
> It seems that upstream currently prefers to install user-wide npm
> modules into `~/.npm-global` (see [1]). ycmd users who follow upstream
> instruction (i.e. majority of them) will fail to get tern running inside
> ycmd, as paths diverge.
> 
> Please consider modifying package to allow for tern to be placed outside
> of `~/node_modules/`.
> 
> Attached is revised 05-tern-support.patch that will look for tern in
> $PATH and resort to ~/node_modules if it was not found.
> 
> Best regards,
> Mirosław Zalewski
> 
> [1] https://docs.npmjs.com/getting-started/fixing-npm-permissions
> 
> *** debian/patches/05-tern-support.patch
> Description: Debian doesn't have node-tern. This patch is making ycmd to
>  use locally installed tern with `npm install tern` command.
> 
> Index: ycmd-0+20161219+git486b809/ycmd/completers/javascript/tern_completer.py
> ===
> --- 
> ycmd-0+20161219+git486b809.orig/ycmd/completers/javascript/tern_completer.py
> +++ ycmd-0+20161219+git486b809/ycmd/completers/javascript/tern_completer.py
> @@ -36,20 +36,14 @@ from ycmd.completers.completer_utils imp
>  
>  _logger = logging.getLogger( __name__ )
>  
> -PATH_TO_TERN_BINARY = os.path.abspath(
> -  os.path.join(
> -os.path.dirname( __file__ ),
> -'..',
> -'..',
> -'..',
> -'third_party',
> -'tern_runtime',
> -'node_modules',
> -'tern',
> -'bin',
> -'tern' ) )
> +PATH_TO_TERN_BINARY = utils.PathToFirstExistingExecutable( [ 'tern' ] )
> +if not PATH_TO_TERN_BINARY:
> +  PATH_TO_TERN_BINARY = os.path.join(
> +os.path.expanduser('~'),
> +'node_modules',
> +'tern')
>  
> -PATH_TO_NODE = utils.PathToFirstExistingExecutable( [ 'node' ] )
> +PATH_TO_NODE = utils.PathToFirstExistingExecutable( [ 'nodejs' ] )
>  
>  # host name/address on which the tern server should listen
>  # note: we use 127.0.0.1 rather than localhost because on some platforms
> 
> 
> -- System Information:
> Debian Release: 9.0
>   APT prefers testing
>   APT policy: (990, 'testing'), (400, 'unstable'), (102, 'experimental'), 
> (10, 'stable')
> Architecture: amd64 (x86_64)
> 
> Kernel: Linux 4.9.0-2-amd64 (SMP w/4 CPU cores)
> Locale: LANG=pl_PL.UTF-8, LC_CTYPE=pl_PL.UTF-8 (charmap=UTF-8) (ignored: 
> LC_ALL set to pl_PL.UTF-8)
> Shell: /bin/sh linked to /bin/dash
> Init: systemd (via /run/systemd/system)
> 
> Versions of packages ycmd depends on:
> ii  libboost-filesystem1.62.0  1.62.0+dfsg-4
> ii  libboost-python1.62.0  1.62.0+dfsg-4
> ii  libboost-regex1.62.0   1.62.0+dfsg-4
> ii  libboost-system1.62.0  1.62.0+dfsg-4
> ii  libc6  2.24-9
> ii  libclang1-3.9  1:3.9.1-5
> ii  libgcc11:6.3.0-11
> ii  libpython2.7   2.7.13-2
> ii  libstdc++6 6.3.0-11
> ii  python-bottle  0.12.13-1
> ii  python-frozendict  0.5-1
> ii  python-future  0.15.2-4
> ii  python-jedi0.10.0~git1+f05c071-1
> ii  python-requests2.12.4-1
> ii  python-waitress1.0.1-1
> ii  python2.7  2.7.13-2
> pn  python:any 
> 
> Versions of packages ycmd recommends:
> pn  libclang-common-3.9-dev  
> pn  node-typescript  
> ii  vim-youcompleteme0+20161219+git194ff33-1
> 
> ycmd suggests no packages.
> 
> -- no debconf information

-- 
regards,
   Onur Aslan

GPG Key   : E5EF 3C2C 67BC 6F76 DAB3  A40E 7B96 C7AF EB16 673C  .''`.
Website   : https://onur.im: :'  :
Github: https://github.com/onur`. `'`
Debian QA : https://qa.debian.org/developer.php?login=o...@onur.im   `-


signature.asc
Description: Digital signature


Bug#849239: ycmd is a seperate process

2017-01-26 Thread Onur Aslan
Control: severity -1 normal
Control: affects -1 - vim-youcompleteme

Hi.

Thanks for reporting but like Jan Hudec said, ycmd is a seperate process.
vim-youcompleteme is not using ycmd as a module, it is just spawning
ycmd process and communicating ycmd through http interface.

Currently Debian is missing some build dependencies (libboost-python3)
to compile ycmd with python3 support.


signature.asc
Description: Digital signature


Bug#851692: chromium: startup script is disabling all extensions

2017-01-17 Thread Onur Aslan
Package: chromium
Version: 55.0.2883.75-4
Severity: normal

Dear Maintainer,

After upgrading chromium:amd64 55.0.2883.75-3 -> 55.0.2883.75-4, startup script
disabled all my extensions and I was unable to install any extension from 
chromium
web store.

I had to comment out following lines from /usr/bin/chromium to run my 
extensions:

# Whitelist installed extensions that are specified via --load-extension
if [ $want_remote_extensions -eq 0 ]; then
  export CHROMIUM_FLAGS="$CHROMIUM_FLAGS --disable-extensions-except=$(echo 
$CHROMIUM_FLAGS | tr ' ' \\n | grep \\-\\-load-extension | cut -d= -f2 | tr \\n 
,)"
fi


-- System Information:
Debian Release: 9.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.9.0-1-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages chromium depends on:
ii  libasound2   1.1.2-1
ii  libatk1.0-0  2.22.0-1
ii  libavcodec57 7:3.2.2-1
ii  libavformat577:3.2.2-1
ii  libavutil55  7:3.2.2-1
ii  libc62.24-9
ii  libcairo21.14.8-1
ii  libcups2 2.2.1-5
ii  libdbus-1-3  1.10.14-1
ii  libevent-2.0-5   2.0.21-stable-2.1
ii  libexpat12.2.0-2
ii  libflac8 1.3.2-1
ii  libfontconfig1   2.11.0-6.7
ii  libfreetype6 2.6.3-3+b1
ii  libgcc1  1:6.3.0-2
ii  libgdk-pixbuf2.0-0   2.36.4-1
ii  libglib2.0-0 2.50.2-2
ii  libgtk2.0-0  2.24.31-1
ii  libharfbuzz0b1.2.7-1+b1
ii  libicu57 57.1-5
ii  libjpeg62-turbo  1:1.5.1-2
ii  libminizip1  1.1-8
ii  libnspr4 2:4.12-6
ii  libnss3  2:3.26.2-1
ii  libpango-1.0-0   1.40.3-3
ii  libpangocairo-1.0-0  1.40.3-3
ii  libpng16-16  1.6.28-1
ii  libpulse09.0-5
ii  libre2-3 20170101+dfsg-1
ii  libsnappy1v5 1.1.3-3
ii  libstdc++6   6.3.0-2
ii  libvpx4  1.6.0-3
ii  libwebp6 0.5.2-1
ii  libwebpdemux20.5.2-1
ii  libx11-6 2:1.6.4-2
ii  libx11-xcb1  2:1.6.4-2
ii  libxcb1  1.12-1
ii  libxcomposite1   1:0.4.4-1
ii  libxcursor1  1:1.1.14-1+b1
ii  libxdamage1  1:1.1.4-2+b1
ii  libxext6 2:1.3.3-1
ii  libxfixes3   1:5.0.3-1
ii  libxi6   2:1.7.8-2
ii  libxml2  2.9.4+dfsg1-2.1
ii  libxrandr2   2:1.5.1-1
ii  libxrender1  1:0.9.10-1
ii  libxslt1.1   1.1.29-2
ii  libxss1  1:1.2.2-1
ii  libxtst6 2:1.2.3-1
ii  x11-utils7.7+3
ii  xdg-utils1.1.1-1
ii  zlib1g   1:1.2.8.dfsg-4

Versions of packages chromium recommends:
ii  fonts-liberation  1:1.07.4-2

Versions of packages chromium suggests:
pn  chromium-driver
pn  chromium-l10n  
pn  chromium-shell 
pn  chromium-widevine  

-- no debconf information

-- 
regards,
       Onur Aslan

GPG Key   : E5EF 3C2C 67BC 6F76 DAB3  A40E 7B96 C7AF EB16 673C  .''`.
Website   : https://onur.im: :'  :
Github: https://github.com/onur`. `'`
Debian QA : https://qa.debian.org/developer.php?login=o...@onur.im   `-



Bug#850013: vim-youcompleteme: Please provide a newer version, the current one doesn't work any more

2017-01-04 Thread Onur Aslan
Control: tags -1 pending

Thanks for reporting. This package is actually updated and a working version is 
available
in git repository. I just need to solve a problem before upload.

On 2017-01-03, Philipp Marek wrote:
> Package: vim-youcompleteme
> Version: 0+20160327+git1b76af4-2
> Severity: normal
> 
> Please provide a newer version, the current one doesn't work with current 
> neovim and python-neovim (0.1.12, via pip) any more.
> 
> When starting to edit a file (going into insert mode) I get this error:
> 
> Error detected while processing function 
> 80_SetOmnicompleteFunc[1]..80_Pyeval[2]..provider#python#Call:
> line   18:
> error caught in request handler 'python_eval 
> ('ycm_state.NativeFiletypeCompletionUsable()',)':
> Traceback (most recent call last):
>   File 
> "/usr/local/lib/python2.7/dist-packages/neovim/plugin/script_host.py", line 
> 150, in python_eval
> return eval(expr, self.module.__dict__)
>   File "", line 1, in 
>   File "/usr/share/vim-youcompleteme/python/ycm/youcompleteme.py", line 
> 255, in NativeFiletypeCompletionUsable
> self.NativeFiletypeCompletionAvailable() )
>   File "/usr/share/vim-youcompleteme/python/ycm/youcompleteme.py", line 
> 250, in NativeFiletypeCompletionAvailable
> vimsupport.CurrentFiletypes() ] )
>   File "/usr/share/vim-youcompleteme/python/ycm/youcompleteme.py", line 
> 240, in FiletypeCompleterExistsForFiletype
> exists_completer = SendCompleterAvailableRequest( filetype )
>   File 
> "/usr/share/vim-youcompleteme/python/ycm/client/completer_available_request.py",
>  line 57, in SendCompleterAvailableRequest
> request.Start()
> 
> But as requested on #neovim I already fetched the current python-neovim and 
> python3-neovim libraries.
> 
> 
> Thanks a lot for your efforts!
> 
> 
> -- System Information:
> Debian Release: stretch/sid
>   APT prefers testing
>   APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable'), (1, 
> 'experimental')
> Architecture: amd64 (x86_64)
> 
> Kernel: Linux 4.8.0-1-amd64 (SMP w/4 CPU cores)
> Locale: LANG=de_AT.UTF-8, LC_CTYPE=de_AT.UTF-8 (charmap=UTF-8)
> Shell: /bin/sh linked to /bin/dash
> Init: systemd (via /run/systemd/system)
> 
> Versions of packages vim-youcompleteme depends on:
> ii  python3-future0.15.2-4
> ii  python3-requests  2.12.4-1
> ii  python3-requests-futures  0.9.7-1
> pn  python3:any   
> ii  vim-athena [vim-python]   2:8.0.0134-1
> ii  vim-gtk3 [vim-python] 2:8.0.0134-1
> ii  ycmd      0+20160327+gitc3e6904-1+b1
> 
> Versions of packages vim-youcompleteme recommends:
> ii  vim-addon-manager  0.5.6
> 
> vim-youcompleteme suggests no packages.
> 
> -- no debconf information

-- 
regards,
   Onur Aslan

GPG Key   : E5EF 3C2C 67BC 6F76 DAB3  A40E 7B96 C7AF EB16 673C  .''`.
Website   : https://onur.im: :'  :
Github: https://github.com/onur`. `'`
Debian QA : https://qa.debian.org/developer.php?login=o...@onur.im   `-



Bug#838378: ycmd: Use python3-jedi with the latest vim-youcompleteme update to have python autocompletion

2016-12-20 Thread Onur Aslan
I actually realized this issue is already well explained in README.Debian:

You can see a copy of it in: 
https://anonscm.debian.org/cgit/collab-maint/ycmd.git/tree/debian/README.Debian?h=debian/0%2b20160327%2bgitc3e6904-1


On 2016-09-20, Sandor Bodo-Merle wrote:
> Dear Maintainer,
> 
> After the latest vim-youcompleteme update (built with python3), ycmd 
> complains that no jedi support is available.
> By manually installing python3-jedi the error message is gone.

-- 
regards,
   Onur Aslan

GPG Key   : E5EF 3C2C 67BC 6F76 DAB3  A40E 7B96 C7AF EB16 673C  .''`.
Website   : https://onur.im: :'  :
Github: https://github.com/onur`. `'`
Debian QA : https://qa.debian.org/developer.php?login=o...@onur.im   `-


signature.asc
Description: Digital signature


Bug#823205: ycmd: javascript autocomplete should be disabled until node-tern is packaged

2016-12-20 Thread Onur Aslan
Thanks for reporting.

I am sorry but this is default behavior of YouCompleteMe. You can also install 
tern
manually with npm and use it with this package[1]. But even if you install tern,
ycmd will still complain about .tern-project file.


[1]: 
https://anonscm.debian.org/cgit/collab-maint/ycmd.git/tree/debian/README.Debian?h=debian/0%2b20160327%2bgitc3e6904-1


On 2016-05-02, Edward Betts wrote:
> Package: ycmd
> Version: 0+20160327+gitc3e6904-1
> Severity: normal
> 
> The ternjs module is not available in Debian, so Javascript autocomplete
> doesn't work.
> 
> Whenever I open Javascript in vim I get a RuntimeError from ycmd about a
> missing .tern-project file. 
> 
> If Javascript support were disabled in the ycmd package then this spurious
> error wouldn't be displayed.
> 
> Javascript autocomplete should be disabled until ternjs is packaged.
> -- 
> Edward.

-- 
regards,
   Onur Aslan

GPG Key   : E5EF 3C2C 67BC 6F76 DAB3  A40E 7B96 C7AF EB16 673C  .''`.
Website   : https://onur.im: :'  :
Github: https://github.com/onur`. `'`
Debian QA : https://qa.debian.org/developer.php?login=o...@onur.im   `-


signature.asc
Description: Digital signature


Bug#838378: ycmd: Use python3-jedi with the latest vim-youcompleteme update to have python autocompletion

2016-12-20 Thread Onur Aslan
Thanks for reporting. vim-youcompleteme is built with python2 but you can
use JediHTTP (python completer of ycmd) with both python2 and python3.
Default is python2 that's why this package is depending on python-jedi
instead of python3-jedi.

If you want to use python3 completion you have to install python3-jedi
and set g:ycm_python_binary_path to python3 in your vimrc.

IMO depending on both python-jedi and python3-jedi will cause user to install
so many unnecessary dependencies. But I think this must be explained in
README.Debian to make some clearification.


-- 
regards,
   Onur Aslan

GPG Key   : E5EF 3C2C 67BC 6F76 DAB3  A40E 7B96 C7AF EB16 673C  .''`.
Website   : https://onur.im: :'  :
Github: https://github.com/onur`. `'`
Debian QA : https://qa.debian.org/developer.php?login=o...@onur.im   `-


signature.asc
Description: Digital signature


Bug#837646: vim-youcompleteme: Missing python dependencies

2016-09-15 Thread Onur Aslan
Thanks for reporting, I am working on python3 transition.
This package is already using python3 in ubuntu branch.

I'll also update ycmd and vim-youcompleteme to latest upstream version.

-- 
regards,
   Onur Aslan

GPG Key   : E5EF 3C2C 67BC 6F76 DAB3  A40E 7B96 C7AF EB16 673C  .''`.
Website   : https://onur.im: :'  :
Github: https://github.com/onur`. `'`
Debian QA : https://qa.debian.org/developer.php?login=o...@onur.im   `-


signature.asc
Description: Digital signature


Bug#826180: vim-youcompleteme: Spews errors into vim if ycmd is slow to start

2016-07-07 Thread Onur Aslan
Thanks for reporting.

I believe this issue is caused by JediHTTP wrapper when openning a python source
file. And fixed in upstream (can't find the link). Next release of 
vim-youcompleteme
must fix this issue.

-- 
regards,
   Onur Aslan

GPG Key   : E5EF 3C2C 67BC 6F76 DAB3  A40E 7B96 C7AF EB16 673C  .''`.
Website   : https://onur.im: :'  :
Github: https://github.com/onur`. `'`
Debian QA : https://qa.debian.org/developer.php?login=o...@onur.im   `-


signature.asc
Description: Digital signature


Bug#818070: please update ycmd (and vim-youcompleteme) to a Python3 compatible version

2016-03-31 Thread Onur Aslan
Control: reopen -1
Control: severity -1 wishlist

This bug is still exists. I thought this bug meant python3 completion engine...


-- 
regards,
   Onur Aslan

GPG Key   : E5EF 3C2C 67BC 6F76 DAB3  A40E 7B96 C7AF EB16 673C  .''`.
Website   : https://onur.im: :'  :
Github: https://github.com/onur`. `'`
Debian QA : https://qa.debian.org/developer.php?login=o...@onur.im   `-



Bug#818453: ycmd: FTBFS: [Errno 2] No such file or directory

2016-03-20 Thread Onur Aslan
Control: tags -1 pending

Thanks for reporting. This issue is fixed in latest version of ycmd package
currently available in git repository. It will be uploaded in few days.


-- 
regards,
   Onur Aslan

GPG Key   : E5EF 3C2C 67BC 6F76 DAB3  A40E 7B96 C7AF EB16 673C  .''`.
Website   : https://onur.im: :'  :
Github: https://github.com/onur`. `'`
Debian QA : https://qa.debian.org/developer.php?login=o...@onur.im   `-



Bug#818097: RFP: godef -- find symbol information in Go source

2016-03-13 Thread Onur Aslan
Package: wnpp
Severity: wishlist
X-Debbugs-CC: pkg-go-maintain...@lists.alioth.debian.org

* Package name: godef
  Version : N/A
  Upstream Author : Roger Peppe <rogpe...@gmail.com>
* URL : https://github.com/rogpeppe/godef
* License : BSD3 Clause
  Programming Lang: Go
  Description : find symbol information in Go source

Godef, given an expression or a location in a source file, prints the
location of the definition of the symbol referred to.


ycmd package started using godef, and since godef is not available in Debian I
had to disable golang semantic code completion. I hope someone in pkg-go team
can make a Debian package for godef.


-- 
regards,
   Onur Aslan

GPG Key   : E5EF 3C2C 67BC 6F76 DAB3  A40E 7B96 C7AF EB16 673C  .''`.
Website   : https://onur.im: :'  :
Github: https://github.com/onur`. `'`
Debian QA : https://qa.debian.org/developer.php?login=o...@onur.im   `-



Bug#818070: please update ycmd (and vim-youcompleteme) to a Python3 compatible version

2016-03-13 Thread Onur Aslan
On 2016-03-13, Matthias Klose wrote:
> thanks for the quick reply.  Could you update the (build) dependencies as
> well to use Python3 by default, or make it configurable?

ycmd is written in python2 but new jedi wrapper (JediHTTP) is configurable
to use python2 or python3. I am adding a README.Debian to provide additional
information about this issue.


-- 
regards,
   Onur Aslan

GPG Key   : E5EF 3C2C 67BC 6F76 DAB3  A40E 7B96 C7AF EB16 673C  .''`.
Website   : https://onur.im: :'  :
Github: https://github.com/onur`. `'`
Debian QA : https://qa.debian.org/developer.php?login=o...@onur.im   `-



Bug#818070: please update ycmd (and vim-youcompleteme) to a Python3 compatible version

2016-03-13 Thread Onur Aslan
On 2016-03-13, Matthias Klose wrote:
> Package: src:ycmd
> Version: 0+20151019+git0825f85-1
> 
> please update ycmd (and vim-youcompleteme) to a Python3 compatible version.
> The recent trunk is supposed to be Python3 compatible.

Hi. Thanks for reporting.

There was a packaging issue after ycmd switched to JediHTTP. I finally solved it
few days ago. Newest version of ycmd package is ready, and will be uploaded
in few days.


-- 
regards,
   Onur Aslan

GPG Key   : E5EF 3C2C 67BC 6F76 DAB3  A40E 7B96 C7AF EB16 673C  .''`.
Website   : https://onur.im: :'  :
Github: https://github.com/onur`. `'`
Debian QA : https://qa.debian.org/developer.php?login=o...@onur.im   `-



Bug#806725: Package 'vim-youcompleteme' does not work

2015-12-01 Thread Onur Aslan
Control: merge -1 806756

Hi and thanks for reporting.

I believe you need to set filetype or enable filetype detection in vim.

Adding 'filetype on' into your .vimrc will enable filetype detection
at start or setting filetype with :set filetype=cpp will enable filetype
for file you are editing.



Bug#800618: [ycmd] C++ checker reports errors not being able to find standard header (stddef.h)

2015-10-25 Thread Onur Aslan
Thanks for reporting issue.

Looks like libclang-common-3.6-dev dependency is missing from package.

It will be fixed in next version.



Bug#800680: python*-gumbo: stray "[" in package descriptions

2015-10-02 Thread Onur Aslan

Control: tags -1 pending

Thanks for the report!


signature.asc
Description: Digital signature


Bug#800584: RFP: python-peewee - a small, expressive orm

2015-10-01 Thread Onur Aslan
Package: wnpp
Severity: wishlist

* Package name: python-peewee
  Version : 2.6.4
  Upstream Author : Charles Leifer 
* URL : https://github.com/coleifer/peewee
* License : Expat
  Programming Lang: Python
  Description : a small, expressive orm

Long description is taken from README:

Peewee is a simple and small ORM. It has few (but expressive) concepts,
making it easy to learn and intuitive to use.

* A small, expressive ORM
* Written in python with support for versions 2.6+ and 3.2+.
* built-in support for sqlite, mysql and postgresql
* tons of extensions available in the playhouse
  * Postgresql HStore, JSON, arrays and more
  * SQLite full-text search, user-defined functions, virtual tables and more
  * Schema migrations and model code generator
  * Connection pool
  * Encryption

and much, much more...


This is one of my favorite python module and I'd like to use it with apt.

Thanks.



Bug#789299: ImportError when trying to import gumbo

2015-06-20 Thread Onur Aslan
Control: tags -1 patch, pending

Hi. Thanks for reporting.

Issue is fixed in git and it will be available in next upload. For a
quick workaround you can use supplied patches.
Description: gumbo python module is trying to load libgumbo.so
 libgumbo1 package is providing libgumbo.so.1
 This patch is making gumbo python module to load libgumbo.so.1
Author: Onur Aslan o...@onur.im
Forwarded: not-needed
Last-Update: 2015-06-20

--- a/python/gumbo/gumboc.py
+++ b/python/gumbo/gumboc.py
@@ -39,12 +39,8 @@
   _dll = ctypes.cdll.LoadLibrary(os.path.join(
   os.path.dirname(__file__), '..', '..', '.libs', _name_of_lib))
 except OSError:
-  # PyPI or setuptools install, look in the current directory.
-  _dll = ctypes.cdll.LoadLibrary(os.path.join(
-  os.path.dirname(__file__), _name_of_lib))
-except OSError:
   # System library, on unix or mac osx
-  _dll = ctypes.cdll.LoadLibrary(_name_of_lib)
+  _dll = ctypes.cdll.LoadLibrary(_name_of_lib + '.1')
 
 # Some aliases for common types.
 _bitvector = ctypes.c_uint
Description: Importing gumbo in python3 is not possible due to circular
 dependent imports. This patch is fixing this issue.
Author: Onur Aslan o...@onur.im
Bug-Debian: https://bugs.debian.org/789299
Forwarded: https://github.com/google/gumbo-parser/pull/343
Last-Update: 2015-06-20

--- a/python/gumbo/gumboc.py
+++ b/python/gumbo/gumboc.py
@@ -26,7 +26,7 @@
 import contextlib
 import ctypes
 import os.path
-import gumboc_tags
+from gumbo import gumboc_tags
 
 _name_of_lib = 'libgumbo.so'
 if sys.platform.startswith('darwin'):


Bug#780606: RFP: gogs -- self hosted Git service written in Go

2015-06-16 Thread Onur Aslan
Control: retitle -1 RFP: gogs -- self hosted Git service written in Go
Control: noowner -1

gogs have insane dependencies and gogs only works when dependencies met
with a specific commit. I don't think it's even possible to make a
official Debian package for gogs atm.


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#783867: ITP: libhttp-server-brick-perl -- simple pure perl http/https server for prototyping

2015-04-30 Thread Onur Aslan
Package: wnpp
Severity: wishlist
Owner: Onur Aslan o...@onur.im
X-Debbugs-CC: debian-p...@lists.debian.org

* Package name: libhttp-server-brick-perl
  Version : 0.1.4
  Upstream Author : Mark Aufflick m...@aufflick.com
* URL : https://metacpan.org/release/HTTP-Server-Brick
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : simple pure perl http/https server for prototyping

HTTP::Server::Brick allows you to quickly wrap a prototype web server
around some Perl code. The underlying server daemon is HTTP::Daemon and
the performance should be fine for demo's, light internal systems, etc.


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#783868: ITP: dapper -- publishing tool for static websites

2015-04-30 Thread Onur Aslan
Package: wnpp
Severity: wishlist
Owner: Onur Aslan o...@onur.im
X-Debbugs-CC: debian-p...@lists.debian.org

* Package name: dapper
  Version : 0.18
  Upstream Author : Mark Benson markben...@vanilladraft.com
* URL : https://metacpan.org/release/App-Dapper
* License : Expat
  Programming Lang: Perl
  Description : publishing tool for static websites

Dapper allows you to transform simple text files into static websites. 

Features:
  * Written in perl, available as a command line utility after
installing.
  * Content is written in Markdown.
  * Layouts are developed using TT3 from the Template::Alloy
templating engine.
  * Configuration files and attributes are encoded with YAML.


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#783866: ITP: libfile-monitor-perl -- monitor files and directories for changes

2015-04-30 Thread Onur Aslan
Package: wnpp
Severity: wishlist
Owner: Onur Aslan o...@onur.im
X-Debbugs-CC: debian-p...@lists.debian.org

* Package name: libfile-monitor-perl
  Version : 1.00
  Upstream Author : Andy Armstrong a...@hexten.net
* URL : https://metacpan.org/release/File-Monitor
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : monitor files and directories for changes

File::Monitor provides a simple interface for monitoring one or more
files or directories and reporting any changes that are made to them.
 
It can:
 * Monitor existing files for changes to any of the attributes
   returned by the stat function
 * Monitor files that don't yet exist and notify you if they are
   created
 * Notify when a monitored file is deleted
 * Notify when files are added or removed from a directory


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#781754: crash in libclang while parsing autocomplete options

2015-04-02 Thread Onur Aslan
Control: tags -1 wontfix

On 2015-04-02, Giuseppe Bilotta wrote:
 def FlagsForFile( filename ):
   return { 'flags' : ['-x c'] + cppflags + cflags, 'do_cache' : False }

I think issue is '-x c', I tried your conf with ['-x', 'c'] and didn't
get any crash.


signature.asc
Description: Digital signature


Bug#771330: RFP: ycmd -- Editor-agnostic source code completion server

2015-03-29 Thread Onur Aslan
Control: retitle -1 ITP: ycmd -- Editor-agnostic source code completion server
Control: owner -1 !

Hey, package is mostly done and available in here: 
http://anonscm.debian.org/cgit/collab-maint/ycmd.git/


signature.asc
Description: Digital signature


Bug#781380: ITP: libhtml-gumbo-perl -- HTML5 parser based on gumbo C library

2015-03-28 Thread Onur Aslan
Package: wnpp
Severity: wishlist
Owner: Onur Aslan o...@onur.im

* Package name: libhtml-gumbo-perl
  Version : 0.13
  Upstream Author : Alex Vandiver a...@chmrr.net
* URL : https://metacpan.org/pod/HTML::Gumbo
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : HTML5 parser based on gumbo C library


Gumbo is an implementation of the HTML5 parsing algorithm implemented as
a pure C99 library with no outside dependencies.

Goals and features of the C library:

 * Fully conformant with the HTML5 spec.
 * Robust and resilient to bad input.
 * Simple API that can be easily wrapped by other languages. (This is one
   of such wrappers.)
 * Support for source locations and pointers back to the original text.
   (Not exposed by this implementation at the moment.)
 * Relatively lightweight, with no outside dependencies.
 * Passes all html5lib-0.95 tests.
 * Tested on over 2.5 billion pages from Google's index.


This is my favorite HTML parser after HTML::Parser. gumbo-parser package is
in new packages queue right now[1]. I will start packaging this after it
gets accepted.

[1]: https://ftp-master.debian.org/new/gumbo-parser_0.9.2+dfsg-1.html


signature.asc
Description: Digital signature


Bug#758021: new version is available

2015-03-28 Thread Onur Aslan
New version of vim-youcompleteme is available in git repository[1]. I
was planning to update it after jessie become stable but looks like
there is no need for it.

Also ycmd became a seperate project now. You'll also need to build ycmd
and it's also available in git[1].

Packages will be uploaded into Debian after jessie.

[1]: http://anonscm.debian.org/cgit/collab-maint/vim-youcompleteme.git/
[2]: http://anonscm.debian.org/cgit/collab-maint/ycmd.git/


signature.asc
Description: Digital signature


Bug#780606: ITP: gogs -- self hosted Git service written in Go

2015-03-16 Thread Onur Aslan
Package: wnpp
Severity: wishlist
Owner: Onur Aslan o...@onur.im

* Package name: gogs
  Version : 0.5.13
  Upstream Author : Jiahua Chen u...@gogs.io
* URL : http://gogs.io/
* License : MIT
  Programming Lang: Go
  Description : self-hosted Git service wrintte in Go

The goal of this project is to make the easiest, fastest, and most
painless way to set up a self-hosted Git service. With Go, this can be
done via an independent binary distribution across ALL platforms that Go
supports, including Linux, Mac OS X, and Windows.


signature.asc
Description: Digital signature


Bug#772890: Jessie will ship with broken livestreamer

2015-03-07 Thread Onur Aslan
Bug is fixed in latest version of package. But unfortunately jessie have
and will ship with broken version.

Any plan to make a unblock request?


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#719694: Status

2015-01-26 Thread Onur Aslan
Hi.

Package is ready I just need to remove few HTML files from source
for copyright reasons.

It is available here: 
http://anonscm.debian.org/cgit/collab-maint/gumbo-parser.git/

I will try to finish package so we can upload it soon.

On Sat, Jan 24, 2015 at 01:23:37 +0530, Balasankar C wrote:
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 Hi,
 I am trying to package the Ruby gem nokogumbo and would like to know
 the status of libgumbo's packaging.
 - -- 
 Regards
 Balasankar C
 http://balasankarc.in
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v1
 
 iQEcBAEBAgAGBQJUwqbBAAoJEJbtq5sua3Fx64cIAIbh7s7R3N/mENDI6EV77ZMr
 dUBDJq1ibrcIxpDWEXv8ojz33YTFCn6yhhNgSbcvshpiDjDenhwKG3/nyliJH1SC
 Z/D/Hf5gdU5v7AflhksSk6nBuLo0wKuLKHfluAbA10L+PBzTEPSITwQfZpXonQas
 3TEIo/y1WDbnmvwEIQZa80D6aqA8HwKnlaSYBR/rDj6fUvJlXzvfqcMSIMqumCH0
 z/IbJV7Pts/Gq9P0JUDsDGnKbkfA8tkxhUPY7lWxt+lWcSvUsyB2NCpTciR4gobt
 FXtpV1GvjUDVbj8j02UyEOwwvVDv4o3fEobEQtnF+W4bxWuYfAyWiB7TTgwN6Zc=
 =mLAM
 -END PGP SIGNATURE-

 pub  2048R/2E6B7171 2013-03-16 Balasankar C c.balasan...@gmail.com
 uidBalasankar C balasank...@autistici.org
 sub  2048R/29C38F80 2013-03-16



signature.asc
Description: Digital signature


Bug#758021: new version of vim-youcompleteme

2014-10-13 Thread Onur Aslan
Hi.

I am quite happy with current version of vim-youcompleteme and I want to
see current version in jessie.

New version with frequent updates will be available in sid after jessie freezes.


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#719694: any progress?

2014-09-02 Thread Onur Aslan
Hi.

Package was ready before I submitted this ITP bug, but I decided to wait
a stable release from upstream. But it never happened and I am
still waiting a stable release.

And looks like build process is a bit changed and my old package doesn't
work anymore.

I will update package and upload into collab-maint and keep you posted
in a few days.

Thanks.


On Tue, Sep 02, 2014 at 11:41:06 +0200, Cédric Boutillier wrote:
 Hi Onur,
 
 Thanks for proposing to package libgumbo.
 
 Have you made progress on this? It turns out that this package will
 enter in the dependency chain of Gitlab (through the nokogumbo Ruby
 gem). So some members of the Ruby team is (indirectly) very interested
 in having this package.
 
 Can you please report in this bug your progress and the possible
 difficulties you are facing?
 
 Cheers,
 
 Cédric
 




signature.asc
Description: Digital signature


Bug#745496: vim-youcompleteme: YcmRestartServer says ENOENT

2014-04-29 Thread Onur Aslan
Hi Sebastian.

Unfortunately updated patch still doesn't work on my machine. I never had
a chance to investigate it.

btw, what do you think about #745768? I added version requirement for
python-requests but I am not sure. The latest version in sid is already
2.2.1. Do I need to worry about stable when releasing package for
unstable?


On Tue, Apr 29, 2014 at 12:35:55 +0200, Sebastian Ramacher wrote:
 This issue is fixed in the packaging repository.
 
 Cheers
 -- 
 Sebastian Ramacher


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#717532: (no subject)

2014-02-26 Thread Onur Aslan
On Wed, Feb 26, 2014 at 14:32:17 +0100, László Böszörményi (GCS) wrote:
  It has a dependency on libcutl that Onur wanted to package. It was in
 a good shape and I noted some issues to him, but didn't receive an
 answer.
 Onur, do you still working on it? May I continue with it, take over your ITP?

Sorry didn't have a chance to complete libcutl package. I'd like to complete
package if you ok with this. I will send package when it's ready, in
few days.


signature.asc
Description: Digital signature


Bug#717532: (no subject)

2014-02-26 Thread Onur Aslan
On Wed, Feb 26, 2014 at 16:01:53 +0100, László Böszörményi (GCS) wrote:
  It's up to you. I've updated libcutl package to 1.8.0 and corrected
 all the problems meanwhile. It's ready to be uploaded.
 As you are the ITP owner, I can step back of course. We may maintain
 it together even.

nvm then, just take ITP and upload it if it's ready.


signature.asc
Description: Digital signature


Bug#730194: RFS: vim-youcompleteme/0+20131009+gitcbb43ba-1 [ITP] -- fast, as-you-type, fuzzy-search code completion engine for Vim

2013-11-22 Thread Onur Aslan
Package: sponsorship-requests
Severity: wishlist

Dear mentors,

I am looking for a sponsor for my package vim-youcompleteme

* Package name: vim-youcompleteme
  Version : 0+20131009+gitcbb43ba-1
  Upstream Author : Val Markovic
* URL : http://valloric.github.io/YouCompleteMe/
* License : GPL-3+
  Section : editors

It builds those binary packages:

  vim-youcompleteme - fast, as-you-type, fuzzy-search code completion engine 
for Vim

To access further information about this package, please visit the following 
URL:

  http://mentors.debian.net/package/vim-youcompleteme


Alternatively, one can download the package with dget using this command:

  dget -x 
http://mentors.debian.net/debian/pool/main/v/vim-youcompleteme/vim-youcompleteme_0+20131009+gitcbb43ba-1.dsc

You can see package git repository in following URL:

  http://anonscm.debian.org/gitweb/?p=users/onur-guest/vim-youcompleteme.git


Regards,
Onur Aslan


signature.asc
Description: Digital signature


Bug#700217: ITP: vim-youcompleteme -- fast, as-you-type, fuzzy-search code completion engine for vim

2013-11-07 Thread Onur Aslan
I recently checked and looks like llvm maintainers finally providing a
symbolic link to libclang in standard library locations. Thanks to this
change RPATH issue is gone for this package.

I updated package and uploaded into mentors, it's ready for review:
http://mentors.debian.net/package/vim-youcompleteme

I am using this package since I changed owner of this bug and its working
great.

On Tue, Nov 05, 2013 at 14:22:52 +0100, Sebastian Ramacher wrote:
 Hi Onur,
 
 On 2013-07-31 16:24:35, Onur Aslan wrote:
  retitle 700217 ITP: vim-youcompleteme -- fast, as-you-type, fuzzy-search 
  code completion engine for vim
  owner 700217 !
  thanks
  
  I've already made this package. It is available here:
  http://anonscm.debian.org/gitweb/?p=users/onur-guest/vim-youcompleteme.git;a=summary
  
  Only problem is it's using RPATH for libclang1-3.3 and there is no other
  way to build this package. libclang1-3.3 is a private library and linking
  with RPATH causing a serious lintian error. I will try to contact with llvm
  maintainers.
 
 some time has passed since you've started working on this ITP. What's
 the status? Let me know if you need any help and I'd be happy to
 revier/sponsor/...
 
 Cheers
 -- 
 Sebastian Ramacher




signature.asc
Description: Digital signature


Bug#700217: ITP: vim-youcompleteme -- fast, as-you-type, fuzzy-search code completion engine for vim

2013-11-07 Thread Onur Aslan
I recently checked and looks like llvm maintainers finally providing a
symbolic link to libclang in standard library locations. Thanks to this
change RPATH issue is gone for this package.

I updated package and uploaded into mentors:
http://mentors.debian.net/package/vim-youcompleteme

It's lintian clean and ready for review. I was using this package since I
got ownership of this bug, and it's just working great.

I'd be grateful if you review/sponsor this package.

Thanks.

On Tue, Nov 05, 2013 at 14:22:52 +0100, Sebastian Ramacher wrote:
 Hi Onur,
 
 On 2013-07-31 16:24:35, Onur Aslan wrote:
  retitle 700217 ITP: vim-youcompleteme -- fast, as-you-type, fuzzy-search 
  code completion engine for vim
  owner 700217 !
  thanks
  
  I've already made this package. It is available here:
  http://anonscm.debian.org/gitweb/?p=users/onur-guest/vim-youcompleteme.git;a=summary
  
  Only problem is it's using RPATH for libclang1-3.3 and there is no other
  way to build this package. libclang1-3.3 is a private library and linking
  with RPATH causing a serious lintian error. I will try to contact with llvm
  maintainers.
 
 some time has passed since you've started working on this ITP. What's
 the status? Let me know if you need any help and I'd be happy to
 revier/sponsor/...
 
 Cheers
 -- 
 Sebastian Ramacher




signature.asc
Description: Digital signature


Bug#719694: ITP: libgumbo - A pure-C HTML5 parser

2013-08-14 Thread Onur Aslan
Package: wnpp
Severity: wishlist
Owner: Onur Aslan o...@onur.im

* Package name: libgumbo
  Version : 0.9.0
  Upstream Author : Jonathan Tang jdt...@google.com
* URL : https://github.com/google/gumbo-parser
* License : Apache 2.0
  Programming Lang: C
  Description : A pure-C HTML5 parser

Gumbo is an implementation of the HTML5 parsing algorithm implemented
as a pure C99 library with no outside dependencies. It's designed to
serve as a building block for other tools and libraries such as linters,
validators, templating languages, and refactoring and analysis tools.


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#717907: ITP: libscrappy-perl -- The All Powerful Web Spidering, Scraping, Creeping Crawling Framework

2013-07-26 Thread Onur Aslan
Package: wnpp
Severity: wishlist
Owner: Onur Aslan o...@onur.im

* Package name: libscrappy-perl
  Version : 0.941.12090
  Upstream Author : Al Newkirk awnc...@cpan.org
* URL : https://metacpan.org/release/Scrappy/
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : The All Powerful Web Spidering, Scraping, Creeping Crawling 
Framework

Scrappy is an easy (and hopefully fun) way of scraping, spidering, and/or
harvesting information from web pages, web services, and more. Scrappy is a
feature rich, flexible, intelligent web automation tool.


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#717672: ITP: libstring-tt-perl

2013-07-23 Thread Onur Aslan
Package: wnpp
Severity: wishlist
Owner: Onur Aslan o...@onur.im

* Package name: libscrappy-perl
  Version : 0.3
  Upstream Author : Jonathan Rockway jrock...@cpan.org
* URL : https://metacpan.org/release/String-TT
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : Perl module to use TT to interpolate lexical variables

String::TT exports a tt function, which takes a TT (Template Toolkit)
template as its argument. It uses the current lexical scope to resolve
variable references.


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#717672: ITP: libstring-tt-perl

2013-07-23 Thread Onur Aslan
On Tue, Jul 23, 2013 at 19:11:07 +0200, Jonas Smedegaard wrote:
 Package name libscrappy-perl, but filed for libstring-tt-perl.

Yes, I realized that after submit. I was actually started packaging
libscrappy-perl. It needs this package in order to build. So, I made
this package first, but unfortunately this bug report failed (topic,
package name). Is there a way to fix it (or do I have to)?

I will be more careful next time.


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#717581: ITP: libcutl -- C++ utility library

2013-07-22 Thread Onur Aslan
Package: wnpp
Severity: wishlist

* Package name: libcutl
  Version : 1.7.1
  Upstream Author : Code Synthesis Tools CC
* URL : http://www.codesynthesis.com/projects/libcutl/
* License : MIT
  Programming Lang: C++
  Description : C++ utility library, development files

 CUTL contains a collection of generic and independent components
 such as meta-programming tests, smart pointers, containers, compiler
 building blocks, etc.


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#717532: RFP: odb - object-relational mapping (ORM) system for the C++ language

2013-07-21 Thread Onur Aslan
Package: wnpp
Severity: wishlist

* Package name: odb
  Version : 2.2.2
  Upstream Author : Code Synthesis
* URL : http://www.codesynthesis.com/products/odb/
* License : GPL-2
  Programming Lang: C++
  Description : object-relational mapping (ORM) system for the C++ language

ODB is an open-source, cross-platform, and cross-database object-relational
mapping (ORM) system for C++. It allows you to persist C++ objects to a
relational database without having to deal with tables, columns, or SQL and
without manually writing any mapping code. ODB supports MySQL, SQLite,
PostgreSQL, Oracle, and Microsoft SQL Server relational databases as well
as C++98/03 and C++11 language standards. It also comes with optional
profiles for Boost and Qt which allow you to seamlessly use value types,
containers, and smart pointers from these libraries in your persistent C++
classes.


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#682616: Chromium keeps crashing with segfaults

2012-07-28 Thread Onur Aslan
We know this bug occurred when we upgrade libexif to 0.6.20-3. One of that
security patch broke the package.

Instead of downgrading libexif to 0.6.20-2, I made a package for 0.6.21. It
includes security fixes and chromium crashes are gone.

You can get it here and use it until libexif maintainers fix the package:
http://i.onur.im/libexif/

And I believe, this bug must be grave. It simply makes chromium unusable.


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#655983: 2.2.0 is on the way

2012-06-29 Thread Onur Aslan
cakephp 2.2 is on the way. Please upgrade this package, I'd like to see
2.2 in wheezy.

Thanks.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#676636: Patch doesn't work

2012-06-13 Thread Onur Aslan
Yesterday Andrew sent me his own build. His build works flawless. I
just realized
I didn't applied the patch.

Patch works fine, sorry my mistake.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#676636: Patch doesn't work

2012-06-12 Thread Onur Aslan
I compiled chromium with this patch, but unfortunately I am still getting
crashes when I try to search something. It's not frequently but it is still
making chromium unusable.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#676636: Patch doesn't work

2012-06-12 Thread Onur Aslan
I used this patch:
http://anonscm.debian.org/gitweb/?p=pkg-chromium/pkg-chromium.git;a=blob;f=debian/patches/sqlite.patch;h=37b5f4b3ea56656a4090ae0203a0773d3b2861d9;hb=c0e9499

with latest source: chromium-browser-20.0.1132.27~r140692

Crashes don't happen often but I am still getting crash once in an hour or two.

On Wed, Jun 13, 2012 at 1:55 AM, Andrew Chant
andrew.chant+deb...@gmail.com wrote:
 Which patch are you using?  I had the problem occur with very regular
 frequently without the patch that I posted, and it disappeared
 completely with the patch.  I'm pretty certain that solved the omnibox 
 problem.

 On Tue, Jun 12, 2012 at 3:47 PM, Onur Aslan o...@onur.im wrote:
 I compiled chromium with this patch, but unfortunately I am still getting
 crashes when I try to search something. It's not frequently but it is still
 making chromium unusable.






--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#624108: ITP: libclass-dbi-lite-perl -- lightweight ORM for Perl

2011-04-25 Thread Onur Aslan
Package: wnpp
Owner: Onur Aslan o...@onur.im
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org,debian-p...@lists.debian.org

* Package name: libclass-dbi-lite-perl
  Version : 1.019
  Upstream Author : John Drago jdrago_...@yahoo.com
* URL : http://search.cpan.org/dist/Class-DBI-Lite/
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : lightweight ORM for Perl

 Class::DBI::Lite offors a simple way to deal with databases in an
 object-oriented way.
 .
 Main difference between Class::DBI and Class::DBI::Lite is Class::DBI::Lite
 is much more lightweight. Class::DBI::Lite using less resource to deal with
 database models.
 .
 Class::DBI::Lite relies heavily on Ima::DBI::Contextual, SQL::Abstract and
 Scalar::Util.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#623972: ITP: libima-dbi-contextual-perl -- lightweight context-aware DBI handle cache and utility methods.

2011-04-24 Thread Onur Aslan
Package: wnpp
Owner: Onur Aslan o...@onur.im
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org,debian-p...@lists.debian.org

* Package name: libima-dbi-contextual-perl
  Version : 0.006
  Upstream Author : John Drago jdrago_...@yahoo.com
* URL : http://search.cpan.org/dist/Ima-DBI-Contextual/
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : lightweight context-aware DBI handle cache and utility 
methods

 This is a context-aware version of Ima::DBI module.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#592819: ITP: librivescript-perl -- Simple trigger/response language primarily used for the creation of chatting robots

2010-08-12 Thread Onur Aslan
Package: wnpp
Severity: wishlist
Owner: Onur Aslan o...@0nur.net

* Package name: librivescript-perl
  Version : 1.20
  Upstream Author : Noah Petherbridge kir...@cpan.org
* URL : http://search.cpan.org/~kirsle/RiveScript-1.20/
* License : GPL2
  Programming Lang: Perl
  Description : Simple trigger/response language primarily used for the 
creation of chatting robots

RiveScript - Rendering Intelligence Very Easily
RiveScript is a simple trigger/response language primarily used for
the creation of chatting robots. It's designed to have an easy-to-learn
syntax but provide a lot of power and flexibility.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#579606: ITP: Solang -- Photo manager for GNOME

2010-08-01 Thread Onur Aslan
retitle 579606 RFP: Solang -- Photo manager for GNOME
noowner 579606
thanks

Due to unsolved dependencies I am no longer working on this packages.
I think a DD should look at this in future.


signature.asc
Description: Digital signature


Bug#579606: RFP: Solang -- Photo manager for GNOME

2010-05-15 Thread Onur Aslan
Yes. But looks like there is a dependency problem. Solang using GEGL 0.1
and it's wrapper libgeglmm 0.1. They're both doesn't available in Debian.
I asked about GEGL 0.1 in #516809 but I didn't get any answer.

On Sat, May 15, 2010 at 05:17:01AM -0400, Danny Piccirillo wrote:
 Awesome, thanks! It seems version 0.4.1 was just released last month.
 http://ftp.gnome.org/pub/GNOME/sources/solang/0.4/



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#579606: RFP: Solang -- Photo manager for GNOME

2010-05-02 Thread Onur Aslan
retitle 579606 ITP: Solang -- Photo manager for GNOME
owner 579606 !
thanks

I'll try to make a Debian package for Solang.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#579949: ITP: libgeglmm -- C++ bindings for Generic Graphics Library

2010-05-02 Thread Onur Aslan
Package: wnpp
Severity: wishlist


* Package name : PACKAGENAME
  Version : 0.0.22
  Upstream Author : Hubert Figuiere h...@figuiere.net
* URL : http://ftp.gnome.org/pub/gnome/sources/geglmm/0.0/
* License : GPL, LGPL
  Description : C++ bindings for GEGL.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#516809: [gegl] new upstream release 0.1.0 available

2010-05-02 Thread Onur Aslan
This bugs title saying '0.1.0 available' but it's closed by relasing
version 0.0.22.

I am intenting to make solang package but it's required geglmm 0.1 and
it's required gegl-0.1.

Do you have any plan to make gegl-0.1 package?

Thanks.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#579323: gcalctool doesn't have locale files

2010-04-29 Thread Onur Aslan
I checked now and looks like it's working fine.

It should be an earlier version when I saw this bug.

Sorry about this issue.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#579323: comment

2010-04-26 Thread Onur Aslan
gcalctool in Debian doesn't have any locale files. It's only
supporting English. It would be great to see locale files in this
package.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#579324: reportbug: does not start with different locale

2010-04-26 Thread Onur Aslan
Package: reportbug
Version: 4.12.1
Severity: normal

When I try to run reportbug in my current locale (tr_TR.UTF-8) it's
not starting. It's giving these error:

$ reportbug 
Traceback (most recent call last):
  File /usr/bin/reportbug, line 47, in module
from reportbug.utils import (
ImportError: cannot import name MODE_NOVICE


-- Package-specific info:
** Environment settings:
VISUAL=vi
INTERFACE=text

** /home/onur/.reportbugrc:
reportbug_version 4.12.1
mode standard
ui text
realname Onur Aslan
email onuras...@gmail.com
no-check-uid
no-cc
header X-Debbugs-CC: onuras...@gmail.com
smtphost reportbug.debian.org

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (x86_64)

Kernel: Linux 2.6.32-3-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages reportbug depends on:
ii  apt   0.7.25.3   Advanced front-end for dpkg
ii  python2.5.4-9An interactive high-level object-o
ii  python-reportbug  4.12.1 Python modules for interacting wit

reportbug recommends no packages.

Versions of packages reportbug suggests:
pn  debconf-utilsnone  (no description available)
pn  debsums  none  (no description available)
pn  dlocate  none  (no description available)
pn  emacs22-bin-common | none  (no description available)
ii  file 5.04-2  Determines file type using magic
ii  gnupg1.4.10-3GNU privacy guard - a free PGP rep
pn  postfix | exim4 | ma none  (no description available)
ii  python-gtk2  2.17.0-2Python bindings for the GTK+ widge
pn  python-gtkspell  none  (no description available)
pn  python-urwid none  (no description available)
ii  python-vte   1:0.24.0-3  Python bindings for the VTE widget
ii  xdg-utils1.0.2+cvs20100307-1 desktop integration utilities from

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#546529: RFP: mozilla-stylish -- User style management addon for Iceweasel.

2009-09-13 Thread Onur Aslan
Package: wnpp
Severity: wishlist

* Package name: mozilla-stylish
  Version : 1.0.6
  Upstream Author : Jason Barnabe jason.barn...@gmail.com
* URL : http://userstyles.org/stylish/
* License : GPL
  Description : User style manager addon for Iceweasel.

A popular addon for Iceweasel. It's allowing to use your own styles on the web
pages. It's also have a nice style database at the home page. I think this
addon would be nice in the Debian. I didn't find any source code repository
for the project. There is a forum post for the source code[1]. It's saying
use the .xpi archive as a zip archive and extract it and use.

[1]: http://forum.userstyles.org/comments.php?DiscussionID=3469page=1#Item_0



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#531095: ITP: libmetalink -- Metalink parser library

2009-05-29 Thread Onur Aslan
Package: wnpp
Severity: wishlist

* Package name: libmetalink
  Version : 0.0.3
  Upstream Author : Tatsuhiro Tsujikawa  t-tujik...@shell.sourceforge.net
  URL : https://launchpad.net/libmetalink
* License : MIT/X/Expat
  Programming Lang: C
  Description : A metalink parser library written in C.

I am making a Debian package for mulk. This library is required for mulk.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#499159: Progress?

2009-05-29 Thread Onur Aslan
What is the progress of this package?

I am intending to make a Debian package for mulk. Mulk needs this package.

Also, I am sorry, I didn't see this bug before open new one.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#527467: mulk

2009-05-28 Thread Onur Aslan
I am interesting to make a Debian package for mulk. It's need libmetalink. I'll
make libmetalink package first.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#528058: xfrisk: does not start: Can't find the font

2009-05-10 Thread Onur Aslan
Package: xfrisk
Version: 1.2-3
Severity: grave
Justification: renders package unusable

xfrisk does not find the *helvetica-b*-o-*14* font. When I try to start xfrisk, 
it's saying:

$ xfrisk localhost
CLIENT: Connected to server.
CLIENT: Waiting for server to send client ID...Done.
Warning: Cannot convert string *helvetica-m*-r-*12* to type FontStruct
Warning: Cannot convert string *helvetica-b*-o-*14* to type FontStruct
Can't find the font *helvetica-b*-o-*14*!!


-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages xfrisk depends on:
ii  libc6 2.9-4  GNU C Library: Shared libraries
ii  libice6   2:1.0.5-1  X11 Inter-Client Exchange library
ii  libsm62:1.1.0-2  X11 Session Management library
ii  libx11-6  2:1.2.1-1  X11 client-side library
ii  libxext6  2:1.0.4-1  X11 miscellaneous extension librar
ii  libxmu6   2:1.0.4-1  X11 miscellaneous utility library
ii  libxt61:1.0.5-3  X11 toolkit intrinsics library
ii  xaw3dg1.5+E-17   Xaw3d widget set

xfrisk recommends no packages.

xfrisk suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#523403: yelp: Segfault when reading a document

2009-04-09 Thread Onur Aslan
Package: yelp
Version: 2.24.0-2
Severity: important

I am reading Debian manuals with yelp.

It's always getting Segmentation fault when I click a link or back-forward
button, after right clicked a link in a document. This is making unusable to
yelp.

If you want to test this problem:

 * Open yelp.
 * Click a documentation.
 * Right click a link in this document.
 * After then, click back and forward program giving segfault or memory error.


-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages yelp depends on:
ii  docbook-xml4.5-6 standard XML documentation system,
ii  gconf2 2.24.0-7  GNOME configuration database syste
ii  gnome-doc-utils0.14.2-2  a collection of documentation util
ii  libatk1.0-01.22.0-1  The ATK accessibility toolkit
ii  libbz2-1.0 1.0.5-1   high-quality block-sorting file co
ii  libc6  2.9-4 GNU C Library: Shared libraries
ii  libdbus-glib-1-2   0.80-3simple interprocess messaging syst
ii  libgcc11:4.3.3-3 GCC support library
ii  libgconf2-42.24.0-7  GNOME configuration database syste
ii  libglade2-01:2.6.3-1 library to load .glade files at ru
ii  libglib2.0-0   2.20.0-2  The GLib library of C routines
ii  libgnome2-02.24.1-2  The GNOME 2 library - runtime file
ii  libgnomeui-0   2.24.1-1  The GNOME 2 libraries (User Interf
ii  libgtk2.0-02.14.7-5  The GTK+ graphical user interface 
ii  libpango1.0-0  1.22.4-2  Layout and rendering of internatio
ii  librarian0 0.8.1-1   Rarian is a documentation meta-dat
ii  libstartup-notificatio 0.9-1 library for program launch feedbac
ii  libstdc++6 4.3.3-3   The GNU Standard C++ Library v3
ii  libx11-6   2:1.2-1   X11 client-side library
ii  libxml22.7.3.dfsg-1  GNOME XML library
ii  libxslt1.1 1.1.24-2  XSLT processing library - runtime 
ii  man-db 2.5.5-1   on-line manual pager
ii  xml-core   0.12  XML infrastructure and XML catalog
ii  xulrunner-1.9  1.9.0.7-1 XUL + XPCOM application runner
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

Versions of packages yelp recommends:
ii  doc-base  0.9.1  utilities to manage online documen
ii  ttf-dejavu2.25-3 Metapackage to pull in ttf-dejavu-

yelp suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#508342: ant: Ant dependency

2008-12-10 Thread Onur Aslan
Package: ant
Version: 1.7.0-6
Severity: normal

I installed ant with openjdk-6-jre and gij. When i try to run ant
it's saying: 

$ ant
Unable to locate tools.jar. Expected to find it in 
/usr/lib/jvm/java-6-openjdk/lib/tools.jar


After installed openjdk-6-jdk it's solved. I guess openjdk-6-jdk
should be depend of ant.

Best regards.


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages ant depends on:
ii  gij [java-virtual-machine]4:4.3.2-2  The GNU Java bytecode interpreter
ii  gij-4.3 [java-virtual-machine 4.3.2-2The GNU Java bytecode interpreter
ii  libxerces2-java   2.9.1-2Validating XML parser for Java wit
ii  openjdk-6-jre [java2-runtime] 6b11-9 OpenJDK Java runtime, using Hotspo
ii  openjdk-6-jre-headless [java- 6b11-9 OpenJDK Java runtime, using Hotspo

Versions of packages ant recommends:
ii  ant-gcj   1.7.0-6Java based build tool like make
ii  ant-optional  1.7.0-6Java based build tool like make - 

Versions of packages ant suggests:
pn  ant-doc   none (no description available)

-- no debconf information



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#508342:

2008-12-10 Thread Onur Aslan
Yes Onkar. You are right. It's working fine without jdk, but it's only
getting this warning.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#504706: ITP: vdr-plugin-softdevice -- Software output device plugin for VDR.

2008-11-06 Thread Onur Aslan
Package: wnpp
Severity: wishlist
Owner: Onur Aslan [EMAIL PROTECTED]

* Package name: vdr-plugin-softdevice
  Version : 0.5.0
* URL : http://softdevice.berlios.de/
* License : GPL
  Programming Lang: C
  Description : Software output device plugin for VDR.

The softdevice plugin is a software device and MPEG-2 decoder and is used by 
VDR as an output device. The output comes to the monitor or TV-out of the 
graphics card. The plugin gets the video stream decodes, scales and converts it 
to the RGB format.

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#494988: brasero only allow max burning speed

2008-08-13 Thread Onur Aslan
Package: brasero
Version: 0.8.0-2
Severity: important

I just upgrade brasero package. I am trying to burn a DVD+R disc. It's
only showing 'Max Speed' and '18.4x (DVD)' in 'Burning speed'.


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.25-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages brasero depends on:
ii  gconf2 2.22.0-1  GNOME configuration database syste
ii  genisoimage9:1.1.8-1 Creates ISO-9660 CD-ROM filesystem
ii  gstreamer0.10-plugins- 0.10.19-2 GStreamer plugins from the base 
ii  libart-2.0-2   2.3.20-2  Library of functions for 2D graphi
ii  libatk1.0-01.22.0-1  The ATK accessibility toolkit
ii  libbeagle1 0.3.5-1   library for accessing beagle using
ii  libbonobo2-0   2.22.0-1  Bonobo CORBA interfaces library
ii  libbonoboui2-0 2.22.0-1  The Bonobo UI library
ii  libc6  2.7-13GNU C Library: Shared libraries
ii  libcairo2  1.6.4-6   The Cairo 2D vector graphics libra
ii  libdbus-1-31.2.1-2   simple interprocess messaging syst
ii  libdbus-glib-1-2   0.76-1simple interprocess messaging syst
ii  libfontconfig1 2.6.0-1   generic font configuration library
ii  libfreetype6   2.3.7-1   FreeType 2 font engine, shared lib
ii  libgconf2-42.22.0-1  GNOME configuration database syste
ii  libglib2.0-0   2.16.4-2  The GLib library of C routines
ii  libgnome2-02.20.1.1-1The GNOME 2 library - runtime file
ii  libgnomecanvas2-0  2.20.1.1-1A powerful object-oriented display
ii  libgnomeui-0   2.20.1.1-1The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0 1:2.22.0-4GNOME Virtual File System (runtime
ii  libgstreamer-plugins-b 0.10.19-2 GStreamer libraries from the base
ii  libgstreamer0.10-0 0.10.19-3 Core GStreamer libraries and eleme
ii  libgtk2.0-02.12.11-3 The GTK+ graphical user interface 
ii  libhal10.5.11-2  Hardware Abstraction Layer - share
ii  libice62:1.0.4-1 X11 Inter-Client Exchange library
ii  liborbit2  1:2.14.13-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0  1.20.5-1  Layout and rendering of internatio
ii  libpixman-1-0  0.10.0-2  pixel-manipulation library for X a
ii  libpng12-0 1.2.27-1  PNG library - runtime
ii  libpopt0   1.14-4lib for parsing cmdline parameters
ii  libsm6 2:1.0.3-2 X11 Session Management library
ii  libtotem-plparser102.22.3-1  Totem Playlist Parser library - ru
ii  libx11-6   2:1.1.4-2 X11 client-side library
ii  libxcb-render-util00.2+git36-1   utility libraries for X C Binding 
ii  libxcb-render0 1.1-1.1   X C Binding, render extension
ii  libxcb11.1-1.1   X C Binding
ii  libxml22.6.32.dfsg-2 GNOME XML library
ii  libxrender11:0.9.4-2 X Rendering Extension client libra
ii  wodim  9:1.1.8-1 command line CD/DVD writing tool
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

Versions of packages brasero recommends:
ii  gnome-mount   0.7-2  wrapper for (un)mounting and eject
ii  gstreamer0.10-plugins-bad 0.10.7-2   GStreamer plugins from the bad s
ii  gstreamer0.10-plugins-good0.10.8-4   GStreamer plugins from the good 
ii  hal   0.5.11-2   Hardware Abstraction Layer

Versions of packages brasero suggests:
ii  gnome-icon-theme  2.22.0-1   GNOME Desktop icon theme
pn  gstreamer0.10-fluendo-mp3 none (no description available)

-- no debconf information



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#454640: Debian doesn't see blankt discs

2008-01-26 Thread Onur Aslan
This is still exist. I dont found the problem. I dont burn and disc in
Debian.

On Sat, 2008-01-26 at 13:20 +0100, Alan Baghumian wrote:
 Hi,
 
 Would you please tell us if the problem has been fixed or still exists?
 
 Alan
 


signature.asc
Description: This is a digitally signed message part


Bug#454640: Debian doesn't see blankt discs

2008-01-01 Thread Onur Aslan
This problem doesn't belong to brasero. My Debian doesn't see any blank
disc. I tried Gnome baker, nautilus and brasero. 




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#456323: mplayer crashing when change subtitle delay

2007-12-14 Thread Onur Aslan
Package: mplayer
Version: 1.0~rc2-6
Severity: important

mplayer crashing when change subtitle delay

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.22-3-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages mplayer depends on:
ii  debconf [debconf-2. 1.5.17   Debian configuration management sy
ii  libasound2  1.0.15-2 ALSA library
ii  libatk1.0-0 1.20.0-1 The ATK accessibility toolkit
ii  libaudiofile0   0.2.6-7  Open-source version of SGI's audio
ii  libc6   2.7-3GNU C Library: Shared libraries
ii  libcaca00.99.beta12.debian-3 colour ASCII art library
ii  libcairo2   1.4.10-1+b2  The Cairo 2D vector graphics libra
ii  libcdparanoia0  3.10+debian~pre0-5   audio extraction tool for sampling
ii  libcucul0   0.99.beta12.debian-3 low-level Unicode character drawin
ii  libdirectfb-0.9-25  0.9.25.1-6   direct frame buffer graphics - sha
ii  libesd0 0.2.36-3 Enlightened Sound Daemon - Shared 
ii  libfontconfig1  2.4.2-1.2generic font configuration library
ii  libfreetype62.3.5-1+b1   FreeType 2 font engine, shared lib
ii  libgcc1 1:4.2.2-4GCC support library
ii  libgl1-mesa-glx [li 7.0.2-2  A free implementation of the OpenG
ii  libglib2.0-02.14.3-1 The GLib library of C routines
ii  libgtk2.0-0 2.12.1-1 The GTK+ graphical user interface 
ii  libjpeg62   6b-14The Independent JPEG Group's JPEG 
ii  liblircclient0  0.8.0-13 infra-red remote control support -
ii  libncurses5 5.6+20071124-1   Shared libraries for terminal hand
ii  libogg0 1.1.3-2  Ogg Bitstream Library
ii  libpango1.0-0   1.18.3-1 Layout and rendering of internatio
ii  libpng12-0  1.2.15~beta5-3   PNG library - runtime
ii  libsdl1.2debian 1.2.11-9 Simple DirectMedia Layer
ii  libsmbclient3.0.27a-1shared library that allows applica
ii  libspeex1   1.1.12-3 The Speex Speech Codec
ii  libstdc++6  4.2.2-4  The GNU Standard C++ Library v3
ii  libtheora0  1.0~beta2-2  The Theora Video Compression Codec
ii  libungif4g  4.1.4-5+b1   shared library for GIF images
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxext61:1.0.3-2X11 miscellaneous extension librar
ii  libxinerama11:1.0.2-1X11 Xinerama extension library
ii  libxv1  1:1.0.3-1X11 Video extension library
ii  libxvmc11:1.0.4-2X11 Video extension library
ii  libxxf86dga12:1.0.2-1X11 Direct Graphics Access extensi
ii  libxxf86vm1 1:1.0.1-2X11 XFree86 video mode extension l
ii  mplayer-skin-blue [ 1.6-2blue skin for mplayer
ii  zlib1g  1:1.2.3.3.dfsg-6 compression library - runtime

mplayer recommends no packages.

-- debconf information:
  mplayer/voutput: autodetect
  mplayer/rtc: false
  mplayer/ttfont: Sans
  mplayer/cfgnote:
  mplayer/replace-existing-files-bail:
  mplayer/replace-existing-files: false
  mplayer/no-ttfont:
  mplayer/install_codecs:
  mplayer/dvd_device: /dev/cdrom



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#454640: Brasero doesn't see blank discs

2007-12-06 Thread Onur Aslan
Package: brasero
Version: 0.6.1-1
Severity: grave

I tried 3 different blank disc. Brasero didn't see any of them.

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.22-3-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages brasero depends on:
ii  gconf2  2.20.1-1 GNOME configuration database syste
ii  genisoimage 9:1.1.6-1Creates ISO-9660 CD-ROM filesystem
ii  libart-2.0-22.3.19-3 Library of functions for 2D graphi
ii  libatk1.0-0 1.20.0-1 The ATK accessibility toolkit
ii  libbonobo2-02.20.1-1 Bonobo CORBA interfaces library
ii  libbonoboui2-0  2.20.0-1 The Bonobo UI library
ii  libc6   2.7-3GNU C Library: Shared libraries
ii  libcairo2   1.4.10-1+b2  The Cairo 2D vector graphics libra
ii  libdbus-1-3 1.1.1-3  simple interprocess messaging syst
ii  libdbus-glib-1-20.74-1   simple interprocess messaging syst
ii  libfontconfig1  2.4.2-1.2generic font configuration library
ii  libfreetype62.3.5-1+b1   FreeType 2 font engine, shared lib
ii  libgconf2-4 2.20.1-1 GNOME configuration database syste
ii  libglib2.0-02.14.3-1 The GLib library of C routines
ii  libgnome-keyring0   2.20.1-1 GNOME keyring services library
ii  libgnome2-0 2.20.1.1-1   The GNOME 2 library - runtime file
ii  libgnomecanvas2-0   2.20.1.1-1   A powerful object-oriented display
ii  libgnomeui-02.20.1.1-1   The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0  1:2.20.1-1   GNOME Virtual File System (runtime
ii  libgstreamer-plugins-ba 0.10.15-2GStreamer libraries from the base
ii  libgstreamer0.10-0  0.10.15-1Core GStreamer libraries and eleme
ii  libgtk2.0-0 2.12.1-1 The GTK+ graphical user interface 
ii  libhal1 0.5.10-2 Hardware Abstraction Layer - share
ii  libice6 2:1.0.4-1X11 Inter-Client Exchange library
ii  libnautilus-burn4   2.18.2-1 Nautilus Burn Library - runtime ve
ii  libnotify1 [libnotify1- 0.4.4-3  sends desktop notifications to a n
ii  liborbit2   1:2.14.7-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0   1.18.3-1 Layout and rendering of internatio
ii  libpng12-0  1.2.15~beta5-3   PNG library - runtime
ii  libpopt01.10-3   lib for parsing cmdline parameters
ii  libsm6  2:1.0.3-1+b1 X11 Session Management library
ii  libtotem-plparser1  2.18.2-1 Totem Playlist Parser library - ru
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxcursor1 1:1.1.9-1X cursor management library
ii  libxext61:1.0.3-2X11 miscellaneous extension librar
ii  libxfixes3  1:4.0.3-2X11 miscellaneous 'fixes' extensio
ii  libxi6  2:1.1.3-1X11 Input extension library
ii  libxinerama11:1.0.2-1X11 Xinerama extension library
ii  libxml2 2.6.30.dfsg-3GNOME XML library
ii  libxrandr2  2:1.2.2-1X11 RandR extension library
ii  libxrender1 1:0.9.4-1X Rendering Extension client libra
ii  wodim   9:1.1.6-1command line CD/DVD writing tool
ii  zlib1g  1:1.2.3.3.dfsg-6 compression library - runtime

Versions of packages brasero recommends:
pn  gstreamer0.10-fluendo-mp3 none (no description available)
ii  hal   0.5.10-2   Hardware Abstraction Layer

-- no debconf information



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#407084: eboard does not start

2007-01-15 Thread Onur Aslan
Package: eboard
Version: 1.0.1-1
Severity: important

I reinstall two times. It isn't starting.
[EMAIL PROTECTED]:~$ eboard
PieceSet::PieceSet ** file not found: classic.png

-- System Information:
Debian Release: 4.0
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-3-686
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages eboard depends on:
ii  libatk1.0-0   1.12.4-1   The ATK accessibility toolkit
ii  libc6 2.3.6.ds1-10   GNU C Library: Shared libraries
ii  libcairo2 1.2.4-4The Cairo 2D vector graphics libra
ii  libfontconfig12.4.2-1generic font configuration library
ii  libgcc1   1:4.1.1-21 GCC support library
ii  libglib2.0-0  2.12.6-2   The GLib library of C routines
ii  libgtk2.0-0   2.8.20-4   The GTK+ graphical user interface 
ii  libpango1.0-0 1.14.8-5   Layout and rendering of internatio
ii  libpng12-01.2.15~beta5-1 PNG library - runtime
ii  libstdc++64.1.1-21   The GNU Standard C++ Library v3
ii  libx11-6  2:1.0.3-4  X11 client-side library
ii  libxcursor1   1.1.7-4X cursor management library
ii  libxext6  1:1.0.1-2  X11 miscellaneous extension librar
ii  libxfixes31:4.0.1-5  X11 miscellaneous 'fixes' extensio
ii  libxi61:1.0.1-4  X11 Input extension library
ii  libxinerama1  1:1.0.1-4.1X11 Xinerama extension library
ii  libxrandr22:1.1.0.2-5X11 RandR extension library
ii  libxrender1   1:0.9.1-3  X Rendering Extension client libra

Versions of packages eboard recommends:
ii  sox   12.18.2-2  A universal sound sample translato
ii  xfonts-75dpi  1:1.0.0-3  75 dpi fonts for X

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]