updated maintainer to scrapinghub

This commit is contained in:
Pablo Hoffman 2012-05-02 03:25:35 -03:00
parent 2681be59f7
commit abcac4fcbd
7 changed files with 18 additions and 14 deletions

View File

@ -1,7 +1,8 @@
Scrapy was brought to life by Shane Evans while hacking a scraping framework Scrapy was brought to life by Shane Evans while hacking a scraping framework
prototype for Mydeco (mydeco.com). It soon became maintained, extended and prototype for Mydeco (mydeco.com). It soon became maintained, extended and
improved by Insophia (insophia.com), with the initial sponsorship of Mydeco to improved by Insophia (insophia.com), with the initial sponsorship of Mydeco to
bootstrap the project. bootstrap the project. In mid-2011, Scrapinghub became the new official
maintainer.
Here is the list of the primary authors & contributors: Here is the list of the primary authors & contributors:

2
debian/changelog vendored
View File

@ -2,4 +2,4 @@ scrapy-SUFFIX (0.11) unstable; urgency=low
* Initial release. * Initial release.
-- Insophia Team <info@insophia.com> Thu, 10 Jun 2010 17:24:02 -0300 -- Scrapinghub Team <info@scrapinghub.com> Thu, 10 Jun 2010 17:24:02 -0300

2
debian/control vendored
View File

@ -1,7 +1,7 @@
Source: scrapy-SUFFIX Source: scrapy-SUFFIX
Section: python Section: python
Priority: optional Priority: optional
Maintainer: Insophia Team <info@insophia.com> Maintainer: Scrapinghub Team <info@scrapinghub.com>
Build-Depends: debhelper (>= 7.0.50), python (>=2.6), python-twisted, python-w3lib, python-lxml Build-Depends: debhelper (>= 7.0.50), python (>=2.6), python-twisted, python-w3lib, python-lxml
Standards-Version: 3.8.4 Standards-Version: 3.8.4
Homepage: http://scrapy.org/ Homepage: http://scrapy.org/

6
debian/copyright vendored
View File

@ -1,10 +1,10 @@
This package was debianized by the Insophia <info@insophia.com>. This package was debianized by the Scrapinghub team <info@scrapinghub.com>.
It was downloaded from http://scrapy.org It was downloaded from http://scrapy.org
Upstream Author: Scrapy Developers Upstream Author: Scrapy Developers
Copyright: 2007-2010 Scrapy Developers Copyright: 2007-2012 Scrapy Developers
License: bsd License: bsd
@ -36,5 +36,5 @@ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
The Debian packaging is (C) 2010, Insophia <info@insophia.com> and The Debian packaging is (C) 2010-2012, Scrapinghub <info@scrapinghub.com> and
is licensed under the BSD, see `/usr/share/common-licenses/BSD'. is licensed under the BSD, see `/usr/share/common-licenses/BSD'.

View File

@ -42,7 +42,7 @@ master_doc = 'index'
# General information about the project. # General information about the project.
project = u'Scrapy' project = u'Scrapy'
copyright = u'2008-2011, Insophia' copyright = u'2008-2012, Scrapinghub'
# The version info for the project you're documenting, acts as replacement for # The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the # |version| and |release|, also used in various other places throughout the
@ -173,7 +173,7 @@ htmlhelp_basename = 'Scrapydoc'
# (source start file, target name, title, author, document class [howto/manual]). # (source start file, target name, title, author, document class [howto/manual]).
latex_documents = [ latex_documents = [
('index', 'Scrapy.tex', ur'Scrapy Documentation', ('index', 'Scrapy.tex', ur'Scrapy Documentation',
ur'Insophia', 'manual'), ur'Scrapinghub', 'manual'),
] ]
# The name of an image file (relative to this directory) to place at the top of # The name of an image file (relative to this directory) to place at the top of

View File

@ -6,7 +6,7 @@ Ubuntu packages
.. versionadded:: 0.10 .. versionadded:: 0.10
`Insophia`_ publishes apt-gettable packages which are generally fresher than `Scrapinghub`_ publishes apt-gettable packages which are generally fresher than
those in Ubuntu, and more stable too since they're continuously built from those in Ubuntu, and more stable too since they're continuously built from
`Github repo`_ (master & stable branches) and so they contain the latest bug `Github repo`_ (master & stable branches) and so they contain the latest bug
fixes. fixes.
@ -54,5 +54,5 @@ keyring as follows::
curl -s http://archive.scrapy.org/ubuntu/archive.key | sudo apt-key add - curl -s http://archive.scrapy.org/ubuntu/archive.key | sudo apt-key add -
.. _Insophia: http://insophia.com/ .. _Scrapinghub: http://scrapinghub.com/
.. _Github repo: https://github.com/scrapy/scrapy .. _Github repo: https://github.com/scrapy/scrapy

View File

@ -1,4 +1,4 @@
import sys, os, glob import sys, os, glob, shutil
from subprocess import check_call from subprocess import check_call
def build(suffix): def build(suffix):
@ -21,9 +21,12 @@ def build(suffix):
check_call('debuild -us -uc -b', shell=True) check_call('debuild -us -uc -b', shell=True)
def clean(suffix): def clean(suffix):
for f in glob.glob("debian/scrapy-%s.*" % suffix) + \ for f in glob.glob("debian/python-scrapy%s*" % suffix) + \
glob.glob("debian/scrapyd-%s.*" % suffix): glob.glob("debian/scrapyd%s*" % suffix):
os.remove(f) if os.path.isdir(f):
shutil.rmtree(f)
else:
os.remove(f)
def main(): def main():
cmd = sys.argv[1] cmd = sys.argv[1]