Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (3)
Add include path to picosat
· 7d427941
Andreas Tille
authored
Mar 10, 2019
7d427941
Fix license
· 30c22471
Andreas Tille
authored
Mar 10, 2019
30c22471
DEP3
· 0e52540d
Andreas Tille
authored
Mar 10, 2019
0e52540d
Hide whitespace changes
Inline
Side-by-side
debian/copyright
View file @
0e52540d
...
...
@@ -5,9 +5,28 @@ Files-Excluded: picosat.c
picosat.h
Files: *
Copyright: 201
4
License:
FIXME
Copyright: 201
3-2018 Ilan Schnell, Continuum Analytics, Inc.
License:
MIT
Files: debian/*
Copyright: 2019 Andreas Tille <tille@debian.org>
License: FIXME
License: MIT
License: MIT
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to
deal in the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
.
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
IN THE SOFTWARE.
debian/patches/series
0 → 100644
View file @
0e52540d
use-debian-packaged-picosat.patch
debian/patches/use-debian-packaged-picosat.patch
0 → 100644
View file @
0e52540d
Author: Andreas Tille <tille@debian.org>
Last-Update: Wed, 28 Nov 2018 16:59:12 +0100
Description: use Debian packaged picosat
--- a/setup.py
+++ b/setup.py
@@ -15,10 +15,11 @@
ext_kwds = dict(
define_macros = []
)
-if '--inplace' in sys.argv:
- ext_kwds['define_macros'].append(('DONT_INCLUDE_PICOSAT', 1))
- ext_kwds['library_dirs'] = ['.']
- ext_kwds['libraries'] = ['picosat']
+#if '--inplace' in sys.argv:
+ext_kwds['define_macros'].append(('DONT_INCLUDE_PICOSAT', 1))
+ext_kwds['include_dirs'] = ['/usr/include/picosat']
+#ext_kwds['library_dirs'] = ['.']
+ext_kwds['libraries'] = ['picosat']
setup(