sci-mathematics/sofastatistics
SOFA is a statistics, analysis, and reporting program
ChangeLog
commit 5d3ed58bcc819e9a050cb9ff240c90c0fa15899d
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Mon Jul 27 09:33:01 2026 +0200
sci-mathematics/sofastatistics: pin psycopg to slot 2
dev-python/psycopg is slotted: slot 2 is psycopg2 and installs the
psycopg2 module, slot 0 is psycopg 3 and installs psycopg. The
dependency here was unslotted, so portage was free to satisfy it with
slot 0 -- and does, that being the default -- while
sofa_main/dbe_plugins/dbe_postgresql.py does `import psycopg2`. Its
except branch re-raises rather than falling back, so the PostgreSQL
backend fails on a system whose declared dependency is fully satisfied.
Pinning :2 makes portage pull the slot the code actually imports;
emerge now installs it alongside slot 0 rather than treating the
existing psycopg 3 as sufficient.
This surfaces a DeprecatedDep that the wrong atom was masking: gentoo
deprecated psycopg:2 in 2023 as superseded by version 3. The dependency
cannot be dropped from our side while upstream imports psycopg2 by
name, so the finding is accurate and the real fix is porting the plugin
to psycopg 3.
commit d3265df91ff1b6b1004c26261612e672fb174ec1
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Sun May 10 00:30:23 2026 +0200
sci-mathematics/sofastatistics: append /download to SF SRC_URI
Sourceforge 308-redirects bare files/.../foo.tar.gz URLs to the
/download counterpart that hands off to the chosen mirror. Rewrite
SRC_URI to the /download form so pkgcheck stops flagging it as
RedirectedUrl, and so emerge avoids the extra hop on every fetch.
commit 946b3d5e6f85aa6d17632eb69d8c14152e056548
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Wed Apr 29 23:16:52 2026 +0200
*/*: normalize metadata.xml DTD URL and indent
Repo-wide sweep: 144 metadata.xml files updated to use the
https://www.gentoo.org/dtd/metadata.dtd DTD URL (was http://) and
2-space indentation (was tabs). Maintainer blocks left untouched —
the 2026-04-22 normalization sweep added <name> alongside <email>
where the maintainer was Ivan, but third-party maintainer entries
(lebedev.vasya@gmail.com, megagreener@gmail.com, brothermechanic@gmail.com,
etc.) keep their email-only blocks since we can't safely guess the
corresponding <name>.
pkgcheck stays silent on all metadata-* and maintainer-* checks.
commit 0f0c21f32cb049f1b981e31d2efd71b3b5f3976e
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Wed Apr 29 15:24:54 2026 +0200
sci-mathematics/sofastatistics: declare missing runtime deps and fix PyPDF2 import
The source unconditionally imports pillow/PIL (image export), openpyxl
(spreadsheet import), and pymysql (MySQL DBE plugin); none of those
were declared in RDEPEND.
dev-python/PyPDF2 is no longer in ::gentoo, but the export_output_pdfs
module still does "import PyPDF2 as pypdf" at module load. The
dev-python/pypdf successor is already in RDEPEND and exposes the same
PdfReader API, so rename the import in src_prepare instead of carrying
a dead PyPDF2 dep.
commit b91cd93a12cb39be1b4976cdc1af27ca13ce34e5
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Tue Apr 21 15:16:42 2026 +0200
*/*: bump PYTHON_COMPAT from python3_ to python3_
::gentoo has dropped python3.11 from most of the scientific Python
stack - scipy, pandas, ipython, sphinx, sympy, etc. all target
python3_ now. Overlay ebuilds still claiming python3_11
support therefore fail to resolve their PYTHON_USEDEP=[...,
python_targets_python3_11(-),...] clauses against those upstream
packages, which is the bulk of pkgcheck's NonsolvableDeps noise.
Sweep PYTHON_COMPAT across the overlay accordingly. Files touched
include 193 pure-python3 ebuilds plus 4 sci-libs/pycifrw ebuilds that
retain the python2_7 target. Commented-out COMPAT lines and one
ebuild using a custom $ array are left alone.
pkgcheck dropped from 710 to 475 lines after this change; specifically
NonsolvableDepsIn{Dev,Stable} fell from 391 to 182 combined.
Users on a python3.11 profile lose access to the updated versions in
this overlay, mirroring what ::gentoo already did to the rest of the
scientific stack.
Signed-off-by: Raukaan Cogbrother <cogbrother@raukaan.local>
commit c83e6b2236eb95d5fb33cfeced2f2bda87ba46f5
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Tue Apr 21 01:15:15 2026 +0200
sci-mathematics/sofastatistics: drop dead deps, cleanup
media-gfx/wkhtmltopdf was dropped from the overlay (upstream
archived) and app-text/pdftk is gone from ::gentoo. Both were used
only for the PDF/image export feature and are invoked via
subprocess, so the rest of the app works without them. Document
that in pkg_postinst.
- Bump EAPI 7 -> 8
- Fix SRC_URI (stray '#' before '->'), add sofastatistics.com to
HOMEPAGE
- Drop duplicated L10Ns variable; just iterate LANGS
- Add pkg_setup calling python-single-r1_pkg_setup
- Minor reordering / idioms
commit 333a849082e704941d018a7f0b99678eda18904f
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Tue Apr 21 01:07:29 2026 +0200
*/*: bump PYTHON_COMPAT to python3_
Match the ::gentoo convention (main tree dropped 3.9 / 3.10 support
a while ago). Three mechanical substitutions:
- python3_ -> python3_ (189 ebuilds)
- python3_ -> python3_ (llvmlite)
- python2_7 python3_ -> python2_7 python3_ (pycifrw)
Leaves the legacy python2_7-only ebuilds and dev-python/cython
(special PYTHON_TESTED pattern on the 0.29 series) untouched.
commit 18d9000b3a3309a3bd5b621604da9b8e10db0fd4
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Mon Apr 20 00:14:11 2026 +0200
sci-mathematics/sofastatistics: bump to 1.5.7, drop 1.5.3, 1.5.6
commit 83e9ad7c962489e26062178f3cb5faece7babaaf
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Sun Apr 19 13:28:49 2026 +0200
sci-mathematics/sofastatistics: reorder global variables to canonical order
commit e78c63dfd1943f232fc86796871ce9a816eb9d9d
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Sun Apr 19 13:09:10 2026 +0200
sci-mathematics/sofastatistics: use relative path in dosym
commit e87050a2856e0580c6e954f2a041af206f900f30
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Sun Apr 19 13:03:22 2026 +0200
sci-mathematics/sofastatistics: drop redundant dodir
commit c01f59ab736ccd75aaed364617ab0e4893f06a66
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Sun Apr 19 12:44:01 2026 +0200
sci-mathematics/sofastatistics: drop unused inherits
commit 145cba89038e5f8f36ffd3fa5008f9d6fffd1b9d
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Sun Apr 19 12:33:09 2026 +0200
sci-mathematics/sofastatistics: wrap long comment
commit f23ece73c4451e2377c17d8b90acb53bee608563
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Thu Jan 15 21:28:34 2026 +0100
*/*: UPD header, Happy New Year
Signed-off-by: Ivan S. Titov <iohann.s.titov@gmail.com>
commit faa1a6bd0ab2591e7f00f30c0e9a6e14a81f56b3
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Thu Dec 11 12:32:55 2025 +0100
Corrected missing blank line after EAPI warning
Signed-off-by: Ivan S. Titov <iohann.s.titov@gmail.com>
commit bd56ad8c4cfa96514317be4d851cb4fcbd6b8802
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Thu Dec 11 10:40:56 2025 +0100
*/*: adjusting python compat to 3.9 to 3.14
Signed-off-by: Ivan S. Titov <iohann.s.titov@gmail.com>
commit 5b6e5c178b2d3ab344576f7f369e6a3d2a5ae68d
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Wed Dec 10 21:32:24 2025 +0100
sci-mathematics/sofastatistics: add sourceforge upstream metadata
Signed-off-by: Ivan S. Titov <iohann.s.titov@gmail.com>
commit 75d55441dbb2e55a7102e44b643e2e17cdfbc05d
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Fri Oct 17 21:58:20 2025 +0200
finally upd year to 2025 :)
commit b451ac3b81ed540a5ce0bbef96d542cd2a2a0dcd
Author: istitov <istitov@github>
Date: Mon Feb 12 10:45:30 2024 +0100
upd copyright to 2024
commit 0b7fcf9639be3e82b30db7da1cc4785887b54326
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Sat Nov 25 04:52:49 2023 +0300
mass updated PYTHON_COMPAT for python:3
commit 3cb09d35603c5fd4f83e6c99cbf576bd7eb19e94
Author: VasilyLebedev <vasily.lebedev@ul.ie>
Date: Mon Nov 6 11:42:23 2023 +0000
sofastat
commit 48945780358f03a15149c157357fee6dafea2c53
Author: Ivan S. Titov <istitov@github.com>
Date: Thu Sep 14 23:32:55 2023 +0200
upd: header
commit 8a085aef66c49e3fe1372053707a90962ee34976
Author: VasilyLebedev <vasily.lebedev@ul.ie>
Date: Sat Jan 21 01:29:36 2023 +0000
Add files via upload
commit 74ec148e13979b80cbcda0d5443adf20c040602f
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Wed Jul 20 23:57:11 2022 +0300
minor cleanups
commit d786509ba8df71e12952938f6351402ec7ecfbc7
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Wed Jul 20 23:16:50 2022 +0300
upd date in ebuilds
commit 5ae9c641546f61cf4e7bc8f7f6df07df270d69c7
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Thu Jan 28 19:25:41 2021 +0100
corrected gentoo header
commit 5152d4075b1ffc4f2f296bdd15a35de2c8555039
Author: LebedevV <vasya_lebedev@mail.ru>
Date: Sun Aug 16 22:42:39 2020 +0000
Delete sofastatistics-1.4.6.ebuild
commit c3f4cb0b3445c1279489248a321009ad56462a4e
Author: LebedevV <vasya_lebedev@mail.ru>
Date: Sun Aug 16 22:42:19 2020 +0000
sci-mathematics/sofastatistics moved to py3
Repomaned, compiled, functionality not checked.
A lot of deps were removed...
commit 9e5a7f3772f4a09e8b53e83e9ac498e21fab7a12
Author: LebedevV <vasya_lebedev@mail.ru>
Date: Thu Jul 30 03:36:31 2020 +0000
minor changes in sofastatistics
commit 8c96aa531885bf7d2ce05251f6ebe5ca3a3986b8
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Wed Jan 8 21:24:30 2020 +0100
corrected gentoo copyright
commit 9667dda9524293bbdbc6bc02bddc1008b5a4d87c
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Wed Jan 8 21:17:27 2020 +0100
upd gentoo copyright
commit 97f930455421d1b62bab9a753246e9e08cddcd4c
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Thu Oct 17 22:31:11 2019 +0200
changed first line, you know
commit b546596acfc0a6707c063cad4c1ebc25aca955d3
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Mon Aug 27 21:36:19 2018 +0200
repomaned sofastat
commit e5fabc2fc09f882ee492405060b97d77d8467f2f
Author: Alexander <alex@ws54.tk>
Date: Sat Aug 25 02:42:21 2018 +0700
sci-mathematics/sofastatistics
Some little fix
Signed-off-by: Alexander <alex@ws54.tk>
commit 62afe5e4b32d480b266bb76679c736312f2ffdda
Author: Alexander <alex@ws54.tk>
Date: Sat Aug 25 01:20:12 2018 +0700
sci-mathematics/sofastatistics
Update Manifest and ebuild
Signed-off-by: Alexander <alex@ws54.tk>
commit 6c49fc2ed473f0d107f81f5ccc948b3abaa61c6f
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Tue Jan 2 22:20:52 2018 +0100
unkeyworded sofastatistics, as it requires masked pdftk
commit 8d566098fddb64a3873306b870ca29b507f911a3
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Tue Jan 2 21:46:42 2018 +0100
changed copyright line
commit 920d4e2fe5a3d71e301e39c1c0b84f86010f29bb
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Tue Oct 10 01:04:42 2017 +0200
upd sofastatistics
commit 31fa7f00f5474e1d511e5d37c0092094fe907a32
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Tue Oct 10 00:43:18 2017 +0200
ci-mathematics/sofastatistics: drop old
commit bb85b02785774eae535613d975fcba412bee88ed
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Wed Mar 29 23:14:30 2017 +0200
httpsed sofastatistics
commit 6fd8b2059eeea31da9a74f1b5ea7931b2d86a0ce
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Wed Mar 29 03:32:22 2017 +0200
removed Stale CVS header on line 3
commit 9b6fccc9abb63471167a5f4ea64d3934eb2b250b
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Sat Jan 21 16:48:16 2017 +0100
2016 -> 2017 transition
commit 77580303daa8ad51671f8d35a1b4317952cd09bc
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Sun Jun 19 17:08:48 2016 +0200
repomaned metadata.xml files
commit c535e6c5eae3644dae2deb3ece5d53a54593363e
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Fri Feb 5 01:37:36 2016 +0100
upd gentoo copyright to 2016
commit 865769de6ceb22b1c2bfe66aa87b908ddfe06b41
Author: Heather <Heather@live.ru>
Date: Wed Aug 12 15:35:57 2015 +0400
fix headers and copyright lines
commit 1d8bc252d114f9be2bec8548af1370f80fb952d7
Author: megabaks <megagreener@gmail.com>
Date: Fri Mar 21 22:06:08 2014 +0400
fix Copyright
commit 00ebbc8ce5ef9d09aae766f29d4189af562f54e6
Author: megabaks <megagreener@gmail.com>
Date: Sun Mar 16 13:48:51 2014 +0400
sci-mathematics/sofastatistics-1.4.3: version bump
commit e27ab7cd0e576dab220fa830f2d2328be4df6357
Author: megabaks <megagreener@gmail.com>
Date: Sun Feb 9 15:32:54 2014 +0400
sci-mathematics/sofastatistics-1.4.2: version bump
commit 918475ed8cc9e1b425af815375fe58df1c5bead3
Author: megabaks <megagreener@gmail.com>
Date: Wed Feb 5 23:26:22 2014 +0400
dev-python/pythonmagick-0.9.9; sci-mathematics/sofastatistics-1.4.1-r1
commit 4d3277b0576a6df3ef7590fe7e27391b6b8872b5
Author: megabaks <megagreener@gmail.com>
Date: Sat Feb 1 11:40:16 2014 +0400
sci-mathematics/sofastatistics: rm old
commit 5b02b30b17af5be100afe6845ced02f702c66ca6
Author: megabaks <megagreener@gmail.com>
Date: Sat Feb 1 11:39:33 2014 +0400
QA
commit 3b9df6a6fb29c9b6369018912fe8034b3b8cefe4
Author: megabaks <megagreener@gmail.com>
Date: Sat Feb 1 11:35:30 2014 +0400
sci-mathematics/sofastatistics-1.4.1: version bump, fix deps, linguas
commit 7c90bfda4d655ec454ec381b16b4b24175a84303
Author: megabaks <megagreener@gmail.com>
Date: Sun Dec 15 15:14:02 2013 +0400
ci-mathematics/sofastatistics-1.4.0: version bump
commit dc3073600a999e233656f153f3620e6edb7c10b7
Author: megabaks <megagreener@gmail.com>
Date: Tue Nov 26 09:30:24 2013 +0400
sci-mathematics/sofastatistics-1.3.5: version bump
commit 4a1ff008154c89216146fbc73b139c61bf709216
Author: megabaks <megagreener@gmail.com>
Date: Tue Nov 19 23:19:40 2013 +0400
remove unneeded trash
commit b05b89b2908f7810dfe8cfb141ce052de9416bc6
Author: megabaks <megagreener@gmail.com>
Date: Thu Nov 14 00:16:20 2013 +0400
deadbeef-fb: live and bump; ooops
commit 26b174df343e07fb9ef1e16278d61c3e3732cb03
Author: megabaks <megagreener@gmail.com>
Date: Tue Jul 23 16:25:10 2013 +0400
sci-mathematics/sofastatistics: new line
commit 3e8e55d5c08b5e790104babb957adb528c6dac20
Author: megabaks <megagreener@gmail.com>
Date: Tue Jul 23 16:24:06 2013 +0400
sci-mathematics/sofastatistics-1.3.4: version bump
commit 1489bdf20c7577355ac08a21d3a6ba491c9172f5
Author: megabaks <megagreener@gmail.com>
Date: Mon May 6 23:05:59 2013 +0400
shiiiiit
commit 20cc3d1bb513bc5563341a865ff1327a47feb7ee
Author: megabaks <megagreener@gmail.com>
Date: Wed Apr 10 02:48:00 2013 +0400
sci-mathematics/sofastatistics-1.3.3
commit a77fa0255558e9cd05252ad462be919f40e32424
Author: megabaks <megagreener@gmail.com>
Date: Sat Apr 6 23:23:40 2013 +0400
noncritical QA
commit 209fa0d5d42920dc00b772f7caf0cb5a9883f17a
Author: megabaks <megagreener@gmail.com>
Date: Sun Mar 3 14:15:15 2013 +0400
QA; sofastatistics: fix deps, version bump
commit 5820844b549750e9c18b43d0bf365cb3cc08425f
Author: megabaks <megagreener@gmail.com>
Date: Fri Jan 18 10:49:01 2013 +0400
sci-mathematics/sofastatistics: deps: QA
commit fa50aba1b462cfebae187055f4741ac84509a66b
Author: megabaks <megagreener@gmail.com>
Date: Thu Jan 10 06:03:50 2013 +0400
sci-mathematics/sofastatistics-1.3.1: version bump
commit 661231104b3c799d0fc4fd5803151081d4283c81
Author: megabaks <megagreener@gmail.com>
Date: Sun Nov 4 17:58:40 2012 +0400
sci-mathematics/sofastatistics-1.3.0: QA
commit adf4266af9221f592850b94fa3f9ebadf1191ab9
Author: megabaks <megagreener@gmail.com>
Date: Sun Nov 4 17:52:26 2012 +0400
sci-mathematics/sofastatistics-1.3.0: version bump
commit a7cdfe2e31309121d67aed5dfe394b293fd34b5d
Author: megabaks <megagreener@gmail.com>
Date: Thu Sep 20 16:52:23 2012 +0000
sci-mathematics/sofastatistics-1.2.2: version bump
commit 18c0b12860d6766acce5deca631803054ef4265d
Author: megabaks <megagreener@gmail.com>
Date: Thu Aug 30 18:26:57 2012 +0000
sci-mathematics/sofastatistics-1.2.1: version bump
commit 0100046eb2d7b6a89597774d85e19a55bdd30dd3
Author: megabaks <megagreener@gmail.com>
Date: Wed Aug 22 00:58:53 2012 +0000
sci-mathematics/sofastatistics-1.2.0: version bump
commit e59004f92fd517c97561c6fcc751843bfb015ec2
Author: megabaks <megagreener@gmail.com>
Date: Tue Jul 10 21:01:16 2012 +0000
sci-mathematics/sofastatistics-1.1.7: version bump
commit 766e5424d94285edcd79914b4204850e51144bea
Author: megabaks <megagreener@gmail.com>
Date: Sat Jun 30 05:29:25 2012 +0000
sci-mathematics/sofastatistics-1.1.6: now works fine with dev-python/matplotlib-1.1.0
commit eaa3b822ce8e0a22a46d9427cb78487897be71c3
Author: megabaks <megagreener@gmail.com>
Date: Sat Jun 30 05:24:40 2012 +0000
sci-mathematics/sofastatistics-1.1.6: version bump
commit f5002bdaf8d5b8b2ebed3d81df6d610bcbd66285
Author: megabaks <megagreener@gmail.com>
Date: Sun Apr 8 14:50:57 2012 +0000
thin-manifest && QA
commit 9661ca4631b5d5f3560063e80d04e49468798504
Author: megabaks <megagreener@gmail.com>
Date: Sun Apr 8 03:40:44 2012 +0000
QA again
commit cf5924519217557efff8e8d2edbd7aafaf4366d6
Author: megabaks <megagreener@gmail.com>
Date: Fri Feb 24 16:07:46 2012 +0000
sci-mathematics/sofastatistics-1.1.4: version bump
commit 888624d41f5cf0efd3eaa02e258cec7a3c0d516a
Author: megabaks <megagreener@gmail.com>
Date: Thu Feb 23 23:55:54 2012 +0000
remove x11-libs/xvba-video: exist in the main tree; some QA fixes
commit befec6540b2aa1d07a4cfcb27c15b35d328459fd
Author: megabaks <megagreener@gmail.com>
Date: Wed Feb 22 02:02:29 2012 +0000
some QA fixes
commit e5518122b8bb319cb032b2bccf3c25a958955c48
Author: megabaks <megagreener@gmail.com>
Date: Sun Jan 15 12:01:07 2012 +0000
some fixes
libdbusmenu.patch: remove trash
commit f3794133bc06d421cf5a3cad1780c240e0d07194
Author: megabaks <megagreener@gmail.com>
Date: Tue Jan 3 03:21:56 2012 +0000
restore
commit 7b01b143ceeb90ff858dd97f1030ad28e7d228c6
Author: megabaks <megagreener@gmail.com>
Date: Tue Jan 3 03:21:24 2012 +0000
del
commit 5dca0e65ed3472e6f24bb99fae6140ca49961df1
Author: megabaks <megagreener@gmail.com>
Date: Wed Dec 21 05:46:23 2011 +0000
sci-mathematics/sofastatistics-1.1.3 bump version
commit a1a0ca04020fd136809d780e97d27da11ed032a1
Author: megabaks <megagreener@gmail.com>
Date: Thu Dec 1 08:14:44 2011 +0000
sci-mathematics/sofastatistics - fix HOMEPAGE
commit c9d4cb479eaa07ad6e8883e87576061552ce6656
Author: megabaks <megagreener@gmail.com>
Date: Thu Dec 1 07:48:51 2011 +0000
sofastatistics - fixed depends
commit 77d8d63100ab1bb1251de78b2ec9507b8e4ac3a1
Author: megabaks <megagreener@gmail.com>
Date: Wed Nov 30 22:38:08 2011 +0000
hz
commit 0ec0091486e534b6330eb49daf7d442973cb0baf
Author: megabaks <megagreener@gmail.com>
Date: Wed Nov 30 17:00:47 2011 +0000
hz
commit bac5f50cf02483da2f48acc1fec6944cdfd21000
Author: megabaks <megagreener@gmail.com>
Date: Wed Nov 30 16:54:50 2011 +0000
hz
commit e418bb1aaeab1600d3a5e54d9d5a88814911b2b3
Author: megabaks <megagreener@gmail.com>
Date: Sun Nov 27 18:00:19 2011 +0000
hz
commit 117c63edf83fb03e523a65c170b36ab906430ea4
Author: megabaks <megagreener@gmail.com>
Date: Fri Nov 4 17:48:09 2011 +0000
hz
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Mon Jul 27 09:33:01 2026 +0200
sci-mathematics/sofastatistics: pin psycopg to slot 2
dev-python/psycopg is slotted: slot 2 is psycopg2 and installs the
psycopg2 module, slot 0 is psycopg 3 and installs psycopg. The
dependency here was unslotted, so portage was free to satisfy it with
slot 0 -- and does, that being the default -- while
sofa_main/dbe_plugins/dbe_postgresql.py does `import psycopg2`. Its
except branch re-raises rather than falling back, so the PostgreSQL
backend fails on a system whose declared dependency is fully satisfied.
Pinning :2 makes portage pull the slot the code actually imports;
emerge now installs it alongside slot 0 rather than treating the
existing psycopg 3 as sufficient.
This surfaces a DeprecatedDep that the wrong atom was masking: gentoo
deprecated psycopg:2 in 2023 as superseded by version 3. The dependency
cannot be dropped from our side while upstream imports psycopg2 by
name, so the finding is accurate and the real fix is porting the plugin
to psycopg 3.
commit d3265df91ff1b6b1004c26261612e672fb174ec1
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Sun May 10 00:30:23 2026 +0200
sci-mathematics/sofastatistics: append /download to SF SRC_URI
Sourceforge 308-redirects bare files/.../foo.tar.gz URLs to the
/download counterpart that hands off to the chosen mirror. Rewrite
SRC_URI to the /download form so pkgcheck stops flagging it as
RedirectedUrl, and so emerge avoids the extra hop on every fetch.
commit 946b3d5e6f85aa6d17632eb69d8c14152e056548
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Wed Apr 29 23:16:52 2026 +0200
*/*: normalize metadata.xml DTD URL and indent
Repo-wide sweep: 144 metadata.xml files updated to use the
https://www.gentoo.org/dtd/metadata.dtd DTD URL (was http://) and
2-space indentation (was tabs). Maintainer blocks left untouched —
the 2026-04-22 normalization sweep added <name> alongside <email>
where the maintainer was Ivan, but third-party maintainer entries
(lebedev.vasya@gmail.com, megagreener@gmail.com, brothermechanic@gmail.com,
etc.) keep their email-only blocks since we can't safely guess the
corresponding <name>.
pkgcheck stays silent on all metadata-* and maintainer-* checks.
commit 0f0c21f32cb049f1b981e31d2efd71b3b5f3976e
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Wed Apr 29 15:24:54 2026 +0200
sci-mathematics/sofastatistics: declare missing runtime deps and fix PyPDF2 import
The source unconditionally imports pillow/PIL (image export), openpyxl
(spreadsheet import), and pymysql (MySQL DBE plugin); none of those
were declared in RDEPEND.
dev-python/PyPDF2 is no longer in ::gentoo, but the export_output_pdfs
module still does "import PyPDF2 as pypdf" at module load. The
dev-python/pypdf successor is already in RDEPEND and exposes the same
PdfReader API, so rename the import in src_prepare instead of carrying
a dead PyPDF2 dep.
commit b91cd93a12cb39be1b4976cdc1af27ca13ce34e5
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Tue Apr 21 15:16:42 2026 +0200
*/*: bump PYTHON_COMPAT from python3_ to python3_
::gentoo has dropped python3.11 from most of the scientific Python
stack - scipy, pandas, ipython, sphinx, sympy, etc. all target
python3_ now. Overlay ebuilds still claiming python3_11
support therefore fail to resolve their PYTHON_USEDEP=[...,
python_targets_python3_11(-),...] clauses against those upstream
packages, which is the bulk of pkgcheck's NonsolvableDeps noise.
Sweep PYTHON_COMPAT across the overlay accordingly. Files touched
include 193 pure-python3 ebuilds plus 4 sci-libs/pycifrw ebuilds that
retain the python2_7 target. Commented-out COMPAT lines and one
ebuild using a custom $ array are left alone.
pkgcheck dropped from 710 to 475 lines after this change; specifically
NonsolvableDepsIn{Dev,Stable} fell from 391 to 182 combined.
Users on a python3.11 profile lose access to the updated versions in
this overlay, mirroring what ::gentoo already did to the rest of the
scientific stack.
Signed-off-by: Raukaan Cogbrother <cogbrother@raukaan.local>
commit c83e6b2236eb95d5fb33cfeced2f2bda87ba46f5
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Tue Apr 21 01:15:15 2026 +0200
sci-mathematics/sofastatistics: drop dead deps, cleanup
media-gfx/wkhtmltopdf was dropped from the overlay (upstream
archived) and app-text/pdftk is gone from ::gentoo. Both were used
only for the PDF/image export feature and are invoked via
subprocess, so the rest of the app works without them. Document
that in pkg_postinst.
- Bump EAPI 7 -> 8
- Fix SRC_URI (stray '#' before '->'), add sofastatistics.com to
HOMEPAGE
- Drop duplicated L10Ns variable; just iterate LANGS
- Add pkg_setup calling python-single-r1_pkg_setup
- Minor reordering / idioms
commit 333a849082e704941d018a7f0b99678eda18904f
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Tue Apr 21 01:07:29 2026 +0200
*/*: bump PYTHON_COMPAT to python3_
Match the ::gentoo convention (main tree dropped 3.9 / 3.10 support
a while ago). Three mechanical substitutions:
- python3_ -> python3_ (189 ebuilds)
- python3_ -> python3_ (llvmlite)
- python2_7 python3_ -> python2_7 python3_ (pycifrw)
Leaves the legacy python2_7-only ebuilds and dev-python/cython
(special PYTHON_TESTED pattern on the 0.29 series) untouched.
commit 18d9000b3a3309a3bd5b621604da9b8e10db0fd4
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Mon Apr 20 00:14:11 2026 +0200
sci-mathematics/sofastatistics: bump to 1.5.7, drop 1.5.3, 1.5.6
commit 83e9ad7c962489e26062178f3cb5faece7babaaf
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Sun Apr 19 13:28:49 2026 +0200
sci-mathematics/sofastatistics: reorder global variables to canonical order
commit e78c63dfd1943f232fc86796871ce9a816eb9d9d
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Sun Apr 19 13:09:10 2026 +0200
sci-mathematics/sofastatistics: use relative path in dosym
commit e87050a2856e0580c6e954f2a041af206f900f30
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Sun Apr 19 13:03:22 2026 +0200
sci-mathematics/sofastatistics: drop redundant dodir
commit c01f59ab736ccd75aaed364617ab0e4893f06a66
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Sun Apr 19 12:44:01 2026 +0200
sci-mathematics/sofastatistics: drop unused inherits
commit 145cba89038e5f8f36ffd3fa5008f9d6fffd1b9d
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Sun Apr 19 12:33:09 2026 +0200
sci-mathematics/sofastatistics: wrap long comment
commit f23ece73c4451e2377c17d8b90acb53bee608563
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Thu Jan 15 21:28:34 2026 +0100
*/*: UPD header, Happy New Year
Signed-off-by: Ivan S. Titov <iohann.s.titov@gmail.com>
commit faa1a6bd0ab2591e7f00f30c0e9a6e14a81f56b3
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Thu Dec 11 12:32:55 2025 +0100
Corrected missing blank line after EAPI warning
Signed-off-by: Ivan S. Titov <iohann.s.titov@gmail.com>
commit bd56ad8c4cfa96514317be4d851cb4fcbd6b8802
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Thu Dec 11 10:40:56 2025 +0100
*/*: adjusting python compat to 3.9 to 3.14
Signed-off-by: Ivan S. Titov <iohann.s.titov@gmail.com>
commit 5b6e5c178b2d3ab344576f7f369e6a3d2a5ae68d
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Wed Dec 10 21:32:24 2025 +0100
sci-mathematics/sofastatistics: add sourceforge upstream metadata
Signed-off-by: Ivan S. Titov <iohann.s.titov@gmail.com>
commit 75d55441dbb2e55a7102e44b643e2e17cdfbc05d
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Fri Oct 17 21:58:20 2025 +0200
finally upd year to 2025 :)
commit b451ac3b81ed540a5ce0bbef96d542cd2a2a0dcd
Author: istitov <istitov@github>
Date: Mon Feb 12 10:45:30 2024 +0100
upd copyright to 2024
commit 0b7fcf9639be3e82b30db7da1cc4785887b54326
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Sat Nov 25 04:52:49 2023 +0300
mass updated PYTHON_COMPAT for python:3
commit 3cb09d35603c5fd4f83e6c99cbf576bd7eb19e94
Author: VasilyLebedev <vasily.lebedev@ul.ie>
Date: Mon Nov 6 11:42:23 2023 +0000
sofastat
commit 48945780358f03a15149c157357fee6dafea2c53
Author: Ivan S. Titov <istitov@github.com>
Date: Thu Sep 14 23:32:55 2023 +0200
upd: header
commit 8a085aef66c49e3fe1372053707a90962ee34976
Author: VasilyLebedev <vasily.lebedev@ul.ie>
Date: Sat Jan 21 01:29:36 2023 +0000
Add files via upload
commit 74ec148e13979b80cbcda0d5443adf20c040602f
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Wed Jul 20 23:57:11 2022 +0300
minor cleanups
commit d786509ba8df71e12952938f6351402ec7ecfbc7
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Wed Jul 20 23:16:50 2022 +0300
upd date in ebuilds
commit 5ae9c641546f61cf4e7bc8f7f6df07df270d69c7
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Thu Jan 28 19:25:41 2021 +0100
corrected gentoo header
commit 5152d4075b1ffc4f2f296bdd15a35de2c8555039
Author: LebedevV <vasya_lebedev@mail.ru>
Date: Sun Aug 16 22:42:39 2020 +0000
Delete sofastatistics-1.4.6.ebuild
commit c3f4cb0b3445c1279489248a321009ad56462a4e
Author: LebedevV <vasya_lebedev@mail.ru>
Date: Sun Aug 16 22:42:19 2020 +0000
sci-mathematics/sofastatistics moved to py3
Repomaned, compiled, functionality not checked.
A lot of deps were removed...
commit 9e5a7f3772f4a09e8b53e83e9ac498e21fab7a12
Author: LebedevV <vasya_lebedev@mail.ru>
Date: Thu Jul 30 03:36:31 2020 +0000
minor changes in sofastatistics
commit 8c96aa531885bf7d2ce05251f6ebe5ca3a3986b8
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Wed Jan 8 21:24:30 2020 +0100
corrected gentoo copyright
commit 9667dda9524293bbdbc6bc02bddc1008b5a4d87c
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Wed Jan 8 21:17:27 2020 +0100
upd gentoo copyright
commit 97f930455421d1b62bab9a753246e9e08cddcd4c
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Thu Oct 17 22:31:11 2019 +0200
changed first line, you know
commit b546596acfc0a6707c063cad4c1ebc25aca955d3
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Mon Aug 27 21:36:19 2018 +0200
repomaned sofastat
commit e5fabc2fc09f882ee492405060b97d77d8467f2f
Author: Alexander <alex@ws54.tk>
Date: Sat Aug 25 02:42:21 2018 +0700
sci-mathematics/sofastatistics
Some little fix
Signed-off-by: Alexander <alex@ws54.tk>
commit 62afe5e4b32d480b266bb76679c736312f2ffdda
Author: Alexander <alex@ws54.tk>
Date: Sat Aug 25 01:20:12 2018 +0700
sci-mathematics/sofastatistics
Update Manifest and ebuild
Signed-off-by: Alexander <alex@ws54.tk>
commit 6c49fc2ed473f0d107f81f5ccc948b3abaa61c6f
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Tue Jan 2 22:20:52 2018 +0100
unkeyworded sofastatistics, as it requires masked pdftk
commit 8d566098fddb64a3873306b870ca29b507f911a3
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Tue Jan 2 21:46:42 2018 +0100
changed copyright line
commit 920d4e2fe5a3d71e301e39c1c0b84f86010f29bb
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Tue Oct 10 01:04:42 2017 +0200
upd sofastatistics
commit 31fa7f00f5474e1d511e5d37c0092094fe907a32
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Tue Oct 10 00:43:18 2017 +0200
ci-mathematics/sofastatistics: drop old
commit bb85b02785774eae535613d975fcba412bee88ed
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Wed Mar 29 23:14:30 2017 +0200
httpsed sofastatistics
commit 6fd8b2059eeea31da9a74f1b5ea7931b2d86a0ce
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Wed Mar 29 03:32:22 2017 +0200
removed Stale CVS header on line 3
commit 9b6fccc9abb63471167a5f4ea64d3934eb2b250b
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Sat Jan 21 16:48:16 2017 +0100
2016 -> 2017 transition
commit 77580303daa8ad51671f8d35a1b4317952cd09bc
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Sun Jun 19 17:08:48 2016 +0200
repomaned metadata.xml files
commit c535e6c5eae3644dae2deb3ece5d53a54593363e
Author: Ivan S. Titov <iohann.s.titov@gmail.com>
Date: Fri Feb 5 01:37:36 2016 +0100
upd gentoo copyright to 2016
commit 865769de6ceb22b1c2bfe66aa87b908ddfe06b41
Author: Heather <Heather@live.ru>
Date: Wed Aug 12 15:35:57 2015 +0400
fix headers and copyright lines
commit 1d8bc252d114f9be2bec8548af1370f80fb952d7
Author: megabaks <megagreener@gmail.com>
Date: Fri Mar 21 22:06:08 2014 +0400
fix Copyright
commit 00ebbc8ce5ef9d09aae766f29d4189af562f54e6
Author: megabaks <megagreener@gmail.com>
Date: Sun Mar 16 13:48:51 2014 +0400
sci-mathematics/sofastatistics-1.4.3: version bump
commit e27ab7cd0e576dab220fa830f2d2328be4df6357
Author: megabaks <megagreener@gmail.com>
Date: Sun Feb 9 15:32:54 2014 +0400
sci-mathematics/sofastatistics-1.4.2: version bump
commit 918475ed8cc9e1b425af815375fe58df1c5bead3
Author: megabaks <megagreener@gmail.com>
Date: Wed Feb 5 23:26:22 2014 +0400
dev-python/pythonmagick-0.9.9; sci-mathematics/sofastatistics-1.4.1-r1
commit 4d3277b0576a6df3ef7590fe7e27391b6b8872b5
Author: megabaks <megagreener@gmail.com>
Date: Sat Feb 1 11:40:16 2014 +0400
sci-mathematics/sofastatistics: rm old
commit 5b02b30b17af5be100afe6845ced02f702c66ca6
Author: megabaks <megagreener@gmail.com>
Date: Sat Feb 1 11:39:33 2014 +0400
QA
commit 3b9df6a6fb29c9b6369018912fe8034b3b8cefe4
Author: megabaks <megagreener@gmail.com>
Date: Sat Feb 1 11:35:30 2014 +0400
sci-mathematics/sofastatistics-1.4.1: version bump, fix deps, linguas
commit 7c90bfda4d655ec454ec381b16b4b24175a84303
Author: megabaks <megagreener@gmail.com>
Date: Sun Dec 15 15:14:02 2013 +0400
ci-mathematics/sofastatistics-1.4.0: version bump
commit dc3073600a999e233656f153f3620e6edb7c10b7
Author: megabaks <megagreener@gmail.com>
Date: Tue Nov 26 09:30:24 2013 +0400
sci-mathematics/sofastatistics-1.3.5: version bump
commit 4a1ff008154c89216146fbc73b139c61bf709216
Author: megabaks <megagreener@gmail.com>
Date: Tue Nov 19 23:19:40 2013 +0400
remove unneeded trash
commit b05b89b2908f7810dfe8cfb141ce052de9416bc6
Author: megabaks <megagreener@gmail.com>
Date: Thu Nov 14 00:16:20 2013 +0400
deadbeef-fb: live and bump; ooops
commit 26b174df343e07fb9ef1e16278d61c3e3732cb03
Author: megabaks <megagreener@gmail.com>
Date: Tue Jul 23 16:25:10 2013 +0400
sci-mathematics/sofastatistics: new line
commit 3e8e55d5c08b5e790104babb957adb528c6dac20
Author: megabaks <megagreener@gmail.com>
Date: Tue Jul 23 16:24:06 2013 +0400
sci-mathematics/sofastatistics-1.3.4: version bump
commit 1489bdf20c7577355ac08a21d3a6ba491c9172f5
Author: megabaks <megagreener@gmail.com>
Date: Mon May 6 23:05:59 2013 +0400
shiiiiit
commit 20cc3d1bb513bc5563341a865ff1327a47feb7ee
Author: megabaks <megagreener@gmail.com>
Date: Wed Apr 10 02:48:00 2013 +0400
sci-mathematics/sofastatistics-1.3.3
commit a77fa0255558e9cd05252ad462be919f40e32424
Author: megabaks <megagreener@gmail.com>
Date: Sat Apr 6 23:23:40 2013 +0400
noncritical QA
commit 209fa0d5d42920dc00b772f7caf0cb5a9883f17a
Author: megabaks <megagreener@gmail.com>
Date: Sun Mar 3 14:15:15 2013 +0400
QA; sofastatistics: fix deps, version bump
commit 5820844b549750e9c18b43d0bf365cb3cc08425f
Author: megabaks <megagreener@gmail.com>
Date: Fri Jan 18 10:49:01 2013 +0400
sci-mathematics/sofastatistics: deps: QA
commit fa50aba1b462cfebae187055f4741ac84509a66b
Author: megabaks <megagreener@gmail.com>
Date: Thu Jan 10 06:03:50 2013 +0400
sci-mathematics/sofastatistics-1.3.1: version bump
commit 661231104b3c799d0fc4fd5803151081d4283c81
Author: megabaks <megagreener@gmail.com>
Date: Sun Nov 4 17:58:40 2012 +0400
sci-mathematics/sofastatistics-1.3.0: QA
commit adf4266af9221f592850b94fa3f9ebadf1191ab9
Author: megabaks <megagreener@gmail.com>
Date: Sun Nov 4 17:52:26 2012 +0400
sci-mathematics/sofastatistics-1.3.0: version bump
commit a7cdfe2e31309121d67aed5dfe394b293fd34b5d
Author: megabaks <megagreener@gmail.com>
Date: Thu Sep 20 16:52:23 2012 +0000
sci-mathematics/sofastatistics-1.2.2: version bump
commit 18c0b12860d6766acce5deca631803054ef4265d
Author: megabaks <megagreener@gmail.com>
Date: Thu Aug 30 18:26:57 2012 +0000
sci-mathematics/sofastatistics-1.2.1: version bump
commit 0100046eb2d7b6a89597774d85e19a55bdd30dd3
Author: megabaks <megagreener@gmail.com>
Date: Wed Aug 22 00:58:53 2012 +0000
sci-mathematics/sofastatistics-1.2.0: version bump
commit e59004f92fd517c97561c6fcc751843bfb015ec2
Author: megabaks <megagreener@gmail.com>
Date: Tue Jul 10 21:01:16 2012 +0000
sci-mathematics/sofastatistics-1.1.7: version bump
commit 766e5424d94285edcd79914b4204850e51144bea
Author: megabaks <megagreener@gmail.com>
Date: Sat Jun 30 05:29:25 2012 +0000
sci-mathematics/sofastatistics-1.1.6: now works fine with dev-python/matplotlib-1.1.0
commit eaa3b822ce8e0a22a46d9427cb78487897be71c3
Author: megabaks <megagreener@gmail.com>
Date: Sat Jun 30 05:24:40 2012 +0000
sci-mathematics/sofastatistics-1.1.6: version bump
commit f5002bdaf8d5b8b2ebed3d81df6d610bcbd66285
Author: megabaks <megagreener@gmail.com>
Date: Sun Apr 8 14:50:57 2012 +0000
thin-manifest && QA
commit 9661ca4631b5d5f3560063e80d04e49468798504
Author: megabaks <megagreener@gmail.com>
Date: Sun Apr 8 03:40:44 2012 +0000
QA again
commit cf5924519217557efff8e8d2edbd7aafaf4366d6
Author: megabaks <megagreener@gmail.com>
Date: Fri Feb 24 16:07:46 2012 +0000
sci-mathematics/sofastatistics-1.1.4: version bump
commit 888624d41f5cf0efd3eaa02e258cec7a3c0d516a
Author: megabaks <megagreener@gmail.com>
Date: Thu Feb 23 23:55:54 2012 +0000
remove x11-libs/xvba-video: exist in the main tree; some QA fixes
commit befec6540b2aa1d07a4cfcb27c15b35d328459fd
Author: megabaks <megagreener@gmail.com>
Date: Wed Feb 22 02:02:29 2012 +0000
some QA fixes
commit e5518122b8bb319cb032b2bccf3c25a958955c48
Author: megabaks <megagreener@gmail.com>
Date: Sun Jan 15 12:01:07 2012 +0000
some fixes
libdbusmenu.patch: remove trash
commit f3794133bc06d421cf5a3cad1780c240e0d07194
Author: megabaks <megagreener@gmail.com>
Date: Tue Jan 3 03:21:56 2012 +0000
restore
commit 7b01b143ceeb90ff858dd97f1030ad28e7d228c6
Author: megabaks <megagreener@gmail.com>
Date: Tue Jan 3 03:21:24 2012 +0000
del
commit 5dca0e65ed3472e6f24bb99fae6140ca49961df1
Author: megabaks <megagreener@gmail.com>
Date: Wed Dec 21 05:46:23 2011 +0000
sci-mathematics/sofastatistics-1.1.3 bump version
commit a1a0ca04020fd136809d780e97d27da11ed032a1
Author: megabaks <megagreener@gmail.com>
Date: Thu Dec 1 08:14:44 2011 +0000
sci-mathematics/sofastatistics - fix HOMEPAGE
commit c9d4cb479eaa07ad6e8883e87576061552ce6656
Author: megabaks <megagreener@gmail.com>
Date: Thu Dec 1 07:48:51 2011 +0000
sofastatistics - fixed depends
commit 77d8d63100ab1bb1251de78b2ec9507b8e4ac3a1
Author: megabaks <megagreener@gmail.com>
Date: Wed Nov 30 22:38:08 2011 +0000
hz
commit 0ec0091486e534b6330eb49daf7d442973cb0baf
Author: megabaks <megagreener@gmail.com>
Date: Wed Nov 30 17:00:47 2011 +0000
hz
commit bac5f50cf02483da2f48acc1fec6944cdfd21000
Author: megabaks <megagreener@gmail.com>
Date: Wed Nov 30 16:54:50 2011 +0000
hz
commit e418bb1aaeab1600d3a5e54d9d5a88814911b2b3
Author: megabaks <megagreener@gmail.com>
Date: Sun Nov 27 18:00:19 2011 +0000
hz
commit 117c63edf83fb03e523a65c170b36ab906430ea4
Author: megabaks <megagreener@gmail.com>
Date: Fri Nov 4 17:48:09 2011 +0000
hz


View
Download
Browse