clean
This commit is contained in:
@@ -1,3 +0,0 @@
|
||||
<PISI>
|
||||
<Name>programming.language</Name>
|
||||
</PISI>
|
||||
@@ -1,3 +0,0 @@
|
||||
<PISI>
|
||||
<Name>programming.language.python</Name>
|
||||
</PISI>
|
||||
@@ -1,28 +0,0 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import pythonmodules
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
WorkDir = "Babel-%s" % get.srcVERSION()
|
||||
|
||||
htmltxt = "%s/%s/html" % (get.docDIR(), get.srcNAME())
|
||||
|
||||
def build():
|
||||
shelltools.system("mkdir -p cldr")
|
||||
shelltools.system("cp core.zip cldr/cldr-core-35.1.zip")
|
||||
shelltools.system("python setup.py import_cldr")
|
||||
shelltools.system("python setup.py build")
|
||||
#pythonmodules.compile()
|
||||
|
||||
def install():
|
||||
pythonmodules.install()
|
||||
|
||||
pisitools.dohtml("docs/")
|
||||
#pisitools.insinto(htmltxt, "docs/*.txt")
|
||||
pisitools.dodoc("LICENSE","AUTHORS","README*")
|
||||
@@ -1,67 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python-Babel</Name>
|
||||
<Homepage>http://babel.pocoo.org</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>BSD</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>A collection of tools for internationalizing Python applications</Summary>
|
||||
<Description>Babel is composed of two major parts: 1) tools to build and work with gettext message catalogs , 2) a Python interface to the CLDR (Common Locale Data Repository), providing access to various locale display names, localized number and date formatting, etc.</Description>
|
||||
<Archive sha1sum="5605f75353368d32500afb30e60fc8f0edbca506" type="targz">https://github.com/python-babel/babel/releases/download/v2.7.0/Babel-2.7.0.tar.gz</Archive>
|
||||
<Archive sha1sum="f050b458cf5f29c2a3825247fb8a7b5e21471009" type="binary" target="Babel-2.7.0">https://www.unicode.org/Public/cldr/35.1/core.zip</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python-devel</Dependency>
|
||||
<Dependency>python-pytz</Dependency>
|
||||
<Dependency>python-setuptools</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>python-Babel</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>python-pytz</Dependency>
|
||||
<Dependency>python-setuptools</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc/python-Babel</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2019-10-03</Date>
|
||||
<Version>2.7.0</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>idris Kalp</Name>
|
||||
<Email>idriskalp@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2018-08-15</Date>
|
||||
<Version>2.6.0</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2018-02-26</Date>
|
||||
<Version>2.5.3</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2017-01-29</Date>
|
||||
<Version>2.3.4</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -1,8 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python-Babel</Name>
|
||||
<Summary xml:lang="tr">Python uygulamalarını uluslararasılaştırmak için bir takım koleksiyonu</Summary>
|
||||
<Description xml:lang="tr">Babel temelde iki parçadan oluşur: 1) gettext mesaj kataloglarıyla çalışmak ve onları derlemek için araçlar 2) CLDR(Common Locale Data Repository), Genel Yerel Veri Deposuna, çeşitli yerel gösterim isimlerine ulaşımı sağlamak, yerelleştirilmiş numara ve tarih biçimlerini desteklemek gibi özellikler sağlayan bir python arayüzü.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -1,30 +0,0 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import pythonmodules
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
examples = "%s/%s/examples" % (get.docDIR(), get.srcNAME())
|
||||
|
||||
WorkDir = "Jinja2-%s" % get.srcVERSION()
|
||||
|
||||
def build():
|
||||
pythonmodules.compile()
|
||||
|
||||
def install():
|
||||
pythonmodules.install()
|
||||
|
||||
pisitools.insinto(examples, "examples/*")
|
||||
|
||||
#Create docs with python-Sphinx
|
||||
#shelltools.cd("docs")
|
||||
#autotools.make("html")
|
||||
#shelltools.cd("..")
|
||||
#pisitools.dohtml("Jinja2-%s/docs/_build/html/*" % get.srcVERSION())
|
||||
pisitools.dodoc("CHANGES*", "README*")
|
||||
-15
@@ -1,15 +0,0 @@
|
||||
Description: drop next import from docs/jinjaext.py
|
||||
next is not available in jinja2/utils.py and all Python versions supported by
|
||||
Jessie already support this function, no need for backwards compatible wrapper
|
||||
Author: Piotr Ożarowski <piotr@debian.org>
|
||||
--- jinja2-2.7.orig/docs/jinjaext.py
|
||||
+++ jinja2-2.7/docs/jinjaext.py
|
||||
@@ -23,7 +23,7 @@ from pygments.style import Style
|
||||
from pygments.token import Keyword, Name, Comment, String, Error, \
|
||||
Number, Operator, Generic
|
||||
from jinja2 import Environment, FileSystemLoader
|
||||
-from jinja2.utils import next
|
||||
+#from jinja2.utils import next
|
||||
|
||||
|
||||
def parse_rst(state, content_offset, doc):
|
||||
@@ -1,86 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python-Jinja2</Name>
|
||||
<Homepage>http://jinja.pocoo.org/2/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>as-is</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>A small but fast and easy to use stand-alone template engine written in pure python</Summary>
|
||||
<Description>Jinja2 is the rewritten version of Jinja, sandboxed template engine written in pure Python. It provides a Django like non-XML syntax and compiles templates into executable python code. It's basically a combination of Django templates and python code.</Description>
|
||||
<Archive sha1sum="896a71a32336487edf1216d5d73dd3b26c4d7431" type="targz">https://files.pythonhosted.org/packages/93/ea/d884a06f8c7f9b7afbc8138b762e80479fb17aedbbe2b06515a12de9378d/Jinja2-2.10.1.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<!-- For creating documentations-->
|
||||
<!--<Dependency>python-sphinx</Dependency>-->
|
||||
<Dependency>python-setuptools</Dependency>
|
||||
<Dependency>python-MarkupSafe</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!-- <Patch level="1">drop_next_import_from_docs-jinjaext.patch</Patch> -->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>python-Jinja2</Name>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/python*</Path>
|
||||
<Path fileType="doc">/usr/share/doc/python-Jinja2/LICENSE</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>python-Jinja2-docs</Name>
|
||||
<Files>
|
||||
<Path fileType="doc">/usr/share/doc/python-Jinja2</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2019-10-03</Date>
|
||||
<Version>2.10.1</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>idris Kalp</Name>
|
||||
<Email>idriskalp@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2018-08-15</Date>
|
||||
<Version>2.10</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2018-02-26</Date>
|
||||
<Version>2.10</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2017-01-29</Date>
|
||||
<Version>2.9.5</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2016-06-09</Date>
|
||||
<Version>2.7.2</Version>
|
||||
<Comment>Release Bump</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2014-02-27</Date>
|
||||
<Version>2.7.2</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -1,13 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python-Jinja2</Name>
|
||||
<Summary xml:lang="tr">Küçük, hızlı ve kullanımı kolay, sadece python ile yazılmış bir bağımsız şablon üreteci</Summary>
|
||||
<Description xml:lang="tr">Jinja2, sadece python ile yazılmış bir şablon üreteci olan Jinja'nın yeniden yazılmış bir versiyonudur. Django benzeri XML-olmayan bir sözdizimi sağlar ve şablonları derleyip çalıştırılabilir python programları haline getirir. Temel olarak Django şablonları ve python kodunun birleşimi bir programdır.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>python-Jinja2-docs</Name>
|
||||
<Summary xml:lang="tr">python-Jinja2 için belgelendirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -1,23 +0,0 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import pythonmodules
|
||||
from pisi.actionsapi import get
|
||||
from pisi.actionsapi import shelltools
|
||||
|
||||
shelltools.export("PYTHONDONTWRITEBYTECODE", "1")
|
||||
|
||||
WorkDir = "MarkupSafe-%s" % get.srcVERSION()
|
||||
|
||||
def build():
|
||||
pythonmodules.compile()
|
||||
|
||||
def check():
|
||||
pythonmodules.compile("test")
|
||||
|
||||
def install():
|
||||
pythonmodules.install()
|
||||
|
||||
@@ -1,73 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python-MarkupSafe</Name>
|
||||
<Homepage>http://pypi.python.org/pypi/MarkupSafe</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>BSD</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Implements a XML/HTML/XHTML Markup safe string for Python</Summary>
|
||||
<Description>python-MarkupSafe, implements a unicode subclass that supports HTML strings.</Description>
|
||||
<Archive sha1sum="f70e5fd3c120a1b108d4347ea1115e3962c42026" type="targz">https://files.pythonhosted.org/packages/b9/2e/64db92e53b86efccfaea71321f597fa2e1b2bd3853d8ce658568f7a13094/MarkupSafe-1.1.1.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python-setuptools</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>python-MarkupSafe</Name>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/python2.*</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2019-10-03</Date>
|
||||
<Version>1.1.1</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>idris Kalp</Name>
|
||||
<Email>idriskalp@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2018-08-15</Date>
|
||||
<Version>1.0</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2018-02-26</Date>
|
||||
<Version>1.0</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2017-01-25</Date>
|
||||
<Version>0.23</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2016-06-09</Date>
|
||||
<Version>0.23</Version>
|
||||
<Comment>Release Bump</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2014-05-29</Date>
|
||||
<Version>0.23</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -1,8 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python-MarkupSafe</Name>
|
||||
<Summary xml:lang="tr">XML/HTML/XHTML markup dilleri için güvenli python karakter dizeleri gerçekleştirimi</Summary>
|
||||
<Description xml:lang="tr">python-MarkupSafe, HTML karakter dizeleri için unicode bir alt sınıf gerçekleştirimi sağlar.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -1,22 +0,0 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import pythonmodules
|
||||
from pisi.actionsapi import get
|
||||
|
||||
WorkDir="%s-%s" % (get.srcNAME().split("-")[1], get.srcVERSION())
|
||||
|
||||
def build():
|
||||
pythonmodules.compile()
|
||||
|
||||
def install():
|
||||
pythonmodules.install()
|
||||
|
||||
#pisitools.dohtml("docs/build/*")
|
||||
#pisitools.insinto("/usr/share/doc/%s/src/" % get.srcNAME(),"docs/src/*")
|
||||
pisitools.doman("doc/pygmentize.1")
|
||||
|
||||
@@ -1,75 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python-Pygments</Name>
|
||||
<Homepage>http://pygments.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>BSD</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>A syntax highlighting package written in Python</Summary>
|
||||
<Description>python-Pygments is a generic syntax highlighter for general use in all kinds of software such as forum systems, wikis or other applications that need to prettify source code.</Description>
|
||||
<Archive sha1sum="5296c3b92ef0cbb8f4abede623be4a89e4f0f3c9" type="targz">https://files.pythonhosted.org/packages/7e/ae/26808275fc76bf2832deb10d3a3ed3107bc4de01b85dcccbe525f2cd6d1e/Pygments-2.4.2.tar.gz</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>python-Pygments</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>python-setuptools</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib/python*</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>python-Pygments-docs</Name>
|
||||
<Summary>Documentation files for python-Pygments</Summary>
|
||||
<Files>
|
||||
<Path fileType="doc">/usr/share/doc/python-Pygments</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2019-10-03</Date>
|
||||
<Version>2.4.2</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>idris Kalp</Name>
|
||||
<Email>idriskalp@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2018-08-15</Date>
|
||||
<Version>2.2.0</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2017-01-25</Date>
|
||||
<Version>2.2.0</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2016-06-09</Date>
|
||||
<Version>1.6</Version>
|
||||
<Comment>Release Bump</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2013-12-07</Date>
|
||||
<Version>1.6</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Burak Fazıl Ertürk</Name>
|
||||
<Email>burakerturk@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -1,13 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python-Pygments</Name>
|
||||
<Summary xml:lang="tr">Python dilinde yazılmış bir sözdizimi belirtme aracı</Summary>
|
||||
<Description xml:lang="tr">python-Pygments, kaynak kodunu güzelleştirmek ihtiyacı duyulan forum sistemleri, wikiler ve diğer uygulamalar gibi her çeşit yazılımda kullanılmak için yazılmış olan genel bir sözdizimi belirtme aracıdır.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>python-Pygments-docs</Name>
|
||||
<Summary xml:lang="tr">python-Pygments için belgelendirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -1,19 +0,0 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import pythonmodules
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
|
||||
def build():
|
||||
pythonmodules.compile()
|
||||
|
||||
def install():
|
||||
pythonmodules.install()
|
||||
|
||||
pisitools.dodoc("LICENSE*", "README*")
|
||||
@@ -1,57 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python-imagesize</Name>
|
||||
<Homepage>https://github.com/shibukawa/imagesize_py</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>BSD</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Getting image size from png/jpeg/jpeg2000/gif file.</Summary>
|
||||
<Description>This module analyzes jpeg/jpeg2000/png/gif image header and return image size.</Description>
|
||||
<Archive sha1sum="48b7277a450654db77dc956812020525f5e478c8" type="targz">https://files.pythonhosted.org/packages/41/f5/3cf63735d54aa9974e544aa25858d8f9670ac5b4da51020bbfc6aaade741/imagesize-1.1.0.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python-devel</Dependency>
|
||||
<Dependency>python-setuptools</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>python-imagesize</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>python-setuptools</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2019-10-03</Date>
|
||||
<Version>1.1.0</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>idris Kalp</Name>
|
||||
<Email>idriskalp@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2018-08-15</Date>
|
||||
<Version>1.0.0</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2017-01-29</Date>
|
||||
<Version>0.7.1</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -1,8 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python-imagesize</Name>
|
||||
<Summary xml:lang="tr">Png / jpeg / jpeg2000 / gif dosyasından görüntü boyutu elde etme.</Summary>
|
||||
<Description xml:lang="tr">Bu modül jpeg / jpeg2000 / png / gif resim başlığını ve dönüş resim boyutunu analiz eder.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -1,16 +0,0 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import pythonmodules
|
||||
|
||||
def setup():
|
||||
pythonmodules.compile()
|
||||
|
||||
def install():
|
||||
pythonmodules.install()
|
||||
|
||||
pisitools.dodoc("LICENSE.txt", "README.txt")
|
||||
@@ -1,57 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python-pytz</Name>
|
||||
<Homepage>http://pytz.sourceforge.net/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>MIT</License>
|
||||
<License>ZPL</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>World Timezone Definitions for Python</Summary>
|
||||
<Description>python-pytz brings the Olson tz database into Python. This library allows accurate and cross platform timezone calculations using Python. It also solves the issue of ambiguous times at the end of daylight savings, which you can read more about in the Python Library Reference (datetime.tzinfo).Almost all (over 540) of the Olson timezones are supported.</Description>
|
||||
<Archive sha1sum="07de2c4d82ed97d846bf535a75116dda483733be" type="targz">https://files.pythonhosted.org/packages/27/c0/fbd352ca76050952a03db776d241959d5a2ee1abddfeb9e2a53fdb489be4/pytz-2019.2.tar.gz</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>python-pytz</Name>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc/python-pytz</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2019-10-03</Date>
|
||||
<Version>2019.2</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>idris Kalp</Name>
|
||||
<Email>idriskalp@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2018-05-15</Date>
|
||||
<Version>2018.4</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2018-02-26</Date>
|
||||
<Version>2018.3</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2017-01-29</Date>
|
||||
<Version>2016.10</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Erdinç Gültekin</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -1,8 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python-pytz</Name>
|
||||
<Summary xml:lang="tr">Python için Dünya Saat Dilimi(World Time Zone) tanımları</Summary>
|
||||
<Description xml:lang="tr">python-pytz, Olson tz veritabanını Python'a taşımaktadır. Bu kütüphane Python kullanarak doğru ve farklı platformlar üzerinde hesaplamalar yapmayı sağlar. Aynı zamanda gün ışığından kazanmak için saat ayarlama ile ilgili belirsizlikleri de çözmektedir. Bu konuda Python Library Reference (datetime.tzinfo) kısmında ayrıntılı bilgi bulabilirsiniz. 540'a yakın Olson zaman dilimi desteklenmektedir.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -1,14 +0,0 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import pythonmodules
|
||||
from pisi.actionsapi import pisitools
|
||||
|
||||
def build():
|
||||
pythonmodules.compile()
|
||||
|
||||
def install():
|
||||
pythonmodules.install()
|
||||
@@ -1,14 +0,0 @@
|
||||
diff --git a/requests/certs.py b/requests/certs.py
|
||||
index d1a378d7..4e0bffd4 100644
|
||||
--- a/requests/certs.py
|
||||
+++ b/requests/certs.py
|
||||
@@ -12,7 +12,8 @@ If you are packaging Requests, e.g., for a Linux distribution or a managed
|
||||
environment, you can change the definition of where() to return a separately
|
||||
packaged CA bundle.
|
||||
"""
|
||||
-from certifi import where
|
||||
+def where():
|
||||
+ return "/etc/ssl/certs/ca-certificates.crt"
|
||||
|
||||
if __name__ == '__main__':
|
||||
print(where())
|
||||
-28
@@ -1,28 +0,0 @@
|
||||
From 152550287d6538e5cc7649bcf685a5a0b35058dd Mon Sep 17 00:00:00 2001
|
||||
From: Jeremy Cline <jcline@redhat.com>
|
||||
Date: Tue, 12 Jun 2018 14:06:00 -0400
|
||||
Subject: [PATCH] Don't import OrderedDict from urllib3
|
||||
|
||||
We unbundle urllib3, just use collections (py2.7+)
|
||||
|
||||
Signed-off-by: Jeremy Cline <jcline@redhat.com>
|
||||
---
|
||||
requests/compat.py | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/requests/compat.py b/requests/compat.py
|
||||
index 6b9c6fac..6ba6e460 100644
|
||||
--- a/requests/compat.py
|
||||
+++ b/requests/compat.py
|
||||
@@ -45,7 +45,7 @@ if is_py2:
|
||||
from StringIO import StringIO
|
||||
from collections import Callable, Mapping, MutableMapping
|
||||
|
||||
- from urllib3.packages.ordered_dict import OrderedDict
|
||||
+ from collections import OrderedDict # py2.7+
|
||||
|
||||
builtin_str = str
|
||||
bytes = str
|
||||
--
|
||||
2.17.1
|
||||
|
||||
-49
@@ -1,49 +0,0 @@
|
||||
rom fd9ab446d8479360d2c1c8252508d97d58ed3e0e Mon Sep 17 00:00:00 2001
|
||||
From: Jeremy Cline <jeremy@jcline.org>
|
||||
Date: Mon, 19 Jun 2017 16:09:02 -0400
|
||||
Subject: [PATCH] Patch requests/certs.py to use the system CA bundle
|
||||
|
||||
Signed-off-by: Jeremy Cline <jeremy@jcline.org>
|
||||
---
|
||||
requests/certs.py | 11 ++++++++++-
|
||||
setup.py | 1 -
|
||||
2 files changed, 10 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/requests/certs.py b/requests/certs.py
|
||||
index d1a378d..7b103ba 100644
|
||||
--- a/requests/certs.py
|
||||
+++ b/requests/certs.py
|
||||
@@ -11,8 +11,17 @@ only one — the one from the certifi package.
|
||||
If you are packaging Requests, e.g., for a Linux distribution or a managed
|
||||
environment, you can change the definition of where() to return a separately
|
||||
packaged CA bundle.
|
||||
+
|
||||
+This Fedora-patched package returns "/etc/ssl/certs/ca-certificates.crt" provided
|
||||
+by the ca-certificates RPM package.
|
||||
"""
|
||||
-from certifi import where
|
||||
+try:
|
||||
+ from certifi import where
|
||||
+except ImportError:
|
||||
+ def where():
|
||||
+ """Return the absolute path to the system CA bundle."""
|
||||
+ return '/etc/ssl/certs/ca-certificates.crt'
|
||||
+
|
||||
|
||||
if __name__ == '__main__':
|
||||
print(where())
|
||||
diff --git a/setup.py b/setup.py
|
||||
index 93a8507..2db9569 100755
|
||||
--- a/setup.py
|
||||
+++ b/setup.py
|
||||
@@ -45,7 +45,6 @@ requires = [
|
||||
'chardet>=3.0.2,<3.1.0',
|
||||
'idna>=2.5,<2.8',
|
||||
'urllib3>=1.21.1,<1.24',
|
||||
- 'certifi>=2017.4.17'
|
||||
|
||||
]
|
||||
test_requirements = ['pytest-httpbin==0.0.7', 'pytest-cov', 'pytest-mock', 'pytest-xdist', 'PySocks>=1.5.6, !=1.5.7', 'pytest>=2.8.0']
|
||||
--
|
||||
2.9.4
|
||||
|
||||
@@ -1,95 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python-requests</Name>
|
||||
<Homepage>http://www.python-requests.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>Ergün Salman</Name>
|
||||
<Email>ergunsalman@hotmail.com</Email>
|
||||
</Packager>
|
||||
<Summary>Requests is an Apache2 Licensed HTTP library, written in Python, for human beings.</Summary>
|
||||
<Description>Python’s standard urllib2 module provides most of the HTTP capabilities you need</Description>
|
||||
<License>MIT</License>
|
||||
<Archive sha1sum="c22ed0a553f8dc37e5c2a965048d81a5ccfaff95" type="targz">https://files.pythonhosted.org/packages/01/62/ddcf76d1d19885e8579acb1b1df26a852b03472c0e46d2b959a714c90608/requests-2.22.0.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python-devel</Dependency>
|
||||
<Dependency>python-setuptools</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!-- <Patch level="1">dont-import-OrderedDict-from-urllib3.patch</Patch> -->
|
||||
<!-- <Patch level="1">patch-requests-certs.py-to-use-the-system-CA-bundle.patch</Patch> -->
|
||||
<Patch level="1">certs.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>python-requests</Name>
|
||||
<!--RuntimeDependencies>
|
||||
<Dependency>python-devel</Dependency>
|
||||
</RuntimeDependencies-->
|
||||
<Files>
|
||||
<Path fileType="data">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="8">
|
||||
<Date>2019-10-03</Date>
|
||||
<Version>2.22.0</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>idris Kalp</Name>
|
||||
<Email>idriskalp@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="7">
|
||||
<Date>2018-09-21</Date>
|
||||
<Version>2.19.1</Version>
|
||||
<Comment>Rebuild certifi.</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2018-08-15</Date>
|
||||
<Version>2.19.1</Version>
|
||||
<Comment>Version Bump.</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2017-09-04</Date>
|
||||
<Version>2.13.0</Version>
|
||||
<Comment>remove unneeded runtime dep.</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2017-01-25</Date>
|
||||
<Version>2.13.0</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2016-06-09</Date>
|
||||
<Version>2.9.1</Version>
|
||||
<Comment>Release Bump</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2016-06-06</Date>
|
||||
<Version>2.9.1</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2016-05-08</Date>
|
||||
<Version>2.9.1</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -1,14 +0,0 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/copyleft/gpl.txt
|
||||
|
||||
from pisi.actionsapi import pythonmodules
|
||||
from pisi.actionsapi import pisitools
|
||||
|
||||
def build():
|
||||
pythonmodules.compile()
|
||||
|
||||
def install():
|
||||
pythonmodules.install()
|
||||
@@ -1,83 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python-six</Name>
|
||||
<Homepage>http://pypi.python.org/pypi/six/</Homepage>
|
||||
<Packager>
|
||||
<Name>Alihan Öztürk</Name>
|
||||
<Email>alihan@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>MIT</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Python 2 and 3 compatibility utilities.</Summary>
|
||||
<Description>python-six provides simple utilities for wrapping over differences between Python 2 and Python 3.</Description>
|
||||
<Archive sha1sum="1957b44942be21822414f4dde936e6c40b687565" type="targz">https://pypi.io/packages/source/s/six/six-1.12.0.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>python-six</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>python</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
|
||||
<History>
|
||||
<Update release="7">
|
||||
<Date>2019-10-03</Date>
|
||||
<Version>1.12.0</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>idris Kalp</Name>
|
||||
<Email>idriskalp@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2018-07-27</Date>
|
||||
<Version>1.11.0</Version>
|
||||
<Comment>Rebuild with new toolchain.</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2018-01-29</Date>
|
||||
<Version>1.11.0</Version>
|
||||
<Comment>Version Bump.</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2017-01-25</Date>
|
||||
<Version>1.10.0</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2016-06-10</Date>
|
||||
<Version>1.9.0</Version>
|
||||
<Comment>Release Bump</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2016-06-06</Date>
|
||||
<Version>1.9.0</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2016-05-08</Date>
|
||||
<Version>1.9.0</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -1,7 +0,0 @@
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python-six</Name>
|
||||
<Summary xml:lang="tr">Python2 ve python3 uyumluluk programı.</Summary>
|
||||
<Description xml:lang="tr">python-six, python2 ile python3 arasındaki farklılıkların aşılmasına yardımcı olan basit araçlar sağlar.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -1,19 +0,0 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import pythonmodules
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
|
||||
def build():
|
||||
pythonmodules.compile()
|
||||
|
||||
def install():
|
||||
pythonmodules.install()
|
||||
|
||||
pisitools.dodoc("LICENSE*", "README*")
|
||||
@@ -1,64 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python-sphinx-alabaster-theme</Name>
|
||||
<Homepage>https://github.com/shibukawa/imagesize_py</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>BSD</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Sphinx default theme.</Summary>
|
||||
<Description>Alabaster is a visually (c)lean, responsive, configurable theme for the Sphinx documentation system. It is Python 2+3 compatible.</Description>
|
||||
<Archive sha1sum="be91b40579cd74e8fd1a6e89a5ce66e186204d52" type="targz">https://github.com/bitprophet/alabaster/archive/0.7.12.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python-devel</Dependency>
|
||||
<Dependency>python-setuptools</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>python-sphinx-alabaster-theme</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>python-setuptools</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2019-10-03</Date>
|
||||
<Version>0.7.12</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>idris Kalp</Name>
|
||||
<Email>idriskalp@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2018-08-15</Date>
|
||||
<Version>0.7.11</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2018-02-25</Date>
|
||||
<Version>0.7.10</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2017-01-29</Date>
|
||||
<Version>0.7.9</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -1,8 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python-sphinx-alabaster-theme</Name>
|
||||
<Summary xml:lang="tr">Sphinx varsayılan teması.</Summary>
|
||||
<Description xml:lang="tr">Alabaster, Sphinx dokümantasyon sistemi için görsel (c) yalın, duyarlı, yapılandırılabilir bir temadır. Python 2 + 3 uyumludur.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -1,28 +0,0 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import pythonmodules
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
#WorkDir = "Sphinx-%s" % get.srcVERSION()
|
||||
|
||||
def build():
|
||||
pythonmodules.compile()
|
||||
|
||||
def install():
|
||||
pythonmodules.install()
|
||||
|
||||
# Generating the Grammar pickle to avoid on the fly generation causing sandbox violations
|
||||
pythonmodules.run("-c \"from sphinx.pycode.pgen2.driver import load_grammar ; \
|
||||
load_grammar('%s/usr/lib/%s/site-packages/sphinx/pycode/Grammar-py2.txt')\"" %(get.installDIR(), get.curPYTHON(), ) )
|
||||
|
||||
# create sphinx documentation using itself
|
||||
#pythonmodules.run("sphinx-build.py doc doc/_build/html")
|
||||
#pisitools.dohtml("doc/_build/html/*")
|
||||
|
||||
pisitools.dodoc("CHANGES", "EXAMPLES")
|
||||
|
||||
@@ -1,12 +0,0 @@
|
||||
diff -Nuar a/setup.py b/setup.py
|
||||
--- a/setup.py 2014-01-19 18:46:09.000000000 +0200
|
||||
+++ b/setup.py 2014-02-27 01:54:23.829755482 +0200
|
||||
@@ -44,7 +44,7 @@
|
||||
<http://bitbucket.org/birkenfeld/sphinx/get/tip.gz#egg=Sphinx-dev>`_.
|
||||
'''
|
||||
|
||||
-requires = ['Pygments>=1.2', 'docutils>=0.7']
|
||||
+requires = ['Pygments>=1.2']
|
||||
|
||||
if sys.version_info[:3] >= (3, 3, 0):
|
||||
requires[1] = 'docutils>=0.10'
|
||||
@@ -1,91 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python-sphinx</Name>
|
||||
<Homepage>http://sphinx.pocoo.org</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>as-is</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Python documentation generator. It can generate HTML or Latex outputs</Summary>
|
||||
<Description>It's a very common documentation generator especially using for python based documentation.It can generate HTML or PDF, Ps outputs with Latex output support.</Description>
|
||||
<Archive sha1sum="d374d466a6d6b4fcf1df997ae580d66480134ea8" type="targz">https://files.pythonhosted.org/packages/8b/7e/b188d9a3b9c938e736e02a74c1363c2888e095d770df2c72b4c312f9fdcb/Sphinx-1.6.5.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>docutils</Dependency>
|
||||
<Dependency>python-six</Dependency>
|
||||
<Dependency>python-requests</Dependency>
|
||||
<Dependency>python-sphinx-alabaster-theme</Dependency>
|
||||
<Dependency>python-Babel</Dependency>
|
||||
<Dependency>python-imagesize</Dependency>
|
||||
<Dependency>python-Pygments</Dependency>
|
||||
<Dependency>python-Jinja2</Dependency>
|
||||
<Dependency>python-MarkupSafe</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!-- <Patch level="1">remove_docutils.patch</Patch> -->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>python-sphinx</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>docutils</Dependency>
|
||||
<Dependency>python-Pygments</Dependency>
|
||||
<Dependency>python-Jinja2</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib/python*</Path>
|
||||
<Path fileType="doc">/usr/share/doc/python-sphinx/LICENSE</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>python-sphinx-docs</Name>
|
||||
<Summary>Documentation files for python-sphinx</Summary>
|
||||
<Files>
|
||||
<Path fileType="doc">/usr/share/doc/python-sphinx</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2019-10-03</Date>
|
||||
<Version>1.6.5</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>idris Kalp</Name>
|
||||
<Email>idriskalp@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2018-09-22</Date>
|
||||
<Version>1.6.5</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2017-01-29</Date>
|
||||
<Version>1.5.2</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2016-06-09</Date>
|
||||
<Version>1.3.1</Version>
|
||||
<Comment>Release Bump</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2015-07-27</Date>
|
||||
<Version>1.3.1</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -1,13 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python-sphinx</Name>
|
||||
<Summary xml:lang="tr">Python için döküman üreticisi. HTML, Latex gibi çıktılar üretebiliyor</Summary>
|
||||
<Description xml:lang="tr">Özellikle python için hazırlanan dökümanları yorumlamak için kullanılan yaygın bir döoküman üreticisi. Başta HTML olmak üzere Latex ile birlikte PDF, Ps gibi doküman çıktıları üretebiliyor.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>python-sphinx-docs</Name>
|
||||
<Summary xml:lang="tr">python-sphinx için belgelendirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -1,3 +0,0 @@
|
||||
<PISI>
|
||||
<Name>programming.language.python3</Name>
|
||||
</PISI>
|
||||
@@ -1,20 +0,0 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
autotools.configure("--prefix=/usr/")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall('DESTDIR=%s' % get.installDIR())
|
||||
|
||||
pisitools.dodoc("LICENSE.txt", "README.txt")
|
||||
@@ -1,57 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>mpdecimal</Name>
|
||||
<Homepage>http://www.bytereef.org/mpdecimal/index.html</Homepage>
|
||||
<Packager>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>custom</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Package for correctly-rounded arbitrary precision decimal floating point arithmetic</Summary>
|
||||
<Description>mpdecimal is a package for correctly-rounded arbitrary precision decimal floating point arithmetic.</Description>
|
||||
<Archive sha1sum="b926360a96fba40f9363abe111e24d776c661adb" type="targz">http://www.bytereef.org/software/mpdecimal/releases/mpdecimal-2.4.2.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>glibc-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>mpdecimal</Name>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>mpdecimal-devel</Name>
|
||||
<Summary>Development files for mpdecimal</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">mpdecimal</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2018-07-31</Date>
|
||||
<Version>2.4.2</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2018-01-31</Date>
|
||||
<Version>2.4.2</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -1,15 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>mpdecimal</Name>
|
||||
<Summary xml:lang="en">Package for correctly-rounded arbitrary precision decimal floating point arithmetic</Summary>
|
||||
<Summary xml:lang="tr">Degiskenler icin karsilaştirma islemini yapan bir modul</Summary>
|
||||
<Description xml:lang="en">mpdecimal is a package for correctly-rounded arbitrary precision decimal floating point arithmetic.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>mpdecimal-devel</Name>
|
||||
<Summary xml:lang="en">Development files for mpdecimal</Summary>
|
||||
<Summary xml:lang="tr">mpdecimal için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -1,17 +0,0 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/copyleft/gpl.txt
|
||||
|
||||
from pisi.actionsapi import pythonmodules
|
||||
from pisi.actionsapi import pisitools
|
||||
|
||||
def build():
|
||||
pythonmodules.compile(pyVer="3")
|
||||
|
||||
def install():
|
||||
pythonmodules.install(pyVer="3")
|
||||
|
||||
#pisitools.removeDir("/usr/lib/*/site-packages/six-1.9.0*egg-info*")
|
||||
#pisitools.remove("/usr/lib/*/site-packages/*egg-info*")
|
||||
@@ -1,55 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python3-packaging</Name>
|
||||
<Homepage>http://pypi.python.org/pypi/six/</Homepage>
|
||||
<Packager>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>Apache</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Core utilities for Python packages</Summary>
|
||||
<Description>Core utilities for Python packages</Description>
|
||||
<Archive sha1sum="fd70f0604b28ccaa4bbc74e9d69b9e2d4cd50aea" type="targz">https://github.com/pypa/packaging/archive/19.2.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency versionFrom="3.8.0">python3-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>python3-packaging</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency versionFrom="3.8.0">python3</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2019-12-10</Date>
|
||||
<Version>19.2</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>Idris Kalp</Name>
|
||||
<Email>idriskalp@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2018-08-30</Date>
|
||||
<Version>16.8</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2017-02-01</Date>
|
||||
<Version>16.8</Version>
|
||||
<Comment>First Release</Comment>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -1,7 +0,0 @@
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python3-six</Name>
|
||||
<Summary xml:lang="tr">Python3 paketleri için çekirdek uygulama.</Summary>
|
||||
<Description xml:lang="tr">Python3 paketleri için çekirdek uygulama.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -1,22 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import pythonmodules
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
from pisi.actionsapi import shelltools
|
||||
|
||||
WorkDir="setuptools-%s" % get.srcVERSION()
|
||||
|
||||
|
||||
def install():
|
||||
pisitools.dosed("setuptools/command/easy_install.py", "env python", "env python3")
|
||||
|
||||
pythonmodules.run("bootstrap.py", pyVer="3")
|
||||
pythonmodules.install(pyVer = "3")
|
||||
pisitools.rename("/usr/bin/easy_install", "py3easy-install")
|
||||
|
||||
#avoid python-setuptools conflict
|
||||
#pisitools.removeDir("/usr/share")
|
||||
@@ -1,111 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM 'http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd'>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python3-setuptools</Name>
|
||||
<Homepage>http://pypi.python.org/pypi/setuptools</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>PSF-2.2</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Python setuptools</Summary>
|
||||
<Description>python-setuptools is a collection of enhancements to the Python distutils that allow you to more easily build and distribute Python packages, especially ones that have dependencies on other packages.</Description>
|
||||
<Archive sha1sum="1460a02840bdab87aa419451819933368d33d810" type="targz">https://github.com/pypa/setuptools/archive/v42.0.2.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
<!-- <Dependency>python3-six</Dependency> -->
|
||||
<Dependency>python3-packaging</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>python3-setuptools</Name>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib/python3*</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="11">
|
||||
<Date>2019-12-10</Date>
|
||||
<Version>42.0.2</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Idris Kalp</Name>
|
||||
<Email>idriskalp@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="10">
|
||||
<Date>2019-04-09</Date>
|
||||
<Version>40.6.3</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Mustafa Cinasl</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="9">
|
||||
<Date>2018-08-05</Date>
|
||||
<Version>39.2.0</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Mustafa Cinasl</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="8">
|
||||
<Date>2018-01-24</Date>
|
||||
<Version>38.2.5</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="7">
|
||||
<Date>2017-02-01</Date>
|
||||
<Version>32.1.3</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2016-06-09</Date>
|
||||
<Version>19.6.1</Version>
|
||||
<Comment>Release Bump</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2016-06-06</Date>
|
||||
<Version>19.6.1</Version>
|
||||
<Comment>Release bump.</Comment>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2016-05-26</Date>
|
||||
<Version>19.6.1</Version>
|
||||
<Comment>Release bump.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2016-05-26</Date>
|
||||
<Version>19.6.1</Version>
|
||||
<Comment>Release bump.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2016-05-26</Date>
|
||||
<Version>19.6.1</Version>
|
||||
<Comment>Release bump.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2016-05-26</Date>
|
||||
<Version>19.6.1</Version>
|
||||
<Comment>First release.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -1,8 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python-setuptools</Name>
|
||||
<Summary xml:lang="tr">Python kurulum araçları</Summary>
|
||||
<Description xml:lang="tr">python-setuptools, Python distutils'e yapılan, özellikle başka paketlere bağımlılığı olan Python paketlerini daha kolay oluşturmaya ve dağıtmaya yarayan iyileştirmeler koleksiyonudur.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -1,23 +0,0 @@
|
||||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import pythonmodules
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def build():
|
||||
pythonmodules.compile(pyVer="3")
|
||||
|
||||
def install():
|
||||
pythonmodules.install(pyVer="3")
|
||||
|
||||
pisitools.insinto("/usr/share/vim/vimfiles", "data/syntax-highlighting/vim/*")
|
||||
pisitools.insinto("/usr/share/emacs/site-lisp", "data/syntax-highlighting/emacs/*")
|
||||
pisitools.insinto("/usr/share/zsh/site-functions", "data/shell-completions/zsh/*")
|
||||
pisitools.remove("/usr/share/vim/vimfiles/README")
|
||||
|
||||
pisitools.dodoc("COPYING", "README*")
|
||||
@@ -1,91 +0,0 @@
|
||||
From 212a05b87ed34f921dfd07142305389dbfa9bb7d Mon Sep 17 00:00:00 2001
|
||||
From: Xavier Claessens <xavier.claessens@collabora.com>
|
||||
Date: Fri, 11 Oct 2019 11:01:22 -0400
|
||||
Subject: [PATCH] Remove duplicated object files in static libraries
|
||||
|
||||
When a static library link_whole to a bunch of other static libraries,
|
||||
we have to extract all their objects recursively. But that could
|
||||
introduce duplicated objects. ar is dumb enough to allow this without
|
||||
error, but once the resulting static library is linked into an
|
||||
executable or shared library, the linker will complain about duplicated
|
||||
symbols.
|
||||
---
|
||||
mesonbuild/backend/backends.py | 3 ++-
|
||||
test cases/unit/69 static link/lib/func17.c | 4 ++++
|
||||
test cases/unit/69 static link/lib/func18.c | 6 ++++++
|
||||
test cases/unit/69 static link/lib/func19.c | 7 +++++++
|
||||
test cases/unit/69 static link/lib/meson.build | 12 ++++++++++++
|
||||
5 files changed, 31 insertions(+), 1 deletion(-)
|
||||
create mode 100644 test cases/unit/69 static link/lib/func17.c
|
||||
create mode 100644 test cases/unit/69 static link/lib/func18.c
|
||||
create mode 100644 test cases/unit/69 static link/lib/func19.c
|
||||
|
||||
diff --git a/mesonbuild/backend/backends.py b/mesonbuild/backend/backends.py
|
||||
index 947be1cbef..e54809657f 100644
|
||||
--- a/mesonbuild/backend/backends.py
|
||||
+++ b/mesonbuild/backend/backends.py
|
||||
@@ -281,7 +281,8 @@ def relpath(self, todir, fromdir):
|
||||
os.path.join('dummyprefixdir', fromdir))
|
||||
|
||||
def flatten_object_list(self, target, proj_dir_to_build_root=''):
|
||||
- return self._flatten_object_list(target, target.get_objects(), proj_dir_to_build_root)
|
||||
+ obj_list = self._flatten_object_list(target, target.get_objects(), proj_dir_to_build_root)
|
||||
+ return list(dict.fromkeys(obj_list))
|
||||
|
||||
def _flatten_object_list(self, target, objects, proj_dir_to_build_root):
|
||||
obj_list = []
|
||||
diff --git a/test cases/unit/69 static link/lib/func17.c b/test cases/unit/69 static link/lib/func17.c
|
||||
new file mode 100644
|
||||
index 0000000000..d1d8ec498c
|
||||
--- /dev/null
|
||||
+++ b/test cases/unit/69 static link/lib/func17.c
|
||||
@@ -0,0 +1,4 @@
|
||||
+int func17()
|
||||
+{
|
||||
+ return 1;
|
||||
+}
|
||||
diff --git a/test cases/unit/69 static link/lib/func18.c b/test cases/unit/69 static link/lib/func18.c
|
||||
new file mode 100644
|
||||
index 0000000000..c149085ba4
|
||||
--- /dev/null
|
||||
+++ b/test cases/unit/69 static link/lib/func18.c
|
||||
@@ -0,0 +1,6 @@
|
||||
+int func17();
|
||||
+
|
||||
+int func18()
|
||||
+{
|
||||
+ return func17() + 1;
|
||||
+}
|
||||
diff --git a/test cases/unit/69 static link/lib/func19.c b/test cases/unit/69 static link/lib/func19.c
|
||||
new file mode 100644
|
||||
index 0000000000..69120e4bf8
|
||||
--- /dev/null
|
||||
+++ b/test cases/unit/69 static link/lib/func19.c
|
||||
@@ -0,0 +1,7 @@
|
||||
+int func17();
|
||||
+int func18();
|
||||
+
|
||||
+int func19()
|
||||
+{
|
||||
+ return func17() + func18();
|
||||
+}
|
||||
diff --git a/test cases/unit/69 static link/lib/meson.build b/test cases/unit/69 static link/lib/meson.build
|
||||
index 5f04aab6a1..8f95fc4546 100644
|
||||
--- a/test cases/unit/69 static link/lib/meson.build
|
||||
+++ b/test cases/unit/69 static link/lib/meson.build
|
||||
@@ -66,3 +66,15 @@ libfunc15 = static_library('func15', 'func15.c',
|
||||
libfunc16 = static_library('func16', 'func16.c',
|
||||
link_with : libfunc15,
|
||||
install : true)
|
||||
+
|
||||
+# Verify func17.c.o gets included only once into libfunc19, otherwise
|
||||
+# func19-shared would failed with duplicated symbol.
|
||||
+libfunc17 = static_library('func17', 'func17.c',
|
||||
+ install : false)
|
||||
+libfunc18 = static_library('func18', 'func18.c',
|
||||
+ link_with : libfunc17,
|
||||
+ install : false)
|
||||
+libfunc19 = static_library('func19', 'func19.c',
|
||||
+ link_whole : [libfunc17, libfunc18],
|
||||
+ install : false)
|
||||
+shared_library('func19-shared', link_whole : [libfunc19])
|
||||
@@ -1,24 +0,0 @@
|
||||
diff -Nuar "a/test cases/frameworks/15 llvm/meson.build" "b/test cases/frameworks/15 llvm/meson.build"
|
||||
--- "a/test cases/frameworks/15 llvm/meson.build" 2017-10-08 22:22:05.000000000 +0300
|
||||
+++ "b/test cases/frameworks/15 llvm/meson.build" 2017-12-07 18:31:23.786683687 +0300
|
||||
@@ -17,5 +17,5 @@
|
||||
llvm_dep,
|
||||
dependency('zlib'),
|
||||
meson.get_compiler('c').find_library('dl', required : false),
|
||||
- dependency('tinfo'),
|
||||
+ dependency('ncursesw'),
|
||||
])
|
||||
diff -Nuar "a/test cases/frameworks/4 qt/meson.build" "b/test cases/frameworks/4 qt/meson.build"
|
||||
--- "a/test cases/frameworks/4 qt/meson.build" 2017-10-08 21:47:57.000000000 +0300
|
||||
+++ "b/test cases/frameworks/4 qt/meson.build" 2017-12-07 18:33:49.091673203 +0300
|
||||
@@ -77,8 +77,9 @@
|
||||
moc_headers : 'plugin/plugin.h',
|
||||
include_directories : plugin_includes
|
||||
)
|
||||
- plugin = library('plugin', 'plugin/plugin.cpp', pluginpreprocess,
|
||||
+ plugin = library(qt + 'plugin', 'plugin/plugin.cpp', pluginpreprocess,
|
||||
include_directories : plugin_includes,
|
||||
dependencies : qtcore)
|
||||
+ endif
|
||||
endif
|
||||
endforeach
|
||||
@@ -1,98 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>meson</Name>
|
||||
<Homepage>http://mesonbuild.com/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>Apache</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>High productivity build system</Summary>
|
||||
<Description>Yüksek verimli üretme sistemi</Description>
|
||||
<Archive sha1sum="f5b924f5128f53f9eaeffc2e72ac3f757977a809" type="targz">https://github.com/mesonbuild/meson/releases/download/0.52.0/meson-0.52.0.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
<Dependency>python3-setuptools</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">212a05b8.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>meson</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>python3-setuptools</Dependency>
|
||||
<Dependency>python3</Dependency>
|
||||
<Dependency>ninja</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="data">/usr/share/vim</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="8">
|
||||
<Date>2019-11-17</Date>
|
||||
<Version>0.52.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="7">
|
||||
<Date>2019-10-06</Date>
|
||||
<Version>0.51.2</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2018-11-09</Date>
|
||||
<Version>0.48.2</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2018-07-31</Date>
|
||||
<Version>0.47.0</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2018-05-13</Date>
|
||||
<Version>0.46.0</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2018-04-08</Date>
|
||||
<Version>0.45.1</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2018-02-22</Date>
|
||||
<Version>0.44.1</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2017-12-07</Date>
|
||||
<Version>0.43.0</Version>
|
||||
<Comment>First release.</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -1,8 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>meson</Name>
|
||||
<Summary xml:lang="tr">High productivity build system</Summary>
|
||||
<Description xml:lang="tr">Yüksek verimli üretme sistemi</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user