[Bug 1886425] Re: python-aptly 0.12.12 released

2020-07-07 Thread Filip Pytloun
Hello, it was kind-of intentional to keep 0.12.10 and don't release
0.12.12 in Debian as there were some experimental changes that were not
tested very well.

I am both upstream and Debian maintainer so I would be happy to hear
feedback if you are using python-aptly and have some experience with it.

I will try to find some time soon and check if it's ready to udpate the
package now. Anyway I would prefer to submit bugs like this one in
Debian bugtracker (https://tracker.debian.org/pkg/python-aptly) instead
of Ubuntu's Launchpad as in this case Ubuntu only copies Debian's
package without modifications.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1886425

Title:
  python-aptly 0.12.12 released

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-aptly/+bug/1886425/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1641417] Re: Ubuntu 16.04 unable to detect/connect to and work properly with iPhone 4.

2017-03-01 Thread Filip Pytloun
Hello,

I hit the same issue. Strange is that iPhone gets detected and it can mount 
gthumb:// and afc:// handle.. but it's using port 3 instead of port 0 which 
should be used instead.
I can mount afc manually just fine, access files, etc. but applications still 
doesn't see the iPhone properly to be able to sync.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1641417

Title:
  Ubuntu 16.04 unable to detect/connect  to and work properly with
  iPhone 4.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libimobiledevice/+bug/1641417/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1460709] Re: graphite-web returns Internal Server Error due to incompatible changes in Django

2016-10-06 Thread Filip Pytloun
Hello,

this bug (incompatibility of graphite-web with django 1.8 and newer)
also affects current graphite-web (0.9.15+debian-1) in Xenial, making it
unusable.

Fortunately this was fixed in newer revision (0.9.15+debian-2) of
graphite-web, available in Debian unstable:

graphite-web (0.9.15+debian-2) unstable; urgency=medium

  [ Mathieu Parent ]
  * Remove me from uploaders

  [ Jonas Genannt ]
  * d/README: change to migrate (Closes: #824230)
  * d/README: added chown for sqlite usage (Closes: #811389)
  * Added backported patch for Django 1.9 (Closes: #824962)
  * d/control:
- bumped standards version
- changed to secure Vcs URLs

 -- Jonas Genannt   Sun, 22 May 2016 15:32:51 +0200

Someone should backport this patch or whole package from current Debian
unstable into Xenial to make it work again.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1460709

Title:
  graphite-web returns Internal Server Error due to incompatible changes
  in Django

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/graphite-web/+bug/1460709/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 682662] Re: pam-auth-update ignores debconf settings

2016-06-14 Thread Filip Pytloun
Also facing this issue, it's weird that newer pam-auth-update also ignores 
default option in pam configs. So now it's not possible to non-interactively 
enable new profile (but it was working in trusty).
Here's updated script to add one profile (mkhomedir) to current set of profiles:

#!/bin/sh

PROFILES=$(debconf-get-selections | grep libpam-runtime/profiles | cut -d ' ' 
-f 2- | sed s/\,\ mkhomedir//g)
PROFILES="${PROFILES}, mkhomedir"

for profile in /usr/share/pam-configs/*; do
profile_name=$(grep Name: $profile | cut -d ' ' -f 2-)
PROFILES=$(echo $PROFILES | sed s,$(basename 
$profile),"${profile_name}",g)
done

cat > $1