mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
Remove expired ports:
2014-05-27 math/py-graphtool: Broken for more than 6 months 2014-05-27 devel/clint: Broken for more than 6 months
This commit is contained in:
parent
bb7bd5e5d0
commit
d89dfa4787
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=355563
22 changed files with 2 additions and 735 deletions
2
MOVED
2
MOVED
|
@ -6111,3 +6111,5 @@ graphics/GraphicsMagick12|graphics/GraphicsMagick13|2014-05-20|Has expired: Unma
|
|||
net-im/tkabber-devel|net-im/tkabber|2014-05-23|Has expired: Unfetchable, outdated by net-im/tkabber
|
||||
devel/libglade-java||2014-05-26|Has expired: Unmaintained, outdated not depend on
|
||||
lang/lua|lang/lua51|2014-05-26|Rename to allow multiple version of lua to coexist
|
||||
math/py-graphtool||2014-05-27|Has expired: Broken for more than 6 months
|
||||
devel/clint||2014-05-27|Has expired: Broken for more than 6 months
|
||||
|
|
|
@ -240,7 +240,6 @@
|
|||
SUBDIR += cld
|
||||
SUBDIR += clewn
|
||||
SUBDIR += clig
|
||||
SUBDIR += clint
|
||||
SUBDIR += clisp-hyperspec
|
||||
SUBDIR += clojure-cider
|
||||
SUBDIR += cmake
|
||||
|
|
|
@ -1,37 +0,0 @@
|
|||
# Created by: ijliao
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= clint
|
||||
PORTVERSION= 0.1.2
|
||||
PORTREVISION= 4
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= SF
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= Static source code checker for C++
|
||||
|
||||
LICENSE= GPLv2
|
||||
|
||||
USE_AUTOTOOLS= libtool
|
||||
USE_PYTHON= 2
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ENV= MAKEINFO="makeinfo --no-split"
|
||||
CONFIGURE_ARGS= --enable-python=${LOCALBASE}/bin/python2
|
||||
USE_LDCONFIG= yes
|
||||
USE_GCC= any
|
||||
USE_CSTD= gnu99
|
||||
USE_CXXSTD= gnu++98
|
||||
USES= gmake
|
||||
INFO= clint
|
||||
MAKE_JOBS_UNSAFE= yes
|
||||
BROKEN= fails to find python.h
|
||||
DEPRECATED= Broken for more than 6 months
|
||||
EXPIRATION_DATE= 2014-05-27
|
||||
|
||||
post-patch:
|
||||
@${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${REINPLACE_CMD} -e \
|
||||
's|-ldl||g'
|
||||
${REINPLACE_CMD} -E 's,(DEFS = @DEFS@ -I. -I$$\(srcdir\)),\1 -I${LOCALBASE}/include -I${LOCALBASE}/include/${PYTHON_VERSION}/,g' ${WRKSRC}/lib/python/Makefile.in
|
||||
${REINPLACE_CMD} -E '100s,$$, -I${LOCALBASE}/include -I${LOCALBASE}/include/${PYTHON_VERSION}/,g' ${WRKSRC}/plugins/python/Makefile.in
|
||||
|
||||
.include <bsd.port.mk>
|
|
@ -1,2 +0,0 @@
|
|||
SHA256 (clint-0.1.2.tar.gz) = bc7ae0f6ceb3e35d9c767212687aae199d928dd974937e0fd13e9ceb3fb57a99
|
||||
SIZE (clint-0.1.2.tar.gz) = 234330
|
|
@ -1,21 +0,0 @@
|
|||
--- doc/clint.texinfo.orig Tue Apr 17 04:52:44 2001
|
||||
+++ doc/clint.texinfo Sat Oct 18 21:02:43 2003
|
||||
@@ -2,6 +2,10 @@
|
||||
@c %**start of header
|
||||
@setfilename clint.info
|
||||
@settitle Clint is a static source code checker for C++
|
||||
+@dircategory Programming & development tools
|
||||
+@direntry
|
||||
+* Clint: (clint). A static source code checker for C++
|
||||
+@end direntry
|
||||
@finalout
|
||||
@setchapternewpage odd
|
||||
@c %**end of header
|
||||
@@ -94,7 +98,6 @@
|
||||
professional experience.)
|
||||
|
||||
@node Copying, Overview, Instructions, Top
|
||||
-@include gpl.texinfo
|
||||
|
||||
@node Overview, Sample, Copying, Top
|
||||
@chapter Overview
|
|
@ -1,160 +0,0 @@
|
|||
--- lib/python/mapbase.cc.orig 2007-11-03 16:17:47.000000000 +0100
|
||||
+++ lib/python/mapbase.cc 2007-11-03 16:18:22.000000000 +0100
|
||||
@@ -2,30 +2,30 @@
|
||||
#include "python.h"
|
||||
|
||||
namespace python {
|
||||
-export template<class T>
|
||||
- MapBase<T>::MapBase<T> (PyObject *pyob, bool owned): Object(pyob, owned) {
|
||||
+ template<class T>
|
||||
+ MapBase<T>::MapBase (PyObject *pyob, bool owned): Object(pyob, owned) {
|
||||
validate();
|
||||
}
|
||||
|
||||
- export template<class T>
|
||||
- MapBase<T>::MapBase<T> (const MapBase<T>& ob): Object(ob) {
|
||||
+ template<class T>
|
||||
+ MapBase<T>::MapBase (const MapBase<T>& ob): Object(ob) {
|
||||
validate();
|
||||
}
|
||||
// Assignment acquires new ownership of pointer
|
||||
|
||||
- export template<class T>
|
||||
+ template<class T>
|
||||
MapBase<T>& MapBase<T>::operator= (const Object& rhs) {
|
||||
return (*this = *rhs);
|
||||
}
|
||||
|
||||
- export template<class T>
|
||||
+ template<class T>
|
||||
MapBase<T>& MapBase<T>::operator= (PyObject* rhsp) {
|
||||
if(ptr() == rhsp) return *this;
|
||||
set (rhsp);
|
||||
return *this;
|
||||
}
|
||||
// Membership
|
||||
- export template<class T>
|
||||
+ template<class T>
|
||||
bool MapBase<T>::accepts (PyObject *pyob) const {
|
||||
return pyob && PyMapping_Check(pyob);
|
||||
}
|
||||
@@ -33,7 +33,7 @@
|
||||
// Clear -- PyMapping Clear is missing
|
||||
//
|
||||
|
||||
- export template<class T>
|
||||
+ template<class T>
|
||||
void MapBase<T>::clear () {
|
||||
List k = keys();
|
||||
for(List::iterator i = k.begin(); i != k.end(); i++) {
|
||||
@@ -42,54 +42,54 @@
|
||||
}
|
||||
|
||||
// Element Access
|
||||
- export template<class T>
|
||||
+ template<class T>
|
||||
T MapBase<T>::operator[](const std::string& key) const {
|
||||
return get_item(key);
|
||||
}
|
||||
|
||||
- export template<class T>
|
||||
+ template<class T>
|
||||
T MapBase<T>::operator[](const Object& key) const {
|
||||
return get_item(key);
|
||||
}
|
||||
|
||||
- export template<class T>
|
||||
+ template<class T>
|
||||
mapref<T> MapBase<T>::operator[](const std::string& key) {
|
||||
return mapref<T>(*this, key);
|
||||
}
|
||||
|
||||
- export template<class T>
|
||||
+ template<class T>
|
||||
mapref<T> MapBase<T>::operator[](const Object& key) {
|
||||
return mapref<T>(*this, key);
|
||||
}
|
||||
|
||||
- export template<class T>
|
||||
+ template<class T>
|
||||
int MapBase<T>::length () const {
|
||||
return PyMapping_Length (ptr());
|
||||
}
|
||||
|
||||
- export template<class T>
|
||||
+ template<class T>
|
||||
int MapBase<T>::has_key (const std::string& s) const {
|
||||
return PyMapping_HasKeyString (ptr(),const_cast<char*>(s.c_str()));
|
||||
}
|
||||
|
||||
- export template<class T>
|
||||
+ template<class T>
|
||||
int MapBase<T>::has_key (const Object& s) const {
|
||||
return PyMapping_HasKey (ptr(), s.ptr());
|
||||
}
|
||||
|
||||
- export template<class T>
|
||||
+ template<class T>
|
||||
T MapBase<T>::get_item (const std::string& s) const {
|
||||
PyObject * tmp = (PyMapping_GetItemString (ptr(),const_cast<char*>(s.c_str())));
|
||||
if ( tmp == NULL ) { throw KeyError(s + " does not exist in " + this->as_string()); }
|
||||
return T( asObject(tmp));
|
||||
}
|
||||
|
||||
- export template<class T>
|
||||
+ template<class T>
|
||||
T MapBase<T>::get_item (const Object& s) const {
|
||||
return T( asObject(PyObject_GetItem (ptr(), s.ptr())));
|
||||
}
|
||||
|
||||
- export template<class T>
|
||||
+ template<class T>
|
||||
void MapBase<T>::set_item (const std::string& s, const Object& ob) {
|
||||
if (PyMapping_SetItemString (ptr(), const_cast<char*>(s.c_str()), *ob)
|
||||
== -1)
|
||||
@@ -98,7 +98,7 @@
|
||||
}
|
||||
}
|
||||
|
||||
- export template<class T>
|
||||
+ template<class T>
|
||||
void MapBase<T>::set_item (const Object& s, const Object& ob) {
|
||||
if (PyObject_SetItem (ptr(), s.ptr(), ob.ptr())
|
||||
== -1)
|
||||
@@ -107,31 +107,31 @@
|
||||
}
|
||||
}
|
||||
|
||||
- export template<class T>
|
||||
+ template<class T>
|
||||
void MapBase<T>::del_item (const std::string& s) {
|
||||
if (PyMapping_DelItemString (ptr(), const_cast<char*>(s.c_str())) == -1){
|
||||
throw Exception();
|
||||
}
|
||||
}
|
||||
|
||||
- export template<class T>
|
||||
+ template<class T>
|
||||
void MapBase<T>::del_item (const Object& s) {
|
||||
if (PyMapping_DelItem (ptr(), *s) == -1){
|
||||
throw Exception();
|
||||
}
|
||||
}
|
||||
// Queries
|
||||
- export template<class T>
|
||||
+ template<class T>
|
||||
List MapBase<T>::keys () const {
|
||||
return List(PyMapping_Keys(ptr()), true);
|
||||
}
|
||||
|
||||
- export template<class T>
|
||||
+ template<class T>
|
||||
List MapBase<T>::values () const { // each returned item is a (key, value) pair
|
||||
return List(PyMapping_Values(ptr()), true);
|
||||
}
|
||||
|
||||
- export template<class T>
|
||||
+ template<class T>
|
||||
List MapBase<T>::items () const {
|
||||
return List(PyMapping_Items(ptr()), true);
|
||||
}
|
|
@ -1,20 +0,0 @@
|
|||
--- lib/python/mapref.cc.orig 2007-11-03 16:16:58.000000000 +0100
|
||||
+++ lib/python/mapref.cc 2007-11-03 16:17:25.000000000 +0100
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
namespace python {
|
||||
template <class T>
|
||||
- mapref<T>::mapref<T> (MapBase<T>& map, const std::string& k)
|
||||
+ mapref<T>::mapref (MapBase<T>& map, const std::string& k)
|
||||
: s(map), the_item()
|
||||
{
|
||||
key = String(k);
|
||||
@@ -10,7 +10,7 @@
|
||||
};
|
||||
|
||||
template <class T>
|
||||
- mapref<T>::mapref<T> (MapBase<T>& map, const Object& k)
|
||||
+ mapref<T>::mapref (MapBase<T>& map, const Object& k)
|
||||
: s(map), key(k), the_item()
|
||||
{
|
||||
if(map.hasKey(key)) the_item = map.getItem(key);
|
|
@ -1,11 +0,0 @@
|
|||
--- lib/python/python.cc.orig 2007-11-03 16:32:34.000000000 +0100
|
||||
+++ lib/python/python.cc 2007-11-03 16:33:48.000000000 +0100
|
||||
@@ -115,6 +115,8 @@
|
||||
} else {
|
||||
return import_module(modname);
|
||||
}
|
||||
+
|
||||
+ return (NULL);
|
||||
}
|
||||
|
||||
// }}}
|
|
@ -1,50 +0,0 @@
|
|||
--- lib/python/python.h.orig 2001-04-16 21:53:21.000000000 +0200
|
||||
+++ lib/python/python.h 2007-11-03 16:31:32.000000000 +0100
|
||||
@@ -3,22 +3,42 @@
|
||||
|
||||
#pragma interface
|
||||
|
||||
+#include <ctype.h>
|
||||
+#undef isalnum
|
||||
+#undef isalpha
|
||||
+#undef iscntrl
|
||||
+#undef isdigit
|
||||
+#undef isgraph
|
||||
+#undef islower
|
||||
+#undef isprint
|
||||
+#undef ispunct
|
||||
+#undef isspace
|
||||
+#undef isupper
|
||||
+#undef isxdigit
|
||||
+#undef tolower
|
||||
+#undef toupper
|
||||
+#include <iostream>
|
||||
+
|
||||
#include <Python.h>
|
||||
#include <string>
|
||||
#include <iterator>
|
||||
#include <utility>
|
||||
-#include <strstream>
|
||||
+#include <sstream>
|
||||
#include "exceptions.h"
|
||||
#include "debug.h"
|
||||
|
||||
// I hate #define macros, seee if I can remove this
|
||||
-#define STANDARD_LIBRARY_HAS_ITERATOR_TRAITS 1
|
||||
+#define STANDARD_LIBRARY_HAS_RANDOM_ACCESS_ITERATOR 1
|
||||
#ifdef MS_WIN32
|
||||
-# undef STANDARD_LIBRARY_HAS_ITERATOR_TRAITS
|
||||
-# define STANDARD_LIBRARY_HAS_ITERATOR_TRAITS 0
|
||||
+# undef STANDARD_LIBRARY_HAS_RANDOM_ACCESS_ITERATOR
|
||||
+# define STANDARD_LIBRARY_HAS_RANDOM_ACCESS_ITERATOR 0
|
||||
+#endif
|
||||
+
|
||||
+#if defined (__GNUG__) && (__GNUG__ >= 3)
|
||||
+# undef STANDARD_LIBRARY_HAS_RANDOM_ACCESS_ITERATOR
|
||||
#endif
|
||||
|
||||
-#if STANDARD_LIBRARY_HAS_ITERATOR_TRAITS
|
||||
+#if STANDARD_LIBRARY_HAS_RANDOM_ACCESS_ITERATOR
|
||||
# define random_access_iterator_parent(itemtype) std::random_access_iterator<itemtype, int>
|
||||
#else
|
||||
# define random_access_iterator_parent(itemtype) std::iterator<std::random_access_iterator_tag,itemtype,int>
|
|
@ -1,60 +0,0 @@
|
|||
--- lib/python/seqbase_const_iter.cc.orig Mon Apr 16 12:53:23 2001
|
||||
+++ lib/python/seqbase_const_iter.cc Thu Nov 30 22:11:19 2006
|
||||
@@ -61,7 +61,7 @@
|
||||
return seq->getItem(count + i);
|
||||
}
|
||||
|
||||
- template<class T>
|
||||
+ template<class T> typename
|
||||
SeqBase<T>::const_iterator::const_iterator& SeqBase<T>::const_iterator::operator=(const const_iterator& other) {
|
||||
if (this == &other) return *this;
|
||||
seq = other.seq;
|
||||
@@ -69,23 +69,23 @@
|
||||
return *this;
|
||||
}
|
||||
|
||||
- template<class T>
|
||||
+ template<class T> typename
|
||||
SeqBase<T>::const_iterator::const_iterator SeqBase<T>::const_iterator::operator+(int n) const {
|
||||
return const_iterator(seq, count + n);
|
||||
}
|
||||
|
||||
- template<class T>
|
||||
+ template<class T> typename
|
||||
SeqBase<T>::const_iterator::const_iterator SeqBase<T>::const_iterator::operator-(int n) const {
|
||||
return const_iterator(seq, count - n);
|
||||
}
|
||||
|
||||
- template<class T>
|
||||
+ template<class T> typename
|
||||
SeqBase<T>::const_iterator::const_iterator& SeqBase<T>::const_iterator::operator+=(int n) {
|
||||
count = count + n;
|
||||
return *this;
|
||||
}
|
||||
|
||||
- template<class T>
|
||||
+ template<class T> typename
|
||||
SeqBase<T>::const_iterator::const_iterator& SeqBase<T>::const_iterator::operator-=(int n) {
|
||||
count = count - n;
|
||||
return *this;
|
||||
@@ -98,16 +98,16 @@
|
||||
return count - other.count;
|
||||
}
|
||||
// prefix ++
|
||||
- template<class T>
|
||||
+ template<class T> typename
|
||||
SeqBase<T>::const_iterator::const_iterator& SeqBase<T>::const_iterator::operator++ () { count++; return *this;}
|
||||
// postfix ++
|
||||
- template<class T>
|
||||
+ template<class T> typename
|
||||
SeqBase<T>::const_iterator::const_iterator SeqBase<T>::const_iterator::operator++ (int) { return const_iterator(seq, count++);}
|
||||
// prefix --
|
||||
- template<class T>
|
||||
+ template<class T> typename
|
||||
SeqBase<T>::const_iterator::const_iterator& SeqBase<T>::const_iterator::operator-- () { count--; return *this;}
|
||||
// postfix --
|
||||
- template<class T>
|
||||
+ template<class T> typename
|
||||
SeqBase<T>::const_iterator::const_iterator SeqBase<T>::const_iterator::operator-- (int) { return const_iterator(seq, count--);}
|
||||
|
||||
}
|
|
@ -1,67 +0,0 @@
|
|||
--- lib/python/seqbase_iter.cc.orig 2001-04-16 21:53:23.000000000 +0200
|
||||
+++ lib/python/seqbase_iter.cc 2007-11-03 16:39:31.000000000 +0100
|
||||
@@ -61,7 +61,7 @@
|
||||
return seqref<T>(*seq, count + i);
|
||||
}
|
||||
|
||||
- template<class T>
|
||||
+ template<class T> typename
|
||||
SeqBase<T>::iterator& SeqBase<T>::iterator::operator=(const iterator& other) {
|
||||
if (this == &other) return *this;
|
||||
seq = other.seq;
|
||||
@@ -69,23 +69,23 @@
|
||||
return *this;
|
||||
}
|
||||
|
||||
- template<class T>
|
||||
+ template<class T> typename
|
||||
SeqBase<T>::iterator SeqBase<T>::iterator::operator+(int n) const {
|
||||
return iterator(seq, count + n);
|
||||
}
|
||||
|
||||
- template<class T>
|
||||
+ template<class T> typename
|
||||
SeqBase<T>::iterator SeqBase<T>::iterator::operator-(int n) const {
|
||||
return iterator(seq, count - n);
|
||||
}
|
||||
|
||||
- template<class T>
|
||||
+ template<class T> typename
|
||||
SeqBase<T>::iterator& SeqBase<T>::iterator::operator+=(int n) {
|
||||
count = count + n;
|
||||
return *this;
|
||||
}
|
||||
|
||||
- template<class T>
|
||||
+ template<class T> typename
|
||||
SeqBase<T>::iterator& SeqBase<T>::iterator::operator-=(int n) {
|
||||
count = count - n;
|
||||
return *this;
|
||||
@@ -99,21 +99,22 @@
|
||||
}
|
||||
|
||||
// prefix ++
|
||||
- template<class T>
|
||||
+ template<class T> typename
|
||||
SeqBase<T>::iterator& SeqBase<T>::iterator::operator++ () { count++; return *this;}
|
||||
// postfix ++
|
||||
- template<class T>
|
||||
+ template<class T> typename
|
||||
SeqBase<T>::iterator SeqBase<T>::iterator::operator++ (int) { return iterator(seq, count++);}
|
||||
// prefix --
|
||||
- template<class T>
|
||||
+ template<class T> typename
|
||||
SeqBase<T>::iterator& SeqBase<T>::iterator::operator-- () { count--; return *this;}
|
||||
// postfix --
|
||||
- template<class T>
|
||||
+ template<class T> typename
|
||||
SeqBase<T>::iterator SeqBase<T>::iterator::operator-- (int) { return iterator(seq, count--);}
|
||||
|
||||
template<class T>
|
||||
std::string SeqBase<T>::iterator::diagnose() const {
|
||||
- std::ostrstream oss;
|
||||
+ std::ostringstream oss;
|
||||
+ //std::ostrstream oss;
|
||||
oss << "iterator diagnosis " << seq << ", " << count << std::ends;
|
||||
return std::string(oss.str());
|
||||
}
|
|
@ -1,15 +0,0 @@
|
|||
--- plugins/python/python_plugin.cc.orig Mon Apr 16 13:23:28 2001
|
||||
+++ plugins/python/python_plugin.cc Thu Nov 30 22:35:49 2006
|
||||
@@ -51,11 +51,11 @@
|
||||
rules.push_back( rule );
|
||||
}
|
||||
}
|
||||
+ closedir(curdir);
|
||||
} else {
|
||||
// There is something wrong with the directory. Probably doesn't
|
||||
// exist
|
||||
}
|
||||
- closedir(curdir);
|
||||
return;
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
--- src/clint.cc.orig 2007-11-03 16:42:29.000000000 +0100
|
||||
+++ src/clint.cc 2007-11-03 16:42:48.000000000 +0100
|
||||
@@ -25,7 +25,7 @@
|
||||
#include "plugin.h"
|
||||
#include <stdexcept>
|
||||
#include "rule.h"
|
||||
-#include <iostream.h>
|
||||
+#include <iostream>
|
||||
#include <fstream>
|
||||
#include "utility.h"
|
||||
#include <debug.h>
|
|
@ -1,33 +0,0 @@
|
|||
--- src/input.cc.orig Fri Sep 6 22:17:58 2002
|
||||
+++ src/input.cc Fri Sep 6 22:21:11 2002
|
||||
@@ -70,17 +70,17 @@
|
||||
std::string Input::parse_cpp(std::string line) {
|
||||
if (line[0] == '#') {
|
||||
#ifdef HAVE_SSTREAM
|
||||
- istringstream in(line);
|
||||
+ std::istringstream in(line);
|
||||
#else
|
||||
istrstream in(line.c_str());
|
||||
#endif // HAVE_SSTREAM
|
||||
in.get(); // remove '#'
|
||||
- string command;
|
||||
+ std::string command;
|
||||
while (isalnum(in.peek()) && not in.eof()){
|
||||
command+=in.get();
|
||||
}
|
||||
- cerr << "line = \"" << line << "\" command = \"" << command << "\" ";
|
||||
- if (command == string("include") ) {
|
||||
+ std::cerr << "line = \"" << line << "\" command = \"" << command << "\" ";
|
||||
+ if (command == std::string("include") ) {
|
||||
} else if ( command == "define" ) {
|
||||
} else if ( command == "undef" ) {
|
||||
} else if ( command == "if" ) {
|
||||
@@ -101,7 +101,7 @@
|
||||
// Apparently this is valid
|
||||
// Ignore this
|
||||
} else {
|
||||
- cerr << "Unknown preprocessor macro" << endl;
|
||||
+ std::cerr << "Unknown preprocessor macro" << std::endl;
|
||||
}
|
||||
}
|
||||
return line;
|
|
@ -1,18 +0,0 @@
|
|||
--- src/utility.cc.orig Mon Apr 16 13:19:36 2001
|
||||
+++ src/utility.cc Thu Nov 30 22:31:32 2006
|
||||
@@ -40,6 +40,7 @@
|
||||
filelist.push_back(filename);
|
||||
}
|
||||
}
|
||||
+ closedir(curdir);
|
||||
} else {
|
||||
// There is something wrong with the directory. Probably
|
||||
// doesn't exist
|
||||
@@ -47,7 +48,6 @@
|
||||
// directory
|
||||
// throw std::invalid_argument("get_plugin_list: something is wrong with the directory " + directory);
|
||||
}
|
||||
- closedir(curdir);
|
||||
return;
|
||||
}
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
Clint is a testbed for static source-code checking techniques. It is
|
||||
currently designed to check C++ for common programmer errors and suggest
|
||||
improvements.
|
||||
|
||||
WWW: http://sourceforge.net/projects/clint/
|
|
@ -1,22 +0,0 @@
|
|||
bin/clint
|
||||
include/clint/exceptions.h
|
||||
include/clint/python.h
|
||||
lib/clint/python.la
|
||||
lib/clint/python.so
|
||||
lib/clint/python.so.0
|
||||
lib/libpython++.a
|
||||
lib/libpython++.la
|
||||
lib/libpython++.so
|
||||
lib/libpython++.so.0
|
||||
%%DATADIR%%/clint.py
|
||||
%%DATADIR%%/python_rules/c_comments.py
|
||||
%%DATADIR%%/python_rules/catch_exception.py
|
||||
%%DATADIR%%/python_rules/header_guard.py
|
||||
%%DATADIR%%/python_rules/headers.py
|
||||
%%DATADIR%%/python_rules/long_constant.py
|
||||
%%DATADIR%%/python_rules/macros.py
|
||||
%%DATADIR%%/python_rules/shortcut_if.py
|
||||
@dirrm %%DATADIR%%/python_rules
|
||||
@dirrm %%DATADIR%%
|
||||
@dirrm lib/clint
|
||||
@dirrm include/clint
|
|
@ -556,7 +556,6 @@
|
|||
SUBDIR += py-gmpy
|
||||
SUBDIR += py-gnuplot
|
||||
SUBDIR += py-graphillion
|
||||
SUBDIR += py-graphtool
|
||||
SUBDIR += py-gsl
|
||||
SUBDIR += py-igraph
|
||||
SUBDIR += py-mathdom
|
||||
|
|
|
@ -1,39 +0,0 @@
|
|||
# Created by: dikshie <dikshie@sfc.wide.ad.jp>
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= graphtool
|
||||
PORTVERSION= 2.2.12
|
||||
PORTREVISION= 5
|
||||
CATEGORIES= math python
|
||||
MASTER_SITES= http://downloads.skewed.de/graph-tool/
|
||||
DISTNAME= graph-tool-${PORTVERSION}
|
||||
|
||||
MAINTAINER= dikshie@sfc.wide.ad.jp
|
||||
COMMENT= Python module for complex network based on C++
|
||||
|
||||
BUILD_DEPENDS= ${PYNUMPY} \
|
||||
${PYTHON_PKGNAMEPREFIX}matplotlib>=0.90.1:${PORTSDIR}/math/py-matplotlib \
|
||||
${PYTHON_PKGNAMEPREFIX}scipy>=0.8.0:${PORTSDIR}/science/py-scipy
|
||||
LIB_DEPENDS= libboost_python.so:${PORTSDIR}/devel/boost-python-libs \
|
||||
libboost_graph.so:${PORTSDIR}/devel/boost-libs \
|
||||
libCGAL.so:${PORTSDIR}/math/cgal
|
||||
|
||||
USE_GCC= yes
|
||||
USES= gmake tar:bzip2
|
||||
USE_PYTHON= yes
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
CONFIGURE_ENV= PYTHON_VERSION=${PYTHON_VER}
|
||||
|
||||
NO_STAGE= yes
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
BROKEN= fails to build
|
||||
DEPRECATED= Broken for more than 6 months
|
||||
EXPIRATION_DATE= 2014-05-27
|
||||
|
||||
.if ${ARCH} == "powerpc"
|
||||
BROKEN= Does not compile on powerpc: exhausts virtual memory
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
|
@ -1,2 +0,0 @@
|
|||
SHA256 (graph-tool-2.2.12.tar.bz2) = aa510f718ae70033944cbfedf5dc4e2bd56eab965b4a368a930ea76c09f9db12
|
||||
SIZE (graph-tool-2.2.12.tar.bz2) = 518347
|
|
@ -1,4 +0,0 @@
|
|||
Graph-tool is an efficient python module for manipulation and statistical
|
||||
analysis of graphs (a.k.a. networks).
|
||||
|
||||
WWW: http://projects.skewed.de/graph-tool/
|
|
@ -1,156 +0,0 @@
|
|||
doc/graph-tool/AUTHORS
|
||||
doc/graph-tool/COPYING
|
||||
doc/graph-tool/INSTALL
|
||||
doc/graph-tool/LICENSE_1_0.txt
|
||||
doc/graph-tool/NEWS
|
||||
doc/graph-tool/README
|
||||
doc/graph-tool/TODO
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/__init__.py
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/__init__.pyc
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/__init__.pyo
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/all.py
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/all.pyc
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/all.pyo
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/centrality/__init__.py
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/centrality/__init__.pyc
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/centrality/__init__.pyo
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/centrality/libgraph_tool_centrality.la
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/centrality/libgraph_tool_centrality.so
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/clustering/__init__.py
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/clustering/__init__.pyc
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/clustering/__init__.pyo
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/clustering/libgraph_tool_clustering.la
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/clustering/libgraph_tool_clustering.so
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/community/__init__.py
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/community/__init__.pyc
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/community/__init__.pyo
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/community/libgraph_tool_community.la
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/community/libgraph_tool_community.so
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/correlations/__init__.py
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/correlations/__init__.pyc
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/correlations/__init__.pyo
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/correlations/libgraph_tool_correlations.la
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/correlations/libgraph_tool_correlations.so
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/decorators.py
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/decorators.pyc
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/decorators.pyo
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/dl_import.py
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/dl_import.pyc
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/dl_import.pyo
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/draw/__init__.py
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/draw/__init__.pyc
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/draw/__init__.pyo
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/draw/libgraph_tool_layout.la
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/draw/libgraph_tool_layout.so
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/flow/__init__.py
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/flow/__init__.pyc
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/flow/__init__.pyo
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/flow/libgraph_tool_flow.la
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/flow/libgraph_tool_flow.so
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/generation/__init__.py
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/generation/__init__.pyc
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/generation/__init__.pyo
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/generation/libgraph_tool_generation.la
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/generation/libgraph_tool_generation.so
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/config.h
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/fast_vector_property_map.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/graph.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/graph_adaptor.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/graph_arf.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/graph_assortativity.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/graph_augment.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/graph_average.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/graph_avg_correlations.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/graph_clustering.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/graph_community.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/graph_community_network.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/graph_components.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/graph_corr_hist.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/graph_correlations.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/graph_distance.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/graph_distance_sampled.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/graph_eigentrust.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/graph_extended_clustering.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/graph_filtering.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/graph_generation.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/graph_geometric.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/graph_histograms.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/graph_lattice.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/graph_motifs.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/graph_pagerank.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/graph_parallel.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/graph_predecessor.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/graph_price.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/graph_properties.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/graph_properties_group.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/graph_python_interface.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/graph_rewiring.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/graph_search.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/graph_selectors.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/graph_subgraph_isomorphism.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/graph_triangulation.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/graph_trust_transitivity.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/graph_union.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/graph_util.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/graph_wrap.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/histogram.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/minmax.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/mpl_nested_loop.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/numpy_bind.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/sampler.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/include/shared_map.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/io.py
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/io.pyc
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/io.pyo
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/libgraph_tool_core.la
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/libgraph_tool_core.so
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/run_action/__init__.py
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/run_action/__init__.pyc
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/run_action/__init__.pyo
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/run_action/inline.py
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/run_action/inline.pyc
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/run_action/inline.pyo
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/run_action/run_action_support.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/run_action/run_action_template.hh
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/search/__init__.py
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/search/__init__.pyc
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/search/__init__.pyo
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/search/libgraph_tool_search.la
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/search/libgraph_tool_search.so
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/spectral/__init__.py
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/spectral/__init__.pyc
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/spectral/__init__.pyo
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/stats/__init__.py
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/stats/__init__.pyc
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/stats/__init__.pyo
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/stats/libgraph_tool_stats.la
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/stats/libgraph_tool_stats.so
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/topology/__init__.py
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/topology/__init__.pyc
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/topology/__init__.pyo
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/topology/libgraph_tool_topology.la
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/topology/libgraph_tool_topology.so
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/util/__init__.py
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/util/__init__.pyc
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/util/__init__.pyo
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/util/libgraph_tool_util.la
|
||||
%%PYTHON_SITELIBDIR%%/graph_tool/util/libgraph_tool_util.so
|
||||
@dirrm %%PYTHON_SITELIBDIR%%/graph_tool/util
|
||||
@dirrm %%PYTHON_SITELIBDIR%%/graph_tool/topology
|
||||
@dirrm %%PYTHON_SITELIBDIR%%/graph_tool/stats
|
||||
@dirrm %%PYTHON_SITELIBDIR%%/graph_tool/spectral
|
||||
@dirrm %%PYTHON_SITELIBDIR%%/graph_tool/search
|
||||
@dirrm %%PYTHON_SITELIBDIR%%/graph_tool/run_action
|
||||
@dirrm %%PYTHON_SITELIBDIR%%/graph_tool/include
|
||||
@dirrm %%PYTHON_SITELIBDIR%%/graph_tool/generation
|
||||
@dirrm %%PYTHON_SITELIBDIR%%/graph_tool/flow
|
||||
@dirrm %%PYTHON_SITELIBDIR%%/graph_tool/draw
|
||||
@dirrm %%PYTHON_SITELIBDIR%%/graph_tool/correlations
|
||||
@dirrm %%PYTHON_SITELIBDIR%%/graph_tool/community
|
||||
@dirrm %%PYTHON_SITELIBDIR%%/graph_tool/clustering
|
||||
@dirrm %%PYTHON_SITELIBDIR%%/graph_tool/centrality
|
||||
@dirrm %%PYTHON_SITELIBDIR%%/graph_tool
|
||||
@dirrm %%PYTHON_SITELIBDIR%%
|
||||
@dirrm lib/python2.7
|
||||
@dirrm doc/graph-tool
|
||||
@dirrm doc
|
Loading…
Add table
Reference in a new issue