Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
G
glue
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
4
Issues
4
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
4
Merge Requests
4
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Test Cases
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lscsoft
glue
Commits
5cf6be7e
Commit
5cf6be7e
authored
Jun 13, 2017
by
Ryan Fisher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Preparing mid O2 release with Kipp packaging change
parent
8aa9895c
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
55 additions
and
5 deletions
+55
-5
debian/changelog
debian/changelog
+7
-0
debian/control
debian/control
+12
-0
debian/python3-glue.install
debian/python3-glue.install
+30
-2
etc/glue.spec
etc/glue.spec
+5
-2
setup.py
setup.py
+1
-1
No files found.
debian/changelog
View file @
5cf6be7e
lscsoft-glue (1.57.0-1) unstable; urgency=low
* O2 mid-run updated release to include change to ssl libraries and Kipp
packaging change.
-- Ryan Fisher <ryan.fisher@ligo.org> Tue, 13 Jun 2017 17:14:00 -0500
lscsoft-glue (1.56.0-1) unstable; urgency=low
* O2 mid-run updated release to include change to ssl libraries.
...
...
debian/control
View file @
5cf6be7e
...
...
@@ -94,6 +94,7 @@ Depends: ${shlibs:Depends},
python3-openssl,
python3-six,
python3-glue-segments (= ${source:Version})
python3-glue-ligolw-tools
Recommends: python3-numpy (>= 1.0),
python3-xml,
libsqlite3-0 (>= 3.3),
...
...
@@ -104,6 +105,17 @@ Description: Grid LSC User Environment
Glue (Grid LSC User Environment) is a suite of python3 modules and programs to
allow users to run LSC codes on the grid.
Package: python3-glue-ligolw-tools
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
${python3:Depends},
python3-glue
Description: Grid LSC User Environment XML Tools
Glue (Grid LSC User Environment) is a suite of python modules and programs to
allow users to run LSC codes on the grid.
Selected XML tools.
Package: python3-glue-segments
Architecture: any
Depends: ${shlibs:Depends},
...
...
debian/python3-glue.install
View file @
5cf6be7e
#usr/bin/*
usr
/
bin
/
dmtdq_seg_insert
usr
/
bin
/
glue_nmi_genbuild
usr
/
bin
/
gw_data_find
usr
/
bin
/
ldbdc
usr
/
bin
/
ldbdd
usr
/
bin
/
ldg_submit_dax
usr
/
bin
/
ligo_data_find
usr
/
bin
/
ligolw_cbc_glitch_page
usr
/
bin
/
ligolw_combine_segments
usr
/
bin
/
ligolw_diff
usr
/
bin
/
ligolw_dq_active
usr
/
bin
/
ligolw_dq_active_cats
usr
/
bin
/
ligolw_dq_grapher
usr
/
bin
/
ligolw_dq_query
usr
/
bin
/
ligolw_geo_fr_to_dq
usr
/
bin
/
ligolw_inspiral2mon
usr
/
bin
/
ligolw_print_tables
usr
/
bin
/
ligolw_publish_dqxml
usr
/
bin
/
ligolw_segment_diff
usr
/
bin
/
ligolw_segment_insert
usr
/
bin
/
ligolw_segment_intersect
usr
/
bin
/
ligolw_segment_query
usr
/
bin
/
ligolw_segments_from_cats
usr
/
bin
/
ligolw_segments_from_cats_split
usr
/
bin
/
ligolw_segment_union
usr
/
bin
/
ligolw_veto_def_check
usr
/
bin
/
ligolw_veto_sngl_trigger
usr
/
bin
/
LSCdataFind
usr
/
bin
/
segdb_coalesce
usr
/
lib
/
python3
*/*/
glue
/
cis
.
py
usr
/
lib
/
python3
*/*/
glue
/
cbcwebpage
.
py
*
usr
/
lib
/
python3
*/*/
glue
/
dagfile
.
py
*
...
...
@@ -25,4 +53,4 @@ usr/lib/python3*/*/glue/auth/*
usr/lib/python3*/
*/
glue
/
ligolw
/*
usr/lib/python3*/
*/
glue
/
nmi
/*
usr/lib/python3*/
*/
glue
/
segmentdb
/*
#
usr/share/man/man1/*
usr
/
share
/
man
/
man1
/*
etc/glue.spec
View file @
5cf6be7e
...
...
@@ -8,7 +8,7 @@
Name: glue
Summary: The Grid LSC User Environment
Version: 1.5
6
.0
Version: 1.5
7
.0
Release: 1%{?dist}
License: None
Group: Development/Libraries
...
...
@@ -55,7 +55,7 @@ rm -rf %{buildroot}
--skip-build \
--root=%{buildroot} \
--prefix=%{_glue_prefix}
rm -rf $RPM_BUILD_ROOT/usr/lib64/python2.?/site-packages/glue-1.5
6
.0-py2.?.egg-info
rm -rf $RPM_BUILD_ROOT/usr/lib64/python2.?/site-packages/glue-1.5
7
.0-py2.?.egg-info
%clean
rm -rf $RPM_BUILD_ROOT
...
...
@@ -110,6 +110,9 @@ rm -rf $RPM_BUILD_ROOT
%{_glue_prefix}/bin/ligolw_sqlite
%changelog
* Tue Jun 13 2017 Ryan Fisher <rpfisher@syr.edu>
- Mid O2 release to include M2Crypto removal and Kipp packaging changes.
* Thu Apr 13 2017 Duncan Macleod <duncan.macleod@ligo.org>
- Switched dependency from M2Crypto -> pyOpenSSL.
...
...
setup.py
View file @
5cf6be7e
...
...
@@ -39,7 +39,7 @@ from distutils import log
from
misc
import
generate_vcs_info
as
gvcsi
ver
=
"1.5
6
.0"
ver
=
"1.5
7
.0"
def
remove_root
(
path
,
root
):
if
root
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment