[pypy-issue] Issue #3125: Logical error in detecting dirent.d_type (pypy/pypy)

2019-12-03 Thread Игорь Пашев
New issue 3125: Logical error in detecting dirent.d_type https://bitbucket.org/pypy/pypy/issues/3125/logical-error-in-detecting-direntd_type Игорь Пашев: Hi guys! I am porting Debian’s package pypy to Dyson which is Debian on illumos kernel and, so far, libc. Its dirent structure does not have

Packaging Sproxy2

2017-09-22 Thread Игорь Пашев
Hi guys, I'm on my way to package https://hackage.haskell.org/package/sproxy2 Actually it's an excuse for learning Debian's Haskell ecosystem :) So far I have added few dependencies missed in current DHG collection: you can find them at http://cgit.osdyson.org/pkg-haskell/DHG_packages.git/log/

Re: When do we update the homepage to a modern design? (was Re: Moving away from (unsupportable) FusionForge on Alioth)

2017-05-16 Thread Игорь Пашев
2017-05-15 13:12 GMT+03:00 lumin : > Especially look at the homepage of Gentoo It's ugly, seriously.

Re: [Maria-discuss] Cross compile error

2017-05-16 Thread Игорь Пашев
I found this: https://forum.lede-project.org/t/solved-mariadb-mysql-update/2337 Marked as solved :) 2017-03-25 18:52 GMT+03:00 Lucian Cristian : > Hi > > I'm trying to cross compile (any 10.* versions) using musl and uClibc++ for > a LEDE/Openwrt system and I have problems with

Re: [Maria-discuss] MySQL Workbench Fork?

2017-05-07 Thread Игорь Пашев
2017-05-04 10:04 GMT+03:00 Bruce Carlson : > In the 21st century It's all about automation, reproducibility, declarative deployment and neural networks (of course!) :) ___ Mailing list: https://launchpad.net/~maria-discuss

Re: [Nix-dev] Typing nix − funding campaign

2017-01-17 Thread Игорь Пашев
2017-01-12 16:51 GMT+03:00 Marc Weber : > Have you never debugged a "got x but y expected" problem? The typesystem > is there, its just lazy as nix is - typed on evaluation. This is nothing. Haskell is typed on evaluation too. Nix is an interpreter, not a compiler :)

[Nix-dev] OpenLDAP config from scratch

2016-12-15 Thread Игорь Пашев
Does somebody run OpenLDAP [1] with config dir (not file)? I'm wondering about minimal configuration. [1] https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/databases/openldap.nix ___ nix-dev mailing list nix-dev@lists.science.uu.nl

Re: [Nix-dev] Usability: Nixpkg > NixOS

2016-12-15 Thread Игорь Пашев
2016-12-15 16:03 GMT+03:00 Mark Gardner : > Starting with nixpkg and then talking about NixOS causes the same problem > but in reverse. As an example, I came to the Nix community as the result of > NixOS, not nixpkg. I am not sure I would have been attracted to the > community if

Re: [Nix-dev] X11 rtkit.service and failing nixos-rebuild

2016-11-29 Thread Игорь Пашев
Something happens at line 58 of this file, that lacks permissions. E. g. execute, delete or even read. 29 нояб. 2016 г. 14:23 пользователь "Ruben Astudillo" написал: > Hi all > > On nixos-16.09, in two different machines, the nixos-rebuild test > command fails with the

Re: [Nix-dev] Make either 'bin' or 'out' the first output.

2016-11-16 Thread Игорь Пашев
Re: https://github.com/NixOS/nixpkgs/commit/a17216af4c82dbeb33030355664d96875558f7ac I'm not sure if this is indented, but with those changes "mariadb.client == mariadb.client.bin" And if you need the library you have to write "mariadb.client.out" And "compat." hack ("mariadb.lib =

Re: [Maria-developers] Deleting unused branches on github

2016-11-10 Thread Игорь Пашев
2016-11-07 20:59 GMT+03:00 Vicențiu Ciorbaru : > I'm wondering if it makes sense to have an automatic cleanup process for > branches older than X months? After few months / clock glitch it _could_ drop the entire repo :D I encourage people to use personal forks. Not merged

Re: [Maria-discuss] on stored procedures

2016-11-08 Thread Игорь Пашев
2016-11-07 18:43 GMT+03:00 Sergei Golubchik : > Hi, Federico! > > On Nov 07, Federico Razzoli wrote: >> Some good points from Bill Karwin: >> https://www.quora.com/What-are-the-reasons-not-to-use-or-not-use-stored-procedures/answer/Bill-Karwin > > Thanks. > > These are valid

Re: [Nix-dev] Override php xslSupport config option

2016-11-01 Thread Игорь Пашев
; php56 >> duplicity >> nodejs >> redis >> php56Packages.apcu >> php56Packages.composer >> php56Packages.redis >> certbot >> sysstat >> iotop >> ]; >> >

Re: [Nix-dev] Override php xslSupport config option

2016-10-30 Thread Игорь Пашев
Something like this: { php70 }: php70.merge { cfg = { apxs2Support = false; ldapSupport = false; mssqlSupport = false; pdo_pgsqlSupport = false; postgresqlSupport = false; sqliteSupport = false; xslSupport = false; }; } Use this with

Re: [Maria-discuss] Minor version upgrades across a cluster

2016-10-27 Thread Игорь Пашев
2016-10-26 16:58 GMT+03:00 Craig Bailey : > We have a three node MariaDB Galera cluster on version 10.1.14 an we would > like to upgrade to 10.1.18. Our approach to this was to offline a node > upgrade it and then add it back to the cluster and allow it to do an IST to > catch

Re: [Nix-dev] Convert sha1 from base64 into "normal" string

2016-10-13 Thread Игорь Пашев
2016-10-13 10:21 GMT+03:00 zimbatm : > My understanding of fetchurl is that the hash can be both in hex and base64 > formats no? No :-) It probably should be extended to support base64. And/or base64 support should be in the library, or in nix builtins. But at this time I

Re: [Nix-dev] How to make "gcc -static ..." work

2016-10-12 Thread Игорь Пашев
It requires libc.a Maybe you have to add glibc into the environment. This will work only if glibc is built with static library support, or you are able to alter it. 2016-10-12 16:24 GMT+03:00 Bjørn Forsman : > Hi all, > > On Ubuntu, I can compile static binaries with "gcc

[Nix-dev] PoC: keys in XML files

2016-10-11 Thread Игорь Пашев
Most of Java apps use XML file to store configuration. The idea is to keep this interface instead of multiple yet limited number of options, complete set of which you may never know. Especially with plugins ;-) So if an app wants XML, it gets it. But since they may include secrets, we need to

Re: [Nix-dev] Convert sha1 from base64 into "normal" string

2016-10-11 Thread Игорь Пашев
You must be wondering why :-) https://github.com/zalora/nixsap/commit/592dee8bef92debede3724bf5ddbf8249c30c488 ___ nix-dev mailing list nix-dev@lists.science.uu.nl http://lists.science.uu.nl/mailman/listinfo/nix-dev

Re: [Nix-dev] Convert sha1 from base64 into "normal" string

2016-10-11 Thread Игорь Пашев
i = quartet_to_int24 q; h = int24_to_hex i; s = if substring 2 1 q == "=" then 1 else if substring 3 1 q == "=" then 2 else 3; # number of bytes w = s * 2; # number of hexadecimal digits filler = concatStringsSep "" (genL

Re: [Nix-dev] recursiveUpdate for lists

2016-10-11 Thread Игорь Пашев
2016-10-11 16:44 GMT+03:00 Tomasz Czyż : > Basically I created simple wrapper function to create systemd services. > > The function produces something like > > { > my-service={ > requires=["service1.service"]; > }; > } > > I want to customize it after with

Re: [Nix-dev] recursiveUpdate for lists

2016-10-11 Thread Игорь Пашев
Something like https://github.com/NixOS/nixpkgs/blob/master/lib/types.nix#L117 ? I don't know what you are dealing with, but probably you could delegate it to modules. 2016-10-11 16:00 GMT+03:00 Tomasz Czyż : > Hi, > > I'm using recursiveUpdate to merge some attribute sets

Re: [Nix-dev] Convert sha1 from base64 into "normal" string

2016-10-11 Thread Игорь Пашев
in "${if d != 0 then toHex d else ""}${substring r 1 hex}"; in assert (0 <= i && i <= 16777215); toHex i; quartets = s: let l = stringLength s; h = substring 0 4 s; t = substring 4 (l - 4) s; in [h] ++ (if t != "&

[Nix-dev] Convert sha1 from base64 into "normal" string

2016-10-07 Thread Игорь Пашев
Hi all. What options are there to convert a base64-encoded raw binary data into "normal" hexadecimal string in Nix (during evalutation)? E. i. "kjOzmCPxyw0bPciMsGSh5q+bT9g=" -> "9233b39823f1cb0d1b3dc88cb064a1e6af9b4fd8" to make it valid input for fetchurl, etc.

Re: [Nix-dev] 16.09 beta released

2016-09-24 Thread Игорь Пашев
NixOps 1.4 / Vbox + 16.09: trace: warning: The option `boot.loader.grub.timeout' defined in `/nix/store/6wp4v37jg04sh1fd3wbbkmppan5pd1sg-nixops-1.4/share/nix/nixops/virtualbox-image-nixops.nix' has been renamed to `boot.loader.timeout'. error: undefined variable ‘device’ at

[Nix-dev] Bootstrap Nix

2016-09-23 Thread Игорь Пашев
Hello guys :-) How do you bootstrap Nix on an entirely new platform? http://osdyson.org/news/99 ___ nix-dev mailing list nix-dev@lists.science.uu.nl http://lists.science.uu.nl/mailman/listinfo/nix-dev

Re: [Nix-dev] Setuid wrapper for bash script

2016-09-14 Thread Игорь Пашев
Universal setuid wrappers: https://gist.github.com/ip1981/818f1a48f2d205ec7aa4496927339209 Create a wrapper starting as root, dropping privileges asap, executing your script. ___ nix-dev mailing list nix-dev@lists.science.uu.nl

Re: [Nix-dev] NixOps usage survey.

2016-09-07 Thread Игорь Пашев
2016-09-07 13:22 GMT+03:00 4levels <4lev...@gmail.com>: > We've been pleasantly surprised that every single deploy has given identical > results on all (currently 12) servers in the various datacenter locations of > Vultr. Yeah, develop in VBox, deploy to everywhere. The other day I moved one of

Re: [Nix-dev] NixOps usage survey.

2016-09-06 Thread Игорь Пашев
I'm using NixOps in production, EC2, Hetzner, VBox with no issues. Of course, commit NixOps state (JSON) in git with git-crypt. And this wrapper for NixOps: #!/usr/bin/env bash set -euo pipefail NIXPKGS=https://github.com/NixOS/nixpkgs-channels/archive/nixos-15.09.tar.gz

Re: [Maria-discuss] Don't replicate procedures in the mysql database

2016-08-31 Thread Игорь Пашев
. 1:27 пользователь "Federico Razzoli" <federico_...@yahoo.it> написал: > I never used replicate_ignore_db='mysql'. But I know some people does. Did > you check if it has side effects? > > Federico > > > -------- > Mer 31/

Re: [Maria-discuss] Don't replicate procedures in the mysql database

2016-08-31 Thread Игорь Пашев
Thanks to everyone Here is the solution: On the slave: Replicate_Ignore_DB: mysql Replicate_Do_Table: Replicate_Ignore_Table: Replicate_Wild_Do_Table: foo.% Replicate_Wild_Ignore_Table: On the master: USE mysql; CREATE PROCEDURE whatever() BEGIN END;

[Maria-discuss] Don't replicate procedures in the mysql database

2016-08-28 Thread Игорь Пашев
Hi all, I'm using multi-source replication with "white list" options only: foo.replicate_wild_do_table = foo.% foo.replicate_ignore_table = foo.beep foo.replicate_ignore_table = foo.tmp The masters are writing row-based binary logs as is (no filtering at masters). This works almost as

[Maria-discuss] Query the list of dynamic variables

2016-08-18 Thread Игорь Пашев
If there are way to query the list of dynamic variables, e. i. variables that can be changed globally without restarting the server? ___ Mailing list: https://launchpad.net/~maria-discuss Post to : maria-discuss@lists.launchpad.net Unsubscribe :

Bug#699219: icon: New upstream version, git, 3.0 (quilt) format

2016-08-11 Thread Игорь Пашев
Sure, http://cgit.osdyson.org/icon.git 2016-08-12 1:05 GMT+03:00 Santiago Vila : > On Tue, 29 Jan 2013, Igor Pashev wrote: > >> Source: icon >> Severity: wishlist >> >> Dear Maintainer, >> >> I've adopted icon for the 3.0 (quilt) fromat, created git repository, and >> updated to

Bug#699219: icon: New upstream version, git, 3.0 (quilt) format

2016-08-11 Thread Игорь Пашев
Sure, http://cgit.osdyson.org/icon.git 2016-08-12 1:05 GMT+03:00 Santiago Vila : > On Tue, 29 Jan 2013, Igor Pashev wrote: > >> Source: icon >> Severity: wishlist >> >> Dear Maintainer, >> >> I've adopted icon for the 3.0 (quilt) fromat, created git repository, and >> updated to

Re: [Nix-dev] Umask Setting in NixOS

2016-06-25 Thread Игорь Пашев
I would set in one of the shell initialization scripts, like programs.bash.interactiveShellInit = '' umask ... ''; Or, for services, in systemd service options / scripts 2016-06-22 17:21 GMT+03:00 Roger Qiu : > Hi, > > In a new installation of NixOS, the umask

Re: [Nix-dev] Persistent NixOps keys

2016-06-20 Thread Игорь Пашев
2016-06-20 14:51 GMT+03:00 4levels <4lev...@gmail.com>: > As I never change these keys (except by a nixops deploy or nixops send-keys > call), can I assume that the save-keys service doesn't need to run every > single minute in this scenario? You can remove /root/keys by accident. In our setups,

Re: [Nix-dev] Persistent NixOps keys

2016-06-20 Thread Игорь Пашев
2016-06-19 15:35 GMT+03:00 4levels <4lev...@gmail.com>: > I was just wondering how this copes with server kills The "save" service runs every minute to check if any keys are not saved :-) And it runs on every key addition / removal. So right after a fresh deploy you are almost safe.

Re: [Nix-dev] Persistent NixOps keys

2016-06-16 Thread Игорь Пашев
2016-06-14 17:17 GMT+03:00 4levels <4lev...@gmail.com>: > wantedBy = [ "keys.target" ]; Maybe you don't have services depending on keys.target ___ nix-dev mailing list nix-dev@lists.science.uu.nl http://lists.science.uu.nl/mailman/listinfo/nix-dev

Re: [Nix-dev] Stackage Support Will Be Discontinued

2016-06-11 Thread Игорь Пашев
2016-06-08 22:58 GMT+03:00 Teo Klestrup Röijezon : > So there will no longer be a way to pin Haskell dependencies? That's a bit > annoying. I can understand the desire to keep security-critical packages > like OpenSSL and user-facing tools like git-annex up to date, but at the >

Re: [Nix-dev] Persistent NixOps keys

2016-05-09 Thread Игорь Пашев
2016-05-09 13:49 GMT+03:00 Tomasz Czyż : > I'm not sure I understand this correctly. Do you want to put keys into the > initrd? No, I keep them under /root/keys. The save service polls /run/keys for updates. ___ nix-dev mailing

[Nix-dev] Persistent NixOps keys

2016-05-08 Thread Игорь Пашев
Simple way to keep the keys on reboot. /run/keys is mounted somewhere in initrd, thus just a couple of services (I was thinking about on-disk /run/keys) { config, lib, pkgs, ... }: let inherit (builtins) attrNames; inherit (lib) mkIf concatMapStringsSep; inherit (config.deployment) keys;

Re: [Nix-dev] Source URL breakage – please can we improve the determinism

2016-05-08 Thread Игорь Пашев
Can't be nix cache used for this? Source tarballs are kind of derivation too. ___ nix-dev mailing list nix-dev@lists.science.uu.nl http://lists.science.uu.nl/mailman/listinfo/nix-dev

[Nix-dev] Empty string in single quotes

2016-03-08 Thread Игорь Пашев
Hi all. How can I write an empty string between single quotes when using two single quotes syntax? This does the trick: '' ${"''"} '' Where is the best place to ask or to find answer for such questions? ___ nix-dev mailing list

Re: [Nix-dev] Using Nix as the preferred package manager for a new language

2016-02-11 Thread Игорь Пашев
If you don't want a new package manager, why a new language? 10 февр. 2016 г. 0:40 пользователь написал: > Hi! I've tried to start this discussion a couple times on IRC, but it > hasn't really gotten attention, so: > > I'm one of the developers of Monte, a new programming

Re: [Nix-dev] NixOS modules: restrict the values of a `types.listOf x`

2016-01-22 Thread Игорь Пашев
Use enum and pkgs.${foo} ? 22 янв. 2016 г. 7:31 пользователь "Eric Sagnes" написал: > Hi, > > I would like to force an option of type `types.listOf packages` to allow > only a certain list of packages. > Something like `types.someOf packages [ pkgs.pluginA pkgs.pluginB >

Re: [Nix-dev] User and group ID ranges

2016-01-15 Thread Игорь Пашев
2016-01-15 11:50 GMT+03:00 Christian Kauhaus : > It's more a policy question base = 10 <= this is the policy :-) ___ nix-dev mailing list nix-dev@lists.science.uu.nl http://lists.science.uu.nl/mailman/listinfo/nix-dev

Re: [Nix-dev] User and group ID ranges

2016-01-14 Thread Игорь Пашев
I use this function to get IDs: uid = name: let dec = { "0" = 0; "1" = 1; "2" = 2; "3" = 3; "4" = 4; "5" = 5; "6" = 6; "7" = 7; "8" = 8; "9" = 9; "a" = 10; "b" = 11; "c" = 12; "d" = 13; "e" = 14; "f" = 15; }; base = 10; #

[Nix-dev] MariaDB 10.1.10 cycle

2016-01-08 Thread Игорь Пашев
I know MariaDB 10.1.10 is not packaged yet, but simple version bump does not work: patching script interpreter paths in /nix/store/vwdhxnwq8n6kgyis6kf3yllkmlzwz5xi-mariadb-10.1.10-lib /nix/store/vwdhxnwq8n6kgyis6kf3yllkmlzwz5xi-mariadb-10.1.10-lib/bin/mysql_config: interpreter directive changed

Re: [Nix-dev] MariaDB 10.1.10 cycle

2016-01-08 Thread Игорь Пашев
https://github.com/MariaDB/server/commit/c597ed01112c2f6549c59e6548d4ff53803487df 2016-01-08 11:50 GMT+03:00 Игорь Пашев <pashev.i...@gmail.com>: > It looks like we can just remove that macro: > https://github.com/MariaDB/server/search?p=2=SHAREDIR=%E2%9C%93 We can't. But here is w

Re: [Nix-dev] isFloat

2015-12-29 Thread Игорь Пашев
OMG :-) Thank you. I didn't know about regexes. Now we are saved! 29 дек. 2015 г. 23:38 пользователь "Harald van Dijk" <har...@gigawatt.nl> написал: > On 29/12/2015 13:20, Игорь Пашев wrote: > > Is anybody needs floats in options :-) > > > >isFloat =

[Nix-dev] isFloat

2015-12-29 Thread Игорь Пашев
Is anybody needs floats in options :-) isFloat = x: isInt x || ( isString x && 3 > length (splitString "." x) && all (s: 2 == length (splitString s " 0123456789. ")) (stringToCharacters x) ); float = mkOptionType { name = "float"; check = isFloat; };

Re: [Nix-dev] Change owner and permissions of a file in nix-store

2015-12-16 Thread Игорь Пашев
I'd suggest to use NixOps keys and these tricks http://lists.science.uu.nl/pipermail/nix-dev/2015-November/018806.html 2015-12-16 18:07 GMT+03:00 Augustin Borsu : > I'm using the following snippet to deploy a private key and certificate > to my server using nixops. > I was

[Nix-dev] journald and /var/log on a separate device

2015-12-16 Thread Игорь Пашев
I tried to use /var/log on a separate disk. After first deployment of VBox (via NixOps) /var/log is mounted, but empty: $ ls -lh /var/log/ total 16K drwx-- 2 root root 16K Dec 17 00:28 lost+found $ sudo journalctl No journal files were found. It seems that this stuff is executed before

Re: [Maria-discuss] Replication variables in my.cnf seem ignored if master connection does not exist

2015-12-16 Thread Игорь Пашев
; -- import dump with --master-data=1 -- start slave; 2015-12-14 15:59 GMT+03:00 Игорь Пашев <pashev.i...@gmail.com>: > MariaDB 10.0.22 > > I saw weird things a couple of times: > > I start clean MariaDB with theses options in the configuration file: > foo.replicate_w

[Maria-discuss] Replication variables in my.cnf seem ignored if master connection does not exist

2015-12-14 Thread Игорь Пашев
MariaDB 10.0.22 I saw weird things a couple of times: I start clean MariaDB with theses options in the configuration file: foo.replicate_wild_do_table = foo_live.% foo.replicate_ignore_table = foo_live.schema_updates Then I execute RESET SLAVE "foo" ALL just to be sure there is no such

Re: [Maria-discuss] MariaDB Performance and Diagnostic Tools

2015-12-14 Thread Игорь Пашев
2015-12-14 22:29 GMT+03:00 FERRETTI, ANDY : > I’m looking for recommendations on MariaDB Performance Analysis tools. Something like that: Percona Toolkit and Newrelic ___ Mailing list: https://launchpad.net/~maria-discuss Post to :

Re: [Nix-dev] How to write module outside the nixpkgs tree and integrated with nixos-rebuild

2015-12-03 Thread Игорь Пашев
2015-12-04 6:12 GMT+03:00 rohit yadav : > Hi, > > How to write a NixOS module that is outside the nixpkgs tree and integrate > it with nixos-rebuild. I particularly want to define few services which > should be run in a particular order. I believe I can define them

Re: [Nix-dev] Replace module options

2015-11-29 Thread Игорь Пашев
; are trying to achieve, and what module within NixOS is causing you > some trouble. > > > On Sun, Nov 29, 2015 at 4:12 PM, Игорь Пашев <pashev.i...@gmail.com> > wrote: > > Hi all. > > > > Is there a way to exclude some NixOS module from evaluation > > an

Bug#806575: sqlite3: Package sqldiff

2015-11-29 Thread Игорь Пашев
Package: sqlite3 Version: 3.9.1-1 Severity: minor Dear Maintainer, sqlite3 comes with the sqldiff utility. Please add it into the package!

Re: [Nix-dev] Replace module options

2015-11-29 Thread Игорь Пашев
2015-11-29 19:26 GMT+03:00 Joel Moberg : > I think every service have a enable attribute, you should be able to set > this to false or just override that service with another one (example > config.systemd.services.alsa-store.enable=false). nix-repl is useful to > inspect

Re: [Nix-dev] Jenkins declarative jobs?

2015-10-11 Thread Игорь Пашев
Gorgot this https://github.com/zalora/microgram/blob/master/pkgs/jenkins/default.nix We also have some nix expressions for xml configs but those are very specific and do not cover many things. ___ nix-dev mailing list nix-dev@lists.science.uu.nl

Re: Placing code after #DEBHELPER# autogenerated code?

2015-09-03 Thread Игорь Пашев
2015-09-03 16:53 GMT+03:00 Patrick Schleizer : > Hi, > > are there legitimate cases, where it is okay to place code after the > #DEBHELPER# token? exit 0 :-)

Re: [Nix-dev] Can't unsubscribe

2015-08-17 Thread Игорь Пашев
You could unsubscribe with email http://www.list.org/mailman-member/node14.html 2015-08-17 1:00 GMT+03:00 Miroslav Puda paka...@gmail.com: Hi, I can't get pasword reminder nor unsubscribe myself on http://lists.science.uu.nl/mailman/listinfo/nix-dev Can someone fix it or at least unsubscribe

Re: Mass bug filing about non free lena image.

2015-08-14 Thread Игорь Пашев
2015-08-12 16:32 GMT+03:00 Andreas Tille andr...@an3as.eu: Any productive suggestion? Take a picture of one of Debian women ? :-)

Re: [Nix-dev] Announcing cabal2nix version 20150807

2015-08-09 Thread Игорь Пашев
I wonder if we could avoid copying package names from {...} to xxxDepends. ___ nix-dev mailing list nix-dev@lists.science.uu.nl http://lists.science.uu.nl/mailman/listinfo/nix-dev

Re: Facilitating external repositories

2015-07-28 Thread Игорь Пашев
2015-06-05 19:10 GMT+03:00 Josh Triplett j...@joshtriplett.org: Given that the packages in question appear to be Free Software (at least from a quick check of a couple of them, as well as the repository being named main), is there a reason you don't maintain them in Debian (including backports

Re: Okay to exit after triggers before auto generated #DEBHELPER# code?

2015-07-24 Thread Игорь Пашев
TL;DR: yes triggers and configure phase are different and independent things. -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org Archive:

Bug#792156: RFS: cuba/3.0+20111124-3

2015-07-12 Thread Игорь Пашев
Package: sponsorship-requests Severity: normal I am looking for a sponsor for my package cuba * Package name: cuba Version : 3.0+2024-3 Upstream Author : Thomas Hahn h...@feynarts.de * URL : http://www.feynarts.de/cuba/ * License : LGPL-3+ Section

Bug#792156: RFS: cuba/3.0+20111124-3

2015-07-12 Thread Игорь Пашев
Package: sponsorship-requests Severity: normal I am looking for a sponsor for my package cuba * Package name: cuba Version : 3.0+2024-3 Upstream Author : Thomas Hahn h...@feynarts.de * URL : http://www.feynarts.de/cuba/ * License : LGPL-3+ Section

Re: Fwd: Package cuba was rejected

2015-07-08 Thread Игорь Пашев
Thanks to everyone! I've sorted it :-) -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org Archive: https://lists.debian.org/call-q8zrxzgcjv9yszb6uiv-sntwor8ne4dctefyrfyv2ax...@mail.gmail.com

Bug#778041: open-axiom: ftbfs with GCC-5

2015-07-08 Thread Игорь Пашев
I'm currently updating OpenAxiom package, and will fix whatever issues. -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org

Bug#778041: open-axiom: ftbfs with GCC-5

2015-07-08 Thread Игорь Пашев
I'm currently updating OpenAxiom package, and will fix whatever issues. -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org

Fwd: Package cuba was rejected

2015-07-07 Thread Игорь Пашев
How could I fix this? -- Forwarded message -- From: mentors.debian.net supp...@mentors.debian.net Date: 2015-07-08 0:27 GMT+03:00 Subject: Package cuba was rejected To: pashev.i...@gmail.com Hello, Unfortunately your package cuba was rejected because of the following reason:

Re: [Nix-dev] Installing Nix under Debian Jessie (32-bit)

2015-07-02 Thread Игорь Пашев
nix's deb was built against older perl in Debian. From my point nix's debs and rpm do not make sense, since right after installing it you will be using nix from nix store. I usually use install script https://nixos.org/nix/install 2015-07-01 20:30 GMT+03:00 Sean Whitton

Re: how to modify gcc to compile a[b] differently

2015-04-01 Thread Игорь Пашев
2015-04-01 12:19 GMT+03:00 Richard Biener richard.guent...@gmail.com: You probably want to do this in the frontends. And one of them is C++ :-)

Re: Please more fish (was: so long and thanks for all the fish)

2014-11-09 Thread Игорь Пашев
2014-11-10 0:38 GMT+03:00 Simon Richter s...@debian.org: automake With autotools one can always use plain shell code in configure.ac and plain make in Makefile.am ;-) -- To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact

Bug#765466:

2014-10-19 Thread Игорь Пашев
https://github.com/rails/rails/commit/1391d74e41b786d2f1a3a4ecf7fad1eda7e49622 -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org

Bug#765466:

2014-10-19 Thread Игорь Пашев
http://www.redmine.org/issues/18132 -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org

Bug#765466:

2014-10-19 Thread Игорь Пашев
This helped me: I changed Issue.update_all closed_on = created_on, {:status_id = closed_status_ids, :closed_on = nil} to Issue.where({:status_id = closed_status_ids, :closed_on = nil}).update_all closed_on = created_on in

Bug#765466:

2014-10-19 Thread Игорь Пашев
Fixed upstream http://www.redmine.org/issues/18132 -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org

Re: [open-axiom-devel] FTBFS: internal compiler error: in cp_perform_integral_promotions, at cp/typeck.c:2066

2014-10-02 Thread Игорь Пашев
Yeah, it's a GCC regression https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63405 2014-10-02 3:28 GMT+04:00 Gabriel Dos Reis g...@integrable-solutions.net: On Mon, Sep 29, 2014 at 12:29 AM, Игорь Пашев pashev.i...@gmail.com wrote: Hi all! It was found that OA fails to build with GCC 4.9

Fwd: open-axiom is marked for autoremoval from testing

2014-09-29 Thread Игорь Пашев
Is it really a good idea to remove packages which FTBFS because of *internal compiler error*? Shouldn't GCC be removed instead? :-) -- Forwarded message -- From: Debian testing autoremoval watch nore...@release.debian.org Date: 2014-09-29 8:39 GMT+04:00 Subject: open-axiom is

GCC 4.9 internal compiler error

2014-09-29 Thread Игорь Пашев
Hi all! It was found that OA fails to build with GCC 4.9 on amd64 [1] I can confirm this with r3094 on bare metal too. # gcc --version gcc-4.9.real (Debian 4.9.1-14) 4.9.1 Copyright (C) 2014 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO

Bug#761549:

2014-09-29 Thread Игорь Пашев
this is a GCC bug https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63405 -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org

[open-axiom-devel] FTBFS: internal compiler error: in cp_perform_integral_promotions, at cp/typeck.c:2066

2014-09-29 Thread Игорь Пашев
Hi all! It was found that OA fails to build with GCC 4.9 on amd64 [1] I can confirm this with r3094 on bare metal too. Quoting [1]: g++ -DHAVE_CONFIG_H -I. -I../../../src/syntax -I../../config -I../../../src/include -I../../x86_64-pc-linux-gnu/include -D_FORTIFY_SOURCE=2 -m64

Bug#761549:

2014-09-29 Thread Игорь Пашев
this is a GCC bug https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63405 -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org

Bug#755459: RFS: lucene/4.9.0-1 [put in ITP, ITA, RC, NMU if applicable]

2014-09-03 Thread Игорь Пашев
You may need to build it with export CLASSPATH=/usr/share/java/ivy.jar in debian/rules And I saw ivy tends to fetch some files from the net 2014-07-23 0:51 GMT+04:00 Hilko Bengen ben...@debian.org: * Raaj S: I am looking for a sponsor for my package lucene * Package name: lucene

Bug#755459: RFS: lucene/4.9.0-1 [put in ITP, ITA, RC, NMU if applicable]

2014-09-03 Thread Игорь Пашев
You may need to build it with export CLASSPATH=/usr/share/java/ivy.jar in debian/rules And I saw ivy tends to fetch some files from the net 2014-07-23 0:51 GMT+04:00 Hilko Bengen ben...@debian.org: * Raaj S: I am looking for a sponsor for my package lucene * Package name: lucene

Bug#750057: texlive-latex-base: \today command prints wrong month for June in Russian

2014-06-01 Thread Игорь Пашев
Package: texlive-latex-base Version: 2014.20140528-3 Severity: important \today command prints wrong month for June in Russian: it prints iюнь (latin i followed by cyrillic юнь) while it should print июнь (cyrillic i at the first position) I'm attaching pdf, fls and log files made by pdflatex

Bug#749848: cln: clean target removes all directories under debian/

2014-06-01 Thread Игорь Пашев
2014-06-01 12:15 GMT+04:00 Richard B. Kreckel krec...@ginac.de: Hello Igor, Thank you very much for submitting a patch. On 05/30/2014 10:16 AM, Игорь Пашев wrote: Source: cln Severity: important Dear Maintainer, clean target removes all directories under debian/ including patches

Bug#749848: cln: clean target removes all directories under debian/

2014-06-01 Thread Игорь Пашев
2014-06-01 13:50 GMT+04:00 Richard B. Kreckel krec...@ginac.de: 2. Add d/source/format (3.0 (quilt)) Why is this file needed? Hm.. did you know about https://wiki.debian.org/Projects/DebSrc3.0 ? ;-) 3. Add Dyson specific patch (actually, a brute force fix for perror) Again: What problem

Bug#749848: cln: clean target removes all directories under debian/

2014-06-01 Thread Игорь Пашев
2014-06-01 14:10 GMT+04:00 Richard B. Kreckel krec...@ginac.de: Sorry for being dumb, but what on Dyson? (My internet search only brings up vacuum cleaners and a bunch of persons.) Sorry :-) It's Debian port to illumos kernel (formerly OpenSolaris) http://osdyson.org -- To UNSUBSCRIBE,

Bug#749848: cln: clean target removes all directories under debian/

2014-05-30 Thread Игорь Пашев
Source: cln Severity: important Dear Maintainer, clean target removes all directories under debian/ including patches and source. Packages in sid/jessie are invalide, see https://packages.debian.org/ru/source/jessie/cln, compare with https://packages.debian.org/ru/source/squeeze/cln. I've a

Bug#733033:

2014-05-25 Thread Игорь Пашев
I'd like to propose moving all documentation (including manpages) out of library package into, say, ocl-icd-docs, and mark it as arch all. -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org

Bug#733033:

2014-05-25 Thread Игорь Пашев
Please, ignore my previous message :-) You are right in any case. -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org

Bug#745480: [python2.7] Add support for lzma compressed tarballs

2014-04-22 Thread Игорь Пашев
Package: python2.7 Severity: wishlist Tags: patch Currently Debian patch tracker uses python 2 and fails to open *.debian.tar.xz, see for example: http://patch-tracker.debian.org/package/sbcl/2:1.1.15-1 I've made quick and dirty backport of tarfile from python3. Tested only with patch tracker:

Bug#745480: Updated patch

2014-04-22 Thread Игорь Пашев
Updated patch Previous version breaks openning gzipped files :-) due to uncaught exception --- /usr/lib/python2.7/tarfile.py.orig 2014-04-22 09:04:41.0 +0100 +++ /usr/lib/python2.7/tarfile.py 2014-04-22 09:55:48.0 +0100 @@ -440,6 +440,18 @@ else:

Bug#661739:

2014-04-22 Thread Игорь Пашев
I've created git repository and updated to 1.4: http://cgit.osdyson.org/gprolog.git/ -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org

[issue21287] Better support for AF_PACKET on opensolaris (illumos)

2014-04-17 Thread Игорь Пашев
New submission from Игорь Пашев: SIOCGIFINDEX could be defined in illumos (aka OpenSolaris) if BSD_COMP macro defined. This causes known error: no member ifr_ifindex in struct ifreq. But OpenSolaris provides newer interface with struct lifreq and SIOCGLIFINDEX. Attached patch tries to use

  1   2   3   4   5   >